diff --git a/Assets/CRTEffects.meta b/Assets/CRTEffects.meta new file mode 100644 index 000000000..8aaf379f0 --- /dev/null +++ b/Assets/CRTEffects.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f9dacdaf115722e49ac782c609f8d8ac +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/CRTEffects/README.md b/Assets/CRTEffects/README.md new file mode 100644 index 000000000..5667110e6 --- /dev/null +++ b/Assets/CRTEffects/README.md @@ -0,0 +1,19 @@ +# CRTEffects +post processing stack v2 にて使えるブラウン管風のエフェクトです。 + +## 使い方 +このファイルをAssetに追加し、Post Processing Stack Volumeで"Custom/CRT"を追加すると適応されます。 +Unity2019.1.1f1にて動作を確認しています。 + +## パラメータ +- Distort - レンズ歪みの強さ +- RGB Blend - 0だとRGBが完全に分離、1だと通常のRGB +- Bottom Collapse - 画面下部の映像が圧縮された部分の大きさ +- Noise Amount - 画面下部のノイズの量 + +## 参考にさせていただいたサイト樣 +[notargs.com "ブラウン管風シェーダーを作った"](http://wordpress.notargs.com/blog/blog/2016/01/09/unity3d%e3%83%96%e3%83%a9%e3%82%a6%e3%83%b3%e7%ae%a1%e9%a2%a8%e3%82%b7%e3%82%a7%e3%83%bc%e3%83%80%e3%83%bc%e3%82%92%e4%bd%9c%e3%81%a3%e3%81%9f/) + +[おもちゃラボ "シェーダで作るノイズ5種盛り"](http://nn-hokuson.hatenablog.com/entry/2017/01/27/195659#fBm%E3%83%8E%E3%82%A4%E3%82%BA) + +[LIGHT11 "Post Processingで自作のポストエフェクトを実装する"](http://light11.hatenadiary.com/entry/2019/03/31/225111#FXAA%E3%82%92%E4%BD%BF%E3%81%86%E5%A0%B4%E5%90%88%E3%81%AF%E6%9B%B8%E3%81%8D%E6%96%B9%E3%81%AB%E6%B3%A8%E6%84%8F%E3%81%99%E3%82%8B) diff --git a/Assets/CRTEffects/README.md.meta b/Assets/CRTEffects/README.md.meta new file mode 100644 index 000000000..cc7c53afd --- /dev/null +++ b/Assets/CRTEffects/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d7a1f7ab598644c748b17d0cfad3b4a8 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/CRTEffects/Scripts.meta b/Assets/CRTEffects/Scripts.meta new file mode 100644 index 000000000..580038d0a --- /dev/null +++ b/Assets/CRTEffects/Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4d34496d654254aef8731c965c783f91 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/CRTEffects/Scripts/CRT.cs b/Assets/CRTEffects/Scripts/CRT.cs new file mode 100644 index 000000000..24ca5c40e --- /dev/null +++ b/Assets/CRTEffects/Scripts/CRT.cs @@ -0,0 +1,28 @@ +using System; +using UnityEngine; +// UnityEngine.Rendering.PostProcessingをusing +using UnityEngine.Rendering.PostProcessing; + + +[Serializable] // 必ずSerializableアトリビュートを付ける +[PostProcess(typeof(CRTRenderer), PostProcessEvent.AfterStack, "Custom/CRT", true)] +public sealed class CRT : PostProcessEffectSettings +{ + [Range(0f, 1f)] + public FloatParameter distort = new FloatParameter { value = 0.0f }; + [Range(0f, 1f)] + public FloatParameter RGBBlend = new FloatParameter { value = 1f }; + [Range(0f, 1f)] + public FloatParameter BottomCollapse = new FloatParameter { value = 0f }; + [Range(0f, 1f)] + public FloatParameter NoiseAmount = new FloatParameter { value = 0f }; + + + /*// 有効化する条件はこうやって指定する(ちゃんとやっておいたほうがパフォーマンスにつながりそう) + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + //Debug.Log(base.IsEnabledAndSupported(context)); + return base.IsEnabledAndSupported(context) || distort != 0; + //return true; + }*/ +} \ No newline at end of file diff --git a/Assets/CRTEffects/Scripts/CRT.cs.meta b/Assets/CRTEffects/Scripts/CRT.cs.meta new file mode 100644 index 000000000..2355571a9 --- /dev/null +++ b/Assets/CRTEffects/Scripts/CRT.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 901667e98588d4b23a60fa932445374b +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/CRTEffects/Scripts/CRTRenderer.cs b/Assets/CRTEffects/Scripts/CRTRenderer.cs new file mode 100644 index 000000000..725b07be1 --- /dev/null +++ b/Assets/CRTEffects/Scripts/CRTRenderer.cs @@ -0,0 +1,34 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +public sealed class CRTRenderer : PostProcessEffectRenderer +{ + // 初期化時の処理 + public override void Init() + { + base.Init(); + } + + public override void Render(PostProcessRenderContext context) + { + // 内部的にプールされているMaterialPropertyBlockが保存されているPropertySheetを取得 + var sheet = context.propertySheets.Get(Shader.Find("Hidden/Custom/CRT")); + + // MaterialPropertyBlockに対してプロパティをセット + sheet.properties.SetFloat("_Distort", settings.distort); + sheet.properties.SetFloat("_RGBBlend", settings.RGBBlend); + sheet.properties.SetFloat("_BottomCollapse", settings.BottomCollapse); + sheet.properties.SetFloat("_NoiseAmount", settings.NoiseAmount); + sheet.properties.SetFloat("_ScreenWidth", Screen.width); + sheet.properties.SetFloat("_ScreenHeight", Screen.height); + + // CommandBufferのBlitFullscreenTriangleを使って描画 + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + } + + // 破棄時の処理 + public override void Release() + { + base.Release(); + } +} \ No newline at end of file diff --git a/Assets/CRTEffects/Scripts/CRTRenderer.cs.meta b/Assets/CRTEffects/Scripts/CRTRenderer.cs.meta new file mode 100644 index 000000000..5ed63c935 --- /dev/null +++ b/Assets/CRTEffects/Scripts/CRTRenderer.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: df42bae3b4fab496daaeb3d941474589 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/CRTEffects/Shader.meta b/Assets/CRTEffects/Shader.meta new file mode 100644 index 000000000..789fc926f --- /dev/null +++ b/Assets/CRTEffects/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: df9d6013930104811a0868c4e68405ea +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/CRTEffects/Shader/CRTShader.shader b/Assets/CRTEffects/Shader/CRTShader.shader new file mode 100644 index 000000000..db83a2671 --- /dev/null +++ b/Assets/CRTEffects/Shader/CRTShader.shader @@ -0,0 +1,100 @@ +Shader "Hidden/Custom/CRT" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + const float PI = 3.14159265; + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + + float rand(float2 st) { + return frac(sin(dot(st.xy, float2(12.9898, 78.233))) * 43758.5453); + } + float2 random2(float2 st){ + st = float2( dot(st,float2(127.1,311.7)), + dot(st,float2(269.5,183.3)) ); + return -1.0 + 2.0*frac(sin(st)*43758.5453123); + } + float perlinNoise(float2 st) + { + float2 p = floor(st); + float2 f = frac(st); + float2 u = f*f*(3.0-2.0*f); + + float v00 = random2(p+float2(0,0)); + float v10 = random2(p+float2(1,0)); + float v01 = random2(p+float2(0,1)); + float v11 = random2(p+float2(1,1)); + + return lerp( lerp( dot( v00, f - float2(0,0) ), dot( v10, f - float2(1,0) ), u.x ), + lerp( dot( v01, f - float2(0,1) ), dot( v11, f - float2(1,1) ), u.x ), + u.y)+0.5f; + } + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + + float _Distort; + float _ScreenWidth; + float _ScreenHeight; + float _RGBBlend; + float _BottomCollapse; + float _NoiseAmount; + + float4 Frag(VaryingsDefault i) : SV_Target + { + //レンズ歪み + float2 distcoord = i.texcoord; + distcoord -= 0.5; + distcoord /= 1 - length(distcoord) * _Distort; + distcoord += 0.5; + + //画面のズレ + float2 linecoord = distcoord; + //linecoord.x += (sin(_Time.r * 1.5 + linecoord.y * 0.7) > 0.9) * 0.05; + float linedistsin = sin(_Time.g + linecoord.y * 2 * PI); + float linedistwidth = 0.995; + linecoord.x += (linedistsin > linedistwidth) * (linedistsin - linedistwidth); + linecoord.x += (sin(_Time.a * 100 + linecoord.y * 10)) * 0.0005; + + //下部の圧縮された部分 + linecoord.x -= (linecoord.y < _BottomCollapse) * rand(float2(_Time.a,linecoord.y)) * 0.1; + linecoord.y = linecoord.y < _BottomCollapse ? linecoord.y * (1 / _BottomCollapse) : linecoord.y; + + //rgbずれ + float4 color; + color.r = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, linecoord + float2(0.002,0)).r ; + color.g = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, linecoord + float2(0,0)).g; + color.b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, linecoord + float2(-0.002,0)).b; + + //下部のノイズ + float noisevalue = perlinNoise(linecoord * float2(5,500) + rand(_Time) + _Time.ba); + float noiseCrit = (1 - _NoiseAmount) + max(linecoord.y - _BottomCollapse, linecoord.y < _BottomCollapse) * 2; + color.r = (noisevalue > noiseCrit) ? rand(linecoord + float2(0,1)) : color.r; + color.g = (noisevalue > noiseCrit) ? rand(linecoord + float2(1,2)) : color.g; + color.b = (noisevalue > noiseCrit) ? rand(linecoord + float2(3,4)) : color.b; + + //rgb配列 + float rgbmod = fmod((i.texcoord.x) * _ScreenWidth, 3); + color.r *= max(rgbmod < 1, _RGBBlend); + color.g *= max(1 < rgbmod && rgbmod < 2, _RGBBlend); + color.b *= max(2 < rgbmod, _RGBBlend); + + rgbmod = fmod((i.texcoord.y) * _ScreenHeight, 4); + color.rgb *= rgbmod >= 1; + + //レンズ歪みの外側 + color.rgb *= 1 - (distcoord.x < 0 || distcoord.x > 1 || distcoord.y < 0 || distcoord.y > 1); + return color; + } + ENDHLSL + } + } +} \ No newline at end of file diff --git a/Assets/CRTEffects/Shader/CRTShader.shader.meta b/Assets/CRTEffects/Shader/CRTShader.shader.meta new file mode 100644 index 000000000..e810409d2 --- /dev/null +++ b/Assets/CRTEffects/Shader/CRTShader.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 23ffd5ce9efd848f79aac1e537568c42 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PostProcessingVFX/GameCameraProfile.asset b/Assets/PostProcessingVFX/GameCameraProfile.asset index 22b7f02b2..cdadab56f 100644 --- a/Assets/PostProcessingVFX/GameCameraProfile.asset +++ b/Assets/PostProcessingVFX/GameCameraProfile.asset @@ -1,5 +1,27 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6672723021951195849 +MonoBehaviour: + m_ObjectHideFlags: 3 + 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: 2116fb4751a1a3046a3bae7177ecc731, type: 3} + m_Name: GlitchScreenJump + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + ScreenJumpDirection: + overrideState: 0 + value: 1 + ScreenJumpIndensity: + overrideState: 1 + value: 0 --- !u!114 &-4362154923023080619 MonoBehaviour: m_ObjectHideFlags: 3 @@ -34,6 +56,31 @@ MonoBehaviour: scale: overrideState: 0 value: 1 +--- !u!114 &-3842561579889000714 +MonoBehaviour: + m_ObjectHideFlags: 3 + 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: 824ef16946450f94186364308f3d1eaf, type: 3} + m_Name: GaussianBlur + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + BlurRadius: + overrideState: 1 + value: 0 + Iteration: + overrideState: 0 + value: 1 + RTDownScaling: + overrideState: 0 + value: 1 --- !u!114 &-3146643709030431664 MonoBehaviour: m_ObjectHideFlags: 3 @@ -1345,6 +1392,34 @@ MonoBehaviour: - 0.5 - 0.5 - 0.5 +--- !u!114 &-2800641430439692943 +MonoBehaviour: + m_ObjectHideFlags: 3 + 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: 29f414c45c95c4c4fab1fba6f7db9a44, type: 3} + m_Name: GlitchScanLineJitter + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + JitterDirection: + overrideState: 0 + value: 0 + intervalType: + overrideState: 0 + value: 0 + frequency: + overrideState: 0 + value: 0 + JitterIndensity: + overrideState: 1 + value: 0 --- !u!114 &-2309378551457945779 MonoBehaviour: m_ObjectHideFlags: 3 @@ -1415,6 +1490,31 @@ MonoBehaviour: opacity: overrideState: 0 value: 1 +--- !u!114 &-44530092333175149 +MonoBehaviour: + m_ObjectHideFlags: 3 + 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: 292a5d75bad86324881ba9dbb87cb997, type: 3} + m_Name: GlitchAnalogNoise + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + NoiseSpeed: + overrideState: 1 + value: 0 + NoiseFading: + overrideState: 1 + value: 0 + LuminanceJitterThreshold: + overrideState: 1 + value: 0 --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1434,6 +1534,40 @@ MonoBehaviour: - {fileID: -4362154923023080619} - {fileID: 2598374393394070623} - {fileID: -3146643709030431664} + - {fileID: 190338221448500764} + - {fileID: -2800641430439692943} + - {fileID: -3842561579889000714} + - {fileID: -44530092333175149} + - {fileID: -6672723021951195849} + - {fileID: 6617679330616591269} +--- !u!114 &190338221448500764 +MonoBehaviour: + m_ObjectHideFlags: 3 + 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: 901667e98588d4b23a60fa932445374b, type: 3} + m_Name: CRT + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + distort: + overrideState: 1 + value: 0 + RGBBlend: + overrideState: 1 + value: 1 + BottomCollapse: + overrideState: 1 + value: 0 + NoiseAmount: + overrideState: 1 + value: 0 --- !u!114 &2598374393394070623 MonoBehaviour: m_ObjectHideFlags: 3 @@ -1462,6 +1596,37 @@ MonoBehaviour: lumContrib: overrideState: 1 value: 0.8 +--- !u!114 &6617679330616591269 +MonoBehaviour: + m_ObjectHideFlags: 3 + 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: efbb636e5cc391347869277957d9c319, type: 3} + m_Name: EdgeDetectionSobelNeonV2 + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + EdgeWidth: + overrideState: 1 + value: 0.05 + EdgeNeonFade: + overrideState: 1 + value: 0.1 + BackgroundFade: + overrideState: 1 + value: 1 + Brigtness: + overrideState: 1 + value: 0.2 + BackgroundColor: + overrideState: 0 + value: {r: 0, g: 0, b: 0, a: 1} --- !u!114 &8762005197904913450 MonoBehaviour: m_ObjectHideFlags: 3 diff --git a/Assets/Resources/Credits.txt b/Assets/Resources/Credits.txt index 98bb63696..72b63dfd1 100644 --- a/Assets/Resources/Credits.txt +++ b/Assets/Resources/Credits.txt @@ -80,18 +80,20 @@ -JoyShockLibrary Jibb Smart, fork by RHeavenStudio -Jukebox RHeavenStudio --SoftMaskForUGUI --UniTask --Unity-UI-Rounded-Corners --Unity-AltSourceGenerator --Unity-SpriteAssist --unity-blend-shaders --Newtonsoft.Json --Graphy +-Dependencies Hunter -DOTween --StandaloneFileBrowser --unity-gui-windows +-Graphy -NaughtyBezierCurves +-Newtonsoft.Json +-SoftMaskForUGUI +-StandaloneFileBrowser +-TMPro Dynamic Data Cleaner +-UniTask +-Unity-AltSourceGenerator +-unity-blend-shaders +-unity-gui-windows +-Unity-UI-Rounded-Corners +-Unity-SpriteAssist -Adobe Photoshop 2022 -GIMP diff --git a/Assets/Resources/Fonts/Kurokane.asset b/Assets/Resources/Fonts/Kurokane.asset index 0bfe8e312..f99496b0f 100644 --- a/Assets/Resources/Fonts/Kurokane.asset +++ b/Assets/Resources/Fonts/Kurokane.asset @@ -251,6 +251,12 @@ MonoBehaviour: m_LigatureGlyphID: 9450 - m_ComponentGlyphIDs: 400000004b000000 m_LigatureGlyphID: 9451 + - m_ComponentGlyphIDs: 320000004b000000 + m_LigatureGlyphID: 9331 + - m_ComponentGlyphIDs: 270000002200000039000000 + m_LigatureGlyphID: 8279 + - m_ComponentGlyphIDs: 2b0000002a00000034000000 + m_LigatureGlyphID: 8280 m_GlyphPairAdjustmentRecords: - m_FirstAdjustmentRecord: m_GlyphIndex: 9 @@ -2742,6 +2748,276 @@ MonoBehaviour: m_XAdvance: 0 m_YAdvance: 0 m_FeatureLookupFlags: -1093390048 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 39 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 13 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 39 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 15 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 39 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 34 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 39 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 162 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 39 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 163 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 39 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 164 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 39 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 165 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 39 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 166 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 39 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 167 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 43 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 13 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 43 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 15 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 43 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 34 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 43 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 162 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 43 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 163 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 43 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 164 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 43 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 165 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 43 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 166 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 43 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 167 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 m_MarkToBaseAdjustmentRecords: [] m_MarkToMarkAdjustmentRecords: [] m_ShouldReimportFontFeatures: 0 diff --git a/Assets/Resources/Fonts/Rodin DB.asset b/Assets/Resources/Fonts/Rodin DB.asset index 30312ff5f..9434bf75d 100644 --- a/Assets/Resources/Fonts/Rodin DB.asset +++ b/Assets/Resources/Fonts/Rodin DB.asset @@ -1656,6 +1656,21 @@ MonoBehaviour: m_Scale: 1 m_AtlasIndex: 0 m_ClassDefinitionType: 0 + - m_Index: 634 + m_Metrics: + m_Width: 37.671875 + m_Height: 36.578125 + m_HorizontalBearingX: 9.984375 + m_HorizontalBearingY: 26.59375 + m_HorizontalAdvance: 135 + m_GlyphRect: + m_X: 412 + m_Y: 648 + m_Width: 39 + m_Height: 37 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 m_CharacterTable: - m_ElementType: 1 m_Unicode: 32 @@ -2057,6 +2072,10 @@ MonoBehaviour: m_Unicode: 10 m_GlyphIndex: 1 m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 12289 + m_GlyphIndex: 634 + m_Scale: 1 m_AtlasTextures: - {fileID: 3307759631967023827} m_AtlasTextureIndex: 0 @@ -2460,6 +2479,10 @@ MonoBehaviour: m_Y: 849 m_Width: 50 m_Height: 129 + - m_X: 402 + m_Y: 638 + m_Width: 58 + m_Height: 56 m_FreeGlyphRects: - m_X: 55 m_Y: 918 @@ -2573,10 +2596,6 @@ MonoBehaviour: m_Y: 513 m_Width: 12 m_Height: 66 - - m_X: 402 - m_Y: 638 - m_Width: 60 - m_Height: 68 - m_X: 459 m_Y: 379 m_Width: 40 @@ -2745,6 +2764,14 @@ MonoBehaviour: m_Y: 905 m_Width: 120 m_Height: 118 + - m_X: 402 + m_Y: 694 + m_Width: 60 + m_Height: 12 + - m_X: 460 + m_Y: 638 + m_Width: 2 + m_Height: 68 m_FontFeatureTable: m_MultipleSubstitutionRecords: [] m_LigatureSubstitutionRecords: [] @@ -2850,7 +2877,7 @@ Texture2D: m_ColorSpace: 0 m_PlatformBlob: image data: 1048576 - _typelessdata: 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090f080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020304000004060706050300000404040201000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060608090a0a0b0c0c0b0a0a09080707040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070809090a0b0c0c0b0b0a0908060603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080c0e0f13131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131312100d080300000000000000000000000000000000000000000000000000000000000000000000000000050a0e101113131313131313131313131313131313120f0a0500000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a13131313131313131313131313131313131313131313131313131313131313131313131313121111100f0d0c0a080605030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a1313131313131313131313131313130b0a080500000000000000000000000000000000000000000000000000000000000000000000000000000000060b0e1111131313131313131313131313131312120f0c0802000000000000000000000004080a0a13131313131313131313131313131309080603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003080d101213131313131313131313131313131311100e0b0600000000000000000000000005080a0b1313131313131313131313131313130e0d0b070300000000000000000000000005090d0f1013131313131313131313131313130a09070300000000000000000000000002060a0c0c131313131313131313131313131310100d0a0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f1215151c1514120e0902000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003050608090b0d0e1011070c10121313120f0b061111100f0e0c0b0a080706040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708060b0f12131516161718181818171616151413110d080907060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708070d10131415151617181818181717161513120f0b060706040100000000000000000000000000000000000000000000000000000000000000000000000000000002090f14181b1b20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020201f1f1d19140e0700000000000000000000000000000000000000000000000000000000000000000000030b11161a1c1d202020202020202020202020202020201e1b161009010000000000000000000000000000000000000000000000000000000000000000000000050b101416172020202020202020202020202020202020202020202020202020202020202020202020201f1f1e1e1d1c1a18161513120f0b06060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10141617202020202020202020202020202020171714110c05000000000000000000000000000000000000000000000000000000000000000000000000040b12171b1d1e20202020202020202020202020201f1e1c18130d060000000000000000050b101416172020202020202020202020202020201615130f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e14191d1f1f20202020202020202020202020201e1d1a16110b040000000000000000060c111517182020202020202020202020202020201a1917130e08010000000000000000020a1015191c1c2020202020202020202020202020161613100b04000000000000000000070d1216181920202020202020202020202020201d1c1a16110a0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e151a1f21222821201e1a140d050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406060b0f12131516181a1b1d1e1e181c1f20201f1b171e1e1e1d1c1b191816151413110d0708070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406090e11141418171c1f2021232324242525252423222221201d1918161313100c07050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306090e12141517181d2020212223242425252524242321201f1c17161413100d0705020000000000000000000000000000000000000000000000000000000000000000000000030b131a202427282d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2b29251f1911080000000000000000000000000000000000000000000000000000000000000000050d151c2226292a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a010000000000000000000000000000000000000000000000000000000000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2b2a2a2927252321201f1b171312100c06040000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2423211d17100800000000000000000000000000000000000000000000000000000000000000000000060e161d23272a2b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2b28241e1810070000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d23221f1b160f070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000811191f25292b2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2a2927221c160e050000000000000910171d2124242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2726231f19120b02000000000000040c141b212628292d2d2d2d2d2d2d2d2d2d2d2d2d2d2322201b160f07000000000000010a11181e2225262d2d2d2d2d2d2d2d2d2d2d2d2d2d2a2926221c150d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008101820262b2e2f352e2d2a251f170f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000206080d111314171b1f2021232526282a2a2b23282c2d2d2b27222b2b2a2a29272625232220201d18171414110e0907050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003080d111314191e20212422282b2d2e2f30313132323131302f2e2d2c29242522201f1c1814110e090502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131a1e20212424292c2d2e2f3030313232313130302e2d2b28222320201d1814110e09030000000000000000000000000000000000000000000000000000000000000000020b151d252c3134353939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393835312a231a1107000000000000000000000000000000000000000000000000000000000000030d171f272d3236373939393939393939393939393939393937332c251c1309000000000000000000000000000000000000000000000000000000000000000008111a22282d30313939393939393939393939393939393939393939393939393939393939393939393939393938383736353432302e2d2b2722201f1c1713100c0703000000000000000000000000000000000000000000000000000000000000000000000000000008111a22282d303139393939393939393939393939393931302d28221a12080000000000000000000000000000000000000000000000000000000000000000040e1820282e33363839393939393939393939393939393937343029221910060000000008111a22282d30313939393939393939393939393939392f2e2b27201910070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007111a232a3135383939393939393939393939393939393736332e2720170e040000000009121a22282d30313939393939393939393939393939393433302b241d140b0100000000020c161e262d3235363939393939393939393939393939302f2c272119110700000000000a131c232a2e323339393939393939393939393939393735322d271f160d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000091119222a31373a3c423b3a3630292117110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060a0f1214191d202122272b2d2e303133353637382e34383a3937332d3837373735343331302f2d2c29242421201e1a1514120e09060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b1013191d2021252a2d2e312d3338393b3c3d3d3e3f3f3e3d3d3c3b3a393530312f2d2c2823201e1914120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f11171c1f20252a2d2e302f35393a3b3c3c3d3e3f3f3e3e3d3c3b3938332d302d2c2924201e1a14100c0600000000000000000000000000000000000000000000000000000000000009131d272f373d404246464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464645413c352c23190e0300000000000000000000000000000000000000000000000000000000000b151f2931383e424446464646464646464646464646464646433e372e251b100500000000000000000000000000000000000000000000000000000000000005101a232c33393c3d464646464646464646464646464646464646464646464646464646464646464646464646464544444342403f3d3b3937332d2d2c28231f1d18120f0b06000000000000000000000000000000000000000000000000000000000000000000000005101a232c33393c3d4646464646464646464646464646463e3d39332c241a1005000000000000000000000000000000000000000000000000000000000000000b16202a32393f434446464646464646464646464646464544403b342b22180d02000005101a232c33393c3d4646464646464646464646464646463c3b37322b22190f040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e19232c353c414546464646464646464646464646464644433f39322920160b00000006101a242c34393d3e464646464646464646464646464646413f3c362e261d1208000000000a141e2830383e414346464646464646464646464646463d3b38322b23190f0400000007111c252e353a3e3f464646464646464646464646464643423e3831281f150a000000000000000000000000000000000000000000000000000000000000000000000000000000000006121b232b343c4347484f4846423b3328221c140b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f12151a1f2124292c2d2d3337393b3c3e40414344444540444646443f454544444342413f3e3d3b3a39352f302e2d2a2521211e1a15130f0a05020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d11171c1f24292c2d30363a3b3e403f44464849494a4b4b4b4b4a494948474541413e3c3a38342e2d2a25211e1a140f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10161b1c22282b2d30363a3b3d404045474848494a4b4b4b4b4a4a494846443f403d3a39352f2d2a251f1c17110c06000000000000000000000000000000000000000000000000000000040f1a252f3941484d4e535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535352514d463e352a1f14080000000000000000000000000000000000000000000000000000000005111c27313b434a4f50535353535353535353535353535353534f4940372c21160a0000000000000000000000000000000000000000000000000000000000000b17222c353e44494a53535353535353535353535353535353535353535353535353535353535353535353535352525151504f4d4b494846443f3c3a38342e2c29241f1b17110b060000000000000000000000000000000000000000000000000000000000000000000b17222c353e44494a5353535353535353535353535353534a49453e362c22170c00000000000000000000000000000000000000000000000000000000000006121d28323c444b4f51535353535353535353535353535352504c463d34291e130800000b17222c353e44494a5353535353535353535353535353534947433d342b20160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141f2a353e464d51525353535353535353535353535353514f4a433b32271c110600000c17222c363e45494b5353535353535353535353535353534d4c4740382e24190e03000005101b26303a42494e4f53535353535353535353535353534948443d352b21160b0000020d18232e373f464b4c5353535353535353535353535353504e4a433a31271c11050000000000000000000000000000000000000000000000000000000000000000000000000000020a1117242d353d464e53555b54524d453d332d261d170e060000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f151a1f21262b2e2f35393a3d3f444648494b4d4e505151524a515353504952515151504f4e4c4b4948474540403d3b3a36302e2d2a25221f1b15110e080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d13191c23282b2f35393a3e4246474b4d4a505354565657575858585756555554524c4d4b494645403b3a36302d2a261f1b150f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f161c21272c2d3338393c4246484a4c4b515354555657575858585757565453504a4d494745403b3a36302c28231c17110a03000000000000000000000000000000000000000000000000000814202c37414b53595b60606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605f5d5850463c3125190d000000000000000000000000000000000000000000000000000000000a16222d38434d555b5d6060606060606060606060606060605f5a52493e33271b0f020000000000000000000000000000000000000000000000000000000004101c28333e475055576060606060606060606060606060606060606060606060606060606060606060606060605f5f5e5d5d5c5a5856545350494946443f3a38352f2b27221b17110b0600000000000000000000000000000000000000000000000000000000000004101c28333e47505557606060606060606060606060606060575550483e33281d110500000000000000000000000000000000000000000000000000000000000b17232e39444e565c5e60606060606060606060606060605f5d574f463b3024180c0004101c28333e4750555760606060606060606060606060606056544e463d32271b0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925313c4650585d5f60606060606060606060606060605d5b554d43392e22160b0005111d28343e485055576060606060606060606060606060605a58524a40362b1f130700000915212d38424c545a5c606060606060606060606060606056544f473d32271b10030006121e2a353f4951575960606060606060606060606060605d5b554c43382d22160a00000000000000000000000000000000000000000000000000000000000000000000000000020b141b2227363f474f585f6268615e574f443f382f292017110a0200000000000000000000000000000000000000000000000000000000000000000000000001070d11171c1f262b2e31373a3b4145474a495053545658595b5d5d5e5e5f5c60605b5f5e5e5e5d5d5c5a5958565553514b4d4a4746423f3b3a36312e2b26201e19140f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c13191e25292e34383a4145474b4d5254575a545b60616263646465656464636261605d565a585553514b4746423b3a36312b26201b160e09030000000000000000000000000000000000000000000000000000000000000000000000000002090e161b21272c3238383f4446494d52545759555d60616263636465656464636361605b54595653514b4746423b38342e28231c150c080200000000000000000000000000000000000000000000000c1824313d48535d65686c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a62584d4135291d10000000000000000000000000000000000000000000000000000000010e1a26323e4a555f666a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e1205000000000000000000000000000000000000000000000000000000000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6b6a696867656361605b535653504a4745403937332d28221c17110a02000000000000000000000000000000000000000000000000000000000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5045392d21140800000000000000000000000000000000000000000000000000000000020e1b27333f4b5660676b6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6961574c4034281c0f000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6260584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935414d58626a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a675f554a3f33271a0e000815212d3945505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645c52473c3023170b00000d1926323e49545e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6360594f44382c201307000a16222e3a46515b63666c6c6c6c6c6c6c6c6c6c6c6c6c6c6a665e554a3e32261a0d000000000000000000000000000000000000000000000000000000000000000000000000030b141d262d3340485059606a6f756e696059504a423a3227221b140b0400000000000000000000000000000000000000000000000000000000000000000000060b13181c22282b31373a3c4347484c525456535b606163646668696a6b6b6c666d6c656c6b6b6a6a6a686766646362605d55595754524d4c4846423c3b37322d2a251e1b15100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181e252a3035383f44464c515457565e61646768666c6e6f70707172727170706f6e6d6869676462605c5454524d4846423b37322c27211a150b060000000000000000000000000000000000000000000000000000000000000000000000050d141a21272c33383d43484a505356575e61636668676d6e6f6f707172727171706f6e6c66696663605d5554524d46443f38342e261e19130c04000000000000000000000000000000000000000000000e1b2734404d59656f75797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746a5d5145382b1f1200000000000000000000000000000000000000000000000000000003101c2936424f5b667177797979797979797979797979797979766c5f5346392d201306000000000000000000000000000000000000000000000000000000000a1623303c4955616c707979797979797979797979797979797979797979797979797979797979797979797979797978777776757372706e6c656662605c5453514b46443f38332d28221c140b070100000000000000000000000000000000000000000000000000000a1623303c4955616c70797979797979797979797979797979716c6155493d3023170a0000000000000000000000000000000000000000000000000000000004111d2a36434f5c67727779797979797979797979797979797873695d5044372b1e12000a1623303c4955616c707979797979797979797979797979796f6a6054473b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845515d6a747979797979797979797979797979797771675b4f4336291d10000a1724303d4955616c71797979797979797979797979797979746e64584c3f3326190d00020f1c2835414e5a6670767979797979797979797979797979706b6054483b2f221609000c1825323e4b57636d7279797979797979797979797979797671665b4e4235291c100000000000000000000000000000000000000000000000000000000000000000000000030c151d262f383f44525a626b707c827b706b605b544c443d332d261d160d0400000000000000000000000000000000000000000000000000000000000000020a11171d24292d33383c4347484e5355565d606366656c6e6f71737476777778787979797978787877777675747271706e6d67696663615e575854534d4947433c3936302b26201c160f09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d151d242930363a41464a5053555d606467696e71737577797b7c7c7d7e7e7e7e7d7c7c7b7a787674716f6d6665615e5655534d47433c38322b261f17110a020000000000000000000000000000000000000000000000000000000000000000070f171f252a32383d44484f54545b606367696e707375777a7b7b7c7d7e7e7e7e7d7d7c7b79777573706d6765615e5753504a443f383029241e160e080000000000000000000000000000000000000000000f1b2835424e5b687581868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783868686868686868686868686868686796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d868686868686868686868686868686868686868686868686868686868686868686868686858584848382807e7c7b7976726f6d6664605d55535049443f38332d261d18130c04000000000000000000000000000000000000000000000000000a1724313d4a5764707d8686868686868686868686868686867e7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784868686868686868686868686868685786c5f5245392c1f12000a1724313d4a5764707d8686868686868686868686868686867c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7986868686868686868686868686868683776a5d5144372a1e11000b1824313e4b5764717e8686868686868686868686868686868074675a4d4134271a0e0003101c2936434f5c69768286868686868686868686868686867d706356493d3023160a000c1926333f4c5966727f868686868686868686868686868683766a5d5043372a1d1000000000000000000000000000000000000000000000000000000000000000000000020b151e262f384149505c636c717d858e857d736c665e564f443f382f2820160c010000000000000000000000000000000000000000000000000000000002080b141c22282f35383f44464e5355585f6266686d707376797b7c7e808183848485858686868685858484848382817f7e7c7b7a787573706e696965615e5755544e4746413b37322c28211a150d070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13191f272f353a41464c52545c6063676d7174777b7e808284868789898a8a8b8b8b8a898888878583807e7c7976726e6965615f57534e48433d373128231c140c060000000000000000000000000000000000000000000000000000000000030b1218212930363d43484f54596063666c6f74787b7d7f8284868788898a8a8b8b8b8a8a8987868482807d7a76726e6964605c54504a423e353028201a110600000000000000000000000000000000000000000e1b2835414e5b6874818e9393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939286796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909393939393939393939393939386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a939393939393939393939393939393939393939393939393939393939393939393939892929190908f8d8b898785827f7c7975716d6763605b53504a443f382f29241d160d060000000000000000000000000000000000000000000000000a1724313d4a5764707d8a939393939393939393939393938a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919393939393939393939393939285786c5f5245392c1f12000a1724313d4a5764707d8a93939393939393939393939393897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929393939393939393939393939084776a5d5144372a1e11000b1824313e4b5764717e8a939393939393939393939393938d8074675a4d4134271a0e0003101c2936434f5c6976828f939393939393939393939393897c706356493d3023160a000c1926333f4c5966727f8c9393939393939393939393939083766a5d5043372a1d10000000000000000000000000000000000000000000000000000000000000000000000a141d263038424a535b606e737e879297928780786d6860595049413a32281e1308000000000000000000000000000000000000000000000000000000050d13191d262d333a40454a5053585f62666a6e73777a7d7f828587898b8c8e9090919192929999929291919190908f8d8c8b8988868582807d7b7875726e6966625f5854524c47433c38332b262018130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000060d161e2429313940454c52565e61666d70757a7e8184878a8d8f919298959697979898979796959497928f8d8b8886827f7b76726e69625f58544f47423c342e261e181009000000000000000000000000000000000000000000000000000000050c151d2328333b42464f545960636b6f74787c8084878a8c8f91939a959696979898979796969992918f8c8986837f7b76716d66605c545046413a322c2317110a020000000000000000000000000000000000000e1b2834414e5b6774818e9a9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909d9f9f9f9f9f9f9f9f9f9f9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa29f9e9e9d9c9b9a989698928f8c8985827e79746f6c65605b54504a423d352f281f17110a02000000000000000000000000000000000000000000000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919e9f9f9f9f9f9f9f9f9f9f9f9285786c5f5245392c1f12000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f95897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929f9f9f9f9f9f9f9f9f9f9f9d9084776a5d5144372a1e11000b1824313e4b5764717e8a979f9f9f9f9f9f9f9f9f9f9f9a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9c9f9f9f9f9f9f9f9f9f9f96897c706356493d3023160a000c1926333f4c5966727f8c999f9f9f9f9f9f9f9f9f9f9d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000000000000000000006111c262f38424a545b656c74808b9299a199938c827a6f6b605b534c443a2f24190d0100000000000000000000000000000000000000000000000000070e171e252a2f383f444b51545b60646a6f73777b7f8386898c8f92979697999b9c9d9e9e9f9fa3a39f9f9e9e9d9d9d9b9a9997969597918f8c8a8785827f7b77736f6a66615e56534e48443e373129241d160d0701000000000000000000000000000000000000000000000000000000000000000000000000000006101820282f353d434b51565e61686d73797d81868a8e9196979a9b9d9fa3aaa3a3a4a5a5a4a3a3a2a9a19e9c9a9799928f8b87837f7b756f6a636059534d443f38302a221b120600000000000000000000000000000000000000000000000000050e171e272e343e454d525960636b70767c8084898d919696999b9e9fa4aca2a3a4a5a5a4a4a3aba39f9d9c999992908c87827e78716d66615a524c443e3527221b140b0200000000000000000000000000000000000e1b2734414e5a6774818d9aa7acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacac9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daaacacacacacacacacac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacb4aeacabaaaaa9a8a6a5aaa29f9c9998928f8a85817c78716c66605b544f45403a3127221b140b040000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3acacacacacacacacaca4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaaacacacacacacacacab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3acacacacacacacacaca295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facacacacacacacacacaa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4acacacacacacacacaca79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9acacacacacacacaca396897c706356493d3023160a000c1926333f4c5966727f8c99a5acacacacacacacaca99d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000000000000000000a1317222d38424a545c666c77808c929fa3aba49f948f847d726c655d564c4135291d11040000000000000000000000000000000000000000000000030b1218202930363d424a50555d60666c70767b8084888c909399999c9fa2a9a4a6a7a9aaaaababacafaeacabababaaaaa9a8a7a5a4a3a9a19e9c999697918f8b8783807c78736e68625f58554f47433c352f281f18120b030000000000000000000000000000000000000000000000000000000000000000000000020a1117222a323a41454f555d60686d737a8085898e92989a9ea0a8a6a8aaacaeb4afb0b1b1b1b1b0afafb3adaba9a7aba39f9c9a93908c87817c756f6b625f57504a423c342d2417110a0300000000000000000000000000000000000000000000050e172029303940454f575e616b6f767d83898d91969a9ea1a9a6a8aaacafb6afb0b1b1b1b1b0b0b4aeacaaa8aba39f9d99938f8b847e78706c615d564f473f332d261d140b02000000000000000000000000000000000e1b2734414e5a6774808d9aa7b4b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b8ac9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6b9b9b9b9b9b9b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9bfbab8b8b7b7b6b5b3b1b4aeaca9aaa29f9c98928e89837e78716c666059514b433d332d261d160d0500000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9b0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7b9b9b9b9b9b9b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9afa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8b9b9b9b9b9b9b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1b9b9b9b9b9b9b9b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5b9b9b9b9b9b9afa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2b9b9b9b9b9b9b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000000000000000008121c2528333f4a545c666d78818d929ca4afb5afa69f9691877f776d685d5245392c20130700000000000000000000000000000000000000000000050c151d2328323a41464f545b60676d72787d82888c9195999d9fa4aba9abadb3b1b3b4b6b7b7b8b8b9bbbab9b8b8b7b7b7b6b5b4b2b1afb2adaba8a6a9a19e9c9895908c8884807a746f6a636159534e45403a3129241d150d06000000000000000000000000000000000000000000000000000000000000000000020b141b2227343c444c525960676d737a80868c91979b9fa2aaaaacb2b3b5b7b9babfbcbdbdbebebebdbcbbbeb9b8b6b3b5aeacaca49f9d99938e88827c766e69605c544e463f3628231c150c040000000000000000000000000000000000000000050e172029333b424b515961696e757c828990959a9ea1a9abadb2b2b5b7b9bbc0bcbdbdbebebebdbdbfbab9b7b5b5afacaba49f9c96918b847d756d68615951443f382f261d140a000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5b8ac9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3c6c6c6c6c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d0cac6c5c5c4c3c3c2c0bebfbab8b5b4aeacaaa29f9a95908a837e786f6b605d554f443f382f281f170f06000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6bdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4c6c6c6c6c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5c6c6c6c6c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdc6c6c6c6c6c0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2c6c6c6c6bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfc6c6c6c6c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000000000000007101a242d373f44505b666d78818e939da4aebbc0bbb0a9a199928c827a6d6054473a2d211407000000000000000000000000000000000000000000060f171e272e343d444c525960666c71797f848a8f94999da0a7aaacafb5b5b8bab9b8b5b4b2b0afaeaeadacadadaeaeafafb0b1b3b4b6b7b9bbb9b8b5b3b3adaba8a7a09d9996918c86817c76706b625f58514b433e352f271f180f0800000000000000000000000000000000000000000000000000000000000000020b141d262d333e464e565d606b707980868d92989ea1a9acaeb4b7b8bdc0c2c4c5c7cbd1cacacbcbcacac9cfcac6c5c2c0bfbbb9b6afacaba49f9b948f89827b726d665f58504840342e261e160d04000000000000000000000000000000000000050e172029323b454d545c606b707b82898f949d9fa7abadb2b8b9bdbfc2c4c6c8ccd2c9cacbcbcacad1cbc7c5c4c2c0bbb9b5afaca8a09e96918a817a706b625b504941382f261b11060000000000000000000000000000000d1a2734404d5a6773808d9aa6b3c0cdd2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c5b8ac9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0d2d2d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2dbd6d3d2d1d1d0cfcecdd0cac6c5c2bfbab8b3aeaba7a09d95918a837c746d6761595049413a312921180f060000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad2d2d2cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1d2d2d2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad2d2d2c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5d2d2d2d0c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad2d2d2cdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfd2d2c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd2d2d0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000000000000050e18222c363f49525c606c78818e939da5aeb6bfcbc0b7afa69e9490837a6e6154473b2e2114080000000000000000000000000000000000000000070f182129303940454f565e616b70787e858b91969c9fa6aaacb1b6b9bbb8b7b3b2adaba9a7a5a3a2a1a1a0a0a0a0a1a1a2a2a3a4a6a7a9abacafb5b4b7b9bbb9b8b5b1acaaa8a19e99928e88827d766e6a605d55504540393129211a110a0100000000000000000000000000000000000000000000000000000000020b141d262f383f4450585f686d747d848d92989fa2aaadb3b8babfc4c5c8ceced0d2d3d7dcd6d7d8d8d7d6d6dad6d2d1cfd1cbc7c5c0bbb9b5afaca69e9c948f867f786f6a625a52443f3830281f160b0200000000000000000000000000000000030c162029323b444d575e666d747d858f949c9fa6abb1b8b9bdc4c5c9cfced1d2d0cecccbcac9c9cacaccced0d2d0d1cbc7c5c0bbb9b2aca8a09e938e857d726d605b534941382d2217120800000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9dfdfdfdfe6ded8d3d0cfcececececececececececececececececececececececececececececececececececececececececececececececececec5b8ac9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0dddfd2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6dfdfdfe2dad4cfcccbc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9cacacbcdcfd1d2d4d7d6d3d2d0cac6c5bebab8b1aca7a09d9590878079706b605b534b433b332921180f0500000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6dfd7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6dfd5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5d2dfddd0c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7dfdacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000000000030c17202a343e48515b636e74808e939ea5afb7c0c8c0b6aea59d948f827a6e685e5246392d20140700000000000000000000000000000000000000081019222a333b424b515960686d757d838b91979ea0a8abb0b7b8bcb8b7b1acaaa7a9a19e9c9a989795959493939394949595969697999b9c9e9fa4aba7aaacafb5b6b8bcb8b7b2adaba39f9b948f8a827c736d67615a514b433b332c231c130b020000000000000000000000000000000000000000000000000000000a141d262f384149505a616a6f7a818991969fa2aaaeb4b9bec4c7cad0d2d4d9dbdcd7d4d2d1cfcdcdcccccdcdcecfd2d3d6dbd7d3d2ccc8c6c0bbb9b0aaa69f98928c837c716c635c504a423931281d140a000000000000000000000000000000000b151e28323a444d565e696e78808a92979ea6abb0b8bcc2c5c9cfd2d2d1cbc7c5c3c1bfbebdbdbdbdbebfc1c3c6c7ccd2d3d2ccc7c4bdb9b2aca59e9791877f736c655b53493f3327241a0e05000000000000000000000000000c1925323f4c5865727f8b98a5b2becbd8e5ecf0e6ddd4cdc7c4c3c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1b8ac9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0dddfd2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3ece2d9d0c9c3bfbebcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbdbebec0c2c4c6c7ccd2d2d4d7d6d3d0cac6c3bcb8b1aca7a099938d847d736c655d554d453b332921170f05000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5d2dfddd0c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000000000000000000000000000b151e29323c46505a636d73808d929da5afb7c0c9c0b6aea49d938e82796d685e564c41362a1e110500000000000000000000000000000000000008111a222b343c454d545c606b707a818990959ea1a9acb2b7bbbab9b1acaaa7a09d9a9796918f8d8c8a8888878786868787888889898b8c8e90919399979a9d9fa4abaaacb1b6b8bcb9b4aeaca69f9c948f878079716c605d554d453e352e251d140b020000000000000000000000000000000000000000000000000006111b262f384149535b606c717c848e939ea0a8aeb4babfc5c9cfd3d6dbdcd6d3d2d1cbc7c5c4c2c1c0bfbfc0c1c2c3c5c6cad0d1d2d5d8d4d2ccc7c1bbb7b0aaa29f9590867e736e605c544b43392f261c1106000000000000000000000000000007121d27303a444c565e686e7b838d929ea1a9b0b7bbc2c7cdd2d3cec9c5c4c0bbb9b7b4b2b2b1b0b0b0b1b2b4b6b9bbc0c5c7cbd1d4cec9c4bdb9afa9a199938b80776c655b50443f362c20170d020000000000000000000000000b1824313e4b5764717e8a97a4b1bdd0dce7f3e9ded4cbc2bcb7b6b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4ac9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0dddfd2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e5dad0c7beb7b3b1afafafafafafafafafafafafafafafafafafb0b0b1b2b3b5b7b9bbc0c3c6c7ccd2d4d9d6d3cec8c3bcb8b1aba49f9691887f776d675e574d453b332921170d040000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5d2dfddd0c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000000007121c27303b444e58616c727f8c929ca5afb7c1c9c1b7aea49d928d81786d675d564c443b3025190e02000000000000000000000000000000000007111a232c343d464e575e666d737d858e939da0a7adb3b9bdb9b4aeaca7a09d9995918d8a878582817f7d7c7b7b7a797a7a7b7b7c7c7d7e8081838486888b8d909399999da0a7aaabb1b8b9bab9b0aba69f99928d847e756d675f574f4740372e261d140b020000000000000000000000000000000000000000000000081217222d384149535b656c737e8691969da5acb2babfc6cad0d5dae0d8d3d0cbc7c5c2c0bbb9b7b5b4b3b3b2b3b4b5b6b8babec0c4c5c9cfd2d6d7d4ccc7c2bcb4aea79f99928b80746d665d554b42382d22171107000000000000000000000000040d18232e39424c565e686e7a8490959da4adb3bbc1c7cdd4d1cbc7c4bdb9b7b5afacaaa7a6a5a4a3a3a4a4a6a8aaacafb5b9babfc6cacfd5cec9c1bbb3aba49f928d81776c605b51483e32291f14090000000000000000000000000a1723303d4a5663707d8996aab4bfcbd6e3efe4d8cdc2b9b0aba9a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a89f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0dddfd2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3dfd4c9beb5aca7a4a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a3a4a4a5a7a8aaacafb5b6b9bbc0c7c8ced3d8d9d4cec8c3bdb5afa8a19a938c81796e695f574d453b332920160b0200000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5d2dfddd0c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000000050e18232e39424c565f6a717e88939fa4aeb7c0c9c2b8afa59d928d80776d665d554c433b32291e14080000000000000000000000000000000000061019232c353e474f585f696e78808891979ea5acb1b9bebbb3adaaa39f9b95908c8884807e7b78767472706f6e6e6d6d6d6d6e6e6f6f707173747678797b7e818486898c9095999d9fa7abadb3b8bbb7b0aba39f96918a81796e696159514940382e261d140b02000000000000000000000000000000000000000000060f1a2427333f49535b656c77808a9298a1a8afb9bdc4cad0d6dbded7d3cdc7c6bfbab8b5b5afacaaa8a7a6a6a6a6a7a8a9abaeb3b4b7b9bdc4c6cacfd5d7d3cec6bfbab1aba39f928c81786d675d544a3f332823190d0300000000000000000000010c16202834404b545e686d7a839196a0a7aeb9bec5cdd3d2ccc7c0bbb9b2acababa39f9d9b99989796969797999b9d9fa4abacaeb4babec5ccd2d5cdc4bdb5afa49d938d80746d625a50443b3025190e0500000000000000000000000815222e3b4855616e7b8898a3aebac7d3e0ece0d3c7bcb0a69f9c9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0d2d2d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3dbcfc3b7aca39b98969696969696969696969696969696969696969797989a9c9e9fa4abaaacafb5b8bdc3c7ccd3d8d9d4d0c7c0bbb2aca49f938f837b6e695f574d453b32281d140a00000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5d2d2d2d0c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000020d17202834404a545e686f7c86929aa4afb6c0c9c3b9b0a69e938d80736c655c544b433a312920170d0200000000000000000000000000000000050f18222b353e474f59606a6e7b838d939aa1a9afb8bcbdb5aea9a29e98928e88847f7b7774716e696967656462626160606061616262636364666869666d6e7174777a7c7f83888c9095999ea1a9acb2b7bdb5aea8a19e938e837b706b635b524a40382e261d140b0000000000000000000000000000000000000000040d18212c363e44505b656c77818c929fa2aab2bac0c9ced6dbdfd8d4ccc7c2bcb7b4aeaca9aba39f9e9c9a9a99999a9a9b9c9fa2aaa7abadb2b8b9bec5c9cfd5d8d0cac2bdb4aea49c938e82796d665b50443f352b1f150b0100000000000000000008131e28323a45515c666d7a839095a0a8b1b9c0cacfd5d0c7c0bbb5afaca8a19e999992908e8c8b8a8a8a8a8b8c8e9093999b9fa3aaadb3bbc0c7d0d6d0c7c0bbaea59d928c7f726c61564d42362a20170d02000000000000000000000613202d394653606c7885929facb8c5d2dfebddd0c4b7ab9f94908e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e86796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3c5c5c5c5c5b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d8ccbfb3a79b918b898989898989898989898989898989898989898a8b8b8d8f919399999d9fa4abacb2b7bbc2c7cdd6dbd9d2ccc4beb6afa59e9590847b6e695e574d443a2f261c1106000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5c5c5c5c5c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000008141e29323b44515c666e7a849198a2acb6c0c8c4bbb1a79f948e81776c605b534a423931281f170e0500000000000000000000000000000000040d17212a343d474f59616b6f7c8490959fa4acb3bbbebab0aba39f97928c86817c77736e6a6764615e575a595755555454535354545555565658595b545c60626467676d7073777b7f83888c92979da0a8abb0b9bbb2ada59e9590857d736d645c524a40382e261d0e05000000000000000000000000000000000000010c161f2a333e48525c606c77808d939ca4aeb4bcc4ccd5d9e0dbd6cdc8c1bbb7b0abaaa39f9c999992918f8e8d8c8c8d8e8f909298979a9ea1a8abadb3b9bec4c9cfd7d6cfc6bfbaaea59d948f81786c605a50473d31271d12070000000000000000010d19242f3a444f59606d78839095a0a7b1bac3cbd6d7cbc3beb6afaba39f9a96918d898684817f7f7e7d7d7d7e7f8183868a8e92989fa2a9afb5bdc4cdd4d2ccc0b7aea49f93887e70695e52463f32291f14090000000000000000000006121f2b3844505b667784909daab7c3d0dde9dccfc3b6a99c90828181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818174685b4e4135281b0e00000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6b8b8b8b8b8b8b8ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cbbeb1a4988b7f7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d7d7e7f80828486898d9093999ea0a8abb0b7bcc2cad0d7ddd7d0c7c0bbafa7a09691847b6e695e564c42382d22170e050000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8b8b8b8b8b8b8b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000000000000000000050e1925303b444f59606d78839096a1aab4bec7c5bcb2a9a0959082796d655b5049413830271f160d0500000000000000000000000000000000010c161f29333c464f59616c707d859196a0a7afb6bebcb3aea69e99928d85807a746f6a66625f585754534d4e4c4a49484847464747484849494a4b4d4e4b51535558555d606366696e72777b80858b91969c9fa6adb2bbb9afa7a09792887f746e645c524a40382e20170d02000000000000000000000000000000000007131d28313c46505a636e74808d929da5aebabfc6ced6dee0d8d0cac2bcb8b0aaa69f9c98928f8c898684828180807f8081828385888b8d91969a9ea2a9adb2b9bec5cdd6d8d1cbbfb7afa69e938d80736c62594f43392f24180c030000000000000004111d2935414c56606b73808d959fa7b1b9c3ccd5d1cbc0b9b1aca49f99928e8984807c7a7774737271707071717375777a7d81868c92979fa4abb3bbc3cbd4d7c9c0bbafa49a92857b6e615b51443b3025190e03000000000000000000030f1c28333f4a546875818e9ba8b4c1d0dbe6d8ccbfb2a5998c7f757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575746f64594c4033271a0e00000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daaacacacacacacacacac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f707171727475777a7d8083878c91969c9fa6abb1babec5ced4dcd9d2ccc1b9b1a8a19691847b6e685d544a3f332820170d0200000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facacacacacacacacacaa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000000000000020c17202a36414c56606b73808d959fa8b2bcc6cabfb4aaa19791837a6d675c53493f382f261e150d04000000000000000000000000000000000008131e28313b454e58606b707e869297a1a8b1bbc0b9b0aaa29f948f86807a736e68625f5855534e4b484642413f3d3c3b3b3a3a3a3a3b3b3c3c3d3e4041404546484b4b515456575f6166696e73797e848a90949ea1a9aeb5b9b1a9a29a938c80746e645c524a4032291e130800000000000000000000000000000000030d18242f3a434e58616c73808c929da4aeb7bfcad0d8e0ded5cec6bfbab1aba69e9c94908b86827f7c7977757473737373747576797b7e8184898d92979ea1a9adb3bbc1cad0d7d7c9c1b8b0a69c928b7e716b60554b40352920150a000000000000030e18222c3945525d68707d87939fa7b1b9c3ccd5cfc6bfbaafa7a09a938e87817c78736f6d6768666564636364646668686d71757a7f858d9399a1a9b1b9c2cbd4d8ccc0b6aca2978f82766d62564d42362a201509000000000000000000000b17222d3f4c5865727f8b98a9b3becad6e2dacdc1b4a79a8e8174686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868645d53483c3024180b00000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909d9f9f9f9f9f9f9f9f9f9f9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6363636363636363636363636363636363636464656769676d7073777b7f84898f949d9fa7aeb3bcc2cad7dcddd8cbc3bab2a8a19691847a6d665b50443e32291e140800000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929f9f9f9f9f9f9f9f9f9f9f9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000000000000000008131e29323a46525e68707d88939fa7b1bac4ccc4baaea29891857b6e685d554b41382d261d150c030000000000000000000000000000000000060f19242f3a434d575f6a707d879298a2a9b2bac0bbaea69f98928b827b736d68615e56534e4847433e3b3a363132312f2f2e2d2d2d2e2e2f2f303031332e34383a3b3e414547494d5355575f61676d71787d838a91969fa3abb0bbb3aca49f928d80746e645c52443a3025190d010000000000000000000000000000010b151f2935414b555f6a707e8a929ca4aeb7c0c9d6dbe2dcd3ccc3bcb4aea79f9d948f88837e7a76726f6d666967676666676768656c6e7174787c81858b91979ea1a9afbabec5ced5d2cac1b8aea49f92877d70675d51453c31261a0f0100000000000a15202b37434e58606d7a849199a4afb9c3cbd5cfc6bdb4aea59d959087817b746f6c6563605d555958575757575859565d6164686d727a808791979fa7b1b9c2cbd5d2c7beb3a99f948b7f72695e52463c31261a0e040000000000000000000615222f3c4855626f7c8897a2adbac6d3dfdccfc3b6a99c90837669585b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b59534b41362b20140800000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909292929292929292929292929286796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256565656565656565656565656565656565758585a555d606366686e72777c828990959fa2aab0b8c0cbd1d8ddd5ccc4bab2a8a0968f82786c605a50443b3025190d04000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929292929292929292929292929084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000000000000020b1925303a44505a616e7a85929aa4afb9c2ccc4baafa59f92867c6f695e564c43392f261b140b030000000000000000000000000000000000020b18212935414c565e696f7c869299a3aab3bbbdb5afa49d9490857e756e69605d56524c47433c3a37312e2d2a252624222221212020212122222323252623282c2d2f2f35393a3d4246484d53555c60656c70767e848d92999fa6afb6b6afa49d928d80746e64564c41362a1e1105000000000000000000000000000007121d27313945515d676e7c86929fa4aeb6c0c9d2dbe7dbd2cac1bab1aaa29f959089827c76716d686662605c545b5a59595a5b535b606264656c6f74797f848c92979ea5aeb3bcc3cbd4d3cac0bbaea3999184796d60584e43372b1d130700000000020f1a26313a47535f6a74818e96a1abb5c0cbd4d0c7bdb4aba39f938e837c756e6963605b5353514b4c4c4b4a4a4a4b4c4c5254565e61686d747d8590959fa7b1b9c3cdd7d0c5bbb0a69f92867b6e61574d42372b20150a0000000000000000000613202d394653606c7985929fabb8c5d0dcded1c5b8ab9e9285786a5f534e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4c4841392f251a0f0300000000000000000000000000000000000000000000000000000003101d2a3643505d697682858585858585858585858585858586796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f62564949494949494949494949494949494a4a4b4c4d4b515356565e61666b6f767d838b92989fa6aebbbfc6cfd8ded6ccc4bab2a89e948d80736c61564c41362a1f160c010000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2c3845525f6b7885858585858585858585858585858583766a5d5043372a1d10000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000000000000000a141d2a36414c56616c76828f97a1acb6c0cbc7beb2a89e938b7e716a5f574d443a30271d140a020000000000000000000000000000000000000a141d2a333b45525d686e7b859198a2abb4bcbcb4aba49f928d837b716c615f57524c46413b37322e2b26272828292827252423201f1c181515161617181a181c1f202224292c2d31373a3b42464b51535b60636c7179808790949fa4acb3bbaea49d928d8074685e5246392d20130700000000000000000000000000000c18232f39434f59606d79849198a2aeb6bfc8d2dbe4dbd2c9c0b8b0a8a098928c837c756f6a65605d565653514b4e4d4d4c4d4e49505355535b6063676d72797f858e939fa2aab1b9c2cbd4d7cbbfb5aba1968d80736a5f53473a2f24180d0100000006121f2b37434e58626f7c87939fa8b2bdc7d2d2c7bdb5aba399928b81796f6a615f57535049474540403f3e3d3d3e3e404146474c52565e616b707a8390959fa7b1bbc5d0d7cdc2baaea2988e8174695f53473c32261b0f01000000000000000005121f2b3744505b6575828e9baab4bfcbd6dfd2c6b9ada197887b6f6255484242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424241403c362f261d130900000000000000000000000000000000000000000000000000000000030f1c2935424e5a66707679797979797979797979797979797974695d5144382b1e1205000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3c3c3c3c3c3c3c3c3c3c3c3c3c3d3e3e3f414045474a4d52545960636b70767e858f949ca4aeb5bdc6cfd8ded6ccc3bab0a69c928a7e71685e52463e31281e13080000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2b3744505d68737879797979797979797979797979797671665b4f4236291c10000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000000000006111c262f3846525e68717e8b949fa9b3bec7ccc0b6aca1968e81756c61584e453b32281e150b0200000000000000000000000000000000000006111c262f3b45505a606d7a849197a1aab3bdbdb4aaa399938b80786e69615a534d45413a36302b2d2e30323435353635333231302d2c2923201d19130e09070c10131315181d2021262b2d31363940454950535a61676d737b828c939aa1a9b1b6aea49f92857a6d6154473a2e2114070000000000000000000000000004101c2934404b55606b74818e96a0aab4bec8d1dae4dbd2c9c0b7afa69e9591867f786f6a62605854524c494645404140404040413f444648495053555c60676d727a818a9298a0a7b1b9c2cad4d1c6bdb2a89f92877c6e62554b4035291d11040000000814212e3a47535f6a75818e9aa4afbac4d0d7ccc0b5aba39992877e746d675f58534d46443f3a39352f3231303031313035393a41464c525960686e7a839095a0a9b3bec7d2d6cabfb4aa9f92877b6e62584e43372b1e13080000000000000000030f1b27333f495364717e8a98a3aebac7d3e0d5c9beb3a9998d807366584e433735353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353533302b251d140b0100000000000000000000000000000000000000000000000000000000010d1a26323e49545e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6962584d4135291c1003000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c30303030303030303030303030303131322f35393a3d4146474f545960636c717b828d929fa3abb4bdc6cfd9ded5ccc1b8aea49f92857a6e615a50433a2f24190d0200000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c2834404c5761686b6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a665f554a3e32261a0e000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000000000b17222d38424f59616d7a85929ea6b0bbc5d0c7bbafa49a91847a6d605a50463c332920160c03000000000000000000000000000000000000000b17222d38424d57616c75818e96a0a9b3bcbdb5aba39892877f736d665f575047423c352f2e3036393b3d3f4141424241403f3e3c3a38342f2c29241e1a140c070c141a1e20262b2e2f32362e34383a393f444650555d60696e78808892979fa7b0ab9f958b7f72685e5246392d201307000000000000000000000000030d17212c3845515c67707d89939da8b2bcc5d0dae3ddd3c9c1b7afa59d948f837b726c666058544e4745413c3a38342e343333342d3337393b3f44464b51555d60686d757e8590959fa7b0b8c2cbd4ccc4bbaea399908376675d5145392c201306000004101d2935404b55626e7c87939facb6c0c8cecdc5bbafa49992877e716c605d554e46423c37332d2c292425242424242524292d30363a41464f565e686d79839097a2acb6c0ccd8d0c6bbafa3998e81756a5f53473a2f24190d0100000000000000000b17222d3a4753606d7a86929facb8c2cdd8dacfc4b7aa9e9184776a6054473c3226282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282724201a130b020000000000000000000000000000000000000000000000000000000000000a16212d38434c545a5d5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5d5850463b3024190c00000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2323232323232323232323232324252524292c2d3036393d44484f545a62696e77808b9299a3abb4bdc7d1dcded3cabfbaada2978e81756c61554c4135291e130800000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3b454f575d5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5d5b554d43382d22160a000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000000030f1c28333f4a54606b75818e97a1adb8c2cdc7bdb1a79f93887d70685d52483e342a21170e0400000000000000000000000000000000000000030f1c28333f4a545f69717e8b939ea8b2bbc0b5aba39992867e726d605c544d453e373131373a3b4146474a4c4d4e4f4f4e4d4c4a494745403a39352f2b261f1812181f252a2d31373a3b3f424340454646443f43434b51575f666d737d8590959ea6a3999083786c60564c41362a1e110500000000000000000000000009141f2a36424d57606d7984919ea5afbac3ced7e2dfd5cbc1b7afa59d938e827a6e69605b544e47433c39352f2d2c28232726262722272b2d2d33373940454b51565d616c717b8390959fa6b0b9c2cdc4bab2a8a09691847a6d6053473a2d201407000006131f2c3845515d6775818e99a3abafb8bcc3c5bbb0a69f93877e716c615a514b433c37312b27221f1d18191817171718191d20252a30353d444c565d676e7b85929aa4afbbc5cfd7cbc0b5ab9e93887c6f62564c4135291d110400000000000000000613202c3945515d6775828f9ba7b1bcc8d4ded2c5b9aca096897c6f62584e43372b1f161b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1a18140f09010000000000000000000000000000000000000000000000000000000000000005101c26313a43494e50525252525252525252525252525252514d463e342a1f140800000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23161616161616161616161617171819181d1f20252a2d32383d444850575e656c737e879299a3abb5c0cbd7dddcd6cabeb3a99e938a7d70675d51453a3025190d02000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131e29333d454c50525252525252525252525252525252504f4a433b31271c1105000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000000000006121f2b3844505b66707d89939ea9b3becaccc0b5aba0958d80736b60564c41362d22180f0500000000000000000000000000000000000000030d17212b3844505b666e7b86929fa5afbac3bbafa49992877d706c625b504a423b3334383c4347484c525457585a5b5b5c5b5a58575653514b4745413a373129241d232830363a3c4247484c4f504b5153535049504e4b494d545c606b707b838f949e9f92877c6f665b50443a3025190d010000000000000000000000020e1a26313a46535f6973808c96a0acb7c1ccd5e0e1d7cdc3b9afa59e938e81786d685f57504a423d37322c2924201f1c181a1a191a171b1f2022272b2e343940454c525a61696e7a838f949fa6b0bbc4bbb2a8a09691847a6e675d5145392c20130600000714202d3a4753606d79848d92999ea5acb1b9beb3a99f948b7f726c615a50454039312b261f1b1713100c070b0a0a0b080d1113191e2529323b434c555f69707d88939fa9b3bec9d5d1c7bdafa59a8e8174685d5245392c20150a000000000000000004111d2935404b55636f7c89959fabb8c4cedad5c9bdb2a89b8e81746a5f53473d31281d12070f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0e0e0b0803000000000000000000000000000000000000000000000000000000000000000000000a151f2831383e424346464646464646464646464646464644413b342c22180d0200000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090909090909090909090a0b0b070c101314191e20272c32383f454d535b606c717d879299a3afbbc0cbd4e0dbcfc5bbafa59e91847a6d60564c41362a1e1408000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d17212b333b404445464646464646464646464646464643423e3831291f150a00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000004101d2935404b55606c7883909da5afbbc5cfc7bbafa4999083796d60594f443a30241b1006000000000000000000000000000000000000000009141f2935414b55606c78839098a2aeb7c1b9aea49f93877e716b615a51443f3830383f44464e5355565e616365676868696866656463605c5554524c46423c352f272e343b4246474d5355595c5d545c60605b5e5d5a58555350505961696e79828e93968d80736a5f544a3f32291e130800000000000000000000000005121e2a36424d57616e7b86929fa8b2bdc9d2dee6dbd0c5bbb1a79e938e81786c665d564d443f382f2b27201d191313100c070d0d060b0f1213171b1f23282f353a414650575e686d79828f949fa9b2bbb2a9a19691847b6e685e554b4035291d1104000006131f2c3845515d676d7a80868f939da0a7adb3ada2978f82766d625a50483e352f271f1a140f0b0604000000000000000105080d13192029313a434d57606b74818e97a1adb9c4cfd9cfc1b8ac9f92867a6d6054473c32271b0f0300000000000000010d18242f3a4854606b7683909da8b2bdc9d5d9cec4b9ac9f93877c6f62594f43392f241810060002020202020202020202020202020202020202020202020202020202020202020202020202020202010000000000000000000000000000000000000000000000000000000000000000000000000006111c262f383f4446474747474747474747474747474746443f382f261c11060000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000406080e11161b21272c333b4149505a626b707e87929fa4aeb9c2ced7e1d7cdc1b9ada1968c8073685e52463b3025190d000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1921292f34373839393939393939393939393939393736322d271f170d0300000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000000000a131f2c3845515d67717e8b95a0acb7c1cdcabfb4aa9f93877c6f665c51473d32281e12090000000000000000000000000000000000000000020e1a26313945515d67717e8b959faab4bebcb1a79d928b7f726c615950483f34363d424a5053585f6266686e707274747575747372716f6d6764605d56534d454039313940454d5254575f6265696a6b666d6c656b6a676562605b5454575e676d78818e9184796d60584e42382d20170d020000000000000000000000000714212d3a46535f6974818e99a3aebac3cedbe4e0d6cabeb3a9a0958e81786d665b544c433c332d261d1b15110d0806040000000000000305060b0f12181d242930353e454d565d676d79829097a1abb3a9a19691847b6e695e564d433a2f24180d01000004101d2935404b555d676d737b828990959ea1a9a89f92857b6e615b51483e3629241d150d09030000000000000000000000000002080e171f28313b454f59616d7a85929ea8b2bdc9d5d3c6baaea2988b7f7265584e43372b1f1306000000000000000007131d2c38444f5964717e8a96a1acb9c5d0dbd4c8bbafa49a8f82766b60554b40352922180f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424a5053545454545454545454545454545453504a42382d22170b0000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000002050b0f161b21292f383f445059616c717e8b929da7b1bcc5d0dbdfd5c9bdb2a89f92867a6d61564c41362a1c12070000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f121b22292d30313636363636363636363636362d2c29241e160d0d040000000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000006111c2935404b55606d7984919ea7b1bcc9d3c7baaea2988e81746a5f544b40352b20160c00000000000000000000000000000000000000000005121e2a36424d57606d7a85919ea7b1bcbeb3aa9f958d80746d625a50473e363b42464f545c60656a6e72767a7d7f8081828281807f7d7c7975716d68615f57514b433d424b51575e6167696e7275767879797978777674716f6c66626058555c666d7881897d70675d51463c2f261c0e0500000000000000000000000005121e2a36424d57616e7b87929fabb5bfccd5e0e2d7cec5baada2979083796d665c544a423a3128221c140b0a04010000000000000000000000000003070c12181e2429333b444c555d676e7a859199a3a9a19791847b6e695e574d443b31281d1307000000000c18242f39434c555d60696e757d838b92979fa0968b7e71695e52493f362c2318120b030000000000000000000000000000000000050d161f29333d46525d68727e8b96a1adb9c5d0d6cabfb4aa9d9184776a6054473b2e2215090000000000000000010f1b27323d4653606d7884919ea9b3becad6d8ccc0b6ac9f94897d70675d51453f342a21170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a545b606060606060606060606060606060605b544a3f33281c0f0300000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000040b0f171d262d333f47505a626c74808d959fa9b3becad6dfdacfc4baaea2988d8073685e5246392e23180c0000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b242d34393d3e4343434343434343434343433a39352f2820160c010000000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000c17232e3845515d67727f8c96a1adb9c3cec9beb3a99f92867b6e61584e42392e23190e040000000000000000000000000000000000000000000714212d3a46535f6973808d97a1adb9c2baaea2989083786d605b51483e353c454d535960666d72777b7f83878a8b8d8e8e8f8e8d8b8a8985827e7a756e69605d554f474d545c60696e73777b7f828384858686858483817e7c79736f6a6360595c666d777d706b60554b40342a1d140a000000000000000000000000000714212d3a46535e6974818e99a3afbdc6d1dee7dbd0c5bcafa59f92857b6e675d544a42382f281f17110a0200000000000000000000000000000000000001070c13192129323a434b555e686f7c87929fa19792857c6e695f574d453b32291f160c010000000007121d27313a434c51575f616b70787e858d92999184786c60574d42372d241a11070100000000000000000000000000000000000000040d17212935414c56606d7984919ea9b3becad6d0c6b8aca095887c6f6255493c31261a0e0200000000000000000a161f2b3844505c66727f8b97a2adbac3cfd9d2c7beb0a69d9184796d605a50463c332920170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b666c6d6d6d6d6d6d6d6d6d6d6d6d6d6d6c665b5044382b1f120600000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000050b141b2227353e48505a606d78839097a2adbac3cdd9e0d6cabfb4aa9f92867a6e61544a4034281c100400000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17222d363e45494b5050505050505050505050504745413a32281e13080000000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000003101c28343f4a54606d7985929ea8b2bdcbd2c6b9ada1978d8073695e52463c30271d110700000000000000000000000000000000000000000005111e2a36414c56616e7b86929fa9b3bebdb0a69f92857b6e665c51493f363d464e575e616b70787f84888c90939a989a9b9b9c9b99989798928e8a86827b736d6760594f575f666d737b8084888c8f90919298939291908d8b8884807c76706b615f5c656c706c61594f43392f22180b0200000000000000000000000003101c28343f4a54616e7b86929fabb5c0cfd8e3e2d6cabfb4aa9e938a7e70695f554b42382f261d160d060000000000000000000000000000000000000000000002080f172028313a434d56606a727f8b959792857c6f6a5f574d453b332920170d040000000000010b151f28313a41454d535960666d727a80868f8b7e72665b50453b30251b120800000000000000000000000000000000000000000000060f1924303a45515c66727f8b97a2adbac6d3d4c8bcb1a7998c807366574d42362a1e1205000000000000000003101c28343f4a54606d7985929fa7b1bdc7d1d9d0c2b8aca0968e81756c62584e453b332920170e0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c787a7a7a7a7a7a7a7a7a7a7a7a7a7a786c605346392d20130600000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000020a1117232c363e44515c666e7b85929fa7b1bcc8d4dedbd0c5baaea2988d8073665c5144382c1f140900000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09090807060400000000000000000000000000000000000000000000000000000000000000000000000000000005111d29343e485056585d5d5d5d5d5d5d5d5d5d5d5d54524c443a2f24190d0100000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000006121f2c3844505c66727f8b97a1adbac4cfc9bdb2a89e92857a6d60574d42342a1e150b000000000000000000000000000000000000000000000714202d3946525e6874818e98a3aebbc0b5ab9f948a7e71695f544b40373d464e585f696e757d838b9196999d9fa4aca7a7a8a8a7a6a5aaa29f9b99928f868079706b61595f696e7980868d9196989c9d9e9fa29f9f9e9d9a9896918d89837d766e69625b6064615a50473d31271d10060000000000000000000000000006121f2b3844505c6673808d99a3aebdc7d1e1e9dfd3c6baaea2988f82756c61574d433930261d140b0400000000000000000000000000000000000000000000000000050e161f28303b444e58606d78839092857c6f6a5f574e453c332921170e0500000000000000030d161f282f353b42464f545c60686d737b8285796d60544a3f33291f130900000000000000000000000000000000000000000000000008131e2834404b54606d7985929fabb8c3ced9cec3b7aa9d908377695f53463a2d2114060000000000000000000b17232e3845515d67727f8c95a0abb5c0cbd7d4c8bdb2a89e938b7e716a5f574d453b322920191006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7c87878787878787878787878787877b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000006111a242834404a545e69727f8b95a0acb8c1ccd7e2d6cabfb4aa9e9185796d6053463b31261a0e02000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23171717171717171717171717171717171717161615151312100c07080705020000000000000000000000000000000000000000000000000000000000000000000815212d3945505a6264696969696969696969696969605d564c4135291d110400000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000713202d3a4653606d7984919ea9b3beccd2c5b9aca0968b7f72685d52453b3022180c0300000000000000000000000000000000000000000004101c2834404b55616e7a86929faab4bfbbafa3998f82766c61574d42393d474f58606a6f7b828991959ea0a8a9acafb6b3b4b5b5b4b3b2b4aeacaba39f98928c847d706b61696e7b838d92989ea0a8a8a9abacaeacabaaa9a7a8a19e9a949089827b716c605c545550483e352b1f150b00000000000000000000000000000713202d3a4653606d7984919eabb5bfcfd9e3e1d5c9beb3a99f92867b6e615a50453b31271e140b02000000000000000000000000000000000000000000000000000000040d161e29323d44505c66707d89867c6f6a5f584e453c332a21170f05000000000000000000040d161e242931363d424a50565d60696e757b6e675d5142382d20170d01000000000000000000000102020201000000000000000000020c18232e3945515c6774818d9aa8b1bdc8d4d1c5b8aca095887b6e6155483b2d22170b00000000000000000006111c2935404b55606d78839099a3afbbc4ced9cec3baafa59f92867c6f695e574d443b322b2217110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c89939393939393939393939399867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000081218232e39424d57606d7883909da6b0bbc7d3dedbd0c6b9ada1978a7d7164574d42362a1e1205000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2323232323232323232323232323232323232323232221201f1c18181514120e0906030000000000000000000000000000000000000000000000000000000000000a1724303d4956626c717676767676767676767676766d685d5245392c20130700000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000006121f2b37434e5864717e8a96a1acbbc5cfc9beb3a99e9184796d60564c4133291f10060000000000000000000000000000000000000000000006131f2c3845515c67737f8c98a3aebcbeb3aa9f92877c6e625a50453b3b454f59606a6f7c848f949da0a7acb2b6b9bbc0c0c1c1c2c1c0bebfbab8b5aeaaa39f9691877d706b6e7b8490959fa3aaacb2b5b6b7b8bab9b8b7b6b4b2adaba69f9c948f867e746d665d554b42392e231810070000000000000000000000000005111d2a36414c5663707d8a97a1adbdc6d1e1e6dacfc6b9ada1978c7f72695e52483e332a1f150c020000000000000000000000000000000000000000000000000000000000040c172028343f4a54606b75817d6f6a60584e463c332a21180f050000000000000000000000040c13191f262a30383f444c52575f62696e695e554b402f261c0e05000000030607080a0b0c0c0d0e0f0e0e0d0c0b0807060300000007121d2934404b55626f7c8995a0acb8c5d1d4c8bcb1a7988b7f726553493f33271b0f030000000000000000000d18242f3a44505c666f7c87929fa8b2bdc9d5d5ccc1baaea39891847b6e695e564d443d3428231c140c07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a0a0a0a0a0a0a0a0a09f928679675d5145392c1f130600000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000007121c27303b44505c666f7c89949eaab7c2cdd8e2d5c9beb3a99c8f8276695f53463a2d211408000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3030303030303030303030303030303030303030302f2f2e2d2c28232421211e1a15130f0a04010000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8383838383838383838383827a6d6054473a2d21140700000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000815212e3a47535f6a7683909da8b2bdcdd2c6b9ada1978a7e71665c51433a2f20170d00000000000000000000000000000000000000000000000713202d3a4653606d7985919eaab4bfbaaea2988d80736a5f53483e38414d57606b707c8591969ea6acb1b8bdc3c6c8ccd2cecccbcacad0cac6c5bfbbb4aea8a09992867d707a849196a0a7aeb4b8bdc2c3c4c5c6c6c5c4c3c0bdb9b8b0aba69f98928b81786d675d544b40342822190c030000000000000000000000000713202d3946525e6875828f9ba9b2becfd8e3e2d5c9beb3a99e9285796d60574d42362c21180d0300000000000000000000000000000000000000000000000000000000000000050e17232e38424f59606c796f6b60584e463c342a21180f060000000000000000000000000001080d141a1e262e343a41454d53575e615e574d43392f1d140a0507060c10121315161718191a1b1c1b1a1a1917151312100b0606040c18232f394754606a7784919daab7c4d0d9cec2b5a99c8f8276655b5044372b1f120500000000000000000007131d28343f4a545f6a73808d96a0acb9c0cad3d6cbbfb4aaa19691847b6e685e564e463e342e261e18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4adadadadadadadac9f9285796c554b4035291d100400000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000b151e28343f4a54606a75828f9ca6b0bbc7d3e1dacfc4b9ac9f93877b6e6155483b2f24190d010000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3c3b3a38342e312e2d2a25221f1b15110d0701000000000000000000000000000000000000000000000000000d1a2633404d596673808c90909090909090909090877b6e6154473b2e21140800000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000004101d2935404b55626f7c88959fabbac4ceccc0b6ac9e9285796d60544b4031281e0e050000000000000000000000000000000000000000000005111e2a36414c5664717e8b97a1adbcbfb5ab9f92857a6d60584e43333f49535e69707d869297a1a9b0b8bcc3c8ced2ccc7c6c3c0bebdbdbec0c3c5c7c6bfbab2aba39892867c828f96a1a9b1babfc6c8ccc7c6c2bfbcbbbdbec1c5c5c2bcb7b0aaa29f938e82796d665c51453f342a1e150b0000000000000000000000000714212e3a4754616d7a86929facb9c4cfdfeadfd2c6b9ada1978c7f72675d51453b30241a0f0600000000000000000000000000000000000000000000000000000000000000000006111c26303d44505b656c6560594f463d342a22180f060000000000000000000000000000000003090c141c23282f353c42474d5354534d453b31271d0b0e111414171c1f202223242526272828282726262422201f1c171313100c121d2b37434e586773808d9aaab4becad6d2c5b8ab9f9285796c605346392d201306000000000000000000010b17232e38424e58606d7984919ea4aeb8c1cbd5d0c6bcb2a8a09691847a6e68605850443f383028231c150c09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1bababababab8ab9f9285786c5f52452f24180c0000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000030c17232e38424e58636f7c89949fabb7c5cfdae0d4c8bbafa49a8c7f7265564c4135291d11040000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f62564a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a49494848464440413e3b3a36312e2b27201d18130d080100000000000000000000000000000000000000000000000d1a2733404d5a6673808d999c9c9c9c9c9c9c9c94887b6e6155483b2e22150800000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000006131f2c3945515d6774818d9aa7b1bcccd4c8bbafa49a8d8073665c5142392e1f160c00000000000000000000000000000000000000000000000714202d3946525e687683909ca9b3bebbaea3998d8073685d52463c3744505b656e7b859298a2a9b2bbc1c8ced0cac7c0bbb9b6b3b1b0b1b1b3b6b9babfc6c4bdb4aaa29892868f949fa9b2bbc3cbd0c7c0bbb9b5b2afaeb0b1b4b8babec5c2bcb4aea59d948f82786d605b51463c30271d120700000000000000000000030f1c28333f4a5464717e8b99a3aebbc7d3e0ebded1c5b8ab9e9285796d60554b4033291f120800000000000000000000000000000000000000000000000000000000000000000000000a141e27333f49535b605b534f473d342b2218100600000000000000000000000000000000000000020a11171e242931373b42464846423b33291f1514191e202123282c2d2f3031323334353535343332312f2d2b2823201f1c18121b27323d495663707c8998a2aebac6d3d3c6baada297887b6e6255483b2f2215070000000000000000000006111c26303c45515d67707d89929da6b0b9c3cdd6cec4bab2a8a09691837a6f6a615a504a423c342e271e1a140e0902000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1bec6c6c6c5b8ab9e9285786b5f52452f24180d0100000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000006111c26303d4854606b76828f9ca9b3becad6e2d8ccc0b6ac9c8f8376685d5245392c2013070000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256565656565656565656565656565656565656565656565656555453514a4e4b4846423c3b37322c29241d19130c04000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7a9a9a9a9a9a9a195887b6e6255483b2f22150800000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000714202d3a4753606d7985929fabb8c2cdd2c6b9ac9f93877b6e61544b4030271d0d0400000000000000000000000000000000000000000000000814212e3b4754616e7a86939facb9c4b9ac9f92867b6e61564c4137434e58606c77828f97a2aab3bbc4cdd4cec6bfbab5afaca9a6a4a3a4a5a6a9acaeb4b9bdc4bcb4aaa29993999fa6b0bbc4cdccc3bdb5afaca8a5a3a2a3a5a7abadb3b8bdc3bebaafa69e948e81746d63584e43392e23180c0100000000000000000006121f2b3844505b6675818e9babb5bfcbd7e3e0d4c8bcb1a79a8d8073675d5143392f21170d000000000000000000000000000000000000000000000000000000000000000000000000020c17222d38414950535049413d342b2219100700000000000000000000000000000000000000000000060b131920262b31363a3b3a363129211a1e21252a2d2e2e34383a3b3d3e3f3f4041424141403f3e3b3a38342e2d2c28231f1c202d3a4653606d7985929fabb8c5d2d6cabeb3a9978b7e7164584b3e2e23180c00000000000000000000000a141e2935404b55606b74808d949ea7b1bbc4ced6ccc4bab2a8a09591847c716c605c544e444039302a261f1a140e080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd3d1c5b8ab9e9285786b554b4035291d100400000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000a141e2c38434f5964717d8a97a1adb9c6d2dfddd2c5b9ac9f92867a6d6054473a2d2114080000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f63636363636363636363636363636363636363636363636363626261605c545a5754534d4947433d39352f29241e160d090200000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4b6b6b6b6aea295887b6f6255483c2f22150900000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000004101d2935404b5564717e8a98a2aebac6d5c9bdb2a89c8f8276695f5342392e1e150b000000000000000000000000000000000000000000000005111d2935414c5665727e8b99a4afbbbdb2a89b8e8174695e52433a3a47535f6a727f8c949fa9b3bcc5cdd3cbc3bcb4aeaba49f9d9998979798999c9fa3abadb2bbc1bcb4aba49fa4abb0b8c2cdcbc2bab1aba49f9b99969596989a9fa2a9acb1bac0c1b8b0a69d938c7f726a5f554b4034281d12070000000000000000000613202d394653606c7985929eabb8c5d1dce7ddd1c4b8ab9f95887b6f62554b4031271d0f050000000000000000000000000000000000000000000000000000000000000000000000000006111b262f383f4446443f382f2b2219100700000000000000000000000000000000000000000000000001080d151a1f252a2d2e2d2a251f1f262b2e30363a3b3e3f444648494a4b4c4d4e4f4e4d4d4c4a4846443f3d3a38342e2b28232c3844515c6675828f9ca8b5c2cfdbd0c1b4a79a8e817467544b4034281c100400000000000000000000020c18242f39434f59606c78828f95a0a9b3bcc6d0d5ccc3bab1a7a09691867e746d665f58514a423c36312a251f19140e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7d2c5b9ac9f928679675d5145392c20130600000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000020c1b27323d4653606d7985929eabb8c5cfdae0d3c7bbafa3998a7d7164574a3e3024190d0100000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c70707070707070707070707070707070707070707070707070706f6f6e6d66696764615e5756544e4745413a352f281f19140d05000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7b4c1c3c3bcafa295897c6f6256493c2f23160900000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000006131f2c3945515d6775828e9baab3becad2c5b9ada1968a7d7064574d4230271d0c0300000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0b8aca096887c6f62574d4236414c56626e7c86929fa6b0bcc5ced3c9c1b9b1aaa29f9993908d8b8a8a8b8d9092999ea1a9afb7c1bdb5afacafb5bdc2cad0c2b9b1a8a099938f8c89888a8b8e92979da0a8aebbbfc1b8afa59f92877c6f675c5145392f24180d0100000000000000000916232f3c4956626f7c8997a2adb9c6d2e3e9dcd0c3b6a99d9083766a5f5343392f1f150b0000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262d33373937332d261d19100700000000000000000000000000000000000000000000000000000003090e141a1e2121211d23282c31373a3b4246474b4a505355565758595a5b5b5b5a5959575553504a4a4645403a38342e2934404a5466737f8c99a6b2bfcfdad0c3b7aa9d908477665c5145382c1f1306000000000000000000000007121d27313d44505b666d79839097a1aab4bdc6cfd5ccc3b9b1a8a198928b80786e6a605c544e46423b36302a251f1a140e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d3c7baaea398867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000a161f2c3845515c6674808d9aa9b3becad6e2d7cbc0b5ab9b8e817468564c4135291d110500000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3d8cbbeb2a5988b7f7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c7c7b7b79787674716e696762605854514b45413a312a251f170e080000000000000000000000000000000000020e1b2835414e5b6874818e9ba7b4c1cec9bcafa296897c6f6356493c3023160900000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000714202d3a4753606d7986929facb8c5d0d1c4b8ab9e9184786d6053463b3120150b0000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c4b7aa9e9184776a6054453b3946525e6874818e98a3aeb8c2ced5cbc1b7afa79f98928d8783807e7d7e7e8083868c91969ea5afb7c1c0bbb9bbc0c7d0d2c7bdb1a79f959187827f7c7b7d7e81858a91959da4aeb5bdc1bbafa3999083796d60554b4035291d120700000000000000030f1b27333f49536673808c99a9b3becad6e2e1d4c8bdb1a8988b7f7265584e4331281d0d03000000000000000000000000000000000000000000000000000000000000000000000000000000020b141b22272b2d2b27221b140b0700000000000000000000000000000000000000000000000000000000000003090e11171d24292e34383c4247484d525458545c606263646566676868686766656462605c545753514b46443f38352f3d4a5763707d8a96a8b2bdc9d5d2c5b9ac9f9286796d6053463a2d2013070000000000000000000000010b151f28333f4a545d676e7b859198a3abb4bcc5ced5ccc3bab2aaa39f928d837c736d666058534d46423b36302a251f1a140e08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbccfdad7cbbfb4aa94877b6e6154483b2e21150900000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000004101c2834404b54626f7c8997a1adb9c6d2dfdcd1c4b7aa9e918477685d5246392d20130700000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3d9ccc0b3a79b918b8989898989898989898989898989898989898989898989898989898887868483817e7b78736f6a65605d55524c433e3630292019110900000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cec9bcafa396897c706356493d3023160a00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000b1724313e4a5764717d8a98a2aebac6d3c8bcb1a7998c7f73665c5044382b1f12030000000000000000000000000000000000000000000000000b1724313e4a5764717e8a99a3afbbbcb1a7998c807366584e4334404a54616d7a86929faab4bfcad4cec3b9afa59e959086807a76737170717273767a7f848e939ea5afb9c3c7c6c7ccd2d7ccc0b5ab9f9590837c7572706f707274797e848d929fa3abb5bfc0b5aba0958c7f72675d5145392f24180c0000000000000005121f2b3744505b6576838f9ca9b6c2cfdbe6ded1c5b8aca095877b6e6154483c3121160c0000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171b1f201f1b17110a0200000000000000000000000000000000000000000000000000000000000000060b141b22272f35394045464d5355565e616468666d6e7071727273747574747372716e6d666763605c5453504a4540393a4754616d7a8796a1adb9c5d2d4c7bbafa399887b6e6255483b2f221508000000000000000000000000030d17222d38424b555e696f7c869299a3aab4bcc5cdd5ccc4bcb4aea49d9590867f786f6a615f57524d46413b36312a261f19140d07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a9b3bec9d5dcd1bcafa396897c706356493d31261a0d04000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000c18232e394653606c7985929eabb8c5d1deded2c5b9aca096877a6d6154473a2e21140700000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0707070707070707070707070707070707070707070707070707070707111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3dccfc3b8ada39b98969696969696969696969696969696969696969696969696969695959992918f8d8a8784807c77726d67605d565046423b322b231b130a010000000000000000000000000000020f1c2935424f5c6875828f9ba8b5c2cec9bcb0a396897d7063564a3d3023170a00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000005121e2a36424d576874818e9baab4bfcad1c5b8aca095877b6e61544a3f34281c1003000000000000000000000000000000000000000000000004101c2934404b556774808d9aabb5c0b8aca095887b6f6255483c3844515c66737f8c98a3aebcc6d1d0c6bcb1a79e938f837b736e68666564646566676d727a818e939ea7b1bcc8d2d4d7ddd4c7bbafa4999083796f6a6663626365676d7179808a9299a3aebbbfbdb1a79e9285796d60554b4035291d12070000000000000613202d394653606c7985929fabb8c5d2deeaddd0c4b7aa9d918477695e53463a2d21140400000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f1213120f0b0600000000000000000000000000000000000000000000000000000000000000010710181d262d333a41454b5153575f6266696e717477797b7c7d7e7f8081828180807f7d7b797674706d6664605c54514b443f46525e687884919eabb7c4d1d7cbc0b5ab968a7d7063574a3d3024170a0000000000000000000000000006111c262f3a434d57606a717e879298a2aab3bbc4ccd5cec6bfbaaea79f99928c837c746e69615e57524d46423b36312a251f18130b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8797a1adb9c6d2d9ccbfb3a6998c807366574d42372b1f160b020000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000007121f2b3844505b6675818e9ba8b5c1d0dbe1d5c9bdb2a896897d7063564a3d3023170a00000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e312417141414141414141414141414141414141414141414141414141414141414141e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3e0d4c9bfb5ada7a5a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a2aba39f9e9c9a9796918d89847f7a736d68615a524d443d352d251c130a0100000000000000000000000000030f1c2936424f5c6975828f9ca8b5c2cfcabdb0a3978a7d7064574a3d3124170a00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000714202d3a46525e697884919eabb7c4d0d0c3b7aa9d908477695e5342382e23170b00000000000000000000000000000000000000000000000006131f2c3845515c677683909da9b6c3b7aa9d9184776a5f53473a3a4653606d7985919eaab4bfcfd6cabfb4aaa0958f81796e69615e5658575758555d60686d77818e95a0abb8c3cdd9e3dfd2c6b9ac9f93877b6e676058565557555d60676d747e87929fa3adb8c2b9ada1978c7f72675d5145392e23180c0000000000000815222e3b4855616e7b8898a2aebac6d3dfe6dacdc0b3a79a8d807467574d42362a1e120500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003050605030000000000000000000000000000000000000000000000000000000000000000030b1218222a2f383f444b51555c6065696e73777b7e81838688898a8b8c8d8e8e8e8d8c8c8a888583817d7975716d66605d55504a424c566976838f9ca9b6c2cfdcd1bfb2a5988c7f7265594c3f3226190c00000000000000000000000000000a141d28313b454e58616c717e869298a1a9b2bac3cbd5d0cbc0b9b1aba39f959087817b746e69615e56534d46423b363029241d17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e687885929eabb8c5d1dcd0c3b6a99d908376695f53473c31281d140c0300000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a5464717e8b97aab4becad6e2d9cebfb2a5998c7f7266594c3f3326190800000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e31242121212121212121212121212121212121212121212121212121212121212121212b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3e6dbd1c7bfb8b3b2b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0afafb5afacaba9a7a8a19e9a96918c85807a716c615e564f473f372e251c13090000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfcabdb0a4978a7d7164574a3e3124170b00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000815212e3b4854616e7b8796a1acb9c5d2cbbfb4aa9a8d807367574d4230261c11060000000000000000000000000000000000000000000000000714202d3a4753606d7986929facb9c0b4a79a8d817467584e43373d495663707d8997a1adbcc6d1d3c6baaea2989083796d675e57524c4b4a4b4b4b51565d656d7883909da7b1bcc8d4e4dbcfc2b5a89c8f8275695f554e49484a4b51555d606c717e8b919ca6b0bdbeb3a99e9185796d60554b4034281c100400000000000b1724313e4a5764717d8a97aab3becad6e2e1d5c9bdb2a8968a7d7063574a3d31251a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d151d2329343c414950555d60676d71767b8084878b8e909298969798999a9b9b9b9a9998979892908d8a85817d78726d67605b544e4e5b6774818e9aa7b4c1cddacdc0b4a79a8d8174675a4e4134271b070000000000000000000000000000020b161f29333d46505a616c717d869297a1a8b1b9c0c9cfd6cbc2bdb4aea7a099928e86817b746e68615e57534d46413b352f27221b140b07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c566875828f9ba8b5c2cfdad2c6b9ac9f93877b6e62584e433a2f261e150d05000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000b17222d3b4855616e7b8898a2aebac6d3dfdbcec2b5a89b8f8275685c4f422f24190d01000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e312e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3ede2d9d1c9c3c0bebcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcc0bbb9b7b6b4b2acaba8a09e97928d857e766e69605951493f372e251b110700000000000000000000000003101d293643505c6976838f9ca9b6c2cfcabdb1a4978a7e7164574b3e3124180b00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000b1824313e4b5764717e8a97a8b2bdc9d3c7baaea398897d7063564a3d3123140a00000000000000000000000000000000000000000000000000091623303c4956636f7c8999a3aebabdb2a8978a7e7164574b3e343f4a546673808c99a9b3becfd6cbbfb4aa9f92867b6e675d554d46413e3d3e3f41454c535c666f7c8995a0acb8c7d2ddd8cbbeb2a5988b7f7265574d433d3c3d40454b515a616c727f8c949fabb5c0b9ada1978b7f72675c5145382c1f130600000000000d1a2733404d5a6673808d99a6b3c0d0dbe6dfd2c5b9ada196877a6d6154473a2e211409000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d161f272f343f464e535b60676d72797e83888c9095979b9d9fa3aaa4a5a5a6a7a8a7a7a6a5aaa29f9d9a98928e8a847e79726c665f58515965727f8c98a5b2bfcbd8cfc2b6a99c8f8376695c50432f24180d010000000000000000000000000000040d17212b343e48505a616b707c859196a0a7aeb9bec5cdd7cfc6bfbab1aba39f99928d86807b746e69615f57524d45413a332d261d18120b03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303f4c5966727f8c99a8b2bdc9d5d4c7bbafa4998e81746a5f554b423830271f170f070000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7985929fabb8c5d2deddd0c3b7aa9d9084776a564c4135291d1104000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a44515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3f0ebe2dbd4cfcccbc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9d1cbc7c5c4c2c0bdb9b7b2aca9a29f97918b827b706b625b51493f372d23190e05000000000000000000000003101d2a3643505d697683909ca9b6c3cfcbbeb1a4988b7e7165584b3e3225180b00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000005111d2935414c566774818d9aa7b4c0ced2c5b8ac9f9286796d6053473a2d201407000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98abb4bfb9aca196877b6e6154483b3844505c6676838f9ca9b6c2cfd3c7baaea3988d8073695f554b433b363031312f353a414a54606a7783909dacb6c0ccd8d5c9bcafa296897c6f6356493c312f2f35394045505a636d76828f99a3afbbbeb3a99e9184796d6053463a2d22170b00000000030f1c2936424f5c6975828f9ca8b5c2cfdbe8ded1c4b7ab9e918478685e5246392d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e1720283139404550585f656c717a7f848b9095999da0a7a7aaacaeb4b0b1b2b3b4b5b4b3b3b2b4aeaca9aaa29f9b96918b857f786f6a635b5764707d8a97a3b0bdcad6d1c4b7ab9e9184786b554b4035291d1104000000000000000000000000000000050f19222c363e485059606a6f7b8490959da4adb3bbc2cbd1d1cbc3bdb5afaba39f98928d86817b746e69615e56514b443f382f28231d150c06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081623303c4956636f7c8996a1adb9c7d2d7ccc0b5ab9f92877c6f675d544a423931292118120b03000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b657683909ca9b6c3cfdcdfd2c5b8ac9f928579685d5245392c201307000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a474747474747474747474747474747474747474747474747474747474747474747474747474747515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3f3ebe3dcd7d4d2d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d1d2d3d7dcd7d4d2d1cfcec9c5c4bdb9b3ada9a19e948f857d726d635b51493f352b20170b020000000000000000000004111d2a3744505d6a7783909daab6c3d0cbbeb1a5988b7e7265584b3f3225180c00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000713202d3946525e687784919daab7c4d0cfc2b5a99c8f8276675d5145382c1f1306000000000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4c0b7ab9e918478695e52463a3a4653606d7985929facb8c5d2d2c5b8ac9f92867a6e61574d4339312a25242424292f38424e5865727f8b9aa4afbbc8d4d4c8bbaea195887b6e6255483b2f2224292f353e48515b626f7c87929faab4bfb9ada1968a7d706353493f33271b0f0300000004111d2935414c566a7784919daab7c4d0dde8dbcfc2b5a89c8f827569564c41362a1d110500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d172029323a434b515a626a6f787e858c91979d9fa7aaacb1b4b6b9babfbdbebfc0c1c1c1c0bfbfbfbab8b6b4aeaba8a09e97928b837c726d605c626f7c8995a2afbcd0dbd2c5b8ac9f928579675d5145392c2013060000000000000000000000000000000007101a242c363e474f5860696e7b838d929ea1a9b0babfc6cfd4cfc7c0bbb5aeaaa39f98928d87817b746e68605d555049413c342e271e18100801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7984919eabb5c0ccd7d2c7bbafa3999184796d665c544b433b3328231d150c060000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000030f1b27333f49536774808d9aa7b3c0cddadfd3c6baaea298877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d71645754545454545454545454545454545454545454545454545454545454545454545454545454545454545e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3ebe1d9d1cbc7c5c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c4c5c7cbd1cdd1d2d5dadad5d2cec9c5bebab3ada69f9792877f726d635b51473d32291d140a0000000000000000000004111e2a3744515d6a7784909daab7c3d0cbbeb2a5988b7f7265584c3f3225190c00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000714212e3a4754616d7a86939facb9c6d2c9bdb2a9988c7f7265554b4035291d1004000000000000000000000000000000000000000000000000030f1b27333f49536976828f9ca9b5c1b5a89b8e827568574d42363c4956626f7c8998a2aebac6d3cec1b5a89b8e8275685e52453b31271f191718181d26303d4754616e7a87939facb9c6d2d4c7baaea194877b6e6154483b2e21181d2429364047535f6a74818d98a2aebabdb2a89a8e8174655b5044372b1f12050000000713202c3945525d687985929facb8c5d2dfe6d9ccbfb3a6998c807366594d403025190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c161f29323b444c555c606c717c838b91979ea1a9abb1b7b8bcc1c3c5c7cbd1cbcccdcecececdccd0cac7c5c3bebab8b2aca9a19e9590867f746d66616e7b8794aab4bfcad6d3c7baaea398867a6d6053473a2d201407000000000000000000000000000000000008121a242c353d464e575f696e79808a92979fa6aeb4bcc1c7cdd1cbc6bfbbb4aeaaa39f99928e86817b736d67605b534e454039302a2219130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c6673808c99a4afbbc6d0d7cbc0b5aba0968e81786d665d554d453e342e271e180f0701000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000b17222d3f4c5865727f8b98a5b2becbd8e2d6cabfb4aa95887c6f6255483c2f221509000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164616161616161616161616161616161616161616161616161616161616161616161616161616161616161616b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3e3d9cfc7c0bbb9b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b7b8b9babfbdc1c4c5c9ced3d6dbd9d5d0cac4beb9b0a9a199938b7f726d62594f443a2f261c110600000000000000000004111e2b3744515e6a7784919daab7c4d0cbbfb2a5988c7f7265594c3f3226190c00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000a1724313d4a5764707d8a9aa4afbbc8d2c5b9ada196887b6f6255483c2f24180c0000000000000000000000000000000000000000000000000005121f2b3744505b657784919daab7c0b3a6998d8073665a4d40303e4a5764717d8a97aab4bfcad6cbbfb4aa988b7e7265564c4133291f150d08070b15202d3946525e687784919daab7c4d0d4c8bbaea195887b6e6255483b2f22151218242b37434e58616d7a86929facb8c4b8ab9e9185786c605346392d2013080000000714212d3a4754606d7a8798a2aebac6d3dfe4d7cabdb1a4978a7e7164574b3e31241808000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e28313b444c565d676d757e8690959ea1a9adb2b8bcc2c5c8ced0d2d2d1cecbd0cac6c5c4c5c6cad0caced0cac6c4bdb9b3ada79f99928c81786d676d7a8698a2aebac6d3d6cbbfb4aa94887b6e6155483b2e22150800000000000000000000000000000000000008121a232b343c454d575e676d747d858f949fa3aaafb8bcc2c9ced1cbc6bfbab4aeaba39f99928d86807a716c655f58514b423c3429241e160d06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616e7b87939faab4bfcbd6d1c7bdb2a89e938e81786d675e574f454039302a2118130c040000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000061724313d4a5764707d8a97a3b0bdcad6e7dbd0bdb0a3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d716d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e8dcd1c7bdb5afacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacaeb4b1b4b7b9bdc4c6cad0d6dbdbd6cfc9c2bbb3aba49f918c7f726b60564c42382d22170b04000000000000000005111e2b3844515e6b7784919eaab7c4d1ccbfb2a6998c7f7366594c403326190d00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000010d1a2734404d5a6773808d9aacb6c0ccd1c4b8ab9e9184786a5f53473a2e1d1207000000000000000000000000000000000000000000000000000613202d394653606c7986929facb9beb1a4988b7e7165584b3e323f4b5865727e8b98a5b1bed0d3c7baaea398887b6e6255483b3022170d03000005111e2a36414c566774818e9aa7b4c1cfdbc8bcafa295897c6f6256493c2f231607121b26313c46525e6875818e9ba9b3beb9ada197897c6f6256493c3025190d0100000915222f3c4855626f7b8895aab4bfcad6e2e2d5c9bcafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303a434c565e686d79818b92989fa7adb3b9bec4c8cdd1d4d2cfc9c5c4c1bebbbfbab8b8b8babfbbbec1c4c5c9cec9c5beb9b1aba39f938e82796d677985929facb8c5d2dcd0bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000081119222b333c454d555c606b707a828b92989ea5abb1b9bdc4cacfd0cbc6bfbab5afaba39f98928d847e786f6a605c544e463f352f281f180f0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3846535e6975828f98a3aebac3ced7cfc3baafa59e938e81796e696159514b423c3329241d160d0600000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcc8d5e2d7cbbeb1a4988b7e7165584b3e3225180b000a1724313d4a5764707d8a97a3b0bdcad6e3d7cbbeb1a4988b7e7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a84919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3d7cbc0b5aba39f9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9e9fa3aba4a7abacb2b8babfc6cacfd7dfdad5cdc5bdb5afa39f92877d6f685e544a3f332821160a000000000000000005121e2b3845515e6b7884919eabb7c4d1ccbfb3a6998c807366594d4033261a0d00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000004101c2934404b55697683909ca9b6c3d2cec1b5a89b8e827568584e43372b1f0b01000000000000000000000000000000000000000000000000000814212e3b4754616e7a8798a3aebabcafa396897c706356493d33404c5966737f8c99a6b2bfccd2c5b8ac9f928579695f53473a2e211406000000010d1925303e4b5864717e8b97a9b3becad6cabdb0a4978a7d7164574a3e312417060a15202a36414c5664707d8a97a2adbabeb3a9998d807366564c41362a1e110500000a1724303d4a5763707d8a96a3b0bdd0dbe7e2d5c9beb3a994887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e17232e38424b555e686e7a828e939fa2aab1b9bec4c9cfd4d4cfc9c6c4bdb9b7b4b1afb4aeacabacaeb4afb1b4b7b9bdc4c5c9c9c2bdb4aea59d948f82786d7884919eabb7c4d1d6c9bdb0a3968a7d7063574a3d3024170a0000000000000000000000000000000000000000071019212a333b434b515961686e777f868e939d9fa7acb2b9bec5cacfd1cbc7c0bbb5aeaaa29f97918b837c736d665f585145413a312a211910080000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2a36424d57616e7b86929fa8b2bcc5d0d5ccc1b7afa59e938f837b706b605c544d453f352f281f181009000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbad1dce7d8cbbeb2a5988b7f7265584c3f3225190c000a1724313d4a5764707d8a97a3b0bdcad6e3d8ccbfb3a79b918b87878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787879196a0acb9c5d2deded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e0d4c7bbafa39992909090909090909090909090909090909090909090909091929994979a9ea1a8acaeb4b9bec5cdd7dddfd6d0c7c0bbafa39991847a6d665b50443d32271b0f050000000000000005121f2c3845525f6b7885929eabb8c5d1ccc0b3a6998d8073665a4d4033271a0d00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000006131f2c3845515c677885919eabb8c4d1ccbfb3a6998c807366594d4031261b0f00000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995aab4bfbfb4aa94877b6e6154483b34404d5a6773808d9aa6b3c0cdd1c4b7ab9e9184786b574d42372b1e1206000000000815222f3b4855626e7b8897a2adbac6d3cbbfb2a5988c7f7265594c3f2e23170b030d1925303a4653606d7985929fabb8c3b7aa9d908477685e5246392d20130700000b1825323e4b5865717e8b98a4b1becbd7e4dfd2c6b9ada19786796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c162028343f4a545d676e7a8390949ea5aeb4bcc2c9cfd5d7cec8c5beb9b8b2adaba8a4a2aaa29f9e9fa2aaa2a4a7abadb2b8b9bdc4c8c6bfbaafa69f948d80747784909daab7c3d0d7cabeb1a4978b7e7164584b3e3125180b000000000000000000000000000000000000000000070f182129313940454f565e656c727b828990959ea0a8adb3babec5cad0d1cbc6bfbbb4aea9a19e95908780796f6a625b514c433c332b231a1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a25313b46535f6973808c96a0aab4bec7d2d3c9c1b7afa59e9590857d746d665f575045403a312a221b12060000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693aab4bfcbd7e3d8ccbfb2a5998c7f7266594c3f3326190c000a1724313d4a5764707d8a97a3b0bdcad6e3dbcfc3b7aca39b9894949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949ea0a8b2bdc9d5e1ded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6dfd2c5b9ac9f92878383838383838383838383838383838383838383838384858687888a8e91969a9fa2aaadb3bbc2ccd2d9e2d9d2cbc0b5aba1968f82786c60594f43382c21170b0000000000000006121f2c3945525f6c7885929fabb8c5d2cdc0b3a79a8d8074675a4d4134271a0e01000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000714202d3a4753606d7a86939facb9c6d2ccc0b6ac978a7e7164574b3e3124180a00000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcbaaea39886796d6053463a35414e5b6874818e9ba7b4c1ced0c3b6aa9d9083776a5d504431261a0e02000000000613202d394653606c7985929fabb8c5d2cdc1b4a79a8e817467544a3f34281c100308131f2c3845515c6674818e9aa7b4c1b8aca095877a6d6154473a2e21140700000c1926323f4c5965727f8c98a5b2bfcbd8e5ded1c5b8ab9e928578675c5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323a44505c666d798390959fa6afbabfc6ced5d8d1cbc3bcb8b3adaba8a19e9b98959498929192989495979b9ea1a8abadb2b8bcc3cac1b8b0a69d928b7e7783909daab6c3d0d8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000000000000000060f171f272f343e444c535b60696e757c838a91969ea1a9adb3babec5cbd0d1cbc6bfbab2ada79f99928c837c726d605d554d453d352b231a110800000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2a36424d57606d79849198a2acb6c0ccd2d3c9c1b7afa7a097928880796e69625a514b433c342d2417110a02000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c798698a3aebac7d3e0d9ccbfb3a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6e3dfd4c9beb5aca7a4a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0aaacb2bac4ced9e5ded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285787777777777777777777777777777777777777777777778797a7b7e8184888d92989ea2a9b0bbc0c7d0d9e1dcd1c7bdb2a99f948c80736b6054483e33281c100400000000000006131f2c3946525f6c7985929facb8c5d2cdc0b4a79a8d8174675a4e4134271b0e01000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000815222f3b4855626e7b889aa4afbbc8d4c8bbafa49a887c6f6255493c2f22160900000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdb8ac9f928579665c50443835424e5b6875818e9ba8b4c1cecfc2b6a99c8f8376695c504336291d09000000000005121f2b3744505b6576828f9ca9b5c2cfd0c3b6a99d908376665c5044382b1f120604101c2834404b5464717e8a97aab4bfbcb1a796897c706356493d3023160a00000d192633404c5966737f8c99a6b2bfccd9e5ddd0c4b7aa9d9184776a554b4034281c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1924303a444f59606d78828f95a0a7b0b8c1cad0d8d5cfc6bfbab1aca9a19e9996918e8b8887868585858687888b8e9196999ea1a9abb1babec5c2b8aea49f92867a83909ca9b6c3cfd8ccbfb2a5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000000050d151d2329323b414950575f616b6f767e848c92979fa2a9aeb3babfc6ced5d0cac4beb9b1aba39f9591867f756d675f574f473d352c231a10070000000000000000000000000000000000000000000000000000000000000000000000000000000000030e1a26313b45515d676e7c86929aa4afbbc0c7d0d3c9c1b9b1a9a19a938d837b716c605d554e463e3628221c140b020000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b667986929facb9c5d2dfd9cdc0b3a69a8d8073675a4d4034271a0d000a1724313d4a5764707d8a97a3b0bdcad6e3e5dad0c7beb7b3b1adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadb7b9bdc4ccd6e0ebded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6b676d6e7174787b80868c92979fa6afb5bdc7cfd9e3d9cfc4bbb0a69f93887c6f63594f44382c20160a00000000000005121f2b3744505b657986929facb9c5d2cdc1b4a79a8e8174675b4e4134281b0e01000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000a1724303d4a5763707d8a96acb6c0ccd2c6b9ac9f93867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdb8ab9e9285786b5f4a3f3434414e5b6774818e9aa7b4c1cdcfc3b6a99c908376695d5043362a1d060000000000030f1b27333f49536673808c99a6b3bfced2c5b8ac9f9285796d6053463a2d201307000c18232e3b4855626e7b8898a2aebabeb2a5988b7f7265584c3f3225190800000d1a2733404d5a6673808d99a6b3c0ccd9e6ddd0c3b6aa9d9083776a5d50442e23180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c56606b74808d949fa7b1b9c2cad6dbd3cbc3bcb4aea7a09d97928c8884817e7c7b7a7978797a7b7c7e8184888c91969d9fa7adb3bcc1c0baaea2988e81828f9ca9b5c2cfd9ccbfb2a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000030b121820292f383f444d535960636c71797f858c92979fa2aaaeb4bcc1c9ced6cfc9c2bdb5aea7a098928b82796e6960594f473e352c23190f06000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2935404b555f6a707e88939fa3afb6bec5ced3cbc3bbb3aca49f9590867e756d675f58504840332d261d140b0200000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a5f6c7885929fabb8c5d2dedacdc0b4a79a8d8174675a4e4134271b0e000a1724313d4a5764707d8a97a3b0bdcad6e3ece2d9d0c9c3bfbebababababababababababababababababababababababababababababababababababababababababababababababac4c5c9ced6dee8ebded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d555d60616467696e737a7f858f949fa4abb5bdc7d1dce1d6cdc2bbafa49a9083766b6155483d32271b0f0100000000000613202d394653606c798699a3aebbc7d3cec1b4a79b8e8174685b4e4135281b0e02000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000c1825323f4b5865727e8b98a5b1bed2d1c4b7ab9e918478675d5145382c1f130600000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1beb7ab9e9184786b5e51452e34414d5a6774808d9aa7b3c0cdd0c3b7aa9d9084776a5d51442e23170b0000000000000b17222d3d4a5763707d8a96a8b2bdc9d3c6baaea298887b6f6255483c2f221507000713202d394653606c7985929facb8c0b4a79a8d8174675a4e413025190d01000e1a2734414d5a6774808d9aa7b3c0cddae6dcd0c3b6a99d9083766a5d5043372a1d07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d18212c3945525d68707d88939fa6b0b9c3cbd4dbd3c9c1b9b1aaa39f95908b85807b7875716f6e6d676b676d6e6f7174787b7f848a90959fa2a9b0bbc0beb4aa9f938784919eaab7c4d1d9ccc0b3a6998d8073665a4d4033271a0d0000000000000000000000000000000000000000000000000001070e171d262d333c42464f545a61666d727a7f858c92989fa3aab0b9bdc4cbd1d5cfc6bfbbb1aaa39f948f837b6f6b60594f473e352b22180c0300000000000000000000000000000000000000000000000000000000000000000000000000000000030c18242f39434e58616c727f8b919fa4acb3bcc3ccd6cdc5beb6afa7a098928b81796f6a615a51443f382f261d140a00000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000b17222d46525f6c7985929facb8c5d2dfdacdc0b3a79a8d8074675a4d4134271a0e000a1724313d4a5764707d8a97a3b0bdcad6e3f0ebe2dad4cfcccbc7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d1d2d5d9e0e8f0ebded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f52505050505050505050505050505050505050514b51545557575f61686d737b828c9399a3abb5c0cbd7dcdfd8ccc0b6ac9f948a7d7063584e43372b1d130700000000000713202d3a4653606d798693a0b5bfcbd7cec1b5a89b8e8275685b4f4235281c0f02000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000010d1a2734404d5a6773808d9aa6b3c0cdcfc2b5a89c8f827569554b4035291d100400000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2beb7aa9d9184776a5e51443734404d5a6773808d9aa6b3c0cdd1c4b7ab9e9184786b544a3f34281c100300000000000614212e3a4754616d7a8796a1acb9c5d2cabfb4aa978b7e7164584b3e2e23180c0006121f2b3844505b667683909da9b6c3b6a99c90837669564c41362a1d1105000e1b2834414e5b6774818e9aa7b4c1cddae7dccfc2b6a99c8f8376695c504336291d1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2a36424d57606d7a84919aa4afb8c2cbd5dcd3c9c1b7afa7a098928c837e79736e6968656261605d555c6061626468696e73797e838b92979ea6afb6bebbafa499939196a0acb9c5d2d9cdc0b3a69a8d8073675a4d4034271a0d000000000000000000000000000000000000000000000000000000050b141b222731373d434850545c60676d737a80858d92989ea6acb2bbc0c7cfd6d1cbc3bcb4aea69e9591857d706b61594f473d342a1e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c46505a626d727f8b939aa2aab2bac1cad0d0c7c0bbb1aaa29f938e837c716c635b504a42382f261c1106000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c667986929facb9c5d2dfd9cdc0b3a69a8d8073675a4d4034271a0d000a1724313d4a5764707d8a97a3b0bdcad6e3f0f4ece5dfdbd8d7d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3dddee1e5ebf2f8ebded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245444444444444444444444444444444444444414547484b4d53565d61686e787f879299a3afbbc0cad4e2ddd2c7beb0a69d9083776a6054473a2f24180d01000000000714202d3a4753606d7a8693a0adb9d1dccec2b5a89b8f8275685c4f4235291c0f02000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000020f1c2935424f5c6875828f9ba8b5c2cecdc0b3a69a8d8073675a4d402f24180c0000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfb6aa9d9083776a5d504437333f4c5966727f8c99a5b2bfccd2c5b8ab9f928578665c5044382b1f120600000000000713202d3946525e687884919eabb7c4d1d0c0b4a79a8d817467544b4034281c1004030f1c28333f4a546774818e9aa7b4c1b8ab9e928578685e5246392d201307000e1b2835414e5b6874818e9ba7b4c1cedae7dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313a46535f6974808d96a1acb6c0cad3ddd4cac1b7afa59e9590867f78716d67615f5758555453514b5153545558575f61666d71777e858f949fa4acb5bdb5aba49f9ea0a8b2bdc8d4dacdc0b3a79a8d8074675a4d4134271a0e00000000000000000000000000000000000000000000000000000000020a11171f262b32383e424b51555d60686d737a80868f949ea1a8afb5bdc4ccd7d7cfc6bfbab0a7a09792867d706b61594f463c30271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a343e47515b626d727f889298a0a8afbabec5ced2ccc3bcb4aea59e9591867e736d605b544a42382d221711080000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798699a3afbbc7d4e0d9ccbfb3a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6e3f0ebe3dbd4cfcccbc8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8d1d2d5dae0e8f0ebded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f524539373737373737373737373737373737372f35393a3b3e42464c52565e666c737e87929fa4aeb8c2d0d9e4d9d0c2b8aba095897c6f62554b4035291d1104000000000714212e3a4754616d7a8794a0adbac7d3cfc2b5a89c8f8275695c4f4236291c0f03000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000003101c28343f4a546a7784909daab7c3d0cbbeb1a4988b7e7165584b3e322518070000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2beb7aa9d9184776a5e514437313e4b5764717e8a97a4b1bdd0d2c6b9ac9f9386796d6053463a2d201307000000000005111d2a36414c566875828f9ba8b5c2ced0c3b6a99d908376665c5145382c1f1306000b17222d3f4c5865727f8b98a5b2beb9ada297877a6d6154473a2e211407000f1b2835424e5b6875818e9ba8b4c1cedbe7dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d57616e7b86929fa8b2bec7d2dcd5cbc2b8afa59e938e837c726c66605c55534d4b4948474540454748494b4d53545c60646c717b828b939aa4abb5bdb5afacaaacb2bac3ced9dacdc1b4a79a8e8174675b4e4134281b0e000000000000000000000000000000000000000000000000000000000000060b141a21272c303940454b51565d60686d737b828a91969fa3abb2bac1cbd1d8d1cbc1b9b1a9a29892867d706b60584e43392e23180e0400000000000000000000000000000000000000000000000000000000000000000000000000000000030d18222c353f49515b626d727d8691969ea5aeb3bcc2cbd1cec6bfbaafa8a098928b7f746c665b544a3f3328231a0e0500000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0b5c0cbd7e3d8ccbfb2a5998c7f7266594c3f3326190c000a1724313d4a5764707d8a97a3b0bdcad6e3ede3d9d1c9c4c0bfbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbc4c5c9ced6dee8ebded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a24292c2d2e31363a41464d545b606c727f8b929ca6b0bec7d2dde2d4c8bcb1a79b8e8174675d5145392c201306000000000814212e3b4754616e7a8794a1adbac7d4cfc2b6a99c8f8376695c504336291d1003000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000006121f2b3844505c667885929fabb8c5d2c9bcafa296897c6f6356493c302316090000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1beb7ab9e9184786b5e51452e303d495663707c8996aab4bfcad4c8bbafa49a877a6d6154473a2e2114070000000000010d192530404c5966737f8c99a6b2bfcfd2c5b9ac9f9286796d6053463a2d20130700061724313e4a5764717d8a97a4b0bdbeb3a995887b6e6255483b2f221508000e1b2834414e5b6774818e9aa7b4c1cddae7dccfc2b5a99c8f8276695c4f4336291c1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f6975818e99a3aebac4d0d9d9cec3b9b0a69e938e81796f6a605b54514b46423e3c3b3a3835383a3b3c3e42464a51535a62696e757f889399a3abb5c0bbb9b7b9bdc3ccd5e0dacec1b4a79b8e8174685b4e4135281b0e0000000000000000000000000000000000000000000000000000000000000003090e161b1e272e343a41454c52565d60696e757d848d9299a1a8b0bbc0c7cfd8d7ccc3bbb3aaa29892867d6f6a5f554b40342820160c0200000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a232d373f49515b626b707c848e939fa2aab0bbc0c7cfd0cac1bab1aaa29f918c80786c665b50443f352c20170c02000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebad1dce8d8cbbeb2a5988b7f7265584c3f3225190c000a1724313d4a5764707d8a97a3b0bdcad6e3e6dbd1c7bfb8b3b2aeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeb7b9bdc4ccd6e0ebded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1d1d1d1d1d1d1d1d1d1d1d1d1d1d181d202122262a30353b424a5059626d73808d949facb6c0ccd8e2d9cdc3b8ac9f92867a6d6053473a2d201409000000000815212e3b4854616e7b8794a1aebac7d4cfc3b6a99c908376695d5043362a1d1003000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000713202d3a4653606d798698a2aebac6d3ccc0b5ab95887b6e6255483b2f2215080000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdb8ab9e9285786b544b40342f3b4855626e7b8898a2aebac6d3ccc0b6ac96897c6f6356493c30231608000000000000081724303d4a5763707d8a96a8b2bdc9d3c7baaea399887c6f6255493c2f221608000a1623303d495663707c8996a3afbcbcafa295897c6f6256493c2f231609000e1a2734414d5a6774808d9aa7b3c0cddae6dccfc3b6a99c908376695d5043362a1d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616e7b87939fabb5bfccd6e0d4c8bcb1a79f948f81786d675f58504a45403936312f2e2d2c292c2d2e2f31363940444650575e616d727e879299a3afbbc1c6c4c5c8ced5dee7dacec1b4a79b8e8174685b4e4135281b0e000000000000000000000000000000000000000000000000000000000000000000040a0c151d23282f353a41454c52575f616c7079808791969ea6afb5bdc6cfd8d5cdc5bcb4aaa29892857c6e675c51453d32281e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000008111b252d373f495159616a6e7a818a92989fa6afb5bdc5cdd6ccc3bcb4aea49c928d81786c605b51473e32291e1308000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5e2d7cabeb1a4978b7e7164584b3e3125180b000a1724313d4a5764707d8a97a3b0bdcad6e3e0d4c9bfb5ada7a5a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1abacb2bac4cedae5ded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f12111111111111111111111111070d111314151a1e24292f383f44515b606c77828f9aa4afbbc6d1dce0d3c7baaea3988a7d7064574a3d31261a0e020000000815222e3b4855616e7b8894a1aebbc7d4d0c3b6a99d9083766a5d5043372a1d1004000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000714212d3a4754606d7a8793aab3becad4c7bbafa499877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdb9ac9f928679665c5145382d394653606c7985929facb8c5d2d2bfb2a5988c7f7265594c3f3024190d0100000000000714212e3a4754616d7a8796a1adb9c5d2cbbfb4ab988b7e7265584b3f2f24190d010915222f3c4855626f7b8895a2aebbbcafa396897c706356493d3023160a000d1a2733404d5a6673808d99a6b3c0ccd9e6ddd0c3b6aa9d9083776a5d50442f24180d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c6673808d9aa4afbdc6d1dfd7cec6b8aca0958f82786d665c554e443f38342e2a262221201f1d1f202122262a2e34383e454d525b626c717e87929fa5afbac4ced2d4d9e0e7e7dacdc0b4a79a8d8174675a4e4134271b0e0000000000000000000000000000000000000000000000000000000000000000000000030b12181d24292f353a41454d535961676d737d848f949fa3abb4bdc6ced7d7cec6bcb4aaa2979083796d60594f443a3024190d02000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b252d373f474f575f686d757e8590949fa3abb3bbc3ccd4cec6bfbaada49d938d80746d635a50443a3025190b020000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad7e3d6c9bcb0a396897d7063564a3d3023170a000a1724313d4a5764707d8a97a3b0bdcad6e3dccfc4b8ada39b9895959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959ea1a8b2bdc9d5e1ded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120604040404040404040404040001040607090e13191d262d333f44505b656f7c87939fabb4bfcbd7e3d6cbbfb4aa9b8e817468574d42362a1e12050000000815222f3b4855626e7b8895a1aebbc8d4d0c3b6aa9d9083776a5d5044372a1d1104000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000814212e3b4754616e7a8794a1adbad0d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcbaaea39886796d6053463a2d3844505b6676838f9ca9b6c2cfcec1b4a89b8e817568564c4135291d110500000000000713202d3946525e687884919eabb8c4d1d1c1b4a79b8e817468564c4135291d11040815222e3b4855616e7b8894a1aebbbdb0a3978a7d7064574a3d3124170a000d192633404c5966737f8c99a6b2bfccd9e5ddd0c4b7aa9d9184776a554b4035291d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7984919eacb6c0cfd8dbd0c6bcafa59d9083796d665c544b433c332d28231d1a1615141310131415161a1c23282c333b4246515a626c717e8b939ea8b2bdc9d5dee5ebf1e6dacdc0b3a79a8d8074675a4d4134271a0e00000000000000000000000000000000000000000000000000000000000000000000000000070c13181e242930353b42464f555d606b6f7a828c9299a3abb4bcc5ced7d8cfc6bcb3a9a0958d80736b60564c4135291e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000109131b242d353e454e565d606c717b828c9299a1a9b1b9c2cbd4d0cabfb6aea59d928c7f726c61564c41362a1d140a0000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5b2bfccd8e1d5c9beb3a995887b6e6255483b2f221508000a1724313d4a5764707d8a97a3b0bdcad6e3d9ccc0b3a79b918c88888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888889196a1acb9c5d2deded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000002080b141c2228333f4953606a75818e99a3aebac7d3e0dcd0c5b8ab9e928578695f53463a2d2114070000000916222f3c4955626f7c8895a2afbbc8d5d0c4b7aa9d9184776a5e5144372b1e1104000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000815222e3b4855616e7b8894a1aebbc7d1c5b8ab9e928578665b5044382b1f12060000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a9b3bebfb4aa94887b6e6155483b2e333f4a546673808d99a6b3c0ced1c4b7aa9e918477685d5246392d201509000000000005111e2a36414c566975828f9ca8b5c2cfd0c4b7aa9d918477685d5245392c2013070815212e3b4854616e7b8794a1aebabeb1a4978b7e7164584b3e3125180b000c1926333f4c5966727f8c99a5b2bfccd8e5ded1c5b8ab9e928578675d5145392c2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a97a1adbec7d2e1d6cabfb4aa9e93897c6f675d544b42393028221c18120e0908070604060708090e12181c202930363f48505a626c75818e96a1acb9c2ccd8e3eff3e6d9ccc0b3a6998d8073665a4d4033271a0d000000000000000000000000000000000000000000000000000000000000000000000000000001070d13191e242931363e434b515960686d757f879299a2aab4bcc5d0dbd8cec5bbb1a79f93887d70685d52463a3025190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000109121b232c333c434c525a61696e7880879297a0a7b1b9c2cbd5d6c8c0b7aea49f93887d70685e52463e2f261b110600000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000004101c2834404a546774818e9aa7b4c1cddadfd2c6b9ada19786796d6053473a2d201407000a1724313d4a5764707d8a97a3b0bdcad6e3d8cbbfb2a5988c7f7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b84919eabb7c4d1deded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000020a1117222d38414e58616e7b86929facb9c5d2dfdfd2c6b9ada197887b6e6155483b2e2215080000000916232f3c4956626f7c8995a2afbcc8d5d1c4b7aa9e9184776b5e5144382b1e1105000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000915222f3c4855626f7b8895a2aebbc8d0c4b7aa9d9184776a544a3f33281c0f030000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8797a1adb9bcb0a396897d7063564a3d302d3d4a5764707d8a97a8b2bdc9d2c5b9aca096877a6d6154473c31261a0e0200000000010d192530404d5a6673808d99a6b3c0ccd2c6b9ac9f93867a6d6054473a2d2114070714212e3a4754616d7a8794a0adbabeb2a5988b7f7265584c3f3225190c000b1825323e4b5865717e8b98a4b1becbd7e4dfd2c6b9ada297867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576774808d9aa9b2bed0d9dfd3c6baaea2988e81756b60554b423930271e17110c070000000000000000000000070c10171f252a363f48505a606d7a84919ea6b0bbc7d3dfeaf5e6d9ccbfb3a6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000200000000000000000000000000000001080d13191f262a313940454f565d616d727e879298a2aab4bfcad6dcd7cdc3bbafa49a91847a6d61564c41362a1d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000009111a212a313a414550575e666d737d8591959fa7b1b9c3ccd6d2c9c0bbafa49a92857a6d615a5041382d22170b00000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000006121f2c3844515c667783909daab6c3d0ddded1c5b8ab9e928578675c5145382c1f1306000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d716e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000006111b262f3c46535f6975828f9ca8b5c2ced9e2d5c9beb3a9978a7e7164574b3e3124180b000000091623303c4956636f7c8996a2afbcc9d5d1c4b7ab9e9184786b5e5145382b1e1205000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000916232f3c4956626f7c8995a2afbcc8d0c3b6aa9d9083776a5d50442d22170b000000000000000000000000000000000000000000000000000000000613202c3945515d677885929eabb8beb2a5988b7f7265584c3f2d2e3b4754616e7a8796a1acb9c5d2c8bdb2a8988b7e7165574e42372b1f14080000000000081824313e4b5764717e8a97a4b1bdcad4c8bbafa49a897d7063564a3d302317090814212e3b4754616e7a8794a1adbabeb2a5988b7f7265584c3f3225190c000a1723303d4a5663707d8996a3b0bcd0dbe6e2d6cabeb3a995887b6e6255483b2f22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a46525e697784919daab7c4cfdddfd2c5b8ac9f92867b6e61594f433930271e150c06000000000000000000000000000000050d141a242d363f45525d68707d89949fabb7c3cdd8e4f0e5d8ccbfb2a5998c7f7266594c3f3326190c00000000000000000000000000000000000000030607090c0f0c0b09060100000000000000000000000002080d141a1f272f353d444c525b626c707d869298a2aebac0cad4dfd8ccc0b6aca1968d8074685e5246392f24180d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f181f282f353e454d545c606b6f7b8390959fa7b1bac4cfd9d8ccc0b6aca1978f81756c6153493f33271b0f03000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb9c5d2dfdcd0c3b6a99d9083766a554b4034291c1004000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164626262626262626262626262626262626262626262626262626262626262626262626262626262626262626b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000000a141d2a36424d5765727e8b98a7b1bcc8d4e0dacfc0b3a79a8d8074675a4d4134271a080000000a1623303d495663707c8996a3afbcc9d6d1c5b8ab9e9285786b5f5245382c1f0600000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000a1623303d495663707c8996a3afbcc9d0c3b6a99d9083766a5d5043372a1d060000000000000000000000000000000000000000000000000000000004111d2935414c556a7683909da9b6c0b3a79a8d807467544a3f332d3946525e687884919eabb7c4cfcec3b6a99d9083766a5f53473b3025190e05000000000916222f3c4955626f7c8895a2afbbc8d8ccc0b6ac998c7f7366594c4031261a0e0815222e3b4855616e7b8894a1aebbbeb1a4988b7e7165584b3e3225180b000815222f3b4855626e7b8895a9b3becad6e2e6dbcfbcafa396897c706356493d3023160600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8795a0acb8c5d1ded5c9bdb2a8998d8073695e52473d31281e150c0300000000000000000000000000000000000209121b242935414c56606b76828f9ca7b1bcc8d4e3eee5d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000406060b10121316191c191816120d070000000000000000000000000003090d151d2429323a4146515a616b707d86929fa4aeb8c2cfd9ddd2c7beb2a99f92867a6d61554b4035291d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d161e2429333b424a505960696e7a839095a0a8b2bdc7d1dcd2c7beb3a99e938a7d71655b5044372b1f150a000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8898a3aebac7d3e0dacec1b4a79b8e8174685b4e412f23180c00000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d71645755555555555555555555555555555555555555555555555555555555555555555555555555555555555e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000020b1a26313b4854616e7b8795a0acb8c5d1dedbcfc2b5a89c8f8275695c4f422f24190d0100000a1723303d4a5663707d8996a3b0bcc9d6d2c5b8ab9f9285786c5f52452e23170b00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000a1724303d4a5763707d8a96a3b0bdc9cfc3b6a99c908376695d5043362a1d1003000000000000000000000000000000000000000000000000000000010d19242f424e5b6875818e9ba8b4c1b5a99c8f8276665b5044382b36414c566875818e9ba9b3bec9d1c4b7ab9f95887b6e62564d41362a20170d04000000091623303c4956636f7c8996a2afbcc9ddd2c2b5a89c8f827569574d42362a1e120915222f3c4855626f7b8895a2aebbbdb1a4978a7e7164574b3e3124180b000714212d3a4754606d7a8797a2adbac6d3dfe4d8cbbeb1a5988b7e7265584b3f2e23170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a8b1bdc8d4ded2c5b9aca196887c6f62574d42352b1f160c030000000000000000000000000000000000000000091219242f3a444f5963707d89959fabb8c7d2dde8e4d7cabdb1a4978a7e7164574b3e3124180b00000000000000000000010407070c101314171c1f202226292525221e1811090100000000000000000000000000030b1218202830353f485059606b717e8a929ca6b0bdc7d1dcd9d0c4baaea2988c8073675d5145392c201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c1319212930383f444f575f686d7a839096a1abb5c0cbd7d9d0c5bbafa59d9083786c6053463c31261b0f030000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000004101c2934404b5565727e8b98aab4bfcbd7e3d7cbbfb5ab988b7f7265584c3f3225190700000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a484848484848484848484848484848484848484848484848484848484848484848484848484848515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000914212d3a46535e697783909daab7c3d0ddddd0c3b7aa9d9084776a554c4135291d110400000a1724313d4a5764707d8a97a3b0bdcad6d2c5b8ac9f9285796c5f4a3f34281c1003000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000b1724313e4a5764717d8a97a4b0bdcacfc2b5a99c8f8276695c4f4336291c10030000000000000000000000000000000000000000000000000000000008192633404c5966737f8c99a6b2bfb8ab9f9285796c605346392d303d4a5764707d8a97a1adb9c7d2c7bcb1a7998d8073685e52463d32291f160d0806080e1724313e4a5764717d8a97a4b0bdcad7d1c5b8ab9e928578695f53463a2d21140916232f3c4956626f7c8995a2afbcbdb0a3968a7d7063574a3d3024170a000613202c3945515d677885929fabb8c5d2dee7dacdc0b4a79a8d817467544a3f34281c1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d192633404c5966737f8c99a6b2bfced9ded1c4b7ab9e9184786a5f54453b3023190d040000000000000000000000000000000000000000000008131e28323d4854606b7783909dabb5c0ccd7e3e3d6c9bcb0a396897d7063564a3d3023170a000000000000000102080d111314181d1f2023282b2d2f323532312e29231b1309000000000000000000000000000001070e161e2429363e474f59616c73808d949fabb5c0cbd7e2d6cabfb4aa9e9285796d6053473a2f24180c0000000000000000000000000000000000000000000001040607080806020000000000000000000000000000000001080f171e262e343d454d565d686e7a849199a3afbbc4ced9d6cdc1b8aca0958a7d7064584e43372b1f12060000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6775828f9ca8b5c2d1dce0d3c7bbaea399897c6f6256493c2f23160900000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b44515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000000005121e2a36424d576774818e9aa7b4c1cddadfd2c5b8ac9f928579675d5145392c20130600000b1724313e4a5764717d8a97a4b0bdcad7d2c6b9ac9f938679665c5044382b1f1206000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000b1825313e4b5864717e8b97a4b1becacfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a8b2bdbaada297887b6f6255483c2e2d3a4653606d7985919eacb6c0cccdc2b8ab9f92857b6e61594f443a31281f1914131419202a36424d5766737f8c99a6b2bfccd9d2c6b9ada197887b6e6155483b2e2215071724313d4a5764707d8a97a3b0bdbcafa396897c706356493d3023160a0004111d2935414b556a7784909daab7c3d0dde9dcd0c3b6a99d908376665c5044382b1f1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd7ccc0b5ab9a8d807467584e4333291f10070000000000000000000000000000000000000000000000010c16202c38444f5964717e8a99a4afbbc7d4e0e3d7cbc0b5ab95887b6f6255483c2f221509000000000000060d1213191d202124292c2d2e34383a3c3f423f3e3a342d251b1107000000000000000000000000000000040c1319242c353d47505a606d78828f99a3afbbc6d0dbdbd0c6b9ada2978b7f7265554b4035291d1004000000000000000000000000000000010507070a080d1113141514120f090300000000000000000000000000000000050c141c2328333b444c565e686f7d87929fa8b2bdc9d5dfd4c8bcb1a79d9083776a5f53473a2e2115090000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929facb8c5d2dfdfd2c5b9ac9f9286796d6053463a2d20130700000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e312f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000000000000000020e1a2531404d596673808c99a6b3bfccd9dfd3c6baaea298877a6d6054473a2d21140700000b1824313e4b5764717e8a97a4b1bdcad7d4c7bbafa49986796d6053463a2d201307000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdbd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000b1825313e4b5864717e8b97a4b1becacfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8796a0acb8beb3a9988b7e7265544a3f342c3844505c6673808d9aa4afbbc8d3c6baaea2988e81756b60564c433a312a252120212429323b46525e697683909da9b6c3d0dcd5c9beb3a9978a7e7164574b3e2f23180c1925323f4c5865727f8b98a5b2bebeb3a995887b6f6255483c2f22150900010d18242f424e5b6875818e9ba8b4c1d2dde8dfd2c5b8ac9f9285796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0ddd4c7bbafa499897c6f6356493c3223170d00000000000000000000000000000000000000000000000000040d1c27333d4754606d7a86939facb9c6d2dfe0d3c7bbafa399877a6d6154473a2e21140700000000010911181e1e24292c2d2f35383a3d3f4446494c4f4c4a463f372d23180d010000000000000000000000000000000208121a232c353e44505c666e7b87929faab4bfcad6e2d6cabeb3a99c908376675d5145392c1f1306000000000000000000020507080a080d1113141618191d202122211f1a150e0600000000000000000000000000000000020a11172129323a444c56606b737f8c96a0acb9c4cfdad9cec3b8aca095887c6f6255483c31261a0e0200000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000004111d2935414c5663707d8998a2aebac6d3e0ddd0c3b6aa9d908377675c5145382c1f130600000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e31242222222222222222222222222222222222222222222222222222222222222222222b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000000000091825323f4b5865727e8b98a5b1becbd8e2d6cabfb4aa94877a6e6154473b2e21140800000b1825313e4b5864717e8b97a4b1becad7d7ccc0b5a093867a6d6053473a2d201407000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cececec9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000b1724313e4a5764717d8a97a4b0bdcacfc2b6a99c8f8376695c504336291d1003000000000000000000000000000000000000000000000000000000000713202d3946525e687784919daab7c1b4a89b8e8175665c5044382c343f4a54616e7b87939facb9c3d0cabeb3aa9e93897d70685e554c433d36302d2d2d2f353c444e58616e7b87939facb9c6d2dfdacfc0b3a79a8d807467554b4034291c101a2734404d5a6773808d9aa6b3c0b9ada197867a6d6053473a2d2014070000071926323f4c5965727f8c98acb6c0ccd8e4e0d3c7baaea298887c6f6255493c2f24180d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2c3845525f6b7885929eabb8c5d1ded2c6b9ac9f9386796d6053463a2d20130700000000000000000000000000000000000000000000000000000b16202c3945525d687783909daab6c3d0dddfd2c5b9ac9f9286796c605346392d2013060000000009131b23292e3035393a3d404547494a505355595c585651493f34291e1206000000000000000000000000000000000008111a2328343f4a545f6974818e98a2aebac7d3e0dbcfc5b9ac9f92867a6d6053473a2d2014070000000000000003090e1214151719191e2021232524292c2d2f2e2b2620180f060000000000000000000000000000000000060f172028323b444f59606d7984919ea8b2bdc9d5dfd4c8bcb1a7998c807366574d42362a1e120500000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000a13202c3945525d6874818e9baab4bfcad6e2d6cabeb3aa9a8d807467554b4034281c100400000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e312417151515151515151515151515151515151515151515151515151515151515151e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdcad7e7dbd0bbaea194887b6e6155483b2e22150800000b1825323e4b5865717e8b98a4b1becbd7ddd2baada093877a6d6054473a2d211407000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c1c1c1c1c1bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000a1724303d4a5763707d8a96a3b0bdc9d0c3b6aa9d9083776a5d5044372a1d06000000000000000000000000000000000000000000000000000000000005111e2a36414c566774818e9aa7b4c1b8ab9e9285796d6053463a2e2e3846535f6976828f9ca7b1bec7d0c5bcafa59e91847a6d675d554e46413c3a393a3b41454e565f6a74818d99a4afbbc7d4e0dcd0c3b6a99d908376675c5145382c1f131d2935414c566875828e9ba8b5c1b8ab9e928578675d5145392c20130600000a1623303d495663707c899aa4afbbc8d4e0e2d6cabfb4aa998c7f7266554b4035291d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667985929facb8c5d2ddd1c4b7aa9e918477675c5145382c1f1306000000000000000000000000000000000000000000000000000004111d2935414c566773808d9aa6b3c0cdd9ded1c4b8ab9e918578655b5044372b1f120500000006111b252d343a3a4145474a4b515356545c6062656865625b51463a2e221609000000000000000000000000000000000000081117232e38424d57616e7b86929facb8c5d1dce0d3c7baaea399897d7063564a3d30231706000000000000050d141a1e20212325252a2d2e30322f35393a3b3a37312a21180e030000000000000000000000000000000000060d162029323d45515c67717e8a96a1adb9c5d2dfd9cdc3b7aa9d908377695f53463a2d21140700000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000006111c27333f4953606d7a86929facb8c5d0dbdfd3c6baaea298897d7063564a3d2e23180c0000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0808080808080808080808080808080808080808080808080808080808111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5e1d5c8bbaea295887b6f6255483c2f22150900000c1925323f4c5865727f8b98a5b2becbd8d3c7baada094877a6d6154473a2e211407000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b4b4b4b4b4b4b4afa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000a1623303d495663707c8996a3afbcc9d1c4b7aa9e9184776b5e51442d22170b0000000000000000000000000000000000000000000000000000000000010d1925303e4b5864717e8b97a7b1bcb9ada197897d7063554b40342a36424d5764717e8a95a0acb6c0cccec1b9aca0969083796d676058524c48474647484c52585f686f7c87929fabb5c0ccd7e3dfd2c5b9ac9f9286796d6053473a2d2014202c3945525d687784919eaab7c3b6aa9d9083776a554b4035291d110400000714212d3a4754606d7a86939facb9c6d2dfe7dbd0c2b6a99c8f8376675d5145392c20140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000713202d3a4653606d798698a3aebac7d3dccfc2b6a99c8f837669554b4034281c10040000000000000000000000000000000000000000000000000000010d1924303d4a5663707d8996a3b0bcc9d6dccfc3b6a99c9083766953493f33271b0f030000010d18232d373f464a4c525457555d606366666d6f7275726d62564a3e3125180b0000000000000000000000000000000000000006111c26303c46525e6975818e9babb5c0cbd7e3d7cbbfb4ab998d8073665a4d402d22170b0000000000080f171f252a2d2e30323036393a3d3f414145474847433c332a201509000000000000000000000000000000000000040e17202834404b55606c7884919eabb7c4d0dbded1c5b8aca095887b6e6155483b2e22150800000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000b17222d3744505b65727e8b98a2aebac7d3e2ded2c5b8ab9f9285796d6053463a2d2013070000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5e1d5c8bbaea295887b6f6255483c2f22150900000c1926323f4c5965727f8c98a5b2bfcbd8d4c7baaea194877b6e6154483b2e211508000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca8a8a8a8a8a8a8a8a8a396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000916232f3c4956626f7c8995a2afbcc8d1c4b8ab9e9185786b5e4a3f33281c0f0300000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b87959fabb8beb3a99b8e8174675c5145382c313b4653606d7983909aa4afbbc5cfc8bdb2a8a0959082796f6a615e565554535455565d606a6f7a849199a3aebdc7d2dce2e0d3c7bbaea399897c6f6256493c2f2316212d3a4754606d7a86939facb9c1b5a89b8e8275685b4f422f24180d0100000613202c3945515d677784919eaab7c4d1dce8dfd2c5b9ac9f92867a6d6053473b3025190e000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507070f0706040000000000000000000000000000000000000714212d3a4754606d7a8793aab4bfcbd6dbcec1b5a89b8e8275685b4f422e23180c00000000000000000000000000000000000000000000000000000000081623303d495663707c8996a3afbcc9d6dacdc0b4a79a8d8174675a4e412d22170b00000006121e29343f495156565d606366676d707376797c7f827f7265584c3f3225190600000000000000000000000000000000000000000a141e2a36424d5764717e8a99a3afbbc7d3e0dcd1c3b6a99d9083766a544a3f33281c0f0300000008121a212930363a3b3d3f41414647494b4d4c525455534e463c31261a0f01000000000000000000000000000000000000050e18232e3944505b6673808d99a9b3becad6e0d4c8bcb1a7978a7d7164574a3e3124170b00000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000060f1c28333f4a54606c7883909daab4bfcad6e2d6cabfb4aa9b8e8275665c5144382c1f12060000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e1d4c7bbaea194887b6e6155483b2e22150800000c1926333f4c5966727f8c99a5b2bfccd8d4c7bbaea194887b6e6155483b2e221508000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9b9b9b9b9b9b9b9b9b9b9b96897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000815222f3b4855626e7b8895a1aebbc8d2c5b8ac9f928579665b5044382b1f120600000000000000000000000000000000000000000000000000000000000714212d3a46535e697683909dabb5c0b8ab9f9285796d6053463d322c3844515c666f7c88939fa9b3bec9cec3bab1a79f9490847c736d6864626060606264686d737c849196a1abb5bfc7cbd1d8e1d7cbbfb5ab988c7f7265594c3f30251a23303d495663707c899aa4afbbc0b5ab998c7f7266594c3f3326190700000004111d2935414c556874818e9babb5c0cbd7e3e0d3c7bbaea3998a7e7164564d41362a1c120700000000000000000000000000000000000000000000000000000000000000000000000000000002080d1113141b1413100c07010000000000000000000000000000000814212e3b4754616e7a8794a1adbad0dcdacec1b4a79b8e8174685b4e4135281b07000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbd8d8cbbeb2a5988b7f7265584c3f322519060000000916222e3a46515b6265686d7073767a7c7f8285888c8e8174685b4e412d22170b0000000000000000000000000000000000000000020c1a25303b4754606d7a86929facb9c5d2dfded1c5b8ab9e928578665b5044382b1f1206000005101a242c333b4246484a4c4e4c525456585a565d60625f584e43372b1d13070000000000000000000000000000000000000007121d28333f4a54626f7b8897a2adbac6d3dfd9cebfb3a6998c807366594d4033261a0d00000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000060f1a232b3844505b66717e8a95a0acbcc6d0dbe0d3c7baaea2988a7e7164544a4034281c10040000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1becbd8e2d6cabeb3a994877a6e6154473b2e21140800000d192633404c5966737f8c99a6b2bfccd9d4c8bbaea195887b6e6255483b2f221508000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828e8e8e8e8e8e8e8e8e8e8e8e8e897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000815212e3b4854616e7b8794a1aebac7d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727f8c99a4afbbbaada2978a7d7164594f44382c34404a54606b74818e97a1adb9c1cbccc3b9b0a69f969187807a75716f6d6c6d6e71747a7f869196a0a8b2bab9babfc6cfd6dcd1c1b5a89b8e827568574d42362a1e2935414c5666727f8c99acb6c0bbafa399897c706356493d3023160a000000010d19242f3e4a5764717e8a99a3afbbc7d4e0e3d7cbbfb5ab9c8f8275685e5246392e23180c0000000000000000000000000000000000000000000000000000000000000000000000000000040c13191d202128201f1d18120b0300000000000000000000000000000714212d3a4754606d7a8793a0b5c0cbd7dacdc1b4a79a8e8174675b4e4134281b0e01000000000000000000000000000000000000000000000000000003101c28343f4a546774818e9aa7b4c1cddad6cabeb3a996897c706356493d3023160a0000000b1824313e4a56626d72777a7d808386898c8f9298988f83766953493f33271b0f0300000000000000000000000000000000000000000914202c3945525d687783909daab6c3d0dddfd2c6b9ac9f9386796c605346392d20130600000c17222c363e454d525456585b565e6163656769686d6e6a5f53473a2f24180d01000000000000000000000000000000000000000b17222d394653606c7985929fabb8c5d2dedbcec2b5a89b8f8275685c4f4235291c0700000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000040d18212935414c56606c7883919da7b1bcced8e2dfd2c5b8ac9f92867a6d6054473a2e23180c000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000000000000000000d192633404c5966737f8c99a6b2bfccd9dfd3c6baada297867a6d6053473a2d20140700000d1a2633404d596673808c99a6b3bfccd9d5c8bbafa295887c6f6255493c2f221609000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e00000d192633404c5966737f81818181818181818181818181817c6e6255483b2f221508000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000714212e3a4754616d7a8794a0adbacfd4c8bbafa49a877a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000020e1a25313b4754616e7b87939facb9beb3a99d9083766b6054483c312e39424f59606d7a85929ea5afb9c3cccbc2b8b0a8a099928d86827d7c7a797a7b7e81858c9298a0a8b2b4aeacaeb4bdc4ccd6d1c4b7ab9e918478695e52463a2d202d3946525e687683909ca9b6c3b9ac9f92867a6d6053473a2d201407000000000814212d3a4754606d7a86929facb9c5d2dfe7dcd1c5b9ac9f92867b6e61544a4034281c1106000000000000000000000000000000000000000000000000000000000000000000000000040e161e24292d2e352d2c29241d150d04000000000000000000000000000713202d3a4653606d798699a3afbbc7d4dbcec1b4a89b8e8175685b4e4235281b0700000000000000000000000000000000000000000000000000000006121f2b3844505c667783909daab6c3d0ddd2c6b9ada197877a6e6154473b2e2114080000000c1925323f4c5865727f83868a8d909299999c9fa29e918477655b5044372b1f1205000000000000000000000000000000000000000004111d2935414c566975828f9ca8b5c2cfdbe0d4c7bbafa499877a6d6154473a2e2114070005111c28333e4850575e6163656769686d70727476787a7c6e62554b4135291d11040000000000000000000000000000000000000006121f2b3744505b6576828f9ca9b5c2cfdcddd1c4b7aa9e9184776b5e51442f24180c00000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000030d161f2a333c46525e68717e8b95a0acb9c3cee0e0d4c8bcb1a79a8e8174685d5245392c1c1207000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000000005121e2a36424d576774818d9aa7b4c0cddaded2c5b8ab9f928578675d5145392c20130600010d1a2734404d5a6773808d9aa6b3c0cdd9d5c8bcafa295897c6f6256493c2f231609000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e00000c1825323e4b57636d7375757575757575757575757575756e6a5f53473a2e211408000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000714202d3a4753606d7a8693a9b3bec9d5ccc0b6a194877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000914202d3a46525e6976838f9ca9b3beb8ab9f95897c6f63584e43372b303d45525d68717e8a939ea7b1bac3cccac2bab2aba39f99928f8a88878687888b8e92989fa2aab2b4aba39fa3abb2bac4cfd2c5b9ada196877b6e6154473b2e212e3a4754616d7a86929facb9c3b7aa9d908377675d5145392c201306000000000713202c3945525d687683909ca9b6c2cdd8e4e0d4c7bbafa3998c7f72665c5144382d22170b0200000000000000000000000000000000000000000000000000000000000000000000020c1620283035393a423a39352f271f160d0400000000000000000000000006131f2c3845515c677986929facb9c5d2dbcec2b5a89b8f8275685c4f422e23180c0000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929facb8c5d2ded1c5b8ab9e928578685e5246392d2014070000020e1b2835414e5b6874818e939a999d9fa3aba9acac9f9286796c605346392d2013080000000000000000000000000000000000000000010d19242f414e5b6774818e9aa7b4c1cddae3d7ccc0b5ab95887b6e6255483b2f221508000814212d3945505a61696e70727476787a7c7e808285878478675d5145392c20130600000000000000000000000000000000000000030f1b27333f49536774808d9aa7b3c0cddaded2c5b8ab9f9285786c554b4035291d1004000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000040d151f28313c454f59616d7a85929ea7b1bccbd5dfddd1c4b8ab9f95887c6f62564c4135291d0b00000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000714202d3a46525e697783909daab7c3d0ddddd0c3b6aa9d9083776a554b4035291d100400010e1a2734414d5a6774808d9aa7b3c0cddad5c9bcafa296897c6f6356493c30231609000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e00000a16222f3b46515b63666868686868686868686868686868625f584e43372b1f1206000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000613202d394653606c798697a1adb9c6d2d2bbaea195887b6e6255483b2f22150800000000000000000000000000000000000000000000000000000000000005111e2a36424d5665717e8b97a1adb9bcb1a79b8f82756a5f53473e312935414c56616c75818f95a0a8b2bac3cbccc3bdb5afaba39f9b979599939995979b9fa2aaaeb4baaea3999299a1a8b2bdc9d5c9bdb2a8978a7d7164574a3e2e2a36424d5764717e8a99a3afbbbeb3a99a8d807467554b4035291d11040000000004111d2935414c5666727f8c99a7b1bcc8d4e2e3d7cbc0b5ab9e9184796d60544a3f33281e13080000000000000000000000000000000000000000000000000000000000000000000008131e28323a4146474e4745403931281f160e05000000000000000000000004101c2834404b556c7885929fabb8c5d2dccfc2b6a99c8f837669554b4034281c100400000000000000000000000000000000000000000000000000000815222f3b4855626e7b8898a2aebac7d3dbcec2b5a89b8f827568564c41362a1e11050000000d1a2733404d5a6673808d99a4aca9acaeb4b5b8aea399887c6f6255493c3025190d000000000000000000000000000000000000000000081a2733404d5a6673808d99a6b3c0ccd9e8ddd2bcafa296897c6f6356493c30231609000a1723303c4955616c717b7d7f81838587898b8d8f9196877a6d6054473a2d21140700000000000000000000000000000000000000000b17222d404d596673808c99a6b3bfccd9dfd2c5b9ac9f928679675d5145392c1f1306000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000060d161f27313a434d57616b75818e97a1adb9c3cedddfd5c9bdb2a89d9083776a6054443a2f24190d00000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000020b14212e3b4854616e7b8795a0acb8c4d1dedbcec1b5a89b8e8275685b4f422f24180d0100010e1b2734414e5a6774818d9aa7b4c0cddad6c9bcafa396897c706356493d3023160a000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000006121e2a3540495157595b5b5b5b5b5b5b5b5b5b5b5b5b5b55534e463c31261a0f02000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000006121f2b3844505b667885929eabb8c5d1c9bcafa296897c6f6356493c30231609000000000000000000000000000000000000000000000000000000000000020e1925303b4753606d7985929eaab4bfb9ac9f93877c6f625a5043392f303a44505a606d79839096a0a8b1b9c0c9cfc7c0bbb5aeaca8a4aba49fa4aba4a7abaeb3babfb4aa9f92869196a1adb9c5d1cbc0b3a69a8d807367544a40342d3a46535e6975828f9cabb5c0baada297897d7063564a3d2f24180d0100000000010d1924303b4855626e7b88959fabb8c6d0dbe7dcd1c7b9ada1968b7e71665b50443a3024190e040000000000000000000000000000000000000000000000000000000000000000020b1924303a444c52545b53514b433a312820170e0500000000000000000000000c18232e44515e6b7784919eaab7c4d1ddd1c4b7ab9e918478675c5145382c1f13060000000000000000000000000000000000000000000000000005121e2a36424d5765727e8b98aab4bfcad6d6cabeb3a9988c7f7265594c3f3025190d010000000c1925323f4c5865727f8b98a5b6b6b9babfc2bfb4ab998c7f7366564c41362a1d120700000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4c0cddae3d6c9bcb0a396897d7063564a3d3023170a000b1724313e4a5764717e87898b8e90929796989a9c9e95887c6f6255493c2e23180c0000000000000000000000000000000000000000061925323f4c5865727f8b98a5b2becbd8e0d4c7bbafa399867a6d6053473a2d201407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000002090f181f283139434c555f69707d8a939ea9b3becbd5dfd9cec5b9aca0968b7e7165584e4332281e130800000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000000a141d2a36424d5765717e8b98a7b1bcc8d4e0d8ccc0b6ac998c807366594d4033261a070000010e1b2834414e5b6774818e9aa7b4c1cddad6c9bdb0a3968a7d7063574a3d3024170a000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0000020d19232e3740464b4c4e4e4e4e4e4e4e4e4e4e4e4e4e4e4847433c332a20150900000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000030f1c28333f4a546a7683909da9b6c3d0cabeb1a4978b7e7164584b3e312518070000000000000000000000000000000000000000000000000000000000000009141f2c3945515d6773808c98a2aebabbafa49a8f82766c61554b403529323e45515d676e7b849196a0a7afb9bec5cbcbc6bfbbb9b5b0b5afacafb5b1b4b8babec1baaea3988d8084919eabb7c4c1bfbbb6a99c908376665c51443835404b55616e7b87939facb9c5b8ab9f9285796d6053463a2d2013070000000000000814212e3a47535f6a7683909daab4bfcad6e2e3d5c9bdb2a89d9184786c60564c41352920160c02000000000000000000000000000000000000000000000000000000000000000a141d2935414c565d6168605d554c433a322920170f0600000000000000000000071c2936434f5c6976828f9ca9b5c2cfdcd2c6b9ac9f9386796d6053463a2d201308000000000000000000000000000000000000000000000000000714202d3a46525e697683909ca9b6c3d0dbd3c6baada297887c6f6255493c2f221608000000000a1724303d4a5763707d8a96a9b3bec5c7cbd1c3b6a99d908376685e5246392e23180c01000000000000000000000000000000000000030f1c28333f4a546875828e9ba8b5c1cedbe2d5c9bcafa296897c6f6356493c3023160900091623303c4956636f7c8996989a9c9ea1a9a5a7a9a4978a7e7164544a4034281c1004000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbd8e3d7cbc0b5a194877a6e6154473b2e211408000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000001070c141a222a313a434b555d676e7b85929fa5afbbc5cfdde0d4c8bcb1a79e9184796d6053463c3220160c0100000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000006111b262f3846535e6975828f9ba8b5c2cdd9e0d4c8bbafa49a8a7d7063574a3d3024170a0000020e1b2835414e5b6874818e9ba7b4c1cedad6cabdb0a3978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e00000007121c252e353b3e4042424242424242424242424242423b3a37312a21180e0300000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000b17222d424f5b6875828e9ba8b5c1ceccc0b3a6998d8073665a4d402e23180c0000000000000000000000000000000000000000000000000000000000000004101d2935404b55616d7a86929fabb5bfb6ac9f948a7d70675d51453d322935404b555e696e7b8490959da5adb3bbbfc6cacbc7c5c2bdc0bbb9bbc0bec1c5c6bfbbafa59f92867b828e9ba8b5b7b4b5aeaca99f9286796d6053463a3845515d6773808c99a4afbbbeb2a99b8e8174665c5144382c1f120600000000000006121f2b37434e5865717e8b98a2aebac6d3dfe5dacfc4b8aca0968b7e71685d52453d32281e130800000000000000000000000000000000000000000000000000000000000006111b262f3846525d686d756d675d554c443b322921180f070000000000000000010e1b2834414e5b6774818e9aa7b4c1cddad4c7bbafa499897c6f6256493c3025190e020000000000000000000000000000000000000000000000020b14212e3b4854616e7b87939facb9c6d2ded2c5b8ab9f9285796c605346392d201306000000000814212e3b4754616e7b8797a1adb9c6d2d7d2c6b9ac9f93877a6e61554b4034281d120700000000000000000000000000000000000006121f2b3844505b667683909ca9b6c3cfdce3d7cbbfb4ab95887b6f6255483c2f221509000815212e3b4854616e7b8799a3a7a9abadb3b1b3b4a79a8e8174665c5144382c1f1509000000000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3c0cdd9e8dcd1baaea194877b6e6154483b2e211508000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000003070d12181f252a343c434c555d676d79839197a2adb7c1cdd6e1d7cec5b8aca0958a7e71665c5145382c1f13040000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000020a1117222d38414e58616e7b86929facb9c5d2dfdfd2c6b9ac9f93867a6d6054473a2d2114070000020f1c2835424f5b6875828e9ba8b5c1cedbd7cabdb0a4978a7d7164574a3e3124170b000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000000000a131c232a2f323335353535353535353535353535352f2e2b2620180f060000000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000061a2733404d5a6673808d99a6b3c0cccec2b5a89b8f827568544a4034281c1004000000000000000000000000000000000000000000000000000000000000000c18242f3946525e6874808d99a3aebbbeb0a69e9184796d60594f443a2f2f39434d575e696e7a838e939ea1a9aeb5b9bec4c5c9cfd2ccc7c6c7ccc8c7c0bbb5aea59e938b7f727f8c99abacaaa8aba39f9d9a98897c6f6256493c414b55606d7985919eabb5c0b9ada1978a7d7064544a4034281c1004000000000000020f1a26313c4754606d7a85929facb8c1ccd7e3e0d4c8bdb2a89e92857a6d60594f443a302519130900000000000000000000000000000000000000000000000000000000060f17222d38414d57616d7a81796d675e564d443b332a2118100700000000000000000c1926333f4c5966727f8c99a5b2bfced9d7ccc0b5ab998c807366564c41362a1e110500000000000000000000000000000000000000000000000a141d2b37434e5865727f8c9aa4afbbc8d4d7cbc0b5ab9c8f8275665b5044382b1f1206000000000714202d3a46525e697885929eabb8c5d1ded4c8bbafa49a8b7f72675c5145392f24180f0600000000000000000000000000000000000613202d394653606c7985929eabb8c5d1dee0d3c7baaea399877b6e6154483b2e211508000713202d3a4653606d7986929facb6b8b9bebec0b8ab9e9285796d6053463c31261a0e05000000000000000000000000000000000007121e2b37424d576875828e9ba8b5c1cedbe0d4c8bbafa49a877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000105060b0f13181d232930363e464e555d676d79828f95a0a9b3bec9d3dfdbd0c5bcb0a69d9083786c60544b4034281c10040000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000002080b141c2228333f49535f6a74818e98a3aebac7d3e0ddd0c3b7aa9d908477685d5245392c2013070000020f1c2935424f5c6875828f9ba8b5c2cedbd7cabeb1a4978b7e7164584b3e3125180b000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000000020b141b22272b2d323232323232323232323232323232302f2c27211911070000000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000b1825323e4b5865717e8b98a4b1bed1d0c4b7aa9d918477665c5144382c1f12060000000000000000000000000000000000000000000000000000000000000007121d2a36414c56616e7b86929fa9b2bdb9aca1968d80736b60564c41382d313b454d575e686e79818a92979fa3abadb3b8b9bdbebfc0c1c0c0bfbdb8b6afaba39f938e8175707c8999a4a09e9b989992908d8a887f7265584b3f45515d67727f8c97a1adbdbfb4aa9e9184796d6053463a2e23180c00000000000000000a15202c3945515d6774818e9ba6b0bbc6d2e2e5d9cec3b9ada1978d80746b60564c413529251b12060000000000000000000000000000000000000000000000000000060f182127333f49535f6974808d82796d685e564d453c332a22191008000000000000000a1724303d4a5763707d8a96a8b2bdc8d4ddd2c3b6aa9d908377685e5246392d20150b0000000000000000000000000000000000000000000006111c262f3847535f6a7783909dacb6c0ccd8d3c7bbafa3998b7e7265544a3f33281c0f030000000005111e2a36424d576975828f9ca8b5c2ced9d8ccc0b6ac9e9184796d60554b40352921180e0600000000000000000000000000000208101c28343f4a54626f7c8997a1adb9c6d2dfdfd2c5b9ac9f9286796d6053463a2d2013070006121f2c3844515c667683909da9b6c3c6cacfc6b9ada2978a7d7063574e42372b20170d04000000000000000000000000000000050e19222e3a47535f697784909daab7c3d0dddfd2c6b9ac9f9386796d6053463a2d201307000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160906060606060000040607070809080d1113171b1f24292f343b424650585f676d79828f949fa8b1bcc5d0dbded6cabeb3aa9f948a7d70665b5042392e23180c000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120604040404040404040404040001040707090e13191d262d333d44505b656f7c87939faab4bfcbd7e1d5c9bdb2a8998c807366564c4135291d11040000030f1c2936424f5c6975828f9ca8b5c2cfdbd7cbbeb1a4988b7e7165584b3e3225180b000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0000000a141d262d3337393e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3d3b38322b23190f0500000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000a1623303d495663707c8996abb5c0cbd2c5b9ac9f9286796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000010d1925303a46535f6973808d96a1adb9bdb2a89f93877d70685e53493f3327333b454d565e676d747e858d92999ea1a9abadb2b2b3b3b4b4b3b2b2acaca49f99928c81786d6d7a86939696918e8b898683807e7b726d62564a424e58606d7a85929ea9b3bebaaea3988c7f73665c5144382c1c1207000000000000000004111d2935414b55626f7c88939eaab6c1d0d9e3e0d5c9beb3a99f93877d6f685e524640372d2417110a030000000000000000000000000000000000000000000000071018212a333c44505b656e7b879290837a6e695e574e453c342b221911080000000000000714212e3a4754616d7a8796a0acb8c5d1dfd2c6b9ac9f93877a6e6154473e30271c12070000000000000000000000000000000000000000040e17222d38424f59626f7c88959fabbec7d2ddd2c5b9ac9f92867a6d6154473a2d22170b0000000000020e1a25303f4c5865727f8b98a7b1bcc8d4ddd2c7b9ada1968b7f72675d51453e332a20181008020000000000000000000001040c1319262b3844505c6673808d99a9b3bec9d5e2ddd0c4b7aa9d918477665c5044382b1f12060004101c2834404a546774808d9aabb5bfcbd6d6cabeb3a99b8e81756a5f53473d32291f160c0500000000000000000000000000060e17202834404b54626e7b8895a0acb8c5d1deded1c4b8ab9e918578665c5044382b1f1206000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316121212121212070c10121314151618191d2022272b2f353940454d525a616a6e79828f949fa6b0bac3ced7e0d6ccc4baaea2988f82766b61544a3f30271d1207000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f12111111111111111111111111080d111314151a1e24292f383f44505a606c77828f99a4afbcc6d1dcded2c5b9aca096887c6f6255493c2f24190d01000003101c2936434f5c6976828f9ca9b5c2cfdcd8cbbeb1a5988b7e7265584b3f3225180c000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000006111b262f383f44464b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4948443d352b21160b00000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000815222e3b4855616e7b8899a3afbbc7d3c7bbafa399887b6e6255483b2f221508000000000000000000000000000000000000000000000000000000000000000008131e2a36424d57606d7984919ea6b0bcbbafa49991857a6d655b50443f362d333b444c555d606c717a80868d92979a9ea1a9a5a6a7a7a7a6a5a8a09e9a938f877f786d666777838c8a8784817f7c797674716e69625b51464a545f6a73808c97a1adbbbfb5ab9f92867a6d61544a4034281c0b000000000000000000010d18242f3a47545f6a75828f9ba6b0bdc7d2dde6dacfc5bbafa49991847a6d615c52493f3628231c150c060000000000000000000000000000000000000000030b1218222a333c454f59606c77828f999590837b6e695f574e463d342b23190e0500000000000713202d3946525e687784919daab7c4d0dcd4c8bbafa49a8b7e71645a5042392e23180e05000000000000000000000000000000000000030c162028333f4a54606b76828f9ca7b1bcd0d9d6cbbfb4aa9c8f8275685e5246392d1c11060000000000000915212e3b4854616e7b8795a0acb8c6d0dcd5c9bdb2a89e9184796d605a50453c322a2219140d070501000000000306070d11161e252935414c56606d7884919eaab7c4cfdae6dbcec1b5a89b8e827568544a3f34281c100300000c18232e3e4b5764717e8a99a3aebbc7d3dbcfc5b9ac9f92877b6e62594f443b31281e170e0903000000000000000000040a11172029323a45515c6673808d99a7b1bcc8d4e0dccfc2b5a99c8f827669544a3f34281c1003000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231f1f1f1f1f1f1f1f181c1f202121232424292d2d33373a41454b51575e616c717c848f949fa6b0b8c2ccd5e0d7cec4bab0a69f92857b6e61594f42382d1e150b00000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1d1d1d1d1d1d1d1d1d1d1d1d1d1d191d202122262b30353a424a5059626c73808c949fabb5c0cfd8e2d6cabfb4aa9e9184776a5f53473b2e1e130800000003101d293643505c6976838f9ca9b6c2cfdcd8cbbfb2a5988c7f7265594c3f3226190c000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e00000b17222d384149505358585858585858585858585858585856544f473d32271c1004000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000713202d3a4653606d7986929facb9c5d2cbc0b5ab978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000000000020e1a26313b45515d67717e8a949faab4bfb5aba1978f82776c605b51483e3627323b434b515a61686d737b80858a8e91969698999a9b9a99989696918d87827c726d665c65727f807d7a7775726f6d676764615f57514944505c666f7c86929fa9b3bebbaea3998e8174685e5242392e23180c0000000000000000000007131d2b37434e58626f7c88939eabb5c0ccd7e0e1d7ccc0b5aba1968f82756e635b51483f342e261e17110a030000000000000000000000000000000003090c151d2328343c464e57606b737f8c949f9f9591847b6e6a5f584f463d352b20170d020000000005111d2a36414c566874818e9baab4bfcbd6d8ccc0b6ac9d9083766c61544a40342820170d0400000000000000000000000000000000050c151e28323a44505b66707d89949fabb9c3cde0d3c7baaea3988b7e7164564c41362a1d0a000000000000000714212d3a46535e697784909daab4bfcbd6dacfc4b9ada1978d80736c61574d443c342a251f1813110d080d060c101213181d202830353f45525d68727e8b96a0acb9c5d2e1e1d5c9bdb2a8988b7f7265584c3f2e23170b0000000714212d3a4754606d7a86929facb9c5cfdad3c7bbafa3998f82756b61564c43393029201a140e09070604040607070c10141b2227323a444e58606d7984919eabb7c3ced9e2d6cabeb4aa9a8d8073675a4d402e23170b00000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2c2c2c2c2c2c2c2c2c23282c2d2d2e2f313035393a3f44464b51555c60696e757e8691969fa6b0b8c2cad4ded9d0c6bcb2a89e948b7e71695e52473e2f261c0c0300000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a24292c2d2f31373a41464c545b606b717e8b929ca6b0bdc7d2e1ded3c6baaea2988c7f7265584e43372b1f0c0100000003101d2a3643505d697683909ca9b6c3cfdcd8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e00030f1b27333f49535b606565656565656565656565656565656360594f44382c201307000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000006121f2c3844505c667884919eabb7c4d1d1bfb2a5998c7f7266594c3f31261a0f02000000000000000000000000000000000000000000000000000000000000000009141f2935404b55616c76829098a2aebabdb2a99e948d80746d635a50483f332d3139404550565d60696e73797d818487898b8c8d8e8d8d8c8a8784807c756f6a605c54626d7273706d68686562605c555755534d4546505a606d78839099a3aebbbeb3a99f92867b6e61564c4130271c120700000000000000000000010f1b26323c47545f6a75828f99a4afbbc4cfdae6ddd2c7bdb2a89e948d80736d625a51443f383027221b140f0b06000000000000000000000002050a0f151a1e272e343e464e585f69707d87939fa6a7a09691847c6f6a60594f473d32291e140800000000010d1925303e4b5764717e8a98a3aebac7d3ddd2c7b8ab9f958a7e71665c51443c32291f160e060000000000000000000000000001070e161e27303a444e58606c7883909da6b0bbcbd4d7ccc0b5ab9f92867a6d6054473a3025190d0000000000000005121e2a36424d5765727f8c98a3aebac7d1dcd5c9beb2a99f93887d70695f564e463d36302924201e191a1a1b171c1f2024292c323a4146525c606d7a85929ea8b2bdc8d4e1dfd2c5b9ada196887b6f6255483c2f2215060000000713202c3945525d6876828f9ca9b3bec9d5d7cbc0b5ab9e94897d70685e554b423b322a251f1a1514131110121314181c1f262d333b444c565f6a73808c96a1adb9c5d5dfdfd3c6baaea298897d7063564a3d3023170600000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c393939393939393939392e34383a3a3b3c3e40414647495053555d60676d727b818a9298a0a8b0b8c2cad4dcddd2c7beb4aaa1968f82756c62574d42352c1d140a0000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f524539373737373737373737373737373737372f35393a3b3e42474c52565e666c737d87929fa4aeb8c2d0d9e1d6cabfb4aa9f92867a6d6054473c32261b0f0000000004111d2a3744505d6a7783909daab6c3d0ddd9ccbfb2a6998c7f7366594c403326190d000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0005121f2b3744505b656c717171717171717171717171717171706b6054483b2f221609000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000003101c28343f4a546976828f9ca9b5c2d1cec1b4a89b8e817568584e43372b1f12060000000000000000000000000000000000000000000000000000000000000000030d18242f3a43505a626e7c86929fa5afbabbb0a69d928c7f726c625a51443f382f2f353e434c52575e61676d7074787a7d7f80808181807f7d7b77736f6a625f5850515b62656663615e56585653514b4b484642454e58616c737f8c95a0abb4bfb9ada2978d8074695f53443a301e150b0000000000000000000000000a15202b37434e58626f7c87939fa9b2bdc9d5dee3d9d0c4bab0a69c928b7f726c635b504a423b332d261f1c17110f0a0807060406070708090e12151b1f262b303940454f585f6a6e7b859299a4afb1a8a09691857c6f6b60594f443b3025190d01000000000814202d3a4753606d7a86929facb8c4cfdad4c8bcb1a79e9184796d60574e443b31282017110d0703000000000000000000060c121820283039424c565f6a717e8b95a0acb8c2ccddd4c7bbafa4998e8174675d514539281e130800000000000000020e1a25313b4754616d7a86929fabb5c0cbd7dacfc4bbafa49a92857b6e685f584f46413b352f2d2a2527272723282c2d2f35393e444c525b636e74818e97a1adbac3ced9e5ded1c4b7ab9e9184786a5f53473a2e21150800000004111d2935414c5664717e8b97a1adb9c5d0dbd1c7bdb0a69e91847a6e675d544c443d36312b262220201d1c1f202123292c2f383f444d565e686f7c87929fa8b2bdc9d5e7ded2c5b8ab9f9285796d6053463a2d20130700000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256494545454545454545454545454044464748494b4c4c5254535b6063676d72797f868e939fa2aab2bac2cad4dcddd8ccc0b6aca29891847a6e615a50453b30231a0b020000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245444444444444444444444444444444444444414547484b4d53565d61686d787f879299a3aeb6bfcad3e2d8cfc6baaea2988d8074685d5245392a20150a0000000004111e2a3744515d6a7784909daab7c3d0ddd9ccbfb3a6998c807366594d4033261a0d000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000613202d394653606c787e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7d706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000c17232e404d596673808c99abb5c0cbd1c4b8ab9e9184786a5f53473a2e21140700000000000000000000000000000000000000000000000000000000000000000007131d28313e47535f6a717e8b939ea8b2bcb8aea49f93887e716c635b5049413a3229313a41454d52555d606367686e7072737474747372706e6966625f58534e4449515759595754524c4c494645403e3b3c454d575f6a707e88939fa7b1bdbcb1a79e92857a6d60574d4232291e0c03000000000000000000000000040f1b26323c47535f6a74808d96a1adb9c1ccd6e1e2d6ccc1b8aea49f93887e726d605c544d443f382f2b28221c1b171514131012131415161a1e21272b31373c434b5159616a6f7c859197a1abb5bab2a8a19792857d706b60564c41362a1e1105000000000613202c3945515d6775828f9ba8b2bdc9d5d8cdc2b9aca0968b7f726a5f564c433a3228231c18120f0b0608070707080a0f11171d2329323a424a545e686f7c86929fa7b1bccad4d8cfc6b9ac9f93877b6e62554c4135291d110400000000000000000914202d3946525d6874818e99a3afbbc5d0dbd8ccc0b6aca29790837a6f6a6059524d45403a3936303433342e34383a3c41454750565e616d73808c939da9b3beccd5e0e0d3c7bbb0a6998d807366584e43372b1f1206000000010d19242f3a4753606d7985929eaab3becad6d9cfc1b9aca1969083796d665e564f46423b37312e2d2c29282c2d2e2f34383d414950575e686d7a839199a3afbac4cfdae0d4c8bcb1a79b8e8175665c5145382c1f130600000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256525252525252525252525252524a51535454565759565d6163656c6f747a7f858c92989ea5aeb4bcc3ccd4dcd9d2ccbfbbafa49a92867c6f685e52483f33291f1108000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f52505050505050505050505050505050505050514c52545558575f61686d737a828c9299a3abb5bfc8d1dcdcd1c6bdb2a89f92867b6e61564c4135291d11040000000004111e2b3744515e6a7784919daab7c4d0ddd9cdc0b3a69a8d8073675a4d4034271a0d000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d78868b8b8b8b8b8b8b8b8b8b8b8b8b8b8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000061723303d4a5663707d8999a3afbbc7d2c5b9ada196887b6e6255483b2e23180c000000000000000000000000000000000000000000000000000000000000000000010c161f2b37424e57626c75818e96a0aab3bcbbafa49a92877e726d605b534c443d352f2f353b42464b515357565e61636566676867666563615e5755534e47433c3f464a4c4d4a4746413f3c3a3834343e464e575f696f7c86929aa4afb9beb3aa9f958b7f72685d52453c3120170c00000000000000000000000000000a15202b37434e58606d7a84919ea6b0bac4cfd8e2ded3cac0bbafa49a93887f746d665f575049413d38332d2b26232120201d1f20212223252a2d32373c42474e555c606b707c859197a1a9b3bdc4bab2a9a19792867d70685e5246392d2014070000000004111d2935404b5564717e8a96a1adb9c5d0dbd4c8bdb2a89f92857c6e685e554c443d342e29241f1b17151413131415161a1c23282f343c444c545c666d7a849198a2aeb9c3cedcd1c6bdb0a69b8f8275695f53433a2f24190d01000000000000000005111d2935414c56626e7b87929faab4bfcad6ddd2c7beb3a9a09590847c706b615e56514b47464142414041423f4446494b51545a61686d757f8c929ca5afbbc5cfdee2d7cec5b7aa9f94887b6e6255483c31261a0f030000000008131f2c3845515c67737f8c98a2aebac3cfd9d5c9bdb2a89f958f82786e686059534d47423d3b3a393534383a3b3d4045474e535b60696e7a839095a0abb5c0ccd6e0d7cec5b8ab9f95897c6f62544b4034281c100400000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5c60606162646668686d7073787c80858c91979fa2aaafbabfc5ced5ded7d0c7c0bbada39f93887e706a5f564c41362d21170d00000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d565d60626468696e737a7f858f949fa3abb5bdc6d1daddd7cbbfb4aba1968c7f73695e52443a2f24190d010000000005111e2b3844515e6b7784919eaab7c4d1dddacdc0b3a79a8d8074675a4d4134271a0e000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d7986939898989898989898989898988e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000714202d3a4753606d7a86929facb9c5d2c9bdb2a9988b7f7265544a4034281c1004000000000000000000000000000000000000000000000000000000000000000000040d1a26313c45505a606d79849198a2aab4bdb6aca399928b7f746c655e564f454039312b3036394045474a4c52545658595a5b5a5a595754524d4847433c3732353a3e3f403d3a3936302f2d3039404550585f696e7b849198a2acb6c0baaea2989083786d60564c41332a1f0e050000000000000000000000000000040f1b26323c45515d67717e8a939ea8b2bcc6d1dce7dcd8ccc0b6aca49a938c80786e69605b534f46443f383732302e2d2c292c2d2e2f3031363a3c43474d53585f676d747d859297a1a9b2bbc5ccc4bbb3a9a29892867a6e6154473b2e21140800000000010d18242f3a4653606d7984919eaab3becad6d9cec3baada29791847a6e675e564f443f38352f2b272222212020212223262b2e343940454e565e666d78828f96a0aab4becbd5d7cbbfb4ab9e94897c6f62574d4231281e1308000000000000000000010d1924303a47535f6974818d98a2aebac2ccd6d9d0c5bcb1a7a09691867d746e68605d5554524c4f4d4d4e4f4a505355555d60656c707a818c919ba4aeb7c0cdd6e1dbd0c5bcb0a69c8f8276695f53473a2a20150a000000000004101c2934404b55616d7a85929fa8b2bdc7d1dacec4bab1a79e948f827a6f6b615e57534d4a4847454040444647494b51535860656c727b839095a0a7b1bdc7d1dedbd0c5bcb0a69d9083766a605442392e23180c0000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c666d6d6e6f717374777a7d8084898d92979ea1a9aeb4bcc1cad0d7ddd5cdc5beb6afa39b918c7f726c61584e443b30241b0f0500000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6b686d6e7174787b80858c92979fa6afb5bdc6cfd8dfd4cbc3baaea3999184796d60564d4232281e1308000000000005121e2b3845515e6b7884919eabb7c4d1dedacdc0b4a79a8d8174675a4e4134271b0e000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0a4a4a4a4a4a4a4a4a4a49b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000613202c3945515d677683909da9b6c3d2cfc2b5a89c8f8275665c5144382c1f1206000000000000000000000000000000000000000000000000000000000000000000000915202a333f45515d676f7c869298a3abb5beb5aba39f918c80776d686059514b433e37322c2f35383a3d4146474a4c4d4d4e4e4d4c4a4846423c3a37312b26292e313233302e2d2a2a30363d434b515a616a6f7b849196a1aab4beb8afa59f92857b6e665c50443a3021180e000000000000000000000000000000000a15202935414c55616c75828f96a1aab4bfcbd7dbe8ddd2c7beb6aca49f928d837b716c65605953504a47433f3d3b3a3935383a3a3b3d3f4246484e54575f616a6f79808a9297a1a9b2bbc4cdd6cdc5baaea2988e8175685e5246392d201407000000000007131f2c3844515c66727f8c98a2aebac3ced9d6cabeb3a9a1969083796d686059504a45403937332d2f2e2d2c2d2f303137383f444b51585f686d78818e949fa8b2bcc5d0d9d0c7baaea3998f82766a6054453c311f160c010000000000000000000008131e2b37424d57616e7a86929fa6b0bac4cdd7d7cec3b9b1a8a1989287817b736d6765615e565b5a5a5a5b545c606265676d72777d858e939ba3adb6bfc9d2dfddd6cabfb4aa9e94897c6f62574d42372b180e030000000000000c18232f3946525e68727f8c96a0abb5c0cbd7d6ccc3b9b0a69e948f847d746e69625f57575553514b4a51535456555c60646a6f787f869195a0a7b1b9c3cfd9dbd6cabfb4aa9e94897d7063584e4330271d12070000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c787878787878787878787878787878787879797a7b7c7e7f8184868a8d91969a9fa2a9adb3babec5ced6dbd9d4cbc3bbb3aca49f918c7f736d635a50463c32291e12090000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285787777777777777777777777777777777777777777777778797a7b7e8184888d92989ea1a9b0bbc0c7cfd8ded6cdc3b9afa59f92877c6f675d51443b3020160c01000000000005121f2c3845525f6b7885929eabb8c5d1dedacec1b4a79b8e8174685b4e4135281b0e000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb1b1b1b1b1b1b1b1a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000004111d2935404b556773808d9aacb6c0ccd2c5b8ac9f9285796d6053463a2d20130900000000000000000000000000000000000000000000000000000000000000000000030e18212935404b555f6a707d869299a4afb5bdb5afa39c928d827a706b605d555047433c38332c2c2d3036393b3d3f40414141403f3d3b3a36302e2b26201b1e2225262624262b30363b41464f555c606c717c859196a1a8b2bcb9b0a69e938a7e71695f544a3f32281e0f0600000000000000000000000000000000040d19242f3a43505a616d7a849198a3aebac0c9d3dce4d9d0c7beb6afa49d9590867e78706b63605b54534e4c4a4847454044464748494c4d5354586062696e757c838d929fa2a9b3bbc4cdd6d0c5bcb2a89f92867b6e61564c41362a1e1105000000000004101c2834404a54606d7a85929fa8b2bdc8d4dbcfc5bbb2a8a0958f827a706b605c54514b46443f3d3c3b3a393a3b3d3e43474a50555c606a6f7a828e939da6b0bac4ced7d2c7beb2a99f92867b6e62584e43332a1f0d040000000000000000000000020e1a26313c46525e68727e8b949fa8b2bbc5ced7d5cbc3bab2aaa299928e86807a75716d6869686766676869666d6f72757a7e838a91979ea5adb5bfc8d1dbded5cbc3baaea2988f82756a6054453c31261a060000000000000007121d2a36414c56606d78849199a3afbbc1cad3d4cbc1b8b0a69f969187817b746e69676461605d55545c60616366676d71777c838b9298a0a8b1b9c3cbd5dbd3c9c1baaea2988f82756b6055463d321e150b000000000a1724313d4a5764707d8a97a3b0bdcad6e3dfd2c5b8ac9f9286858585858585858585858585858585858586868787898a8c8e90939a9a9ea1a8abadb3b9bec4cad0d7dcd6cec8c0b9b1a9a29a938b7f736d635b51483e342a20170d000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6dfd2c5b9ac9f92878383838383838383838383838383838383838383838384858687888b8e91969a9fa2aaadb3bbc2cbd1d9ddd5ccc4bbb1a79d938b7e716a60554b4032291f0d0400000000000006121f2c3945525f6c7885929fabb8c5d2dedbcec1b4a89b8e8175685b4e4235281b0f000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9bebebebebebeb4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000010d18242f3d4a5764707d8a9aa4afbbc8d3c6baaea298897c6f6356493c31251a0e0000000000000000000000000000000000000000000000000000000000000000000000060f18242f3a434e58606b707e87939fa4abb4bcbbada49d948f857d736d67615a534e48443d39352f2c2a2d2e3032333435343332302e2d2a25211f1b171b1f2022262b2e32373b42464c525960676d747e869197a1a8b2babab1a79f948e81746c61574d42382e20160c00000000000000000000000000000000000008131e28313e46525e686f7c86929fa5afb7c1c9d3dce2d9d0c7c0bbaea79f98928b837d76706c66625f5859565453514b505354555659575e61666a6f747b818790959da4adb3bbc5cdd6d2c7beb4aaa0968c7f73695e53443b3025190d010000000000000c18232e3945515d67727f8c96a0acb8c1cbd5d7cdc4bab1a79f948f847d736d66605d5553504949484746454748494b4e53545c60676d727c848f949da5afb8c2ccd6d8ccc0b6aca1968d8073695f53463d3221180e0000000000000000000000000009151f2a36414c56626d76828f96a1a9b3bcc5ced8d5ccc4bcb3aba39f98928c86827e7a777675747374757677797c7f81858b90959ea1a9afb7bfc7d1daded5ccc3b9b0a69f92867b6e61584e43332a1f150900000000000000010d1925303a44515c666f7c87929fa5afb8c1c9d3d3cac1b8b0a9a199928d86817b7774706e6d676b6b666d6e707376797e838990949fa2aab1bac3cbd5dbd3c9c1b7afa59f92867b6e61594f44342b200c03000000000a1724313d4a5764707d8a97a3b0bdcad6e3dfd3c6baaea298929292929292929292929292929292929292929993949597999b9d9fa4acabacb2b8babec5c9cfd6dbd7d0cbc3bdb9afa7a09792887f726d635b51493f362c22180e05000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e0d4c7bbafa39992909090909090909090909090909090909090909090909091929995979b9ea1a8acaeb4b9bec5cdd7dcdbd6cbc3bab2a99f958e81746d62584e43392f20170d0000000000000006131f2c3946525f6c7985929facb8c5d2dfdbcec1b5a89b8e8275685b4f4235281c0f000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9c6cbcbcbcbc1b4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000714212e3a4754616d7a86939facb9c6d2cabfb4aa998c807366574d42362a1c1106000000000000000000000000000000000000000000000000000000000000000000000007131d28313c464f59616c717f8b9399a3aab3bbb6aea69f9791878079716c625f58544f4745413a38342f2d2c29242728272726242121222223232522272b2d2f31373a3c43474d52565e616b6f79808a9298a1a9b2babab2a8a0958f82796d605a50453b30261c0e04000000000000000000000000000000000000010c161f2a36414c56606a717e8b939da5afb7c1cad7dde2d9d2ccc0b9b1aaa29f959089827d78736f6a68656361605d555c606162636668696e72777c81878e939aa0a7aebabec5cdd6d8ccc0b6aca2989184796d60574d4232291e14080000000000000007121c2935414c55606d7984919ea5afb9c3ced7d6ccc3b9b0a69f9691878078726d6762605b53565554535254555657585f62666d71797f8691969fa6afb7c1cad4d6ccc4bbafa49a9184796d60574d42342b210f0600000000000000000000000000030e1925303b44515b616e7b849197a1aab4bcc6cfd6d6cec5bdb5afaaa29f98928f8b8684838280808182828385888b8e92989da0a7adb3bbc1c9d1d9ddd4ccc4bab1a79e938b7f72695e53463d3221180e03000000000000000008131e2834404a54606b727f8c939ea5afb7c1c9d6d3cac2bbb2aba39f99928e8884817d7b7a79787778797a7d7f82858b90959c9fa6aeb4bcc3ccd5dbd6c9c1b7afa59d938b7e71695f53473d3322190f00000000000a1724313d4a5764707d8a97a3b0bdcad6e3e2d6cabfb4aaa29f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa3a0a1a2a4a6a7aaacafb6b7b9bdc4c6cacfd5dad6d1cbc6bfbab2aca59d9590857d726d625b514940372e241a100600000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3d7cbc0b5aba39f9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9e9fa3aba4a7abadb2b8babfc5cacfd7dfd8d0cac1b9b1a8a1979083796d605a50463d31271d0e050000000000000005121f2b3744505b657986929facb9c5d2dfdbcec2b5a89b8f8275685c4f4235291c0f000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9c6d3d7d7cec1b4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000713202d3946525e687784919daab7c4cfd0c3b6a99d908376695e5346382e23170b0000000000000000000000000000000000000000000000000000000000000000000000010c161f2a343d47505a626d727f879298a2a9b2bab8b0a9a199938d847e766f6a63605954514b4745403d3a39352f32302f2f2e2e2d2e2e2f2f30322d3337393c3e4347484e53565e61686e747c838d929fa2aab3bbb9b1a8a09690837a6d675c51483e33291e150a0000000000000000000000000000000000000000040d1925303a444e58626d74818e939ea5afb8c1ccd2d9e2ddd8cbc2bcb4aea79f9d948f8a847f7c787472706e6d676c666d6d6e707275787b7f84888e92999fa4acb1b9c0cacfd7d7c8c0bbafa49a92867c6f675c51453b3120170d0200000000000000000d19242f3a45515c66707d8a939da7b1bcc5ced8d5cbc2b8b0a8a199938c847f79736f6c6565636261605d60626364676a6f72797e848c9298a1a8b0b8c1c9d2d6cdc4bab0a69f93887d70675d51453c3122190f00000000000000000000000000000008141e29323f46525e696e7c859298a2aab4bdc4ccd6d7cfc7c0bbb4aeaaa29f9b999391908e8d8d8d8e8f909298989b9fa2aaacb1b9bec4cdd3dbdad5cbc3bab2a8a0958f82776c60574d42342b200f06000000000000000000020c18232e39424f59606c77818f939ea5afb7c1cacfd4cdc4bdb5afaba39f9a96918d8a8886858484858687898c8f92989d9fa7abb0babec5ced5d7cfcac1b7afa59e938e81746c61574d42352c21100700000000000a1724313d4a5764707d8a97a3b0bdcad6e3e7dbd0c5bcb4aeacabababababababababababababababababacaeb5aeafb1b2b4b7b9bbc0c4c5c9ced3d6d9d4d0cac7c0bbb4aea8a09e938e837b706c625b514940372e251c11080000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e8dcd1c7bdb5afacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacaeb5b1b4b7b9bdc4c6cad0d6dad8d3cec6bfbaafa7a09691857b6e675c51483f342b1f150b00000000000000000613202d394653606c798699a3afbbc7d3e0dccfc2b5a99c8f8276695c4f4336291c10000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9c6d3dfdbcec1b4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000005111d2a36414c566774818d9aa9b3becad2c6b9ac9f93877b6e61544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000000040d18222b353e48505a626d727e869297a1a8afbabbb3aba49f96918a827c76706b64605d5553514b49474540403f3d3c3c3b3a3a3b3b3c3c3d3e403f4446484b4e5355585f62696e737a818790959da4aeb4bcbbb0a79f9691847b6e685d554b40362c21170c0300000000000000000000000000000000000000000008131e28323d46505a606d78818e939ea6afbbc0c7d0d7e0ddd4cec5bebab1aba69f9c96918c8884817f7d7b7a797878797a7b7c7f8284878c91959a9fa3abafb6bec3cbd6d9d2ccbfb6aea59f93887e706a5f554b4033291f0e0500000000000000000008131e2834404b54616b74818e95a0aab4bcc6cfd8d4cac2bab2aba49f96918b85807b797572706f6e6d686d6e707174787b7f848b91969fa2aab2bac2cad2d6cdc4bbb2a89f948c80736b60554b40332a1f1007000000000000000000000000000000020d17202a36424d565f6a6f7c869298a3abb2bac1cad0d7d1cbc6bfbab4aeacaba49f9e9c9b9a999a9b9c9d9fa2aaa8abaeb4b8bcc3c9cfd6ddd7cfc9c0b9b1a8a0969083796d655b50453b3122190f000000000000000000000007121c27303d44505b656d78818f939ea5afb9bec5cdd5cfc7c0bbb4aeaca8a09e9a97949892919192989496999c9fa2aaabb1b7bcc2cad0d7d6cdc5beb9afa59e938e81786d605a50453b31231a0f0000000000000a1724313d4a5764707d8a97a3b0bdcad6e3ece2d7cec5bfbab8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b9bbbfbabcbdbfc1c3c6c8ccd2d2d5dad5d2cec8c6bfbab5afaaa39f96918981796e69615951493f372e251c130a000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3e3d9cfc7c0bbb9b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b7b8b9bbbfbec1c4c5c9cfd3d6dbd7d4cdc7c1bcb4aea59e9591847b6e695e554b40362d22190d0300000000000000000713202d3a4653606d798693a0b5c0cbd7e3dccfc2b6a99c8f8376695c504336291d10000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9c6d3dfdbcec1b4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000010d1925303d4a5663707d8997a2adb9c6d2c8bbafa49a8c8073665c5044382b1f1409000000000000000000000000000000000000000000000000000000000000000000000000061019232c363f48515b626c717d8591969ea5aeb4bcb5afa8a19e948f88827d77716d6764605c555653514b4d4b4a4948484747474848494a4b4d4950535558585f62666a6f747b80858e939aa0a7aebabdb5afa69e9590847b6e695e564c43392e241b0f0600000000000000000000000000000000000000000000020c16202b343f44505c666d78818f949da5afb5bdc5ced6dbe0d7d0cac3bcb8b0aaa8a09e9996918e8c898786868585868788898c8f9196999da0a8acafb5bbc0c7d0d5d8d0c7c0bbada49d938c7f736c61584e43392f21170d00000000000000000000010c18232e39424f59606d79839098a2aab4bdc6ced6d4ccc4bdb5afa8a19e97928d8885827f7c7b7a79797a7b7c7e8184888c91969ea1a8aeb4bcc4ccd4d4ccc4bbb2a9a1968f82786d60594f433a2f21180e0000000000000000000000000000000000050e1925303b444e58606a707d869299a1a8afbabfc6ced4d7d0cac6bfbab8b5afacaaa9a8a7a6a7a8a9aaacaeb4b4b8babec5c8ced5dad7d2ccc5beb9afa79f9691847b6e675d53493f33291f10070000000000000000000000000b151e27333f49535c666d78818e939ea5adb3bbc1c9cfd1cbc6bfbab9b2acaaa7a3aaa29f9e9e9fa2aaa3a6a9acaeb4b8bcc3c7cdd6d5d0cac1bbb3ada59e938e81786d665c50483e332a1f11080000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e3e9e0d7d0cac6c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c7cbd1c8caccced0d2d4d8d5d2d1cfc9c5c3bdb9b4aeaba39f98928c847d746d675f574f473f372d251c130a01000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3ebe1d9d1cbc7c5c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c4c5c7cbd1ced1d2d5dad7d4d1cbc7c2bcb7afaaa29f938e837b6e695f574d43392f241b10070000000000000000000714212d3a4754606d7a8793a0adbad1dce8dccfc3b6a99c908376695d5043362a1d10000b1824313e4b5764717e8a97a4b1bdcad7e3dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9c6d3dfdbcec1b4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000813202d3a4653606d7985929eabb8c4cfccc0b6ac9e9184796d6053463b30251a0e0000000000000000000000000000000000000000000000000000000000000000000000000007111a242d363f49515a616b707c848e939fa2aab1b9bbb2ada69f9c948f89837e7a75716d676663605d555a585756555554545455555656585a535b606265686a6f73777c81868d92989fa4acb1b9bab2aba39f948f837a6e695f564d433a30271d1209000000000000000000000000000000000000000000000000050e192228343f4a545c666d78828e939fa4abb4bcc2cad0d7e0dbd6cdc8c2bbb7b2acaaa9a19e9b9896949992929298949596999b9ea1a8aaacb1b9bbc0c7ccd2d9d2ccc3bdb5afa39c928d81776c605a50463c31271d0f05000000000000000000000007121d27303e45515d676e7c869298a3abb4bcc4cdd6d6d0c7c0bbb2aca9a29f9997928f8b89888786868788898a8d9196989ea0a8adb2babfc6ced6d5cbc2bab2a9a19691847a6e665c50473d31281d0f0600000000000000000000000000000000000009141f29323c464e58606b707d8791969ea5aeb4bcc2c8ced4d6d0cac7c5c0bbb9b7b6b5b3b3b4b5b5b6b8babfc1c5c6cad0d4d9d5d1cbc7c0bbb3ada59d9590847b6e695e554b41382d21170d00000000000000000000000000030c17222d38414b545c666d78818e939ea2a9afb9bec5c9cfd1cbc7c4bdb9b7b4b0b4aeacabaaabaeb3afb2b6b8babfc6c8cdd3d4cfc9c5bebab0a9a29e938e81786d665c544a3f362d21180e000000000000000a1724313d4a5764707d8a97a3b0bdcad6d6d6d6d6d6dbd6d3d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3d7dcd5dad5d2d1cfcecfc9c6c5c2bdb9b7b2acaaa29f99928e867f79706b605c554d453e352d241b130a0100000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d6d6cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1d6d6d2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6d6d6d6d6dcd7d4d2d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d1d2d3d7dcd7d3d2d1d1cbc7c5c0bbb9b0aba59e98928b81796e695f574d453b31271d1209000000000000000000000714212e3a4754616d7a8794a0adbac7d3d6d6d0c3b6aa9d9083776a5d5044372a1d11000b1824313e4b5764717e8a97a4b1bdcad6d6d6cdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9c6d3d6d6cec1b4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd6d6d0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000006121f2c3844505c6674818e9ba9b3bec9d2c7b9ada1968a7d7063574d42362a1c11060000000000000000000000000000000000000000000000000000000000000000000000000008121b242d373f485059606a6f7a818b92989fa7adb3bbb9b0aba69f9c95908b86827d797673706d676867656362626161606161626263656668656c6f7174777c8084888e92999fa2aaafb6beb7afa8a099928c82796d685f574d443b31281e150b0000000000000000000000000000000000000000000000000000071017232e38424a545c666d78818c9399a2aab0babfc6ced3d8ded8d4ccc7c4bdb9b7b2adaba7a5a3aba39f9f9fa2aaa1a3a5a8abadb2b7b8bdc3c7cbd1d8d5d0c7c0bbb2aba49f918c80786c655b50483e342a1f150b000000000000000000000000000b151e2935404b555f6a707d869299a2aab2bbc2cbd0d8d2ccc4bdb9b3adaba9a19e9b989695949992999596979a9ea1a8aaacb2b9bdc4cad0d7cfc9c0b8b0a8a19791847b6e685e544a3f352b1f160c00000000000000000000000000000000000000020d17202a333c464f59616b707d848e939fa2aab1b8bcc3c8ccd2d4d3d2ccc7c6c4c3c1c0c0c0c1c2c3c5c7cad0d2d3d6d6d2cfc9c7c0bbb5afa9a19e938e837b6e695e574d433a2f261b0f05000000000000000000000000000006111b262f39424b545c666d78818a92979ea5adb3b9bdc4c7cdd2cec9c5c4c0bdbfbab8b7b7b8babebcbfc2c5c6cad0d4d2cdc8c4beb9b3ada69e97928a81786d665c544a42382e241b0f06000000000000000a1724313d4a5764707d8a97a3b0bdc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c8c8cfc9c6c4c3c1bfbeb9b8b5b2adaba8a09e98928d87817b736d676159514b433b332c231b1209010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdc9c9c9c9c9bdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4c9c9c9c9c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9d1cbc7c5c4c2c0bbb9b5afaca69f9c938e867e756d675e574d453c33291f150b00000000000000000000000814212e3b4754616e7a8794a1adbac7c9c9c9c9c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdc9c9c9c9c9c0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9c6c9c9c9c9c1b4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfc9c9c9c9c3b6a99d9083766a5d5043372a1d10000000000000000000000000000003101c28343f4a5463707d8a97a1adb9c7d2c9bdb2a99c8f8275695e5246382d22170b000000000000000000000000000000000000000000000000000000000000000000000000000009121b252d363e474f585f686d757e8690959ea1a9aeb5bbb7b0aaa79f9d98928e8a8583807c7a77757372706f6f6e6d6d6e6e6f6f7071737576797b7e8184888c91959b9fa3abaeb3bbb9b0aba59d9691877f786d675e564d453b32291f160c0300000000000000000000000000000000000000000000000000000006111c263038424b545c666d747f8792989fa6aeb4bcc2c7cdd3d8dfd8d3cec9c5c4bdb9b8b4b2b0b5afacababaeb4aeafb2b5b8b9bdc4c5c8ced3d7d4cec9c4beb6afa8a099938b7f746c665b53493f362c22180d0300000000000000000000000000030c18242f39434e57606b707d879298a1a9b0babfc6ced3d7cec9c5bebab8b3adaba8a5a3a2aba39fa3aba3a4a7abacb2b7b8bdc3c9cfd6d2ccc4bdb9afa69f9691857c6e695f564d42382e231a0d040000000000000000000000000000000000000000050e18212b343d474f59616b707a818b92989fa7acb1b9bbc0c7c8ced1d2d4d2d1cfcecdcccdcecfd0d2d3d6d4d2d1cfcac6c5beb9b5afaba49f97928a81796e695e574d453b31281d140a000000000000000000000000000000000a141d273039424a545c666d757e858f939ea1a9adb2b7bbc2c5c9cfd1d1cdd0cac7c5c4c4c5c6cad0cccfd2d2d1cec9c5c3bcb8b2ada9a29f948f857e756d665c544a423830261c120900000000000000000a1724313d4a5764707d8a97a3b0bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbcbcbbbbbeb9b8b6b4b2b3adaba8a8a19e9a96918c86807b756e69605c554f4540393129211a110900000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdbdbdbdbdbdbdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7bdbdbdbdbdbdb8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbcbcc0bbb9b7b5b5afacaba39f9c949089817b726d605d554d453c332a21170d0300000000000000000000000815212e3b4854616e7b8794a1aebabdbdbdbdbdbdb7aa9d9184776a5e5144372b1e11000b1824313e4b5764717e8a97a4b1bdbdbdbdbdbdbdb3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9bdbdbdbdbdbdb4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bdbdbdbdbdbdb6a99d9083766a5d5043372a1d100000000000000000000000000000000c17232e3a4653606d7985919eabb5c0cccfc4b9ac9f92867b6e61544a3f33281d1207000000000000000000000000000000000000000000000000000000000000000000000000000009131b242c353d464e565d606c717b838b92979fa3abafb5bab7b1abaaa39f9b98928f8c89868482807e7d7c7b7b7a7a7a7b7b7c7d7e80818385888b8e9196999da0a7acaeb4bab8b2aca69f9c938e847c736d665d554c443b332920170d0400000000000000000000000000000000000000000000000000000000000a141e263039424b545c606d727d8690949fa2aab0b7bbc2c7cdd2d5dad9d5d2cfc9c5c4c1bfbcc0bbb9b8b8babebbbcbfc2c4c5c9cfd1d4d6d3cec8c4bdb9b2aca49f9691877f736d605b544a41382d241a100600000000000000000000000000000007121d27313c454f59616b707e8691969fa6aeb4bcc1c7cdd3d5cfcac6c5beb9b8b5b2afaeb5aeacaeb5afb1b4b7b9bdc4c5c8ced5d2ccc7c0bbb2ada59d9490847c6f6a5f574d443b30261c110800000000000000000000000000000000000000000000060f19222b353e474f5960686d757e8690959da0a7acafb6b8bcc1c4c5c9cecccdcececfcfcececdccd2ccc8c6c4c1beb9b8b3adaba39f99938e857e746d675e574d453b33291f160b0200000000000000000000000000000000020b151e273039424a545c606c717a828a92979ea1a8abb0b8b9bdc2c4c5c9cecccdcececfcfcececdcccec9c5c4c1bdb9b7b1aba9a19e97928b827b716c605c544a423830261e140a0000000000000000000a1724313d4a5764707d8a97a3b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0afafaeaeb2adaba9a7a6a9a19e9b9896918d8884807a746e69615f57514b433d342f271f180f080000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0b0b0b0b0b0b0b0b0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab0b0b0b0b0b0b0b0ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0afb5afacaaa8aba39f9c99928f89837d756e69625b514b433b332a21180f050000000000000000000000000815222e3b4855616e7b8894a1aeb0b0b0b0b0b0b0b0aa9e9184776b5e5144382b1e11000b1824313e4b5764717e8a97a4b0b0b0b0b0b0b0b0b0a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb0b0b0b0b0b0b0b0a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b0b0b0b0b0b0b0b0a99d9083766a5d5043372a1d1000000000000000000000000000000006121f2c3844505c6673808d99a4afbbc7d4c7bbafa3998c7f73665b5044392e23180c01000000000000000000000000000000000000000000000000000000000000000000000000000109121a232b343c444c525a62696e787e858d92999fa3abaeb3b8b8b4aeacaaa29f9c999992918f8d8b8a898888878787888889898b8d8e909297989b9ea0a8aaacb1b9bab9b1aba8a09e94908981796f6a605c544b433a322921170e05000000000000000000000000000000000000000000000000000000000000020c151e273039424b515b636b707b828b92989ea6abb0b7bbc2c6c9cfd2d5dadad5d2d1cecbd1cbc7c5c5c5c6cad0c9ccced1d2d5d6d3d0cac6c3bcb8b2aca8a09a938d847d726d635b504a42382f261b110800000000000000000000000000000000010b151f2a333d474f59616c707c8490949fa3aab0b7bcc2c7cbd1d3d3cfcac6c5c2bebcbbbfbbb9bbbfbcbdc0c4c5c9ced2d3d0cac7c0bbb5afa8a19e938e827a6f6a5f574e453b32291e140a000000000000000000000000000000000000000000000000071019232c353e474f565d606c717b838a90959c9fa4acacb1b4b7b9bdbdbfc0c1c1c2c2c2c1c1c0bec0bbb9b7b5b3adaba9a19e99928e87817a716c605c554d453b332921170d04000000000000000000000000000000000000030c151e273038424a505a61686e757e858c91969c9fa6abadb2b5b7b9bdbdbfc0c1c1c2c2c2c1c1bfbebdb9b7b4b2acaba7a09d97918c857e756e68615a504a423830261e140c020000000000000000000a1724313d4a5764707d8a97a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a2a2a1a9a19e9c9b999797928f8b8884807c77736d68615f57534d4540393129231d150d06000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3a3a3a3a3a3a3a3a3a3a3978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919ea3a3a3a3a3a3a3a3a3a39f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a2aba39f9e9c999992908b86827c76706b615e575145403a312920180f06000000000000000000000000000915222f3c4855626f7c8895a2a3a3a3a3a3a3a3a3a3a39e9185786b5e5245382b1f12000b1824313e4b5764717e8a97a3a3a3a3a3a3a3a3a3a3a39a8d8074675a4d4134271a0e000713202d3a4653606d798693a0a3a3a3a3a3a3a3a3a3a39b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a3a3a3a3a3a3a3a3a3a39d9083766a5d5043372a1d1000000000000000000000000000000003101c28343f4a54616e7b87939facb9c3cecbc0b5ab9e9184786c60544b4034281d1307000000000000000000000000000000000000000000000000000000000000000000000000000000081119222a323a414550575f666c717a80868e92999fa2aaacb1b7b8b8b4aeaca9aba39f9d9b9a98969595949493949495959698999b9d9fa2a9a7aaacb2b7b8b9b5afaca7a09d96918a837c746d676058504a4239312820170f060000000000000000000000000000000000000000000000000000000000000000030c151e2730394045515961696e777f868f949c9fa6abb0b8b9bec4c5c9ced0d2d3d7dcd8dcd7d4d2d2d2d3d6dbdcd6d3d2d0d0cac6c5bfbab8b1aca8a09e96918880796f6b625b51443f382f261d140a000000000000000000000000000000000000030d18212b353e47505a616a6f7b828c92989ea6abb0b9babfc5c7cbd1d2d2d1cecbc9d1cbc7c5c7cbd1cacdd1d2d2d1cbc7c5bfbab5afaba49f96918a81786d685f584e453c332a20170c020000000000000000000000000000000000000000000000000007111a232c353d444c525a62696e767d838a8f939a9da0a7a8aaacb2b1b2b4b4b5b5b5b5b4b4b3b2b6afacaaa8a9a19e9b97928d87817c746d68615a514b433b332921170f050000000000000000000000000000000000000000030c151e2630383f4450565e616c717a7f848a8f949a9ea1a9a8abacb2b1b2b3b4b5b5b5b5b4b4b3b1b2acaba7a8a19e9b95908a847f7a716c615e5650443f3830261e140c02000000000000000000000a1724313d4a5764707d8a9696969696969696969696969696969696969696969696969696969696969696969696959594949791908e8c8a8885827f7c78736f6a66615e56534d46423b342f271f18120b0300000000000000000000000000000000000000000000000a1724313d4a5764707e8a969696969696969696969696968a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919696969696969696969696969285786c5f5245392c1f12000a1724313d4a5764707d8a969696969696969696969696969696969696969696969696969696969696969696969696969696969695959992918f8d8986837f7a756f6b636059524d453f352f281f170e0600000000000000000000000000000916222f3c4955626f7c88959696969696969696969696969285786b5f5245382c1f12000b1824313e4b5764717e8a969696969696969696969696968d8074675a4d4134271a0e000713202d3a4653606d7986939696969696969696969696968e8175685b4e4235281b0f000c1926333f4c5966727f8c9696969696969696969696969083766a5d5043372a1d10000000000000000000000000000000000c17232e3846535f6976828f9ca7b1bcc8d1c7b9aca1968b7e71665c51453a2f24180d0200000000000000000000000000000000000000000000000000000000000000000000000000000007101820282f353f454d545b60686d737b81868d92989da0a7aaacb2b5b8b8b6b5aeacaaa8a6a5a3a2a2a1a0a0a1a1a2a2a3a4a6a8a9abadb3b4b7b9b7b4aeacaba39f9b95908b847e766f6a605d554e443f3830271f160e0600000000000000000000000000000000000000000000000000000000000000000000030c151e272e343f474f575f656c727b82898f949c9fa6abadb3b7b9bdc1c4c5c7cbd1cccdcdcecfcececdcccbd0cbc7c5c3c1bebab8b4aeaca7a09d96918b847d746d676059514840332d261d140b0200000000000000000000000000000000000000060f19232c353e47505860696e787f868f949c9fa6acaeb4b9bbbfc3c5c6cad0cccdcececfcfcececdccd0cbc7c5c3bfbbb9b4aeaba49f99938d847d746d665e564e463c332a21180e0500000000000000000000000000000000000000000000000000000008111a232b323a414550575f616c70787d82878d9095989b9ea0a8a4a5a7a7a8a9a8a8a8a7a6a5aca49f9e9b9997928e8a85807b756e6a605d5650454039302920170f0500000000000000000000000000000000000000000000030c151e262e343e444c525a61686d73797d82888d9196989b9ea1a8a4a5a7a7a8a8a9a8a8a7a6a4a8a19e9b9796918e89837e79736d68625a524d443e342e261e140c0200000000000000000000000a1724313d4a5764707d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8989888887868583817f7e7b7875726f6c6562605854524c46423b363129231d150d07010000000000000000000000000000000000000000000000000a1724313d4a5764707e8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a7e7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b77848a8a8a8a8a8a8a8a8a8a8a8a8a8a85786c5f5245392c1f12000a1724313d4a5764707d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a89898887868482807d7a76726d68636059544f46423b3329241d160d050000000000000000000000000000000916232f3c4956626f7c898a8a8a8a8a8a8a8a8a8a8a8a8a8a86786c5f5245392c1f12000b1824313e4b5764717e8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8074675a4d4134271a0e000713202d3a4653606d78868a8a8a8a8a8a8a8a8a8a8a8a8a8a8175685b4e4235281b0f000c1926333f4c5966727f8a8a8a8a8a8a8a8a8a8a8a8a8a8a83766a5d5043372a1d100000000000000000000000000000000006111c2a36424d5763707d8a95a0acb8c4cec9bdb2a89e9184796d60554b4035291e130800000000000000000000000000000000000000000000000000000000000000000000000000000000060d161e2429333c424a50565d60696e757b80858c9195999ea0a8a9abaeb4b4b6b8b7b5b3b1b0afaeaeadadadaeaeafb0b1b3b4b6b8b7b5b3b2acaaaba39f9c99928e89837e79716c626058514b433d342e261e150d05000000000000000000000000000000000000000000000000000000000000000000000000030c151d2328353e454d535b60696e767c82899094999ea1a9abacb2b5b7b9bbbfbfbfc0c1c1c2c2c1c0bfbfbebfbab8b6b4b3adabaaa29f9b95918b847e796f6b605d554f473f3628221c140b0200000000000000000000000000000000000000000007111a232c353e464e575e666c727b828990949b9fa3aaacaeb5b6b8babfbebfc0c1c1c2c2c1c1c0c0bebfbab8b6b5aeacaaa29f99938e87807a706c605c544c443c342a21180f060000000000000000000000000000000000000000000000000000000000081119202830353f454d535a61666c70767b8084888b8e91969697999a9b9b9c9c9b9b9a9998979a93918e8c8985817d79746e69625f58524c443e342e271e170e05000000000000000000000000000000000000000000000000030c151c2328323b414650565e61666d71767c8184888c8f91969697999a9b9b9c9c9b9b9a99989696918e8b8784817c77716d66615e565046413b3228231c140c020000000000000000000000000814212e3b4754616e7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c7c7b7b7a7a78767473716e69686562605b53544e4746413a36312a261f18120b0300000000000000000000000000000000000000000000000000000814212e3b4754616e7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e6154473b2e21140800000000000000000000000000000000000000000000000000000000000a1623303d495663707d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7063564a3d3023170a000814212e3b4754616e7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c7b7b79777573706d6765615e56544f48443d3630292118130c04000000000000000000000000000000000714212d3a4754606d7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7063574a3d3024170a000814212e3b4754616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e6255483b2f221508000613202d394653606c777d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f6255493c2f221609000815222e3b4855616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f6356493c3023160900000000000000000000000000000000000e1a26313b4653606c7883909da8b2bdc9cec4b9aca1968b7f72675d51453a3025190c0300000000000000000000000000000000000000000000000000000000000000000000000000000000040c1319212a2f383f444c52575f62696e737a7f84888c9196999c9fa2aaa8aaabaeb3b1b2b3b3b4b4b5b5b5b4b4b3b3b2b1b5afacaba9a6a8a09e9b99928f8b86817c77716d66615a544e45413a3128231c140c030000000000000000000000000000000000000000000000000000000000000000000000000000030b1218232c333c414950575f616b6f767d83888d91979a9ea1a8a8aaacaeb5b2b3b3b4b5b5b5b4b3b3b2b1b4aeacaaa7a9a29f9b98928e8a847e78726d676059514b433d352d2417110a02000000000000000000000000000000000000000000000008111a232c343c454d545b60696e757c83898e92989c9fa3aba9acaeb4b1b3b4b4b5b5b5b5b4b4b3b1b4aeaca9aba39f9c98928e87817c746d67615a514b423a322a22180f0600000000000000000000000000000000000000000000000000000000000000070e161e2429333c424750545b6064696e73777b7f818487898a8c8d8e8e8f8f8f8e8e8d8b8a898684827f7c7975706d66625f57534e45413a3228231d150c050000000000000000000000000000000000000000000000000000030a1117202930363e444c52545c60646a6f74787b7f828487898a8c8d8e8e8f8f8f8e8e8c8b898784817e7b78746f6b64605c54524c443e3630292017110a02000000000000000000000000000714202d3946525e686e7070707070707070707070707070707070707070707070707070707070707070707070706f6f6e6d6d6769686664625f57585553504947433c3936302a261f1a140c07010000000000000000000000000000000000000000000000000000000714202d3946525e686e7070707070707070707070707070706e695e52463a2d20140700000000000000000000000000000000000000000000000000000000000916222f3b4854606b707070707070707070707070707070706b6055483c2f231609000714202d3946525e686e7070707070707070707070707070707070707070707070707070707070707070707070707070707070706f6f6e6d66696663605d5554524c48443d38332a251f170f070100000000000000000000000000000000000713202c3945525d686d707070707070707070707070707070706b6155483c2f231609000714202d3a46525e696e7070707070707070707070707070706e6a5f53473a2e2114080005121f2b3744505b656c7070707070707070707070707070706f6a5f53473b2e211508000714212d3a46535f696e70707070707070707070707070706f6b6054483b2f221509000000000000000000000000000000000009141f2b3744505b65717e8a96a0acb9c3cec9bdb2a89e9285796d60564c41362a1e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000001080f181d262d333a41454d53575e61676d72777b8084888c8f9298989b9d9fa2aaa4a5a6a7a7a8a8a9a8a8a7a7a6a5a4aba39f9e9c999696918e8a86827e7a756f6b64605c545047433d352f281f17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000007111a212a2f383f444d535960636b70767b80858a8e9196989b9d9fa3aba5a6a7a7a8a9a8a7a7a6a5a4aaa39f9d9a9897928e8a85827d78716d66605c554f454039312b231b1206000000000000000000000000000000000000000000000000000008111a222b333b424a50575f626b6f767c81868b8f92999a9c9fa2aaa4a6a7a7a8a8a8a8a7a7a6a4aaa39f9c9999928f8a86817b756f6a605d5550454039302920181006000000000000000000000000000000000000000000000000000000000000000000040c1319212a31373e424a5053575f6166696e7275777a7c7e7f8181828282828181807f7d7c7a7775726f6c6664605c54534d47433c3530282018120b030000000000000000000000000000000000000000000000000000000000060e171e252a323a41464a5053585f62676a6f7275787a7c7e7f8081828282828181807e7d7b7874716e696863605953514b46413a322a251f170e0600000000000000000000000000000005111e2a36414c565e6163636363636363636363636363636363636363636363636363636363636363636363636362626161605c555b595755534d4c4946443f3837322d2a251e1a140e0903000000000000000000000000000000000000000000000000000000000005111e2a36414c565e61636363636363636363636363636363615e564d42362a1e110500000000000000000000000000000000000000000000000000000000000713202c38444f59606363636363636363636363636363636360594f44382c2014070005111e2a36414c565e61636363636363636363636363636363636363636363636363636363636363636363636363636363636363626261605c545a5654514b4746413a38322c27211a140d050000000000000000000000000000000000000004111d2935414c565d606363636363636363636363636363636361594f44382c2014070005111e2a36424d575e61636363636363636363636363636363625f584e43372b1f120600030f1b27333f49535b60636363636363636363636363636363625f584e43372b1f13060005121e2a36424d575f6163636363636363636363636363636360594f43382c1f13070000000000000000000000000000000000030f1b27333f4953606d7984919ea8b1bdc8cec4b9ada1978c7f73685e52463c30271c1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141c22282f353c42474d52555d60656a6f73777c7f8285888b8e909298959799999a9a9b9c9c9b9b9a9a999997969992918f8c8a8784817e7a75716e6863605953514b423e373229241d160d060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f181d262d333b42464f545960636a6e73797d8184888b8e9192999698999a9a9b9c9b9b9a999898979892908e8b8985817d7975706c66605c54514b433d352f271f1910090000000000000000000000000000000000000000000000000000000008101920292f383f444d535960636b6f757a7f82868a8d9092989698999a9b9b9c9c9b9b9a9998969892908d8a86827e7a746e69625f58514c433e342e271e170e06000000000000000000000000000000000000000000000000000000000000000000000002080f181f262b2f383f44464d5355575f616568686d6f717274747576757575747372706f6d67686662605b5453514a47423c373129241e160e070000000000000000000000000000000000000000000000000000000000000000050d141920283035383f44464e5355585f626568686d6f717274747575767575747371706e696864615e5756544f464540393630282019140d0500000000000000000000000000000000010d1925303b444c52545757575757575757575757575757575757575757575757575757575757575757575757565655555453514b4e4c4b4847423f3c3937332d2b27201e19130e090300000000000000000000000000000000000000000000000000000000000000010d1925303b444c525457575757575757575757575757575754524d443b3025190e02000000000000000000000000000000000000000000000000000000000004101c27323d474f5456575757575757575757575757575756554f473d33271c100400010d1925303b444c525457575757575757575757575757575757575757575757575757575757575757575757575757575757575656555453504a4d4a4745413a3936302c27211c160e09030000000000000000000000000000000000000000010d1924303a444c525457575757575757575757575757575757554f473e33281c100400020e1a25303b454d525457575757575757575757575757575755534e463c31261a0f0200000b17222d384149505357575757575757575757575757575755534e463c32261b0f0300020e1a26313b454d5355575757575757575757575757575756544f473d32271b0f030000000000000000000000000000000000000b17222d3844505c66727e8b95a0acb8c2d0c9beb3a99f92857a6d61584e42392e23180d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171e242931373b42464c5154585f62666a6f7376797c7f81838587898a8c8c8d8e8e8f8f8f8e8e8d8d8c8a8987868482807d7a7775716d6765615e56544f46454039302b272018130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141b222731363d43484f54575f62666d7074787b7e828486888a8c8c8d8e8e8f8f8e8d8c8c8b8a888683817f7c7975706d6764605b54504a4540393029241d150d07000000000000000000000000000000000000000000000000000000000000070e171d262d333c42474f54596063686d72767a7d80838588898b8c8d8e8e8f8f8e8e8d8d8b89878683807d7a75716d67625f57534e45413a3128231d150c050000000000000000000000000000000000000000000000000000000000000000000000000000060e151a1d262d33383c4246484d535558565e61636466676868696968686766656462605d55595653504a4644403937312b262019130c040000000000000000000000000000000000000000000000000000000000000000000002080e161e25292e34383c4347484e535559565d616364666768686969686867666563615e575854534d4948443d38342e2a251e160e080200000000000000000000000000000000000008141e29323b4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a494948484747454041403e3b3a37312f2d2b27221b1b15110d08020000000000000000000000000000000000000000000000000000000000000000000008141e29323b4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4746423b32291f1409000000000000000000000000000000000000000000000000000000000000000b16212b353d4448494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a48443d352c21160b00000008141e29323b4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a49484846443f403d3a39352f2d2a251e1b16100b05000000000000000000000000000000000000000000000008131e28323a4145474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a48443e352c21160b00000009141f29333b4246474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4847433c342a20150a00000006111b262f383f44464a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4947433c342a20150a00000009141f2a333b4246484a4a4a4a4a4a4a4a4a4a4a4a4a4a4948433d342b21160a0000000000000000000000000000000000000006111b28343f4a54606d7884919da6b0bdc7cfc5baaea2988d80746a5f544a4034281f150b0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b131920262b30363a4145474e5355585f6266666d6f727577787a7c7e7f80808181828282818180807f7e7c7b79787673706d686864605d5554524c48433d38342e271e1b160d0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f262a32383d44484e53545c606367696e727577797b7d7f8080818282828180807f7e7d7b797774726f6d6664605d5553504a443f38342e271e18120b030000000000000000000000000000000000000000000000000000000000000000050b141c222831373d44484f54565e6165676d717376797b7d7e808181828282828181807e7c7b797673706d6864605d55534d47433c352f281f18120b030000000000000000000000000000000000000000000000000000000000000000000000000000000003090b141c22282b31373a3b4246484c4c52545657595a5b5b5c5c5c5b5b5a58575654514c4c4946443f3a38342e2b261f1a150d080200000000000000000000000000000000000000000000000000000000000000000000000000040c13191c23282c31373a3c4347484c4c52545657595a5b5b5c5c5c5b5b59585654524d4b4846423c3b38322c28231d19130c050000000000000000000000000000000000000000020d1720293036393b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3c3b3a3a38342f33312f2e2b2622201f1b17110f0a0501000000000000000000000000000000000000000000000000000000000000000000000000020d1720293036393b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a36302920170d0200000000000000000000000000000000000000000000000000000000000000050f19232b32383b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332c231a0f05000000020d1720293036393b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3c3b3a38342e302d2c2924201e19130f0a0400000000000000000000000000000000000000000000000000020c1620283035393a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332c231a1005000000020d17202930363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a37312a22180e03000000000a141d262d3337393d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b37322a22180e04000000030e18212a31363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b38322b22190f0400000000000000000000000000000000000000000c17232e3844505c66707d8a949fabb5c0cccabeb4aa9f92867c6f665c51443d31271d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d151a1f252a2f35393c4347484e5355545c606265686a686d6f7172737474757576757574747372716f6e6d66696663615e565754514c4746413b38322c28231d150c0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141a21272c33383c42474a505357575f616568666d6e70727374747576757474737271716e6d66676563605c5453514b46443f38342e28231d150c070100000000000000000000000000000000000000000000000000000000000000000000020a111720262b32383d44484c5254555d606467666d6e70717374747575757574747371706e6d666663605d5653514b47423c373129241e160d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f262b2d31363a3b3f414647494b4c4e4e4f4f4f4f4e4e4d4c4a494745413f3c3938332d2c28231c1a150f0a030000000000000000000000000000000000000000000000000000000000000000000000000000000002080d11171c1f262b2e31373a3c3f414647494b4c4d4e4f4f4f4f4e4e4d4b4a4846423e3b3a36312f2c271f1c18120d080200000000000000000000000000000000000000000000050e171e252a2d2e3030303030303030303030303030303030303030303030303030303030303030303030302f2f2e2e2d2c2923262422211e1a1613120f0b060000000000000000000000000000000000000000000000000000000000000000000000000000000000050e171e252a2d2e3030303030303030303030303030302e2d2a251f170e0500000000000000000000000000000000000000000000000000000000000000000007111921272c2f303030303030303030303030303030302f2c27211a11080000000000050e171e252a2d2e3030303030303030303030303030303030303030303030303030303030303030303030303030303030302f2f2e2d2c28232321201d1813110d080200000000000000000000000000000000000000000000000000000000040e161e24292c2d303030303030303030303030303030302f2c28211a11080000000000050e171f252a2d2e3030303030303030303030303030302f2e2b2620180f060000000000020b141b22272b2d3030303030303030303030303030302f2e2b26201810070000000000060f181f262a2d2e3030303030303030303030303030302f2c272119100700000000000000000000000000000000000000000006111c28343f4a54616c76829099a4afbbc4cfc5baaea3999083786d60584e43392f24180f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e141a1e24292c31373a3c4347494a505355585b565e61626466666767686969686867676666646361605c54595754524c4a4745413b3936302c271f1c18120b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e161b21272c3137383f44464a4d535558545c6061636566676768696868676665656462605c54585653514a4745403938332d28231c18120b030000000000000000000000000000000000000000000000000000000000000000000000000000060b151a21272c32383a4146474c515457545c6062636566676868696968686766656361605c545754524c4745403a37312b262019130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f141a1e21262a2d2e3036393a3c3e3f4141424342424241403f3d3c3a39352f2f2d2b28221f1c18120e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c10151b1f21262b2e2f3035393a3c3e3f4141424243424241403e3d3b3a36302e2d2a25221f1b16100c070000000000000000000000000000000000000000000000000000050d14191e202124242424242424242424242424242424242424242424242424242424242424242424242323222221201f1c1819181514120e090605030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d14191e202124242424242424242424242424242421201e19140d050000000000000000000000000000000000000000000000000000000000000000000000070f161c20222324242424242424242424242424242323201c160f0800000000000000050d14191e2021242424242424242424242424242424242424242424242424242424242424242424242424242424242423232221201f1c17171413110d07050100000000000000000000000000000000000000000000000000000000000000040c13191d20212424242424242424242424242424242423201c16100800000000000000050d141a1e202124242424242424242424242424242422211f1a150e0600000000000000020a11171b1f2024242424242424242424242424242422211f1b150e0700000000000000060e141a1e2122242424242424242424242424242423221f1b160f0700000000000000000000000000000000000000000000000c17232e38424f59626f7c87939fa8b2bdc9cbbfb4aba0958c80736a60554b40352921180e040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e13191d20262b2e32373b3c3f4446494c4e4c5254565759595a5b5b5c5c5c5b5b5a5a5957565453504a4d4a4746413e3a39352f2d2a251e1b16100c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f161c20262b2e34383a3d4246484b4a5053555759595a5b5b5c5c5b5a595958575553504a4c494644403a38352f2b28221c17110c07000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e161b21272c3036393a4145474a4a5053555658595a5b5b5c5c5b5b5a5a58565453504a4a4745413a39352f2b261f1b150d0801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12141a1e2122252a2d2e30313334353536363535343332312f2d2c292423201f1c1712100c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f12151b1f212224292d2e30313334353536363535343332302e2d2a2521211e1a15130f0a04000000000000000000000000000000000000000000000000000000000002080d111414171717171717171717171717171717171717171717171717171717171717171717171716161515141413100c070b080806020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1114141717171717171717171717171717171414110e090200000000000000000000000000000000000000000000000000000000000000000000000000050b101316161717171717171717171717171717171614100b0500000000000000000002080d1114141717171717171717171717171717171717171717171717171717171717171717171717171717171717171615151312100c0607060401000000000000000000000000000000000000000000000000000000000000000000000002080d111314171717171717171717171717171717171614100b0500000000000000000002090e1114141717171717171717171717171717171514120f0a0300000000000000000000060b0f12131717171717171717171717171717171615130f0a0400000000000000000003090e12141517171717171717171717171717171615130f0a0400000000000000000000000000000000000000000000000006111c26303e4754606a74808d96a1adb9c1ccc6bdb1a79f92877c6f675d51453d332a20160c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d11151b1f21262b2e2e34383a3c3f42414647494b4c4d4d4e4e4f4f4f4e4e4d4d4c4b494846443f403d3a3936302d2c2924201e19140f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10151a1c23282c2d31373a3b3f3f4446484a4c4d4d4e4f4f4f4e4d4d4c4b4a4846443f3f3c3a38342e2c29241f1c17110c06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f161b1e252a2d2f35393a3e3f4446484a4b4d4e4e4f4f4f4f4e4e4d4b494846443f3d3a39352f2c29241d1a150f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205090e121415191d202123242627282829292928282725242321201d191613120f0b060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060a0f121515191d2021232426272828292929282826252321201e1a1514120e090703000000000000000000000000000000000000000000000000000000000000000000010507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0909080707060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09070400000000000000000000000000010507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09090807060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000010407070a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09070400000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0808060200000000000000000000000000000305060a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0908060300000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a090907030000000000000000000000000000000000000000000000000000000a151e2b37434e58606d7984919ea5afbac4cfc3bbafa3999184796d60594f453c32281e150b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001040a0f12151b1f2123282b2d2f323035393a3c3e3f40414142424342424141403f3e3c3b3a38342e302e2d2a2521201d1914110e08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e11171c1f20262b2d2e2e34383a3b3d3f4041414243424141403f3e3e3b3a38342e302d2c28231f1d18120f0b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13191d2024292c2d2e34383a3b3d3e404141424242424141403e3d3b3a38342e2d2c2924201d18130e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080d1113141618191b1b1c1c1c1c1b1b1a1917161413110d08060603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608080d1113141618191a1b1c1c1c1c1b1b1a18171514120e09070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c1b27323c45515d67707d8a939ea8b2bdc7cbc0b5aba0968d80746b60574d443a30271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060a0f1315171c1f20222525292d2e2f313333343435363635353434333331302e2d2b28232421201d191413110d080502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c1012131a1e212223282c2d2e30323334343536353534333232312f2d2b282323201f1c1813100c0703000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1113191d202123282b2d2f30323334353536363535343332302e2d2b282321201d1913110d0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707090b0c0e0e0f100f0f0f0e0d0c0a0907060401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707090b0c0e0e0f0f100f0f0e0d0b0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080c0e0f13131313131313131313131313130c0b09060100000000000000000000000000000000000000000000000000000000000000000000000000000003060809131313131313131313131313131313131312070604000000000000000000000000000004080a0a13131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313060400000000000000000000000000000000000000000000000000000000000000000000000002070a0c0d13131313131313131313131313131313120f0a050000000000000000000000000000000000000000000000000000000000000002070b0d0d131313131313131313131313131313130e0d0b08030000000000000000000000000000000000000003070b0d0e13131313131313131313131313131312110f0b07010000000000000000000000000000000000000000000000000000000000000000000000000000000a15202935404b55616b75818e96a0abb5c0cbc7bdb2a89f93887d70695f564c42392e2318120900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060b1012131619191d2021232426262728282929292828272726242321201f1c17171413110d0806040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306090e121415171c1f2022242626272828292928272626252422201f1c17161312100c0704000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105080d111314171c1f2022232526272828292928282727252321201f1c171413110d0804010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090f14181b1b2020202020202020202020202020191816120d07000000000000000000000000000000000000000000000000000000000000000000000000030a0f12151520202020202020202020202020202020201e1413100c0701000000000000000000050b101416172020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202013100c07000000000000000000000000000000000000000000000000000000000000000000080e1317191a202020202020202020202020202020201e1b1610090100000000000000000000000000000000000000000000000000000000080e1317191a202020202020202020202020202020201b1a18140f080100000000000000000000000000000001080e1317191a2020202020202020202020202020201e1e1b17120c050000000000000000000000000000000000000000000000000000000000000000000000000000040d18242f3a434f59606d7a849199a3afbbc1ccc3bbafa49a92857b6e685d544b403428241b1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060709080d1113141618191a1a1b1b1c1c1c1b1b1a1a191816151312100b0607070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507060c1012131517191a1a1b1c1c1c1b1a1a191817151312100b0607060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406060b1012131517181a1b1b1c1c1c1c1b1b1a1816151312100b0606040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708090b0c0d0e0e0e0d0d0c0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507081313131313131313131313131313130c0b09050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b131a202527282d2d2d2d2d2d2d2d2d2d2d2d2d2d2625221e18110901000000000000000000000000000000000000000000000000000000000000000000060e151a1f21222d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b201f1d18120b03000000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d1f1c18120b030000000000000000000000000000000000000000000000000000000000020a12191f2326272d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a0100000000000000000000000000000000000000000000000000020a12191f2326272d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2727241f1a130b0200000000000000000000000000020b12191f2326272d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b2a27231d170f06000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313e45515d676f7c87929fa6b0bac3ccc0b6aca19791847a6d665c514540362c241b120a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707090b0c0d0e0e0f0f100f0f0e0e0d0c0b09080706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030607080a0c0d0e0e0f100f0e0e0d0c0b0b080706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030607080a0b0d0e0e0f0f0f0f0e0e0d0b0a0807060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030506080e1114141618191a1a1b1b1a1918161414110e080806020000000000000000000000060606060606060606060606000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e111414202020202020202020202020202020181715110c060000000000000000000000000000000000000000000000000000000000000000000000000000000000020b151d252c313435393939393939393939393939393932312e29231b1309000000000000000000000000000000000000000000000000000000000000000006101820262b2e2f3939393939393939393939393939393939382d2c29241d150d03000000000008111a22282d3031393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939392c28231d150c03000000000000000000000000000000000000000000000000000000000a141c242a2f32333939393939393939393939393939393937332c251c1309000000000000000000000000000000000000000000000000000a141c242a2f3334393939393939393939393939393939393433302b251d140b010000000000000000000000010b141d242b3033343939393939393939393939393939393837342f2821180f0000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2935414c55606a727f8c949ea8b1bbc5c7beb3a9a0969082786d605b51483e362d241b13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f121316191e2021232526272728272726252321201e191514120f0905010000000106090b0c13131313131313131313131308070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d141a1e20212d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2524221d1811090000000000000000000000000000000000000000000000000000000000000000000000000000000009131d272f373d404246464646464646464646464646463f3e3a352d251b1107000000000000000000000000000000000000000000000000000000000000030e18222a31373a3c4646464646464646464646464646464646453a38352f271f150b0100000005101a232c33393c3d4646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464638342e271e150b00000000000000000000000000000000000000000000000000000008121c262e353b3f4046464646464646464646464646464646433e372e251b1005000000000000000000000000000000000000000000000008121c262e363b3f404646464646464646464646464646464641403c362f261d1308000000000000000000000008121d262e363c3f414646464646464646464646464646464543403a332a2110060000000000000000000000000000000000000000000000000000000000000000000000000000040d19242f3a434e58606c78828f95a0a9b3bdc7c5bbb2a89f948e81746d635a50483f362d2517110a020000000000000000000000000000000000000000000000000000000000000000000000000000000004060708090a0b0b0c0c0b0a0a0908070502000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707090a0a0b0b0c0b0b0a0a09090806060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090a0a0b0b0c0b0b0b0a080706040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060608090a0a0b0b0c0b0a0a0908070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f11171b1f2023252a2d2e30313333343434333332302e2d2a2522211f1a15110d0802060d121518182020202020202020202020201514120e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e171f252a2d2e39393939393939393939393939393932312e29231b12090000000000000000000000000000000000000000000000000000000000000000000000000000040f1a252f3941484d4e53535353535353535353535353534c4a463f372d23180d0100000000000000000000000000000000000000000000000000000000000a15202a343c4347485353535353535353535353535353535353514745403931271d12070000000b17222c353e44494a5353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535345403930271d120700000000000000000000000000000000000000000000000000020e19242e3840474b4d535353535353535353535353535353534f4940372c21160a00000000000000000000000000000000000000000000020e19242e3840474b4d535353535353535353535353535353534e4c4841382f251a0f03000000000000000000030e19242e3840474c4d53535353535353535353535353535351504b453c3322180e03000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313d44505b666d7a839197a2abb5c0cbc3bab0a69e938c7f736c615a51483f3727221b140b0200000000000000000000000000000000000000000000000000000000000000000003050609070c10131315161718181818181716161414110e090807050200000000000000000000000000000000000000000000000000000000000000010406070d110707050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507070a080d1113141616171718191818171616151513120f0b06090706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708070c10131415171718181918181717151413100d07080806020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003050608060b0f12131416171718181918171615151413100d070706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10151b1b22272b2d2f3036393b3c3e3f4041414140403f3d3b3936302f2e2b26201e19130e11181d2224252d2d2d2d2d2d2d2d2d2d2d2d22211e1a140e0600000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202930363a3b4646464646464646464646464646463f3d3a342d241b1106000000000000000000000000000000000000000000000000000000000000000000000000000814202c37414b53595b6060606060606060606060606060595751493f35291e120600000000000000000000000000000000000000000000000000000000030f1a26313c464e535560606060606060606060606060606060605e53514b43392f24180c000004101c28333e475055576060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605f514b43392e23180c0000000000000000000000000000000000000000000000000007131f2a35404a52585a6060606060606060606060606060605f5a52493e33271b0f0000000000000000000000000000000000000000000007131f2a36404a52585a606060606060606060606060606060605a58534a41362b1f140200000000000000000007131f2b36404a52585a6060606060606060606060606060605e5c564e45342a20150a0000000000000000000000000000000000000000000000000000000000000000000000000000010c161f28333f4a545d686e7b859299a3afbbbfc8c2b8afa59c918a7e716c625b514940332d261d140a00000000000000000000000000000000000000000000000000000000000104060b0f12131518181c1f20222324242525252524232221201e19181514120e090603000000000000000000000000000000000000000000000000000001070d1113141a1d1413110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406080d111314171a191d202122232424252525242423232221201f1c1718161413100c0706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306090e11141417181d1f20222324242525252524232220201d18181514120e0906040000000000000000000000000000000000000000000000000000000000000000000000000000010407060b0f12131518171c1f2021232324242525252423222120201d18151312100b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b0f161c20262b2d3337393c3f414647494b4c4d4d4e4e4d4c4b494746413f3b3a37312d2a251e1a1b23292e31323939393939393939393939392e2d2a261f180f0600000000000000000000000000000000000000000000000000000000000000000000000000000009141f29333b4246535353535353535353535353535353534b4a453f362d23180c010000000000000000000000000000000000000000000000000000000000000000000000000c1825313d48535d65686c6c6c6c6c6c6c6c6c6c6c6c6c6c65625b51463a2e2216090000000000000000000000000000000000000000000000000000000006121f2b37434e585f626c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b605d554b4035291d1004000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5c554b4034281c10040000000000000000000000000000000000000000000000000a17232f3b47525c63666c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e12000000000000000000000000000000000000000000000b17232f3b47525c64676c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645c53483c301f14090000000000000000000b1723303c47525c64676c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b686056463c31261b0f030000000000000000000000000000000000000000000000000000000000000000000000000000040d17222d38424c565f69707d87929fa3adb6c0c8c1b7ada49f92877e726d625b52443f382f261b1106000000000000000000000000000000000000000000000000000001080d1113171b1f20222523282c2d2e3031313132323131302f2e2d2a252521211e1a15130f0a040000000000000000000000000000000000000000000000060b13181d2020262a21201d19130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004070d101314191d20212427252a2d2e2f3030313232323131302f2f2e2d2b28222523201f1d1815120f0a070300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050a0f13151a1e20212424292c2d2f3031313232323131302f2d2c29242522211e1a1313100c070000000000000000000000000000000000000000000000000000000000000000000002080d111314171b1f20222522282b2d2e2f30313132323231302f2e2d2c292422201f1c17110f0a04000000000000000000000000000000000000000000000000000000000000000000000000000002080d161b21282c3237383f4446494c4d52545658595a5a5b5a5a59585654524c4c4847433c3936302b26252d343a3d3f4646464646464646464646463b3a36312a21180e0300000000000000000000000000000000000000000000000000000000000000000000000000020e1a25303b454d525f606060606060606060606060606060585651483f34291d11050000000000000000000000000000000000000000000000000000000000000000000000000e1b2734404d59656f757979797979797979797979797979726d62574a3e3125180b000000000000000000000000000000000000000000000000000000020b1a232e3a47535f6a6f7979797979797979797979797979797979786d675d5145382c1f1306000a1623303c4955616c7079797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797976675c5145382c1f13060000000000000000000000000000000000000000000000000c1926323f4b58636e73797979797979797979797979797979766c5f5346392d2013000000000000000000000000000000000000000000000d1926333f4b58646e7379797979797979797979797979797979746e64584c3b3025190e0200000000000000000d1926333f4c58646e74797979797979797979797979797979787268584e43372b1f120600000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3a434d57606b717e8b919ba4aeb6c0c8bfbbafa39992877f726d635c504941382d22170b000000000000000000000000000000000000000000000000040a0f13191d2022272b2d2f312e34383a3b3c3d3e3e3f3f3e3d3d3c3b3a3630322e2d2a25221f1b15100c0701000000000000000000000000000000000000020a11171d24292c2d33372e2d29251e160e0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c1013181d202024292d2e30333036393a3c3d3d3e3e3f3e3e3d3d3c3c3b3938332d31302d2c2924211f1b15130f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d11161b1f22252a2d2e312f35393a3c3d3d3e3e3f3e3e3e3d3b3a39352f312f2e2b26201f1c18120e0903000000000000000000000000000000000000000000000000000000000000040c13191d202122272b2d2f312d3338393b3c3d3d3e3e3f3e3d3d3c3b3a39352f2f2d2b28231c1b15100c070000000000000000000000000000000000000000000000000000000000000000000000050c131921272c33383c43474950535659565e616364666667676766666563615e565855534e4746413a373129373f464a4b5353535353535353535353534846423b332a1f14090000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36424d575e6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c65625b51453a2e2215090000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b68758186868686868686868686868686867f7265594c3f3226190c0000000000000000000000000000000000000000000000000000000a141d2c38434e58626f7c878686868686868686868686868686868684796d6053473a2d201407000a1724313d4a5764707d868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a667380868686868686868686868686868686796c605346392d201300000000000000000000000000000000000000000005121e2a36424d5767738086868686868686868686868686868686807467564d42362a1e11050000000000000004111d2935414c5667748086868686868686868686868686868684786a5f53473a2e211507000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d28313c454f59626c727f8c929ca4aeb6c0cbc0b5aba399938b7f736e605b53493f33271b0f03000000000000000000000000000000000000000000050b10161b1e24292c2d3337393c3e4140454648494a4b4b4b4b4b4a4949474642413e3b3a36312e2b271f1c18120d0801000000000000000000000000000003090c141c23282f35393a40443a3935302820160d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12181c1f24292c2d3035393a3d404241464749494a4a4b4c4b4b4a4949484846443f403e3c3a38352f2e2b26221f1b16100c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e14191e20272b2e30363a3b3e41404547484a4a4b4b4c4b4b4a4a48474540413e3b3a37312d2c28231d1a140f0a04000000000000000000000000000000000000000000000000000001090e161e24292c2d2d3337393b3e413f444647494a4a4b4b4c4b4a4948484745403f3c3a38342e2b271f1c18120b030000000000000000000000000000000000000000000000000000000000000000060e171e252a32383e44484e54535b60626669686e6f717273747474737372706e686965625f5854524c47423c353f4951565860606060606060606060606055534d453b31261a0e020000000000000000000000000000000000000000000000000000000000000000000000000714202d3a46525e6976797979797979797979797979797979726d62564a3d3124170b0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9393939393939393939393938c7f7265594c3f3226190c000000000000000000000000000000000000000000000000000006111b262f384854606a75828f9993939393939393939393939393948a7e71675d5145382c1f1306000a1724313d4a5764707d8a9393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d9393939393939393939393939386796c605346392d20130000000000000000000000000000000000000000000714202d3a46525e697784909393939393939393939393939393918477695e52463a2d201407000000000000000713202c3945525d687783909393939393939393939393939396887b6f6255483c2f24180d01000000000000000000000000000000000000000000000000000000000000000000000000000000020b161f2a333d47505a626d73808d929da4aeb6bfc7bdb5aba49f918c80746c655b5044372b1f120500000000000000000000000000000000000000040b10171c21272c2f35393a3f4446484b4d4b5153555657575858585857565554524d4d4b4846423c3b37322c29231d19130b06000000000000000000000000060c141a1e262e343a4045474d504746413a32281f150c0200000000000000000000000000000000000000000000000000000000000000000000000000000003090f141a1d23282c2f35393a3e4146474a4d4f4c52545556575758585857575656555453504a4d4b494745403c3a37312f2c271f1c18120d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d141a1e252a2d32373b3c4246474a4e4b5153555657575858585857565553514b4d4b4847423d3a38342e2b261f1b150e090300000000000000000000000000000000000000000000000009131b20283035393a3d3f4446484b4e4a505354565657575858585756555453514b4b4846443f3837322c28231d150c070100000000000000000000000000000000000000000000000000000000020a1117202930363d44484f55585f62656c6f7275787a7c7e7f80808181807f7e7c7a7876726e6a66615e56534e454146515b62656c6c6c6c6c6c6c6c6c6c6c6c6c5f574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7b8686868686868686868686868686867e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9b9f9f9f9f9f9f9f9f9f9f988c7f7265594c3f3226190c00000000000000000000000000000000000000000000000000000b17222d38414f59626f7c89939e9f9f9f9f9f9f9f9f9f9f9fa4999083766c61554b4035291d1004000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d999f9f9f9f9f9f9f9f9f9f9f9386796c605346392d20130000000000000000000000000000000000000000000815212e3b4854616e7b8795a09f9f9f9f9f9f9f9f9f9f9f9fa096877b6e6154473b2e211409000000000000000714212d3a4754606d7a86939f9f9f9f9f9f9f9f9f9f9f9fa8988c7f7265554b4035291d110400000000000000000000000000000000000000000000000000000000000000000000000000000000040d18212b353f48515b636e74808d929ca4adbbc0c7bdb5afa39b928c80776c605346392d201306000000000000000000000000000000000001080d161b22282d32383a41454749505355585a545c606163646464656564646362615e565a5854534d4947433d38342f29241e17110a020000000000000000030a11171f252a30383f444b5153595d54524c443a31271e140a0000000000000000000000000000000000000000000000000000000000000000000000000002090e151a1f252a2e34383a4045474a4c5254575a5b565e6162636364656565646463626261605b545a585653514b4847433c3b38322c29231d19130b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13181f252a3036393d4347494d5254575a555d606263646465656564646362605d555a5855534d4a4645403937312b27201a150b060000000000000000000000000000000000000000000006111b252d323a4145474a49505355585a545b60616263646465656564636261605d55585553504a47433c38342e271e18120b030000000000000000000000000000000000000000000000000000020b141b2227323a41464f545961636a6f73787c7f828587898b8c8d8d8e8d8d8c8b898785827f7b77726d68625f57514c4a56626d7279797979797979797979797976695f53463a2d2114070000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a87939393939393939393939393938b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8acacacacacacacaca5988c7f7265594c3f3226190c00000000000000000000000000000000000000000000000000030f1b27333f4953616b7682909ca5afacacacacacacacacb4aa9f93877c6f625a5043392f24180c00000a1724313d4a5764707d8a97a3acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6acacacacacacacacac9f9386796c605346392d2013000000000000000000000000000000000000000003101c28343f4a5465717e8b98a7b1acacacacacacacacacacb2a8978a7e7164574b3e30251a0e020000000000000a1724303d4a5763707d8a99a4afacacacacacacacacacaca99c8f8276675d5145392c2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000060f19232d363f49525c606c77808d929ca4afb5bdb9b1aaa39f948f857b6e6255483b2f22150800000000000000000000000000000000040c131921272c33393d43484c5154535b6062646769666d6e6f70717172727170706f6e69696765615e5756544e47454039352f27221b140b07000000000001070c151c232831363e424a50555d60666a615e564c433930261c11060000000000000000000000000000000000000000000000000000000000000000000000060c141a20262b3036394045464b515357565d616366686a686d6f7070717172717170706f6f6e6c6668666463605d5555534e4948433d38342f29241e17110a02000000000000000000000000000000000000000000000000000000000000000000000000000001070d161d242930363b4146474e5456575e61646769676d6f7070717172717171706e6d676a6764625f575653514b46423c37322b261f17110a0200000000000000000000000000000000000000010d18232d373f444c525456535b6062646769666c6e6f70707171727170706f6e6d67686562605c54544e464540393029231d150d06000000000000000000000000000000000000000000000000020b141d262d333d444c525960636b70767c8084898c8f9297969799999a9a9a9999989697928f8b88847f7a756e6a605d554f5865727f8686868686868686868686867b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a87949f9f9f9f9f9f9f9f9f9f9f988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4b9b9b9b9b9b9b2a5988c7f7265594c3f3226190c000000000000000000000000000000000000000000000000010b151f2b3744505b65707d8a949fabb8b9b9b9b9b9b9b9baaea2988e81746a5f54483e31271d120700000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3b9b9b9b9b9b9b9ac9f9386796c605346392d2013000000000000000000000000000000000000000006121f2b3844505c6675828e9ba8b5b9b9b9b9b9b9b9b9b9b9b4a79a8e817467574d42362a1e1205000000000004111d2935414c566773808d9aabb5c0b9b9b9b9b9b9b9b9b9ac9f92867a6d6053473a2d20140900000000000000000000000000000000000000000000000000000000000000000000000000000000000008111b242d374044505b656c74808c929fa4abb4aea7a098928b827a6e695f53473a2e211408000000000000000000000000000000070d161e242932383e44494f54555d6064656c6f71747678797b7c7d7e7e7e7e7e7d7c7c7a787674716e696662605853514b45413a332d261d181008020000040c13181e262e343b42464f545c60676d73776d685e554b42382e231712090000000000000000000000000000000000000000000000000000000000000000030a11171f252a31373b42464b5153555d606467686d70737577787a7c7c7d7d7e7f7e7e7d7c7c7b7b79777573716f6d6765625f5856544f47454039353027221b140b06000000000000000000000000000000000000000000000000000000000000000000000000040c12181f282f353b42464c525458606267696e717476787a7b7d7d7e7e7f7e7e7d7d7b7a787674716e696763605c54534d47433c373128231c140c0600000000000000000000000000000000000006121e29343f4951565d606366656c6e71747678797a7c7d7d7e7e7f7e7d7c7b7b7a7774726f6d6662605853514b423d342f271f18100600000000000000000000000000000000000000000000020c141d262f383f444f565e616b6f777d83888d9196999c9fa2a9a4a5a6a7a7a7a6a6a5a9a29f9c9896918c86817b736d6760595865727e8b93939393939393939393887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1acacacacacacacacaca5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1c6c6c6c6bfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000000000000000000007121d2834404a54606c7883909da6b0bbcac6c6c6c6c9bdb2a89f92857a6e61584e43362c1f150b0100000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0c6c6c6c6c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000713202d3a4653606d7985929fabb8c5c6cec9c5c4c5c9cec4b7aa9e918477695e52463a2d20140700000000000613202c3945525d687783909daab6c3d2cec9c5c4c5c9c7bbaea3998a7d7064574a3d31261a0f0200000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b2527333f49535b606e737f8c9399a2aaa49d9590867f756d685f574d42372b1e120600000000000000000000000000000910191f282f353d44485055596063676d7174787b7e8083858688898a8a8b8b8b8b8a8988878583807e7b77736f6a65605c55514c443f382f2a2219130c04070d161d242930383f444d535961666d717980837a6d675d544a3f3428241b1108000000000000000000000000000000000000000000000000000000000000060c151c232830363c43474d52555c6064676d7174777a7d808283858788898a8a8b8b8b8a8a89898887868482807e7c7976726f6a6863605953514b46413a332d261d17110a02000000000000000000000000000000000000000000000000000000000000000000050d161d2429313a41454d52565e61666a6f74787b7e8183858688898a8a8b8b8b8b8a8988868583807e7b7874706d66615f57544e47423c342e261e180f0800000000000000000000000000000000000915222e3a46515b62686d707376797b7e818384868789898a8a8b8b8b8a8988878684817e7c79746f6a64605c544f454039312a221810060000000000000000000000000000000000000000000a141e262f384149505960686d747d838a90949a9ea1a8a8abadb3b1b2b3b3b4b4b3b2b1b3adaba9a8a09e99928e86807a706b635b65727e8b989f9f9f9f9f9f9f9f94887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adb9b9b9b9b9b9b9b1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1ced2d2cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000000000000000000000c18242f3844515c66717e8a95a0acb8c2cdd2d2d9d0c7b9aca0968c7f72685e52463c32241a0d030000000a1724313d4a5764707d8a97a3b0bdcad2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd2d2d2c6b9ac9f9386796c605346392d20130000000000000000000000000000000000000000091623303c4956636f7c8997a2adbac6ccc4bdb9b7b9bdc4c5b9aca096877b6e6154483b2e21150900000000000714212d3a4754606d7a86929facb9c5ccc4bdb9b7b9bdc4bfb5ab9a8d817467584e43372b1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000091317222d384149505c636d737f879298a19e928d837c726d615e564d453c31261a0e02000000000000000000000000010a121a222b313a41454f545a61646b6f747a7d8185888b8d9091939a9697979798989797969597928f8d8b8783807c77716d67605d555049413c3429251e160e13181f282f353d424a50575e616b70787e858c9083796d665c504440362d231a1007000000000000000000000000000000000000000000000000000000020a11171e262e343b42464e53575e61676d70757a7e8184868a8d8e9092989596969798989897979695959892908f8d8b8986827f7c78746f6b64605c55524c443f382f28231c140c0400000000000000000000000000000000000000000000000000000000000000070f171f282f353e434b51575e61686e73777c8084878a8d90919795969797989898979796959792908d8b8884817d79736e69626058534d443f38302a211a1109000000000000000000000000000000000b1824313e4a56626d727a7d7f8285888b8d90919299959697979898989796959496918e8b8885817c76716d666059514b433c342a22180f050000000000000000000000000000000000000006111c263038424a535b606b707a818990959c9fa6abadb2b5b8babebebfc0c0c1c0c0bfbebebab8b5b2acaba39f99928d857d726d6065727e8b98a5acacacacacaca194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac6c6c6c6c6beb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000000000000000000000000000004101d2935404b55606d7984919ea7b1bccad4deddd2c7bdb0a69e9184796d60564c41342a201208000000000a1724313d4a5764707d8a97a3b0bdcad6dfdfdfdfdfdfe3dbd5d0cdccc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000000000005111d2a36414c566673808c99a9b3becac4bab2acaaacb2bac4bdb2a8978b7e7164584b3e31261a0e02000000000a1724303d4a5763707d8a99a3afbbc7c4bab2acaaacb2bac4b7ab9e9184786a5f53473a2e211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f383f44525b636d727e869297928a80796f6a625b524c443c332a201509000000000000000000000000010a131c242c343d434c515960636c70777c81868a8e9197979a9c9e9fa4aca3a4a4a5a5a4a3a3a9a29e9c9a9895908c89837e79736d67605b534e463f35302820181d2429313a41454f545c60696e757d838b9197958f81786d605b51483f352c22190f0600000000000000000000000000000000000000000000000000040b141b222730383f444d52585f62696e74797d81868a8d91939a999b9d9fa2aaa3a3a4a4a5a4a4a3a3a2aaa39f9d9b999798928f8c8885817c77716d67615d565049413c342e261e160d0500000000000000000000000000000000000000000000000000000000000710192129313940454f555d60696e747a8084898d9196979a9c9ea1a9a3a3a4a4a5a4a4a4a3a9a19e9d9a9796918d8985807b766f6a625f57504a423c332b231b130a0100000000000000000000000000000c1925323f4c5865727f88898c8f9297979a9c9e9fa3aba3a3a4a4a5a4a3a3a2a8a09d9b9898928e88837e79706b605c554e463c342a21170e040000000000000000000000000000000000081117232e38424a545b656c727d858e939da0a7abb0b7b9bdc2c5c6cacfcccccdcdcbcac9cfcac6c5c2bdb9b4aeaba39f9792877f746c65727e8b98a5b1b9b9b9b9aea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d2d2d2cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000000000000000020d17202c3945515d67727e8b96a0acb9c3cddce3d7ccc0b5ab9f948a7d70675c51443b3022190e00000000000a1724313d4a5764707d8a97a3b0bdcad6e3ecececede3dad1cac4c0bfbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcb9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000713202d3946525e687683909da9b6c3c9bdb2a8a09ea0a8b2bdc1b4a79b8e817468574d42362a1e120500000004111d2935414b556773808d9aabb5c0c9bdb2a8a09ea0a8b2bdb9aca196887b6e6255483b2f24180d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262d334049525b626c707c858e857d746d675f585146413a322a21180e0300000000000000000000000009131c252d363e464e555d606b70777d83898e92989b9ea1a9a7a9abacafb6b0b1b1b1b1b1b0afb3adaba9a7a7a09d9995908b85807a716c655f585146413a322a21282f353d434b515960666d727b828a91959ea19e938e80746d635a50473e342b21180e050000000000000000000000000000000000000000000000060d161d262d333d424a50575e616a6e747b80858a8e92989a9d9fa4aca8aaabaeb3afb0b0b1b2b1b1b0afafb4aeacaaa8a6aaa39f9c9897918e89837e79736d68605b534e443f3830281f170f07000000000000000000000000000000000000000000000000000000071119222b333b434b515961676d747b80868c91969a9ea1a8a7a9abadb2b0b0b1b1b2b1b1b0b0b3adaba9a7a8a19e9a97928d87827c756e69605c544d453d352d251c130a00000000000000000000000000000d1a2733404d5a6673808d9a999c9fa2a9a7a9abacafb5b0b0b1b1b2b1b0afaeb2acaaa7aaa29f9b95908a847d746d675f584e463c332920160c02000000000000000000000000000000050e1a2328343f4a545c666c777f8792979ea5acb1b7bbc2c5c9cfd2d2cec8c5c4c1c0bfbdbdbdbfc0c2c5c6c6bfbab5aea9a199938c81776c727e8b98a5b1bec6c6bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4dfd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000000000000000009141f2935414c56606d7985919ea8b2bdcbd5dfded4c7bbafa4998f82766c61554b4032291e100700000000000a1724313d4a5764707d8a97a3b0bdcad6e8f3fdf1e6dbd1c8bfb8b4b2afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000714212e3a4754616d7a86939facb9c6c5b9aca0969196a0acb9c4b7ab9e918478695f53463a2d2114070000000613202c3945515d677683909da9b6c3c5b9aca0969196a0acb9bdb2a8988c7f7265554b4035291d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141b2227374049515a616a6f7b817b706b605c554e463f36302920180f0600000000000000000000000009121b252d373f48505860676d747d838a90959b9fa2aaabadb3b3b6b8b9bbc0bdbdbebebebebdbcbeb9b8b6b3b1acaaa7a09d97928c857e786f6a625b524c443c3328313a40454f555d606b6f787f868f939da0a7ada69d928c7f736c62594f463c332a20170c0200000000000000000000000000000000000000000007101820282f383f444f545c60696e757b81868d92979b9fa2aaaaacafb6b5b6b8babebcbdbdbebebebdbdbcbcbfbab9b7b5b3b4aeaca9a9a19e9b95908b85807a716c655f58504a423a31292119100700000000000000000000000000000000000000000000000000071019232b343d454d555d606b707980868d92989ea0a8abacb2b4b6b8b9bebcbdbdbebebebebdbcbeb9b8b6b3b2acaba9a19e9a938f87817b726d665f574f473f372e251c1309000000000000000000000000010e1b2734414e5a6774818d9aaca9abadb3b4b6b7b9bbc0bcbdbdbebebebdbcbbbdb8b7b4b4aeaba79f9d96918880796f6a5f584e453b32281e13080000000000000000000000000000020c16202c353e44505c666d78818c9299a1a9afb8bcc3c7cdd2d2ccc8c6c3bdb9b7b4b3b2b1b0b1b2b3b5b8babfc5c6bfbbb3aba49f938d8073727e8b98a5b1becbc7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000000000000000000000000020e1a25303946525d68727f8c97a1adbac4cedde0d6cabeb3a99f93877c6f625a5043392e20170d0000000000000a1724313d4a5764707d8a97a3b0bdccd6e1ebf5ece0d5cabfb6ada8a6a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000030f1b27333f495364717e8a99a4afbbc7c4b7aa9e9184919eaab7c4b9aca196887b6e6155483b2e2215090000000714212d3a4754606d7a86929facb9c5c4b7aa9e9184919eaab7c2b5a99c8f8276675d5145392c201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1117252e373f48505860696e746e686159514b433c342a251e170e0600000000000000000000000006101b242d373f49515a616a6f7a818790959da0a7acaeb4b8b9bec0c3c4c6c8ccd2cacacbcbcacacfcac6c5c2c0bcb8b7b1aca9a19e97918b837c726d615e564d453d343d434b515960676d747d838c92989ea6acb1b9afa59c918b7e716b61584e453b32291e13080000000000000000000000000000000000000000071019222a323a4149505960666d727b81878e92999fa2a9acaeb4b7b9bbc0c1c3c5c6cad0c9cacbcbcbcacac9d1cbc7c5c3c2c0bfbab8b5b2adaba7a09d97928d857e776f6a605c544b433b332b221910070000000000000000000000000000000000000000000000061019222b353d464f575e676d757d848d92999fa3aaacb2b7b9bdc0c3c4c6c9cfcacacbcbcbcacacfcac6c5c3c0bdb9b7b3adaca49f9a938e867f786e69605951493f372e251b12080000000000000000000000020f1c2835424f5b6875828e9ba8b5b8babec0c3c4c5c7cbd1cacacbcbcbcac9cec8c5c4c1bebab8b1aba8a19a938d837c6f6a5f574d443a3024190b020000000000000000000000000008131e28323e47515b606d78818e939fa3abb3bbc1c8cdd3d5d0c7c0bbb9b6b2acaaa8a6a5a4a3a4a5a6a8acaeb4b8babfc5bdb5afa59c928b7f727e8b98a5b1becbc7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000000000000005111e2a36424d57616d7a85929fa9b3beccd5e0d9cec6baada2978d81746a5f53483e30271d0e050000000000000a1724313d4a5764707d8a97a5afbac4cfd9e3eee9dcd0c4b8ada39c999696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000005121f2b3744505b6574818e9babb5c0ccc0b3a69a8d808d9aa6b3c0bdb2a8988b7e7165584b3e31261a0e0200000a1723303d4a5663707d8999a3afbbc7c0b3a69a8d808d9aa6b3c0b9ac9f92867a6d6053473a2d201409000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131c252d363e464e575f6167615e564f454039312a2219130d05000000000000000000000000040d18222d363f49515b636c717c848d939a9fa7acb1b8babfc4c6c9cfcfd1cbc7c5c4c3c3c2c1c1c1c2c4c6c8cccec8c5c3bcb8b3ada9a19e9590867f756d685f574e4640444f555d606b7079818890959fa2aab0b8bcc0b7ada39f92877d706a60574d443a3025190d01000000000000000000000000000000000000071019222b343c444c535b606b6f787f868e939a9fa3abadb3b8babfc4c6c8ccd2d0d2d3d3d2d0d0cfcecfcfd0d0d2d3d3d2d0ced0cbc7c5c2beb9b8b1aca9a19e97928b837c736d665d554d453d342b22190f05000000000000000000000000000000000000000000050e18222b343d474f5960696e79818a91969fa3abaeb4b9bdc4c5c9cecfd1d2cfcdcccbcac9cacbccced1d2d1d0cec9c5c4beb9b6afaca49f98928c837b706b625b51493f372d241a0f060000000000000000000003101c2936434f5c6976828f9ca9b5c2c6cacfcfd1d2d3d7dcd4d4d4d5d7d6d6d9d4d1d0d0cac6c2bcb8b2aca49f9591857c6f695e564c4135291d140a000000000000000000000000020c1925303a444f59626d74818e939da5afb5bdc5cdd4d5cec9c2beb6afaca9a8a09e9b9a98979697989a9c9fa2aaacaeb4babfc0bbaea49f92877c7f8b98a5b1becbc7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000000000000040f19222d3a46525e6973808d97a2adbbc4cfdee1d4c8bdb2a89f92857a6d61584e43362c1e150b00000000000000091623303c4956636f7c89939ea8b2bdc7d1dce8e6dacdc0b4a89c918c8989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898986796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000000000613202d394653606c7885919eabb8c4d2bfb2a5998c7f8c99a5b2bfc1b4a89b8e817568574d42372b1e12060004101d2935404b556673808d99abb5c0cbc0b5ab998c7f8c99a5b2bfbaaea3988a7d7063574a3d31261a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a131b242c343d454d53555b54524d443e342f271f18100802000000000000000000000000010c161f2a343e48515b636d727e8691969fa4acb1b8bcc3c6cad0d0cac6c5c2c0bbb9b8b7b6b5b4b4b5b5b7b9bbc0c4c5c8cec8c5beb9b3ada79f99928b827a6e6960584f4a515960676d747d848e939aa0a7aeb4bcc1c8c9bfbbafa39992867c6f695f564c41362a1d11050000000000000000000000000000000000071119222b343c464e565d656c727d838c92989fa4acaeb5babec5c6cad0d2d4d3d2cfd0cac6c5c4c3c2c2c2c2c3c4c5c6cacfcdd0d1d4d3d2cfc9c6c3bcb8b3ada9a19e94908780786d675e574e463d342b21170d0400000000000000000000000000000000000000020b17202a343d464f59606b6f7b838e939ea1a8aeb4babfc6c9ced2d2d1cbc7c5c2c1bfbebdbdbebfc0c1c4c6c9cfd0d3d2cfcac7c0bbb6afaaa39f9590857d726d635b51493f362c21180d0300000000000000000004111d2a3744505d6a7783909daab6c3d0d2d0cecccac9c8c7c7c7c8c8cacdd0d1d4d9dddbd6d3cdc8c4beb6afa7a09791847b6e685d52453d2f261b110600000000000000000000000a141e2a36414c56616b727f8c939da5afbbc0c7cfd6d3ccc4bdb9b0aca49f9c9996918e8d8c8a8a8a8c8d8f92989a9fa2aaaeb4bcc0bbafa3998f827f8b98a5b1becbc7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000000000000a15202b37424d57616e7b86929fa9b3becdd6e1d9cfc7b8aca0968c7f72685e52463c31241a0c03000000000000000915222f3b4854606b75818e96a1abb5c0cbd7e0e9d9ccbfb2a6998c7f7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c786c605346392d2013060000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000000000916222f3c4955626f7c8897a1adb9c6cabfb4aa978a7e8a97a4b1bdc4b8ab9e918478695f53473a2d211408000613202c3945515d677683909da9b6c3c7bbafa3998b7e8b98a4b1bebfb4aa9a8d807467574d42372b1e120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000109121a222b333b4246484e4746413b3229231d150d06000000000000000000000000000008131e28313c46505a626d727f8a9298a1a8afb6bec3c8cdd3cdc7c6bfbab8b5b5afacabaaa9a8a7a7a8a9aaacafb6b7b8bcc3c7cbc9c4beb9b1aba39f948f847b6f6a6059545c606b7079818991969fa4acb1babfc6ced1cbc5beb5aba29892857b6e685e5246392d20130700000000000000000000000000000000061019232b343d464e585f686d777f8790959fa2aaafb6bbbfc6cad0d3d6d3d0cbc7c5c2bfbfbab8b7b6b5b5b5b6b6b7b8babebec0c3c5c8ced2d3d5d2cdc8c5beb9b3ada69f99928d82796e6960584e463c33291f160c030000000000000000000000000000000000000a141d29323c464e58606b707d8590959ea5adb2babfc6cbd0d5cfc9c6c4bfbab9b6b4b3b1b0b0b1b2b3b5b8b9bec2c3c7ccd3d6d2ccc7c0bbb4aea79f9792877f726d635b51483e332a1f150b01000000000000000005111e2b3844515e6b7784919eaab7c4c7c5c3c2c0bebcbbbbbababbbcbec1c4c5c8ced3d7dcdfd8d4d0c7c0bbb1a9a19691837a6d60594f41382d22170b0000000000000000000006111c26303846525e68707d87939fa5afb7c0cbd1d9d2cac1bab2aca69f9a93908c888481807f7e7d7e7f8082858a8e92989fa3aab0bbc0b5ab9e948f828f9ba8b5c2cec7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000000000020b1b27323a47535f6974818e98a3aebcc5d0dfdcd1c7bdb0a69e9184796d60564c41342a20110800000000000000000713202c38444f59606d7a849199a3afbbc2ced7e2ded1c4b7ab9e91847a6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6c655b5044372b1f12050000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000004111d2935414b5566727f8c99a9b3bec9c6baaea298897c8995a2afbcc5b9ada196887b6e6155483b2e221509000714202d3a4753606d7a86929facb9c5c5b9ac9f92867d8a96a3b0bdc4b7aa9e918477695f53473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081019212931363a3b413b393630292018120b030000000000000000000000000000010d19242f3a434e58626c727f8b919fa3aab2bbc0c7d0d2ccc7c2bbb7b4aeaca9aba39f9e9d9c9b9a9a9b9c9e9fa4acaaacb1b9bbc0c7cfc9c2bdb4aea69e9691857c706b605f666d737d848d929ea1a8afb6bec3cad0cfc7c0bbb3ada8a19e9691847a6d6154473a2e211407000000000000000000000000000000050e18222b353d464f58606a6f7a828c9299a0a7aeb4bbc0c7cbd1d6d6d1cbc7c5bfbab8b6b2b4aeacaaa9a9a8a8a9aaaaabadb3b1b3b7b8bcc2c5c7cbd1d5d4cfc9c5beb9b0aba39f948f837b6f6a60584e453b31281e150b000000000000000000000000000000000006111b262f3a444e58606a707d869197a0a7afb9bdc4cbd1d6cfc9c4beb9b8b4aeaca9a7a6a5a4a3a4a5a6a8abadb3b5b7bbc2c7cbd1d8d2ccc6bfbab1a9a299928b7f726d625a50463c31271d1207000000000000000005121f2b3744505b657885929eabb8c0bbb9b7b5b3b1afafaeadadaeafb1b4b7b8bcc3c7cbd1d9e1e2d9d2ccc3bbb2a8a0958f82756b6053493f33271b0f030000000000000000000b17232e38424f59616d7a859299a4afb7c0c9d7dcd2c9c1b8b0a8a09e949087837f7b77757372717071727375797d81858d92989ea6afb6bdb0a69e938f939eaab6c3cfc7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000000000000000000000a141d2b37434e58626e7b87929faab4bfced7e1d7cbc0b5ab9f948a7d70665c51443a3022180e000000000000000000030f1b27323d45515d676f7d87929fa7b1bcc5d0dbdfd2c5b9ada1968e81756c6363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363605b53493f33271b0f030000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000613202c3945515d6776838f9ca9b6c2cfc5b8ac9f92857b8794aab4bfc9bdb2a8988b7e7165584b3e31261a0e020a1723303d4a5663707d8999a3aebbc7c5b8ab9e92857d8996a2afbcc5b9aca096887b6e6255483b2f24180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f171f262a2d2e342e2d2a251f170e070100000000000000000000000000000004111d2935414c555f6a717e8b919ba3aeb4bcc4ccd2d0c7c0bbb9b0abaaa29f9c9999929190908f8e8e8e8f91939a999da0a7acafb5bdc1cbcfc6bfbab0a8a09792867d706b696e78808891969da4acb2bbc0c7d0cec9c2bdb5afa9a19e96918b847f786d6053463a2d2013070000000000000000000000000000030c17202a343d474f59606a6f7c848f949fa3abb1babfc5ccd2d7d6d0cac6bfbbb9b4aeaca9a6aaa29f9d9d9c9b9c9c9d9d9fa2a9a4a7aaacb1b5b9bbc0c7c9cfd6d5cfc9c2bdb5afa69e9590857c6f6a60574d433a30271c1207000000000000000000000000000000020b17222d38414c565f6a6f7c869298a1a9b1b9c1c9cfd7d0cac4beb9b3adabaaa39f9c9a999897969798999b9ea1a9a9abb0b9bbbfc6cfd6d8d1cbc2bcb3aba39f918b7f726c61584e43392f24180b02000000000000000613202d394653606c7986929facb6b5afacaaa8a6a4a3a2a1a1a1a1a2a4a7aaacb1b9bbc0c7cfd5dee4ddd8cdc4bab1a79e94897d70655b5044372b1f150a000000000000000003101c28343f4a54616c75818e97a1abb5c0c9d2dbd2c8c0b7afa69e96918a837c76726e6a6867656463646567676d70747a80868f949fa4acb4b8afa59e9b9ea5afbbc6d2c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000000006111b262f384754606a75818e99a3afbcc6d0e0ded3c7bbafa3998f82766b61544a4032291e1006000000000000000000000b16212935414c55606b73808c959faab4becad6ded5c9bdb2a89e938b7e71695f54565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565653504941382d22170b000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000714212d3a4754606d7a86929facb9c5d1c4b7ab9e9184798798a3aebac7c1b4a89b8e817568574e42372b1e1206101d2935404b556673808d99abb5bfcbc4b7aa9e91847c8895acb6c0c9bdb2a8988b7f7265554b4035291d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d141a1e21222821201e19140d0500000000000000000000000000000000040e19222c3945515d676f7c86929fa3adbabfc6ced8cdc4bdb5afaca69f9c98928f8c898685848382818182828486898c91959b9fa3abb0babfc6cecbc1bab2a9a19892867d6f717b838d939aa1a8aeb9bdc4ccd1cbc4bdb9b0aba39f97928b847f79716d665c5144382c1f120600000000000000000000000000000b151e29323c464f59606b6f7c8591969ea6afb5bdc3cad0d8d7d0cac5bebab5aeacaaa39f9c9996989291908f8f8f8f9091929796989a9da0a7a8acafb5b9bec4cad0d7d5cfc7c0bbb0a7a09791867c6f695e564c42392e23180c0300000000000000000000000000000a141d27333f49535e686f7c859298a2aab3bbc3cbd5d4cec5bebab3ada9a19e9a98928f8e8c8b8a8a8b8c8d8e9197989c9fa6acaeb5bdc1cad0d7d7cec5bdb5afa39f93887e716a5f554b4035291d140a000000000000000714212d3a4754606d7a8799a3aca9aba39f9d9b999796959494949595979a9da0a7acafb5bdc3ccd3dce8dfd6ccc3b9b0a69d9083786c6053463c31261b0f030000000000000006121f2b3844505c66707d8a939ea9b3bdc7d2dbd3cac0b6aea59e948f847d766f6a66625f575a5957575759555c6063686d747b828c939aa2aab4b7afaaa8aaafb7c1ccd7c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000000000b17222d38414f59626f7c88939eabb5c0ced8dfd6cabeb3a99f92877c6e62594f42392e20170c0000000000000000000000040d19242f3a434f59606d78839098a2aebac1ccd6dacfc4baafa59f92867b6e665c504949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494946443f382f261b1106000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000a1724313d4a5764707d8a99a3aebbc7d0c3b6aa9d90837986929facb9c5c4b8ab9e9185786a5f53473a2e211406131f2c3945515d677683909ca9b6c3d1c3b6a99d90837b879aa4afbbc8c2b5a99c8f8276675d5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e1214151b1414110e080200000000000000000000000000000000000a15202b37434e58606d7a849198a3aeb5bfcbd0d2cac2bbb3aba49f9b94908a85827f7c797877767574747576777a7c8084888e92999ea6aeb4bcc3cbccc4bbb3aaa29892857c7e8590959fa4acb2bac0c9cecfc7c0bbb2aca69f99928d857f79726d66605c544a4034281c10040000000000000000000000000007121d27303b444e58606b707d869297a0a8b0bbc0c7cfd6dbd6cec5bfbab3adaba39f9b98928f8c89878584838282828383848587898b8d9095979b9fa3abadb2babec5ced6d9d1cbc1b9b1a9a19891857b6e685d544a4034281e150a0000000000000000000000000006111c262f3844505b656d7a849197a2aab4bcc4cdd5d8cbc3bcb3ada9a19e97918e8a868281807e7d7d7e7f808285888b8f949b9fa3abafbabec5ced4d7cfc7c0bbafa49a92867c6e675d51453c2f261b11060000000000000815212e3b4854616e7b8794a39f9c999992908f8d8b898888878788898b8e91959b9fa3abb2bac1cad3dde6ded5cbc1b8aba0958a7e7164584e43372b1f120600000000000004101c2834404a54606d7884919da5afbbc5d0d9d6cdc1b8aea49d938e8279706c62605855534e4d4c4b4a4b4c4b5153565e61696e777f889298a2abb5bbb6b5b6bbc1c9d3d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000000030f1b27333f4953606b76828f9ca5afbdc7d1e0d9cec6baada2978d80746a5f53473e30271c0e0500000000000000000000000008131e28313d44505c666e7b86929fa5afbac4d0d9d6ccc1baaea2989083786d60584e433c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3937332d261d140a00000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000006121e2b37424d576774818d9aabb5bfcbcec2b5a89b8f827884919eabb7c4c6b9ada197887b6e6255483b2d22170b14202d3a4753606d7a86929facb9c5cec2b5a89b8f827986939facb9c6c5b8ac9f9286796d6053473a2d2014090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080e08070502000000000000000000000000000000000000030f1b27323a47535f6a74808d96a0aab4bfc7d6d2c8c0b8b0a9a199938f89837d7976736f6d666a696867676869676d6f73777c81878f949fa3aab1b9c1c9cdc5bcb4aaa29792868a92989fa7afb6bec4ccd1cbc3bdb5afa8a19e948f87807a726d67605c54514a42392e23180c00000000000000000000000000050e18232e39434c565f6a707d869298a2a9b2bac1cbd1d9d7d0cac2bcb4aea9a29f99928f8a86837f7d7b797776767575767777787a7c7e8084878b8f92999ea1a9aeb4bcc1cad0d8d7cbc3bbb3aaa19790837a6d665c51443c30261c11060000000000000000000000000b17222d38424e58606c77828f96a1a9b3bcc5ced6d2ccc1b9b1a9a29f97918b85817d7a76747372717071727375787b7e82888e92999ea5aeb4bcc2cbd4d9d1cbc0b6aca2989083796d60584e41382d22170b0000000000000916222f3c4955626f7c889598928f8c89868482807e7c7c7b7a7a7b7c7e8184898e9299a0a8b0b8c1cbd4dfe7ddd4c8bcb1a79e9184776a5f53473a2e21150800000000000006121f2c3844515c66717e8b96a0acb7c1cdd7dacfc4bbafa59d928d81786d67615a544e484742403f3e3d3e3f4045474c52575e656c737d869299a3afbbc0c2c3c6ccd3dcd4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000010b151f2b3744505b65707d89949fabb7c1cfd9e1d4c8bcb1a79f92857a6d61584e43352c1e150b00000000000000000000000000010c161f28343f4a545f69717e8b939ea8b2bdc7d2ddd6cabeb4aa9f958c7f736a60554b41353030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302d2b27221b140b0200000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000814212e3a47535f697884919eabb7c4d1cdc0b4a79a8d817683909da9b6c3c9beb3a9988b7e726553493f33271b0f1623303d495663707d8999a3aebac7cdc0b4a79a8d817885929eabb8c5c7baaea3988a7d7063574a3d31261a0e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e58626f7c87929fa8b2bcc6d0d3c9c0b6aea69f979187827c76706d666663605c545d5c5b5b5b555d6063666a6f747b828b9298a0a7afb7c1c9cec6bcb3a9a29892989fa2aab1bbc0c7d0cfc6bfbbb1aba39f96918a827c736d68605c55514b44403930271c1207000000000000000000000000020d17202834404b555e686f7c869298a2aab3bbc4ccd7dcd6cec6bfbab0aaa29f97928c86827d797673706e6c656a696869696a6a686d6f7174777b7e82868c91979fa2aaafbabfc6ced6d5cdc4bcb3a9a0958f82786d60584e42382e23170c0300000000000000000000030f1c28333f4a54606a727f8c949fa8b2bbc5ced7d0c7c0bbafa79f97928c857e7974706d676766656463646566686a6e72767c81868e939fa2aab1b9c2cbd4dcd2c7beb4aaa0958d80746a5f53493f33271b0f0300000000000a1623303d495663707c898f8a8683807d7a77757371706f6e6e6e6e6f7174777c818791969ea6b0b9c2cdd7e1e4d9cdc3b9aca096887c6f6255483c2f24190d0100000000000713202d3a4653606d7984919ea8b2bdc9d3dfd5c9beb3a99e938d80776d665d555047433c3a3731323130312f34383a41464d535b606b707d87929fa4aebbc5cfd2d7dde5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000007121d28343f4a54606c7883909da6b0bbc9d3e1d8cfc6b8aca0958b7f72685d52463c31231a0c030000000000000000000000000000040d17232e38424d57626c75818e96a1abb5c0ccd7dbd0c5bcb1a79f92877c6f675d51453e332923232323232323232323232323232323232323232323232323232323232323232323232323232323232323201f1b17110a020000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000815222f3b4855626e7b8896a1acb9c5d2ccbfb2a5998c7f75828f9ba8b5c2cfc1b5a89b8e8275655b5044372b1f121c2934404b556673808c99abb4bfcbccbfb2a5998c7f7784909daab7c3cbbfb4aa9a8d807467574d42362a1e1205000000000000000000000000000000000000000000000000000000000000020507080f08080602000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4754606a76828f99a3afbac4ced4cac1b7aea49d948f857d756f6a63605c545653514b504f4e4e4f4b515456585f62696e757f8690959ea5afb7c1cacec5bcb3aaa29fa2aaaeb3bcc3ccd2ccc3bdb5aea7a099928d847d766e6a605d56514b454039342e271e150b0000000000000000000000000008131e29323a45515c676e7a849198a2aab3bcc5cdd6dcd4ccc4bcb4aea69e98928c857f7a75706d67666361605b535c5c5c5c5d565e61636567696e71757b80848c92989ea5aeb4bcc4ccd6d6cec4bbb1a79f948d80736a60544a3f34281f1409000000000000000000010c161f2b3844505b666f7c87929fa6b0bac4cdd7d2c7beb6afa59e9590857f79726d6664605d555958575758595a585f62656a6f747b818a92989fa7b1b9c2ccd5d9d0c6bcb1a79f92877c6f655b5044372b1f160b00000000000a1724313d4a5764707d86827e7a7673706d676866646362616161626264676a6f757c848f949ea7b1bbc5cfdbe6dfd5c9bdb2a8998c7f7266554c4135291d11040000000005121e2b37424d5764717e8a96a1acbac3cedbd9cfc7b9ada1978f81756c655c544b433e37322e2b262624242423292c30363b41495059616b727f8b929da9b3bec9d5dfe8e1d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000000000000000c18242f3844505c66717e8a959fabb8c2ccdbdcd1c6bdb0a69d9183786d60564c41342a2011080000000000000000000000000000000006111c26303b45505a606d7a849199a4afbbc3ced7d7cec2bbafa3999184796d605a50453b2f261b161616161616161616161616161616161616161616161616161616161616161616161616161616161613120f0b0600000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000004101c2934404b5565727f8b98a8b2bdc9d5ccc0b5ab978a7e74818d9aa7b4c0d1c5b8ab9e9285796c605346392d20131f2c3845515c677683909ca9b6c3d1cabeb3a9978a7d75828e9ba8b5c1d0c4b7aa9e918477695f53463a2d2114070000000000000000000000000000000000000000000000000000000002090e1214151c1514120f0a030000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c56626f7c88949fabb5c0ccd5cdc2b8afa59d928d827a706b62605853514a494645404342414142414547494e53575e616d727c838e939ea5afb8c2cbcec5bcb4aeacaeb4babec5ced0c7c0bbb1aba39f9590878079706c625f58524c454039342e28231c150c03000000000000000000000000030d1925303a44505a606d79839096a1aab4bcc5ced7dcd4cac2bab2aaa29f948f867f7a736d6864605c5556545350494f4f4f50504c52545658565e6164696e73797f868e939fa2aab2bac4cdd6d6cdc3b9b0a69f92877c6f665c50443b31261a0e02000000000000000008131e2935414c56606c78839099a3afb8c2ccd6d8ccc0b6aca49f938e837b726d67605c5453514b4d4b4a4a4b4c4d4e5355585f62696e757e8690959fa7b1bac3cdd6d7cec3bbafa3999083786c6053463d32271b1002000000000814212e3b4754616e7a7a75716d676663605d555a5856555554545556585860626a6f79828f959fa9b3becad6e0e5d9cec2b6a99c8f8376675d5145392c201306000000000714212d3a46535f6976828f9ca8b2bdccd5dcd1c7bdafa59e91857a6d615b534a4239312b27211e1a19181718181c1f252a2f383f444f59626d74818d97a1adb9c3ced9e5e1d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000004101d2935404b55606d7884919da7b1bccad4ded7cbbfb5ab9e94897d70665c50443a3022180e0000000000000000000000000000000000000a151e29333e45525d68707d87939fa7b1bcc6d0dbd7cbc0b5aba0968e81746c61574d41382d22170d090909090909090909090909090909090909090909090909090909090909090909090909090909060503000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000006131f2c3845515c6775828f9ca8b5c2ced4c7bbafa499897c727f8c98abb5c0cbc6b9ada197887b6f6255483c2d2217202d3a4753606d7986929facb9c5d2c6baada297887b737f8c99abb5bfcbc5b8aca096887b6e6155483b2f23180c000000000000000000000000000000000000000000000000000000050d141a1e20212822211f1a150e060000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e6875818e9ba6b0bdc7d1cfc5bbb0a69e938d80776d686059544e4644403c3a38342e3534342f35393a3c43474d535b626a6f79818e939ea6b0b9c2cdcec6bfbab8babfc6cad0cdc4beb6afa79f99928c837c736d67615a534e45413a342f28231d18120b03000000000000000000000000010b151f2a36414c56616c74818e959fa8b2bcc5ced7ddd4cac2b8b0a8a198928b827b736d68615e5653514b4a4846443f4342424344414647494b4d5254575e61666d727a818a9298a1a8b2bbc4ced7d5cbc2bbafa3999083786d60574d42362a1e120500000000000000010d19242f3945525d68717e8b959fabb5c0cad3d5ccc3bbafa49a938c81796e69605d55514a474540403f3e3d3e3f404347484e53575e616c717b8390959fa8b2bbc4cfdad7cbc0b5ab9f948a7d7164594f44382c1e1308000000000714202d3946525e686e6d6764605d555653514b4d4b494948474748494b4e545860676d79839097a2adb9c4cfdae6dfd2c5b9ac9f92867a6d6054473a2d211407000000000815222e3b4855616e7b87939facb9c4cedfd7cbc0b5ab9d928a7d70685e5249413830271f1b15120e090b0a070c1013191d262d333e47515b606d7a85929ea8b1bdc8d4e1e1d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000020d17202c3845515d67717e8b96a0acb9c3cddcddd3c7bbaea3998f82756b60544a3f32281e0f06000000000000000000000000000000000000030c18212935414c56606b73808d959faab4bfcad6dcd1c7bdb2a89d938a7e71695e53493f33271f150b0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000714202d3a4753606d7986929facb8c5d2d2c6b9ac9f93867a707d8999a3afbbc7c9beb3a9988b7f7265544a3f33281c23303d495663707c8998a3aebac7d2c5b8ab9f928579707d8999a3aebbc7c8bdb2a8988b7f7265554b4034291c100400000000000000000000000000000000000000000000000000060f171f252a2d2e352f2e2b2620180f0700000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c2cfd5c9beb3a99f948e81776c655e564f47433d38342e2d2c282329282824292c2d32373b424651585f676d78818f949fa7b1bcc7d3d0cac6c5c6cad0d6cac2bbb3aca49f9590877f786f6a605c555047433c352f29231d18120c07000000000000000000000000000007121d27313946525e68717e8a939ea7b1bac4ced7ded4cbc2b8b0a69f9691867e766e69605d56524c4745403d3b3937332d3536363036393a3c3e4246474d52545c60686e747e869196a1a9b2bcc5d0d9d7cbc0b5aba0958c7f72695f53463a2d2114070000000000000004111d2935414c56606d7a85929ea7b1bdc7d1d7cec3b9b0a69f93887f756d675e56514b44403a39352f323130313231373a3c43474d525a61696e79839096a0a9b3bec9d5dcd1c7bdb0a69d9083776b6054483a3025190d0100000005111e2a36414c565e61605d5553514b4a474540403e3d3c3b3b3b3b3c3e43474e555d676d7a85929ea9b2bdc9d5e1e0d3c7bbafa3998a7d7063574a3d3024170a00000005121e2a36424d576673808c9aa4afbbc8d4e0d4c7bbafa3998e81746b61564c41382f261e150d0a0602000000000004080b141b2227353f45525d68727f8b95a0acb8c5d1dee1d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000000000008141e2935414c56606d7984919ea8b2bdcbd4dfd5c9beb3a99f92867b6e62594f42382e20160c0000000000000000000000000000000000000000060f19242f3a444f59606d78839098a2aebac1ccd6d9cfc4baafa59f92857b6e655b50443c31271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000a1723303d4a5663707d8998a2aebac7d3d0c3b6aa9d9083776d7a86929facb9c5cfc2b5a89b8f8275665b5044382b1f2834404b5566737f8c99aab4bfcbcec2b5a89b8f82756d7a86929facb9c5cec2b5a89c8f8275675c5145382c1f13060000000000000000000000000000000000000000000000020a1117212930363a3b423b3a37312a2219110900000000000000000000000000000000000000000000000000000000000000000004101d2935404b5565727e8b99a3afbbc7d4d2c6b9ada1978f82786d655b534c443d38322c2823201f1c181c1b1b181d2021262b31363f464e555c666d78828f959fabb7c4d1dbd6d3d2d3d6d3cac1b8b0a9a19a938d837c736d666058514b433e373129241e18120c07000000000000000000000000000000000c18232f3943505a616d7a85929ea5afb9c2ccd6e0d5ccc2b9b0a69f9490847c716c615e57524c46413a38342f2e2d2b2722292929252a2d2e3030363a3b42464a51565e616c717c849196a1aab3bec7d2dcd1c7bdb1a79f92867b6e6155483b2e221508000000000000000613202c3945525d6873808d97a1adb9c3cfd9d0c5bcb1a79e938c80736d605d554d454039342e2c29242524242526262b2e31373b424650575f676d7a849197a1adb9c1cfd8d9cfc2b8ab9f95897c7063564c4135291d1105000000010d1925303b444c525454514b4745403d3a39352f31302f2e2e2e2f2f32373c434b555e68727f8c96a1adb9c5d2dfe3d7cbc0b5ab988b7e7165584b3e3225180b0000000714202d3a46525e697784909dacb6c0ccd8dfd2c5b9ac9f92877b6e61594f443a30261d150c0300000000000000000000020a1117232935414c56606d7884919daab7c3ced9e4d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000020e1925303945525d68727f8c96a1adbac3cedddcd2c6b9ada1978d8073695f53473d30261c0e0400000000000000000000000000000000000000000008131e28323d44515c666e7b86929fa5afbac4d0d9d6ccc0baada2978f82776c60584e43392f24180e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000005121e2a36424d576773808d9aaab4bfcad6cbbfb4aa998d8073677683909da9b6c3d2c5b8ab9e9285796c605346392d202c3845515c6776838f9ca9b6c2d1c9beb3a9988b7f72677683909ca9b6c3d0c5b8ac9f9285796d6053473a2d20140900000000000000000000000000000000000000000000050b141c2228333b4246484f4847433c342b231b1206000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d6776838f9cabb5c0cbd4c8bdb2a89e92857a6d665c5349413a322b271f1c181313100c070e070d1113141b1f252a343c434b545c666d7983909da9b6c3d0dce2dfdfdfd7ccc1b8b0a69f97918880786f6a605c544e454039312b262019130c07010000000000000000000000000000000004101c2934404b55616c75818f97a1adb7c1cbd4ded7cec3bab0a69f9490827a6f6a625a534d45413a36302c292321201f1b171c1c1d191d202123252a2d30363940444c525a616a6f7b849198a2acb6c0ccd8d9cfc3baaea2988b7e7165584b3e3225180b00000000000004101c2834404b54606d7a85929fa9b3becbd4d6cabfb4aaa0958f82776c605b514b433b352f2823201d1818171718191a1f21262b30363e454d555e686e7b85919ea6b0bdc6d1dcd4c8bcb1a79c8f8275685e5246392d2013070000000008141e29323b4146474745413a39352f2d2c29242523222221212223272b3139434c56606d7984919eabb8c4d1dee8dcd1bfb2a6998c7f7366594c403326190d0000000815212e3b4854616e7b8795a0acbec7d2ddd4c8bcb1a79b8f8275695e53473e32291e140b0300000000000000000000000000061119242f3a44505c66727f8c99a7b1bcc8d4e0d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000005111e2a36414c56606d7a85929ea8b2bdccd5e1d4c8bcb1a79e92857a6d60574d42352c1e150a00000000000000000000000000000000000000000000010c16202834404a545f69717e8b939ea8b2bec7d2ddd6cabeb3a99f948c7f726a5f554b40352920170d020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000714202d3a46525e697784919daab7c4d0d3c7baaea398897d706773808d9aabb5c0ccc6b9ada297887c6f6255493c2e232d3a4653606d7986929facb8c5d2c6b9ada197887c6f6673808c99aab4bfcbc6baaea298897d7063564a3d31251a0e020000000000000000000000000000000000000000060e171d262d333d454d52545b55534e463d352d2417110a020000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5d1d2c5b9aca0968b7f72685d544b41382f29201b16100c070604000001000104060a0b141d262d334049515a626c717e8a97a4b1bdcad7e4ecebdfd2c6bbb0a69e948f857d736d665f58514a423c342f271f1a150d08010000000000000000000000000000000000010c161f2c3845515c67717e8a939ea9b3bec9d2ddd9d0c5bcb1a89f949082796d685f585046423b352f2a251f1c181513120f0b060f080d11131416191e20252a2e343b4146505860696f7c86929aa4afbbc5cfdad6cabfb4aa988b7e7165584b3e3225180b00000000000006131f2c3845515c66727f8c98a2aebbc5cfddd3c6baaea2989183796d655b504540393129241d1813110d070b0a0b090f12151b1f252a333b434c565f69707d89939eabb5bfcbd7d8cdc3b9ac9f92867a6d6154473a2f24180d01000000020d1720293036393b3a39352f2c292420201d1818161615141415161b1f28313a45515c6774818d9aa7b4c0d0dbe6dacdc0b3a79a8d8074675a4d4134271a0e0000000b1825323e4b5865717e8b98a7b1bcd0d9ded1c5b8aca095897c7063574d42352c20170c0200000000000000000000000000000008131e28343f4a54616e7b8895a0acb8c5d1ded4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000000040e18222d3946525e6873808d97a2adbac4cfded8cfc6b8aca0958b7e72685d52453c31231a0c030000000000000000000000000000000000000000000000040d18232e39424d57626c75818f96a1acb6c0ccd8dbcfc5bbb0a69f92867c6f675d51453e32291e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000815212e3b4854616e7b8795a0acb8c5d1d2c5b9ac9f9286796d63707d8a99a4afbbc7cabeb3a9988c7f7265544a3f3428303c4956636f7c8998a3aebac7d1c5b8ab9e9285796c63707c8998a3aebac7cabfb4aa9a8d807367574d42362a1e1205000000000000000000000000000000000000020a111720292f383f444f575e6168625f584f473f3627221b140b0200000000000000000000000000000000000000000000000000000000000a1623303d495663707c8999a3afbbc7d3cabfb4aa9e9184796d60564c42392f261d170e0a0400000000000000000000030c151d262f383f44525b626c717e87929facb9c5d2dfecede9dccfc3b6aa9e938f827a706b605c544e4440393029231d150d09030000000000000000000000000000000000000008131e2935414b55606d7984919ea5afbbc5cfdbddd2c7beb4aaa0959082796d675e564e463e363129241e1913100c070605030000030001050707090e11141a1c232830363e464e575f6a707d88939fa9b3bec9d5dbd0beb1a4988b7e7165584b3e3225180b0000000000000713202d3a4653606d7984919eaab4becdd7d5c9beb3a99f92867b6e675d53493f352f271f18120c070401000000000002060a0f141a2129313a444d57606b75828f99a3aebbc7d2ddd3c7bbafa3998b7e7165554b4035291d110400000000050e171e252a2d2e2d2c2924201d181413110d070a09080808080a0d161f2934404b5564707d8a97a9b3becad6e2dbcec1b4a89b8e8175685b4e4235281b0f000004111d2935414c566875828e9ba8b5c1cedbddd0c3b7aa9d9083776b6054453b31231a0e0500000000000000000000000000000000010b17232e3847535f697783909daab7c3d0ddd4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000a15202a36424d57616e7a86929fa9b3beccd6dcd1c6bdafa59d9083786d60564c41332a2011080000000000000000000000000000000000000000000000000007121c27303c45505a616d7a84919aa4afbbc3ced8d7cdc2baaea3999183796d60594f443a3025190f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000003101c28343f4a5465717e8b98a7b1bcc8d4cfc2b6a99c8f827667606d7a86939facb9c6cfc2b5a89c8f8275665c5044382b34404b5466737f8c99aab4bfcbcec1b5a89b8e827565606d7986929facb8c5d0c4b7aa9d918477695e53463a2d2114070000000000000000000000000000000000040b141b2227323a424a505960696e756e6a6059504840332d261d140b03000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99abb5c0cbd3c7baaea2988a7e71665c51443a30271d140b050000000000000000000000030c151e272f384149505b636d727f879299a3aebbc7d3e0dfe0e3dbcec2b5a89b8f82786d686059514a423c342e271e18120b030000000000000000000000000000000000000000010d19242f3945515d67727f8c96a1adb7c1cdd7e1d8ccc0b6aca2989183796d675d554c443c342a251f19130d080400000000000000000000000000000205090e12181e252a343c454e58606b74818e97a1adb9c6d2d7cbbeb1a4988b7e7165584b3e3225180b000000000005111e2a36414c5664717e8b96a1adbcc5d0dfd2c6b9ada1978c7f73695f554b41382d241d150d0701000000000000000000000002090f181f29323b454f59626e7b86929fabb5c0ccd7d7cbc0b5ab9c8f8276675d5145392c2013060000000000050d14191e202121201d1813110d070604010000000000000000040d18232f3a4753606d7a8697a2adbac6d3dfdccfc2b6a99c8f8376695c504336291d1000000613202c3945525d687784919eaab7c4d1ddd6cabfb4aa988b7f7265594f4433291f110800000000000000000000000000000000000006111c2b37424d576773808d9aa6b3c0cdd9d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000030f1b26323a46535f6974818d98a2aebbc5cfdfd7cbbfb4ab9e93897d70665c50443a2f21180e0000000000000000000000000000000000000000000000000000000b151e2a333f46525d68707d88939fa7b1bcc6d0dbd7cbbfb4aba0958d80746b61564c41362a21180c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000006121f2c3844505c6675828e9ba8b5c1ced6cabeb3a9998c7f72665d687783909daab6c3d2c5b8ab9f9285796d6053463a2d3845515c6676828f9ca9b6c2d0c9beb3a9988b7e72655c6776838f9ca9b6c2d0c5b8aca095877b6e6154483b2e23180c00000000000000000000000000000000040e161d262d333d444c545b606b707b827c706b625a52443f382f261d150c030000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1d1d2c5b8ac9f9286796d60544a4032281e150b020000000000000000000000030c151e273039424a535b606d737f8b9399a3abb5bfcbd7d4d2d4d7ddd1c5b8ab9e9285796d60564f4440393028231c150c070100000000000000000000000000000000000000000004111d2935414c56606d7a85929ea8b2bdc9d3dfdcd4c8bbafa49a92867c6e675d554b433a322a221a140d08010000000000000000000000000000000000000000070c1419222b333c464f59606d7a85929eabb8c5d1d7cbbeb1a4988b7e7165584b3e3225180b00000000000714202d3946525e6876828f9ca9b2bdced7d5c9bdb2a89e9285796d60574d433a2f261b120b03000000000000000000000000000000060d172029333d47535f6974808d99a4afbbc7d4dcd1c5b9ac9f92867a6d6053473a2d20140700000000000002080d1114141413110d070401000000000000000000000000000713202c3945515d677885929fabb8c5d2deddd0c3b6aa9d9083776a5d5044372a1d1100000714212d3a4754606d7a86939facb9c6d2dfd3c6baaea298887c6f6255493d3222170d00000000000000000000000000000000000000000e1a26313f4c5965727f8c98a5b2bfcbd8d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000006131f2b37434e58616e7b86929faab4bfcdd7ddd3c7baaea3998f82756b60544a3f32281e0f06000000000000000000000000000000000000000000000000000000030c18212935414c56606b73808d95a0aab4bfcad6dcd1c6bdb1a79d928a7d70685e52463f332a1e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000713202d3a4653606d7985929fabb8c5d2d3c6baada297897c6f62566774808d9aacb6c0ccc6baada297887c6f6255493c2e3a4653606d7985929facb8c5d2c6b9ada197887b6e625566737f8c99aab4bfcac8bdb1a8988b7e7265544b4034281c10040000000000000000000000000000020c1620282f383f444f565e666c737d858e857d716c635c504941382f261e150b020000000000000000000000000000000000000000000000000003101c28343f4a546a7683909da9b6c3d0cfc2b5a89c8f8275675d5142392e20160c030000000000000000000000030c151e273039424a545b656c73808c919fa4abb5bdc6d1ccc7c6c7ccd2d2c6b9ada1978b7e71655b5044372e271e18120b0300000000000000000000000000000000000000000000000613202c3945525d68737f8c97a1adbac4cfdbded5c9beb3a99f93887e706a5f554c433a31282018100903000000000000000000000000000000000000000000000002081019212a343d45525d68727f8c98a5b2bfcbd7cbbeb1a4988b7e7165584b3e3225180b00000000000814212e3b4754616e7a86929facb9c4cfdfd2c5b9aca0968b7f72675d51453c31281d140a010000000000000000000000000000000000050e17212b37424d57616e7a87939facb9c6d2dfd3c7bbafa399897c706356493d30231607000000000000000001050708070604010000000000000000000000000000000004111d2935404b556a7784919daab7c4d0ddddd0c3b6aa9d9083776a5d5044372a1d1100000a1623303d495663707c899aa4afbbc8d4dfd2c5b8ac9f9285796d6053463a2d2013070000000000000000000000000000000000000000091724313e4a5764717d8a97a4b0bdcad7d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000020b1a232e3b47535f6a75818e99a3aebcc6d0dfd5c9beb3a99f92867b6e61594f42382e20160c0000000000000000000000000000000000000000000000000000000000060f1924303a444f59606d79839098a2aebac1cdd6d8cfc3b9aea49e91857a6d615b51453c30271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000091623303c4956636f7c8997a2adbac6d3d2c5b8ab9f9285796d605764707d8a9aa4afbbc8cabeb3a9988c7f7265544a3f343c4956636f7c8998a2aebac6d1c4b8ab9e9185786a5f56636f7c8998a2aebac6cec2b5a89b8f8275665c5145382c1f1306000000000000000000000000000008131e28323a4149505960686d788087929792877e736e605b534a423830261d140a0000000000000000000000000000000000000000000000000006121f2c3844505c667885929eabb8c5d1cbbeb1a4988b7e7165554b4030271c0e040000000000000000000000030c151e273039424b545c666c77808c929ba3afb5bdc6cfc7c0bbb9bbc0c7d0c9beb3a99d9184786c6053463d32271b0c07000000000000000000000000000000000000000000000000000714212d3a4754606d7a85929fa9b3beccd6e0d8cdc6b9ada1978e81746c61574e433a31281f160e06000000000000000000000000000000000000000000000000000000070f18222935414c5664717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0000000005111e2a36424d5665727f8b99a3afbbc7d4d7cbc0b5ab9e9184796d60554b40332a1f160b0200000000000000000000000000000000000000060f1a26313c46525e687683909da9b6c3ced9d7cbc0b5ab998c7f7366594c402f24180c0000000000000000000000000000000000000000000000000000000000000000010d18242f43505d697683909ca9b6c3cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000c1925323f4c5865727f8b98acb6c0ccd8dccfc2b6a99c8f8376665c5044382c1f12060000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000a141d2c38444f59626f7c87939fabb5bfced8dbd2c6b9ada1978d8073695f53473d30261c0d0400000000000000000000000000000000000000000000000000000000000008131e28323d45515c666e7c86929fa6b0bbc4d0d9d5cbc0b9ada1978f82756d62574e42392e23180e0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000005111d2a36414c566673808c99a9b3becad6cec2b5a89b8f8275665c54616d7a86939facb9c6d0c2b5a89c8f8275665c5044383f4a5466727f8c99aab4bfcacec1b4a89b8e8175685753606d7985929facb8c5d2c5b8ac9f9285796d6053463a2d20130900000000000000000000000000010d1924303a444c535b606b6f7a828c9399a199928b80746c655b544a42382f261c11060000000000000000000000000000000000000000000000000713202d3a4653606d798697a1adb9c6d2cabfb4aa95887b6e6255483b2f22150b0000000000000000000000030c151e273039424b545c666d78818d929ca4adbbc0c7ccc3bdb5afacafb5bdc7d0c5b8aca0968a7d7063584e43372b1c110600000000000000000000000000000000000000000000000007131f2c38434e5865727f8b98a2aebbc5cfdedfd3c7bbb0a69e91857a6d605a50453c31281f160d05000000000000000000000000000000000000000000000000000000000006101924303e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b000000000714202d3a46525e697683909cabb5c0cbd7d3c7bbafa3998b7e72665c51433a2f21180d0400000000000000000000000000000000000000000009151f2a36414c5666727f8c99a8b2bdc9d5dcd1c2b5a89c8f827569554b4035291d10040000000000000000000000000000000000000000000000000000000000000000071c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100010d1a2734404d5a6773808d9aa6b3c0d2ddd9ccbfb3a6998c807366544a3f34281c100300000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000006111c262f384854606b75828f9aa4afbdc6d1e0d4c8bcb1a79e91857a6d60574d42352b1e140a00000000000000000000000000000000000000000000000000000000000000020c16202834404b545f6a727e8b939ea9b2bec7d2ddd5c9beb3a99e948b7e726a5f544b40342820160c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000713202d3946525e687783909daab6c3d0d5c9bdb2a8988b7e726554525d687784909daab7c3d0c5b8ab9f9285796d6053463a44505c6676828f9ca9b5c2d0c9bdb2a8988b7e716558515c6676828f9ca9b5c2d0c6baaea298897d706356493d31251a0e0200000000000000000000000004111d2935414c565d656c727d848f949fa4aba39f928c80776c665c544a42382d2217130a00000000000000000000000000000000000000000000000714212d3a4754606d7a8793a9b3bec9d3c7baaea298877a6d6054473a2d21140700000000000000000000030c151e273039424a545c666d78818e939da4adb6bfcccbc3bab2aba49fa4abb5bdc7c8bdb2a89c9083766a605447382e23170b0000000000000000000000000000000000000000000000000915222e3b4854606a7783909daab4becdd7e1ddd0c4b7ab9f948a7e71685d52483e332a1f160d0400000000000000000000000000000000000000000000000000000000000000081825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b000000000814212e3b4754616e7b87939facb9c6d1dcd2c5b9ac9f92867a6d61544a4031281d0f0600000000000000000000000000000000000000000000030d1925303c4855626f7b8896a0acb9c5d2ded1c4b8ab9e918578675d5145392c1f13060000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100020f1c2835424f5b6875828e9ba8b5c1cedbd6c9bdb0a3968a7d7063574a3d2e23170c0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0808080808080808080b17222d3842505a63707d89949eacb6c0cfd8d8cec6b8aca0958b7e71675d51453b3123190c020000000000000000000000000000000000000000000000000000000000000000040e18232e39424e57626d75828f97a1acb6c0ccd8dacfc4bbb0a69f92867c6e665c51453d32281e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000714212e3a4754616d7a87939facb9c6d2d2c5b9ada196887b6e62554c566774818d9aa7b4c0cec6baaea298897c6f6256493c4653606d7985929facb8c5d2c5b9ada196887b6e61554a5466727f8c99aab3becacabfb4aa9a8d807367574d42362a1e12050000000000000000000000000713202c3945525d686d777f8791969fa6afb5aea49c928d81786d665c544a3f3328251b1208000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbacfd2c5b8ac9f928579675d5145392c201306000000000000000000030c151e273039424a545c666d78818e939da5aeb6bfc8cbc2b9b1a8a0999399a4abb5c0ccc3b7ab9f94897c6f62544a3f34281c10030000000000000000000000000000000000000000000004111d2935404b55626f7c8995a0acbcc5d0dfdfd3c7bbb0a69c8f82766c61564c41362c21180d0400000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b000000000b1824313e4b5764717e8a9aa4afbbc8d4d7cbbfb5ab9c8f8276685e5242392e1f160c0000000000000000000000000000000000000000000000000815212e3a47535f6a7784919eaab7c4d1ddd2c6b9ada197867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110003101d2a3643505d697683909ca9b6c3cfdcd5c8bbaea295887b6f6255483c2f2215060000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f32261915151515151515151515151c28333f4a54616c7683909da6b0bec7d2dcd0c6bcafa59d9083786c60554c41332a1f11070000000000000000000000000000000000000000000000000000000000000000000007121d27303c45515b616d7a85919aa4afbbc3ced8d6cdc1baaea2989083796d60594f443a3024190f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000030f1b27333f495364717e8a9aa4afbbc8d4d1c4b7ab9e918478695f534a5764717d8a97a8b1bdc8cabeb4aa998c7f7266544a404956626f7c8998a2aebac6d1c4b7ab9e918478695f534956626f7c8998a2aebac6d0c3b7aa9d908477695e53463a2d2114070000000000000000000000000714212d3a4754606d7a828c9299a1a9b0bbbfbbaea49d938e81786d665b504440372d241a10060000000000000000000000000000000000000000000815212e3b4854616e7b8794abb4bfcbd1c4b7aa9e9184776b554c4135291d11040000000000000000030c151e273039424a545c666d78818f939ea5afb7c0c8cac2b9b1a7a09691869399a4afbbc7c7bbb0a69a8e8174665c5044382b1f1206000000000000000000000000000000000000000000000613202c3945515d6774818e9ba7b1bcced7e2ddd0c4b7ab9f94897d70635a50443a2f231a0f060000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00000005111e2a36424d576774818e9aacb6c0ccd8d3c7bbaea3998b7e7165564c4130271c0d0400000000000000000000000000000000000000000000000006121f2b37434e586874818e9ba7b4c1cedad5c9beb3a995887b6e6255483b2f2215080000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110005121e2b3845515e6b7884919eabb7c4d1ded7cbbfb4ab94877b6e6154483b2e2115080000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226212121212121212121212121212b3844505b66707d8a959fabb8c1d0d9d6cbbfb4aa9e93897d6f665b50433a2f21180e0000000000000000000000000000000000000000000000000000000000000000000000000b151e2a333f46525e68707d88939fa7b1bcc6d0dcd6cabfb4aaa0958d80736b60564c41352921170c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000005121f2b3744505b6574818e9bacb6c0ccd8cec1b4a79b8e817468574d4754616d7a8795a0acb8c5d0c2b5a99c8f8276665c51444a5466727f8c99aab4bfcacec1b4a79b8e817468574d4653606d7985929fabb8c5d2c5b8aca095877b6e6154483b2e23180c0000000000000000000000000814212e3b4754616e7a8390949ea6afb7c0cbbfb6aea59d938e81786c605c52493f362c22180e0500000000000000000000000000000000000000000714212d3a4754606d7a8799a3aebac7d0c4b7aa9d9184776a544a3f33281c0f0300000000000000020b151e273039424a545c666d78818f939ea6afb7c0c9c9c1b8b0a79f9590847c87939facb9c4cdc2b8ab9e9285796d6053463a2d20130a000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb8c3cedfe1d4c8bdb2a89c8f82766b6054483e32281e1108000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0000000714202d3a46525e697784919eaab7c4d2ddd2c5b9ac9f92867a6d6054473a3021150b00000000000000000000000000000000000000000000000000030f1a26313f4c5966727f8c99a5b2bfccd8dacfbdb0a3968a7d7063574a3d3024170a0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110006121f2c3945525f6c7885929fabb8c5d2ded3c7baaea399867a6d6053473a2d2014070000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f322518090000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f322e2e2e2e2e2e2e2e2e2e2e2e2e2e34404b55606c7883919da7b1bccad3ddd3c7baaea3988e81756b60544a3f31281e0f06000000000000000000000000000000000000000000000000000000000000000000000000030c18212a36414c56606b73808d95a0aab4bfcbd6dbd0c6bcb1a79f93877d70685d52453e33291e140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000613202d394653606c7885929eabb8c5d2d4c8bcb1a7978a7e7164574b46525e687784919daab7c4d0c5b8ac9f9285796d605346505c6675828f9ca8b5c2d0c9bdb2a8978b7e7164584b44505c6675828f9ca8b5c2cfc8bcb1a7988b7e7165544a4034281c100400000000000000000000000714202d3946525e686e7a828f949ea5aeb6c0c8c0b7afa59e938d80746e635b51483e342a20170c03000000000000000000000000000000000000000613202c3945525d687986929facb9c5d1c5b8ab9e928578665b5044382b1f1206000000000000000a141d263039424a545c666d78818f939ea6b0b8c1c9c9c0b7afa69f9590837a75828f9ca8b2bdc9c6b9ada197897c706356493d32261b0f030000000000000000000000000000000000000000030f1b27333f495364707d8a98a2aebac7d3e0ded1c5b8aca096897d7063594f44362c20160c00000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0000000814212e3b4754616e7b8796a0acb9c5d2dccfc2b5a99c8f8276685d5245392c20130300000000000000000000000000000000000000000000000000000a1724313e4a5764717d8a97a4b0bdcad7d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110005121f2b3744505b657985929facb8c5d2dfd2c5b9ac9f928679675d5145392c1f13060000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f30251a0e0300000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b45515c67717e8b95a0acb9c2cddcd5c9bdb2a99f92867b6e61594f42382d1f160c0000000000000000000000000000000000000000000000000000000000000000000000000000060f1925303a444f59606d79839098a3aebac1cdd6d8cec3bbafa49991847a6d605a50453b30261c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000916222f3c4955626f7c8897a1adb9c6d2d1c5b8aca095877a6e615447414c566774818d9aa7b4c0cec6baaea298897c6f63564953606d7985929fabb8c5d2c5b9aca096877b6e6154483f4a5465727f8c98a9b3becacec2b5a89b8f8275665c5144382c1f1206000000000000000000000005111e2a36414c565e686d79828e939da4aeb6c0c9c0b7afa59d928d80736d625a50463c32291e150b0000000000000000000000000000000000000004111d2935414c566b7885919eabb8c4d1c6b9ac9f9386796c605346392d20130700000000000006111c262f38424a545c666d78818f939ea5afb8c1cac8c0b7afa59e948f827a6e707d8a96a0acb9c6c9beb3a99a8d807467584e43372b1f1306000000000000000000000000000000000000000005121f2b3744505b6574818e9aaab4bfcad6e2d7cbc0b5ab9d9184776b6054473d32241a0d0400000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0000000b1824313e4b5764717e8a97a8b2bdc8d4d9ccc0b3a6998d807366564c4135291d11040000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5d8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000613202d394653606c7986939facb9c6d2ded1c4b8ab9e9185786b554b4035291d10040000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265574d42362a1f140900000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c48484848484848484848484848484848484b55606d7984919ea7b1bccbd4dbd2c5b9ada1968c8073695e53473d2f261c0d0400000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d45515c676f7c86929fa6b0bbc5cfdad7ccc0b5aba1968e81756c61574d42382e23170d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000004111d2935414c5566727f8c99a9b3bec9d5d0c3b7aa9d908477685e52463e4b5764717e8a97a8b2bdc9cabfb4aa998c7f7366554b56626f7c8998a2aebac6d1c4b7aa9e918477695e53463c4955626f7c8897a2adbac6d2c5b8ab9f9285796d6053463a2d2013090000000000000000000000020e1925303b444c565d676d78818d929da4aeb7c1c9c1b7aea49c928c7f726c61584e443a30271c1207000000000000000000000000000000000000010d19242f44515d6a7783909daab7c3d0c7bbafa499887b6e6155483b2e23180c00000000000a1317222d38424a545c666d78818f939ea5afb8c1cac8c0b6aea59d938f82796d686c7884919eabb4bfcbc4b7ab9e9184786a5f53473b2e21150600000000000000000000000000000000000000000613202d394653606c7885919eabb8c4d0dbe0d4c7bbafa3998c7f7266594f44352b2112080000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0000010d1a2734404d5a6773808d9aa6b3c0ced9d7cbbfb4ab978a7e7164574b3e3024190d0100000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbc8d5d9ccbfb2a6998c7f7366594c403326190d0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000714202d3a4753606d7a869aa4afbbc8d4ddd0c4b7aa9d9184776a5e51442f24180c000000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000b17222d38414f5963707d8996a3b0bcc9d6e3dacdc0b3a79a8d8074695e52463b31261a0e03000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f726559545454545454545454545454545454545454545d67727f8b96a1acb9c3ceddd4c8bcb1a79e9184796d60574d42352b1d140a00000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202834404b555f6a727f8b949ea9b3bec9d5ddd2c7bdb2a89e938b7e71695f544a3f34281f160c0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000613202c3945515d677683909ca9b6c3cfd7cbc0b5ab9a8d807467564d413b4754616e7b8796a0acb9c5d0c2b6a99c8f8376675c515465727f8c98aab4becacdc1b4a79a8e817467574d42394653606c7985929fabb8c5d2c6baaea298897c706356493d30251a0e02000000000000000000000008141e29323b434c555d666d77808d929da5afb8c2c9c0b6aea49f93887e706a5f564c42392e23180e05000000000000000000000000000000000000081b2835414e5b6874818e9ba7b4c1cfccc0b5ab978b7e7164554b4034281c100400000009121c2528333f4a545c666d78818f939ea5afb8c1cac8bfb6aea49d938e81786d675d66727f8c99a3aebac7c5b9aca196887c6f6255493c2e23170c00000000000000000000000000000000000000000916232f3c4956626f7c8997a1adb9c6d2e2dfd2c5b9ac9f92867b6e6154473d3321190f000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b000004111d2935404b556975828f9ca8b5c2cfdbd3c7baaea399887b6f6255483c2f2215080000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a1aebbc8d4d9ccc0b3a6998d8073665a4d4033271a0d0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000714212d3a4754606d7a8793a0b5c0cbd7ddd0c3b7aa9d9084776a5d51442e23180c000000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000060f1b27333f4953616c7683909da9b6c3d0dce9dfd2c5b8ac9f92867b6e61574d42362a201509000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f72656161616161616161616161616161616161616161616d7a85929ea8b2bdcbd5d8cec6b8ab9f958b7e71675d51453b3123190b020000000000000000000000000000000000000000000000000000000000000000000000000000000000050e18232e39434e58626d75828f97a1adb9c0cbd5d9d0c4baafa59f92867b6e665c50443d31281d130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000714212d3a4754606d7a86929facb9c5d2d3c7bbafa3998a7d7063574a3d3a46525e697784919eaab7c4d1c5b8ac9f9286796d60535b6675828f9ca8b5c2d0c8bdb1a8978a7e7164574b3e3844505b6675828f9ba8b5c2cfcabeb4aa998d807366574d42362a1e11050000000000000000000000020d172029313a434b545c656c74808d939ea6b0b9c3c8bfbbafa49a92867c6f685e544a40342820170d0200000000000000000000000000000000000b1825313e4b5864717e8b97a8b2bdc9d2c1b4a79b8e8174675c5145382c1f150b010008121b242e373f44505b666d78818f939ea5afb7c1cac8bfb6aea49c928d81786d665d55616d7a86929facb9c5c9bdb2a8998c807366544a3f34281c1003000000000000000000000000000000000000030f1b27333f49536673808c99a9b3bec9d5e1dccfc2b5a99c8f8276685e5246392d201407000000000000000000000000000000000000000505050505050505050505050505050505050b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00000613202c3945515d677884919eabb7c4d1ded2c5b9ac9f9286796d6053463a2d2013070000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8894a1aebbc7d4dacdc0b4a79a8d8174675a4e4134271b0e0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000713202d3a4653606d798699a3afbbc7d3ded1c4b7ab9e9184786b554b4034281c10040000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000c171f2b3744505b65707d8a959fabb8c4d1ddeae0d3c7baaea3988d8174695f53463c31261a0e040000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f726e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e73808c97a1adbac4cedbd0c6bcafa59d9083786c60554b4033291f140d0600000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303c46515b616d7a85929ea4aeb9c3cfd8d6ccc1baaea2989083786d60584e433a2f24180e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000a1724313d4a5764707d8a99a3afbbc7d3d2c5b9ac9f92867a6d6054473a36424d576774818e9aa7b4c1cec7baaea398897c706356606c7985929fabb8c5d2c5b8aca095877a6e6154473b333f4a5465727f8b98a9b3bec9d0c3b7aa9d908377695e52463a2d201406000000000000000000000000050e171f283139424a535b606c77818e949fa7b1bbc4ccc0b6aca29891847a6d665c51443d32291e130800000000000000000000000000000000000815222e3b4855616e7b8896a1adb9c5d1c5b8ab9e9285796d6053463e31271d120708111a242d363f49525c606c78818e939ea5afb7c1c9c8bfb6ada49c928d80776d665c54525e6875828f9ba8b5c2cec3b6a99d908376665c5044382c1f120600000000000000000000000000000000000005121f2b3744505b6576828f9ca9b6c2cfdae1d4c8bdb2a8988b7f7265564d41362a1e110500000000000000000000000000000105090b0b111111111111111111111111111111111111111825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00000714202d3a4753606d7a86939facb9c6d2ddd0c3b7aa9d908377665c5044382c1f12060000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbc8d5d9cdc0b3a69a8d8073675a4d4034271a0d0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110006121f2c3844505c667986929facb9c5d2dfd2c5b8ac9f928579675c5145382c1f13060000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54606c7883909da7b1bcc8d4e0ece3d6cbbfb4aa9f92867b6e61574e42372b20150a0000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd9ccc0b3a6998d807b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c86929fa9b3beccd6d6cabfb4aa9e93897c6f655b504339322a261f170f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e2a343f46525e68707d8a929da7b1bcc6d1dcd6cabeb4aa9f948c7f736a60554b40352920170b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000006121e2b37424e576774818d9aabb5c0cbd7cfc3b6a99c908376675d514539303e4b5864717e8b97a8b2bdc9cbbfb4aa998c80736655626f7c8897a2adbac6d0c4b7aa9d918477685e5246392d3c4855626f7b8897a1adb9c6d1c5b8aca095877b6e6154473b2e23170c00000000000000000000000000050d161f2730384149505b656d79829095a0a9b2bcc5c7beb4aaa1969082786d60594f443a3025190e04000000000000000000000000000000000714212d3a46535f697884919eabb7c2cdc6b9ada1978a7e71645a5043392f241810101a232c363f48515b636e74808d939ea5afb7c1c9c7bfb6ada49c928c80736c655c544b4c5665727f8b98a8b2bdc9c5b9ac9f9286796d6053463a2d2013070000000000000000000000000000000000000613202d394653606c7985929fabb8c5d2deded2c5b8aca096887b6e6155483b3025190e0200000000000000000000000000060c111517181e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e25313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00000916232f3c4956626f7c899aa4afbbc8d4dbcec2b5a89b8f827568574d42362a1e1205000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5d9ccbfb3a6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110003101c28343f4a5f6c7885929fabb8c5d2ded3c6baaea29886796d6053463a2d2013070000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c66717e8a95a0acb9c2cdd8e4f0e7dcd0c6bbaea3998e81746a5f53473c32261b0f0400000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc1b4a89c928d8787878787878787878787878787878787878787878787889298a2aebbc5cfded3c6baaea2988e81756a60534f47433d3631292117110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000030c18222a36414c56616b74808d95a0aab4bfcbd7dbd0c5bcb0a69f92877c6f675d51453e33291d140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000814212e3a47535f6a7884919eabb7c4d1d6cabfb4aa998c807366554b41352e3b4854616e7b8796a1acb9c5d0c3b6a99c908376675d65727f8c98a9b3becaccc0b6ac9a8d817467564d41362d394653606c7985929eabb8c5d1c8bcb1a7988b7e7165544a3f34281c100300000000000000000000000000040d151e262f383f49535c676d7a839197a1aab4bfcac6bcb2a89f948d80736b60564c41362a20160c0200000000000000000000000000000005121e2a36424d576774808d9aa6b0bbc7cabeb3a99d9083766c61554b403529221819222c353e48515b636d73808d929da5afb7c1c9c7bfb5ada39c928c80736e605b534a424855626e7b8896a1adb9c5c7baaea398887b6f6255483c2f2215060000000000000000000000000000000000000815222e3b4855616e7b8897a2adbac6d3dfddd1c4b7aa9e918477695f53463a2d1f1408000000000000000000000000000911171d2124252b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00000b1825313e4b5864717e8b97acb6c0ccd8ddd1c4b7aa9e918477695e52463a2d2014070000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad7d8ccbfb2a5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000c17232e45525e6b7885919eabb8c4d1ded6cabfb4aa94877a6e6154473b2e2114080000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000004101c2834404b55606d7884919ea7b1bccbd4dfe9f5ede2d7cbbfb5ab9f92877b6e62584e43372b20160a00000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbddd0c4b9aea49c999494949494949494949494949494949494949494949494959fa2aab4bfcdd7dfd2c5b8ac9f92857b6e67636059544e46423b3328231c140c030000000000000000000000000000000000000000000000000000000000000000000000000000000006101925303a444f59606d79839098a3aebac2cdd6d7cec2bbafa3999184796d605a50453b2f261b110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000815222f3b4855626e7b8896a1acb9c5d2d3c6baaea298897c6f6356493c2f2d3a46535e697884919eabb7c4d1c5b9ac9f9286796d606675828f9ba8b5c2d0c8bbafa49a8a7d7164574a3e302b3744505b6575828e9ba8b5c1cfcec1b5a89b8e8275665c5044382c1f12060000000000000000000000000000030c151d262d38414b555d686e7b859198a2aebac1ccc4bab0a69f93887d70685e52463e32281e1308000000000000000000000000000000020e1a26313b4855626e7b88949fabb7c3cec5b8ab9f958a7e71675d51453e342a21212b343e47505a626d727f8c929ca4aeb7c1c9c7bfb5ada39c918c80736e635c5049413847535f6a7884919eabb8c4cbbfb4aa978b7e7164584b3e2d22170b0000000000000000000000000000000000000b1724313e4a5764717e8a97a9b3becad6e2dacdc0b3a79a8d807467574d42362a1e0d0200000000000000000000000009121b22292e3132383838383838383838383838383838383838383838383e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00000c1926333f4c5966727f8c99a5b2bfd2ddded2c5b9aca096877b6e6154483b2f24180d000000000000000000000000000000000000000000000000000004101c2834404b546673808c99a6b3bfccd9d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000061e2a3744515d6a7784909daab7c3d0dddbd0bbaea195887b6e6255483b2f2215080000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000010c16202c3845515c67717e8b96a0acb9c3cedde6f0f7f3e7dcd1c6bbafa3998e81756a5f53473d32271b0f04000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe1d5cabfb6aea8a6a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a2acaeb4bcc5d0dfded1c4b7ab9e91847e7974706b626058534d453e342e261e150c030000000000000000000000000000000000000000000000000000000000000000000000000000000008131e29323e45515c676f7c86929fa6b0bbc5cfdad7cbc0b5aba0968e81746c61574d41382d22170d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000004101c2934404b5565727f8b98a8b2bdc9d5d2c5b8ac9f9285796d6053463a2d2a36424d576874818e9ba7b4c1cfc7baaea399897d70636c7985929fabb8c5d2c6b9ac9f93867a6d6154473a2e27333f495365727e8b98a9b2bdc9d2c5b8ab9f9285796d6053463a2d201308000000000000000000000000000000030b141b262f39434c565e696f7c86929fa5afbac4ccc2bbafa49a91857a6d615a50443a3025190b020000000000000000000000000000000914212e3a47535f6976828f9ca7b1bcc8c8bcb1a79e9184796d605a50463c332a2a333d474f59616c727f8b919ca4aeb6c0c9c7bfb5ada39c918c7f736d635c52443f3837424e576874818e9ba7b4c1cfc0b3a79a8d807467544a3f33281c0f0300000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0d0dbe3d6cbbfb4aa978b7e7164584b3e31261a0e02000000000000000000000006111b242d343a3d3e44444444444444444444444444444444444444444444444b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00010e1a2734414d5a6774808d9aa7b3c0cddae1d4c8bdb2a8978b7e7164554b4035291c11060000000000000000000000000000000000000000000000000006131f2c3845515c6675828f9ba8b5c2cedbd8ccc0b6ac978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100030f1c2936424f5c6975828f9ca8b5c2cfdbd6c9bcafa396897c706356493d302316090000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000008131e2935404b55606d7984919ea8b2bdcbd5dfedebeaecede3d7cbc0b5ab9f93877c6f62584e43372b21160b000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe7dcd1c8bfb9b4b3aeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeb8babfc5ced7e2ded2c5b9aca196918b85817d766f6a615f5750443f3830271e150b02000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202934404b555f6a727f8b949fa9b3bec9d5dcd1c7bdb2a89d938a7e71695e53493f33271f150b010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000006131f2c3845515c6776828f9ca9b5c2cedacfc2b5a89c8f8275665c5144382c25313e4b5865717e8b98a8b2bdc9cbbfb4ab998c8073666f7c8897a2adbac6d0c3b7aa9d908377685e5246392d222d3b4855626e7b8896a1adb9c5d2c6baada297897c6f6356493c3025190e02000000000000000000000000000000020a141d27303a444d575f6a717e8b939ea8b2bec7ccc0b6aca1978f82756c61564c4135291d140a00000000000000000000000000000006121e2b37424d5764717e8a95a0acb8c1cec2b9aca1968d80746c61584e453c33323c454f59616b717e87939fa3adb6c0c8c8bfb5ada39b918c7f736d635b524a40332d313e4b5764717e8a97a8b2bdc9c3b6a99c908376665b5044382b1f120600000000000000000000000000000000030f1b27333f49536976828f9ca9b6c2cfdce0d3c7baaea398887b6f6255483c2f2215090000000000000000000000010c17222d363f454a4b5151515151515151515151515151515151515151515151515864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00020f1c2835424f5b6875828e9ba8b5c1cedbe5d9cec1b4a79b8e8174675d5145382e23170c010000000000000000000000000000000000000000000000000713202d3a4653606d7985929fabb8c5d2ded4c8bbafa49a887b6f6255483c2f2215090000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100010e1b2734414e5a6774818d9aa7b4c0cddad8cbbfb2a5988c7f7265594c3f31261a0e0200000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000010d19242f3945515d67727f8b96a1adbac3cedde5e1dedddfe0e3dcd1c7bbafa49a8f82756a6054473d32271b10050000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe7e3dad1cac4c1c0babababababababababababababababababababababababbc5c6cad0d7e0e9e1d5c9bdb2a8a19e98928e89827c756e69615a504a423930271d140a00000000000000000000000000000000000000000000000000000000000000000000000000000000050e18232f39434e58606c77828f97a1adb9c0ccd5d9cfc4baafa59e92857b6e655b50443c31271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000714202d3a4753606d7986929facb8c5d2d5c9beb3a9988c7f7265544a403428222e3b4855616e7b8896a1adb9c5d1c3b6a99c90837667727f8b98a9b3becaccc0b5ab9a8d807467564c41362a212e3a47535f697884919eabb8c4d1cabeb3a9998d807366564c41362a1e110500000000000000000000000000000000020b151e28323b454e58626c75818e96a1acb6c0ccc7beb3a99e948a7e71685e52463d2f261b11060000000000000000000000000000020e1a26313c4653606d7883909da5afbcc6c9bdb2a89d928a7e716a5f574d453d3b444e57606b707d879299a4afb5bfc8c8bfb6ada39b918c7f726d635b5249403727222e3b4754616e7a8796a1adb9c5c5b8ac9f9285796c605346392d2013060000000000000000000000000000000005121f2b3744505b657784919eaab7c4d1dddfd2c5b8ac9f9286796d6053463a2d201307000000000000000000000005111d29343f485056585e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e64717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0003101d2a3643505d697683909ca9b6c3cfdce9ded1c5b8ab9e9285796d60544a3f34281e13080000000000000000000000000000000000000000000000050f1b27333f495363707d8998a2aebac6d3dfd2c6b9ac9f93867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000c1926333f4c5966727f8c99a5b2bfcfdbdbcec2b5a89b8f827568574d42372b1e120500000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000004111d2935414c56606d7985929ea8b2bdccd5e0d9d5d2d1d2d4d7dcd8ccc0b6ac9e93897c6f62594f44382c21160b0000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe7ece3dcd5d0cdccc7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c8d2d3d6dbdddfe0e4dacec4bab2acaaa29f9b948f87817b706c605c544b43392f261c11060000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c44505b656e7a85929ea4aeb9c3cfd8d5ccc0b9ada2978f82776c60584e43392f23180e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000a1723303d4a5663707d8998a2aebac7d3d2c6b9ada197887c6f6255483c2e23212d3a46535f697884919eabb8c4d1c5b9ac9f92867a6d75828f9ba8b5c2cfc7bbafa4998a7d7064574a3d30251e2b37424d576875818e9ba8b4c1ced0c3b6aa9d908377685e5246392d2014060000000000000000000000000000000000030c162029333c46505a616d7a84919aa4afbbc3d0c4bbb0a69e92857a6d61594f41382d22170b01000000000000000000000000000009151f2b3844505c66707d89939eaab4bfcbc4baaea49f92867c6f695f574e46434d565f6a6f7d869299a3abb5c0c7c8bfb6ada49c918c7f726d635b514940372e25202d3946525e687884919eabb7c4c6baaea298887b6e6255483b2f221508000000000000000000000000000000000613202d394653606c7986929facb9c5d2dfdcd0c3b6a99d908376665c5044382c1f120600000000000000000000000915212e3a45505a62656b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0004111e2b3744515e6a7784919daab7c4d0ddeadfd2c6b9ada2978b7f72665c50443a2f24190f06000000000000000000000000000000000000000000030c17202b3744505b6574818d9aaab3becad6ded1c4b7ab9e918478675d5145382c1f13060000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000b1724313e4a5764717d8a97a9b3becad6ded1c5b8ab9e928578695f53463a2d21140900000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000030d17212c3945525d68727f8c97a1adbac4cfded5cec9c5c4c5c7cbd1d9d2c7beb0a69c8f82766b6054483d33271c0b0200000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe7ede5ddd7d2cfcec8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c9c9cacbcdd0d2d4d8ddd6ccc4bdb9b4aeaca69f9a938e857d736d665c554b42382d22170f06000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f27333f49535e68707d8a929da7b1bdc6d1dcd6cabeb3a99f948c7f726a5f554b40342920170c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000005121e2a36424d576774808d9aaab4bfcad6d1c5b8ab9e9285786c605346392d201e2b37424d576875818e9ba8b4c1cfc7bbaea399897c6f7885919eabb8c4d1c6b9ac9f93867a6d6054473a2d211a26313e4b5865717e8b98a8b2bdc9d2c6b9ac9f93877a6e6154473b2e23170b000000000000000000000000000000000000040e17212a343e46525d68707d88939fa7b1bdc7cdc1b9ada1978e81746b6053493f33271d1207000000000000000000000000000003101c28343f4a54606b75828f98a3aebac1cbc0baaea29891857b6e696058504b555e686e7c859298a2abb5bdc7c9c0b6aea49c918c7f726d635b514940372e251c1e2a36414d566976828f9ca9b5c2cabfb4aa968a7d7063574a3d3024170a000000000000000000000000000000000814212e3b4754616e7a8799a3aebac7d3e0dacec1b4a79b8e817468544a3f34281c100300000000000000000000000b1724313d4a56626c717777777777777777777777777777777777777777777777777777777e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0006121f2c3945525f6c7885929fabb8c5d2deebe2d6cabeb3a99e9184796d60564c4135292118100700000000000000000000000000000000000000020b151e2834404a54606c7884919eabb8c4d0dbdbcfc2b5a89c8f827569554b4035291d10040000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000815222e3b4855616e7b8897a2adb9c6d2dfd2c6b9ada197887b6e6155483b31251a0e01000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000009141f2a36414c56606d7a85929fa9b3beccd6d5ccc4bdb9b7b9bbc0c7cfd9d0c1b7ab9f94897d7063594f44382c1d140a00000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe7e5dbd3ccc6c2c1bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbcbdbdbec1c4c6c8ccd2d4d7cec9c6bfbab8b0aca49f97928880786d675c544a3f332821180e03000000000000000000000000000000000000000000000000000000000000000000000000000000030d17222d38414c56616b74808d95a0abb4bfcbd7dbcfc5bbb0a69f92867c6f675c51453e32291e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000714212d3a46535e697784919daab7c4d0dbcec1b4a89b8e8175655b5044372b1f1a26313f4b5865727e8b98a9b3bec9cbbfb5ab988b7e727a8797a1adb9c6d0c3b6aa9d908377685d5245392c2015222e3b4855616e7b8896a1acb9c5d2c8bbafa49a8b7e7164544a3f34281c1003000000000000000000000000000000000000050f18222935414c56606b73808d95a0abb5c0ccc9beb3a99e93897d70655b5044392f23180c0100000000000000000000000000000b17232e38424f59616e7b86929fa5afb9c3cabfb4aaa19791847b6f6a625a545d676e7a849197a2aab4bdc6c9c0b7aea49c928c7f736d635b51493f372e251c13192530414d5a6774808d9aa7b3c0d0beb1a4988b7e7165584b3e3225180b000000000000000000000000000000000916232f3c4956626f7c8995abb4bfcbd7e3d9ccbfb3a6998c807366594d402e23170c0000000000000000000000000b1825323e4b5865717e84848484848484848484848484848484848484848484848484848485929eabb8c5d1d7cbbeb1a4988b7e7165584b3e3225180b0006121f2c3844515c667986939facb9c6d2dfece6dbcfc5b9aca1968a7e71685d52453e332a221810070100000000000000000000000000000000030b141d26303844515c66707d8a96a1adb9c5d2e1d5c9beb3a9988b7f7265584c3f2f24180c000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000714212d3a46535f697885929eabb8c5d1ded5c9beb3a9978b7e7164574d42362a1d1207000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000020e1a25303946525e6873808d97a2adbbc5cfd9cec4bab2acaaacafb5bdc7d1d3c7bbb0a69c9083766b6055483e2f261c1106000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe7ddd3c9c1bab6b5aeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeafb0b1b2b4b7b9bbc0c5c7cbd1d5d0cac6c2beb6afa9a29a938d82796d665b50443f332a2015090000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b444f59606d79839199a3aebac2cdd7d7cdc2baaea3999183796d60594f443a3025190f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000815212e3b4854616e7b8795a0acb8c5d1d5c9bdb2a8988b7e716553493f33271b15222f3b4855626e7b8897a1adb9c6d1c0b4a79a8d81747c8996a9b3bec9cbc0b5ab9a8d807367564c4135291d14212d3a46535f697884919eabb7c4d1ccc0b6ac9b8e8175665c5044382b1f12060000000000000000000000000000000000000007101924303a444f59606d79839099a4afbbc6cfc5bbafa59d9083786c60554b4034291d1207000000000000000000000000000006111c26303d46535e69727e8b939ea7b1bbc5c5bcb3a9a19691857c716c605d666d79839096a1a9b3bcc6cac1b7afa59d928c80736d635b51493f372e251c13081825323f4b5865727e8b98a5b1becfbfb2a6998c7f7366594c403326190d000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdd1dce7d8cbbeb1a5988b7e7265584b3f322518060000000000000000000000000c1926323f4c5965727f8c91919191919191919191919191919191919191919191919191919297a1adb9c6d2d7cbbeb1a4988b7e7165584b3e3225180b000713202d3a4653606d79869aa4afbbc8d4e0edece1d5c9bdb2a89e91847a6d605a50463c342a2218130c040000000000000000000000000000060c151d262f38424c56606d7984919da8b2bdc9d5dfd2c6b9ada197887b6f6255483c2f221507000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000005121e2a36424d576976828f9ca9b5c2cfdadacfc2b5a89b8f8275695e5346392f24180b020000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000005121e2a36424d57616d7a86929fa9b3becdd6d5c9bdb2a8a09e9fa3abb5c0cbd7ccc2b7ab9f94897d70635a5042382d22170b000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe2d7ccc1b7afaaa8a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a2a3a4a5a7aaacafb6b9bbc0c7cad0d6d3d0c7c0bbb3aca49f948e81786c605b51453c31261a0d03000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29323e45515d676f7c86929fa6b0bbc5cfdad7cbbfb4aba0958d80746b61564c41362a21180c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000003101c28343f4a5465717e8b98a7b1bcc8d4d2c5b9aca096877b6e6154483b2d221714212e3a47535f6a7885929eabb8c5cfc2b5a99c8f82767e8a97a4b1bdcfc7bbafa3998a7d7063574a3d2f2419121e2a36424d576874818e9ba7b4c1ced2c5b8ab9f9285796d6053463a2d201308000000000000000000000000000000000000000008131e28323d45515c676f7c87939faab4bfcbcdc1b8aca0958b7e71675c5145392f23180c0000000000000000000000000000000a141e2a36424d57626d75818e95a0a9b3bcc5c4bbb2a9a19791867e746d676d78828f95a0a8b2bbc5cbc2b8afa59d938d80746e635b51493f372d251c130a0a1623303d495663707c8996a9b3becac0b4a79a8d8174675a4e4134271b06000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8e3d6c9bdb0a3968a7d7063574a3d3024170a0000000000000000000000000c1926323f4c5965727f8c989e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9ea1a9b3bec9d5d7cbbeb1a4988b7e7165584b3e3225180b000714212d3a4754606d7a8793a0b6c0ccd8e4f0f1e5dacec4b9aca1968e81756c61584e463c3429241d16100b0603000000000000000003070c11171e272e38414a545e68727f8c96a0acbac4cfdaded1c4b8ab9e9185786a5f53473a2e211508000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000020e1a2631404d596673808c99a9b3bec9d5dfd2c6b9ac9f93877b6e61554b4035291d140a0000000000000000000000000000000000060f18222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000040e18222d3a46525e6974808d98a2aebbc5d0dcd2c5b9aca096919299a3afbbc6d1d3c7bcb0a69d9083776c61544a3f33281c11060000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbded2c6baafa59e9b9595959595959595959595959595959595959595959595969697989a9d9fa4acacafb5babec5cdd7d9d2ccc5beb6afa69e938d80746d62574d42372b1f150b01000000000000000000000000000000000000000000000000000000000000000000000000000000020b17202935404b555f6a727f8c949fa9b3becad6dcd1c6bdb1a79d928a7d70685e52463f332a1e150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000006121f2c3844505c6675828f9ba8b5c2ced9d1c4b7aa9e918477695e53463a2d1b11121e2b37424e576875828e9ba8b5c1cfc4b7aa9d9184777f8c98a5b2bfcbc5b9ac9f92867a6d6054473a2d21140e1a26313e4b5864717e8b97a8b2bdc8d3c6baada297897c6f6256493c3025190d0100000000000000000000000000000000000000020c16202834404b555f6a74818e98a3aebac5cfc8bcb1a79e9184796d60554b4034291c11060000000000000000000000000000020c1a25313b45515b606d79839097a2aab3bcc6c4bbb2a9a198928b81796f74808d949ea7b1bac4ccc2b9b0a69e938e81776c605c524940372e251c130a010714212e3a4754616d7a8797a2adb9c6c2b5a89b8f8275685c4f422d22170b000000000000000000000000000000000d192633404c5966737f8c99a6b2bfccd9e1d5c8bbaea295887b6f6255483c2f2215090000000000000000000000000c1926323f4c5965727f8c98a5aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabadb3bbc5cfdad7cbbeb1a4988b7e7165584b3e3225180b000714212e3a4754616d7a8794a0adbad2dde8f4f6ebe0d5c9bdb2a89e938a7e716a5f584e463d352f281f1c17120f0b0608070708060c1012181c222830394049535c666d7a85929fa8b2bdccd6e0d4c8bcb1a79a8d807467584e43372b1f1206000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000916232f3c4956626f7c8997a1adb9c6d2dfd4c7bbafa4998d8073675d51453b2f261b1106000000000000000000000000000000050e18212a36424d57626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000a15202b37424d57616e7b86929faab4bfcdd7d4c8bcb1a79e918487929fabb4bfcbd7cdc2b8ab9f958a7d70665b5044382e23170b0000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdccfc2b6aa9e938e8888888888888888888888888888888888888888888888898a8a8b8e91939a9b9fa3abadb3bbc2cbd1d8d8d0c7c0bbafa59d928c7f72695f53473e31271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000050e18242f39434e58606c77828f97a1adb9c0ccd5d8cfc3b9aea49e91857a6d615b51453c30271c1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000713202d3a4653606d7985929fabb8c5d2d8ccc0b6ac9a8d817467574d42362a1e0a0e1a26313f4c5865727f8b98a9b3becac5b8ab9f928578808d9aa6b3c0cdc3b6a99d908376675d5145392c20130915212e3b4854616e7b8796a0acb8c5d2cabeb3a9998c807366564c41362a1d11050000000000000000000000000000000000000000040e18232e39434e58616e7b86929fa9b3becacdc3b9ada1968c7f72675c5145382e23170c00000000000000000000000000000009141f29333f45515d676e7b859298a2aab4bcc5c4bbb3aaa39f938e847c7f8b929da6b0b9c3ccc3bab1a79f948e81786d655b504a40372e251c130a01000713202d3946525e687885929eabb8bab8b4a99d9083766a53493f33271b0f030000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9e1d4c7baaea194877b6e6154483b2e2115080000000000000000000000000c1926323f4c5965727f8c98a5b2b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b8b9bec5cdd6e1d7cbbeb1a4988b7e7165584b3e3225180b000815212e3b4854616e7b8794a1aebac7d4e1edfbf1e5dacec4baafa59f92867c6f6a5f584f45403a312b28231f1b17161514141516171c1f24292d333c424b515b656d78828f97a2adbac3cedfddd1c4b8aca095887c6f6255493c31261b0f03000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000613202d394653606c7885919eabb8c4ced9d7ccc0b5ab9f9285796d60564d41382d2217110600000000000000000000000000060e17202a333c46535f6973808d9aa6b3c0cdd9d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000030f1b26313a46535f6974818e98a3aebcc6d0dcd1c4b8ab9f958a7d818e99a3aebac6d0d4c8bcb1a79d9083786c60544a3f34281d120700000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdbcec1b5a89b8e817b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c7d7e7f8184868a8e92999fa2a9b0babfc6cfd8d9d2ccc1b7aea49f92867b6e625a5043392f24180c000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c44505b656e7b85929ea5afbac3cfd8d5cbc0b9ada1978f82756d62574d42392e23180d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000091623303c4956636f7c8998a2aebac6d3d4c8bbafa49a8a7d7164574a3e31251a0e0915222f3c4855626f7b8897a1adb9c6c6baada297867a818e9ba7b4c1cbbfb4ab998d807366554b4135291d110714202d3a46525e697784919eaab7c4d1cfc3b6aa9d908377685e5246392d20130600000000000000000000000000000000000000000007121d27303c46525e6973808d97a1adb9c4cec9bdb2a89e9185796d60544a3f34281c10030000000000000000000000000000030d17212935404b555f696f7c869298a2aab3bbc3c4bcb4aea59d96918787929fa4aeb8c1cbc4bbb1a89f958f82786d665c53493f382e251c130a01000005111e2a36414c566a7784919daab4aeacaaa29e918478655b5044372b1f12050000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0cddae0d3c7baada094877a6d6154473a2e2114070000000000000000000000000c1926323f4c5965727f8c98a5b2bfc4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c5c6c9cfd6dfe8d7cbbeb1a4988b7e7165584b3e3225180b000815222e3b4855616e7b8894a1aebbc7d4e1eef0e9e4e0d6ccc1baaea29892857c6f6a6059514b433d38342e2b272223222121222323282c2f35383f444d545c606c77818e949ea9b3beccd5e0d4c8bdb2a89d9083776a5f53473b2a20150a00000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000005121f2b3744505b6574818e9aa8b2bdc9d5ddd2c7baada2978b7e72695e53493f33272317110a03000000000000000000030a10182029323c46505a616e7b86929facb9c5d2dfd4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000006121f2b37434e58616e7b87929faab4bfced7d3c7bcb0a69d9083767b86929faab4bfcad6cdc3b8aca0958a7e71665c5044392e23180c01000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d81746e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6f70717274777a7d82878d92979fa6aeb4bdc6d0d9ddd8c9c0baaea3998f82766c61554b4035291d100400000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f27333f49535e69707e8a939da8b2bdc6d1dcd5c9beb3a99e948b7e72695f544a40342820160c0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000005111e2a36414c566673808d99aab3becad6d2c6b9ac9f93877a6d6154473a2e2114090613202d394653606c7985929eabb8c5cabeb3a994887b828f9ca8b5c2c7baaea399897d7063564a3d2f24180d05121e2a36424d576774818e9aa7b4c1ced2c6b9ac9f93877a6d6154473a2d22170b000000000000000000000000000000000000000000000b151e2a36424d57606d7a85929ea8b2bdc9cfc4b9ada1978b7e72665c5044382c1f150a000000000000000000000000000000050f18242f39434d57606a6f7d869298a1a9b1b9c1c6bfbaafa8a099939299a3afb6c0cac5bcb2a9a0959083796d665c544a41382d261c130a01000000010d19253043505d697683909ca9aaa29f9b98928f86786c605346392d2013060000000000000000000000000000000e1b2834414e5b6774818e9aa7b4c1cddae0d3c6b9ada093867a6d6053473a2d2014070000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d2d5dad7d7d7d7cbbeb1a4988b7e7165584b3e3225180b000815222f3b4855626e7b8895a1aebbc8d4e1efe6dfd8d4d1d0cabeb3aaa19792857c706b605d554f46443f3937332d302f2d2e2f302e34383a40454a50575f666d73808d939ea6b0bcc5d0ded8cec6b9aca0968b7e7165584e43372b180e0300000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000030f1b27333f495363707d8996a0acb9c6d0dcd6cabeb3a99e92857b6e655b50443d3528231c15100c060604000205060b0f151b222a323b444e58626c75818e98a3aebac7d3e0d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000040f19232e3a47535f6a75818e99a3afbcc6d1dcd0c4b7ab9f94897d7074808d98a2aebac5d0d4c8bcb1a79e9184786d60544b4034281d1207000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174676262626262626262626262626262626262626262626363646567686d70757b80858f949fa3abb4bdc7d2dddbd7cbbfb4ab9f948a7e71675d5145382c1f14090000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17222d38414d56616c74818e96a0abb5bfcbd7dacfc4bbb0a69f92867b6e665c51443d32281e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000713202d3946525e687783909daab6c3d0dbd0c3b6aa9d908377685e5246392d20130705121f2b3744505b6575828f9ba8b5c2d0bbafa295887c83909da9b6c3c5b9ac9f9286796d6053473a2d201407020e1a25303e4b5764717e8a97a7b1bcc8d4c8bbafa49a8a7e7164544a3f33281c0f03000000000000000000000000000000000000000000030c1a25303b45525d68727f8b96a0acb9c5cfc9beb3a99e9184796d6053463c31261b0f0100000000000000000000000000000007121d27313c454e58606b707d869297a0a7b0bbc0c7c0bab2aba49f9fa3abb5c0c8cabfb4aaa19791837a6d675d544b42382f261b130a010000000000081c2935424f5c6875828f9b9f9b98928e8a86827e776c605346392d2013060000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe0d3c7baaea39986796c605346392d2013060000000000000000000000000c1926323f4c5965727f8c98a5b2bfcacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabeb1a4988b7e7165584b3e3225180b000815222f3b4855626e7b8895a1aebbc8d4e1e6ddd4cdc8c4c3c4c5bcb3a9a19792857d746d67605953504a46443f3d3c3b3a3a3b3c3e3f44464b51545b60696e79808d929da5afb8c1ced7dcd0c6bcb1a79e9184786d6053463c32261b070000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000b17222d394653606c7884919eaab4bfcbd6dbcfc5b9ada2978f82776c60584f473e342e261f1c171312100c0e1214171b1f262b343c444d565f6a717e8b939eaab4bfcbd7e3d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000b16212b37434e58626f7c87939fabb5c0cfd8d3c7bbb0a69c9083766b6e7a86929faab4becad6cec3b8aca0968b7e71665c5145392f24180c010000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a555555555555555555555555555555555555555556575758565d6163696e737b828c9299a3abb5c0ccd7dfdcd1c6bdb0a69e9184796d6053473b31261a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b44505a606d79849199a3aebbc2cdd7d6cdc1baaea2989083786d60594f443a2f24190f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000714212e3a4754616d7a87939facb9c6d2d7cbbfb4aa998d807366564c4135291d1105030f1b27333f495365727f8b98a9b3becabcb0a396897d84919eaab7c4c3b6a99c908376675d5145382c1f1306000914212e3b4754616e7a8795a0acb8c5d1ccc0b6ac9b8e8175665b5044382b1f12060000000000000000000000000000000000000000000009141f2935414c56606d7984919ea9b3bec9cfc4b9aca1968a7e7164584e43372b1d1207000000000000000000000000000000010b151f2a333d464f59606b707d8590959ea6afb5bdc3c4bdb5afacacafb5bdc7d1c6baaea29891857b6e685e554b423930261d140a010000000000010e1b2834414e5b6774818e98928e8a85827d7a75716c655b5044372b1f12050000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c2cedbdfd2c5b9ac9f928679665b5044382b1f12060000000000000000000000000c1926323f4c5965727f8c98a5b2bebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebeb1a4988b7e7165584b3e3225180b000815212e3b4854616e7b8794a1aebac7d4e1dfd4cbc2bcb8b6b8bcc2bbb3a9a19792898179706b64605c545350494a4948474748494a4a5053555d60666c727b838d929da4aeb7c1cad3ddd6cbbfb4aa9f958a7e71665c5044382a20150a0000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000006121f2b3744505b65727f8c98a3aebac5d0dbd6cabeb3a99f948b7f726a605950443f38302c2823201f1c181a1e2122272b32373e464e565e696e7c86929fa5afbcc6d1dce7d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000020b1b27323b4754606a75828f99a4afbdc7d1dcd0c4b7ab9f94897d70636873808d98a2aebac5cfd4c8bdb2a89e9184796d60554b4035291d13070000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e48484848484848484848484848484848484848494a4b4c4c5254575e61696e777f879299a4afbbc0cdd6e1d8cfc2b9ada1978a7e7164574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29323e45515d676f7c87929fa6b0bbc5cfdbd6cabfb4aaa0958d80736b60564c41352921170c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000030f1b27333f495364717e8a9aa4afbbc8d4d3c7baaea398897d7063564a3d3025190d01000b17222d3c4955626f7c8897a2adbac6bdb1a4978a7e85929fabb8c5bfb4aa998c807366554b4035291d1004000714202d3946525e687784919daab7c4d2d2c5b8ab9e9285796c605346392d20130800000000000000000000000000000000000000000000030d19242f3a45515c66717e8a97a1adb9c7d2c9bdb2a89c9083766a5f5347392f24180c00000000000000000000000000000000030d18212b343d474f59606b6f7b838f949fa3abb1bbc0c7c0bbb9b9bbc0c7cfd2c5b8ac9f92867c6f695e564c433c332d261d170e080000000000000d1a2733404d5a6673808d8a85817d7975716d6764605b53493f33271b0f030000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c2cedbdfd2c5b8ac9f9285796c5f4b4034281c10040000000000000000000000000c1926323f4c5965727f8c98a5b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1a4988b7e7165584b3e3225180b000814212e3b4754616e7a8794a1adbac7d4e4d8cdc2b9b1aba9abb1b9c2bbb3a9a29f928d847d76716d6662605b535756555454555657545c6062676d72787e8690959da4aeb6c0c9d2dcd5cbc3baaea3989083786c60544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000030f1b27333f4953616d7a86929faab3becad6dbcfc5bbb0a69f92867c706b615a504a423d38342e2d2c2823262a2d2d33373c434750585f686e7b849198a2aeb7c1cfd8e2e1d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000a141d2c38444f59626f7c89939eabb5c0cfd9d3c7bbb0a69c8f82766b60616d7a85929fa9b3becad6cec3b9aca1968b7f72675d51453a2f24180d0200000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e413b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3c3d3e3f4146474d53575e656c727e87939fa4aebbc4cfdae1d5c9beb2a99c8f8276695f53463a2d211408000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17202935404b55606a727f8c949fa9b3becad6dbd0c6bcb1a79f93877d70685d52453e33291e140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000005121f2b3744505b6575818e9bacb6c0ccd8d2c5b9ac9f9286796d6053473a2d20140800000613202d394653606c7985929fabb8c5beb1a4988b7e86929facb9c5baaea298897c706356493d2f24180c000005111e2a36414c566774818d9aacb6c0ccd2c6b9ada197897c6f6256493c3025190d010000000000000000000000000000000000000000000008131e2834404b54606d7985929eacb6c0cccec4b7ab9f94887c6f62554b4035291d100400000000000000000000000000000000060f19222b343d474f5960696e79828c9299a0a7afb5bdc7c7c6c5c7cbd1d9cbbeb1a5988b7e736d67605b534e443f382f29201a110900000000000b1825323e4b5865717f817d7975706d6764605d5553504941382d22170b000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cedbdfd2c6b9ac9f938679675c5145382c1f13060000000000000000000000000c1926323f4c5965727f8c98a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4988b7e7165584b3e3225180b000714212d3a4754606d7a8793a0adbad1dce0d4c8bcb1a79f9d9fa7b1b9c3bbb3ada49d969189837d78726f6c6565646362606162636466666d6f73797e848b9298a0a7aeb6c0c8d2dbd5ccc3b9b0a69f92867c6e655b5042382e23170c000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000b17222d3846525e6873808d98a2aebac3cfd9d7cdc2baaea39892867d706c605c544f46443f3b3a38342e31363a3b3f44464e535a616a6f7a849196a0aab4bfc9d3e1eae1d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000006111b262f384854606b76828f9ca5afbdc7d2d9d0c7b7aa9e94897c6f63595e6873808c97a2adb9c4cfd5c9bdb2a89e9184796d60554b4135291e130800000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e41342f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f3030313035393b42464d535b606c727f8b929da9b3bec9d5e0dacfc4b9ac9f93877b6e6155483b3024190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e18242f39434e58606c78828f97a2adbac1ccd5d8cec3bbafa49991847a6d605a50453b30261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000613202d394653606c7885929eabb8c5d2ddcfc2b6a99c8f8376675d5145382c1f1306000006121f2b3844505b6675828f9ca8b5c2bfb2a5998c7f8c99a3aebbc5b8ac9f9286796d6053463a2d2013070000010d1925303d4a5764707d8a9aa4afbbc8d4cabeb3a9998c7f7366564c4135291d110500000000000000000000000000000000000000000000010c18232e3945515c6673808d9aa4afbbc8d4c7bcb0a69a8d8074675d5145382c1f13070000000000000000000000000000000000071019222b353d474f575e676d787f8790959fa4abb5c0ccd2d2d4d7dcdfd2c5b9ac9f92868079716c655f585049413b322c231b1306000000000b1724313d4a56626d7174706d6764605d5553514b46443f382f261b1106000000000000000000000000000000000e1b2835414e5b6874818e9ba7b4c1cedae0d4c8bbafa49a86796d6053463a2d2013070000000000000000000000000c1926323f4c5965727f8c9797979797979797979797979797979797979797979797979797979797979797979797979797978b7e7165584b3e3225180b000714202d3a4753606d7a8693a0b5bfcbd7ddd1c4b8ab9f9590959fa7b1bcc5bebaaea8a19e95908a847f7c797572706f6e6d6d6e6f717275797c80858b91969fa2aab1b9c0c8d2dad5ccc4bab1a79e948c7f726a5f53493f30261c1106000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000006111b2a36414c56616d7a85929fa7b1bdc7d1dcd6cbbfb4aaa29892867e726d66615953504a484644404344424648495053585f626c717c849196a0a8b2bcc6d0dbe5f3e1d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000b17222d38414f5963707d89949fabb8c1d0d9d2c7beafa59c8f82756b605456606d7a85929ea9b3bec9d5cec4b9ada1978c7f72675d51453a3024190d02000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134272222222222222222222222222222222223242424292d31363b4149505a626d74808d97a1adb9c3ced9e0d4c8bbafa49a8d807366564c4135291d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d28313c44505b666e7b85929fa5afbac4cfd9d7ccc0b5aba1968e81756c61574d42382e23170d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000916222f3c4955626f7c8897a1adb9c6d2d6cabeb3a9998c7f7266554b4035291d10040000030f1c28333f4a5465727f8c98aab4bfc1b4a79b8e818e9babb5bfc2b6a99c8f8276675c5145382c1f13060000000814212e3a4754616d7a86939facb9c6d2cfc3b6a99d908376685e5246392d201306000000000000000000000000000000000000000000000007121d2834404b54616e7b87939facb9c4cfcdc2b8ab9f9285796d6053473a2f24180c000000000000000000000000000000000000071019232b343d454d555d666c737c838d9399a4afbbc7d4dfe0e3e0dfd3c7baaea398928d847e786f6a605b534d443e352d2517110a0300000915212e3a45505a62656863605c5553514b4745403937332d261d140a00000000000000000000000000000000000e1b2734414e5a6774818d9aa7b4c0cddae4d8ccc0b6a093877a6d6054473a2d2114070000000000000000000000000c1926323f4c5965727f8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b7e7165584b3e3225180b000613202d394653606c798699a3aebbc7d3dcd0c3b6a99d90839095a0aab4bdc7c0bab2aca79f9d96918c8885827f7d7c7b7a7a7b7c7d7f8285898c92979ea0a8aeb4bcc3cbd2dbd6cbc3bab2a8a0958f82786c60584e41382d1e150a00000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000d1925303a46525e68737f8c95a0abb5c0cbd7dcd0c6bcb3aaa29892877f78706b63605c545453514a50504d5355535b60636a6f767e869196a0a8b2bac3ced8e2edeee1d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000030f1b27333f4953616b7683909da6b0bbcad3d8ccc0b6ac9e93887c6f62594f515d67727f8c97a1adb9c4cfd5c9beb2a99e92857a6d60564c4135291e1308000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b151515151515151515151515151515161718191d20252a2f383f44515b606d7985919ea8b2bdc8d4e1d8ccc0b6ac9d918477685d5245392c20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f28333f4a545e69717e8a939da8b2bdc7d1dcd2c7bdb2a89e938a7e71695e544a3f34281f160c010000000000000000000000000000000000000000000000000000000000000000010100000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000004111d2935414c5666737f8c99a9b3bec9d5d3c6baada297897c6f6256493c2f24180c000000000b17222d3c4956626f7c8998a2aebac2b6a99d938e939da9bdc6bfb4aa998c7f7266554b4034281c10040000000713202d3946525d687783909daab6c3d1d2c6b9ac9f93867a6d6154473a2d22170b0000000000000000000000000000000000000000000000000c18232e3946535f6976828f9ca9b2bec9d3c6baada2978a7d7164554b4035291d1004000000000000000000000000000000000000071119222b333b434b545b606a6f798087939facb9c6d2dfdcd7d3d2d3cbbfb4aaa39f97918b837c726c655e564f473f3728231c150c030005111d29343f485056585b5753514b4745403a39352f2b27221b140b0200000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3c0cdd9e8ddd2baada194877a6e6154473b2e2114080000000000000000000000000915222f3c4855626f7c7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7b6e6155483b2e2215080006121f2b3844505b667986929facb9c5d2d7cabdb0a4978a7e839098a3abb5bdc5c4bdb9b1aba8a09e9997928e8b8a8988878788898a8c8f9298999ea1a9acb2babfc6ced5d8d0cac1b9b1a8a0969083796d665b50463c2f261b0c0300000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000008131e2935414c56606d79839199a3afbbc2ccd5d8cec5bcb3aaa399928c837d75706d666461605c545d5d575f6164656c70757c828b9298a0a8b2bac3ccd2d7dde5ede1d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000005121f2b3744505b65707d8a959fabb8c2ccdcd4c8bbafa49a8f82756a6054464c55606d7985919ea8b2bdc9d5cfc4b9ada1978c7f73685d52453a3025190d020000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0808080808080808080808080808090a080d11141a1d262d333f45515d67727f8b96a0acb9c5d2deddd2c6b9ac9f93867a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d17222d38424d57616c74818e96a0abb5c0cbd7d9d0c4baafa59f92857b6e665c50443d31281d1307000000000000000000000000000000000000000000000000000000000003080b0d0e0b070603000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000613202c3945525d687683909ca9b6c3cfdad2c5b8ab9f9285796d6053463a2d201307000000000613202d3a4653606d7985929facb8c5baafa59d9b9da5afbac6baaea298897c6f6256493c2e23180c0000000005111d2935414c566773808d9aabb5c0cbd4c7bbafa4998a7e716453493f33271b0f03000000000000000000000000000000000000000000000007121d2a36424d5764707d8a97a1adb9c6d2cabeb3a99b8e8175675d5145382c1f1306000000000000000000000000000000000000000710192129313a424a50585f676d7983909daab6c3d0d8d1cbc7c5c7cbc6bcb4aea9a19e9590877f776e696159514940342e261e150b02010c18222d363f454a4b4e4a4645403a38352f2c29241f1b17110a020000000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9e1d5c8bbaea295887b6f6255483c2f2215090000000000000000000000000815212e3a47535f6a6f71717171717171717171717171717171717171717171717171717171717171717171717171717171716e695f53473a2d21140800030f1c28333f4a5f6b7885929eabb8c5d1d7cabdb1a4978a7e7c869299a3abb3bbc3c9c2bcb7b2acaaa9a19e9b989796959394959697999c9fa2aaabadb3b9bdc4cad0d8d5cec6bfbaafa7a09691847b6e675d544a3f342a1d140a0000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000000020d1925303a45515c676f7c87929fa6b0b9c3ccd6d7cec5bcb4aba39f959189827d7975716e6d666a696a6b696e7173787d81878f949fa2aab2bac3c1c3c6ccd3dbe5e1d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000003101c28343f4a54606c7883909da7b1bccad4d7ccc0b5ab9f93877c6f62584e4345515d67727f8b96a1adb9c3ced5c9beb3a99f92857a6d60564c41362a1f14090000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e01000000000000000000000000000000000105090b141b222935404b55606d7984919eaab7c4cfdae0d4c8bbafa49a897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3b45505a606d79849199a3afbbc2ced7d6ccc1baaea2989082786d60584e433a2f24180e05000000000000000000000000000000000000000000000000000001080f14181a1b181312100b0600000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000714212d3a4754606d7a86929facb9c5d2dbcec2b5a89b8f8275665c5044382b1f12060000000006121f2c3844505c6676828f9ca9b5c2c0b7afa9a7a9afb7c0c5b8ac9f9285796d6053463a2d20130700000000010d1924303d4a5763707d8a99a3afbbc7d4ccc0b5ab9b8e8174655b5044372b1f12050000000000000000000000000000000000000000000000000e1a26313b4653606d7984919eabb8c3ced0c5b8ac9f9285796d6053473a2d2014090000000000000000000000000000000000000000070f171f282f38404a545f6a727f8c95a0abb8c4d1cfc6bfbab9babfc6c6bfbab2ada79f99928c827b706c625b52443f3830261d140a0006111b242d343a3d3e413d3a38342e2c2924201d18120f0b0600000000000000000000000000000000000000000c1926333f4c5966727f8c99a5b2bfccd8e3d6c9bcb0a396897d7063564a3d3023170a00000000000000000000000006121f2b37434e585f626464646464646464646464646464646464646464646464646464646464646464646464646464646464615f574d42372b1e120600000b17222d44515d6a7784909daab7c3d0d7cabeb1a4978b7e717d879299a2a9b1bbc0c7c7c4bdb9b7b3adaba8a5a3a2a1a0a0a1a2a4a5a8abaeb4b8b9bec5c9ced6d4cec9c2bcb4aea59e9590847b6e695e554b42382d22180b020000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000008131e2934404b55606a73808d949fa7b1bac4ccd5d7cfc6bdb5afa7a09d948f8985817d7b797877767778797b7e8084898e93999fa6aeb4bcb9b7b5b6bac1c9d3dde1d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000010b151f2b3844505c66717e8a95a0acb9c2cddcd4c7bbafa4998e81756a5f53463c404b55606d7984919ea8b2bdc8d4cfc5baada2978d8073685e52463b30251a0e0300000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000020a1118242f3a44515c66737f8c99a9b3bec9d5e2d8ccc0b6ac998c7f7366594c4033261907000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29333e45515d676f7c87929fa6b0bcc5d0dbd6cabeb3aa9f948c7f736a60554b40352920170b02000000000000000000000000000000000000000000000000020b131a2024272824201f1c17110c070d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000a1724313d4a5764707d8a99a3afbbc7d3d5c9bdb2a8988b7e7265544a3f34281c10030000000003101c28343f4a5466727f8c99aab4bfcac0bab6b4b6bac0c9c2b5a89c8f8275665c5044382c1f120600000000000814212d3a4754606d7a86929facb9c5d2d2c5b8ab9e9285786c605346392d20130800000000000000000000000000000000000000000000000009141f2c3844505c6673808c99a8b1bdc8d3c6baaea2988a7d7064574a3d30251a0e02000000000000000000000000000000000000000007121d27303944515c666f7c86929fa7b1bcc8ccc3bdb4aeacaeb4babfc6c4beb9b1aba39f948f857d726d635c504a42382f261b11060009121b22292e313235302d2c28231f1d1813100d0703000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdd2dde8d7cbbeb1a4988b7e7165584b3e32251807000000000000000000000000030f1a26313c464e5355585858585858585858585858585858585858585858585858585858585858585858585858585858585855534d453c31261a0e020000061c2936434f5c6976828f9ca9b5c2cfd8cbbeb1a5988b7e72717e879297a0a7afb5bdc2c7c9c5c4beb9b8b5b2b0afaeadadaeafb0b2b5b8babec5c6c9cfd5d3cec8c4bdb9b0aaa29f938e837a6e695f574d433a2f261c0f06000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000020c18232f39434e58606d78828f95a0a8b2bac3cbd6d8cfc7c0bbb1aca69e9c97928e8a8786858483838485888a8d91969b9fa4abb0babab2acaba8aaafb7c1ccd7e3d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000007121d2834404b54606d7884919da7b1bccbd4d7cbc0b5ab9f93877b6e62584e43343945515c67717e8b96a0acb9c3ced6cabeb3a99f92867a6d61574d42362a1f140900000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000007131d2834404a54626f7c8997a1adb9c6d2dfddd2c2b5a89b8f8275685c4f422f24180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17212935404b55606a737f8c949fa9b3becad6dbd0c5bcb0a69f92877c6f675d51453e32291d140a0000000000000000000000000000000000000000000000000b141d252b303334312d2b28231c18120d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000006121f2b37434e586774818e9aabb5c0cbcecec5b9ada196887b6e6255483b2e23170b0000000000000c17232e3c4956636f7c8998a2aebac7cbc6c2c1c2c6cbcabeb3a9988c7f7265544a3f34281c100300000000000613202c3945525d687683909da9b6c3d1cec6b9ada197887c6f6255493c3024190d01000000000000000000000000000000000000000000000003101c28343f4a54616e7b8795a0acb8c5d1cabfb4aa9b8e817468574d42362a1e110500000000000000000000000000000000000000000c18232e39434e58606d78839098a3aeb9c3cfc3bab2aba39fa3abaeb4bcc1c9c2bdb5aea69f9792887f736e605c544a41382d22171007000911181d2124252824201f1c1813100c070401000000000000000000000000000000000000000000000000091623303c4956636f7c8996abb5c0ccd7e3d9ccbfb3a6998c807366594d402e23180c000000000000000000000000000a15202a343c4347484b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4847423c332a1f15090000020f1b2835424e5b6875818e9ba8b4c1ced8ccbfb2a5998c7f726c717d8590959fa3abb0b8bcc2c7cbcac6c5c1bebdbcbbbababbbcbdbfc2c5c6cad0d2d2d0cac6c3bcb8b2aca69f98928b81796e685f574d453b31281d140a00000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000000000007121d27313d44505c666d7a839196a0a8b1b9c1cad0d8d1cbc3bcb8b0aaa9a29f9b979a9392909090919298979a9ea1a8acafb5bdbcb2a8a19e9b9ea5afbac6d2ded4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000c18242f3845515c66717e8b96a0acb9c3cdddd3c7bbafa3998e81746a5f53463c3134404b55606d7884919ea7b1bcc8d4d0c5baaea2988d8073695e52463b31261a0e03000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e01000000000000000000000000000000000000000000010c18232e394653606c7985929eabb8c5d1deded1c4b7ab9e9184786b554b4035291d100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f18242f3a434e58606d78829097a2adbac1ccd6d7cec2bbafa3999184796d605a50443b2f261b110600000000000000000000000000000000000000000000060f1d262f363c40413e3a38342e28231d181a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000814212e3a47535f6a7884919eabb7c1c1c1c1c1b8ab9e9184786a5f53473a2e1c11060000000000000613202d3a4653606d7986929facb8c1c1c1c1c1c1c1c1c1baada297887c6f6255493c2e23170c00000000000004111d2935414c566673808d99abb5bfc1c1c1beb3a9998c7f7366564c4135291d11040000000000000000000000000000000000000000000000000c17232e3846535e697784919daab7c4d1d0c4b7aa9e918477695e52463a2d2014070000000000000000000000000000000000000004101c2834404b55606a73808c95a0aab4bfcbc6bdb2a8a09992999fa3aaafb9bec4c6bfbbb0a9a19a938c80746d665c53493f332722190d0300060c111517181b171313100c0704000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8799a4afbbc7d4e0dacec1b4a79b8e817468544a4034281c1004000000000000000000000000030e18222a31373a3c3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3b3a37312a21180e030000010d1a2734404d5a6773808d9aa6b3c0cdd9cdc0b3a69a8d8073676b707b838d92999fa6abb1b9bbc0c5c7cbd1cbcac9c8c6c7c8c9cacccfd2d1cfcfc9c6c4bfbab8b1aca8a09e948f867e756d675e564d453b33291f160b0200000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000010b151f28343f4a545d686e7b849196a0a7afbabfc6ced4d7cec8c1bbb7b3adaba8aca49f9e9d9c9d9e9fa2aaa6abacb2b9bbc0bbb3aaa196918e939eaab6c3cfdcd4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000004101d2935404b55606d7984919ea8b2bdcbd5d7cbbfb4ab9f92877b6e61584e43342a2e3944505c66717e8a95a0acb8c3cdd6cabfb4aa9f92867b6e61574d42362a201509000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000007121f2b3844505b6675818e9ba8b4c1cedbdfd2c5b9ac9f928679675d5145382c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313d44505c666e7b85929fa5afbac4cfd9d7cbc0b5aba0968e81746c61564d41382d22170d030000000000000000000000000000000000000000030d17212f3841484c4e4b46443f38342e29241d2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000815222f3b4855626e7b8896a1adb4b4b4b4b4b4b4a79b8e817468574e42372b1e0a0000000000000006131f2c3845515c6676838f9ca9b4b4b4b4b4b4b4b4b4b4b4ab9f9285796d6053463a2d201306000000000000010d19242f3d4a5663707d8999a3aeb4b4b4b4b4b4a99c908376685d5245392c20130700000000000000000000000000000000000000000000000006111c2a36424d576774808d9aaab4bfcbd2c5b9aca096877b6e6154473b2e211408000000000000000000000000000000000000040f19232c3845515c676f7c87929fa7b1bcc6cbbfb5aba09691868c92989ea5adb2bbc1cac2bbb3aca49f928d81786d655b50443e342b1f150b01000105090b0b0e0a070604000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939facb9c6d2dfddd0c3b6aa9d908377665c5144382c1f12060000000000000000000000000006101820262b2e2f31313131313131313131313131313131313131313131313131313131313131313131313131313131312e2d2b261f180f06000000000c1926333f4c5966727f8c99a5b2bfccd8cec1b4a89b8e81756860696e79808790949d9fa7acafb5b9bbc0c2c4c6c9cfc9cacacac9cfcac6c5c3c0beb9b8b4aeaca7a09d96918a827b716c605d554c443b332920170d040000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000000000000030d17232e38424c565f696e7b8490959ea5aeb4bcc1c8cdd4d4ccc7c5bebab8b4b6afacabaaa9aaabacaeb4b3b7b9bdc4c1bab2a9a1989184818e9ba8b5c1cedbd4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000020c16202c3945515d67727f8b96a1acbac3ceddd3c7baaea3998e8174695f53463c312228343f4a54606c7883909da7b1bcc8d4d0c6baaea3988d8174695f53463c31261a0e040000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000030f1c28333f4a546673808c99a6b3bfccd9e0d3c7bbaea399867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f28343f4a545e69717e8a939ea8b2bdc7d1dcd1c7bdb2a89d938a7e70695e53493f33271f150b010000000000000000000000000000000000000009141f2933414a53585b5753504a454039352f292433404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130004101d2935404b5565727f8c98a8a8a8a8a8a8a8a8a8a7978a7e7164574b3e31261a0e0000000000000004101c2834404b5466737f8c99aaa8a8a8a8a8a8a8a8a8a8a8a89b8f8275665c5044382b1f1206000000000000000814202d3a4753606d7a86929fa8a8a8a8a8a8a8a89f92867a6d6054473a2d211407000000000000000000000000000000000000000000000000000e1a25313d4a5763707d8a98a3aebac7d3c9bdb2a8978a7e7164574b3e3024190d0100000000000000000000000000000000000b16212a36424d57606d79849199a3afb9c3cdc5bbaea39991847a80868f939ea1a9afbabfc6c5beb6afa49c938e81776c605a50473d31271d120700000000000002000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c667884919eabb8c4d1dedfd2c5b9ac9f9286796d6053463a2d2013060000000000000000000000000000060e151a1f2122252525252525252525252525252525252525252525252525252525252525252525252525252525252522211e1a150e0600000000000b1825313e4b5864717e8b97a4b1becfdacfc2b6a99c8f837669575f676d737c838a90959c9fa3abacafb5b5b8b9bebcbdbdbebdbdbcbeb9b8b6b4b3adabaaa29f9b95908a847d766e69625a514c433b322921170e05000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000006111c26303a434d575f696e7b838e939fa2aaafb8bcc2c7ccd2d4cfcac6c5c1c0bbb9b8b7b6b6b7b8babfc0c4c5c3bcb8afa8a09792867b808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000008131e2935414c55606d7985919ea8b2bdccd5d6cbbfb4aa9f92867b6e61574d42332a20232e3844505b66707d8a959fabb8c2cdd6cbbfb4aa9f92867b6e61574e42372b20150a0000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000b17222d3f4c5865727f8b98a5b2becbd8e3d7cbbfb5ab94877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d17232e38424d57616c75818e96a0abb5c0cbd7d9cfc3baafa59e92857b6e655b50443c31271d1207000000000000000000000000000000000000020e1a26313b45535c646764605c54514b454039352f33404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130006131f2c3845515d6776828f9b9b9b9b9b9b9b9b9b9b9b95877b6e6154473b2e21140900000000000000000c18232e3d495663707c89989b9b9b9b9b9b9b9b9b9b9b9b9b988b7f7265544a3f34281c1003000000000000000613202c3945515d677683909b9b9b9b9b9b9b9b9b9b998a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000914202d3a4753606d7a86929facb9c5d2cec0b4a79a8d817467564c4135291d11050000000000000000000000000000000004101b27323a46535f69737f8c95a0abb5c0cbc5bbb0a69f92877c6f737b828a91979ea5aeb4bcc4c7c0bbaea59d938c80736c61594f43392f24180c03000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54697683909ca9b6c3cfdce0d3c7baaea399887c6f6255483c2d22170b000000000000000000000000000000030a0f12151518181818181818181818181818181818181818181818181818181818181818181818181818181818181514120e09030000000000000916232f3c4956626f7c8995a9b3bec9d5d0c4b7aa9d918477665c555d606a6f787d83898f92999c9fa3aba8abadb3afb0b1b1b0b0afb3adaba9a7a9a19e9b98928e89837e78706c625f575045413a312920170f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000a141e28313b454d575e696e79818b92989ea5abb1b9bbc0c6c8ccd2d1d2d2ccc8c6c5c3c3c3c4c5c6c9c6c3bcb8b1aca59d9691857c74808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000010d1925303945515d67727f8c97a1adbac4ceded3c7baaea3988d8074695e53453b3121181c28333f4a54616c7783909da6b0bcc7d3d0c6bbaea3998e81746a5f53473c32261b0f0400000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000000061824313e4b5764717e8a97a4b1bdcad7e7dcd1bbaea195887b6e6255483b2f2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d7a849199a3afbbc2ced7d5ccc0b9ada1978f82776c60584e43392f23180e05000000000000000000000000000000000005121e2a36424d57646f74716d66605c54514b45413a36404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000714202d3a4753606d79858e8e8e8e8e8e8e8e8e8e8e8e8e8377695e52463a2d20140700000000000000000714202d3a4753606d79868e8e8e8e8e8e8e8e8e8e8e8e8e8e8e887c6f6255483c2e23170b000000000000000004101d2935404b556673808c8e8e8e8e8e8e8e8e8e8e8e8e8174685b4e4135281b0e0000000000000000000000000000000000000000000000000006131f2c3945515d6776828f9ca9b6c2cfd0c3b7aa9d908477685d5246392d201307000000000000000000000000000000000713202c38444f59616e7b86929fa8b1bdc7c9beb3a99f948c7f726a696e757d848e939fa2aab2bac3ccc0b7afa59c928b7e716b60554b4035292015090000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e414d5a6774808d9aa7b3c0d0dbe3d7cbbfb4ab978b7e716453493f33271b0f0300000000000000000000000000000000030608090b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0808060200000000000000000714212d3a4754606d7a8797a1adb9c6d2d2c5b9ac9f9286796d605351585f656c70767c82868b8f9299999c9ea1a9a2a3a4a4a4a3a3a9a29e9c9a9897918e8a86817d77716d66615a534d453f352f281f170e060000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000020c161f29333b454d575e676d757f868f939d9fa7acafb5b9bbc0c2c4c5c7cbd1c9c9d0cac6c5c3c1beb9b8b1aca7a09d938e847c6f74808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000005111d2a36414c56606d7a85929ea9b3beccd6d6cabfb4aa9f92867b6e61574d42332a1f0f17222d3842505a63707d89949fabb7c2ccd7cbbfb5ab9f92877b6e62584e43372b20160a00000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6e2d5c9bcafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e29333e45515d676f7c87929fa7b1bcc5d0dbd6cabeb3a99f948c7f726a5f554b40342920160c02000000000000000000000000000000000714212d3a46535f6974817e78716d66605d55524c4641404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000815222f3b4855626e7b81818181818181818181818181817f7265564d42362a1e1105000000000000000006131f2c3845515c67738081818181818181818181818181818181776c605346392d2013060000000000000000010d18242f3c4955626f7c818181818181818181818181818074675a4d4134271a0e0000000000000000000000000000000000000000000000000004101d2935404b5565727f8c98a9b2bec9d2c6b9ac9f93867a6d6154473a2e211407000000000000000000000000000000040f19222f3b4854606b75828f98a3aebac3cfc6b9ada1978f82776c605f616b707a818a9298a1a8b1b9c3c9c1b7aea49f92877d6f675d51453c31261a0f040000000000000000000000000000000000000000000000000000000000000000000000000000000000061825313e4b5864717e8b97aab4bfcad6e2dcd1c1b4a79b8e8174655b5044372b1f1205000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d687885919eabb8c4d1d3c7baaea398887b6e6155484e535b60646b6f757a7e82868a8c8f91979595969797979696949792908d8b8885817e7a75706b64605c545047423c3329241e160d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000040d182129333b454d555d606d727b828a90959c9fa4abacafb6b5b7b9bbc0bcbcbcbbbfbab8b6b4b3adaba7a09d95918a817a6e6a74808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000030d18212d3946525e6873808c97a2adbbc4cfded3c6baaea2988d8073695e52453b3121180e111c262f3e4855616b7683909ca6b0bbc7d3d1c6bbafa3998e81756a5f53473d32271b0f04000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5e2d6c9bdb0a3968a7d7063574a3d3024170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c17212935414c55606b73808c959faab3becad6dacfc5bbb0a69f92867c6f675c51453d32281e1308000000000000000000000000000000000815222e3b4855616e7b888a847e79726d67605d56524c464d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000814212e3a47535f696e7575757575757575757575757575726d6256443b3025190e02000000000000000004101c2934404b55636e73757575757575757575757575757575746c655b5044372b1f12050000000000000000000715222e3b47545f6a6f75757575757575757575757575746e64584c3f33261a0d00000000000000000000000000000000000000000000000000000c18242f3c4855626f7c8897a1adb9c6d2c8bbafa49a8a7d7063574a3d302417070000000000000000000000000000000a16212d39444f5963707d89949eaab4bfccc6bcb0a69e92857a6e655b535961686d757e869196a0a7b1b9c3c9bfbaaea3999184796d60584e43372b20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7b8898a2aebac6d3e0ded1c4b8ab9e9185786c605346392d20130a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060809080603000000000000000000000000000000000000000004111d2935414c566976838f9ca9b6c2cfd7cbbfb4aa978a7d7064574a41495053596063686d71767a7d8082858788898a8a8b8a8a8988868583817e7b7875716d6763605953504a423e37312a2119130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000060f182129333b434b515b62696e757d83898f93999d9fa4aca9aaacafb5afafafafb4aeacaaa8a9a19e9a95918b837d746d676774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000009141f2a36424d57616d7a85929fa9b3becdd6d6cabeb3aa9f92867a6d61564d4233291f0f060a141d2c38444f5963707d89949fabb7c1d0d7cbc0b5ab9f93877c6f62584e43372b21160b000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdcad7e3d6c9bcb0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f19242f3a434f59606d78839098a2aebac1ccd6d7cdc2baaea3989083796d60594f443a3025190f06000000000000000000000000000006131f2b37434e5866737f8c96918b847f79736d68615e56534d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130006121e2b37424d575f62686868686868686868686868686865625b514532291f1409000000000000000000000c18232f3943525c636668686868686868686868686868686868605b53493f33271b0f0300000000000000000006131f2b37434e585f626868686868686868686868686867645c52473c3023170b00000000000000000000000000000000000000000000000000000715212e3a47535f6a7885919eabb8c4d1ccc0b6ac9a8d8073675a4d402e23180c0000000000000000000000000000030f1b27323c4955616c7683909da6b0bcc6cbbfb4aa9f948a7e71685e53494f565d616c717c849095a0a7b1bac4cbbfb4aba0968c80736a5f53473c32271b0f02000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929facb8c5d2dfdfd2c6b9ada197887c6f6255493c32261b0f0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13151615130f0a04000000000000000000000000000000000000010d19242f414e5a6774818d9aa7b4c0d0dbd1bfb2a5998c7f726653493f3f44464f54565e6165686d707375787a7b7c7d7e7e7d7d7c7b7a787674716f6c6564605d55544f46443f38302b261f180f08010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000060f1720293139404551575e616b70767d82878c90939a9a9c9e9fa3aba2a3a2a2aaa29f9d9b9897928e89847e78706b605d6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000020e1a26313a46525e6973808d98a2aebbc5cfdfd3c6baaea2988d8073685e52443b3021170d00020b1c27333d4854606b76828f9ca6b0bec7d2d1c7bbafa49a8f82756a6054473d32271b10050000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313d44505c666e7b85929fa5afbac4d0d9d7cbbfb4aaa0958d80746b61564c41362a21180c03000000000000000000000000000815222e3b4754606a7784919d9e96918c857f7a736e68615e575a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300020e1a26313c454d53555b5b5b5b5b5b5b5b5b5b5b5b5b5b585651483f3420170d020000000000000000000007121d2731404a52575a5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b53504941382d22170b00000000000000000000030f1b26323c464e54555b5b5b5b5b5b5b5b5b5b5b5b5b5a58524a40362b1f1307000000000000000000000000000000000000000000000000000006121f2b37434e586875828f9ba8b5c2ced2c3b6a99c90837669554b4034281c10040000000000000000000000000007131f2c38434f5964707d8a959fabb8c1cec7baaea3988f82766c61564d41444c525a616a6f7b839095a0a8b2bdc6c6bdb2a89f92867c6e62584e43372b1e13080000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667683909ca9b6c3cfdae1d5c9beb3a9998c7f7266584e43372b1d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161b1f2223221f1b160f07000000000000000000000000000000000000081925323f4c5865727f8b98aab4bfcad6cec2b5a89b8f8275655b504437373d44484c5254565e61646669686d6e6f7071717170706e6d6769676562605b5353514b48443d38342e261e1a150e0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000050e171f282f353f454d535961636b70767b7f83868a8d8f9192999595969695959892908e8c8885817c77716d6661595a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000005121e2a36424d57616e7b86929faab4becdd7d6cabeb3a99f92857a6d61564c4132291f0f0500000b16212c38444f59626f7c89939eacb6c0ccd8ccc0b6ac9e93897c6f62594f44382c21160b0000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000005111d2a36414c566773808d9aa6b3c0cdd9e2d6cabfb4aa95887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f28343f4a545f69717e8b939ea8b2bdc7d2dcd1c6bcb1a79f93887d70685e52463f332a1e150b00000000000000000000000003101c28343f4a54626f7c8895a0a8a19e97928c85807a746e69625f6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000915202a333c4247484e4e4e4e4e4e4e4e4e4e4e4e4e4e4b4a453f362d230e050000000000000000000000010b151f2e3840474b4d4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e46443f382f261b110600000000000000000000000a15202a343c4347494e4e4e4e4e4e4e4e4e4e4e4e4e4d4c4740382f24190e030000000000000000000000000000000000000000000000000000030f1b2631404d596673808c99a6b3bfd2d1c4b7ab9e918478675c5145382c1f1306000000000000000000000000000915222f3b4854606b7683909da7b1bccac9bdb2a89f92867b6e625a50443b3a414650585f696e7a839096a0abb4bfcbc4baaea3998f82766a6054473a3024190d0100000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546673808c99a9b3becad6e2dacfc3b7aa9d9084776a5f5447392f24180d010000000000000000000000000000000000000000000000000000000000000000000000000000000007101920272b2e2f2e2b272019100a00000000000000000000000000000000000916232f3c4956626f7c8998a2aebac6d3d1c5b8ab9e9285796c605346392d32383a4146474c52545759565e61626263646464636361605d555a58555350494745403a38332b28231c140c09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000050d161d2429333b42464f55596063696e72767a7d8082848687888989898888878583817f7c78746f6a64605c544f5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000040e19222d3a46535f6974818d98a3aebcc5d0dfd3c6baada2978c8073685e52443a3020170d00000005101b27323d4754606a75828f9aa4afbbc7d1d2c7beb0a69c8f82766b6054483d33271c0b0200000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e01000000000000000000000000000000000000000000020c13202d3946525e6876828f9ca9b5c2cfdcdfd3c6baaea298877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d17232e38424d57616c75818e96a1abb5c0ccd7d8cfc3bbafa49a91857a6d615a50453c30271c1207000000000000000000000006121f2b3844505c6673808d9aa8b1ada9a19e98928d86807b746e696673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000030e18212a31373a3b42424242424242424242424242423f3d3a342d241b1100000000000000000000000000030d1c262e353b3f40424242424242424242424242424242413937332d261d140a000000000000000000000000040e19222a32373b3c42424242424242424242424242413f3c362f261d1208000000000000000000000000000000000000000000000000000000000a1824313e4b5764717e8a97acb6c0ccd2c6b9ac9f9386796d6053463a2d20130700000000000000000000000005111d2a36414c56636f7c89959fabb9c2cdc5b9aca0968c8073695f53483e3230353e464e565e686e7b849199a3aebac3cbbfb4ab9f94887c6f62564c4135291d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3c4956626f7c8997a1adb9c6d2dfded1c5b8aca095887c6f62554b4035291d1207000000000000000000000000000000000000000000000000000000000000000000000000000000071019222b32383b3c3b38322b221c1306000000000000000000000000000000000713202d3a4653606d7985929facb8c5d2d2c6b9ada197887b6e6255483b30272c3036393a4146474a4d4c525455565757585757565553514b4e4b4846443f3a39352f2c271f1c17171614100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000040c1218212931363e44484f54575e6165686d70737677797b7b7c7c7c7c7b7a797775726f6c6562605853504a4d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000a15202b37434e58616e7b86929faab4bfced7d5c9beb3a99f92857a6d60564c4132291e0e05000000000b16212b37434e58626f7c87939fabb5c0cbd7d0c1b7ab9f94897d7063594f44382c1d140a00000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000020b141e28323a4754616d7a86929facb9c5d2dfdfd2c5b8ac9f928579695e52463a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d7a849199a4afbbc2ced7d8ccc0b6aca1978f82756d62574d42392e23180d04000000000000000000000713202d3a4653606d7985919eabb8b9b3adaaa29f98928d86817b756f73808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000060f1820262b2e2f353535353535353535353535353532312e29231b120900000000000000000000000000000a141c242a2f3233353535353535353535353535353535352d2b27221b140b020000000000000000000000000007101920262b2e2f353535353535353535353535353433302b241d140b01000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c889aa4afbbc8d4c8bbafa49a887b6e6255483b2f2215080000000000000000000000000713202d3946525e6875828e9ba7b1bccbc8bdb2a89e9184796d60574d42362c2429343c444d565e696f7c86929fa7b1bcc8c6bdb0a69a8e8174685d5245392c201306000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7985929eabb8c5d0dbe0d4c8bcb1a79a8d8074675d5145392f23180c0200000000000000000000000000000000000000000000000000000000000000000000000000020c19232b343d43474947433d342e2517110a02000000000000000000000000000006121f2c3844515c6676838f9ca9b6c2d1d6cabeb3a9988b7e7265564c4135291e252a2d3035393a3d4041464748494a4b4b4a4a4948474540413e3c3937332d2c29241d1c1f22232323201c160e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000001070f171f252a33383d44484d5254565d60636769666d6e6f6f706f6f6e6e686a686562605b53544e46443f4d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000000000000030f1b27323a47535f6a74818e99a3aebcc6d0ded2c6b9ada1978c7f72685d52443a3020170d0000000000040f1b27323d47535f6a75818e99a3afbbc6d1d3c7bbb0a69c9083766b6055483e2f261c1106000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000001070b141d26303a44505a65727e8b99a3afbbc7d4e0ddd0c3b7aa9d9083776a564d42362a1e1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e29333e45525d686f7d87939fa7b1bcc5d0dbd2c7beb3a99e938b7e71695f544a4034281f160c01000000000000000004101d2935404b5563707d8997a1adb9c5beb9b4aeaaa39f99928e87827c75808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000060e151a1e212228282828282828282828282828282524221d181109000000000000000000000000000000020a12191f23262728282828282828282828282828282828201f1b17110a02000000000000000000000000000000070e151b1f2222282828282828282828282828282726231f19120b0200000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6d2ccc0b6ac96897d7063564a3d3023170a0000000000000000000000000714212e3a4754616d7a86929facb9c2cdc5b9aca0968a7e71675c51453c312419222a323b444d565f6a727f8c95a0acb8c4cfc2b8ac9f92867a6d6054473a2d22170b0000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b6675818e9baab4bfcad6e2d9cec3b8ab9e9285796d60554b4034291e1308000000000000000000000000000000000000000000000000000000000000000000000000000a141e2b353d464e5456544e463f3728221c140b030000000000000000000000000004101c2834404a546673808c99abb4bfcbd7cfc2b5a99c8f8276685d5245392c20191e2025292d2e313035393a3b3c3d3e3e3e3d3d3b3a38352f322f2d2b2722201d1821272c2e2f302f2c27211a150d0801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000050d141a21282c33383b4246474c5254575a545c6061626263636262615e565b595553504948433d38414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000000000000000006131f2b37434e58626e7c87939fabb5bfced8d5c9beb3a99e9285796d60564c4132281e0e050000000000000a15202b37434e58626e7b87929fabb4bfcbd7ccc2b7ab9f94897d70635a5042382d22170b000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0202020202020202020202020200000305060a0f12181d262f38414c56616c7683909cabb5c0cbd7e3dbcec1b4a89b8e8175685b4e423025190e0200000000000000000000000000000000000000000000040404040404040404040404040404040404040404040404040404040404040404020c17212935414c56606b73808c959faab4bfcad6d9d0c4bbafa59f92867b6e665c51443d31281e1308000000000000000006131f2c3945515d6774818e9ba9b3bec9cac5bebab4aeaba39f99938e8882828f9ca8b5c2cfdbdfd2c6b9ac9f9386796c605346392d2013000000000003090e1214151b1b1b1b1b1b1b1b1b1b1b1b1b1b181715110c06000000000000000000000000000000000000070e1317191a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b13120f0b06000000000000000000000000000000000000040a0f1315161b1b1b1b1b1b1b1b1b1b1b1b1b1a1a17130e08010000000000000000000000000000000000000000000000000000000000000613202c3945515d677884919eabb7c4d1d2beb1a5988b7e7265584b3f3225180c000000000000000000000004111d2935414c5565727e8b99a3afbbc7cbbfb4aa9e9184786d60554b40332a1f12192029323b444e58606d7883909da8b2bdc9c7baaea2988b7f7265544a3f33281c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a5464717e8a98a2aebac6d3e0dfd2c6b9ada2978c7f72675c51453a3025190d04000000000000000000000000000000000000000000000000000000000000000000000006111c26303d474f5860626058514940332d261d150c03000000000000000000000000000c18232e3d495663707d8999a3aebac7d3d2c5b9ac9f92867a6d6054473c31261a1113191d20212425292d2e2f2f3031313130302e2d2c29242522201f1b171319222b32383b3c3d3c38332b261f19130b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000003090e161c21272c30363a3b4145474a4d4a50535455565656555554524c4e4c4846443f38383234414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000000000000000000020b1a232e3b4754606a75828f99a4afbdc6d1ded2c6b9ada1978c7f72675d51433a2f20160c00000000000000040f1b26313c47535f6974818e99a3aebac6d0d3c7bcb0a69d9083776c61544a3f33281c11060000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0f0f0f0f0f0f0f0f0f0f0f0f0f0f060b0f1213151b1d24292f384149525d68717e8a949fabbdc7d1dce1d5c9bdb2a8988b7e7265584b3f322518090000000000000000000000000000000000000004080a0a11111111111111111111111111111111111111111111111111111111111111111111110f19242f3a444f59606d78839098a2aebac1ccd6d6cdc1baaea2989083786d60594f433a2f24190f05000000000000000714202d3a4753606d7985929facb8c4cacfd0cac6bfbab5aeaba49f9b948f8f949eaab7c3d0dcdfd2c6b9ac9f9386796c605346392d201300000000000000020608080f0f0f0f0f0f0f0f0f0f0f0f0f0f0c0b090501000000000000000000000000000000000000000002070a0c0d0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0e06050300000000000000000000000000000000000000000000030608090f0f0f0f0f0f0f0f0f0f0f0f0f0e0d0b0703000000000000000000000000000000000000000000000000000000000000000004101d2935404b556976828f9ca9b5c2cfcdc0b3a69a8d8073675a4d4034271a0600000000000000000000000613202c3945515d6776828f9cabb5c0cbc7baaea3988b7e72665c5043392f21180e0e172029323c44505c66717e8a96a1acb9c5cabfb4aa9c8f8276665b5044382b1f1206000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3a4754606d7a86929facb8c3ced9e2d6cabeb3a99e9185796d60564c41352920160b02000000000000000000000000000000000000000000000000000000000000000000030d17232e38424f59606a6f6a635b52443f382f271e150d040000000000000000000000000714202d3a4753606d7a86929facb9c5d1d3c7bbaea3998b7e7164584e43372b1e13080d11131417191d2021222324242524242322201f1d18181513120f0b16212b343d4348494a48443d373129241e17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000050b10161c1f252a2d3035393a3d403f444648484949494948474641423f3c3937332d2c2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000000000000000a141d2c38444f59626f7c88939eabb5c0cfd8d5c9bdb2a89e9185796d60554b4031281e0e0400000000000000000a15202b37424d57616e7b86929faab4bfcad6cdc2b8ab9f958a7d70665b5044382e23170b0000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1c171b1f2022272b2f353c424a535b606d7a85919ea6b0bccfd9e3dfd2c5b9ada196887b6e6255483b2f2215080000000000000000000000000000000000050b101416171d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1e28323d44505c666e7b86929fa5afbac4d0d9d6cabfb4aa9f958d80736b60564c41352921170b020000000000030f1c28333f4a5464717e8a98a2aeb5b9bec5c8ced0cbc6bfbbb5afaca69e9c9c9ea6b0bbc7d3dfdfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f414d5a6774808d9aa7b3c0cdcec1b5a89b8e8275685b4f422e23170b00000000000000000000000714212d3a4754606d7a86929facb9c5d1c5b8ac9f92867a6d60544a3f31271d0f06050e172028343f4a54606d7984919eabb7c4d0c5b8ab9f9285796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6774818e9ba7b1bcc8d4e1dbcfc5b9ada1978b7f72685e52463d32281d140a0000000000000000000000000000000000000000000000000000000000000000010b151f28343f4a54606b6f7c726d635c504a423930271f160d0500000000000000000000000613202c3945515d6775828f9cabb5bfcbd7cbbfb5ab9c8f82766a5f53473a3025190d03050707080d1113141516171818171716151413100c07090605030f1b27323d464e545656554f47423c352f28231c140c090300000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000050b10141a1e2024292c2d302e34383a3b3c3c3d3c3c3b3b393630322f2d2b27221b2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000000000000000006111b262f384854606b76828f9ca5afbdc7d2ded2c5b9ada1968b7f72675d51433a2f1f160c000000000000000000040e1a26313c46535e6974808d98a2aebac5d0d4c8bcb1a79d9083786c60544a3f34281d120700000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134282828282828282828282828282828282822272b2d2f32373940454e545b656c75818e97a1adb8c2cde1eaded1c4b7ab9e9184786a5f53473a2e211408000000000000000000000000000000000810171c2023242a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a28343f4a545f69717e8b939ea8b2bdc7d2dbd0c6bcb1a79f93877d6f685d52453e33291d140a000000000006121f2b3844505b6675828f9b9fa3abadb3b8bcc3c9cfd1cbc7c0bbb9b0aaa8a8aab0b8c1ccd7e3dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0b0c0d0d0e0e0d0d0c0b0b0a08060603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071825323f4b5865727e8b98a5b1becbd0c3b6aa9d9083776a544a3f34281c1003000000000000000000000a1623303d495663707c8999a3afbbc7cec1b5a89b8e8275685d5242382e1f150b0000050e17232e3844505c6673808d99abb5c0cbc6baaea298887c6f6255493c2f2216090000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c55636f7c8995a0acb8c5cfdbe1d5c9beb3a99e92857a6d61594f443a2f261b11060000000000000000000000000000000000000000000000000000000000000007121d27313944505c666f7d867f736e605b544a423931281f170e050000000000000000000004101d2935404b5564717e8b99a3aebbc7d3d1c6b7ab9f94887c6f62564c41362a1f1509000000000105070708090a0b0b0b0a0a08070604000000000007131f2c38434e586062636059534d45413a342e261e1a140d07010000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000002090e1114191d20212423282c2d2e2f2f30302f2f2e2d2a252622201f1b171a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000000000b17222d38414f59636f7c89949faab7c1d0d9d5c9bdb2a89e9184796d60554b4031281d0d040000000000000000000009151f2a36424d57616e7b86929faab4becad6cdc3b8aca0958a7e71665c5044392e23180c01000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e413535353535353535353535353535353535352d3337393b3e43474b51585f666c77808d939ea9b3becad4dee1d3c7bcb0a6998d807366574e42372b1e120600000000000000000000000000000008111a22282d3031373737373737373737373737373737373737373737373737373737373737373737373737373737372e38424d57626c75818e96a1abb5c0ccd7d8cec3bbafa49991847a6d605a50453b2f261c1106000000000613202d394653606c7882898e92999ea1a9acb1b9bec4cbd0d2ccc7c1bbb7b5b5b7bbc1cad3dee9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050708090e121415171819191a1b1b1a19191817171513120f0b06070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcd2d2c5b8ab9f928578665c5044382b1f1206000000000000000000000c1926333f4c5966727f8c99abb5c0cbcabfb4aa988b7e7165564c4130261c0d0300000006111c28343f4a5463707d8999a3afbbc7cabeb3aa988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a4854606b7784909da9b3becad6e1dacfc4b9ada1978e81746b60564c41382d221712060000000000000000000000000000000000000000000000000000000000071318242f39434d57606d7883908c80746c665c544b433a312920170f05000000000000000000010d18242f3a4754606d7a86929facb9c5d0d3c7bbb0a69a8d8174685e52463c31261a0f060000000000000000000000000000000000000000000000040e1a232e3b4854606a6f706b625f57524c443f38302a261f18130c0400000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000205080d11131417171c1f202122232323222221201e19191513120f0b1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000000030f1b27333f4953616b7683909ca6b0bbc9d3ddd2c5b9aca0968b7e72675c5143392f1f160c0000000000000000000000030e1a25313b46525e6873808d98a2aebac5cfd4c8bcb1a79e9184786d60544b4034281d1207000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e42424242424242424242424242424242424242433f4446484b4e54555d606a6f78818d929da5afbbc4cfdce3d9cfc7b7ab9f94887b6e6255483c31261a0e02000000000000000000000000000005101a232c33393c3d4444444444444444444444444444444444444444444444444444444444444444444444444444444444444445505a606d7a849199a4afbbc3ced8d7ccc0b5aba1968e81756c61574d42382d22170b0200000006121f2b3844505b666c767c81868d92979da0a7adb2babfc6ced7d4ccc7c3c2c2c3c7ccd3dce5efdfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306080d111414181a1e21212425262627282727262525242322201f1c17171413110d0804010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895acb6c0ccd3c6baada29786796d6053463a2d201307000000000000000000020f1c2835424f5b6875828e9ba8b5c1d1c6baaea298887b6e6255483b2f22140a00000000000c17232e3a4754606d7a86929facb9c5d0c0b3a79a8d8074675a4d4134271a0e010000000000000000000000000000000000000000000000000000000000000000000000000000000008131e2c38434f5965727f8b97a2adb9c5cfdae1d6cabeb3a99f93887c6f685d53493f33272417110a0200000000000000000000000000000000000000000000000000030b1218252935404b555f69727f8b95928d80786d665d554c433a322921170f050000000000000000000713202c3945525d6876828f9ca9b3becad6ccc2b8ac9f92867a6d61574d42372b21180d04000000000000000000000000000000000000000000020c16202c38434e58626f7c7d756e69605d56504a423d363129241d160d04000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000001040707060c101213151516161616151414110d08090605030e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000000000005121f2b3744505b65707d89949fabb8c2ccdbd4c8bdb2a89e9184796d60554b4031271d0d0400000000000000000000000009141f2a36414d56616d7a85929fa9b3becad6cec3b8aca0968b7e71665c5145392f24180c010000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4f504950535557586062676d737c828e939da4aeb7c1cdd6e1dcd1c7bdb0a69c9083766a5f53473a2a2015090000000000000000000000000000000b17222c353e44494a505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050525d68707d87939fa7b1bcc6d0dbd2c7bdb2a89e938a7e71695e544a3f33281d140a000000030f1c28333f4a545b606a6f757b80858b91959ea1a9aeb4bcc2cbd1d8d3d0cfcfd0d3d7dee5eeecdfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001040a0f1315191e202125252a2d2e303232333434343333323131302f2d2b28222321201d1913100d0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a879aa4afbbc8d4cabeb3a993867a6d6053473a2d20140700000000000000000003101d293643505c6976838f9ca9b6c2cfc5b8ac9f928579695f53473a2e21140200000000000613202c3945515d677884919eabb7c4cec1b4a89b8e8175685b4e4235281b0f0200000000000000000000000000000000000000000000000000000000000000000000000000000000010f1b27323d4754606d7a85929ea9b3bec9d5e0dacfc5bbafa49a91847a6d655b50443f3627221b140b050000000000000000000000000000000000000000000000050c151c2328373f45515d676e7b86929f9c928d81786d675d554c443b332921170d03000000000000000004111d2935414c5665717e8b97a2adbac7d2d3c6baaea2988d8074695f53473f33291f160c03000000000000000000000000000000000000000008131e28323a4854606a768289827b736d68605c544f46423b352f281f160c010000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000000000000000000306070809090a0909080807050100000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000000000000030f1c28333f4a54606c7883909da6b0bbcad3ddd1c5b8aca0968b7e71665c5143392e1f150b00000000000000000000000000030e1925303b46525e6873808c97a2adb9c4cfd4c8bdb2a89e9184796d60554b4035291d13070000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5c535b606264676a6f7479808790949da5aeb7c0c9d3dfddd7cbc0b5ab9f94897d7063584e43372b180e03000000000000000000000000000004101c28333e475055575d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d56606b73808d959faab4bfcad6d9d0c4baafa59f92857b6e665b50443d2f261c11060000000b17222d38424a50586062696e73797e838b91979fa3aab1bbbfc6cfd6dcdbdbdcdfe3e9eff7ecdfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d11151b1f22252a2d2e3131363a3b3d3e3f4040414140403f3e3e3d3b3938332d302d2c2924201d1812100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939facb9c6d2d0baada094877a6d6154473a2e21140700000000000000000004111e2a3744515d6a7784909daab7c3d0c4b7ab9e9184786b574d42372b1e1206000000000004111d2935414b556a7784909daab7c3cfc2b5a99c8f8276695c4f4336291c100300000000000000000000000000000000000000000000000000000000000000000000000000000000000a16202c3945515d67727f8c97a1adb9c4cedae1d8ccc0b6aca0968f82776c605a50483e332d261d160e090300000000000000000000000000000000000000040a0f171e272e343f49515b606d79839098a2a49d938e82796d675e564d453b33291f14090000000000000000010d1924303a4753606d7a85929fabb5c0ccd6cabfb4aa9f92867b6e615a50453b31281e150c0400000000000000000000000000000000000108131924303a444f59626f7c89948f86807a726d666059534d45413a31281d13070000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000000010b151f2b3844505b66717d8a959fabb8c2cddcd4c8bcb1a79d9184786d60544a4030271d0d03000000000000000000000000000008141f2935414c56606d7a85929ea9b3bec9d5cec3b9aca1968b7f72675d51453a2f24180d0200000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d817468686868686868686868686868686868686868686868696a656c6e7174777c81858d92999fa6afb7c0c9d2dbded5cbc3bbafa3998f82766b6054463c31261a060000000000000000000000000000000814202d3944505a61646a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6d78839098a2aebac6d3e0d6ccc1baada2979082786c60584e42382d22170b00000006111c262f383f444e54575e61676d71787e848c92989fa7aeb5bdc4ccd4dde5e9ebeff4faf9ecdfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e13181d20272b2e3036393b3e414246484a4b4c4c4d4e4e4d4c4c4b4a4a4846443f3f3d3a39352f2c29241d1c160f0a0300000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667885929eabb8c5d1c7bbaea194887b6e6155483b2e22150800000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d504431261a0e020000000000010d18242f43505c6976838f9ca9b6c2cfc3b6a99d9083766a5d5043372a1d1004000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c55606d7985929ea8b2bdc9d5dfddd2c7beb2a89e938c7f726c625a50443f382f28201a150e0904000000000000000000000000000001050a0f151b212930394044515b636d75818e95a0aaaea59e948f82796d685e574d453b30251a0e0200000000000000000813202c3945515d6773808d99a4afbbc7d4d0c6bbaea3998f82756c62574d433a30271e160d07000000000000000000000000000000040c1319252935414c56616b75828f9c99928d857e78706b615f57514b433a2f24180d0100000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000000000007121d2834404a54606c7883919da7b1bccad4ddd1c5b8aca0958a7e71665c5042392e1e150b000000000000000000000000000000020d1925303a45525d68727f8c97a1adb9c4cfd5c9bdb2a89e9184796d60554b4135291e130800000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d817575757575757575757575757575757575757575757575767777797b7e8083888d92979fa3abb0b8c0c9d2dbded5ccc3b9b1a79f92877c6f62594f44332a2015090000000000000000000000000000000a1623303c4955616c707777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777b85929facb8c5d2dfded6cabeb3a99f948c7f726a60544a3f33281c0f030000000a141d262d333d43474d52555d60656c7179808690959fa3abb2bac2cbd3dbe5edf6fffff9ecdfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d141a1d24292c32373b3c4146474b4e4d5354575859595a5b5a5a59585857565553504a4c4a4745413a39352f2c27211a150d08020000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546b7784919eaab7c4d1c8bbaea295887b6f6255483c2f22150900000000000000000004111e2b3744515e6a7784919daab7c4d0c4b7aa9e9184776b564c41362a1e1105000000000000071d293643505c6976838f9ca9b6c2cfc4b7aa9d9184776a5e5144372b1e11040000000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a45515d67727f8c96a1acb9c1cdd6e1d9d0c4bab0a69f93887e716c615a5049413a322b26201a15100c070604010001000100020507080d11151a20272b333b424a515b636d727f8c939ea7b1b7afa69e9490837a6e695e574d42362a1e1205000000000000000004111d2935404b55616e7b87939facb9c1cfd7cbbfb5ab9e948b7e71695f564c423930281f18120b060000000000000000000003060b0d161e2429373f45525d68707d8a949ea39f97928b837d756e69605d554b4135291d110400000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000c18232f3844515c66717e8b95a0acb9c3cddcd4c8bcb1a79d9083786c60544a3f30271c0c030000000000000000000000000000000008131e2935414c56606d7985919ea8b2bdc9d5cec4b9ada1978c7f72675d51453a3024190d02000000000000000f1b2835424e5b6875818e9ba8b4c1cedbddd1c4b7aa9e9184818181818181818181818181818181818181818181818283838485888a8d90959a9fa2a9aeb5bdc2cad2dbded6ccc3bab1a79f958c80736a5f53473d3321180e030000000000000000000000000000000a1724313d4a5764707e8383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838385929fabb8c5d2dee6dbd0c5bcb0a69f92877c6f665b5044382b1f1206000000020b141c222832373b42464b51535b60676d737b838c9299a1a8b1b9c1c9d3dbe5edf7fff9ecdfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b13191f252a2f35393d4347494c5254585b575e616365656667676766666564646362605b54595654514c4745403938332b262019130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e44515d6a7784909daab7c3d0c8bcafa295897c6f6256493c2f23160900000000000000000003101d293643505c6976838f9ca9b6c2cfc5b8ac9f928579685e5246392d20150a000000000006121e2b37424e576a7784909daab7c3cfc3b6a99c908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e2935404b55606d7984919ea5afbbc4cfdae2d6ccc1bbafa49a92877e716c605b534c443e37312b261f1d181413100d070d0d0e080e111414191d20262b32373e454d545c606d727f8c919ca5afb9c1b8b0a69f9590837b6e695e52463a2d2014070000000000000000010d18242f3a46535f6975828f9ba5afbdc6d1d1c6bdb0a69f92867b6e685d544b433a3128231c17110d08070706060708090a0f12161c1f282f353f49515b606d7a84919ea6aea9a19e959089827b736d675d5145392c20130600000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000004101c2934404b55606d7984919ea7b1bccbd4dcd1c4b8aca0958a7d71665b5042382e1e150b0000000000000000000000000000000000020d19242f3a45515d67727f8b96a1adb9c4ced5c9beb2a99e92857a6d60564c4135291e1308000000000000000f1b2835424e5b6875818e9ba8b4c1cedbded2c5b9aca096918e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8f90919298979a9da0a7abadb3bbbfc6cfd4dcdad5ccc4bab2a8a0959083786d60584e43352b210f06000000000000000000000000000000000b1825323e4b5865717e8b9090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909297a2adbac6d3dfece1d7cec2bbafa3999184786c605346392d20130600000000020a111720272b30363940454950555d60696e787f8791969fa7afb7c1c9d3dbe5eef7ffecdfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171e242931363a4045474e5456565e6164676a696e707172737374747373727171706e6c66686563605d5553514b48443d373129241e160e07000000000000000000000000000000000000000000000000000000000000000000000000000000061d2a3743505d6a7683909da9b6c3d0c9bcafa396897c706356493d3023160a000000000000000000020f1b2835424e5b6875818e9ba8b4c1cec6baaea298877a6e6154473c31261b1108020000020a14212e3a47535f6a7885929eabb8c5cec1b5a89b8e8275685b4f4235281c0f02000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3945515c67707d89939da9b3bec9d5dcded8ccc0b6aca39992877e736c655e565047433c37312c292420201d181b1a1a1b1b191e2021252a2d31373d434750575e666d737f8c919ca3adb7c1cac1b8b0a7a09591847b6e6154483b2e21150800000000000000000007131d2a36424d57636f7c89939eabb5bfcbd7cfc1baaea29891837a6d665c554b433c342e27221b191514131213141415171a1f21272c313a4145515b636d75818e97a1adbbb3ada7a09d938f8680796d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000000020c16202c3845515c67727e8b96a0acb9c3ceddd4c8bcb1a79d9083786c60544a3f30261c0c0300000000000000000000000000000000000008131e2935404b55606d7984919ea8b2bdc9d5cfc4b9ada1978c7f73685d52453a3025190d020000000000000f1b2835424e5b6875818e9ba8b4c1cedbe1d5c9bdb2a8a09e9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9c9d9e9fa2aaa7aaacb1b8babec5cbd1d8dfd6cfc9c0bab2a8a09690837a6d665c51463c3223190f00000000000000000000000000000000000b1825323e4b5865717e8b989d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9fa2a9b3becad6e2eee9e0d7cbc0b5aba09686796d6053463a2d201307000000000000060b161b1f252a2f35383f444b51575f666d737c8490959ea5afb7c1c9d3dce5f0f9ecdfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c141c23282f353b42464b515358606266686e717476787b7d7e7f7f808181807f7f7e7d7d7b79777472706d6764605d55554f47433c353028201910070000000000000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683909ca9b6c3cfc9bdb0a3968a7d7063574a3d3024170a000000000000000000010e1a2734414d5a6774808d9aa7b3c0cfcabfb4aa988b7e7165584e43372b2319130e09090b141d27303b4855626e7b8897a2adb9c6cdc0b4a79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2934404b55606b74818e97a1adb9c0cad3deddd2c7beb5aba399928b80776d68615a534e47423c38352f2d2c29242727272728252a2d2e3036393c43474e545a61696e78808c919ca3adb5bfc9d3cac2b9b0a69e91847a6d6053473a2d201407000000000000000000010e1a26313b4854606b75828f99a3aebbc5cfd6cabfb4aaa0958f82786d675d554e444039332d2a252221201f2021212224262b2e33383d434c515b626d727f8c939ea9b2bebeb9b1aca59e98928a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000008131e2935414b55606d7984919ea8b2bdcbd5dcd1c4b8ab9f958a7d70655b5042382d1e140a00000000000000000000000000000000000000010c18242f3945515c67717e8b96a0acb9c3ced5c9beb3a99f92857a6d60564c41362a1f14090000000000000f1b2835424e5b6875818e9ba8b4c1cedbe5d9cec4bab2acaaa8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a9aaaaacaeb4b3b7b8bcc3c6cad0d7dbd6d3cdc4bdb9afa8a19691847a6e685d544b40342a20110700000000000000000000000000000000000b1825323e4b5865717e8b98a4aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabadb3bbc5d0dbe6f2f2e8dcd1c7bdb2a89386796d6053463a2d20130700000000000000040a0f141a1d24292d333a40454d545c606a6f7a838e939ea5afb7c1cad3dee8f2ecdfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f171e262e343a41454d53555d60656a6f73777a7e818385878a8b8c8c8d8e8d8d8c8b8b8a89888583817f7d7a75716d67636059534e46413a322b2219110800000000000000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfcabdb0a4978a7d7164574a3e3124170b000000000000000000000c1926323f4c5965727f8c98a8b2bdc9d0c2b5a89c8f82756a5f53473f352a251e1a1818191d262e39434f5965727f8b98a9b3becaccc0b6ac998c7f7366594c403326190d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c18232f39434f59616d7a85919ea4aeb8c1ccd5dfd9d0c7bdb5aba39f928c817a706c625f58534d4745403c3a39352f34343334353036393b3d4146474e535860626c707b838d929ca3adb5bfc7d1d7cbbfb4ab9f948a7e71675d5145392c2013060000000000000000000009141f2c38434f59626e7b86929fa9b3becad6d0c5bcb1a79f948f81796d675f58514a443f3836302f2d2d2c2d2d2e2f3131373a3d44484f555d606d727f8b919ca5afbbc4c9c3bcb8afa79d9083786c605346392d20130600000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000010d1924303945515d67727f8c96a1adbac4ceddd3c7bbb0a69d9083766b6153493f2f261c0c02000000000000000000000000000000000000000007121d2834404b55606d7884919ea7b1bcc8d4cfc5baada2978d8073685e52463b30251a0e0300000000000f1b2835424e5b6875818e9ba8b4c1cedbe7e0d5ccc4bdb9b7b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b5b6b6b7b8babfc0c3c5c8ced3d6d9d4d0cac6c1bbb2ada59d9691847b6e685e564c42392e22180e0000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b8babec5cdd7e1ecf7f9eee3d9cfb9aca09386796d6053463a2d20130700000000000000000002090e12181b22272f353c424a505860686e79818e939ea5afb8c1ccd6e0eaf4dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1117212930383f444c52575e61676d72777c8083878b8e909298969898999a9a9a9999989797969892908e8c8986827e7a75706b625f58524c443c342b231a1108000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfcabeb1a4978b7e7164584b3e3125180b000000000000000000000915222f3c4855626f7c8896a1adb9c5d2c5b9ac9f92877c6f625a50473e36302b262525252a2f38404b55606b7683909da9b6c3cfc8bbafa49a8a7e7164574b3e3124180b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313d46525d68707e8a929ca6b0bac3cdd6dfd9cfc6bdb5aea49c938f857d756e6a625f5753514b49474540424140404142434146474a4c5254585f626a6f767e8590959da4adb5bfc7d1d4cbc2baaea3998f82766c61554b4035291d110400000000000000000000030f1b27323d47535f6974808d97a2adb9c0ccd5cec3b9b0a69e938f82796f6a605c54504946413e3c3a3a38393a3b3c3d404347484f545960676d757f88939fa3adb7c1cdd5ccc3b8ab9f958a7d70655b5044372b1f120500000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000005111d2935414c56606d7a85929ea9b2bdccd6dcd0c4b7ab9f94897d7063594f41382d1d140a000000000000000000000000000000000000000000010c18232e3944505c66717e8a95a0acb8c3cdd6cabeb3a99f92867a6d61574d42362a1f140900000000000f1b2835424e5b6875818e9ba8b4c1cedbe3e7ded5cec9c5c4c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c2c3c4c5c6cad0d0d1d4d6d3d2cec8c6bfbab8afa9a19e938e847b6e695e564c443a30271d10060000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1bec3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c5c6cad0d7dfe9e3e3e3e3ead3c6b9aca09386796d6053463a2d201307000000000000000000000001070c11171d242930383f444e565e676d78818e939ea6b0bac4ced8e2e3dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141b2227333b424a50565d60696e747a7e83898c90939a9a9d9fa2aaa4a5a6a6a7a7a6a6a5a4a4aaa29f9d9b9898928f8a86817d766e6a615d564e463d352c231a110700000000000000000000000000000000000000000000000000000000000000000000030f1c2936424f5c6975828f9ca8b5c2cfcabeb1a4978b7e7164584b3e3125180b000000000000000000000815212e3b47535f6a7884919eabb8c4cfc7bbafa3998f82756c62595046413a3731323130363a4149515c67707d89959fabb8c4d2c6b9ac9f93877a6d6154473a2e211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2935414c56616c73808d949ea8b2bbc4cdd6dfd8cfc6bfbbaea59e97928a827b746e6964605d555653514b4e4e4d4d4e4e4f4d525457565e61656a6f757c828a92979fa7aeb6bfc7d1d6ccc2b9afa59f92867b6e625a50433a2f24180d0100000000000000000000000a16212b37424d57616d7a85929ea5afbac3ced5cbc2b8afa59e948f847c726d66605b53524c4b48474644464747484a4c4e53555960636b707a818b939aa4afb5bfc9d3cfc3baafa59d9083766b6153493f33271b0f0300000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000030d17212d3946525d68737f8c97a1adbbc4cfded3c7bbb0a69c9083766b6054473e2f261b0b020000000000000000000000000000000000000000000007121d28343f4a54606c7883919da7b1bcc8d4d0c5baaea2988d8073695e52463b31261a0e03000000000f1b2835424e5b6875818e9ba8b4c1ced6d6d6d6d6d9d5d2d1cecececececececececececececececececececececececfd0d1d2d3d3d2d1d0d0cbc7c5c3bdb8b4aeaca59e96918a817a6e695f574d443b32281e150b000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d2d3d6dbd6d6d6d6d6d6d6d6d3c6b9aca09386796d6053463a2d2013070000000000000000000000000000060b13181e262e343d444d555c666d78818e949ea8b2bcc6d0dcd6d6d2c6b9ac9f9386796c605346392d20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c141d262d333e454d545c60686d737b80858b9095999d9fa4aca9abaeb4b1b2b2b3b4b4b3b2b2b1b0b4aeacaaa7aaa39f9b98928e89827c746d6860584f473e352c23190c0300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683909ca9b6c3cfcabdb0a3978a7d7064574a3d3124170a0000000000000000000006121f2b37434e586774818e9aa8b2bdc9cbc0b5ab9e948b7e716b615a524c4742403f3e3f42464c535b606d7983909da7b1bcc8d0c3b6aa9d908377685e5246392d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d1924303a44505a606c78828f96a0a9b2bbc4cdd6ded8d1cbbfb7afa9a19e938f87817b76716d676662605d555b5a5a5a5a5b5c565e616466686d72777c81878f949ea2a9b1b9c0c8d1d5ccc4bab1a79d938b7f72695f53483e31281d1307000000000000000000000000040e1a26313c46525e68717e8a939da8b2bcc6cfd4cac1b8afa69f9691867f79706c65615e565755545350535454555759585f62666b70767d848e939fa4acb6c0c7d1d1c6bcb2a89d93897d7063594f41382d22170b0000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000009141f2a36414c56616d7a85929fa9b3becdd6dbd0c3b7ab9f94897d7063594f44352c1d140a0000000000000000000000000000000000000000000000000c17232e3844505b66717d8a95a0abb8c2cdd6cabfb4aa9f92867b6e61574d42362a201509000000000f1b2835424e5b6875818e9ba8b4c1c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9d1cbc7c5c4c3c1bfbab8b6b2acaaa29f9a938e847d746d675f574d453b322920160c03000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1bec9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c6b9aca09386796d6053463a2d20130700000000000000000000000000000001070c141c2328323b434b545c666d78828f96a0aab4bfcbc9c9c9c9c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151e262f383f4450575e666d727a80868d92989da0a7aaacafb6b6b8babebebfbfc0c1c0c0bfbebebdbfbab8b6b4b4aeacaaa29f9b948f87807a6f6a60594f473e352b1e150b00000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0c9bcb0a396897d7063564a3d3023170a00000000000000000000030f1b26323d4a5764707d8a96a1adb9c3cec7bdb0a69f92877d716c615e56534d4c4b4b4c4d52565e656c74808d95a0abb9c2cdc7bcb1a7998c807366564c41362a1e1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323e44505b666d7a849197a1a9b2bbc4ccd4dcdcd7c9c1bbb3ada59e99928e88837e7976726f6d6769686767666768696a686e7073767a7f83888e939a9fa6adb3bbc2cbd2d4cbc3bab2a89f958e81746d62574d42362c1f160c010000000000000000000000000009151f2935414c56616c74818e96a0aab4bdc7d1d3cac1b8b0a8a098928c847d78726e6866646260605c606061626466686a6f73777d838991969ea5afb6bec7d2d7cbbfb4aaa0968e81746b6054473e2f261b11060000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000020e1a25313946525e6873808d98a2aebbc5cfd6d3c7bbb0a69c8f82766b6054473d33231a0b0200000000000000000000000000000000000000000000000006111c28333f4a54606c7883909da6b0bcc7d3d0c6baaea3988d8174695f53463c31261a0e040000000f1b2835424e5b6875818e9ba8b4bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbcbbbfbab9b8b7b5b4aeaca9a8a09e98928e88817a706b605d554d453c332920170e0400000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdb9aca09386796d6053463a2d2013070000000000000000000000000000000000020a111720293139424a545c666d7a849198a3aebabdbdbdbdbdbdb9ac9f9386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e2730384149505a61696e787f858d92989fa2aaacb1b6b9bbc0c3c5c6cad0cbcccdcdcdcccccbcad0cac7c5c3c1bfbab9b4aeaca69f99928d857c706b61594f473d30271d1207000000000000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1c9bcafa296897c6f6356493c3023160900000000000000000000000a13202d3a4653606d7984919ea8b2bdc8cfc1bbaea39992867e746d68615f5759585859565e61686d77808c929da7b1bccbd0c7b7ab9f95897c6f6356493c3025190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c162028333f4a545d686e7b859197a1a9b2bac2cad5dadbd3cdc5beb9afaba39f9b948f8a86827f7c7a78767574737374757676787a7d8082868b90959b9fa4acb0b9bec5cdd4d6cbc2b9b1a8a1969083786d605b51453c31241a0d040000000000000000000000000000030d1925303a44505a606d79849198a2abb5c0cbd1d3cac2bab2aaa39f96918a847f7a7773716f6d6d666c6d6e6f707375777b7f838990949ea0a8afbbc0c7d0d8c8c0baaea3989184796d60594f44352c1d140a000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000005121e2a36424d57616e7a86929faab3becdc9c9d0c7b7aa9e94897c6f62594f44352b21110800000000000000000000000000000000000000000000000000000b17222d3844505b65707d8a949fabb7c2ccc9cbbfb4aa9f92867b6e61574e42372b20150a0000000f1b2835424e5b6875818e9ba8b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0afaeb4aeacabaaa8aaa39f9c9996918b86817c756d686159514c433c332a21170e050000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0aca09386796d6053463a2d20130700000000000000000000000000000000000000060e171f272f38424a545d686f7c86929fa7b1b0b0b0b0b0b0b0ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121c273039424a535b606c707b828b92979fa3aaaeb4b8bcc3c6c8ccd2d0cfcac6c5c4c3c2c2c2c3c4c5c6cad0d0d0d1cbc7c5bfbab8b0aba39f9792867d706c61594f43392e23180c040000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1c8bbafa295887c6f6255493c2f221609000000000000000000000006131f2c3845515c67717e8b96a0acb9c1cccbbfb5aba298928a807a736e69676665646667696e727a818c929ca4aeb9c3cdc7bdb0a69d9083766b6054483b2f1e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e17222d38424c565f696e7b859196a1a8b0b8c0c9cfd6dfd6cfc9c1bdb5afaca69f9c98928f8c89868482818180808181828384878a8c8f92999d9fa7acafb6bec2cacfd7d0cac1b9b1a7a09691847a6e665c51493f332a2012080000000000000000000000000000000008131e28323e45515d676f7c869299a3afbbc0c7cfd4ccc3bcb4aea8a09e96918c8783807e7b7a7979797a7a7b7d7f8284888c90959c9fa6acb2bac1ccd2d2ccc0b6aea49f92867c6f675d51473d33231a0b02000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cdd6d4c7bbaea194887b6e6155483b2e2215080000000714212d3a46535e6974808d98a2aebcbdbdbdbdbdbeafa59c8f82756a6054473d32231a0f00000000000000000000000000000000000000000000000000000006111c27333f4953616b7683909ca6b0bbbdbdbdbdbbaea3998e81746a5f53473c32261b0f0000000f1b2835424e5b6875818e9ba3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a2aaa39f9e9d9b989892908d89847f7a746f6a605d564f45413a312a21180f05000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a09386796d6053463a2d2013070000000000000000000000000000000000000000050d151d263038424c565f6a727f8b95a0a3a3a3a3a3a3a3a3a39f9386796c605346392d20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071118232e39424a545c656c747e8590949ea1a9aeb4babec5c8ced2cdc8c4c3c0bebab8b7b6b5b5b6b6b7b8babfbfc3c6c8ccd2d0cac6c2bdb5afa9a19892867e706b60554b40342820150a0000000000000000000000000000000000000000000000000000000000000006121f2b3844505b667985929facb8c5d2c8bbaea195887b6e6255483b2f221508000000000000000000000004101c2834404b55606d7884919ea6b0b9c3cdc6bdb4aaa29f928d85807b77747372717274777b7f858e939ca4aeb6c0cbccc0b5ab9f94897d7063594f43382c1f0d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3a444d575f696e7b8491969fa6aeb9bec5cdd4d9dad5cfc7c0bbb9b0abaaa39f9c999a93918f8e8d8d8d8d8e8f90919697999c9fa3ababb1b9bbc0c7d0d6d5cdc5bebaafa79f9591847b6e685e544b40372d21180e0000000000000000000000000000000000020c16202935404b55606a707d87929fa3afb5bdc5ced8cfc6bfbab2aca8a09e9a93908d8a88878685868787888a8c8e9196999da0a7abb0b9bdc4ccd8d0c7c0bbaea49d928b7f726a5f554b40352b21110800000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0c9c9c9c7bbaea194887b6e6155483b2e221508000006121e2b37424d57616e7b86929faab4b0b0b0b0b0b0b6ac9e93887c6f62584e43352b211108000000000000000000000000000000000000000000000000000000000b17222d38414f5963707d89949fabb0b0b0b0b0b0b5ab9f92877b6e62584e43372b1c110600000f1b2835424e5b6875818e969696969696969696969696969696969696969696969696969696969696969696969696969696969594989291908e8b898683807d78726d68625f58524c443e352f281f180f0600000000000000000000000000000000000000000000000b1825323e4b5865717e8b96969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969386796d6053463a2d201307000000000000000000000000000000000000000000030b141e26303a444e58606d78839096969696969696969696969386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f19232834404a545c666d77808a92979fa6adb3babfc6cad0cdc8c4c2bcb8b6b3b3adabaaa9a8a8a9a9aaacaeb4b3b6b9bbc0c7cbd1d3cfc7c0bbb3aaa29892877d6f675c51453c31261b0f000000000000000000000000000000000000000000000000000000000000000613202d394653606c798698a2aebac6d3c7baaea194877b6e6154483b2e2115080000000000000000000000000c18232e3944505c66717e8a949ea7b1bbc5cec6bcb4aea49d98928c8884817f7e7e7f8083878c92989ea5aeb6bfc8cac2bbafa4998f82766b6054463d32271b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d28323c454d575f696e7b848f949ca4adb3bbc1c8ced5d9d9d1cbc7c2bbb7b4aeaca9aca49f9e9c9b9a9a999a9b9c9d9ea1a8a6a9acaeb5b8bcc3c8ccd2d5cfc9c2bbb3ada59e9590837b6e695f564c42392e251b0f06000000000000000000000000000000000000040e18242f3a434e58616b717e8b919fa3abb4bcc3ccd2d1cbc3bdb9b2acaca49f9d999795939892939a949597999b9ea0a8aaacb1b7bcc2c9ced5cdc4beb6afa49d928d80746d62584e43392f23190f0000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3bdbdbdbdbdbbaea194887b6e6155483b2e22150800000814212e3a47535f6974818e99a3a3a3a3a3a3a3a3a3a3a49a8f82756a6054463d3223190f000000000000000000000000000000000000000000000000000000000006111b262f3e4854606b76828f9ca6a3a3a3a3a3a3a3a3a3998e81756a5f5347382e23170b00000f1b2835424e5b6875818a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a89888786868584827f7c797673706c65605d56534e45413a3229241e160d060000000000000000000000000000000000000000000000000b1825323e4b5865717e8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a86796d6053463a2d20130700000000000000000000000000000000000000000000020c151e28323c44505c66707d898a8a8a8a8a8a8a8a8a8a8a8a86796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b16212b353d44515c666d78818d929fa2a9b0b9bec5cbd0ccc7c3bcb8b6b1aba9a6a9a29f9d9d9c9b9c9d9d9fa2aaa6aaacafb6babfc6cfd5d1cbc5bcb4aaa3999184796d60584e43372b1d12070000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793aab4bfcad6c7baada094877a6d6154473a2e21140700000000000000000000000007121d28343f4a54606c77828f95a0a9b3bcc4ccc6bfbaaeaaa29f9996918e8c8b8b8c8d90939a9fa2aaafb7bfc8ccc2b8afa59f93877c6f62594f44342b21160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b16202a333c454d575f696e7a828d929ea1a9afb8bdc3c9ced4d9d7d4cdc7c6bfbab8b6b6afacaba9a8a7a6a6a7a8a9a9abadb2b3b6b9bbbfc6c8cdd4d5cfc9c5beb9b0a9a29f938e827a6e695f574d443b30271d1309000000000000000000000000000000000000000007131d28313c464f59626c727f8b9299a2aab1bbc0c7d0d5cec8c4bdb9b6afacaaa6a4a2aaa39f9fa4a1a2a3a6a8aaacb2b7b8bcc3c7cdd5cfc9c1bbb2aca49f928d80746e645b51463c31281d11070000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b0b0b0b0b0b0b0aea194887b6e6155483b2e22150800030f1b27333f4953626e7b879296969696969696969696969693877c6f62584e43342b2011070000000000000000000000000000000000000000000000000000000000000a141d2c38444f59626f7c8994969696969696969696969693877c6f62544a3f34281c1003000916222f3c4955626f7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c7b7a7a79787775726f6d666663605b53524c47433c3530282019130c04000000000000000000000000000000000000000000000000000815212e3b4854616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d786c605346392d2013060000000000000000000000000000000000000000000000030c162028343f4a54606b707d7d7d7d7d7d7d7d7d7d7d7d7d7d7063574a3d3024170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323d47515b606d78818e939da4adb3bbc2cacfccc7c2bbb7b1acaaa79f9d9997979291908f8f8f9091929896999d9fa4acaeb4bdc3cbd4d7cec5bcb4aba0968c80736a5f5347392e23180c0000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbad0d5c9beb3a993867a6d6053473a2d201407000000000000000000000000000c17232e3844505b656d79839197a2aab2bac2cbcac0bcb4aeaba8a09e9a999897999a9d9fa4acaeb3bcc1c9c7c0bbb0a69d938c7f726a6054473d3222190f040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18212a333c454d575f686d78808a92979da5acb2b9bdc4c8ced3d6d8d3d0cbc7c5c2c0bbb9b7b5b4b4b3b3b4b4b5b6b8b9bdbfc2c5c7cbd1d4d3cec9c4beb9b3ada69f97928b81796d685e574d453c32291e150b010000000000000000000000000000000000000000010c161f2b343e47505a636d727e879298a0a7afb6bec3c9ced4cec9c7c0bbb9b6b3b1aeb4aeacacafb6aeb0b2b5b7b9bdc3c5c8ced3cec9c4bdb9afa9a19a938c80746e645c52493f342a1f160c000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfd6d6d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa3a3a3a3a3a3a3a3a3a194887b6e6155483b2e2215080005121f2b3744505b6575828a8a8a8a8a8a8a8a8a8a8a8a8a8a8a81756a5f53463c3222190f00000000000000000000000000000000000000000000000000000000000000020b1b27323d4754606a75828a8a8a8a8a8a8a8a8a8a8a8a8a8a8275665c5044382b1f1206000815212e3b47535f6a6f70707070707070707070707070707070707070707070707070707070707070707070707070707070706f6e6d676b6a686562605c545653504945413a373129241e160e080100000000000000000000000000000000000000000000000000000714202d3a46525e696e70707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706c665b5044382b1f1206000000000000000000000000000000000000000000000000040e17232e38424f59606b70707070707070707070707070706b6155483c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c38444f59626d75818e939da5aebabec5cdcfc9c2bbb7b0aaa7a09d9995908d8a8785848382828383848587898c90939a9fa3abb1b9c2cad4d7cec6bdb2a89f92867c6f62544b4034281c100400000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a1aebbc8d2c6b9ada19786796c605346392d2013060000000000000000000000000006111c27333f49535d676e7b859298a1a8b0babfc6cbc5bebab8b2acaaa7a6a5a4a5a7aaacafb6babec5c9c5bdb5afa69e948e81746d62584e43352b21100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f18212a333c454d565d666d737e858e939ea0a8acb2b8bdc3c6cad0d2d5d6d3d2d2ccc8c6c4c2c1c0c0c0c0c1c2c3c4c5c9cfcfd2d3d2d0cac6c4bdb9b2ada9a19e948f857e756d675d564d453c332a20170c0300000000000000000000000000000000000000000000040d19222c353f48515b636c717d8691959fa4acb2b9bdc4c8ced3d2ccc8c6c3c0bdbbbfbab8b9bbc0bbbdbfc1c4c5c9ced1d2cec8c4bdb9b2ada59e96918880736e645c524a41372d22180d04000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2c9c9c9c9c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d969696969696969696969694887b6e6155483b2e221508000613202d394653606c777d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7a6e61584e43342b20100700000000000000000000000000000000000000000000000000000000000000000b16212b37434e58616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d786d6053463a2d2013070006131f2b37434e585f6263636363636363636363636363636363636363636363636363636363636363636363636363636363636261605d555d5b585653514a4a46443f38352f2b262019130c040000000000000000000000000000000000000000000000000000000005121e2a36424d575e616363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363605b544a3f33281c0f030000000000000000000000000000000000000000000000000006111c26303d474f5960636363636363636363636363636361594f44382c2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3b4854606b727f8c939ea5afb7c0cacfcdc4beb9b0aaa69f9c95908c8783807d7b7877767575767677797b7c8083878e9299a0a7b0b8c2cdd6d8cfc3bbaea3998e8174665c5145382c1f13060000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d1c5b8ab9e928578655b5044372b1f120500000000000000000000000000000b17222d38414c555f69707d8691969fa6aeb4babfc6cac6c4bdb9b7b4b2b1b1b2b3b6b9bbc0c7c9c5beb9b3aba49f948f82786d605b51463d3223190f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f18212a333c444c545c606c717a818991969ea0a8acb2b8babec5c6c9cfd1d2d3d7d4d2d1cfcecdcdcccdcecfd0d1d2d2d1cfcfcac6c5bebab8b2aca9a19e97928b827b716c605d554c443b332a21180e0500000000000000000000000000000000000000000000000007101a232d363f49515a626b707c838d939aa0a8acb2b8bcc3c6cacfd2d2d0cccad0cbc7c5c6c8ccd2caccced1d2d2ccc8c6c3bcb8b2aca8a19e938e847d736e645c524a41382f251b100600000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5bdbdbdbdbdbdb6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808a8a8a8a8a8a8a8a8a8a8a8a8a887b6e6155483b2e2215080005121f2b3744505b656c707070707070707070707070707070706e685e52463c3122190e000000000000000000000000000000000000000000000000000000000000000000040f1b27323d46525e696e7070707070707070707070707070706d665c5044382b1f120600030f1b26323c464e53555757575757575757575757575757575757575757575757575757575757575757575757575757575756555453514b514f4c494644403d3937332d29241e1b150d08020000000000000000000000000000000000000000000000000000000000020e1a25303b454d5254575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575753504a42382d22170b0000000000000000000000000000000000000000000000000000000a141e2b353d474f545657575757575757575757575757554f473e33281c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7d87929fa5afb7c1c9d1cbc0bbb2ada69e9c948f89837f7b7673706e696a6a6968696a656c6e7073777b818690959fa6b0bbc4cfdad7cbbfb5ab9f9285796d6053463a2d20130600000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd0c3b6a99d9083766a53493f33271b0f03000000000000000000000000000006111b262f3a434d57606b707c848f949fa3abaeb4babfc3c4c8c5c4c1bfbebebfc0c3c6c7c5c2bdb9b3ada9a199938c827a6d665c51493f342b20110700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f18212a323a424a505a61686d747d848b91969da0a8abaeb3b8b9bec1c4c5c7cbd1cccdcdcecfcfcecdcccccbcfcac6c5c2c0beb9b8b3aeaba8a19e97918c857e766e69615a514b433a322920180f06000000000000000000000000000000000000000000000000000008111b242d373f485059606a6f79808891969ea1a8acb1b8babec2c5c6cad0cccdcececfcececdccccd0cac6c5c3c0bbb9b6b1aca8a09e96918b817a706b635c524a40382f261d13090000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b0b0b0b0b0b0b0b0aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d796d6053473a2d20140700030f1b27333f49535b6063636363636363636363636363636363615e564c41342a201007000000000000000000000000000000000000000000000000000000000000000000000a16202a36424d575e61636363636363636363636363636363605c544a3f34281c100300000a15202a343c4347494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a49484747454044423f3c3a38342e2d2b27221b19130f0a04000000000000000000000000000000000000000000000000000000000000000009141f29333b4246484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a46443f382f261c1106000000000000000000000000000000000000000000000000000000020c19232b353d4448494a4a4a4a4a4a4a4a4a4a4a4a4a48443e352c21160b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000111e2a3744515d6a77849099a3afb7c1c9cfc6bfbaafa9a19e948f88827c77726e696664615e575d5c5c5c535b60616366696e747b838f949fa9b2bdc9d5dcd1c6baada2978a7d7063574a3d2e23170b00000000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0cdcec1b4a89b8e8175685b4e422d22170b000000000000000000000000000000000a141d28313c454f59606a6f7a828d92999fa3abaeb4b7b8bcbebfc0c1c2c1c0bfbebfbab8b5b2ada9a19e9792877f786d685d544b40372d22190f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f18202830383f4450565e616b70797e848b91969a9fa2aaabadb3b5b7b9bbc0bebfc0c1c1c2c2c1c0c0bfbebdbeb9b8b6b3b3adabaaa29f9b96918b847f79726d615e5750454039312820170e060000000000000000000000000000000000000000000000000000000009121c252d363f474f585f676d737d848b91969da0a7abadb3b5b8babfbec0c0c1c2c2c2c1c0c0bfbebebab8b6b6afaca9a7a09d96918b847e756d686059524a40382f261d140b010000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca3a3a3a3a3a3a3a3a3a39d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3a47535f6a6f70707070707070707070707070706d675d5145392c1f130600000b17222d38414950535757575757575757575757575757575754524c443b3022180e0000000000000000000000000000000000000000000000000000000000000000000000040e1a25303b454d525457575757575757575757575757575753504a42382e23170b000000040e18222a32373b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b3a38352f35322f2d2c2823201f1b17110d080100000000000000000000000000000000000000000000000000000000000000000000030d17212930363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3938332d261d140a0000000000000000000000000000000000000000000000000000000000071119232b33383b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332c231a1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b95a0acb8c1ccc4bcb4aea59d97918a827c766f6b66615e575754524d504f4f504950535456575f61696e79828f96a1adb9c6d0dbd6cabeb3a99b8e817468544a3f34281c100300000000000000000000000000000000000000000000000000000004101c2834404b546975828f9ca8b5c2cfccbfb3a6998c807366594d4033261a0600000000000000000000000000000000020b161f2a333d474f585f686d7880868d92999fa2aaaaacb1b1b2b3b4b5b5b4b3b2b4aeaca9a8a19e97928c857d736c665d564c42392e251b100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e161e262e343e444c525960666d71787e84898e92989b9ea1a9a8aaacafb5b2b3b3b4b5b5b5b4b4b3b2b1b1b3adaba9a7a9a29e9b98928e8a847f79726d67625b524d453e352f271f160e050000000000000000000000000000000000000000000000000000000000000a131c242d353d464e555c606b70787e848b90959a9fa2a9a9acaeb4b1b3b4b4b5b5b5b4b3b3b2b1b3adaba9aca49f9d9995908b847e79716c615e564f4740372e261d140b02000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9696969696969696969696969083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e585f626363636363636363636363636363605d554b4035291d1004000006111b262f383f44464a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4746413b32291e100600000000000000000000000000000000000000000000000000000000000000000000000009141f29333b4246474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a46443f3830261c11060000000007101820262b2e2f30303030303030303030303030303030303030303030303030303030303030303030303030303030302f2e2d2c2924282523201f1c1813120f0b060000000000000000000000000000000000000000000000000000000000000000000000000000050f171f252a2d2e30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302d2b28221c140b0200000000000000000000000000000000000000000000000000000000000007111921272c2f30303030303030303030303030302f2c28211a110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7883909da5afbcc4bab2aaa39f938e847e766f6a63605954534d4a484642434242433f444647494d53575f676d7a84919eaab4bfcad6dbd0c4b8ab9e918578665c5044382b1f120600000000000000000000000000000000000000000000000000000006131f2c3845515c667784919eaab7c4d1cbbeb1a4988b7e7165584b3e3225180b0000000000000000000000000000000000040d18212b353d464e565e666d737b81868e9298999da0a7a4a5a6a7a8a8a7a6a5aaa29f9c9996918b857f7a706b605b544c443a30271d130a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c141c2328323a41464f545c60666d71787c81858a8e9297989b9e9fa3aba5a6a7a7a8a8a8a8a7a6a5a5a4a9a19e9c9a9797928e8a85817d79726d67605d555146423b3329241d150d0400000000000000000000000000000000000000000000000000000000000000010a121b232b343c434b515960666d71797e83888d9297999c9fa2aaa4a6a7a7a8a9a8a7a7a6a5a5a9a29f9c9a9a93908c88847e78716d66615a524c443d352e251c140b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828a8a8a8a8a8a8a8a8a8a8a8a8a8a83776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1a26313c464e5355575757575757575757575757575753514b43392f24180c000000000a141d262d3337393d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3936302920170d00000000000000000000000000000000000000000000000000000000000000000000000000020d17202930363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a38342e261e140a000000000000070e151b1f212224242424242424242424242424242424242424242424242424242424242424242424242424242424232221201f1d181c19161312100c0705030000000000000000000000000000000000000000000000000000000000000000000000000000000000050d141a1e20212424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424201f1c17110a020000000000000000000000000000000000000000000000000000000000000000070f161c2022232424242424242424242424242423201c16100800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b666f7c89939eaab4bab2a8a198928b817a716c626058544f4846423d3b3a363036352d3337393b3d42464d555e68727e8b98a2aebac6d3dfd2c6b9ac9f9386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb9c5d2cbc0b5ab96897c706356493d3023160a000000000000000000000000000000000000060f19232b343c444c545c60696e747b8186898d9095969798999b9c9b9a99989798928f8c89847f79726d676059504a423a32281e150b0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1117202830353d424a51545c60656c7074797d8285888b8e9192999698999a9a9b9c9c9b9a999998979697928f8d8b8885817d7975706d66605c55514b433f3630292118120b030000000000000000000000000000000000000000000000000000000000000000000009111a222a313940454f545c60666d72777c8185898c8f92989698999a9b9b9c9b9b9a999998969792908d8b87837f7b77716d66605c545046413a322b231c130a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d6f6356493c30231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343c4347484a4a4a4a4a4a4a4a4a4a4a4a4a4a4745403931271d120700000000020b141b22272b2d303030303030303030303030303030302e2d2a251e170e050000000000000000000000000000000000000000000000000000000000000000000000000000050e171f252a2d2e3030303030303030303030303030302d2b28231c140c0200000000000000040a0f131516171717171717171717171717171717171717171717171717171717171717171717171717171717171615141413100c070c090706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171713120f0b060000000000000000000000000000000000000000000000000000000000000000000000050b10131616171717171717171717171717171614100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54606b75818e98a2aeb2a8a19691867e746d68615a544e48443d3a36312e2d2a25292922272b2d2e31363c434c56606d7a85929facb8c5d2dfd4c7bbafa499877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8899a3afbbc7d3c7bbafa399877b6e6154483b2e21150800000000000000000000000000000000000000071119222a323a424a50575e61696e74797d808387898b8c8d8e8f8e8d8c8b8a8986827f7c79726d67605d554f443f382f2820160c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e161e2529303940444a50535b6063676d7175797b7e828486888a8b8c8d8e8e8f8f8e8d8d8c8b8a89878583807e7c7974706d6664605c54514b454039312a251f170f07010000000000000000000000000000000000000000000000000000000000000000000000000810181f272f343d424a50545c60656a6f74797c7f828587898b8d8d8e8f8f8f8e8d8d8c8b89878583817e7b76726e6964605c54514b423e353028201a110a010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4754606a6f70707070707070707070707070706f6b6054483b2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e18222a31373a3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a39352f271f150b010000000000020a11171b1f202424242424242424242424242424242421201e19140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000050d141a1e2021242424242424242424242424242424201f1c17110a0200000000000000000000030608090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a090807060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0606030000000000000000000000000000000000000000000000000000000000000000000000000000000407090a0a0a0a0a0a0a0a0a0a0a0a0a0a090704000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424f59616e7b86929fa8a8a19691847c716c605d565047433c38322d2a2521201e1a1c1c171b1f2021262a313a45515d677783909daab6c3d0ddd7ccc0b5ab95887c6f6255493c2f2216090000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97abb5c0cbd2c5b9ac9f9286796d6053463a2d2013070000000000000000000000000000000000000000071019202830383f444d52575e61676d7073777a7d7e7f8081828281807f7e7c7976726f6d66605d55514c433d332d261d160e04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13191e272e34383f44495053555c6064656c6e727577797b7d7f8080818282828181807f7e7e7d7b787674716f6d6663605c5453514a454039352f271f1a140d05000000000000000000000000000000000000000000000000000000000000000000000000000000060d151d232930383f444b5153586062666d6f7276797b7c7e8081818282828180807f7e7d7a787674716e6866625f5753504a4540393029251e160e08000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e58606263636363636363636363636363636360594f43382c1f1307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101820262b2e2f30303030303030303030303030302d2c29241d150d030000000000000000060b0f1213171717171717171717171717171717171414110e080200000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e1114141717171717171717171717171717171312100b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3d46525e68727f8c96a0a19691847b6f6a625a524c433e37322c27211e1a1514120e09060b0f1213141a1f2935414c556875828f9ba8b5c2cedbddd2bdb0a3968a7d7063574a3d3024170a0000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5b2bfd1d1c4b7aa9e918477665c5044382b1f1206000000000000000000000000000000000000000000070e161e262e343b42464d53555c606366686e70717273747575747372716f6d676662605c54514b45413a3128221c140b04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080c151c23282e34383f44464b5153535b60626568666d6e7072737474757575757473727271706e6969676462605c5453514b46444039342e29241d150d09020000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181e262e34394045464e54545c606266656c6e70717374747576757474737272706e69696765615e5655534d46443f38342e271e19130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323d464e5456575757575757575757575757575756544f473d32271b0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e151a1f21222424242424242424242424242424201f1d18120b0300000000000000000000000305060a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105090b0b1313131313131313131313131313130c0b090501000000000000000000000000000000000000000000000000000000000000000000000000000000000000050a0d0f10131313131313131313131313130c0b090501000000000000000000000000000000000000000000000000000002050708121313131313131313131313131313131006060300000000000000000000000000000000000000000000010406070b0b0a0a090908070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2a36414d56606d7884919d9791847b6e6960585045413a312b27201b16120e0907050200000003050609101c28343f4a546875828f9ba8b5c2cedbd6cabdb0a3978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000006121f2b37434e586875818e9ba8b4c1cecfc2b5a99c8f827669544a3f34281c100300000000000000000000000000000000000000000000050c151c232830363b42464b515356565e61636465666869686766656463605c555653504a454039352f281f17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c23282d3337394045474950535558545c6061636566676768696968676666656463615e575a585553504a4645403a38342e28231d18120b03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c141c23282e34383c43474a505356535b60616365666768686968686766666563615e565a5854524d4847423c38342e28231d150c080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a16202b343d4347494a4a4a4a4a4a4a4a4a4a4a4a4a4a4948433d352b21160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f12151517171717171717171717171717171413100c0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c11151718202020202020202020202020202020181715110c06000000000000000000000000000000000000000000000000000000000000000000000000000000030a10161a1c1d20202020202020202020202020181715110c06000000000000000000000000000000000000000000000002090e1114141f2020202020202020202020202020201c13120f0b0600000000000000000000000000000000000001070d111314181817171615151413110d080b08070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b1925303b44515c66707d899391857b6e695f574e463f352f281f1b150f0a05020000000000000000060b1218222b3844505c667783909daab6c3d0ddd5c9bcafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000000000815212e3a47535f6a7885919eabb8c4d1cbbfb5ab998c7f7366594c402e23170b000000000000000000000000000000000000000000000000030a11171f252a313639404546494c52545658595a5b5c5b5a5958575653514b4946443f38352f29241e160d06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c11171b22272b2f34383a3f4446484b4a5153555758595a5b5b5c5c5b5a5a5958575654524d4d4b4946443f3a38342e2c28231c18120c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171d23282c3237383f4446494950535456585a5a5b5c5c5c5b5a5a59585654524d4e4b4746413b3a37312c28231c18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f19222b32373b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b38322b23190f0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090a0a0a0a0a0a0a0a0a0a0a0a0a0a070604000000000000000000000000000000000000000000000000000000000000000000000000000000060b0e101113131313131313131313131313130c0b09050100000000000000000000000000000000000000000000000000000000000000000000000000000003080c0e0e1313131313131313131313131313131313100605030000000000000000000000000000000000000000000000000000000000000000000000000000000000000911171d2124252d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2524221d18110900000000000000000000000000000000000000000000000000000000000000000000000000040d151c2226292a2d2d2d2d2d2d2d2d2d2d2d2d2d2524221d181109000000000000000000000000000000000000000000050d14191e20212b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d29201f1c17110a02000000000000000000000000000000040c13181d20202524242323222221201d1919171514120e0906040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141f2834404a54606b75828f877d70695f574d453d3429241e160d0a04000000000000000104080d11171d2329343c4653606d7985929fabb8c5d2ded6cabfb4aa94887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000915222f3c4855626f7b8897a1adb9c6d2c7bbaea399897c706356493d302316060000000000000000000000000000000000000000000000000000060c141a1f252a2e34383a3d4146474a4b4c4d4e4f4f4e4d4c4b494645403c3a38342e29241d19130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b11171b1f23292c2d3337393b3f404446484a4c4d4d4e4f4f4f4e4e4d4c4b4b4a474642413e3c3a38342e2c28231f1c18120c0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b12181c1f272b2e34383a3c3f444647494b4d4e4e4f4f4f4e4d4d4c4b4a474642413e3b3936302e2b261f1c17110c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101920272b2e2f3030303030303030303030303030302f2c2721191007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b11171b1d1e2020202020202020202020202020181715110c0600000000000000000000000000000000000000000000000000000000000000000000000001090f14181a1b20202020202020202020202020202020201c13120f0b0600000000000000000000000000000000000000000000000000000000000000000000000000000009121b22292e313239393939393939393939393939393932312e29231b12090000000000000000000000000000000000000000000000000000000000000000000000030d161f262d3235363939393939393939393939393932312e29231b120900000000000000000000000000000000000000050e171f252a2d2e38393939393939393939393939393939362d2b28221c140b0200000000000000000000000000040d161d24292c2d32313130302f2e2d2c2924262422211e1a1313100c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c18232e39424f59616e7b8680736b60574d453b332b2219130c040000000000000305070d1113191b22272f343d46505a63707d8a97a2adbac6d3dfd3c6baaea298867a6d6053473a2d2014070000000000000000000000000000000000000000000000000004101c2834404b5465727f8c98a9b2bec9d2c5b9ac9f92867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000003090e141a1d23282c2d3036393b3d3e3f4041424241403f3e3c3a38342e2d2b28231c18120d0801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12181c1f22272b2d2f2e34383a3b3d3f4041414242424241403f3f3e3d3b3a3630312f2d2c28231f1c1812100c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c10151b1c23282b2d2d3337393b3d3e4041414243424141403f3f3d3b3a3630322e2d2a25211e1a15100c0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161b1f2223242424242424242424242424242423221f1b160f070000000000000000000000000000000000000000000000000000000000000306080913131313131313131313130b0b09050100000000000000000000000206080813131313131313131313130c0b090601000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e161d22272a2b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2524221d18110900000000000000000000000000000000000000000000000000000000000000000000030b131a202427282d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d29201f1b17110a0200000000000000000000000000000000000000000000000000000000000000000000000006111b242d343a3d3e4646464646464646464646464646463f3d3a342d241b1106000000000000000000000000000000000000000000000000000000000000000000000a151f2831383e4243464646464646464646464646463f3d3a342d241b11060000000000000000000000000000000000030c17202930363a3b45464646464646464646464646464646433938332d261d140a000000000000000000000000010c161f282f35393a3e3e3d3d3c3c3b3a39352f33312e2d2a26201f1c18120f0a0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121c27303d46535f69707d786c60594f453c332921191008010000000306060b0f1213181d2024292d333940454f58616c75828f9ca9b3becad6dfd2c5b8ac9f928579675d5145392c2013060000000000000000000000000000000000000000000000000006131f2c3845515c6676828f9ca9b5c2cfd0c3b6a99d908376675d5145392c1f1306000000000000000000000000000000000000000000000000000000000003090e12181c1f20252a2d2e3031323335363534333231302d2c2823201f1c17110c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003070c1013171b1f202223282c2d2e3032333434353636353433333231302e2d2a252522201f1c1713100c0704000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f11171c1f2022272b2d2e30323334353536353534333332302e2d2a252521201e1914120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13151617171717171717171717171717171615130f0a040000000000000000000000000000000000000000000000000000000000040a0f1315162020202020202020202020181715110c06000000000000000003090e1214152020202020202020202020191816120d0700000000000000000000000000000000000000000000000000000000000000000000000000000000040e1720282e333637393939393939393939393939393932312e29231b12090000000000000000000000000000000000000000000000000000000000000000000b151d252b3034353939393939393939393939393939393939362d2b27221b140b0200000000000000000000000000000000000000000000000000000000000000000000010c17222d363f454a4b5353535353535353535353535353534b4a453f362d23180c01000000000000000000000000000000000000000000000000000000000000000005101c26313a434a4e50535353535353535353535353534b4a453f362d23180c01000000000000000000000000000000000b151e29323b424647525353535353535353535353535353534f46443f382f261c1106000000000000000000000007131d28313a4045474b4b4a4a49484847454141403e3b3a36312d2c28231d1a150f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e2a36424d57616c706c665b50473d332a21170f07000305060b101213171b1f2024292c3035383f444b5159606a717e8a949eaabbc5cfdbdccfc2b5a99c8f827669554b4035291d1104000000000000000000000000000000000000000000000000000713202d3a4653606d7985929facb8c5d2ccc0b6ac9a8d807367554b4035291d10040000000000000000000000000000000000000000000000000000000000000000070c101313191e2021232526272829282726252423201f1c181312100b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004060b0f121315181c1f202224252627282829292827272625242321201e1a18161312100c0604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b101213171b1f2021232527272829292928272726252321201e19181414110e0806020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090a0a0a0a0a0a0a0a0a0a0a0a0a0a09090703000000000000000000000000000000000000000000000000000000000000070f151b1f22222d2d2d2d2d2d2d2d2d2d2d2524211d181109000000000000060e151a1e21222d2d2d2d2d2d2d2d2d2d2d2625221e1811090100000000000000000000000000000000000000000000000000000000000000000000000000000b16202932393f434446464646464646464646464646463f3d3a342d241b11060000000000000000000000000000000000000000000000000000000000000008121d272f373c40414646464646464646464646464646464646433937332d261d140a0000000000000000000000000000000000000000000000000000000000000000000005111d29343f48505658606060606060606060606060606060585651483f34291d110500000000000000000000000000000000000000000000000000000000000000000a16222d38434c545a5d60606060606060606060606060585651483f34291d110500000000000000000000000000000007121c27303b444d52545e6060606060606060606060606060605c53504a42382d22170b00000000000000000000010d18242f3a434b51535857575656555554514c4e4c4a4846423d3a38342e2b26201b150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c1a26313b45505a6164605b544a3f352b21180f06060b0f1213171c1f2022272b2d2f35393a41454950555c606b707c86929fa6b0bbcdd7e1d4c8bcb1a7988b7f7265584c3f2f24180d01000000000000000000000000000000000000000000000000000a1623303d495663707c8998a2aebac6d3c8bbafa49a8a7d7063574a3d2f24180c00000000000000000000000000000000000000000000000000000000000000000000000406080e1114141718191a1b1c1c1b1a1918161313100c070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030506070c1012131517191a1a1b1c1c1c1b1b1a191818171414110e090907060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060b0f12131416181a1b1b1c1c1c1b1a1a1918171414110e0908070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101920272b2e2f393939393939393939393932312e29221b120900000000060f1820262b2e2f393939393939393939393932312e29231b13090000000000000000000000000000000000000000000000000000000000000000000000000006111d28323b444b4f5153535353535353535353535353534b4a453f362d23180c010000000000000000000000000000000000000000000000000000000000060f1a242f3941484d4e53535353535353535353535353535353534f46443f382f261b11060000000000000000000000000000000000000000000000000000000000000000000915212e3a45505a62656c6c6c6c6c6c6c6c6c6c6c6c6c6c6c65625b51453a2e22150900000000000000000000000000000000000000000000000000000000000000000d1a26323e4a545e66696c6c6c6c6c6c6c6c6c6c6c6c6c65625b51453a2e2215090000000000000000000000000000060f18232e39424d565e616b6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69605b544a3f33281c0f0300000000000000000004111d2935404b555d6065646463636261605d555b595755534d4a4645403937312b262019130d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f29333e4850555753504a42382d23190f0c1012171b1f2023282b2d2d3337393b4045474c52535b60676d737d859298a2aeb8c1ccdfdbd1c4b8aca095877b6e6154483b2e2115070000000000000000000000000000000000000000000000000005121e2a36424d576673808d99aab4bfcad2c6b9ac9f93867a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0b0c0d0e0f0f0e0d0c0b09070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607080a0c0d0e0e0f0f0f0f0e0d0c0c0b0a080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030506080a0b0d0e0e0f100f0e0e0d0c0c0a08070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f19222b32373b3c46464646464646464646463e3d3a342d241b11060000030e18212a31373a3b46464646464646464646463f3e3a352d251b11070000000000000000000000000000000000000000000000000000000000000000000000000b17222e39444d565b5e6060606060606060606060606060585651483f34291d110500000000000000000000000000000000000000000000000000000000030c17212c36414b53595b60606060606060606060606060606060605c53504941382d22170b0000000000000000000000000000000000000000000000000000000000000000000b1724313d4a56626c71797979797979797979797979797979726d62564a3d3124170b00000000000000000000000000000000000000000000000000000000000000000f1c2935424e5a66707679797979797979797979797979726d62564a3d3124170b00000000000000000000000000040d18222834404a545e696e78797979797979797979797979797979766c665b5044382b1f12060000000000000000000613202c3945515d676d717170706f6f6e6d6769686664615f575653514b47433c37312a251e170e070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d18212c363e44494a46443f382f261c1112181c1f22272b2d2e34383a3c3f4446484b5153565d60656c71797f879297a2aab4bfcad3ddd4c8bcb1a79d908377695e53463a2d211407000000000000000000000000000000000000000000000000000714212d3a46535f697783909daab6c3d0d0c3b7aa9d908477685d5246392d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202b343c43474953535353535353535353534b4a453f362d22180c01000915202a333c42474853535353535353535353534c4a463f372d23180d0100000000000000000000000000000000000000000000000000000000000000000000000e1b27333f4b565f676a6c6c6c6c6c6c6c6c6c6c6c6c6c6c65625b51453a2e221509000000000000000000000000000000000000000000000000000000000a151e29333e48535d64686c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69605b53493f33271b0f0300000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8686868686868686868686868686867e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697682868686868686868686868686867e7265584b3f3225180c000000000000000000000000010c161f2a343c44515c666e7b8586868686868686868686868686868682786c605346392d2013060000000000000000000714202d3a4753606d797e7e7d7d7c7b7b7a78767473716e696763605c54534e47433c363029201910090100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a242c33393c3d3938332d261d141b1c23282c2d3337393c3f44464949505355555d6064686d72787e848c9299a2a9b3bcc5d0dcd4cbc3b8aca0958b7e7265574d42362a1e120500000000000000000000000000000000000000000000000003101c28343f4a54616e7b87939facb9c6d2cabeb3a99a8d807467564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000000010507070f0a0a080400000000000000000000000000000000000000000306131313131313131313131313131313131311110e0b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104060709090a0b0b0c0b0b0a09090706040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060608090a0b0b0c0b0b0a090806060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070808090a0b0c0c0b0b0a090806050300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323c464e54556060606060606060606060585650483f34291d1105020e1a26313c454e53556060606060606060606060595751493f35291e12060000000000000000000000000000000000000000000000000000000000000000000000101d2a36434f5b6771777979797979797979797979797979726d62564a3d3124170b00000000000000000000000000000000000000000000000000000006111c26303b45505a646f747979797979797979797979797979797979766c655b5044372b1f120500000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b939393939393939393939393938b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d6976839093939393939393939393938b7e7265584b3f3225180c00000000000000000000000007131d28313c46505a606d7882909793939393939393939393939991847a6d665b5044382b1f1206000000000000000003101c28343f4a5464717e8a8a8a89898888878583817f7d7b7773706d66625f58534e46413a322b221b130b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a22282d30312d2b28221c1c1f272b2e34383a3f4446484a505355535b606265676d71757a7f848a91969fa3abb3bcc5ced7d5cbc3b9afa59d9083786c6053463b31251a0e0200000000000000000000000000000000000000000000000006121f2c3844505c6673808d9aa4afbbc8d2c6b9ada197897d7063564a3d3024190d01000000000000000000000000000000000000000000000000000000000000000000000002080d1113141b171614100b0500000000000000000000000000000000060b101220202020202020202020202020202020201e1d1b17120b0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060809080d11131415161717181918171716151413110d07080806020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608060b0f1213151617171819181717161513120f0b0608060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708070c10131414151617181818181717161413120f0b06070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5860626c6c6c6c6c6c6c6c6c6c6c65625a50453a2e21150906121e2b37424e575f6c6c6c6c6c6c6c6c6c6c6c6c65625b51463a2e2216090000000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a778386868686868686868686868686867e7265584b3f3225180c0000000000000000000000000000000000000000000000000000040e17232e38424d57616c7481868686868686868686868686868686868682786c605346392d20130600000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b989f9f9f9f9f9f9f9f9f9f9f988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909c9f9f9f9f9f9f9f9f9f988b7e7265584b3f3225180c0000000000000000000000071118242f3a434e58616c74808d949fa99f9f9f9f9f9f9f9fa69f92877d6f685e544a3f33281c0f03000000000000000006121f2c3844505c6675818e9797969695949792908e8c8a8884807d79756e6a625f58524c443d342d251d140b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c202324201f1c1c22282b32373940444649505355545c606265656c6e72757a7d81868c91969ea1a8afb5bdc5ced7d7ccc3b9b1a79e93897c6f665b504438291f1409000000000000000000000000000000000000000000000000000713202d3a4653606d7984919eacb6c0ccd1c5b8ab9e9285796d6053463a2d2013080000000000000000000000000000000000000000000000000000000000000000000000040c13191d2021282423201c17100800000000000000000000000000020a11171c1f2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b2a27231d160e06000000000000000000000000000000000000000000000000000000000000000000000000000000000104060a0f12151518191d2021222323242525252423232220201d18181514120e090604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060a0f121515171c1f202223232425252524232322201f1c171515120f0a05030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406090e12141517181c1f20212223242425252524242321201f1b17171413110d080602000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4754606a767979797979797979797979716c62564a3d312417070814212e3a47535f6a767979797979797979797979726d62574a3e312518080000000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919393939393939393939393938b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000020c162028343f4a545f69717e8a93939393939393939393939393939392857a6e655b5044372b1f120500000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4acacacacacacacacaca5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9acacacacacacaca5988b7e7265584b3f3225180c00000000000000000000050e19232935414b555f6a717e8a929da6b0acacacacacacb2a89e948c7f726b60564c42382d22170b0000000000000000000713202d3a4653606d7985929fa3a3a2a2a9a19e9c9b999796918d8985817c756f6a615e564e463f372f261d130a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10141617131b1d262d33383c43474a5153535b606265666d6f7275797b7e82868a8e92989da0a8acb2bbc0c7cfd7d1cbc2bab1a79f958e81756b60544a3f3328170d0300000000000000000000000000000000000000000000000005121e2a36424d5764707d8a97a1adbec7d2c9bdb2a99a8e8174665c5044382c1f120600000000000000000000000000000000000000000000000000000000000000000003090e161e25292d2e3531302d28221a12080000000000000000000000020c141c23282b39393939393939393939393939393939393836332e2820180e040000000000000000000000000000000000000000000000000000000000000000000000000001080d1113141a1f21222524292c2d2f3030313232323130302f2d2c29242522211e1a1413110d0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131b1f212222282b2d2e2f303131323231302f2e2d2b282222211f1b13120f0b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080d1113141a1e21212423292c2d2e2f2f303132323131302f2e2d2b27222321201d1914120f090401000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c86868686868686868686867e7165584b3e2f24180c0815222f3b4855626e7b86868686868686868686867f7265594c3f3024190d0100000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919d9f9f9f9f9f9f9f9f9f9f988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000008131e28323a44505c666e7b85929fa59f9f9f9f9f9f9f9f9f9fa79d928a7d70685e53493f33271b0f0300000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1b9b9b9b9b9b9b9b1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6b9b9b9b9b9b1a5988b7e7265584b3f3225180c000000000000000000030c17202b353d45515d676e7c86929fa4aeb9b9b9b9b9bfb5aba1968f82776c60594f443a2f261c11060000000000000000000a1623303d495663707c8997a2adb0afaeb3adaba9a7a6a8a09d9a98928e87817c756d686058514941382f251c12090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000108101920272b2f383f44464e54545c6064656c6f7275797c7f8285888b8f92989b9fa2aaacb2b9bdc4cbd1d5cfc6bfbbb0a8a0959083796d60594f42382d221705000000000000000000000000000000000000000000000000000b14202d3a46525e6975828f9ca9b2bed0d2c5b9ada196897d7063544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000060b141a20283035393a423d3c39332c241a0e04000000000000000000000a141e262e3438464646464646464646464646464646464644433f39322a20160b0000000000000000000000000000000000000000000000000000000000000000000000040a0f13191d2021262b2e2f322f35393a3c3c3d3e3e3f3e3e3d3c3c3a39352f322f2e2b2621201d18130f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d11171c1f20262b2e2f2d3338393b3c3d3e3e3f3e3e3d3c3b3938332d2f2e2b26201f1b17110c07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c1013191d2021252a2d2e312f34383a3b3b3c3d3e3f3f3e3e3d3c3b3937332d302d2c2924211f1a15110d070100000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d79869293939393939393938e817467554b4035291d100613202d394653606c79859293939393939393938e817568564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daaacacacacacacacaca5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000006101925303a444f59606d78839098a2aeacacacacacacacacb4aaa0958d80746b61564c41382d22170b0000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1bec6c6c6c6c6beb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3c6c6c6beb1a5988b7e7265584b3f3225180c0000000000000000000a151e29323d47515b606d79849198a2aeb6c0cbc6ccc4bbaea39991847a6d655b50473d32281d140a00000000000000000006121f2b37434e586774808d9aa9b3bebcbbbeb9b8b6b4b2b2acaaaaa29f9a938e87817a6f6a625b534a41372e241a100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c1319222b32373e424a5053586062666d7075787c7f8285888c8f9297989c9fa3aaacaeb4b8bdc3c9ced5cfc9c3bdb5aea69f9690837a6d675d51473d2f261c110600000000000000000000000000000000000000000000000007121d28333f4a54616e7b87939facb9c4cfccc0b5ab9e9184796d6053463a2e23170c00000000000000000000000000000000000000000000000000000000000000020a11171f252a323a4146474e4a49443e362c20160c02000000000000000006111c2630383f445353535353535353535353535353535353514f4b443c32281d12060000000000000000000000000000000000000000000000000000000000000001070c10161b1e24292c2d31373a3c3f4141454748494a4a4b4c4b4a4a4948474540413e3b3a37312d2c29241d1b16100c0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c12181c22282b2d31373a3c3f3f444648494a4a4b4c4b4a4a494846443f3f3c3a37312d2b27221b18120c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12181c1f24292c2d31363a3b3d404045474748494a4b4b4b4b4a4a494746443f3f3d3a39352f2e2b26201d18130d080200000000000000000000000000000000000000000000000000000000000000000006121f2c3844515c667683909c9f9f9f9f9f9f9d908377675d5145382c1f1306121f2b3744505b6576828f9c9f9f9f9f9f9f9e918477685d5246392d20130700000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7b9b9b9b9b9b9b1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000030d18222935414c56606b73808d959faab3beb9b9b9b9b9b9baaea2989083796d60594f443b2f261b11060000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd2d2d2cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd2cbbeb1a5988b7e7265584b3f3225180c000000000000000006111c26303b444f59626d75818e96a0aab4bfc8d2cfc4baafa59f92877c6f685d53493f342b20160b020000000000000000000815212e3a47535f6a7784919eaab7c4d0cfc9c6c5c3c1bfbdb8b7b4aeaca49f9a938e847c726d645d534940362c22190d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d161e2429343d434750545b60646a6f74797d8285888b8f9297989b9ea1a9a8acaeb4b8babfc6c8ced4cfc9c4beb9b2aba39f9490847a6e685e554c41352b1d140a000000000000000000000000000000000000000000000000000c18232e3844505b66737f8c99a4afbbc7d4c7bbafa4998c8073665c5044382c1c1106000000000000000000000000000000000000000000000000000000000000070b141b222730363e444c52545b575550483e32281e130800000000000000000b17232e38424a505f606060606060606060606060606060605e5c564e44392e23170b000000000000000000000000000000000000000000000000000000000000060b12181d1f272c2f35393a3e4347484b4d4c5254555656575858585756565553514b4d4b4847423d3a39352f2b271f1c18120b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181d24292d3338393d4347484c4a5053555656575858585756565553504a4c4847433c3937332d28231c18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d141a1d23282c2f35393a3e4246484a4d4b51535455565757585858575756545350494c4a4745413b3a37312c29241d19140d08020000000000000000000000000000000000000000000000000000000000000004101c2834404a546773808d9aa6acacacacac9f92867a6d6053473a2d2014070f1b27333f49536673808d99a6acacacacaca096877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4c6c6c6c6beb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000010b151f2a343c46525e68707d87939fa7b1bcc5d0c6c6d0c4bbafa59f92867c6f675c51473e32291d140a000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7dfd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c00000000000000060f17232e38424d56606b727f8c939ea8b2bcc6d0d1c6bcb2a89e938b7f726a60564c41382d22190e05000000000000000000000915222f3c4855626f7b8896a0acb9c5ced0d2d2d1cfcecec8c5c4bfbab6afaca49f9691877f746f645b52483e342b1f160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e1720282f353f464e545a61666c71777c80858a8e9297989b9fa2a9a8abadb3b5b9babfc5c7cad0d2cec8c4bdb9b3ada8a099928c827b6e685e564c433a2f23190b0200000000000000000000000000000000000000000000000004101c2834404b54606c7884919eabb5c0ccd2c6b9ac9f93877b6e61544a3f34281c0a0000000000000000000000000000000000000000000000000000000000030b12181d262d333b424650565e616864615a50443a3024190d0400000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6760564b3f33271b0e00000000000000000000000000000000000000000000000000000000020a11171d24292c32383a4145474a4e5355585a565d606263636465656564636362605d555a5855534e4a4745413a37322c29231d17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d151d24292f35383f44464a4e535559545b606162636464656564636261605b545855534e4946443f38342e28231c150c0701000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c13191f252a2e34383a4145474b4d5354575a555c60616262636465656464636261605b53595654524c4847433c39352f2a251e19130c04000000000000000000000000000000000000000000000000000000000000000c18232e3e4a5764717e8a97a9b3beb9bbafa399897c6f6256493c2f2316080b17222d3d4a5764707d8a97a8b2bdb9bdb2a896897d7063564a3d3023170900000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0d2d2cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000007121d27313c46515b616d7a849199a4afb9c2ced7ddd2c7bdb2a99e938b7f726a5f554b40352c20170b02000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c000000000000040d182128343f4a545e686f7d87929fa5afbac3ced7cbbfb4aaa0968f81756d62584e443a2f261b10070000000000000000000005111e2a36414d5666727f8c99a8b2bdc0c2c3c5c6cad0d1d2d4d1d0cac7c0bbb6afa8a199928b81746d635a50473d31281d13070000000000000000000000000000000000000000000000000000000000000000000000000000000000040d172029323a4145515860626c70787e83888d92979b9ea1a9a8abadb3b5b8b9bec2c5c7cbd1d2cec9c5c3bcb8b2ada9a19e9691877f786e695e564d443a31281e1007000000000000000000000000000000000000000000000000020c17202c3845515c66717e8b96a1acbdc7d2c8bcb1a79c8f8275695e5342382e23170c00000000000000000000000000000000000000000000000000000001070c151c23282f383f444d525a61686d75706c61564c4135291f160c01000000000006121f2b3844505c6676797979797979797979797979797979797772675c4f43362a1d11000000000000000000000000000000000000000000000000000001080b141c22282f35393d43484c525457585f62656769686d6f6f707171727171706f6f6d67696765625f575754514b47433d38342f27221b140b07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d14191f272f353940454a505356585f626568666c6e6f707171727171706f6e6c666865625f5856535049444039342e271e18130c04000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181e25293136394045464c525458575e61646669676d6e6e6f707172727171706f6e6c65686663605d5655534e4745413a363029241e160e080200000000000000000000000000000000000000000000000000000000000715212e3b4854616e7b8797a1adb9c6c0b5ab988b7f7265584c3f2f24190d0614212e3b4754616e7a8796a1adb9c5bfb2a6998c7f7366594c403025190e02000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000050f18242f39434e58626d75828f96a1abb5c0cbd4e0d7ccc0b5aba1968f82756d62584e43392e231a0e0500000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c0000000000010c161f2a333c44505c666e7a859199a3afb7c1ccd5ccc3baaea39891847a6d605b51463d32281d140a00000000000000000000000714202d3946525e687683909da9b2b3b4b5b7b8babec0c4c5c9ced3d6d2ccc7c0bbb2aba39f938c7f736c61594f433a2f24180d03000000000000000000000000000000000000000000000000000000000000000000000000000000030c161f29323b444c525b626a6f767d838a90959a9ea1a9abadb3b5b8babec2c5c6cacfd2d1cec9c5c4bdb9b7b1aca9a19e97918c847c726c665e574d443b32281f160c0000000000000000000000000000000000000000000000000008131e2935414b55606d7984919ea8b2bdd0d1c5b8aca0958a7d7063574d4230261c11060000000000000000000000000000000000000000000000000000030b12181e272e343c414950575e616c717a817e70685d52453e31281d130700000000000713202d3a4653606d788686868686868686868686868686868684776b5e5144382b1e1100000000000000000000000000000000000000000000000000040c13191d262d33394045474f54565d6064676a6f727476787a7b7c7d7d7e7f7e7d7d7c7b7a787674716e6a6764605d55544e47454039332d261d18130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e171e252a313940454b51545b6063676a6f727477797b7c7d7d7e7f7e7d7d7c7b797774726f6a6763605b53514a4440393029241d160d0500000000000000000000000000000000000000000000000000000000000000000000000000060d151d242930353b42464b5153565d606569696e707376787a7a7b7c7d7e7e7e7e7d7d7c7a79777572706d6865625f5854514b46413b3530282019140d05000000000000000000000000000000000000000000000000000000000714212d3a46535e697885919eabb8c4c1b4a89b8e817568554c4135291d110714202d3a46525e697884919eabb8c4c2b5a89b8f827568564d42362a1e1105000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000020b17212935404b555f6a727f8b939ea9b2bdc7d2ddd7cec5bbafa49991847a6d615b51463c30271d11080000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c000000000007131d28313c46505a606d78829097a1abb5c0c9d3cec3baafa59f92867c6f685d52493f342b20160b0200000000000000000000000814212e3b4754616e7b87939fa5a5a6a7a8aaabadb3b3b7b9bdc4c7cdd5d8d2ccc4bdb5aea59c928a7e716b60554b4135291f14090000000000000000000000000000000000000000000000000000000000000000000000000000000b151e28313b444c565d606d727c838a90959da0a7abadb3b8b9bec2c5c6cad0d1d1cfcac6c5c2bdb9b7b2acaba7a09d96918b857f796f6a605b544d453b322920160d04000000000000000000000000000000000000000000000000030c1925303945515d67727f8b96a1acbac4cec9bdb2a89d9083786c6053463b3120150a0000000000000000000000000000000000000000000000000002080d151d2429303940444e535b60696e757e858e857a6d60594f433a2f24180d03000000000713202d3a4653606d798693939393939393939393939393939184776b5e5144382b1e11000000000000000000000000000000000000000000000000060d161e24292f383f444b5153596063686d7174787b7e808285878889898a8b8b8b8a898988868482807e7b7874706d6762605853514b443f382f29241d160d0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000081019202930363e434b51555d60666c7074787c7f8183858889898a8b8b8b8a8989888583817f7b77736f6c65605c54514a423d352f281f170f0700000000000000000000000000000000000000000000000000000000000000000000020a11171f272f353a41464d53555c6064686d7175787b7d808285868788898a8a8b8b8b8a8a89878684827f7d7a76726e6a65605d55524c46413a322a251e170e0700000000000000000000000000000000000000000000000000000005121e2a36424d576875828f9ba8b5c2c4b7aa9d918477675d5145392c201306111e2a36424d566875828f9ba8b5c2c4b8ab9e918578695e52463a2d201407000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000a141d29333b45515d676f7c86929fa6b0bbc4d0d9dbd0c5bcb1a79f93877d70685e52493f342a1e150b000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c00000000071118242f3a434e58616c74808d949fa9b3bdc7d1d0c6bcb2a89e938b7f726a5f564c41372d22190e040000000000000000000000000b1825323e4b5865717e8b9a989899999a9b9d9fa2a9a7aaacb2b7bbc2c9cfd6d8cfc6bfbbada49f92867d6f675d51453c31261a0e050000000000000000000000000000000000000000000000000000000000000000000000000007121d27303a434c565e686d757f8790959da0a7acb1b8b9bec5c6c9cfd2d2cfc9c5c4c1beb9b8b5b2acaba8a19e9995908b847f79726d676058504a423b332920170e04000000000000000000000000000000000000000000000000000b151e2a36414c56606d7a85929ea8b2bdccd2c5b9aca0968a7e71655b5044372b1f1203000000000000000000000000000000000000000000000000040c13191f272f353d424a51575f656c727b828a92978e81746b61554b4135291f150b010000000713202d3a4653606d7986939f9f9f9f9f9f9f9f9f9f9f9f9e9184776b5e5144382b1e1100000000000000000000000000000000000000000000020a11171f282f353d424a50555d60656b6f757a7d8184888b8d8f9196959696979898989796969596918f8d8b8884817d7a746f6a65605c555049413d352f281f17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000109121a222a323b41464f555d60676d72787d8084888c8e9092989596979798989796959892908e8b8884807c78716d66605c544e45403a3129211910080000000000000000000000000000000000000000000000000000000000000000050b141c2228313940454c52575e61676d70757a7e8285878a8d8f929794959596979898979796959992918e8c8986837f7b77716d67615e56524c443e363029201910090000000000000000000000000000000000000000000000000000020e1a25313f4c5966727f8c99abb5c0c6b9ac9f93867a6d6054473a2d2114070e1925303f4c5966727f8c99abb5c0c5b9ada196877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000006111c262f3b45505a606d79839098a3aeb8c1cdd6ded6cabfb4aa9f958d80736b60564c41372d22180c03000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c000000050e19232935404b555f6a717e8a929da6b0bbc4cfd6cabfb4aaa0968e81756d62584e433a2f251b1007000000000000000000000000030f1c2936424f5c6975828b8b8b8c8c8d8d8f909297969a9ea0a8abb0b9bec4cdd6d8d1cbbfbaaea3989185796d60574d42372b21160b000000000000000000000000000000000000000000000000000000000000000000000000000c18232e39424b555e686e7a828c92999fa7acb1b8bcc3c6c9cfd2d0cac6c5c1bdb9b7b4b3adaba8a8a19e9a96918d88837e79726d67605d554e443f382f2921170e050000000000000000000000000000000000000000000000000007121d27303946525e6873808c97a1adbac4cec8bcb1a79e9184786d6053493f33271b0f030000000000000000000000000000000000000000000002090e161e2429313940454e545c606a6e777f868f949e9d938a7d70675d51453d31271d12070000000713202d3a4653606d798693a0acacacacacacacacacacaa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000030b141c2228313a41454f545b60676d72777c81868a8e9196989a9c9ea1a9a2a3a4a4a5a4a4a3a2a8a19e9c9a9896918d8a86817c77716d67605b534f45403a3127221b140b03000000000000000000000000000000000000000000000000000000000000000000000000000009131b242c343c444c525961676d73797f84898d9196989b9d9fa2aaa3a4a4a5a4a4a3aaa29f9d9b9896918d89847e79726d666058514b433b332b221a1208000000000000000000000000000000000000000000000000000000000000070e161d262d333e434b51565e61696e74797d82868b8f929797999c9ea1a9a1a2a3a4a5a5a4a4a3aba39f9e9b9999928f8c88837e7a746e68615d565046413b322b221b12090100000000000000000000000000000000000000000000000000091623303d495663707c8999a4afbbc7bbafa49a897c706356493d30231608091623303d495663707c8999a4afbbc7bdb2a9978a7d7064574a3d31241709000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000040d17222d38424d57616c74808d95a0aab4bfcad3dfd6ccc4baaea2989083786d60594f443a30241b100600000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c0000030c17202b353d45515d676e7c86929fa4aeb8c2cdd5cbc3baaea2989184796d605b51463c31281e130900000000000000000000000000000b1825323e4b5865717e7e7f7f7f7f8081828485878a8d91969c9fa6adb3bbc4ccd5dcd7cbbfb4aaa1978d8073695f53463d33271c1003000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b545d676e7a848f939fa3abb1b8bcc3c8ced2d0cac6c5bebab8b4b2adaba7a9a19e9b9896918d8984807b77726d67605d55514b433c332d261d170f0500000000000000000000000000000000000000000000000000030d18232e39424e58616d7a86929fa9b3becccfc7b8aca0958b7e71665c5041382d22170b00000000000000000000000000000000000000000000060b141a202830353d434b515860666d737b838b92989ea6a59e9184796d60594f43392f24180c0400000713202d3a4653606d798693a0acb9b9b9b9b9b9b9b9b7aa9e9184776b5e5144382b1e110000000000000000000000000000000000000000040c151d262d333d434c525960666c71797e83898e92999a9ea1a8a7a9abadb2afb0b0b1b2b1b0b0afb2adaba9a7a8a19e9a98928e89837e79716c656059514b433d332d261d150c0300000000000000000000000000000000000000000000000000000000000000000000000009121b252d363e464e565e616b707980858b91969a9ea1a8a7aaacaeb4b0b0b1b2b1b0b0b4aeacaaa7a8a09e9a95918b847f786f6a605d554d453d342c241a11080000000000000000000000000000000000000000000000000000000007101920282f383f444f555d60686d737b81858a8f92989c9ea1a9a6a9abadb3aeafb0b1b1b1b1b0b0b4aeacaaa8aba39f9c9895908b86807a736d68615a524c443d342d241b1309010000000000000000000000000000000000000000000000000714212d3a4754606d7a86939facb9c6c0b6ac998c7f7266594c3f3025190d0714212d3a4754606d7a86939facb9c6bfb3a6998c807366594d4031261a0e020000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000010c161f28333f4a545e69707d8a929da7b1bcc6d0dcd9cfc4baafa59f92867b6e665c51473d32281e12090000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c00000a151e29323d47515b606d79839198a2aeb6c0cad4cec3b9afa59f92867c6f675d51493f342a1f160c0100000000000000000000000000000b1724313d4a56626c71727272727273747577787a7d80848990949ea1a9b2bac4ccd5dcd1c6bcb3a99f92867b6e61594f44382c1f140900000000000000000000000000000000000000000000000000000000000000000000040e18222c3845515c666d798390969ea5aeb5bdc2c8ced4cdc8c5bebab8b3adaba8a8a19e9b9897928f8b8884807c78736f6a65605c55514b4540393128221c140b0500000000000000000000000000000000000000000000000000010b151f2834404b545f6a74808d98a2aebbc5cfc7bdb0a69d9183786d60544a3f2f261b11060000000000000000000000000000000000000000020a11171f252a323a41464f555d606a6f787f8690949fa2aab0ada1968d81746b60554b40352920160a00000713202d3a4653606d798693a0acb9c6c6c6c6c6c6c4b7aa9e9184776b5e5144382b1e1100000000000000000000000000000000000000050d161e272f383f444f565d606b70787e848b90959b9fa3ababadb2b3b5b8b9bdbcbcbdbebebebdbcbcbdb9b7b5b3b2acabaaa39f9b95908b847e786f6b605d554e443f382f261e150d040000000000000000000000000000000000000000000000000000000000000000000008121b242d373f4850585f686e757d848c92979ea0a8abacb2b4b6b8babfbcbdbebebebdbcbfbab8b6b4b2acaaa7a09d96918c837c746d675e574f473e362c231a11070000000000000000000000000000000000000000000000000000071019222b323a424a505961676d727a80868e92979b9fa3aaabadb3b3b5b8b9bebbbcbdbdbebebebdbdbfbab9b7b5b5afaca9a79f9d98928d86807a716c615e564e463f362d251b13090000000000000000000000000000000000000000000000000613202c3945515d677784909daab7c3c1b5a89b8e827568564c41362a1d110613202c3945515d677784919daab7c4c2b5a99c8f827669574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000008131e28313a44505b666e7b85929ea4aeb9c3ced8dcd1c7bdb2a89e938b7e71695f544a40352b20160c000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c0006111c26303b444f59626d75818e95a0aab4bfc8d2d0c6bcb1a79e938b7e716a5f554b41372d22190d040000000000000000000000000000000915212e3a45505a626565656565666667686a686d7074777c838a9197a1a8b2bac4cfd9d8cfc4baaea3998f82756b6054483b31261a0e000000000000000000000000000000000000000000000000000000000000000000000a15202a36424d57606d78828f95a0a8afbbbfc6cfd4cfc9c3bcb8b3adaba9a29f9b9796918e8b8885827f7b78746f6a66625f5853514b454039352f271f17110a02000000000000000000000000000000000000000000000000000007121d27313945515c666f7c86929faab4bfcdcbc0b5ab9f948a7d70665c5042382e1d140a0000000000000000000000000000000000000000060b141b222730363e444c525960676d737c838c92989fa6aeb4bcb2a89f93887d70675d51453d32271b0f03000713202d3a4653606d798693a0acb9c6d2d2d2d2d1c4b7aa9e9184776b5e5144382b1e11000000000000000000000000000000000000050e171f283039424a505960686d757d838b91969da0a7acaeb4b7b9bdc0c2c4c5c9cfc9cacbcbcbcac9cfc9c5c4c2c0bdb9b7b4aeaca7a09d96918a837d746d6760585049413830271f160e04000000000000000000000000000000000000000000000000000000000000000007111a242d373f49515a616a6f7a828a91969ea2a9acb2b7b9bdc1c3c5c6cad0cacacbcbcad0cac7c5c3c1bdb9b7b1aca8a19e95908780796e69605950483e352c23191006000000000000000000000000000000000000000000000000060f19222b343d444c545b606b70797f858d92989fa2a9acaeb4b8b9bec0c2c5c6c9cfc8c9cacbcbcacad1cbc7c5c4c1c0bbb9b6b1abaaa29f98928d857e756e68605850483f372d251b1209000000000000000000000000000000000000000000000004111d2935414b556774818e9aa7b4c1c4b7ab9e918478685e5246392d201307111d2935414b556874818e9ba7b4c1c5b8ab9e928578695f53463a2d2114070000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000060f19242f3a434e58606c78828f97a2adb6c0cbd5dfd7cbc0b5aba1968e81756c61574d42392e23190e04000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c060f17232e38424c56606b727f8c939ea8b1bcc5d0d6cabfb4aaa0958e81746c62584e433a2f251b10070000000000000000000000000000000005111d29343f4850565858585859595a5a5c565d6063676a6f767d859196a0a8b2bdc7d1dcd7cbbfb4ab9e94897d7063574d42362a1d12070000000000000000000000000000000000000000000000000000000000000000030f1b26323a46535f6973808d949fa7b1bac1cbd1d4cdc4beb9b1aca9a29f9a97928e8b8884817e7b7975726e696762605855534e46454039352f29241d150d0b050000000000000000000000000000000000000000000000000000060f18242f39434e58606d79839099a3aebcc5d0c7bbafa3998f82766b61544a3f30261c0b02000000000000000000000000000000000000030a11171d262d333b424650565d616b7079808790959fa3aab0babec4bbafa49a9184796d60584e43382b1f1306000713202d3a4653606d798693a0acb9c6d3dfdfddd1c4b7aa9e9184776b5e5144382b1e110000000000000000000000000000000000040d172029313a424b545b606b6f7a818990959ea1a8acb1b9babfc4c5c9cfcfd1d2d5dad5d5d4d3d4d5d6dad5d2d1cfcec9c5c4bfbab8b1aca8a19e95908981796f6a605b534a4239312820160d04000000000000000000000000000000000000000000000000000000000000050e19232c363f49515b626c717c848f939ea1a8adb3b9bdc4c5c9ced0d2d3d6dbd6d3d2d2d4d7d6d3d2d0cec9c5c3bcb8b2ada7a099938d837b6f6b615a50473e352b22180d0300000000000000000000000000000000000000000000050f18222b343d464e565e666c737d848c92979fa3aaadb3b9babfc5c6c9cfcfd1d2d5d4d2d2d1d0d0d1d2d4d7d3d2d1d1cbc7c5c2bcb8b4aeaaa29f97928a827a6f6a625a51493f372d241b100700000000000000000000000000000000000000000000010d18242f3e4b5865717e8b98aab4bfc5b9aca196877a6d6154473a2e2114070d18242f3f4b5865727e8b98aab4bfc6b9ada297887b6e6155483b2e2215060000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000030c18212935414c56606a737f8c949fa9b3bec8d2ddd7cdc5bbafa39991847a6d605a50453c30271c110700000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c0d182128343f4a545e686f7d87929fa5afbac3ced5cbc3baaea2989183796d605a50463c31281d12090000000000000000000000000000000000010c17222d363f454a4b4b4c4c4c4c4d4e4f4c5254575860626c707b849196a0abb5c0cbd7dcd1c6bdb0a69c8f8276695f5346392e23180c000000000000000000000000000000000000000000000000000000000000000006131f2b37434e58616e7b86929fa6b0b9c3ccd7d4cac2bbb3ada7a09d97928d8985817e7b7874716e6c6565625f5756544e4847433c38342e2924222323201c160f08000000000000000000000000000000000000000000000000040e18212935404b55606a73808d95a0abb4bfcec9bdb2a89f92877c6f62594f42382e1e140a000000000000000000000000000000000001070c151c23282f383f444d525a61686d747d848d9399a0a7aeb4bcc2caccc0b6aca0968d80736a6054473b2e221508000713202d3a4653606d798693a0acb9c6d3dfeaddd1c4b7aa9e9184776b5e5144382b1e1100000000000000000000000000000000030c161f29323a434b545c666c737c848e939da0a7adb2b8bcc3c7cbd1d2d5d6d3d2cfcdcac9c8c7c7c7c8c9cbcdcfd2d3d7d5d2d0cbc7c3bcb8b2aca79f9d938e847c726c655c544b433a32281f160c0300000000000000000000000000000000000000000000000000000000020b17202b353e48515b626d727e8691969ea5acb2b9bec5c9ced2d5d6d3d2cecbd0cac6c5c6c7ccd2ced1d2d5d5d2cec8c4bdb9b1aba49f9590857d716c61594f473d342a1f150b010000000000000000000000000000000000000000040e17212a343d464e5860686d78808891969fa2a9aeb4babec5c7cbd1d2d5d2d1ced2ccc8c6c5c4c3c4c5c6c8ccd2cfd2d3d6d3d2cdc8c6bfbab4aea9a19e948f847c716c625b51493f362d22190e05000000000000000000000000000000000000000000000715222f3c4855626f7b8898a2aebac6bdb2a8968a7d7063574a3d302417090716222f3c4955626f7c8898a3aebac7beb3a9978a7e7164574b3e2e23170b0000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000b151e2a333c45525d686f7c87929fa6b0bbc5cfdbdbd0c5bbb0a69f92877c6f685d52483e332a1e150b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c161f2a333c44505c666e7a859199a3afb7c1ccd5cec3b9afa59f92867c6e675d51483f342a1f160c0000000000000000000000000000000000000006111b242d343a3d3e3f3f3f3f3f4041424145474a4e545961696e7b849199a3afbbc3ced9d8cfc1b9ac9f93877b6e61544b4034281c1004000000000000000000000000000000000000000000000000000000000000000815212e3b47535f6a75828f99a3aeb8c2cbd5d4cac2b8b0a9a19e95908b85817d7975716e69686562605b5355534d4948433d3a37312c28262b2e2f302f2c27211a110800000000000000000000000000000000000000000000030c16202a333c45515d676f7c87929fa7b1bdc6ccc4b9aca1968d80736a5f54473e30261c0c0200000000000000000000000000000000030b12181e262e343c414950575e616c717a818991969fa4abb1babfc6cfd0c7c0bbb2a89f93877c6f6256493c2f231609000713202d3a4653606d798693a0acb9c6d3dfeaddd1c4b7aa9e9184776b5e5144382b1e11000000000000000000000000000000020b151e28313a444c555d666d787f8791969ea5acb1b9bdc4c8ced3d7d6d3d0cac6c5c2c0bebcbbbabababbbcbec0c3c5c7cbd1d3d6d6d3cdc8c4bdb9b1aba59d9691877f776d665d554c443a31281e150a000000000000000000000000000000000000000000000000000000000a141d29323d47505a626d727f8a9298a1a8afb9bdc4cacfd5d9d4d0cac6c5c1bebbbfbab8b9bbc0bec1c5c6c9cfd4d8d4cfc9c3bdb5afa7a09792877e716b61594f463c31271d120700000000000000000000000000000000000000020c162029333c464e58606a6f7a828c939aa1a9adb3babfc6cad0d3d5d2cfc9c5c4c1bfc0bbb9b8b7b7b7b8b9bbc0bfc2c5c7cbd0d3d8d4d0cac6bfbab3ada69e9691867e726d625b51483f342b20170d020000000000000000000000000000000000000000000613202d394653606c7985929facb8c5bfb2a6998c7f7366594c4030251a0e0713202d3a4653606d7986929facb8c5c0b3a69a8d807367544a3f34281c100300000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000007121d27303c45505a606d7a849199a3afb8c2cdd7ded6cabeb3a99f948c7f736a60564c41362d21180c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f322518131d28313c45505a606d78829097a1abb5c0c9d3d0c5bcb1a79d938b7e716a5f554b40362d22180d04000000000000000000000000000000000000000009121b22292e3132323232323333342f35393a3d43474f575f696f7c87929fa7b1bcc8d4e0d4c8bbafa49a8d8073665c5145382c1f1308000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c88939eabb4bfcad4d7cec2b8b0a69f97918b837e7974706d6664615f5758555350494847423c3b38322e2b26222a31373a3c3d3c38332c231a0c030000000000000000000000000000000000000000000b151e28323c454f59606d79849199a3afb9c3cfc4baafa59e9184796d60584e43352c1e140a00000000000000000000000000000000070d151d242930383f444d535b60696e757e858e939ea0a8afb5bdc3cbd1ccc4beb6afa8a099928c8275685b4f4235281c0f000713202d3a4653606d798693a0acb9c6d3dfeaddd1c4b7aa9e9184776b5e5144382b1e110000000000000000000000000000000a141d27303a434c565e676d78818c9299a1a8afb8bcc3c9cfd4d9d5d0cac6c5bfbab8b6b3b1afaeaeadaeaeafb1b4b6b9babfc5c7cbd0d6d9d4cec9c2bcb8afa8a099928c81786d675d564c433930261c1106000000000000000000000000000000000000000000000000000006111b262f3a444f59616c727f8b919fa2aab2bac1c9ced6dbd6cec8c5bebab8b4b2afb4aeacacafb5b1b4b8b9bec5c7cdd5dad5d0c7c0bbb1a9a19992877d706b60584e43392f24180e0500000000000000000000000000000000000008131e28323b454e58606a6f7c848f949fa4acb2babec5cbd1d6d4cfc9c5c4bdb9b7b5b2b6afacababaaaaabacafb6b2b6b8babfc6c7cdd4d7d6d0cac5beb9b0a9a198928b7f726d625a50463d32291e140800000000000000000000000000000000000000000006121f2b3844505b6676838f9ca9b6c2c2b5a89c8f827569574d42362a1e1206121f2c3844515c667683909da9b6c3c3b6a99c908376665c5044382b1f120600000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000050e18232e39424d57626c75818e96a1abb5c0cad4dfd5ccc3baada2979082786d60584e433a2f241b0f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f32251818242f3a434e57616c73808d949fa9b2bdc7d1d6cabeb4aaa0958e81746c61584e43392f241b1006000000000000000000000000000000000000000000000911171d2124252525252626272724292c2d32383e454d57606a73808d95a0acb8c3ced9d8ccc0b6ac9e9285796d6053463a3025190d01000000000000000000000000000000000000000000000000000000000005121e2a36424d576673808c99a5afbdc6d1dbd0c5bcb0a69f9490857e78716d6763605c5455534d4b4846443f3b3a37312e2c27211f202a343c4347484a48443d352c1e150b000000000000000000000000000000000000000007121d27303a444d57606b74808d96a0abb5c0cbc6bdb2a89e93897d70675d51463c32231a0c020000000000000000000000000000000711191f272f353c424a50575f656c727b828a91979da5acb2bbc0c7d0cfc9c0bab2aca49f96918780786d6053463a2d201307000713202d3a4653606d798693a0acb9c6d3dededdd1c4b7aa9e9184776b5e5144382b1e11000000000000000000000000000006111b262f39424c565e686d79828e939fa3abb2bac1c8cdd5dad6cfc9c5bebab8b4aeaca9a6a4a2a2a1a0a1a2a3a4a7a9acaeb4b8babfc6cad0d7dad5cdc8c1bab2aba39f938e82796d685d554b42382e23171007000000000000000000000000000000000000000000000000000b17222d38414c56606b717e87939fa3aeb4bcc4ccd5dad7cfcac3bcb8b4aeaba8a5a2aaa29f9fa4aba4a7abadb3b8bcc2c9cfd6d9d2ccc3bbb3aba39992867d6f6a5f554b40352920160c0200000000000000000000000000000000040e1924303a444d575f6a6f7d8691969fa6afb6bec4cad0d7d5cec8c4bdb9b8b2adaba8a5aca49f9f9e9d9d9e9fa4aca5a9acaeb4b7bbc2c7ccd2d9d6cfc9c1bbb2aaa39f918b7f726c62584e443b3025190e040000000000000000000000000000000000000000030f1c28333f4a546673808d99a6b3c0c4b8ab9e918578695e52463a2d201407101c2834404a546774808d9aa7b3c0c5b8ac9f9285796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000020b17202834404b545f69717e8b939ea8b2bdc7d1dcd8cfc3baafa59f92857b6e665c50463d31281e120900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f322519222935404b555f6a717e8a929da6b0bbc4cfd5cbc3baaea2989083796d605a50463c31281d1209000000000000000000000000000000000000000000000000060c1115171818191919191a1b191d2021272b333c454e58606d7983919da8b2bdc8d4ddd2c7b9ada1978a7e7164564c41362a1d110500000000000000000000000000000000000000000000000000000000000714212d3a46535e697784909daab7c1cfd8d6cabeb4aa9f948f827a716c65605d5553514a4846423e3b3937332d2e2b26221f1b151e28323c464e535556554f473d30271c1207000000000000000000000000000000000000091218232e39424c565f69707d88939fa8b2bdc7cbbfb5aba0968e81746b61554b40342a201108000000000000000000000000000000020b19232b313940454e545c60696e777e858f939ea1a9afb9bdc4ccd2cdc4bdb9afa8a19a938d847c736d665c5145382c1f1306000713202d3a4653606d798693a0acb9c6d1d1d1d1d1c4b7aa9e9184776b5e5144382b1e1100000000000000000000000000040e17222d38414b545d686d7a838f949ea5afb5bdc4ccd4d9d7d0cac4bdb9b3adabaaa29f9c9a9796959494949596989a9c9fa3aaacaeb4babec5cbd1d9d8d4ccc3bdb5aea59e948f837a6d675d544a3f342822190d040000000000000000000000000000000000000000000000030f1b27333f49535e68707d879299a4afbabfc6ced6ddd4cdc5bebab1acaaa29f9b9895949892939995989b9ea1a9abb1b9bec4cdd3ddd7cdc5bdb4aba29892857c6f675d51453e32281e1308000000000000000000000000000000020c16202935414c565e696e7c859298a1a8b0bbc0c7d0d6d5cec9c3bcb8b2adaba8a19e9b99969a939291909192939a95999c9fa3aaabb0b9bbc0c7d0d6dad5cdc4bcb4aea39b918b7e716a60564c41362a20160c0200000000000000000000000000000000000000000b17222d3d4a5764707d8a97a8b2bdc6b9ada197877b6e6154483b2e2115060c18232e3e4b5764717e8a97a9b3bec6baaea298887b6f6255483c2f22150700000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000a141d29323a45515c666e7b86929fa5afbac4cfd9dcd1c6bdb2a89d938a7e71695e544a3f342b1f160c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f342a212b343d45515d676e7c86929fa4aeb8c2cdd6cec3b9aea49f92867b6e675d51483e342a1f160c00000000000000000000000000000000000000000000000000000105090b0b0c0c0c0c0c0d080d1113141b212a333d45515c66717e8a96a0acb8c4cfdad5c9beb3a99c8f8276685e5246392d20130800000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8795a0acb8c5d3dfd3c6baaea2988f82796d68605b53514b4644403b3a36312f2d2b2722211e1a1513151e26303a444e585f626360594f42392e23180c020000000000000000000000000000000009121b242834404b545e686e7b85929aa4afbac3ccc3bbaea3999184796d60594f43392f22190e000000000000000000000000000000000a141d2b353d434b515860666d727b828b92989ea6adb3bbc1c9cecfc9c1bbb2ada59d96918880796f6a605c544b4034281c1004000713202d3a4653606d798693a0acb9c4c4c4c4c4c4c4b7aa9e9184776b5e5144382b1e11000000000000000000000000020c162027333f49535c666d7a8390959fa6afbbc0c7cfd6dcd7cec6bfbab2ada9a29f9a98928f8d8b898887878788898b8d9092989b9fa3aaadb3bbc0c7cfd4ddd5cfc6bfbbafa69e959083796d665c504440342b1f160c01000000000000000000000000000000000000000000020b19232b3744505b656d7a859199a3abb5c0cad0d8dbd2cbc2bbb3ada7a09d98928e8b888786858687888b8e92979d9fa7adb2bbc2cad2dad6cfc6bdb4aaa2979183796d605a50443a3025190d04000000000000000000000000000008131e28323a46525d686e7b849197a2aab2bac2ccd2d9d6ccc4bdb9b1aca8a19e9a96918e8c89878685848484858687898c8f92989c9fa6acafb5bdc4ccd7dcd6cfc6bfbaada39f92877c6f685e52463e32281e130800000000000000000000000000020608080a0a0a0614212e3b4754616e7a8796a1acb9c5beb3a9978a7d7064574a3d2d22170b0715222e3b4855616e7b8897a2adb9c6bfb4aa978b7e7164584b3e2e23180c0a0a0a0a0a0a0a0a0a0a0a0a08080602000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000006111b262f3a444f59606d79839098a2aeb7c1ccd6dfd7cbbfb4aba0968e81746c61574d42382e22190d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584e463c3329323d47515b606d79839198a2aeb6c0cad4d0c5bcb1a79d928a7e71695f554b40362d22180d0400000000000000000000000000000000000000000000000000000000000000000000000000000104070a0f18212834404b54606c7884919ea9b3bec9d5dacfc5b9ac9f92867a6d6154473a3025190d01000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a7b1bcc8d4ded2c5b8ab9f92857b6e675e56504945403a38342e2d2a2622201f1b1714120e0f171e273038424c565f6a6f706b60544a4034281e13080000000000000000000000000000000a121b242d363e45515c666d7a849197a1acb6c0ccc3b9b0a69f92877c6f675d51473d31281d100700000000000000000000000000000006111b262f3d474f555d606a6f787f8690949fa2aab0b9bec4cdd5cdc5beb9afa9a19e938e847d746d676058514b42392e23180c00000713202d3a4653606d798693a0acb8b8b8b8b8b8b8b8b7aa9e9184776b5e5144382b1e1100000000000000000000000008131e28323a44505b656d78828f95a0a7b0b8c1cbd1d9d9d1cbc1bcb4aea8a19e97928e8a8583807e7c7b7b7a7b7b7c7e8183868a8e92989fa2a9afb5bdc3cbd7dcd8d1cbc1b8b0a79f958f82786d605b51463d31281e13080000000000000000000000000000000000000000000a141d2a36424d57606c77828f97a1abb5bdc7d2dbdbd2c9c0b9b1a9a29f95908b85817f7c7a7979797a7b7e81858a90959ea1a9b0b8c0c8d1dad8cfc6bcb3a9a0958e81746c61564c41362a20150a00000000000000000000000000010d1924303a44505a616d7a839196a1a9b3bcc4ccd8d8d0cac0bab2aca7a09d96918d8984827f7d7a797878777778797a7c7f83868a8f949b9fa4abb2bac1cbd1d9d8d1cbbfbaaea39991847a6e615a50443a3024190d020000000000000000000003090e1214151616161616202d3946525e687884919eabb7c4c0b3a6998d80736653493f33271b161616212d3a46535f697885929eabb8c5c0b4a79a8d817467544b4034281c161616161616161616161616161514120f0a0300000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000040d17222d38414c56606b73808d95a0aab4bfc9d3ded6cdc5baaea3999184796d605a50453b30261c1007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbfb2a5988c7f726a60584e453b333b444f59626d75818e95a0aab4bec8d2d6cabeb3a9a0958d80746c61574d43392f241b0f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f18232e3944505b66717e8b97a1adb9c6d2dfd3c7bbafa3998b7e7165564c41362a1d1105000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1beced9dacdc1b4a79a8e8174695e554c443f38352f2c2823211e1a1513120f0b080d141921293039424a545d686f7c7d70665c51443a3025190d030000000000000000000000000006131c242d363e48525b606d78829096a0a9b3bec7c5bbb1a79e948c7f726a60554b41352c1f160c000000000000000000000000000000000b17222d38414f5960676d737c838c92989fa6aeb3bcc1c9cfd0cac1bbb3ada59e96918a8179706b605d554e45403930271d120700000713202d3a4653606d798693a0ababababababababababaa9e9184776b5e5144382b1e110000000000000000000000040d1925303a444f59606c77818e949fa7b1b9c2cad7dcd7cfc7c0bbb0aaa29f96918c85817d797673716f6f6e6d6e6f707174767a7e82868d92979fa3abb1b9c0cbd1d9dcd7cac1b9b1a79e948e81746d63594f433a2f24190d030000000000000000000000000000000000000006111b262f3846535e69727f8c949fa9b3bdc7d0d9dbd2c9c0b7afa79f97928b837e7a75726f6d6d666c6d6f7174797e838a91979fa6aeb6c0c8d1dbd8cec5bcb1a79d938a7e71685e52463c32261b0f0500000000000000000000000005111d2935414c56616c76828f95a0a8b2bbc5ced6d7cec6bfbaafa8a09e95908a84807c787572706e6c666b6a6a666d6d6f7276797d82898f9399a0a8afbbc0c7cfd9dcd7cbbfb4aba1968f82766c61564c4135291e1308000000000000000000060e151a1e21222323232323232a36414c566875828e9ba8b5c1c2b6a99c8f8276655b5044372b23232323232b37424d576976828f9ca9b5c2c3b6aa9d908377665c5145382c232323232323232323232323232322211f1a150e06000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000010c161f27333f49535e68707d88939fa7b1bcc6d0dbdacfc5bbb0a69f92867c6f675d51483e33291e140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f92867c6f6a5f574d453b424c56606b727f8b939ea7b1bcc5d0d4cbc2baada2979083796d605a50453c31271d120900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d28333f4a54606d7985919eabb8c2cdd8d7cbc0b5ab9c8f8276685e5246392d201408000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5b2bfccd8d6cabdb0a3978a7d7064574d433a332d29241f1c1814120e0906060a0f13191f252a333b424b545c666d7a8484786d60564c4135292015090000000000000000000000020a1117252d373f48505a636d75818e949fa8b2bbc5c7bdb3a9a0958f82776c60584e433a2f231a0d04000000000000000000000000000000030f1b27333f4953606b7079808790959fa3aab0babec5ced5cec5bebaafa9a19e938e847d746d676059514b433d342e271e150b0000000713202d3a4653606d7986939e9e9e9e9e9e9e9e9e9e9e9e9e9184776b5e5144382b1e1100000000000000000000010c161f2935414c56606b73808c939ea6b0b9c3cbd4dcd7cdc5bdb5afa69e98928c847f7a74706d676764636261616162636567676d71757a80858d92999fa7afbbc0c7cfd9dcd3cbc2b9b0a69d938c7f726b60554c4135291f150b010000000000000000000000000000000000000b17222d38414f59616e7b86929fa6b0bbc4cfd9ded3c9c0b7afa59d9590857f78716d67656261605c60616265676d71767e848f949da4aeb6c0c8d2ddd7cec3b9afa59f92857a6d61584e43372b21160b0000000000000000000000030e18212d3946525d68717e8b949fa7b1bac4cdd7d7cec5bcb4aea59d96918a837d78746f6a68666361605b5e5d545c60616266676d70767c828791969ea5afb5bdc7d1dcdcd1c6bdb2a99f948a7e71685d52453a3025190d0100000000000000060f1820262b2e2f30303030303030303f4c5965727f8c98abb5bfc5b8ab9f9285796c605346393030303030303031404d596673808c99a6b3bfc5b9ac9f9286796d6053463a3030303030303030303030303030302f2e2b2620180f060000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000007121d28313944505b656d7a85919aa4afb9c3ced7ddd5c9beb3a99f948c7f726a5f554b40362c21170c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd3c6baaea29892857c6f695f574d444a545e686f7d87929fa5afb9c3ced7cdc2b9aea49f92857b6e675c51483e332a1f150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3845515c6673808d9aa7b1bcc7d3dcd1c5b9ac9f92867a6d6154473b3025190d010000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0cdd9d5c8bbafa295887c6f6255493c3027221b1812100c070c070c1013141a1e242930363d454d545c666d78828f8b7f72685e52463c31261a0c03000000000000000000020b141b2227373f49515a616c73808c939ea6b0bac3c7beb5aba2979183796d655b50463d31281d11080000000000000000000000000000000005121f2b3744505b65707d848d9299a0a7aeb4bcc2cad0d0cac2bcb3ada59e97928a817a706b605d554f4540393128231d150c030000000713202d3a4653606d788691919191919191919191919191919184776b5e5144382b1e110000000000000000000008131e28313a46525e68707d88939fa5afb8c2cbd5ddd7cdc5bbb3aba39f938f867f79726d6763605c55585655545454555658555d6064686e737a808790959da5afb5bdc7cfd9ddd4cbc1b8afa59f92877c6f675d51453e31271d12070000000000000000000000000000000000030f1b27333f4953606b75828f98a3aeb8c2cdd6e0d5ccc1b7afa59d938e837a726d66605d5555545350535455555c60646c717a828d929ca4aeb6c0cbd4dfd5ccc0baada2978d81746a5f53473d33271c1004000000000000000000000915202c38434f59616d7a85929ea6b0b9c3ccd6d8cfc5bcb3aaa29f938e847e78706c6562605859565453504a514a50535456555c60636a6f757c848e939fa3abb5c0cbd7dbd8cfc4bbb0a69e91857a6d60564c41362a1d1307000000000000030e18212a31373a3b3d3d3d3d3d3d3d3d3d4956636f7c8999a3aebbc6baada297887b6e6155483d3d3d3d3d3d3d3d3d3d4a5763707d8a96a8b2bdc7baaea399897c6f6256493d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a37312a22180e0300000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000050f18242f39434e58606c77828f97a1acb6c0cbd5e0d5cbc3b9ada1978f82776c60584e43392f241a0f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd6cabeb4aaa29791857b6e695e564c505c666e7a849199a3aeb7c1cbd5d0c5bbb1a79d928a7e70695f554b40362c21180d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2834404b54626e7b88959fabb7c4d1ddd4c7bbafa3998b7e7265564c41362a1e11050000000000000000000000000000000000000000000000000000000d192633404c5966737f8c99a6b2bfccd9d5c8bbaea295887b6f6255483c2f26201e19191818181819181c1f20262b2f353b41464f575e666d78818e9492857a6d61584e43372b1e150a0000000000000000000a141d262d334049515b626c717e8b929ca5afb8c2ccc0b6aca39992857b6e675d53493f342b1f160c00000000000000000000000000000000000613202d394653606c798390969fa3abb1babfc6ced6cec6bfbab0a9a29f938f857e756d686159514b433d352f271f18120b03000000000713202d3a4653606d788585858585858585858585858585858583766a5d5043372a1d10000000000000000000010d19242f3a43505a616d7a84919aa4afb7c1cad4ddd7cdc5bbb3a9a299928c827b726d66605d5553514b4b494848474848494b4b5154565e61676d737c838e939fa3abb5bdc7cfd9ddd3cac0bbafa39991847a6d605a5043392f24180c020000000000000000000000000000000005121f2b3744505b65707d89939eaab4bfcad4dfd8cec3baafa59d938e81786e68605c54514b494746444647484b51535a61686d78808d929ca4aeb9c2cdd7ded6cabeb3a99f93877c6f62594f44382c20150a000000000000000000020e1a26313b4854606b74818e97a1adb8c2ccd5d9d0c6bdb3aaa298928b8179716c66605b53544e4c4a4746443f443f444647494b51535860626a6f7a818b9299a3afbbbfc8d2ded6cdc2b9ada1978d8073685e52463a2f24180d0100000000000915202a333c4247484949494949494949494953606d7986929facb9c5beb3a9978a7e7164574b494949494949494949494954616d7a8796a1acb9c5bfb4ab988b7e7265584b494949494949494949494949494949494847433c342a20150a00000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000030c17212935404b555f6a727f8c949ea9b3bec7d2ddd8cec3b9aea49e92857a6e655b50463c31281d1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcdbd0c5bcb3a9a19791847b6e685e555a606d78828f96a1abb5bfc9d3d2c7beb3a99f958d80746c61574d43392e241a0f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3947535f6a7683909da9b6c3d0dcd7cbc0b5ab9c8f8276685e5246392d2014080000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becfdad6c9bdb0a3968a7d7063554b4038302d2a2526252424252623292c2d31373a41454d525960696e78818e939e978d80746a5f53473d30261c11060000000000000006111b262f383f44525b636d727e87929fa4adb7c1c8c0bbafa49a92877d70695f554c41382d22190d04000000000000000000000000000000000005121f2b3744505b656e7b85929fa5afbac3cbd0d1cbc2bcb4aea69f97928b827a716c605d564f45413a3129241d150d0700000000000006121f2b3844505c666d787878787878787878787878787878787671665b4e4235291c1000000000000000000004111d2935414c55626c75828f96a1acb6c0c9d3dcd8cfc5bbb3a9a19792877f756e69605c54514b4645403e3c3c3b3a3b3c3d3e4145474c52555d606a6f79818b9299a3abb5bdc7d1dcdcd7cbc0b5aba1968e81756c61554b4035291f1409000000000000000000000000000000000613202d394653606c7883909da5afbcc6d0dcdcd0c6bcb1a89e938e81776d665e56504a45403c3a3a38393a3c40454650565d666c73808d929da7b1bbc5cfdbdbcfc5bbafa4998f82766b6054483c31261b0f02000000000000000006121e2b37424e57636f7c87939fa9b3becad4ddd2c7beb4aba29892867e746d67605b54504947433f3d3b3938332e34383a3a3c4045474e545860676d757e87929fa3adb6c0ccd5dfd5c9beb3a99f92867a6d61554b4035291d110400000000020e1a26313c454d535556565656565656565656565c677783909daab6c3c0b3a79a8d80746754565656565656565656565656565e687884919eabb7c4c1b4a79b8e81746855565656565656565656565656565656565655534e463c31261a0f02000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000a151e29333b45515d676f7c86929fa6b0bbc4d0d9dbd0c6bcb1a79d928a7d70685e53493f342a1f160c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce2d7cec5bbb2a9a09691837a6d675d616c73808d949fa9b2bdc6d1d8ccc0b6aca2979083786d605a50453b30271d1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2b37424e5765717e8b98a4b1becbd7dcd1c5b9ac9f92867a6e6154473b3025190e0200000000000000000000000000000000000000000000000000000a1623303d495663707c8996a9b3bec9d5d9cdc0b3a69a8d8073675d514a423c3936303232313132332f34383a3d43474c52565e616b707b828f939ea59f92877c6e62594f42382e23170c010000000000000b17222d384149505c636d727f889299a3afb6bfc8c0b6aea49f93887e716b60574d433a2f261b1007000000000000000000000000000000000000030f1b27333f49535e69717e8a939ea8b2bdc7cfc6bfbab0aaa29f948f857e756e68615a524c443e352f281f18120b030000000000000003101c28343f4a545c606b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6a665e554a3e32261a0d0000000000000000040e18222c3945515d67717e8b939ea9b2bec7d2dbdcd1c6bcb3a9a19792857d726d615e57514a45413a38342e302f2e2e2e2f302f35393b41464c51585f666d747f879299a3abb5c0cbd7dcdcd1c7bdb2a89e938a7e71675d51453b30251a0e03000000000000000000000000000007131f2c38434f5964707d8a95a0acb7c1ced8e2d6cbbfb4aaa0958e81786c655c544d443f38352f2e2d2c2d2e2e34383e444c545b606e74808d959fa9b3becad6dfd7ccc0b5ab9f94897d7063584e43372b1e130800000000000000000814212e3a47535f6a7683909aa4afbbc5cfdcd8ccc0b6aca39992867c716c605d55504a443f383832302e2d2b2823282b2d2e2f34383d43474e555d606c717e8b919ca4aebac3ced9dacfc4baaea2988c8073675d5145392c2013080000000006121e2b37424d575f626363636363636363636363636774818d9aa7b4c0c3b6a99c908376666363636363636363636363636363636875828e9ba8b5c1c3b7aa9d90847767636363636363636363636363636363636363625f584e43372b1f1206000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000006111c26303b45505a606d79849199a3aeb8c2cdd6dfd6cabfb4aaa0958d80746b61564c41382d22190d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9e0d7cdc4bbb2a8a0959083796d6769717e8a929da6b0bbc4cfd7cdc5bbafa49a92857b6e665c51483e33291e150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2c38434f5965717e8b98a4b1becbd7e0d4c7bbafa3998b7e7265564c41362a1e110500000000000000000000000000000000000000000000000000000815222f3b4855626e7b8897a1adb9c6d2ded1c5b8ab9e9285796d605c544e474641403f3e3e3e3f3f40404547494e53565d60686e747d8590949ea5afa3998f82756b61544a3f34281e13080000000000030f1b27333f49535b606e737f8b939aa3abb5c0c8c0b6aea49c928c7f726c62594f453b31281d140a00000000000000000000000000000000000000000b17222d38414d57616c75818e96a0abb5c0c3bcb4aea69f98928b827b716c615e565045413a3229241d160d07010000000000000000000b17232e38424a50535e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5d5b554c43382d22160a00000000000000000a15202b37424d57606d7a85929ea5afbbc4d0d9ded7cbbfb4aaa19792857c706b625b524d444039352f2c28232322212121222324292c30363a41454e545c606d727e879299a3afbbc0cad4e0d9cfc4baafa59e9184796d60574d42362a1f140900000000000000000000000000000915222f3b4854606b7683909ca7b1bcc9d3e0ddd3c7baaea3989183796d665b534b423b342e292421201f202123282c323a424a505c606d78839097a2adbac2cdd8ddd2c7bdb0a69c8f82766a5f53473a3025190d0100000000000003101c28343f4a54626e7b88949facb6c0cdd7dcd4c8bbafa49a92877d706a625a514b443f38332d2b272321201f1c171c1f202123292c32373d434c515a626c737f8c929da8b2bdc8d4e2d6cabfb4aa9f92857a6d6053473a3025190d010000000814212e3a47535f696e70707070707070707070707070717e8b97a4b1bec5b8ac9f9285787070707070707070707070707070707070727f8c98a5b2bfc6b9ac9f93867a707070707070707070707070707070707070706e6a5f53473a2e211408000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000040e17232e38424d57616c74818e96a0abb4bfcad3dfd6ccc4baaea2989083796d60594f443b2f261b10070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9e9dfd6cdc4bab1a7a0959082796d6e7b86929fa4aeb8c2cdd6d0c5bbb0a69f93887d70695e544a40362c21180c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3b4854606b7783909daab6c3d0dde3d7cbc0b5ab9c8f8376685e5246392d20140800000000000000000000000000000000000000000000000000000713202d3a4653606d7985919eabb8c3ced9d2c6b9ada1978e81746d66605854524c4d4c4b4b4b4b4c4d4b515356585f62686d727b818892979fa6afb5ab9e94897d70665c50443a2f24190d010000000005121f2b3744505b656c74808c919fa4acb5bdc7bfb6aea49d928c80736d625a50473d332a1f160b02000000000000000000000000000000000000000006111b262f3b45505a606d79849199a3afbbbbb1aaa39f9490867f776e69615a524c443e3530282018130c04000000000000000000000006111c2630383f444652525252525252525252525252525252504e4a433a31271c110500000000000000030f1b26313a47535f6973808d97a1adb8c1cdd6e2d5ccc3baaea39892857c6f6a60595146423b342e29241f1c1816151514151516181d20252a2f353c424b515b626c717e87929fa4aeb8c2ced8e1d6ccc1b9ada1968c7f73695e52463b31261a0e0200000000000000000000000005111e2a36414c56636f7c89949fabb9c3cedbdfd5c9bdb2a89f92867c6f675d544a41393028231c181413121314181c20282f383f44505c666e7b85929fa7b1bcc8d4ded9d0c2b7aa9e94887c6f62564c4135291d110500000000000006121f2c3844505c6673808d9aa6b0bec5c7cbd1c9beb2a99f93887e716b605850454039332d27221b1b171413120f0b10121314181c1f272b313a4145505a636d74808d96a0acb8c2d0d9dbd0c6baada2978a7e7164564c41362a1d11050000000815222f3b4855626e7b7c7c7c7c7c7c7c7c7c7c7c7c7c7c7e8b97a4b1bec6baaea2988b7e7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7f8c98a5b2bfc7bbafa4998b7f7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c6e6255483b2f221508000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000020c162028343f4a545e69717e8a939da8b2bdc6d1dcd9d0c4baafa59f92867c6e675c51473e32291d140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9f1e8dfd6ccc3b9b1a79f948f827979839098a2aeb6c0cad4d2c7beb3a99f948d80736b61574d42392e241a0f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36424d56636f7c8995a0acb8c4d1dee8dcd1c6b9ac9f93877a6e6154473b3025190e020000000000000000000000000000000000000000000000000006121f2b3844505c6673808d9aa7b1bcc8d4d5c9beb3a99d938d80786f6a64615e565a5958575758595a555c6063676a6f747a7f868e939aa1a9b0b9bdb0a69d9183786d60564c4135291d1104000000000613202d394653606c77808c929ca3afb6bec7c0bbada49c928d80746e635b51483e352b21180d04000000000000000000000000000000000000000000000a141d29333e45515d676f7c87929fa6b0afa7a098928c827b726c655e575046413b3229241e160e0701000000000000000000000000000a141e262e34383a4545454545454545454545454545454543423e3831281f150a000000000000000006121f2b37434e58616e7b86929fa9b3becad3dfd9d0c3baaea49f92867c6f6a5f584f473f363028231c1813100c070908070809070d1114191e242930394045515a616c717e8b929da6b0bcc6d0dbded5c9bdb2a89f92867b6e61574d42362a1e13080000000000000000000000000713202d3946525e6875828f9ba6b0bccbd5dfd9cdc5b9aca0968c7f726a5f554b42382f271e17110d07070606070c10161d262d343f4a545e69717e8b959fabb8c1ccd7e2d3c7bbb0a69b8e8174685e5246392d2014090000000000000713202d3a4653606d7985919eabafb5b9babfc5c6b9ada1978d80736c61594f463f352f28221c17110f0a0806060300030607070c10151b1f282f353f48515b606d7884919da6b0bdc7d2ddd6cabeb3a99c8f8275685e5246392d2013070000000e1b2835414e5b68748189898989898989898989898989898b909ba6b3bfcabfb4aa9a908b8989898989898989898989898989898989898c919ba7b3c0ccc0b5ab9b918b898989898989898989898989898989898989898175685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000008131e28323a44505c666e7b85929fa5afbac3cfd8ddd2c7bdb2a89e938b7f726a5f554b40352c20170b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9f0e9e4ded5ccc3b9b0a69e948e81818e95a0aab4bec8d2d8ccc0b6aca1979082786d60594f453b30271c1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a46525e6975818e9ba7b1bcc8d4e0ede0d4c7bbafa4998b7e7265564d41362a1e11050000000000000000000000000000000000000000000000000003101c28343f4a54626f7c8895a0acb8c1cdd6cfc5bbafa59d928d827c76716d6868666565646465666668676d7073777b81868c92989fa4acb3bbc2c1b8aca0958b7f72685d5245392c201307000000000815222f3b4855626e7b858f949fa3aab1b9bdb5afa49c928d80776c605c52493f362d23190f060000000000000000000000000000000000000000000000020b17212935414b55606a737f8c949fa9a39f9590867f786e69605b534d453e3630292019130c04000000000000000000000000000000020c141c23282b2d383838383838383838383838383838383735322d271f160d0300000000000000000815212e3a47535f6a75828f99a3aebbc5cfdcddd2c7beb2a89d928b7e716a60584e463d352a251f18120d070400000000000000000104080d13191e272e343f48505a626c74808d949faab4bfcad6dfdacfc4baaea2988e8175695f53463a3024190d0000000000000000000000000714212e3a4754616d7a86929facb9c2cddfe0d4c8bcb1a79e9184796d60584e43392f261d150c0600000000000000040b141c232e38424d57606c7883909da6b0bbc7d3ded8ccc2b9ac9f92867a6d6154473b31261a0e0200000000000a1724313d4a5764707d8a979c9fa3abacaeb4b8bab1a79e9184796d605a50473d3429241d17110b06000000000000000000000000040a0d161e2429364044515c66707d8a949fabb5c0ccd7dbd0c5b9ac9f92867a6d6154473a2e2114080000000e1b2835414e5b6874818e96969696969696969696969696979ba2acb7c3d0c6bcaca29a97969696969696969696969696969696969696989ba3adb8c4d2c7bdada39b989696969696969696969696969696969696968e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000060f1924303a444f59606d78839097a2adb7c0ccd5e0d7ccc0b5aba1968f82756d62584e43392e231a0e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9e6ded8d3d1d0cbc2b8b0a69e938e8e939ea7b1bcc5d0d6cdc4bbafa49a92857b6e665c50473e33291e150b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b54616e7b86929facb9c3cdd9e4f0e3d7ccc0b5ab9c8f8376685e5246392d20140900000000000000000000000000000000000000000000000000000b17232e3847545f6a7784919da5afbbc4cfd7cdc1b7aea49d948f88827e7a777573727171717272737577797c8084888d92989fa2aaafb6bec5cdc7bcb1a79e92857a6d6054473a2d211407000000000814212e3a47535f696e7a828b9298a0a7aeb4aba49f918c80746c655b504a40372d241b110700000000000000000000000000000000000000000000000000050f18242f3a434e58606d78829097a099928c837c726c665f575049413b332a251e170e08020000000000000000000000000000000000020a11171c1f202b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2a2926221c150d04000000000000000005121e2a36424d57626f7c88939eabb4bfcdd6e1d8ccc0b6aca0968d80746c62584e463c342b231a140c07000000000000000000000000000001080c151d2328363e48505a606d78829098a2aebac2cdd8e0d6cabfb4aa9f92877b6e61564c4135291c11060000000000000000000005121e2b37424d5765727f8b99a3afbbc7d3e0ded1c4b8aca0958a7d70675c51463c31281d140b03000000000000000000020a111c26303b44505b656f7c89949eaab7c2cdd8e0d3c7bbaea3998b7e7265574d42362a1e120500000000000d1a2733404d5a667380888b8f92999c9fa3abacaeab9f958a7e71675d51483e352b2218120b0600000000000000000000000000000000040c1319242834404a54616c76828f99a4afbbc7d4e0d3c7bbafa3998b7e7164584b3e3025190e0200000e1b2835414e5b6874818e9ba3a3a3a3a3a3a3a3a3a3a3a3a4a6acb4bec9d8cebeb4aca6a4a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a5a7adb5bfc9d9d0beb5ada7a5a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000030d18222935414c56606b73808c949fa9b3bec9d2ded7cec5bbafa49991847a6d615b51463c30271d11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce6ddd4cdc7c4c3c4c7c1b8afa59e9b9b9ea5afb9c3ced7d0c4bbb0a69f93887d70695e544a3f352c21170c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6673808c99a3aebbc7d5dfeaf4e8ddd2c6b9ac9f93877b6e6154473b30251a0e020000000000000000000000000000000000000000000000000006111c2b37434e5864707d8a939ea9b3bdc6ced2c9c0b6aea69f9c948f8b878482807f7e7e7e7e7f80828486898d91959a9fa2aaaeb4bbc0c7cfc6bdb5afa39992857b6e6154483b2e2115080000000006121e2b37424d575f686d777f8690959da4aaa299938b7f736e605b53493f382e251b120900000000000000000000000000000000000000000000000000000007131d28313d44505c666e7b859295918780786f6a605b544d443f382f292119140d05000000000000000000000000000000000000000000060b1012131f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1d1c1a16110a030000000000000000000714202d3a46525e6974818e9ba5afbdc6d1dfdfd4c8bbafa49a9184796d605a50463d342a22191109030000000000000000000000000000000000030b1218242c363f44515c666e7b86929fa7b1bcc8d4dedbd0c6bbafa3998d8074685d5246382e23170b000000000000000000000714212d3a46535f697683909dabb5c0cbd7e1d5c9bdb2a89d9083776c61554b40342a1f160b020000000000000000000000000a151e27333f4953606a75828f9ca7b1bcc7d3e2d7cbbfb5ab9c908376695f53463a2d21140800000000000c1926323f4b58636e737b7e82868b8f92999b9fa2aa9d9083766c61554b41362c231910070100000000000000000000000000000000000001081218232e39424f59626f7c87939facb9c6d2dfd7cbc0b5ab9b8e817468564d41362a1e110500000e1b2835414e5b6874818e9ba7afafafafafafafafafafafb1b3b7bec6d0e0d0c6beb7b2b1afafafafafafafafafafafafafafafafafafb2b3b8bfc7d1e2d0c7beb8b3b1afafafafafafafafafafafafafafafafa89b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00010b151f2a343c46525d68707d87939fa6b0bcc5d0dbdbd0c5bcb1a79f93877d70685e52493f342a1e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcded4cbc2bcb7b6b7bcc2c1b7afaaa8a8aaafb7c1cbd5d2c7bdb3a99f948c80736b60574d42382e231a0f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985919eabb5bfcbd7e7e9e8e9e0d4c7bbafa4998b7f7265574d42362a1e110500000000000000000000000000000000000000000000000000000f1b26323c4955616c75818e97a1abb4bcc5cdd6c8c0b8b0aba69f9c9a93918f8d8c8b8a8a8b8c8d8f9193999a9da0a8acaeb4babfc5ccccc3bdb4aba49f92877d70695e52463a2d20140700000000020e1a26313c454d565e656c727c838d929ea19892877f736d635c504941382d261c130900000000000000000000000000000000000000000000000000000000010c161f28343f4a545e69717e8a8d837c736d665f58504a423b332d261d170f08020000000000000000000000000000000000000000000000000306071212121212121212121212121212121210100d0a050000000000000000000004101c2934404b55616e7b86929facb9c1cfd8e1d6cabeb4aa9f93887d6f675c51483e342b2218100700000000000000000000000000000000000000000007121a242834404a545f69727f8b959fabb8c2ccd8e2d7cbc0b5ab9f92867a6d61544a3f34281c10030000000000000000000815222e3b4855616e7b88959fabbdc7d1dcded2c5b9aca0968a7e7164594f43392e22180d0400000000000000000000000000030c17222d38414e58636f7c89959fabb7c6d0dbdcd1c6b9ac9f93877b6e6155483b2f24190d01000000000a17232f3b47525c63696e72767a7e82868a8f92989b998b7e72655a50433a2f241a11070000000000000000000000000000000000000000000007121c27303e47535f6a76828f9ca9b5c2cdd9dcd1c4b7aa9e918477685e5246392d20140700000e1b2835414e5b6874818e9ba7b4bcbcbcbcbcbcbcbcbcbcbebfc3c9d0d9e2d8d0c8c3bfbebcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbfc0c4c9d1d9e2d9d0c9c3bfbebcbcbcbcbcbcbcbcbcbcbcbcbcbcbcb5a89b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0007121d27313c46515b616d7a849199a4afb9c2ced7ded6cabfb4aa9f958d80736b60564c41372d22180c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd8cdc2b9b1aba9abb1b9c0c1bab6b5b4b6bac1c9d3d7ccc0b5aba1978f82786d60594f453b30261c1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5864717e8a97a1adbdc6d1dcdfdcdbdcdfd7ccc0b5ab9c908376695e52463a2d20140900000000000000000000000000000000000000000000000000000a15202d3944505a616d7a859199a2aab3bbc3cad0cac2bbb7b0aaaca49f9d9b99989897979899999b9e9fa4abaaacb1b8babfc6cad0c7c0bbb1aba399938b7f726b60574d42362a1e120500000000000915202a333c444c535b606a6f79808a929792867e726d635b52443f382f261b130a010000000000000000000000000000000000000000000000000000000000040d17232e38424d57616c748180796f6a605c544e443f382f27221b140b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6773808d99a3aebbc7d3e1dacfc6baaea2988d80746b60554b40362d221910060000000000000000000000000000000000000000000000081218232e39424d57606c7883909da6b0bbc7d3dedcd1c7baaea2988c7f73665c5044382b1f1207000000000000000004101d2935404b5566727f8c99a7b1bccfd9e3d8ccc0b6ac9e9184786c6053463e30271d100600000000000000000000000000000006111b262f3d4854606b7683909daab4bfcad6e0d4c8bbafa49a8c7f7266554c4135291d11040000000007131f2a35404a52565e6165686d71757a7e82868a8e92867a6d6054473e31281d12080000000000000000000000000000000000000000000000000b151e2b37434e5865727e8b98a7b1bcc8d4ded2c5b9aca096877a6e6154473b2e21140800000e1b2835414e5b6874818e9ba7b4c1c9c9c9c9c9c9c9c9c9cacccfd4dfe1e6e2dad3cfcbcac9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9cbccd0d4dee1e5e2dbd4cfcccbc9c9c9c9c9c9c9c9c9c9c9c9c9c9c1b5a89b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225170e050e18232f39434e58626d75818f96a1abb5c0cbd4e0d6ccc4baaea2989083786d60594f443a30241b0f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd3c7bcb1a79f9d9fa7aeb6c0c6c3c1c1c2c6cbd3d6cdc4bbafa49991857a6e665c50473d33291e150a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15222e3b4754606a7683909da9b3becfd8d7d3d0cfd0d3d7d2c6b9ac9f93877b6e6154473b30251a0e020000000000000000000000000000000000000000000000000004101c28333e46525e68707d879298a2a9b1babec5cccdc7c2bbb7b6afacaaa8a6a5a4a4a4a5a5a6a8aaacafb5b7b8bdc3c6caccc8c1bdb5afa7a09992877f726d62594f453b30251a0e020000000000030e18212a323a414950585f676d747d858e857c706c625b514940332d261d140a010000000000000000000000000000000000000000000000000000000000000006111c26303b45505a646f74736d676058504a423c332d261d17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929fabb5bfcbd7e2d6cabeb3a99f92857a6d61594f43392f241b10070000000000000000000000000000000000000000000000000007121c27303b44505b666f7d89949faab7c2cdd8e3d6cabfb4aa9e9184796d6053463a2f23180c000000000000000006131f2c3945515d6776838f9ca9b6c2cddce0d4c8bbafa49a8c7f73665b5044382c1e150b00000000000000000000000000000000000a141d2c38444f5965717e8b98a2aebac6d3e0d8ccc0b6ac9c908376675d5145392c20130600000000020e19242e3840444d5254565e6165686d7175797d81858175685d5245392c1f160c00000000000000000000000000000000000000000000000000030c1b26323c4854616e7b8795a0acb8c4d1ded4c8bdb2a8978a7d7064574a3d3124170a00000e1b2835414e5b6874818e9ba7b4c1ced0d0d0d0d0d0d0d0d0d0d0d1d2d5dae1e8dfdbd8d9d4d2d1d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d1d2d5dae0e8e0dbd9dad5d2d1d0d0d0d0d0d0d0d0d0d0cec1b5a89b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f322920170e17202934404b555f6a727f8b939ea8b2bdc7d2ddd9cfc4baafa59f92867b6e665c51473d32281e12090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c4b7ab9f9590959da4aeb9c3cecececfd2d7dacfc4bbb0a69f93877d70685e544a3f352c20170c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2a36414c56626f7c88959fabbbc4cfd3ccc7c3c2c3c7ccd4c8bbafa49a8b7f7265574d42362a1e120500000000000000000000000000000000000000000000000000000b17222935414c56616b707d869297a0a7aeb3bbc0c7c8ccc7c7c0bbb9b7b5b3b2b1b1b1b1b2b3b5b7b9bbc0c4c5c8cec8c7c0bbb9b0aba49f9591877e726d625b51473d33291f140900000000000000060f1820292f383f444e555d606b707b817b6f6a615a5149403727221b140b020000000000000000000000000000000000000000000000000000000000000000000a141e29333e48535d646867605c554e443f383028221c140b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5664717d8a98a2aebdc6d1dcdfd2c6b9ada1978c7f73685e52473d31271d12090000000000000000000000000000000000000000000000000000000b151e28333f4a54606b76828f9ca6b0bcc7d3e2dbd0c6b9ada197897d7063554b4034291c1004000000000000000714202d3a4753606d7a86929facb9c5d2dfdfd2c6b9ac9f93877b6e61544a3f33281a0c030000000000000000000000000000000000020b1b27323d4754606d7a86929facb8c5d2ddddd2c5b9ac9f92867a6d6054473a2d211408000000000008121c262e323b4246474c5254565d6064676d7175797a6e61564c4135291a0d0400000000000000000000000000000000000000000000000000000a15202d3a46525e697783909daab6c3d0ddd9cebfb2a5988c7f7265594c3f3226190c00000e1b2835414e5b6874818e9ba7b4c1c4c4c4c4c4c4c4c4c4c4c4c4c4c6c9cfd6dfe7ded5cec8c5c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c5c9ced6dee8ded6cfc9c5c4c4c4c4c4c4c4c4c4c4c4c4c1b5a89b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265564d443b322920171d29323b45515c676e7c86929fa5afbac4d0d9dcd1c7bdb2a89e938b7e71695f544a40352b20160c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd0c3b6a99d90838d929da7b1bcc6d0dbdcdee1d5c9bdb2a99f948c7f736b60564c42382e231a0e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3946525e6874818e9ba7b1bccdd3cac1bbb7b5b7bbc1caccc0b6ac9c908376695e52463a2d2014090000000000000000000000000000000000000000000000000000050d1925303a444f59616b707d8591959fa2aaafb6b9bdc3c5c9ccc8c6c4c2c0bfbebdbdbebfc0c2c4c6c7cccac7c5c2bdb8b6afaca69e99938d837c716c625b51493f352b21170d020000000000000000060e171d262d333c434b515961686e746e69605850483f372e2517110a0200000000000000000000000000000000000000000000000000000000000000000000020c17212c36414b53595b5a53514b433c342e261e17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d6875828f9baab3becfd8e3ded1c5b8ab9e92857a6d60564c41352b1f150b00000000000000000000000000000000000000000000000000000000030c17222d38424f59626f7c88949fabb7c6d0dce2d5c9beb2a99b8e8174675c5145382c1f1306000000000000000a1723303d4a5663707d8999a3aebac7d3e0dccfc2b6a99c8f8376695e5342382d221708000000000000000000000000000000000000000a16202c3945515d6775818e9bacb6c0ccd8e0d3c7bbafa3998a7d7064574a3d2f24190d0100000000000a141c202930363a3b4146474c5254555d6064676d6e685e52443a3024190800000000000000000000000000000000000000000000000000000005121e2a36424d576673808c99a6b3bfd1dcdacdc0b4a79a8d8174675a4e4134271b0e01000e1b2835414e5b6874818e9ba7b4b7b7b7b7b7b7b7b7b7b7b7b7b7b8b9bec4cdd6e0d5ccc3bdb9b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b9bdc4ccd6e0d6ccc4bdb9b7b7b7b7b7b7b7b7b7b7b7b7b7b5a89b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e72685e564c443a322920262f3b444f59606d79839098a2aeb7c1ccd6dfd7cbc0b5aba1968e81756c61574d42392e23190e04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbfb2a5988c7f808d95a0aab4bfcad6dfe8dfd2c5b9ada1968f82786c60594f443b30261c110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616d7a86929facb9c2cdccc1b8b0aaa8aab0b8c1ccc6b9ac9f93877b6e6154483b30251a0e02000000000000000000000000000000000000000000000000000008131e28323e474f59616b6f7c838c92989fa4acacb2b7b9bdbfc1c4c5c6c7ccd2c9c9c8d1cbc7c5c4c2c0bfbab8b6b2acaca49f9c948f8780796f6a615a51493f372d23190f0500000000000000000000050b141b2227313940454f565e6167615f574e463e362d251c130600000000000000000000000000000000000000000000000000000000000000000000000000050f1a242f3941484c4e4d464540393028231c150c0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb9c5d0dfe0d4c8bcb1a79a8d8073675d51443a3023190d03000000000000000000000000000000000000000000000000000000000006111c262f3d47545f6a7683909caab4bfcbd6e3dacfc4b8ab9f9285796d6053473a2d20140a00000000000004101c2834404a546773808d9aabb4bfcbd7e2d6cabeb3a9988c7f7265574d422f261c11060000000000000000000000000000000000000004111d2935414b5564717e8a9aa4afbbc8d4e0d7cbc0b5ab9a8d817467564c4135291d11040000000000020a0e171f252a2d3036393a4145474b5153555c60615e564c4132281e1308000000000000000000000000000000000000000000000000000000020e1a25303d4a5663707d8996abb4bfcbd7dccfc2b5a99c8f8276695c4f4336291c1003000e1b2835414e5b6874818e9ba7aaaaaaaaaaaaaaaaaaaaaaaaaaaaabadb3bbc4cfd9cec3bab2acaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacb2bac4cedacfc4bab2adabaaaaaaaaaaaaaaaaaaaaaaaaaaa89b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddddd0c4b7aa9d91847a6e685e564c443a32282d38424d56616c74808d95a0aab4bfc9d3ded7cdc5bbafa39991847a6d605a50453b30271c110700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd9ccbfb2a6998c7f79839098a2aebac1cdd6e2ded1c4b8ab9e91847a6d665b50473d32291e140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c66727f8c98a3aebac7d3c7bbb0a69e9c9ea6b0bbc7c8bbafa49a8b7f7265574d42362a1e12050000000000000000000000000000000000000000000000000000020c16202c353e474f59606a6f787f858e939a9ea0a8aaacb2b2b4b7b8b9bbc0bbbcbcbcbbc0bbb9b7b5b4b4aeaca9a8a09d9a938f89827c736d67605850483f372d251b1107000000000000000000000000020a11171f272f353e444d52545b55534d453d342c241b130a00000000000000000000000000000000000000000000000000000000000000000000000000000008121d262f363c4041403a38342e271e17110a03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b5465717e8b99a3aebac7d3e0ded1c4b8aca095887c6f62554b4132281e1007000000000000000000000000000000000000000000000000000000000000000a141d2b37434e5865717e8b98a3aebac7d3e0dfd3c6baaea2988a7d7164574a3e31261a0f03000000000006121f2c3844515c667783909daab6c3d1dcdfd3c6baada297887c6f6255493c3122140a0000000000000000000000000000000000000000010d18242f3a4754616d7a87939facb9c6d2dfdcd1c4b7aa9d918477685d5245392c20130600000000000000050d14191e20252a2d2f35393a4045474b515354524c443b3020160c02000000000000000000000000000000000000000000000000000000000915222e3b4855616e7b8899a3aebac7d3ddd0c4b7aa9d9184776a5e5144372b1e0700000e1b2835414e5b6874818e9b9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9ea1a9b3bec9d4c8bdb2a8a09e9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9ea1a8b2bdc9d5c9bdb2a8a19e9d9d9d9d9d9d9d9d9d9d9d9d9d9d9b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddded1c5b8aca09691837a6e685e564c443a32333f4a545e69707d8a929da7b1bcc6d0dbdbcfc5bbb0a69f92877c6f675d51483e332a1e150b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd9cdc0b3a69a8d80737b86929fa5afbbc4d0d9d6c9bcb0a396897d70685e544a41382d22171309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7884919eaab4bfcbd0c3b7aa9e948f949eaab7c7ccc0b6ac9c908376695e52463a2d201409000000000000000000000000000000000000000000000000000000040e1a232c353d464f585f666d727a81878c91969a9ea0a8a5a8aaabacafb5aeafafafaeb5afacaaa9a7aaa29f9c9996918c87827c756f6a605c554e463e362d251b1309000000000000000000000000000000060d151d2429323b4146474e4846423b332b221a110901000000000000000000000000000000000000000000000000000000000000000000000000000000000b141d252b303335342d2c28231d150c060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6675828f9cabb4bfcbd7e3d7cbc0b5ab9d9083776a5f53433a2f20160c0000000000000000000000000000000000000000000000000000000000000000020b1b26323c4754606d7a86929facb8c4cfdae2d6cabeb3aa9b8e817568584e43372b1f120600000000000713202d3a4653606d7986929facb9c5d2dfded2c5b8ab9f9285796c605346392d2013060000000000000000000000000000000000000000000713202d3946525e687784909daab7c3d1dcdfd2c6b9ac9f93867a6d6054473a2d211407000000000000000002090e1114191d2024292c2f35393a4045464746413b32291e0e0400000000000000000000000000000000000000000000000000000000000613202d394653606c7986929facb9c5d2ded1c4b8ab9e9185786b5e52452e23180c00000e1b2835414e5b6874818e919191919191919191919191919191919197a1adb9c7d2c5b9aca096919191919191919191919191919191919191919196a1acb9c4cec5b9ada196919191919191919191919191919191918e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0dde1d4c8bdb2a8a09591837a6d685e564c443a3a44505b666e7b85929ea4aeb9c3ced8ded6cabeb3a99f948c7f736a60554c41362d21180c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdacdc0b4a79a8d8174717e8b939ea9b3bdc7d2ddcfc2b5a99c8f82796d665c53493f3327251b1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e5864707d8a96a1adbcc6d1cabeb3a99c8f828f9cacb6c0ccc6b9ac9f93877b6e6154483b31251a0e0200000000000000000000000000000000000000000000000000000008111a232c343d464e545c60686e747b7f84898d919696989b9d9f9fa4a1a2a2a3a2a2aba39f9e9c9a9898928f8c89847f7b756f6a625f58514b433d342c241b13090100000000000000000000000000000000030b121820293036393b413b3a36312921191008000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b131a2024272827201f1c18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929facb8c5d1dce0d3c7bbafa3998b7f7265584e4331281d0e050000000000000000000000000000000000000000000000000000000000000000000a15202c3945525d6875818e9ba9b2bec9d5e1dbd0c4b8ab9e9185786a5f53473a2e21150800000000000915222f3c4855626f7c8898a3aebac7d3e0dbcec2b5a89b8f8275665b5044382b1f120600000000000000000000000000000000000000000005111e2a36414c566774808d9aabb5c0cbd7e0d4c8bbafa49a897c706356493d30231606000000000000000000000205080d1113191d2024292c2e34383a3b3936302920170d00000000000000000000000000000000000000000000000000000000000006121f2b3844505b667885919eabb8c4d1ded2c5b8ab9f9285786c544b4034281c1004000d1a2733404d5a667380848484848484848484848484848484848485919eacb6c0ccc4b7aa9e918484848484848484848484848484848484848484919ea8b2bdc9c4b7ab9e9184848484848484848484848484848484848074675a4d4134271a0e010000000000000000111e2b3744515e6a7784919daab7c4d0dde5d9cec3bab1a8a09590837a6d685e564c44434e58606c78828f97a1adb6c0cbd5e0d5ccc3baada2979082786c60584e433a2f241b0f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdacec1b4a79b8e81746c75818e97a1abb5c0ccd7d0c3b7ab9f948f81786d655b504440372d241b1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15212e3a47535f6a76828f9ca8b2bdcfd2c6b9ada1978a7d8a9aa4afbbc8c8bbafa49a8c7f7265574d42362a1e12050000000000000000000000000000000000000000000000000000000008111a222b343c424a50565e61696e73777c818487898c8e91929399949596969595949992918f8d8b8986827f7c77736e69626058534e454039312b221a12090100000000000000000000000000000000000001070e171f252a2d2e342e2d2a261f170f07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001090f14181a1b1a1313100c0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8998a2aebac6d3e2dfd2c5b9ac9f92867a6d6154473c3121160c0000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5663707d8a97a1adb9c6d2dfdfd2c6b9ada197887b6f6255483c2f22150900000000000b1825313e4b5864717e8b97aab4bfcbd7e1d5c9beb3a9988b7f7265544a3f33281c0f03000000000000000000000000000000000000000000010d1925303d4a5764707d8a99a3afbbc7d4e0d8ccc0b6ac988c7f7265594c3f2e23170b000000000000000000000000000105080d1113181d1f23282c2d2e2d2a251e170e05000000000000000000000000000000000000000000000000000000000000030f1c28333f4a546b7784919eaab7c4d1ddd2c5b9ac9f928679665c5145382c1f1306000c1926323f4b57636e7377777777777777777777777777777777777d899aa4afbbc8bcafa295897c7777777777777777777777777777777777777a8796a1acb9c5beb1a4988b7e77777777777777777777777777777777746e64584c3f33261a0d000000000000000000111e2b3744515e6a7784919daab7c4d0ddeae0d5ccc3bab1a7a09590837a6d685d564c4c55606a727f8c949fa9b3bec8d2ddd8cfc3baafa59f92857b6e665b50463d31281e120900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdbcec1b5a89b8e8275686d7a859199a4afbbbfc8d3c7bbb0a69e938e81776c605b52493f362d241a1107000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b2935414c56626f7c88949fabbac4cfd1c5b8ab9e92857a86939facb9c6ccc0b6ac9d908376695e53463a2d2114090000000000000000000000000000000000000000000000000000000000081019222a30383f444c52575e61666a6f74777a7c7f81848586878788898989888787868482817f7c7976736f6a66615e57544e47433c342f271f19100800000000000000000000000000000000000000000000050d14191e20212822211e1a140d06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003080b0e0e0d070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b556673808c99aab4bfcad6e2d7cbbfb5ab9b8f8275685e5246392d20130400000000000000000000000000000000000000000000000000000000000000000000010d19242f3a4653606d7984919eabb8c4d1dce1d5c9beb3a9988b7f7265584c3f30251a0e02000000010e1b2734414e5a6774818d9aa7b4c0d1dcdfd2c6b9ada197887b6f6255483c2d22170b00000000000000000000000000000000000000000000000814212d3a4754606d7a86929facb9c5d2dfddd2c1b4a89b8e817568544a3f34281c10030000000000000000000000000000000104070c1013181c1f2021201e19140d0500000000000000000000000000000000000000000000000000000000000000000b17222d44515d6a7784909daab7c3d0ddd3c7bbafa39986796d6053463a2d201307000a17232f3b47525c63666a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6d7a86939facb9c6beb1a5988b7e726a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a687884919eabb7c4c0b4a79a8d81746a6a6a6a6a6a6a6a6a6a6a6a6a6a6a67645c52473c3024170b000000000000000000111e2b3744515e6a7784919daab7c4d0ddeae7ded5ccc3b9b1a7a09590837a6d685d56515d676f7c87929fa6b0bbc5cfdadcd1c6bdb2a89d938a7e71695e544a3f342b1f160c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdbcfc2b5a89c8f82756968707d87939fa3adb6bfc8ccc2b8afa59d938d80746d635b51483e362c23191007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3945525d6874818d9aa6b0bbccd6cfc2b6a99c8f837784919eaab7c4d2c7b8ab9f95877b6e6154483b31251a0e0200000000000000000000000000000000000000000000000000000000000710181e262e343b41464d535458606267686d7072757778797a7b7b7c7c7c7b7b7a79777674726f6d666662605854534d47433d373229231d150d0700000000000000000000000000000000000000000000000002080e1114141b1514120e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010201000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c677683909ca9b6c3d0dbe0d3c7bbaea3998a7d7064564c41362a1d1105000000000000000000000000000000000000000000000000000000000000000000000008131f2b3844505c6673808d9aaab4bfcbd7e3dacfc2b5a89c8f827569574d42362a1e120500000004101c2934404b55697683909ca9b6c3cfdcded1c5b8ab9e9285786a5f53473a2e1c110600000000000000000000000000000000000000000000000613202c3945525d687683909da9b6c3d0dcddd0c4b7aa9d918477665c5044382b1f12060000000000000000000000000000000000000004070c1013131414110d0802000000000000000000000000000000000000000000000000000000000000000000061e2a3744515d6a7784909daab7c3d0ddd3c7baaea39986796d6053463a2d2013070007131f2a35404a52575a5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5d687784919daab7c4c1b4a79b8e817468555e5e5e5e5e5e5e5e5e5e5e5e5e566875828e9ba8b5c1c3b6aa9d908377665c5e5e5e5e5e5e5e5e5e5e5e5e5e5a58524a40362b1f1307000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaf0e7ded5cbc3b9b1a7a09590837a6d685d5a606d7a849199a3afb8c2cdd7dfd7cbbfb4aba0968e81746c61574d42382d22190d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdccfc2b6a99c8f837669616b717e8b919ba4adb6c0c9cac1b7afa59d928c7f736d625a50483e352b221910060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953606d7a86929facb8c2cdd8ccc0b6ac9a8d8075828f9ba8b5c2d2c7bcb1a7988c7f7265574d42362a1e1205000000000000000000000000000000000000000000000000000000000000060c151c232830363b4246484e5456565d606365686a656c6d6e6f6f706f6f6e6d6d6669676563605c5456544e4846423b37322b262018120b03000000000000000000000000000000000000000000000000000000020507080e08070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb9c5d2dfdfd2c5b9ac9f92867a6d6053473a3025190d01000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54636f7c8998a3aebac7d3e0ded2c5b8ab9f928578695e52463a2d20140700000006131f2c3845515c677885919eabb8c4d1dedccfc2b5a99c8f827669584e43372b1f0a00000000000000000000000000000000000000000000000004111d2935414c566774818e9aa7b4c1cddadfd2c5b9ac9f9286796d6053463a2d201307000000000000000000000000000000000000000000020507080b0e100a0a08040000000000000000000000000000000000000000000000000000000000000004101c2834404b556b7884919eabb7c4d1ded2c5b9ac9f928679665c5144382c1f120600020e19242e3840474b4d51515151515151515151515151514c566874818e9ba7b4c1c4b7aa9d918477675d515151515151515151515151515966727f8c99acb6c0c5b9ac9f9286796d60535151515151515151515151514d4c4740382f24190e03000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaf7f0e7ddd5cbc3b9b1a7a09590837a6d68616c75818e96a0abb5c0cad4dfd6cdc5baaea3999184796d605a50453b2f261c1007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd0c3b6a99d9083766a59626c727f8c929ca4aeb7c0c9c9c1b7aea49c928b7f726c625a50473d342b22180f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b65727f8b98a2aebac6d4d4c8bbafa49a8b7e73808c99abb5c0cccdc2b6a99d908376695e53463a2d21140900000000000000000000000000000000000000000000000000000000000000030a11171e252a31363a3d4348494c525456595b535b60606162636362626161605c545a585653514b4947433d3a36312b27201b150c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8899a3afbbc7d3e0dcd0c3b6a99d908376675d514539291e1308000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3a4653606d7986929facb9c5d2dfdfd3c6baada297877b6e6154483b2e2115080000000714202d3a4753606d7a86939facb9c6d2dfdacdc0b4a79a8d8174675a4e4131261a0f010000000000000000000000000000000000000000000000010d19242f3f4c5966727f8c99a5b2bfccd8e0d3c7bbaea399877b6e6154483b2e2115080000000000000000000000000000000001040707090e121415181a1d171614100b05000000000000000000000000000000000000000000000000000000000006131f2c3845515c677885929eabb8c5d1ded1c5b8ab9e9285786b544a4034281c1004000007121c262e353b3f4044444444444444444444444444444b5865727e8b98aab4bfc6b9ac9f93867a6d60544744444444444444444444495663707c899aa4afbbc7baaea399887c6f6255494444444444444444444444413f3c362f261d130800000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaf7f9f0e7ddd5cbc3b9b1a79f9590837a6d69717e8b939ea8b2bdc7d1dcdacfc5bbb0a69f92867c6f675d51483e33291d140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd0c3b7aa9d9084776a5d5a626d73808c929da5afb7c1cac9c0b6ada49f93887e716c61594f463d342a21180e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eaab4bfcad6d2c6b9ac9f93877a707d8a99a4afbbc7d1c4b8ab9f95877b6e6154483b31261a0e020000000000000000000000000000000000000000000000000000000000000000060c14191f252a2d32383b3c414547494c4e49505354545556565655545453514a4e4c494645403c3b37322d2a251f1b150f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104060708090a0a0b0b0b0b0b0908060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004090c0f0f12121212121212120c0b0905010000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97abb5c0cbd7e3d9ccc0b3a6998d807366554b403529170c020000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c677683909ca9b6c3cfdce2d6cabeb3a9968a7d7063574a3d3024170a0000000815222f3b4855626e7b889aa4afbbc8d4e0d8cbbfb2a5988c7f7265594c3f3226190a00000000000000000000000000000000000000000000000000081724313e4a5764717d8a97a4b0bdcfdae3d7cbbfb5ab96897c706356493d3023160a000000000000000000000000040607080d111314171a1e212224272a2423201c171008000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939facb9c6d2ded1c4b7ab9e9184786b5e51452e23180c000000000a141c242a2f3233373737373737373737373737373c4955626f7c8898a3aebac7bbafa499897c706356493d37373737373737373a4754606d7a86939facb9c6bfb4ab988b7e7265584b3f2f3737373737373737373433302b241d140b0100000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaf7fff9efe7ddd5cbc3b9b1a79f959083796e7b86929fa5afbac4cfd9ddd5c9beb3a99f948c7f726a5f554b40362c21170b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c4b7aa9e9184776b5e515b636d73808d939da5afb8c1cac8bfbbafa49a92877e706b60584e463c332a20170e040000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b37424d5763707d8a96a0acbcc6d0dbd0c3b6aa9d9083776d7a86939facb9c6d2c8bcb1a7988c7f7265574d42362a1e120500000000000000000000000000000000000000000000000000000000000000000002080e141a1e21272c2e3035393a3d3f423f4446474848494949484847464440413f3c3a38342e2e2b27211e1a140f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030606080d1113141516161717171717171515120f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002091015191b1c1f1f1f1f1f1f1f1f181815110c0600000000000000000000000000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0d1dce2d6cabeb3a9968a7d7063574a3d2f24180c000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b556673808c99a6b3bfd1dce6dbcfbfb2a5998c7f7266594c3f332619070000000a1724303d4a5763707d8a96acb6c0ccd8e4d6cabdb0a3978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000915222f3c4855626f7c8895a9b3bec9d5e1dcd1beb1a4988b7e7165584b3e3225180b00000000000000000000070c10121316191d202123262a2d2e31343731302d28221a12080000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8899a4afbbc7d4ddd0c3b7aa9d9084776a5d5144372a1e0700000000020a12191f2326272b2b2b2b2b2b2b2b2b2b2b2b2d3a4653606d7986929facb8c5c0b5ab988c7f7265594c3f30252b2b2b2b2b2c3945515d677784919daab7c4c1b4a79a8e817467554b4034292b2b2b2b2b2b2b2b2726241f19130b020000000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaf7fffff9efe7ddd5cbc3b9b1a79f9590827a839098a2aeb7c1ccd6e0d5cbc3b9ada1978f82776c60584e43392f241a0f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c4b7ab9e9184786b5e51525b646e74818e939ea6b0b8c2cbccc0b6aca39992867d706a60584e453b322920160d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f6975828f9ca8b2bdced7d5c9bdb2a8998d8073687783909daab6c3d1cdc2b6a99d908376695f53463a2d211409000000000000000000000000000000000000000000000000000000000000000000000003090e12161b1f2224292c2d30322d3337393a3b3c3c3d3c3c3b3a3a38342e32302d2c2823221f1b15120e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f121316191d202122222324242424242422211f1b150e06000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c141b212528292c2c2c2c2c2c2c2c2524221d18110900000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b556976838f9ca9b6c2cfdcdfd2c6b9ada297877a6e6154473b2e2114070000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3d4a5764707d8a97aab4bfcbd7e3dbcec1b5a89b8e8275685b4f422f24180d0100000c1825323f4b5865727e8b98a5b1bed2dde1d5c9beb3a995887c6f6255483c2f221509000000000000000000000000000000000000000000000000000714202d3a4753606d7a8697a1adb9c6d2dfd9ccc0b3a6998d8073665a4d4033271a0d0000000000000000030b12181c1f202224292c2d3031363a3b3e41433d3c39332c241a0c0300000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97abb5c0ccd7dbcfc2b5a89c8f8275695c4f4236291c0f030000000000070e1317191a1e1e1e1e1e1e1e1e1e1e1e1f2c3844515c667683909da9b6c3c1b5a89b8e827568564c41362a1d1e1e1e1d2935414c556874818e9ba7b4c1c3b6aa9d908377675c5145382c1f1e1e1e1e1e1e1e1a1a17130e0801000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaf7faf4efece9e6ddd4cbc2b9b1a79f94908590959faab4bfc9d3ded8cec3b9aea49e92857a6e655b50463c31281d1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c5b8ab9e9285786b5f5249525c606c78818e949ea6b0b9c2cbc7beb5aba39892867c6f6a5f574d443b32281f160d030000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b55616e7b87939facb9c3cedfd2c5b9ada196897c6f6673808d99aab4bfcbd1c4b8ab9f95887b6e6155483b31261a0e0200000000000000000000000000000000000000000000000000000000000000000000000002050a0f1315191d2021232622272b2d2d2e2f30302f2f2e2e2d2c28232523201f1c1815130f0a05020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f11171c1f202324292c2d2e2f303131313131312f2e2b262018100600000000000000000000000000000000000000000000000000000000000000000000000000000000020c151e262c313436393939393939393932312e29231b1209000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c677885929eabb8c5d1deded1c5b8ab9e928578685e5246392d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000715222f3b4855626e7b8898a3aebac7d3e0ddd0c3b7aa9d9084776a554b4035291d110400000d1a2633404d596673808c99a6b3bfccd9dfd2c6b9ada197867a6d6053473a2d201407000000000000000000000000000000000000000000000000000613202c3945515d677885919eabb8c4d1dedbcec1b4a89b8e8175685b4e4235281b0f02000000000000070c151c23282c2d2f3035393a3d404246484b4d504a49443e362c1e150b0000000000000000000000000000000000000000000000000006121f2b37434e586774808d9aa7b3c0d2dddacdc0b3a79a8d8074675a4d4134271a0e0100000000000002070a0c0d11111111111111111111101c2834404a546774808d9aa7b3c0c4b7ab9e918478685e5246392d2013110d19242f3f4c5865727f8b98abb5bfc5b9ac9f9286796d6053473a2d20141111111111110e0d0b07030000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaf7f0e9e3dfdddcdfddd4cbc2b9b0a69f9792979fa7b1bcc5d0dbdbd0c6bcb1a79d928a7d70685e53493f342a1f160c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f524544505b666d78828f949fa7b1b9c3ccc7bdb4aaa29892857c6f695f564d443a31281f150c030000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6774808d9aa4afbbc8d4ded1c4b7ab9e9184786c63707d8998a3aebac7d3c8bcb1a7998c7f7266574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000307080d1113141619171b1f20212122232323222121201f1c1819161313100c070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f151b1c22282b2d302f35393a3b3c3d3d3e3e3e3e3e3c3a37312a22180e0400000000000000000000000000000000000000000000000000000000000000000000000000000009141e2730373d414245454545454545453f3d3a342d241b1106000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798697a1adb9c6d2dfdccfc3b6a99c90837669564c41362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb9c5d2dfded2c5b8ab9f928578675d5145392c20130600010e1b2734414e5a6774818d9aa7b4c0cddaded1c4b8ab9e918578675d5145392c2013060000000000000000000000000000000000000000000000000004111d2935404b55697683909ca9b6c3cfdcdbcfc2b5a89c8f8275695c4f4236291c070000000000000711191e272e34383a3c3f4145474a4c4d5355575a5d575550483e30271c12070000000000000000000000000000000000000000000000000a15212e3a47535f6a7884919eabb7c4d1ded8ccc0b6ac988b7e7265584b3f3225180c000000000000000000000000040404040404040404000c18232e3e4b5764717e8a97a9b3bec5b9aca196877a6d6154473a2e2114070816232f3c4956626f7c8999a3aebbc7bbafa399897c6f6256493c2f231607000404040401000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaeee6ded8d3d0cfd2d4d8d4cbc2b9b0a9a19ea1a9b1b9c3ced7dfd6cabfb4aaa0958d80746b61564c41382d22180d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f52463f4a545c666d79828f959fa7b1bac3ccc6bcb4aaa29791857b6e695e564c433a31271e150b0200000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929facb6c0ccd8d4c8bcb1a79a8d807365606d7986929facb9c5d2cdc2b6aa9d908377695f53463a2d211409000000000000000000000000000000000000000000000000000000000000000000000000000000000000010407070a060b0f12131415151616161515141312100c0709070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d151a20272b2d3338393d404145474849494a4a4a4a4a4a4847433c342a20150a000000000000000000000000000000000000000000000000000000000000000000000000000004101b26303942494d4f52525252525252524b4a453f372d23180c010000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8894a9b3bec9d5e1dacdc0b4a79a8d8174675a4e413025190d0100000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667784909daab7c3d0dddfd3c6baaea298867a6d6053473a2d20140700020f1c2835424f5b6875828e9ba8b5c1cedbdcd0c3b6a99d9083766a554b4035291d110400000000000000000000000000000000000000000000000000010d18242f414e5b6874818e9ba7b4c1cedadcd0c3b6a99d9083766a5d50432e23180c0000000000040f19232b3039404446494b4c52545659575f6164676a64615a5042392e23180d040000000000000000000000000000000000000000000006111c26303c4855626f7b8896a1acb9c5d2ded4c8bbafa49a897d7063564a3d3023170a000000000000000000000000000000000000000000000715222e3b4855616e7b8897a1adb9c6bdb2a8968a7d7063574a3d302417090713202d3a4653606d7986929facb9c5c0b5ab988b7e7265584b3f2f24180c000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddeae6dcd4cdc7c4c2c6c8ccd2d4cbc2bbb3adabadb3bbc3cbd4e0d6ccc4baaea2989083796d60594f443b2f261b10070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f524638424a545c676d79839095a0a8b2bac4cdc5bcb3a9a19791847b6e685e554b433930261d140a000000000000000000000000000000000000000000000000000000000000000000000000000713202c38444f5965727e8b97a2adbec7d2ddd1c5b8aca095887c6f625c6776838f9ca9b6c2ced1c4b8ab9f95887b6e6155483c31261a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030506070809090a0909080707060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c131920262b3237383f4446494c4c515455555657575757575755534e463c31261b0f03000000000000000000000000000000000000000000000000000000000000000000000000000915212c37424b545a5c5f5f5f5f5f5f5f5f585651493f34291d1105000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbccfdae6d8ccbfb2a5998c7f7266594c3f332619080000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546875828f9ba8b5c2cedbe2d6cabeb3aa95887b6e6255483b2f2215080003101d293643505c6976838f9ca9b6c2cfdcdbcec2b5a89b8f8275685c4f422f24180d010000000000000000000000000000000000000000000000000000071a2734404d5a6773808d9aa6b3c0cdd9ddd1c4b7aa9e9184776b544a4034281c1004000000000b16212b353d424a51535558565d60636669696e717476706c61544a4034281f160c040000000000000000000000000000000000000000030d17232e38424f5966737f8c99a8b2bdc9d5dfd2c6b9ac9f93867a6d6154473a2e211407000000000000000000000000000000000000000000000714212d3a46535f697885929eabb8c5bfb2a6998c7f7366594c4030251a0e06131f2c3845515c677783909daab6c3c1b4a79a8e817467554b4035291d10040000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaded4cac2bbb7b6b9bbc0c7d0d4cdc5beb9b8b9bec5cdd4ddd9d0c4baafa59f92867c6e675c51473e32291d140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f52462f39424b555d676d7a839096a0a8b2bbc4cdc5bbb2a9a09690837a6d675d554b42382f261b11060000000000000000000000000000000000000000000000000000000000000000000000010b16222f3b4854606b7783909da9b3bed0d9d6cabfb4aa9d9184776a5f5566727f8c99a8b2bdc8d4c8bcb1a7998c7f7266574d42372b1e1205000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d161e242931373c43474a50535659555d60616263646464646464625f584e43372b1f1206000000000000000000000000000000000000000000000000000000000000000000000000000c1925313d49545d65696c6c6c6c6c6c6c6c65625b51453a2e2215090000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad7e4d7cabeb1a4978b7e7164584b3e3125180b00000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e414e5a6774818d9aa7b4c0cddae6dbd0bcafa396897c706356493d3023160a0004111d2a3744505d6a7783909daab6c3d0dddbcec1b4a89b8e8175685b4e4235281b070000000000000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9ded2c5b8ab9f928578665c5144382c1f120600000004101b27323d474f545c60626568686d707375787b7e80837e70665c51443c31281e160d05000000000000000000000000000000000000030c151f28343f4a54616b7783909daab6c3cedaddd0c3b7aa9d908377685e5246392d2013070000000000000000000000000000000000000000000005121e2a36424d576975828f9ca8b5c2c2b5a89c8f827569574d42362a1e1205101c2834404b556774818d9aa7b4c0c3b7aa9d908477675d5145382c1f13060000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0dde3d8cdc2b8b0aba9acafb6bec7d0d7cfcac6c5c6cacfd7dfddd2c7bdb2a89e938b7f726a5f554b40352c20170b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246393039434b555d686d7a849196a1a9b3bbc5cdc4bbb2a8a0959083796d675c544a41382d221713090000000000000000000000000000000000000000000000000000000000000000000007121d2a36424d5763707d8995a0acbcc5d0dfd3c6baaea2988b7f72655855626f7b8896a0acb9c5d2cdc3b6aa9d908377695f53463a2d2115090000000000000000000000000000000000000000000000000000000000000000000000000000000001040607080705020000000000000000000000000000000105070709090703000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f171f282f353c43474e54545b60636668676d6e6f707071717171716f6a5f53473a2e211507000000000000000000000000000000000000000000000000000000000000000000000000020f1b2834414d5a6570757878787878787878726d62564a3d3124180b0000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8e3d6c9bcb0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000006192633404c5966737f8c99a6b2bfccd9e4d7cabeb1a4978b7e7164584b3e3125180b0005121e2b3845515e6b7884919eabb7c4d1dedacdc1b4a79a8e8174675b4e4134281b0e0100000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5b2bfccd8dfd3c6baaea29886796d6053463a2d2013070000000713202c38444f5960666d6f7274777a7d7f8285888a8d9084796d60584e433a30281f170e0701000000000000000000000000000000050b151e27313944505c66707d8a959fabb8c4d1e0d6cabeb4aa9a8d807467564c4135291d110500000000000000000000000000000000000000000000020e1a2631404c5966737f8c99a6b2bfc4b8ab9e918578695e52463a2d2014070c18232e3e4b5865717e8b98aab4bfc5b9ac9f92867a6d6053473a2d2014070000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0dddfd3c7bbb0a69f9c9fa4acb6bec7d2dad6d2d1d2d6dae1e3d7ccc0b5aba1968f82756d62584e43392e231a0e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f52463927313a434c565e686e7b849197a1a9b3bcc5cdc4bab1a79f958f82796d665c53493f3327251b12090000000000000000000000000000000000000000000000000000000000000000000c18232f3a46535e6975828f9ba7b1bcced7dfd2c5b8ac9f92867a6d6054535f6a7784919eaab7c4cfd1c4b8aca095887b6e6155483c31261a0e020000000000000000000000000000000000000000000000000000000000000000000000000001080d1113141514120e0903000000000000000000000002080d1113141615130f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000060f182129313a41454e53586062666c707375787a7b7c7c7d7d7d7d7d7d7c6f6255483c2f24180d010000000000000000000000000000000000000000000000000000000000000000000000030f1c2936424f5c69758285858585858585857f7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9e1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb2a5988b7f7265584c3f3225190c0005121f2c3845525f6b7885929eabb8c5d1dedacdc0b3a79a8d8074675a4d4134271a0e0100000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbd8e2d6cabeb3aa93877a6d6054473a2d2114070000000916222f3b4854606b70797c7e818486898c8f9297979a968b7f726a5f564c423a31292018130c0701000000000000000000000003090e171d273039434c56606d7884919da7b1bcc8d4dfd3c6baaea2988a7d7064574a3d3025190d010000000000000000000000000000000000000000000000091724303d4a5763707d8a96a8b2bdc6b9ada197877b6e6154483b2e2115060715222f3c4855626f7b8898a2aebac6bbafa399897c6f6256493c2f2316070000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddddd0c4b7ab9f948f939aa4acb6c0ccd8d9dfdedfe2e6ece0d4c7bbafa49991847a6d615b51463c30271d11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c28313a444c565e696e7b859197a2aab4bcc6ccc3b9b1a79f948f81786d655b504440372d241b12080000000000000000000000000000000000000000000000000000000000000004101c2934404b55616e7b87929facb9c3cedfd3c7bbb0a69a8d8174685d524e586673808d99a9b2bdc9d4c8bcb1a7998c7f7266574d42372b1e1206000000000000000000000000000000000000000000000000000000000000000000000000040c13191d202121211e1a140d05000000000000000000040c13191d202123221f1b160d0802000000000000000000000000000000000000000000000000000000000000000000000000050f18212a333b434c52585f626a6f74787d7f8284878888898a8a8a8a8a8a817568554b4035291d1104000000000000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9292929292928b7f7265584c3f3225190c0000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0cddae0d3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d8ccbfb2a5998c7f7266594c3f3326190c0006121f2c3945525f6c7885929fabb8c5d2ded9ccc0b3a6998d8073665a4d4033271a0d0000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7e6dbd0baada094877a6d6154473a2e2114070000000a1623303d495663707d86888b8e91939a999c9ea1a9a89f92867c6e685d544b433a3229241d18120e090503000000000104060a0f141a20292f39424b555e68727f8b95a0acb9c3cdd8ded2c5b8ab9f9285796d6053473a2d2014080000000000000000000000000000000000000001010303030714212e3a4754616d7a8796a0acb9c5beb3a9978a7d7064574a3d2d22170b0713202d3a4653606d7985929facb8c5c0b5ab988b7f7265584c3f2f24180c0003030303030303030303030000000000000000000000111e2b3744515e6a7784919daab7c4d0dddccfc2b6a99c8f8288939aa4afbbbfc7d1dae3eceeece0d4c8bcb1a79f93877d70685e52493f342a1e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f28323a444d575f696f7c859298a2aab4bdc6cbc2b9b0a69e938e81776c605c52493f362d241a110800000000000000000000000000000000000000000000000000000000000006131f2c3845515c6773808d99a3afbbc7d4ddd0c4b7ab9f94887c6f62564c4956626f7c8996a1adb9c5d2cdc3b6aa9d908377695f53473a2e2115090000000000000000000000000000000000000000000000000000000000000000000002080d161e24292c2d2e2d2a251f170f0500000000000000040e161e24292d2e302f2c272119130c0400000000000000000000000000000000000000000000000000000000000000000000020b17212a333c454d565d606a6e767c8084898c8f91969495969797979797918477675d5145392c201306000000000000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9c9f9f9f9f988b7f7265584c3f3225190c0000000000000000000000000000000000000000000000000000000000000000000e1b2734414e5a6774818d9aa7b4c0cddae0d3c6baada093877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6e3d9ccbfb3a6998c807366594d4033261a0d0006131f2c3946525f6c7985929facb8c5d2dfd9ccbfb2a6998c7f7366594c403326190d0000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdcad7e0d4c7baada194877a6e6154473b2e2114080000000916232f3c4956626f7c8998989b9d9fa4aca8abadb3aea29891847a6d665d554c443d352f29241d1a13120f0b060c070d1113141b1f252a323a414a545d676d7a85929fa8b1bdcbd4dfd4c8bdb2a89a8e8174675d5145382c1f13060000000000000000000000000000000003080b0d0e1010101013202d3946525e687784919eaab7c4c0b3a6998d80736653493f33271b0f10121f2b3844505c667683909ca9b6c3c1b4a79b8e817468554b4035291d101010101010101010101010100a09070400000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7f7e88939fa3adb5bfc8d1dae3eceaddd1c4b8ab9f958d80736b60564c41372d22180c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c162029323b454d575f6a6f7c869298a3abb5bdc7cbc2b8b0a69e938d80746e635b51483f362c231a100700000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929eabb5c0cbd7d5c9bdb2a89c8f82766a5f53434653606c7884919eabb8c4cfd1c4b8aca095887b6e6255483c31261a0e020000000000000000000000000000000000000000000000000000000000000000050d14191f282f35393a3b3a36312921170b020000000000020c1620283035393a3c3b383229241e160e090300000000000000000000000000000000000000000000000000000000000000000a141d29333c464e575e686d747c82888d9197999b9ea1a8a2a3a3a4a4a49f93867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000001101d293643505c6976838f9ca9ababa5988b7f7265584c3f3225190c0401000000000000000000000000000000000000000000000000000000000000000e1b2835414e5b6874818e9ba7b4c1cedae0d4c7bbafa49986796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5e2d9cdc0b3a69a8d8073675a4d4034271a0d0005121f2b3744505b657986929facb9c5d2dfd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdc9d6e1d4c7bbaea194887b6e6155483b2e2215080000000815212e3b4854616e7b8794aaa7aaacafb6b5b8b9beb4aaa0968f82786d675e564f45403a352f2a25201f1b1719191a181d2020272b30363e444c535c666d79829097a2adbac3cedddcd1c5b8aca096897c7063554b4035291d1004000000000000000000000000000001080f14181a1b1d1d1d1d1d1d2935414c566875818e9ba8b4c1c2b6a99c8f8276655b5044372b1f1d1d1d1c28343f4a546774808d9aa7b3c0c3b7aa9d908477675d5145392c1f1d1d1d1d1d1d1d1d1d1d1d1d1d171614100b050000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e727f8b919ba3adb6bfc8d1dae4e9dcd0c3b6a99d9083796d60594f443a30241b120800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f172029333c454e58606a707d869299a3abb5bec7cac1b8afa59d928c80736d625a50483e352b2219100600000000000000000000000000000000000000000000000000000006131f2b38434e5864717e8b97a1adbdc7d1dcd2c5b9ada1968a7d7064584e4344505b6574808d9aa9b3becad4c8bcb1a7998c7f7366574e42372b1e120600000000000000000000000000000000000000000000000000000000000003090e171e252a313a4145474846423b33291d140a000000000008131e28323a4146474948443d353028201a150c0700000000000000000000000000000000000000000000000000000000000006111b262f3b454e585f696e7a80878f949a9ea1a9a8abacb2afafb0b0b0afa49a897c6f6256493c2f23160600000000000000000000000000000000000000000000000000000000000000000206080d111d293643505c6976838f9ca9b6b2a5988b7f7265584c3f32251913110d080603000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cedbdfd2c6b9ac9f938679665c5144382c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcc8d5e2dacdc0b4a79a8d8174675a4e4134271b0e000613202d394653606c798699a3afbbc7d3e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6e1d4c8bbaea195887b6e6255483b2f2215080000000714202d3a4753606d7a8698a2aeb7b9bbc0c2c5c6c5bcb2a89e948f82796d686159514b45403936302d2b272226252624292c2d32383b42464f565e656d78828f949fa9b3beccd5dfd4c8bcb1a79d9184786c605346392f24180c0000000000000000000000000000020b131a202427282a2a2a2a2a2a25303f4c5865727f8b98abb5bfc5b8ab9f9285796c605346392d2a2a2a2a2a232e3e4b5764717e8a97a9b3bec5b9ac9f92867a6d6053473a2d2a2a2a2a2a2a2a2a2a2a2a2a2a2a2423201c16100800000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e72727f8c919ca4adb6bfc8d2dae4dacdc0b4a79a8d81746d635b51493f362d241a1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f0e17212a333c464e58606b707d879299a4acb6c0cccac1b7aea49c928c7f726c625a50473d342b22180f0600000000000000000000000000000000000000000000000000000b15222e3b4754606a7783909da9b3becfd9d7cbbfb4ab9e9184786d6053463c3f495363707d8997a2adb9c6d2cdc3b7aa9d9083776a5f53473a2e21150a0000000000000000000000000000000000000000000000000000000000060b141a202930363e434c515454534d453b2f261c1106000000020c1924303a444c525456544f46413a322b261f18120b03000000000000000000000000000000000000000000000000000000000b17222d38414d575f6a6e7b838d92999fa6abadb2b5b7b9bdbbbcbdbdc0b6ac988b7e7265584b3f2d22170b00000000000000000000000000000000000000000000000000000000000205090e1214191d20293643505c6976838f9ca9b6b2a5988b7f7265584c3f322521201d1913120f0b0603000000000000000000000000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c2cedbdfd2c5b8ac9f9285796c5f4a4034281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5e1dacdc1b4a79a8e8174675b4e4134281b0e000713202d3a4653606d798693a0b5c0cbd7e3d7cabeb1a4978b7e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcc8d5e1d5c8bbaea295887b6f6255483c2f22150900000006131f2c3945515d677985929facb8c5c8ccd2d1d2cec3bab0a69e948f837a706b605d55514b46423b3937332d3232332f35393a3d43474d525961686d77818e949ea6b0bbc5cfded7cdc5b8aca0958a7e71655b5044372b1d120700000000000000000000000000010b141d252b30333436363636363636363c4956626f7c8999a3aebbc6baada297887b6e6255483b36363636363636363b4855616e7b8897a2adbac6bbafa399897c6f6356493c363636363636363636363636363636302f2c28211a1108000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e726d727f8c929ca4aeb6c0c8d2dbdbcec2b5a99d928c7f736d625b51483f362c231a11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130f18212a343d464f59616b717e87939aa4afbbbfc8c9c0b6aea49b918b7e716c61594f463d342a21180f0500000000000000000000000000000000000000000000000007121c2a36414c56626f7c89959fabbbc5cfe0d3c7baaea3998c7f72665c5044383a4653606d7985929eabb8c5d0d1c5b8aca095887b6e6255483c31261a0f020000000000000000000000000000000000000000000000000000020a11171f262a323b41464f555d60615e574d42382d22170b0300000a141e2935414c565d61636059524c443e373128231d150c070000000000000000000000000000000000000000000000000000030f1b27333f49535e696e7c8490959fa3abb0b8b9bec2c4c5c9c6c5c3c2c0b4a79a8d817467544a3f33281c0f03000000000000000000000000000000000000000000000000000002090e11151a1e2124292c2d3643505c6976838f9ca9b6b2a5988b7f7265584c3f32302d2c2924201f1c17120f0b0600000000000000000000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c2cedbdfd2c5b9ac9f928679665b5044382b1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbc8d5e2dacdc0b4a79a8d8174675a4e4134271b0e000613202d394653606c798699a3afbbc7d4e0d7cbbeb1a4988b7e7165584b3e3225180b000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5e1d4c8bbaea195887b6e6255483b2f22150800000004101d2935404b556b7784919eaab7c4d1d8dddedfd5ccc2b8b0a69f9590857d746d67605d55524d4846443f403f3f40414045474a4e54575e616b707a818e939ea6b0b8c2cdd7dbcfc5bbafa59d9183786c6053493f33271b0b010000000000000000000000000008131d262f363c40414343434343434343434753606d7986929facb9c5beb3a9978a7e7164574b4343434343434343434346535f697885929fabb8c5c0b5ab988b7f7265584c434343434343434343434343434343433d3c38332c231a10050000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e72656d737f8c929ca4aeb6c0c9d2dbd1c5b9aea49c918c7f726d625a50483e352c231a110700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060f18222b343d474f59616c717e88939fa3adb6c0c9c8bfb6ada39f92877e716b60594f463c332a21170e0500000000000000000000000000000000000000000000000c18232e3946525e6875818e9ba7b1bccdd7dfd2c5b9ac9f92867a6d61544a3f343844505c6674818e9baab4bfcad4c8bcb1a7998c7f7366584e43372b1f120600000000000000000000000000000000000000000000000000020c141c232831363e444c525961676d6e695e544a3f33281f14090006111c26303846525d686d6f6b615d565047423c342e271e1910070000000000000000000000000000000000000000000000000005121f2b3744505b656e7b859196a0a7afb5bdc2c6c9c9c6c5bfbab8b6b5b4b4a99d908376665b5044382b1f1206000000000000000000000000000000000000000000000000030a0f141a1e20262b2e2f35393a3d43505c6976838f9ca9b6b2a5988b7f7265584c403f3d3a39352f2d2b28221f1b17110c060000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe0d3c7baaea39886796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5e2dacdc0b3a79a8d8074675a4d4134271a0e0006121f2b3844505b667986929facb9c5d2dfd8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6e1d4c7bbaea194887b6e6155483b2e221508000000000c18242f43505d6a7683909da9b6c3d0dce8ebe7ded3cac2b8b0a79f9791898179726d67615e57555350494d4c4c4d4e4b515356586062696e747d858f939ea5afb8c1cad4dbd6cabeb3a99e938a7d70665b5041382d22170b00000000000000000000000000030f1a252f3841484c4e50505050505050505050515c677783909daab6c3c0b3a79a8d807467544a50505050505050505050504d576976828f9ca9b5c2c1b4a79b8e817468554b505050505050505050505050505050504a48443e352c21160b0000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265636d73808d929da4aeb7c0c9d2d6cbc0b6ada49b918b7f726c625a50473e352c23191007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1300061019222b353e47505a626c727f8b919ca4aeb7c0c9c8bfbbafa39992877d706b60584e453c332920160d0400000000000000000000000000000000000000000004101c2834404a54616e7a86929facb9c3cddfd4c8bcb1a79b8e8174685e5242382e343f4a5463707d8a98a2aebac6d3cec3b7aa9d9084776a5f53473a2e21150a000000000000000000000000000000000000000000000000000a141e262e343b424650565e616b707a7b6e665b50443b31251a0e040b17232e38424e58616d7a7c746d68615a534d454039302b22190f04000000000000000000000000000000000000000000000005111d2a36414c56606c77828f97a1a8b1bbc0c7cfcdc5beb9b8b4aeaca9a8a8a7a79f9285796c605346392d20130600000000000000000000000000000000000000000000040a0f151a1f252a2d31373a3b4145474a4c505c6976838f9ca9b6b2a5988b7f7265584f4d4c4a4745413c3938332d2b27221b17110c07010000000000000000000000000000000000000e1b2834414e5b6774818e9aa7b4c1cddae3d7cbbfb4a093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6e2d9ccc0b3a6998d8073665a4d4033271a0d00030f1c28333f4a5f6c7985929facb8c5d2dfd8ccbfb2a5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdcad7e1d4c7baaea194877b6e6154483b2e21150800000000071c2935424f5c6875828f9ba8b5c2cedbe8f9f0e5dcd3cac2b9b1a9a19e928d857f79726e696562605b535a5958595a555d6063666a6f757b818a91979ea5afb7c1cad3dcd3c9c1baada2978f82756c61544a3f2f261b1106000000000000000000000000000814202b36414a53595b5d5d5d5d5d5d5d5d5d5d5d556774818d9aa7b4c0c3b6a99d908376665c5d5d5d5d5d5d5d5d5d5d5d5d5d5d6673808d99a6b3c0c4b7aa9d918477675d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d57554f473e33281c100400111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e72655b636e73808d929da5afb7c0c9d3d2c8bfb6ada39f93887e716c615a50473d352b221910070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600071019232c353e48505a626d737f8c929da4aeb7c1cacbc0b5aba39992867d6f6a5f574d453b32281f160c01000000000000000000000000000000000000000006121f2c3844515c66737f8c99a3aebac7d3ddd1c4b8ab9f95897c6f62564c4130262e3a4753606d7985929facb8c5d1d1c5b8aca095887b6e6255483c31261a0f02000000000000000000000000000000000000000000000006111c2630383f444d535a62686e757d8483786c60574d42362a20160c101c28343f4a54606a748086817a716c625f57514b433d342b21160a00000000000000000000000000000000000000000000000713202d3946525e68727e8b949fa9b2bac3cbd1c9c0bbb3adabaaa29f9d9c9b9a9a9a98887b6e6255483b2f221508000000000000000000000000000000000000000001070d161b20262b30363a3c4247484c525457595b566976838f9ca9b6b2a5988b7f7265555c5a585754524c4946443f3937332d28231c18120b0300000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0cddae7dcd1baada093877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdc9d6e3d9ccbfb2a6998c7f7366594c403326190d00000b17222d45525f6c7885929fabb8c5d2ded9ccbfb3a6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7e0d3c7baada094877a6d6154473a2e211407000000010e1b2834414e5b6774818e9aa7b4c1cddae7ece4dcd6d1cecbc3bbb2ada49d97928c857f7b76726e6c6567666565666768676d7073777c81868e939ea1a9afb8c1c9d3dbd3cac1b7aea49f92857a6e615a5042382d1d140a00000000000000000000000000000b1824303c48535d646769696969696969696969696969717e8b97a4b1bec5b8ac9f9286796d69696969696969696969696969696969707d8a97acb6c0c6b9ac9f93867a6d6969696969696969696969696969696969696361594f44382c20140700111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265585c646e74808d929da5afb7c1c9d3d1c8bfbbafa49a93877e716c61594f473d342b2218100600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000007111a232c363f48515b636d73808d929da5afb8c1c1c1bdb4aba29892857c6f695f574d443a31281e130800000000000000000000000000000000000000000713202d3a4653606d7984919eabb4bfcbd7d5c9beb3a99d9083776a6054443a301f2c3845515c6775828e9baab4bfcbd4c8bcb1a7998c7f7366584e43372b1f120600000000000000000000000000000000000000000000000b17232e38424a50575f616c717a818a918b7f72695e53463e32281e1319232b3844505c666f7c87938e857e766e69605c554f473d32271b0f03000000000000000000000000000000000000000000000714212e3a4754616d7a86929fa6b0bbc4ccd7c8bfb7afa9a19e999892908f8e8e8e8e8e8a7d7164574a3e3124170b00000000000000000000000000000000000000040c131820272b31373b4246474d5355565d60636567696876838f9ca9b6b2a5988b7f72676a68676563605d565653504a46443f38342e29241d150d06000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3c0cdd9e1d4c7baaea194877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdcad7e3d8cbbfb2a5988c7f7265594c3f3226190c0000121f2c3845525f6b7885929eabb8c5d1ded9cdc0b3a69a8d8073675a4d4034271a0d0100000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1becbd8e2d6cabeb4aa93877a6d6054473a2d211407000000000d1a2633404d596673808c99a6b3bfccd9e6e4dad2cbc5c1c0c5c4beb9aea9a19e97918c87837e7b797674737272737475777a7d8083898e92999da5adb3bbc1cad3dbd6c9c1b8afa59c928a7e71685e52483e2f261c0b0200000000000000000000000000010d1a2733404c59646f7476767676767676767676767676767b8895a1aebbc7baaea398887c7676767676767676767676767676767676767b879aa4afbbc7bbafa499897d76767676767676767676767676767676767676706b6155483c2f23160900111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e726558525c606c77808e939da5afb7c1c9d3d8ccc0b6aca49992877e706b60594f463d342a22180f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000008111a242d363f49515b646e74808d939ea6b0b4b4b4b4b4b4aaa29791857b6e695e564c433a2f24190d0100000000000000000000000000000000000006131f2b37434e5864717e8a96a1adbdc6d1dcd2c6b9ada1978b7e7164584e4332291e2934404b5564717e8a98a3aebac7d3cec3b7aa9d9184776a5f53473a2e21150a0000000000000000000000000000000000000000000003101c28343f4a545c60696e767e858e939e92867b6e615a50443a3024191e2a36414d56606d7883909a97928b827b736d6760594f43382c1f130700000000000000000000000000000000000000000005121e2a36424d5765727f8b98a2aeb8c2cdd3c9bfb6ada59d97928d888583828181818181817d7063574a3d3024170a000000000000000000000000000000000001070d161d242932373c43474d5254575f6265686d70727476787a83909da9b6b3a6998d807a7877757372706d686662605b54535049443f38352f271f17110a0300000000000000000000000000000d192633404c5966737f8c99a6b2bfccd9e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbd8e4d8cbbeb1a5988b7e7265584b3f3225180c0005121e2b3845515e6b7884919eabb7c4d1dedacdc1b4a79a8e8174675b4e4134281b0e0100000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8dfd3c6baaea29886796d6053463a2d201307000000000c1925323f4c5865727f8b98a5b2becbd8e5dcd2c8c0b9b5b3b9bbc0c0bbb3ada9a19e9a938f8b88858281807f7f8081828386898c90959b9fa3abafb9bec4cdd3d7d0cac0b7afa69e938c80736c61564c41362c1d140a0000000000000000000000000000010e1b2834414e5b677481838383838383838383838383838383909ca9b6c3cbbfb4aa9d91838383838383838383838383838383838383838288939facb9c6c0b5ab9d9184838383838383838383838383838383838383837d7063574a3d3024170a00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b505b656c77818e939ea5afb7c1cad3d2c7beb5aba39992877d706b60584e463c342a21180f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060000000008121b242d374049525c606c78818e939ea6a8a8a8a8a8a8a8a9a19791847b6e685e554c4135291d11040000000000000000000000000000000000000a15212e3b47535f6a7683909ca9b2bdcfd8d7cbc0b5ab9e9285796d6053463d322018232f3a4754606d7a86929facb9c5d1d1c5b8aca095887b6e6255483c31261b0f0300000000000000000000000000000000000000000006121f2b3844505c666d727b828b92979ea2988f82756c61564c4135291f27303946525e68727f8b95a0a19e948f867f796f6b6054483b2f2215090000000000000000000000000000000000000000000714212d3a46535f697683909daab4bfcad4d0c1b7ada39c938e85807c797675757474747474706b6155483c2f23160900000000000000000000000000000000040c13181f282f353d43474e53575e6166696e72767a7d7f8183858790959fabb8b4a89c928d87858382807f7d7a76736f6c6663605b53504a4540393128231c150c06000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e3d6cabdb0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9e3d6cabdb0a3978a7d7064574a3d3124170a0004111d2a3744505d6a7783909daab6c3d0dddbcec1b4a89b8e8175685b4e4235281b070000000000000000000000000000000000000000000000000000000d192633404c5966737f8c99a6b2bfccd9ded2c5b8ab9f928578665c5145382c1f1306000000000b1724313e4a5764717d8a97a4b0bdcad7e1d6cbc0b6aea9a7acafb5bdc5beb9b3adaca49f9c9897928f8e8d8c8b8c8d8e909299999d9fa7acafb5bdc0c9cfd6d5cdc5bebaaea59e948e81776c605a50443b30241a0b02000000000000000000000000000004111d2a3744505d6a7783909090909090909090909090909090949fabb7c4d0c6b8aca0959190909090909090909090909090909090909090939aa4afbbc8c7b8aca096919090909090909090909090909090909090908b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b49535b656c78818e939ea5afb8c1cad4d0c7bdb5aba39992867d706a60584e463c332a21170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000009121b252e374044505b666d78818f949b9b9b9b9b9b9b9b9b9b9b9691837a6d675d5145392c201306000000000000000000000000000000000006111c2935414c56626f7c88949fabbbc4cfe0d4c7bbafa3998d8073675c5145382c1f13202c3945515d6775828f9cabb5c0cbd4c8bcb1a7998c807366584e43372b1f12060000000000000000000000000000000000000000000713202d3a4653606d787f868f949ea2a9aa9e948a7e71685d52453d31272e39424f59616e7b85929fa7ada69f98928c847d6f6356493c302316090000000000000000000000000000000000000000000815222e3b4855616e7b88959fabbcc5d0d2c7bdafa59c918c8179736f6d66696867676767676361594f44382c201407000000000000000000000000000000050d161d2429313a40454e54585f62696e73777b7f83868a8c8e9092979d9fa7b1bcb9aea49c999792908f8d8b8a86837f7c7975706c65605c54514b433d342e261e180f080000000000000000000000000a1724303d4a5763707d8a96a3b0bdd0dbe7d8cbbeb1a5988b7e7265584b3f3225180700000000000000000000000000000000000000000000000000000000000000000000000000000000020e1b2835414e5b6874818e9ba7b4c1cedae3d7cbbfb5ab95887c6f6255493c2f2216090003101c2936434f5c6976828f9ca9b5c2cfdcdbcec2b5a89b8f8275685c4f422e23180c0000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0cdd9ddd1c4b7aa9e9184776b544b4034281c1004000000000a1623303d495663707c8996a3afbcd1dcddd1c5b9aea49d9a9fa3abb5bfc6c4beb9b6afaca9a9a29f9c9a999898999a9b9d9fa3abaaabb1b9bbc0c7cfd5d5cec9c2bbb3ada49d938e82796d655b50483e32291e120800000000000000000000000000000004111d2a3744505d6a7783909c9c9c9c9c9c9c9c9c9c9c9c9c9c9fa6b0bcc7d3c8bdb1a8a09d9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9fa4acb6c0ccc8bdb2a8a09d9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b4149535b666d78818e939ea6b0b8c2cad4d0c7bdb4aba29892867c6f6a5f584e453c332920170e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000009131c2528333f4a545c666d79828e8e8e8e8e8e8e8e8e8e8e8e8e8e8e837a6d6054473a2d21140700000000000000000000000000000000000b17222d3946525d6874818e9aa6b0bccdd6dfd2c5b9ac9f92877b6e61554b4034281c111d2935414b5565717e8b99a3afbbc7d4cec3b7aa9d9184776a5f53473a2e21150a0000000000000000000000000000000000000000000916232f3c4956626f7c8992989fa6adb3b0a69e91857a6d60594f43392f34404b54606b75818e98a2aeb9b0aaa39f958a7d7164574a3e3124170b0000000000000000000000000000000000000000000c1925323f4c5865727f8b98a7b1bcced7ccc0b5ab9e938c7f746d6762605c545b5b5b5b5b5b57554f473e33281c10040000000000000000000000000000060e171f282f353d434b515860626a6e747b8084888c8f9299989a9c9ea1a9abb1b9c2bfb6aea8a9a29e9d9b9a989992908c8985827d78716d66605d554f443f383029211a110800000000000000000000000915222f3c4855626f7b8895aab4bfcad6e2d9ccc0b3a6998d8073665a4d402f24180c0000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556976828f9ca9b5c2cfdce0d3c7bbaea399877a6e6154473b2e21140800020f1b2835424e5b6875818e9ba8b4c1cedbdccfc2b6a99c8f837669554b4034281c100400000000000000000000000000000000000000000000000000020e1b2835414e5b6874818e9ba7b4c1cedadcd0c3b6a99d9083766a5d50432e23180c00000000000815222f3b4855626e7b8895abb5c0cbd7dbcec1b5a99d928d9299a3aeb4bcc3c9c7c0bbb9b6b3adaba9a7a6a5a5a6a7a8aaacafb5b6b8bcc3c7cbd1d4cec9c4bdb9b0a9a29f928d81786d675c53493f362c20170d0000000000000000000000000000000004111d2a3744505d6a7783909da9a9a9a9a9a9a9a9a9a9a9a9a9abb0b9c2cdd8cec3bab1acaaa9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9acafb6bec7d2cec3bab2acaaa9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f414a545c666d78818f949ea6b0b8c2cad4cfc6bdb4aaa29892857c6f6a5f574d453b322920170e040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000010a1317222d38424a545c676d79818181818181818181818181818181817e7265584b3f3225180c00000000000000000000000000000000030f1c28333f4a54616d7a86929facb8c2cddfd4c8bdb1a89b8f8275695e5343392e23180d18242f3a4754616d7a86929facb9c5d2d1c5b8aca095887b6f6255483c31261b0f0300000000000000000000000000000000000000000815222e3b4754606a75828f99a3afb9beb9ada1978e81746b60554b40343845515c66707d89939eaab3bebcb0a69d9083786c605346392d2013060000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0cdd4c7bbafa4998f81756d605d5553504a4e4e4e4e4e4e4a48443e352c21160b0000000000000000000000000000070f182029313a40454f555d606a6f757b81868d9196989c9fa3aba7a9abadb3b8bcc2cbc8bfb9b4b3adabaaa8a6aba39f9c9997928e8a837e79726d676059504a423b332c231a1007000000000000000000000714212e3a4754616d7a8798a2aebac7d3e0dbcec2b5a89b8f827568554b4035291d10040000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d677884919eabb7c4d1dedfd2c5b9ac9f9286796c605346392d20130600010e1a2734414d5a6774808d9aa7b3c0cddaded1c4b7ab9e918478675c5145382c1f13060000000000000000000000000000000000000000000000000004101d2935404b55697683909ca9b6c3cfdcdbcfc2b5a89c8f8275695c4f4236291c0700000000000714212e3a4754616d7a8799a3afbbc7d4dacdc0b3a79a8d8087929fa2aab1babec5c9c8c6c2bebab8b5b4b3b2b2b3b4b5b6b9bbc0c3c4c8cdd3d2ccc8c4bdb9b2aca69f97928a80786d665c554b41382d241a0e050000000000000000000000000000000004111d2a3744505d6a7783909daab6b6b6b6b6b6b6b6b6b6b6b6b7bcc2cbd4ded5ccc3bdb8b7b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b9bbc0c7d0d9d5ccc3bdb8b7b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b1a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f38424a545c666d78828f949fa6b0b8c2cbd4cfc6bcb4aaa29792857c6f695f574d443b322920160d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000006111c262f38424b555d676d74757575757575757575757575757575726d62564a3d3124180b0000000000000000000000000000000006121f2b3844505b66727f8c98a2aebac7d3ded1c5b8aca095897d7063574d4230271d120713202d3946525e6876838f9ca9b6c2cdd4c8bdb1a8998c807366584e43372b1f1206000000000000000000000000000000000000000006131f2b37434e58626e7b87929faab4bfbeb3a99d93897d70675c51453c424d57606d7984919da5afbcc5b7ab9f948a7d70655b5044372b1f12050000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1ced2c6b9ac9f93877b6e625b514b46443f4241414141413d3c38332c231a100500000000000000000000000000071019212a323b434b515960676d747c82878e92999ea0a8a9acafb5b4b6b8b9bec5c8cdd4d1cac4c5beb9b8b6b5b3b5afaca9a9a29f9b95908b847f79706b605c544d453d352c22190f060000000000000000000713202d3946525d687985929facb8c5d2dfddd0c4b7aa9d918477675d5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6d2dfded1c4b7ab9e918478665b5044382b1f120600000d192633404c5966737f8c99a6b2bfccd9dfd2c6b9ac9f9386796d6053463a2d2013070000000000000000000000000000000000000000000000000006131f2c3845515d677884919eabb8c4d1dedbcec1b4a89b8e8175685b4e4235281b0f02000000000613202d394653606c7986929facb9c5d2d6cabdb0a3978a7d7e8a9298a0a7adb3b9bdc4c6c9cac6c5c2c1c0bfbebfc0c1c3c5c7cbd1d1d1cbc7c5c0bbb9b2aca8a19e948f857e736c665c544b43392f261b1208000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3c3c3c3c3c3c3c3c3c3c3c4c7cdd4dde6ded5cec8c5c4c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c6c8ccd2d9e2ded5cec8c5c4c3c3c3c3c3c3c3c3c3c3c3c3c3c3beb1a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f2f38424a545c666d79828f949fa6b0b9c2cbd4cec5bcb3a9a19791857b6e695e564d443a32281f160d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060000000000000000000a141d263039434b555d606768686868686868686868686868686865625b51453a2e221509000000000000000000000000000000000613202d394653606c7884919eaab4bfcad6d6cabeb4aa9d9184776b6054453b311e150b05111d2a36414c5665727f8b98a7b1bcc8d4cec3b7aa9d9184776a5f53473a2e21150a0000000000000000000000000000000000000000030f1b27323d47535f6a74818e98a2aebac4bbafa59e9184796d60584e4246535f69727f8c96a0acb7c1bbb0a69c9083766b6153493f33271b0f03000000000000000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfcfc2b5a99c8f8276695f5345403a38342e3434343434302f2c28211a110800000000000000000000000000071019222b333c444c555d606b707980878f939a9fa3abacb2b6b9bbc0c1c3c5c6c9cfd4d8dfdcd5d0cfcac6c5c3c2c0c0bbb9b6b3adaba7a09d96918b847d736d665f574f473d342b21180e05000000000000000005111d2935414c566a7784909daab7c3d0dddfd2c6b9ac9f93867a6d6053473a2d2014060000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c889aa4afbbc8d4e0dccfc2b5a99c8f827669544a3f33281c0f0300000b1825313e4b5864717e8b97a4b1bed0dbe0d4c7bbafa499887b6e6255483b2f221508000000000000000000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6d2dfd9ccc0b3a6998d8073665a4d4033271a0d000000000006121f2b3844505b667885919eabb8c4d1d7cbbeb1a4988b7e717e8691959fa2a9acb2b8b9bec1c3c5c7cbd1cacbcbcbcbcac9cfc9c5c4c2c0bbb9b6afaca8a19e96918a827b706c605b544a423931271d140a00000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3cfcfcfcfcfcfcfcfcfcfd0d3d8d8dbdfe7dfd9d4d1d0cfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfd2d4d8dddfe2e6e0d9d4d1d0cfcfcfcfcfcfcfcfcfcfcfcfcfcabeb1a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f323038424b545c676d79828f949fa7b1b9c3cbd5cec5bbb3a9a19791847b6e695e564c443a31281f150c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000000020b151e273039434b51535b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b585651493f34291d120500000000000000000000000000000006121e2b37424e5764707d8a96a1acbcc6d0dbd3c6baaea2988b7f7265594f4433291f0c03010d1925303b4854616e7b87959fabb8c4d1d1c5b8aca096887c6f6255483c32261b0f0300000000000000000000000000000000000000000a15202b37434e58616e7b86929fa9b3bec0b9aca0968d80736a5f544a505a616e7b86929fa8b2bdc7b7ab9f94897d7063594f41382d22170b00000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0ccbfb2a5998c7f7266574d42352f2b282328282828282423201c16100800000000000000000000000000050e19222b343c454d565e676d747d848d939a9fa4acaeb4b9bdc2c5c7cbd1cfd1ced1d2d5dae0dcd5d0cdccc9caccced1cbc7c5c3bebab8b1aca8a19e96918780786e6960594f463d332a20170d0300000000000000010d192430414e5b6874818e9ba7b4c1cedae0d4c7bbafa499887c6f6255493c2d22170b0000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97acb6c0ccd8e4d9cdc0b3a69a8d8073675a4d402d22170b000000091623303c4956636f7c8996aab4bfcad6e2d7ccc0b5ab968a7d7063574a3d3024170a000000000000000000000000000000000000000000000000000915222f3c4855626f7b889aa4afbbc8d4e0d7cbbeb1a4988b7e7165584b3e3225180b0000000000030f1c28333f4a546a7784909daab7c3d0d9ccbfb2a6998c7f73717c838b92979ea1a8abadb3b4b7b9babfbdbdbebebfbebdbcbbbdb9b7b5b5afacaca49f9c96918b847d766e69615a504a423930271f150b0200000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3cacacacacacacacacacacacacbcccfd4dae2e5e1ded6d1cecdcacacacacacacacacacacacacacacacacacacad2d3d6dbe1e5e1ded5d0cdcccacacacacacacacacacacabeb1a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f32263039424b555d676d798290959fa7b1b9c3cbd5cdc5bbb3a9a19691847b6e685e564c433a31271e150c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000030c151e2831394045474e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4b4a453f372d23180c010000000000000000000000000000000a14212e3a47535f6a76828f9ca8b2bdced8ded2c5b8ab9f92857a6d6054473d3321170d00000814202d3a46525e697683909da9b6c3ced4c8bdb2a8998c807366584e43372b1f12060000000000000000000000000000000000000000040f1a26313c46525e6973808d97a2adb9c4bdb2a89f92877c6f665b5055616c75828f98a2aebac3bdafa59c8f82766b6054473e2f261b110600000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0c9bcafa396897c706356493d31241f1c171b1b1b1b1b171614100b0500000000000000000000000000030d17202b343d464e575f686e79818991969fa4acafb6babfc6c8ced2d2d0cac6c5c2c4c5c9ced6d1cac4c1bfbcbec0c2c5c6cad0cfcac6c3bcb8b2aca9a199938d837b706b60584e453c32291f150b0100000000000000081926323f4c5965727f8c98a5b2bfcedae3d7ccc0b5ab988b7f726553493f33271b0f030000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c566774818d9aa7b4c0d2dde3d7cbbfb4ab978a7e7164574b3e312418060000000814212e3b4754616e7a8798a2aebac7d3e0ddd2beb2a5988b7f7265584c3f32251909000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97acb6c0ccd8e3d7cbbfb4aa96897c706356493d3023160a0000000000000b17222d434f5c6976828f9ca9b5c2cfdacdc0b4a79a8d81746a6f787f858c91969a9ea1a9a7aaacaeb4b0b1b1b2b2b1b0afaeb2adaba8aba39f9c9a938f8a847e79706c615f5750443f382f271e150d030000000000000000000000000000000000000004111d2a3744505d6a7783909daab6bdbdbdbdbdbdbdbdbdbdbdbdbdbebfc3c9d0d9e2dad2cbc5c2c0bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdc5c6cad0d7e0dad1cac4c1c0bdbdbdbdbdbdbdbdbdbdbdbdb1a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225273039434b555d676d798390959fa7b1b9c3ccd5cdc4bbb2a8a09691837a6d685d554c433930271e150c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060000000000000000000000030c161f282f35393a414242424242424242424242424242423f3d3a342d251b110600000000000000000000000000000006111b2935414b55626e7b88949fabbac4cee0d3c7bbb0a69a8d8074675d5145392c201305000005121e2a36424d5766727f8c99a7b1bcc8d4cec3b7aa9e9184776a5f53473b2e21150a0000000000000000000000000000000000000000000915202a36424d57606d7a85929ea8b2bdc3bbafa3999083786c60575d67707d8a949eaab4bfc0b5ab9e93897c6f62594f44352c1d140a0000000000000000000000000000000000000000000003101d2a3643505d697683909ca9b6c3cfc8bbaea295887b6f6255483c2f2215100b060e0e0e0e0a0907040000000000000000000000000000010b151f29333d464e5860696e7a838e939ea1a8afb6bbc0c7cbd1d4cec9c5c4bebab8b5b7b9bdc4ccc8bfb9b4b3afb1b3b5b8babfc5c6cacfcec8c4bdb9b2aba49f9590867d706a60574d443b31271d1207000000000000000a1623303d495663707d8996a8b2bdc9d5e1ddd2c2b5a89b8f8275655b5044372b1f1205000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e687784909daab7c3d0dde0d3c7baaea399887b6f6255483c2f2215090000000613202d394653606c7985929facb8c5d2dfdacdc0b3a79a8d8074675a4d4131251a0e020000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfd2dde0d3c7baaea398877b6e6154483b2e211508000000000000061b2835424e5b6875818e9ba8b4c1cedbcec2b5a89b8f827568666d727a7f848a8e9197989b9d9fa3aaa3a4a4a5a5a4a3a2a2a8a19e9c999992908c87827e79726d67615a534d453e332d261d150c03000000000000000000000000000000000000000004111d2a3744505d6a7783909daab0b0b0b0b0b0b0b0b0b0b0b0b0b0b1b3b7bec7d0dfd2c8c0b9b5b4b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b8babec5ced7d1c8bfb9b4b3b0b0b0b0b0b0b0b0b0b0b0b0b0a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f32251e273039434b555d676d7a839095a0a7b1bac3ccd5cdc4bab2a8a09590837a6d675d554b433930271e140b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000000000000040d161d24292c2d3435353535353535353535353535353532312e29231b1209000000000000000000000000000000000b17222d3945515d6774808d9aa6b0bbccd6ddd0c3b7ab9f94887b6e62554b4135291d11040000020e1a25303b4855626e7b8895a0acb8c5d1d2c5b8aca096887c6f6255483c32261b0f030000000000000000000000000000000000000000030e1a25303b45525d68727f8c96a1acb9c3c0b5ab9f958b7f72695e606d7984919ea6b0bcc6bbafa4998f82756a6054473d32231a0b0200000000000000000000000000000000000000000000020f1c2835424f5b6875828e9ba8b5c1cec7baada194877a6e6154473b2e21140800000101010100000000000000000000000000000000000007121d27313b454e58606a6f7b8490959da5acb2bbc0c7ccd2d1cbc7c4bdb9b7b3adaba8abacb2bac4bfb6aea8a6a2a4a6a8acaeb4b8b9bec5c9cecec9c4bdb5afa79f9892867c6f695f564d43392f23180c040000000000000714212e3a4754616d7a8796a1acb9c5d2deded1c5b8ab9e9285796c605346392d20130a000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86939facb9c6d2dfdfd2c5b9ac9f9286796d6053463a2d20130700000005121f2b3744505b657784919daab7c4d0dddbcfc2b5a89c8f827569574d42362a1e1205000000000000000000000000000000000000000000000004111d2935414b556774818d9aa7b4c0cddadfd2c5b9ac9f9286796c605346392d2013060000000000010d1a2734404d5a6773808d9aa6b3c0cdd9d0c3b6a99d9083766a5c60686d72787d8185888b8e909298959797989898989796959496918f8c8a86837f7b76716d66605c555046423b3328221c140b0300000000000000000000000000000000000000000004111d2a3744505d6a7783909da4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a7acb5becdd7cbc0b6aea9a7a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4abaeb3bcc5d0cabfb6aea8a6a4a4a4a4a4a4a4a4a4a4a4a4a4a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225151e273139434b555d686d7a839095a0a8b2bac4ccd6ccc4bab1a8a0959083796d675d554b423930261d140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000040c12181d2020282828282828282828282828282828282524221d18110900000000000000000000000000000000030f1b27333f4953606d7a85929fabb8c2ccded5c9bdb2a89c8f82766a5f53433a2f24180d010000000914212e3a47535f697784919daab7c4ced4c8bdb2a8998d807366584e43372b1f130600000000000000000000000000000000000000000009141f2935414c56606d7984919ea7b1bcc7bdb1a79f92867b6e616a73808d96a1acb8c1c0b5ab9f93877c6f62584e43352b2111080000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cdc7baaea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000050e18232f39434d57606a6f7c859196a0a7afb9bdc4ccd2d4cfc7c0bbb9b2acaaa9a29f9b9ea1a8b2bdb9aea49c999697999c9fa2aaabadb3b9bdc4cbd1d0c7c0bbb1aaa29892857b6e685e554b40342920150a0000000000000713202d3946525e687884919eabb7c4d2dddfd2c6b9ada197887c6f6255483c31261a0f01000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a5464707d8a9aa4afbbc8d4e0dcd0c3b6a99d908376665c5144382c1f1206000000030f1b27333f49536875828e9ba8b5c1cedbded1c4b7ab9e918478695e53463a2d21140700000000000000000000000000000000000000000000000613202c3945515d677683909da9b6c3d0dcddd0c3b7aa9d908477665b5044382b1f12060000000000000c1926333f4c5966727f8c99a5b2bfccd8d1c4b7ab9e9184786b56565d60666d7074787c7e81848687888a8a8b8b8c8b8a898887868482807d7a76726e6964605c54514b433e3631292117110a020000000000000000000000000000000000000000000004111d2a3744505d6a77839097979797979797979797979797979797989ba3acbbc5cfc5b9aea49d9a979797979797979797979797979797979797979fa2aab3becac4b9aea49c999797979797979797979797979797978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f322518151f28313a434c565d686d7a839096a0a8b2bac4ccd5ccc3bab1a79f959082796d675c544a42382f261b110600000000000000000000000000000000000000000000000000000000000000000000000606060606060606060606060606060606060606060b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0606060606060606060606060606060606060606060100000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000000000000000001070d1013141b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b181815120c06000000000000000000000000000000000005121f2b3744505b65727f8b98a2aebac6d3ded2c5b9aca1968a7d7064574e4231281d13070000000006121e2b37424d576673808c99a8b2bdc9d5cec3b7aa9e9184776a5f53473b2e21150a000000000000000000000000000000000001020203020d19242f3a45515c67717e8b95a0acb8c2c2baaea2988f82756c6e7c87929fa8b2bdc7bbafa3998e81756a5f53463d3223190f000303020100000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbc8bbafa295887c6f6255493c2f22160900000000000000000000000000000000000000000000020d17202934404b555e696f7c869297a0a8b1b9c0c9ced8cec8c2bdb5afaca8a09e9997928f9196a1acb9b4a89c928c898b8d8f92989a9ea2a9acb2bbbfc6cfd2ccc2bcb3aaa19791847a6e675c51453c31261b0f04000000000005111d2a36414c566774818e9aacb6c0ccd8e2d6cabeb3a9998c807366584e43372b1d1207000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c6674818e9bacb6c0ccd8e2d6cabfb4aa998c807366544a4034281c1004000000000b17222d3f4c5966727f8c99a5b2bfcedaded2c5b9aca196877b6e6154483b2e21150900000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb9c5d2dfdacec1b4a79b8e817468544a3f33281c0f030000000000000b1825313e4b5864717e8b97a4b1becad7d2c5b9ac9f928679685d5252545c6063656c6f727477797a7c7d7e7e7f7f7e7d7c7b7a79787573706d6766615e5753504a454039312a261f170f0600000000000000000000000000000000000000000000000004111d2a3744505d6a77838a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8b919ba9b3becac2b5a99d928d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a9298a2aebac6c1b4a89c928d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180d161f28313a434c565e686e7a849196a0a8b2bac4cdd5ccc3b9b1a79f948f82796d665c544a41382d2217130a010000000000000000000000000000000000000000000000000000000002070a0c0d121212121212121212121212121212121212121212121825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f322518121212121212121212121212121212121212121212120d0d0b0703000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000000000010406070e0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0c0b0905010000000000000000000000000000000000000613202d394653606c7884919daab4becad6d6cbbfb4aa9e9184786d6053463c3120160c0100000000020e1a26313c4955626f7c8896a1acb9c5d2d2c5b9aca096887c6f6255493c32271b0f030000000000000000000000000407090a0e0f0f101008131e2834404b55606c7883909da6b0bbc7bfb4aa9e948a7e7176828f99a3aebac4bfb4aa9f92877b6e61584e43342b20110610100f0f0e0a090704000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcfc9bcb0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000009141f29333b45515c676e7b859198a1a9b2bac3cbd5d6ccc3bdb8b0aba39f9b96918c89858284919eabb7b3a6998c807c7e808285898d92979ea1a8aeb5bdc3cbd7cec5bcb3a9a1969083796d60584e43372b20150a0000000000010d1925303e4a5764717e8a9aa4afbbc8d4e0dacfc4b7aa9d9184776a5f5347392f23180c00000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929eabb8c5d2dde0d3c6baaea298897c706356493d2e23180c0000000000061723303d4a5663707d8996a8b2bdc9d5e1d5c9bdb2a8978b7e7164584b3e31261a0e02000000000000000000000000000000000000000000000a1724303d4a5763707d8a99a3afbbc7d3e0d7cbc0b5ab988b7f7265584c3f2d22170b000000000000000a1724303d4a5763707d8a96a3b0bdc9d6d3c7baaea398877a6d6054474a5053535b60626568656c6d6f707171727271706f6f6e6d66696663605d5554534d46443f38342f271f1a140d0600000000000000000000000000000000000000000000000000000a1623303d495663707d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7e8b97a1adb9c6c0b4a79a8d807d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7e85929fabb8c5c0b3a6998d807d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e6154483b2e21150800111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0d161f28313a444c565e686e7b849196a1a8b2bbc4cdd5cbc2b9b0a69f948f82786d665c53493f3327261c130a010000000000000000000000000000000000000000000000000000070e1317191a1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f25323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f32251f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1a1917130e080100000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060000000000000000000000000000000000000000010202020202020202020202020202020000000000000000000000000000000000000000000005121e2a36424d5763707d8996a0acbcc5d0dbd3c7baaea3988c7f72665c5044382b1f12040000000000000915212e3b47535f6a7884919eabb7c4cfd5c9bdb2a8998d807366584e43372b1f130600000000000000000000050b101416171b1b1c1c1d1d1e18232e3944505b66707d8a949fabb7c1c5bcb0a69e92857a7e8a949fabb5bfc7baaea3988e8174695f53463c31221c171e1d1d1c1b1b171613100b0500000000000000000000000000000916222f3c4955626f7c8895a9b3bec9cabeb1a4978b7e7164584b3e3125180b000000000000000000000000000000000000000000030c1a25303b45515b606d79839097a1aab3bbc4ccd5d0cac0bab2aca69f99928f89847f7c7976838f9ca9b6b2a5988b7f72717375797d80858b91969fa3abb1b9c2cbd4cec5bbb2a8a0958d80736a5f53473c32261b0f0100000000000814212e3a4754616d7a87939facb9c6d2dfded1c5b8aca095887b6f62554b4034291b110600000000000000000000000000000000000000000000000000000000000000000004111d2935414c5663707d8997a2adb9c6d2e4dfd2c5b8ac9f9285796d6053463a2d20130700000000000714212e3a4754616d7a8796a1acb9c5d2dedacec1b4a79b8e817468574d42372b1e120500000000000000000000000000000000000000000005111d2935414c566773808d9aabb5c0cbd7e0d4c7bbafa399897c6f6256493c2f231606000000000000000916222f3c4955626f7c8895a2afbbd0dbd7cbbfb4aa95887b6e6255483f44464950535558535b60616264646565656564636261605c54595754514b4846423b38342e29231d150d09030000000000000000000000000000000000000000000000000000000916222f3b4854606b7071717171717171717171717171717171717885929eabb8c5c0b3a69a8d8073717171717171717171717171717171717176828f9ca9b6c2bfb2a5998c7f727171717171717171717171717171716e695e53463a2d21140700111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c040d161f28323a444c565e696e7b849196a1a9b2bbc5cdd4cbc2b8b0a69e948e81786d655b504440382e251c1309000000000000000000000000000000000000000000000000020a12191f2326272c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f322c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2726231f19120b02000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f6975828f9ca8b2bdced7dfd2c5b8ac9f92867a6d61544a3f34281c100300000000000006131f2b37434e586773808d9aa9b3bec9d5cec4b7aa9e9184776a6054473b2e22150a000000000000000000080f161c202223282829292a2a2b2b2328333f4a54616b76828f9ca5afbdc7c1b9ada1978e8185919ea6b0bdc6bfb4aa9f92867b6e61574d42342d2c28232b2a292928282322201c160f08000000000000000000000000000714202d3a4753606d7a8697a1adb9c6ccbfb3a6998c807366594d4033261a080000000000000000000000000000000000000000000a151e2a36424d57626d75818e959fa9b2bcc5cdd6cec6bfbaafa8a09d948f87827d78736f6d76838f9ca9b6b2a5988b7f726566676d7074797f848c9299a0a7b1b9c2cbd4cdc4bab1a79f92877c6f62584e43372b1e130800000000000713202d3946525e687783909daab6c3cdd9e0d4c8bcb1a7998d8073675c5145382d22170b0000000000000000000000000000000000000000000000000000000000000000000b13202c3945525d6874818e9ba9b3becad6e2d7cbc0b5ab9c8f8276675c5145382c1f130600000000000713202d3946525e687884919eabb7c4d1deded1c4b7ab9e918478695f53463a2d2114080000000000000000000000000000000000000000000713202d3946525d687783909daab6c3d1dcdfd2c5b9ac9f92867a6d6053473a2d201407000000000000000815212e3b4854616e7b8794aab3becad6dcd1bcafa396897c706356493d383a3f4446494b49505354555757585859585756555453514b4d4a4745413b3a36312c28231c18120b0300000000000000000000000000000000000000000000000000000000000713202c38444f596063646464646464646464646464646464646975828f9ca8b5c2c2b6a99c8f8376656464646464646464646464646464646673808d99a6b3c0c1b5a89b8e8275686464646464646464646464646464615e574d42362a1e120500111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00040d162029323b444d575e696e7b849197a1a9b3bbc5cdd4cac2b8b0a69e938e81776c605c524a40372e251b120900000000000000000000000000000000000000000000000a141c242a2f3233393939393939393939393939393939393939393939393939393e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f393939393939393939393939393939393939393939393939393433302b241c140b010000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b55616e7b87939facb9c3cedfd4c7bcb1a79b8e8174685e5242382e23170b00000000000000030f1b26323c4956636f7c8997a1adb9c6d2d2c5b9aca096887c6f6255493c32271b0f030000000000000008111a21272c2f3034353536363737382e34383a424f59626f7c89939eabb5c0c9beb3a99e938e9197a1adb8c2c6baaea2988d8073695e52453b3a3a38342e373736363534302f2c27211911080000000000000000000000000613202c3945515d677885919eabb8c4cec1b4a89b8e8175685b4e423025190e020000000000000000000000000000000000000006111c26303846525e69727f8b939ea7b1bbc4ced6ccc4bcb4aea59d96918a827c75706c65626976838f9ca9b6b2a5988b7f7265555c6063676d72787f8790959fa7b1b9c2cdd6ccc3bbaea3998f82756a5f54473a2f24190d010000000005111d2a36414c566673808d99a7b1bcc8d4e3d9cec3b8ab9e9285796d6053493f33271c12070000000000000000000000000000000000000000000000000000000000000007121d28333f4a54606d7a86929facb8c5cfdbe0d4c7bbafa3998b7f7265554b4034281c1004000000000005111d2935414c566875818e9ba8b4c1ced9dfd2c5b9ada196887b6e6155483b3024190d0100000000000000000000000000000000000000000714212e3a4754616d7a86939facb9c6d2dfddd0c3b6aa9d908377675d5145392c1f1306000000000000000714202d3a4753606d7a8698a2aebac6d3d7cabdb1a4978a7e7164574b3e312d3337393c3f3f444647494a4b4b4c4c4b4a494847464540403d3a39352f2d2a251f1c17110c070100000000000000000000000000000000000000000000000000000000000004101c27333d474f5456575757575757575757575757575757596673808c99a6b3bfc5b8ab9f9285796c60575757575757575757575757575764707d8a97a8b2bdc4b7ab9e918478685e5757575757575757575757575754534d453b31251a0e0200111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000040e172029323b454d575f696e7b859197a1a9b3bbc5ced4cac1b8afa59e938e80746e645c524940372d241b120900000000000000000000000000000000000000000007121c262e353b3f4045454545454545454545454545454545454545454545454545454b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b4545454545454545454545454545454545454545454545454545403f3c362e261c12080000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d6773808d99a4afbbc7d4ddd1c4b8ab9f95887c6f62564c4130261c110600000000000000000a13202d394653606c7985919eabb8c4d0d5c9bdb2a8998d807366584e43372b1f1306000000000000050f1a232b33383c3d414242434344444445404546474754606a75818e99a3afbbc6c5bbafa59e9b9ea1a9b3becabeb3a99f92867a6d61574d48484746443f454443434242413d3c38332b23190f05000000000000000000000004111d2935404b55697683909ca9b6c3cfc3b6a99d9083766a564c41362a1e1105000000000000000000000000000000000000000c17232e38424f59616e7b86929fa5afb9c3cdd5ccc4bab2aaa29f928e847d766f6a63605b536976838f9ca9b6b2a5988b7f7265585153555d60666d737c8390959fa7b1bbc5cfd7cbbfb5ab9e94887c6f62564c4135291d110400000000010d1925303b4855626e7b8895a0acb8c7d2dddfd2c6b9ada1978b7e71655b5044392e23180c020000000000000000000000000000000000000000000000000000000000000c18232e3844505b66727f8c98a2aebac7d7e1dfd2c5b9ac9f92867a6e6154473b2e23180c000000000000010d1925303e4b5865717e8b98a8b1bdc8d4e1d5c9bdb2a8988b7e7165564c4135291d11050000000000000000000000000000000000000004101d2935404b5564707d8a99a4afbbc7d4e0d6cabfb4aa998d807366554b4035291d10040000000000000006131f2c3845515c677885929fabb8c5d2d8cbbfb2a5988c7f7265594c3f3222272b2d2f2d3337393a3c3d3e3e3f3f3e3d3c3c3b3a38342e302d2c2924211e1a14100c06000000000000000000000000000000000000000000000000000000000000000000000b16212b353d4448494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a5763707d8a96a8b2bdc6baada297887b6e61554a4a4a4a4a4a4a4a4a4a4a4a54616e7a8796a1adb9c5b9ada196877a6e61544a4a4a4a4a4a4a4a4a4a4a4a4846423b33291f14090000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000050e172029333b454d575f696e7c859297a1a9b3bcc5ced3cac1b7afa59d928d80746e635b51493f362d241b120800000000000000000000000000000000000000020e19242e3840474b4d5252525252525252525252525252525252525252525252525252525865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265585252525252525252525252525252525252525252525252525252524d4c4740382e24190e0300101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929fabb5c0ccd7d5c9beb3a99d9083766a6054443a301e140a00000000000000000006121f2b3844505b6674818e9aa9b3becad6cec4b7ab9e9184786a6054473b2e22150a0000000000000b16212b353d44484a4e4e4f4f50505151524b515354545558616e7b87929faab4bfcac1b7afaaa8abadb3bbc4c6baada2978c8073685e565555545453504a515150504f4e4e4a48443d352b21160b0000000000000000000000010d18242f414e5b6774818e9aa7b4c1cdc5b8ab9f928578685e5246392d20140700000000000000000000000000000000000003101c28343f4a54606b75818e98a2aeb7c1cbd4ccc4bab2a8a198928a8179706b625f5853505c6976838f9ca9b6b2a5988b7f7265584c464b51545c606a6f7a8390959fa9b3becad6d1c6bdb0a69b8e8175685d5245392c20130600000000000814212e3a47535f6a7783909dabb5c0ccd7e2d6cabeb3a99d9083786c60544a4034281f1409000000000000000000000000000000000000000000000000000000000006101c2834404b54606c7884919eaab4bfcad6e2d6cabfb4aa9c8f8276685e5246392d1d1207000000000000000815212e3b4854616e7b8795a0acb8c5d1dedacfc2b5a89b8f8275685d5246392d20160b0000000000000000000000000000000000000006131f2c3945515d6774818e9babb5c0ccd7e0d3c7baaea298897d706356493d2f24180c000000000000000004101c2934404b556b7784919eaab7c4d1d9cdc0b3a69a8d8073675a4d4034271b1f202222272b2d2e2f31313232323231302f2e2d2c28232421201d1814120e0903000000000000000000000000000000000000000000000000000000000000000000000000050f19232b33383b3d3e3e3e3e3e3e3e3e3e3e3e3e3e3e4754616d7a8796a0acb9c5beb3a9978a7e7164574b3e3e3e3e3e3e3e3e3e3e46525e697884919eabb8c4bdb2a8978a7d7064574a3e3e3e3e3e3e3e3e3e3e3e3b3a36312921170d030000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000050e172029333b454d575f6a6f7c859297a2aab3bcc5ced3c9c1b7afa59d928c80736d635b51483f362d241a110800000000000000000000000000000000000007131f2a35404a52575a5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f65717e8b98a4b1becbd7e4d8cbbeb1a5988b7e72655f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5a58524a40362b1f130700101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2c38444f5965717e8b97a2adbdc7d2ddd2c6b9ada1978a7e7164584e4332281e0c02000000000000000000030f1c28333f4a5463707d8997a2adbac6d3d2c5b9aca196887c6f6255493d32271b0f000000000004101c27333d474f54565b5b5c5c5d5d5e5e5e5f5c6060616162626974808d98a2aebac6c9c1bab6b5b8b9bec4cdc5b8ab9f92857a6d64636362626160605c5f5e5e5d5c5c5b5b56544f473d33271c10040000000000000000000000071926333f4c5966727f8c99a5b2bfd2c6baaea298877a6e6154473b2e21140800000000000000000000000000000000000006121f2c3844505c66707d89939eaab4bfc9d3cdc4bab2a8a19691867e746d676159534e46505c6976838f9ca9b6b2a5988b7f7265584c3f40454a50585f686d7a839097a2adb9c2cdd8cfc1b9ac9f92867a6d6054473a2d22170b000000000006121f2b37434e5865727f8c99a4afbbc7d4e0dacfc5b8aca0958a7e71665c51443b3025191007000000000000000000000000000000000000000000000000000000060f1a242c3845515c66717e8b96a0acbcc6d0dbe0d3c6baaea2988a7e7164564c41362a1e0b00000000000000000714202d3a46525e697784919daab7c4cfdadfd2c5b9ac9f92867a6d6154473d32271b0b020000000000000000000000000000000000000714202d3a4753606d7985929facb8c5d2dddfd2c5b8ac9f9286796d6053463a2d2013070000000000000000000c18232f43505d697683909ca9b6c3cfdbcec1b4a89b8e8175685b4e4235281b121316171b1f20212224242525262524232221201f1c18171413110d07050200000000000000000000000000000000000000000000000000000000000000000000000000000007111921272c2f30313131313131313131313131313946525e687784919eaab7c4c0b3a69a8d80736753493f333131313131313136424d566875828f9ba8b5c2bfb3a6998c80736653493f333131313131313131312e2d2a251f170f05000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000050e172129333c454e575f6a6f7c859298a2aab4bcc6ced2c9c0b7aea49c928c7f726d625a50483e362c231a110800000000000000000000000000000000000a17232f3b47525c63666c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c717e8b98a4b1becbd7e4d8cbbeb1a5988b7e726c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645c52473c3023170b00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b15222f3b4854606b7783909da9b3bed0d9d7cbc0b5ab9e9285796d6053463c3220160c00000000000000000000000b17222d3a4653606d7985929fabb8c5d0d5c9bdb2a89a8d807367584e43372b1b1106000000000714202c38444f59606367686869696a6a6b6b6c666d6d6e6e6f6f70707a85929facb8c5d2ccc6c3c1c4c6c9cfccbfb2a5998c7f72717170706f6e6e6d6d666b6b6a6a696968676360594f44382c20130700000000000000000000000a1724313d4a5764707d8a97abb5c0cccabeb3aa96897c706356493d3023160a0000000000000000000000000000000000000713202d3a4653606d7883909da5afbcc6d0cfc5bbb2a8a09691847c716c605c554f474343505c6976838f9ca9b6b2a5988b7f7265584c3f35383f444e565d686d7a85929ea6b0bbc7d3d3c7baaea3988b7e7165544a3f33281c0f0300000000020f1a26313c4754616e7b87939facb9c2cdd8e1d4c8bcb1a79e9184796d60564d42362a22190e0500000000000000000000000000000000000000000000000000040d18212a36414c56606d7984919ea8b2bdced8e2d7ccc0b5ab9f92867a6d6053473b3025190d000000000000000005121e2a36424d576774808d9aa8b2bdc9d5e0d3c7baaea3998b7e7265594f44382c1d140a000000000000000000000000000000000008131f2b37434e5864717e8a98a2aebac6d3e3d7cbbfb5ab9c8f8276675c5145382c1f1306000000000000000000071c2935424f5c6875828f9ba8b5c2cedbcfc2b6a99c8f8376695c50432e23180c06060b0f12131416171818191918171615141313100c070706040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161c2022232424242424242424242424242a36414c566875818e9ba8b5c1c2b6a99c8f8376655b5044372b242424242425303f4c5966727f8c99acb6c0c2b5a99c8f8276655b5044372b242424242424242421211e1a140d0500000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000050f17212a333c454e585f6a6f7c869298a2aab4bcc6cfd2c9c0b6aea49c918b7f726d625a50483e352c23191007000000000000000000000000000000000c1926323f4b57636e737878787878787878787878787878787878787878787878787878787878787e8b98a4b1becbd7e4d8cbbeb1a5988b7e787878787878787878787878787878787878787878787878787878787878736e64584c3f3326190d00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2a36424d57636f7c8995a0acbbc5cfe0d3c7bbafa3998c8073665c5145382c1f1305000000000000000000000006121f2c3844515c6675818e9baab4bfcad6cec4b7ab9e9184786a605447382d22170b000000000916222f3c4854606b707475757676777777787879797a7a7b7b7c7c7d7e828f9ca9b6c2cfd7d2cfced1d2d5daccbfb3a6998c807f7e7d7d7c7c7b7b7a79797878777676757574706b6054483c2f22160900000000000000000000000915222f3c4855626f7b8899a4afbbc7d0beb1a5988b7e7265584b3f32251807000000000000000000000000000000000006131f2b37434e5864717e8b95a0acb7c1ced1c7bdb3a9a09691847b6e6a615a514b433e3743505c6976838f9ca9b6b2a5988b7f7265584c3f322e343c434c565e68717e8b949fabb7c5d0d7cbbfb4aa9b8f8275665b5044382b1f120600000000000a15202d3a46525e6975828f9ba7b1bcc7d3dfd9cec3b9aca0968b7f72695e52463f342b20170d040000000000000000000000000000000000000000000000030d16202a333c46525e68727f8b96a1acbac3cee0e0d4c7bbafa4998e8174675d514539291e14080000000000000000020e1a25303d495663707d8996a1adb9c5d2dfd7cbbfb4ab9d9083776b6054483d2f261b1106000000000000000000000000000000050e1a242e3b4754606a7683909caab4bfcad6e0d3c7bbaea3998b7e7265554b4034281c10040000000000000000010e1b2734414e5a6774818d9aa7b4c0cddad0c3b7aa9d9084776a544b4034281c1004000003050607090a0b0b0c0c0b0a0909080706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1013161617171717171717171717171925303f4c5965727f8c98abb5c0c5b8ab9f9285796c605346392d201717171723303d495663707c899aa4afbbc5b8ab9f9285796c605346392d20171717171717171514120e09030000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000060f18212a333c464e58606a6f7d869298a2aab4bcc6cfd2c8bfb6ada39b918b7f716c615a50473e352b231910070000000000000000000000000000000d1a2733404d5a66738085858585858585858585858585858585858585858585858585858585858586929facb8c5d2dfebdfd2c5b8ac9f92868585858585858585858585858585858585858585858585858585858585858073675a4d4034271a0d00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3a46525e6975828e9ba7b1bccdd7dfd2c5b9ac9f92867b6e61544b4034281c1004000000000000000000000004101c2834404a5464707d8a98a2aebac7d3d2c5b9aca196897c6f6253493f33271b0f030000000a1723303d4a5663707d8181828283838484858586868787888889898a8a8f949fabb7c4d0dddedcdbdedfe1dacdc1b4a89c928c8b8b8a8a8988888787868685848483838281817d7063564a3d3023170a00000000000000000000000714202d3a4753606d7a86939facb9c6cdc0b3a79a8d8074675a4d412f24180d01000000000000000000000000000000000815222e3b4754606a7683909da7b1bcc9d7cbc0b5aba19791847b6e695f5850454039313643505c6976838f9ca9b6b2a5988b7f7265584c3f322328313a434c56626c76828f9caab4becad6d1c5b8ab9f9285796c605346392d201306000000000005111e2a36424d56636f7c89959fabb7c3ced9dfd4c8bdb2a89f92857b6e615a50463c32291f160e05000000000000000000000000000000000000000000040d151f28323c46505a616e7a85929fa8b2bdccd5e0d9d0c6b9ac9f93877b6e62554b4035291d11040000000000000000000913202d394653606c7884919eabb8c3ced9dcd1c6b8ab9f95897d7063584e41382d22170b0200000000000000000000000000020b17202b37434e58626f7c89949fabbcc5d0dbdfd2c5b9ac9f92867a6d6154473a2e23180c000000000000000000000d1a2633404d596673808c99a6b3bfccd9d1c5b8ab9e928578665c5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a0b0b0b0b0b0b0b0b0b0b081623303c4956636f7c8999a3afbbc6baaea298887b6e6155483b2e2215060b14212d3a4754606d7a86939facb9c6baada297887b6e6255483b2f2215070b0b0b0b0b0807050200000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000060f18212a343c464e58606a6f7d869298a3aab4bdc6cfd1c8bfb5ada39f93877e716c61594f473d352b2219100600000000000000000000000000000e1a2734414d5a6774808d92929292929292929292929292929292929292929292929292929292929298a2aebac7d3e0ece0d3c7baaea2989292929292929292929292929292929292929292929292929292929292928d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b54616e7b86929facb9c3cedfd4c8bcb1a79b8e8275695e5242392e23180c000000000000000000000000000c18232e3a4753606d7986929facb8c5d1d5c9bdb2a89a8d8073655b5044372b1f12060000000d192633404c5966737f8c8e8f8f909091919192929993949495959696979c9fa6b0bbc7d3dfebe8e8ebebe9ddd0c4b9aea49c999898979696959594939992929191908f8f8e8c7f7266594c3f3326190c000000000000000000000006131f2c3845515c677884919eabb7c4cfc2b5a99c8f827669554b4035291d110400000000000000000000000000000004111d2935414c56626f7c88959fabb9c3cecec6bbafa39992857b6e695f574e463e342f273643505c6976838f9ca9b6b2a5988b7f7265584c3f32251f28313a44505a64717e8a98a2aebac6d3d3c6baada297887c6f6255493c2f2216090000000000020e1925303b4854606b7683909da7b1bcc8d4e1d9cec3baada2978f82756c62584e443b312820170e0600000000000000000000000000000000000000060d161f27313a444e58616c75828f97a2adbac4cededdd2c7beb0a69b8f8275695f53433a2f24180d0100000000000000000006121f2b3844505b6673808d9aa7b1bcc8d4e1d4c8bcb1a79c8f82766a6053493f33271d140a000000000000000000000000000a141d29323b47535f6a75828e9ba6b0bbced7e2d6cabeb4aa9c8f8275685e5246392d1d1207000000000000000000000c1825323f4b5865727e8b98a5b1becbd8d2c6b9ada29786796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5beb3aa978a7e7164574b3e2d22170b0613202c3945515d677784919daab7c4beb3a9978a7e7164574b3e2e23180c00000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000060f18222a343d464e58606b707d869298a3abb5bdc7cfd1c7bfbbafa49992877e716b61594f473d342b22180f06000000000000000000000000000e1a2734414d5a6774808d9a9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa2aab4bfcad6e2efe2d6cabfb4aaa29f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6673808c99a3afbbc7d3ded1c5b8aca095897c7063574d4230271d12070000000000000000000000000007131f2c3945515d6775828f9babb5bfcbd7cec4b7ab9e9184786c605346392d22170b0000000d192633404c5966737f8c999b9c9c9d9d9e9e9f9fa3a0a1a1a2a2a3a3a4a9abb0b8c2cdd8e4eff5f4f7f8ede1d5cabfb6aea8a6a5a4a4a3a3a2a1a1aba39f9e9e9d9d9c9c998c7f7266594c3f3326190c000000000000000000000004101c2934404b556976828f9ca9b5c2cfc4b7ab9e918478675d5145392c2013060000000000000000000000000000000613202c3945525d6874818e9aa7b1bcc4ccc6bcb0a69f92877d70695e574d453c332923293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225161f29323e4753606d7985929fabb8c5d2d6cabeb3a9978b7e7164584b3e3125180b00000000000009141f2c38434f5964707d8a95a0acb8c1cfd8e0d6cabeb3a99e948b7e716a60564c433a32292017110a02000000000000000000000000000000030910181f283139434c565f6a717e8a939ea9b3beccd6e0d8ccc0b6ac9f94897c6f63574d4231281d130700000000000000000000030f1c28333f4a54626f7c8895a0acb8c4cfdad8cdc3b7aa9f94897c6f655b50443b2f261c1107010000000000000000000007111b262f3b44505a626f7c87939facb9c2cddfdfd3c6baaea2988a7e7164564c41362a1d0b00000000000000000000000b1724313e4a5764717d8a97a4b0bdcad7d6cabeb3a994877b6e6154483b2e211508060606060606060606060606060606060606060606060606060606060606060606060606060606040402000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d677783909daab7c3c0b3a69a8d80736753493f33271b0f04111d2935414c556874818e9ba7b4c1c0b3a79a8d807467544b4034281c1004000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000061018222b343d464f59606b707d869299a3abb5bdc7d0d7ccc0b5aba39992877d706b60594f463d342a21180f060000000000000000000000000e1a2734414d5a6774808d9aa7abababababababababababababababababababababababababababacaeb4bcc6d0dbe7f3e7dbd0c6bcb4aeacabababababababababababababababababababababababababababa79a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929eabb5c0cbd7d6cabeb3a99d9083776b6054453b301e150b000000000000000000000000000004101d2935404b5564717e8b99a3aebbc7d3d2c5b9ada196897c6f6253493f33271b0f0300000d192633404c5966737f8c99a6a9a9aaaaaaababacafb5adaeaeafafb0b0b6b7bbc2cad4dee9f4fffffffdf2e6dcd1c8bfb9b4b3b2b1b0b0afafaeaeb4aeacababaaa9a9a5998c7f7266594c3f3326190c0000000000000000000000000c18232f414e5a6774818d9aa7b4c0cdc5b9ada196867a6d6053473a2d2014070000000000000000000000000000000714212d3a4754606d7a85929fa4adb2bac1bfb4aa9e948c7f726b60574d453b332a2118293643505c6976838f9ca9b6b2a5988b7f7265584c3f32251917202c3945515d6775828f9ba8b5c2cedbd0bfb3a6998c807366594d4033261a0d000000000000020f1b27323d4653606c7884919da6b0bdc6d1dcdbd0c5bbb0a69f92867c6f685e564c443b3228221c140b0a04010000000000000000000004090e151a222a313a434b555d686e7c86929fa5afbbc5d0deddd4c8bbafa49a9083766b6054453c311f160c0100000000000000000000000b17222d3847535f6a7783909da9b3bec9d5dfd3c7bbb0a69d9083786c60564d42382d2218120b0300000000000000030b1218222d38414c56616c76828f99a4afbbc7d4e0d7cbc0b5ab9f9285796d6053473a3025190d00000000000000000000000a1623303d495663707c8996a3afbcd1dcdbcfbcafa295897c6f6256493c2f23161212121212121212121212121212121212121212121212121212121212121212121212121212121211100e0b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556774818e9aa7b4c1c2b6a99c8f8376655b5044372b1f12050d19242f3f4b5865727e8b98aab4bfc3b6a99d908376665c5145382c1f1306000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000071019222b343d474f59606b707d879299a3abb5bdc7d0d2c7bdb5aba39992867d706b60584e463c332a21180f0500000000000000000000000e1a2734414d5a6774808d9aa7b3b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8babfc6ced8e2edf8ede2d8cec6bfbab8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b4a79a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5864717e8a97a1adbdc7d1cecec6baada2978b7e7265594f4433291f0c030000000000000000000000000000000c18242f3a4754606d7a86929facb9c5d2cec9bdb2a89a8d8073655b5044372b1f120600000d192633404c5966737f8c99a6b2b6b6b7b7b8b8b9bbc0babbbbbcbcbdbdc2c4c7cdd4dce6f0fbfffffffff8ede3dad1cac4c1bfbebebdbdbcbbbbbabfbab9b8b7b7b6b2a5998c7f7266594c3f3326190c000000000000000000000000071926323f4c5965727f8c98a5b2bfcbc9bdb2a895887c6f6255493c2f2216090000000000000000000000000000000815222e3b4855616e7b848d929ea1a8afb9baaea3988f82756d62594f453b332921181d293643505c6976838f9ca9b6b2a5988b7f7265584c3f322519101d2935404b556773808d9aa6b3c0cdd9cec1b4a89b8e8175685b4e4235281b0f000000000000000a161f2b3744505b65707d8a949eabb5bfcbd7e1d7cdc1baaea29891847a6e685d564c443d332d261d1b15110d0707050100010507070c10151a20262b343c434c555d676d7a849198a2aeb7c1cdd7e0d6cabfb4aa9f93877c6f62594f43332a1f0d0400000000000000000000000006111c2b37434e5865717e8b97a1adb9c6d0dbd8ccc2b8ab9f958b7e71695e544a3f3329231d150d0a06040104060a0c151c2328333f49535e68717e8a949fabb5c0ccd7e0d3c7bbafa3998d8073675d514539281e130800000000000000000000000815222f3b4855626e7b8895abb5bfcbd7d6cabdb0a3978a7d7064574a3d31241f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1e1d1b17110b0400000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3e4b5865717e8b98aab4bfc5b8ab9f9285796c605346392d2013060816222f3c4955626f7c8898a3aebac5b9ac9f9286796d6053463a2d201307000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000071019222b353d474f59616b707e879299a3abb5bec7d2d0c7bdb5aba39892867d6f6a60584e453c332a21170e05000000000000000000000e1a2734414d5a6774808d9aa7b3c0c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c7cad0d8e0eae3e3e3eae0d8d0cac7c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c0b4a79a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4754606a7683909da9b3bec1c1c1c1c0b6ac9f9285796d6053473d3220170d000000000000000000000000000000000713202c3945525d6876828f9cabb5c0c1c1c1c1b7ab9e9184786c605346392d22170b00000d192633404c5966737f8c99a6b2bfc2c2c3c4c4c5c5c7cbd0c7c8c9c9cacfd0d3d8dee6eef8fffffffffffdf3eae1dad3cecbcac8c7d1cbc7c5c5c4c4c3c3c2c2c1bfb2a5998c7f7266594c3f3326190c0000000000000000000000000a1724313d4a5764707d8a97a3b0bdcfcfbdb1a4978a7e7164574b3e3124180b0000000000000000000000000000000714212d3a46535f696e79808991969da5adb2a89f92867b6e615b51473d332921170f1d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c18242f3f4c5965727f8c98a5b2bfcbd8cfc2b5a99c8f8276695c4f4336291c1000000000000000030f1b27333f4953616b75828f99a3aebbc3cfd8dfd6cabfb4aaa19690837a6d685e564f443f382f2b26201d181413110d080d111314181d1f262b31373e464e565d676d79828f96a0aab4bec9d3dfd7cec5baaea2988e81746a6054463d3221180e00000000000000000000000000000f1b26323c4653606d7985919eaab4bfcad6ded4c7bcb1a79e92857b6e665b50443f342f271f1b1413110d1013131b1e272e343f44505b656e7a85929ea6b0bdc7d2ddd8cec5b9ac9f92867b6e61554b4035291d100400000000000000000000000714212e3a4754616d7a8799a3aebbc7d3d8cbbeb1a5988b7e7265584b3f322c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2b2a27221d160e05000000000000000000000000000000000000000000000000000000000000000000000000000000000715222f3c4855626f7b8898a2aebac6baaea298887b6e6155483b2e2215060713202d3a4653606d7986929facb9c5baaea398887c6f6255493c2f221608000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000071019232b353d474f59616c717e879299a4acb6c0ccd8cfc6bdb4aaa29892867c6f6a5f574e453b332920170e050000000000000000000e1a2734414d5a6774808d9aa7b3c0cdd2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3d6dbd6d6d6d6d6d6d6d6d6dbd6d3d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2cdc0b4a79a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6c3cfd6d2c5b8ac9f9285796c5f5246392c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c56626f7c89959fabb4b4b4b4b4b4b4afa49a8d8074675d5145392c2013050000000000000000000000000000000004111d2935414c5665727e8b99a4afb4b4b4b4b4b4ada196897c6f6353493f33271b0f03000d192633404c5966737f8c99a6b2b5b5b6b6b7b7b8b8babfbabbbbbcbcbdc2c4c7cdd4dce6f0fbfffffffff6ebe1d8cfc8c2bebdbbbbbabfbab9b8b8b7b7b6b6b5b5b4b2a5998c7f7266594c3f3326190c0000000000000000000000000915222f3c4855626f7b8895a9b3becaccbfb2a6998c7f7366594c403326190700000000000000000000000000000005121e2a36424d575f676d747d848e939ea1a9a1968c7f73695f53493f352b21170f101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f322519071825313e4b5864717e8b97a4b1becad7cfc3b6a99c908376695d5043362a1d1000000000000000000b17222d38414f59626e7b87929fa8b2bdc6d1dcdbd0c6bcb2a89f9590837a6e686059504a423d37322c292421201e191d191e202124292c31373c424750585f686d79828f949fa8b2bcc5d0dbdbd0c5bcb1a79f92867b6e61584e43342b210f0600000000000000000000000000000a151f2c3845515c67737f8c98a2aebac4cfdad8cdc2b9ada1978f82786c605b51454039312c2720201d181c1f20272b30394044515b606c77828f97a1adb8c2d0d9dcd0c6bcafa59b8e8175695e5343392f24180c0000000000000000000000000613202d394653606c7986929facb9c5d2d9ccbfb2a6998c7f7366594c40393939393939393939393939393939393939393939393939393939393939393939393939393939393939393736332e2720170e040000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929facb8c5beb3aa978a7e7164574b3e2d22170b06131f2c3845515c667683909da9b6c3bfb4aa988b7e7265584b3f2f24190d010000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000071119232c353e47505a616c717e87939aa4afbbbfc7d1cfc6bcb4aaa29892857c6f6a5f574d453b322920160d0400000000000000000e1a2734414d5a6774808d9aa7b3c0c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c0b4a79a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6c3c9c9c9c5b8ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e6874818e9ba7a8a8a8a8a8a8a8a8a89f93877b6e61554b4035291d100400000000000000000000000000000000010d19242f3b4754616e7a86939fa8a8a8a8a8a8a8a8a89a8d8074655b5044372b1f1205000d192633404c5966737f8c99a6a7a8a8a9a9aaababacaeb4adaeafafb0b0b6b7bbc2cad4dee9f4fffffffbf0e4dacfc6bdb7b2b0aeaeadb4aeacababaaaaa9a9a8a8a7a7a5998c7f7266594c3f3326190c0000000000000000000000000714212d3a4754606d7a8797a2adbac6cec1b4a79b8e8174685b4e412f24180c000000000000000000000000000000020e1a26313b454d555d606b707a818a91979e9e9184796d60574d42372d23190f05101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c1926323f4c5965727f8c98a5b2bfcbd8d0c3b6aa9d9083776a5d5044372a1d11000000000000000006111b262f3e47535f6a73808d96a0abb5bfcbd7ddd8cec4bab1a79f9590837a6f6b605b544e47433c39352f2e2d2a252a252a2d2e2f35383c42474e535a616a6f7a828f949fa6b0bac3ced7ddd6cabfb4aa9f958c7f72685e52463d3222190f00000000000000000000000000000004101c2834404b55616d7a86929fa8b2bdc9d5e0d5c9beb3a99f948d80736d635b514b433d38322d2c2924282c2d32373d424a515b626d73808c949fa9b3becad4e2d6cbbfb4aa9e93887c6f62574d4231271d120700000000000000000000000005121f2b3744505b657885919eabb8c4d1dacdc0b4a79a8d8174675a4e454545454545454545454545454545454545454545454545454545454545454545454545454545454545454544433f39322920160b00000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667683909ca9b6c3c0b3a69a8d80736753493f33271b0f04101c2834404b546774808d9aa7b3c0c1b4a79b8e817468554c4135291d11040000000000000000000000000000111e2b3744515e6a7784919daab7c4d0d6d6cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000007111a232c353e48505a616c717e88939fa3adb5bfc8d1cfc6bcb3aaa29792857c6e695f574d443b322820160d04000000000000000e1a2734414d5a6774808d9aa7b3bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdb4a79a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6bdbdbdbdbdb8ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929b9b9b9b9b9b9b9b9b9b9b9b8f8276695f5343392f24180d0100000000000000000000000000000000000814202d3946525e687683909b9b9b9b9b9b9b9b9b9b9b9184786c605346392d201306000d192633404c5966737f8c999a9a9b9c9c9d9d9e9e9fa3aaa1a1a2a2a3a4a9abb0b8c2cdd8e4eff4f4f8f9eadfd3c8bdb4aca6a4a2a1a1a0a39f9f9e9e9d9d9c9c9b9b9a9a998c7f7266594c3f3326190c0000000000000000000000000613202c3945515d677885929fabb8c5cfc3b6a99c90837669554b4035291d100400000000000000000000000000000009141f2a333b434b515960686d747d858e93988b7f72675c51453b31251b110700101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190f1b27333f49536673808d99a6b3c0ccd9cfc3b6a99c908376695d5043362a1d100000000000000000000a141d2b37424e57606d79849199a3aebbc2cbd5dfd6ccc2b9b1a79f9590847d726c666058534e4745413d3a393630373036393a3d4045474d53575f626c717c848f949fa6b0b8c2ccd5ded4cbc2baaea2989083786d60564d41342b201007000000000000000000000000000000000c18232e3946525e6873808c96a1adb9c2ced7dacfc5bbb0a69c928c7f726d605c554f48433d3a39352f34383a3c43474f545c606d727f8b929ca6b0bbc5cfdcd9d0c7baaea3988e81756a5f53453b311f150b01000000000000000000000000030f1b27333f49536a7783909daab6c3d0dbcec2b5a89b8f8275685c525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252514f4a443b32271d1106000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546773808d9aa6b3c0c2b6a99c8f8376655b5044372b1f12050c18232e3e4b5764717e8a97a9b3bec4b7aa9d918477675d5145392c2013060000000000000000000000000000111e2b3744515e6a7784919daab7c4c9c9c9c9beb1a5988b7e7265584b3f3225180c0000000000000000000000000000000008111a232c363e48505a626c727f8b919ba3adb6bfc8c9cec5bcb3a9a19791847b6e695e564c443a32281f160c010000000000000e1a2734414d5a6774808d9aa7b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0a79a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b0b0b0b0b0b0b0ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c8e8e8e8e8e8e8e8e8e8e8e8e8e8a7d7063574d4231281d120700000000000000000000000000000000000005111e2a36414c5665727f8c8e8e8e8e8e8e8e8e8e8e8e8e897c6f6356493c30231609000d192633404c5966737f8c8d8d8e8e8f8f909191929298939494959696979c9fa6b0bbc7d3dfeae8e7ecece6dacec2b7aca29a9795949493999292919190908f8f8e8e8d8d8c8c7f7266594c3f3326190c00000000000000000000000004111d2935414c556a7783909daab6c3d0c4b8ab9e918578675d5145382c1f1306000000000000000000000000000000030e18212a313940454f565d606c707a818a92857a6d60554b4033291f13090003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f322519121f2b3744505b6575818e9ba8b4c1cedbcec2b5a89b8f8275685c4f4235291c0f000000000000000000020b1a26313c45515d676f7c87929fa6b0b9c3cdd6ded4cbc2b9b1a7a09691877f786f6a625f5854514b4a4746414443444146474a4b5153575f616a6e767e8691969fa6b0b8c2cad4ded5ccc2b9afa59f92867b6e665c50443b3022190f000000000000000000000000000000000007121d2935414c56606d7984919ea7b1bcc6d0dbd7cdc2b8aea49c918c7f746d676059544e4947454043404546494e545960666d747f88939fa4aeb8c2cdd6ddd2c7beb2a99f92867b6e61584e4333291f0d0300000000000000000000000000000b17222d434f5c6976828f9ca9b5c2cfdcd0c3b6a99d9083766a5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5e5b554d44392e22170b0000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3e4a5764717d8a97a9b3bec5b8ab9f9285796c605346392d2013060715222f3b4855626e7b8897a2adbac6b9ac9f93867a6d6054473a2d2114070000000000000000000000000000111e2b3744515e6a7784919daab7bdbdbdbdbdbdb1a5988b7e7265584b3f3225180c000000000000000000000000000000000008111a242c363e48505a626d727f8b919ca3adb6bdbdbdbdbdbbb3a9a19691847b6e685e564c443a31281d13070000000000000e1a2734414d5a6774808d9aa3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39a8d8174675a4e4134271b0e00101d2a3643505d697683909ca3a3a3a3a3a3a3a3a39f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a677380818181818181818181818181818181786c6053463c3120160c01000000000000000000000000000000000000020e1925303b4854616e7b81818181818181818181818181817e7164574a3e3124170b000916232f3c4956626f7c7f8080818282838384848585868787888889898a8f949fabb7c4d0dddedbdadfe0e3d7cbbeb2a69a908a8888878786868585848483838282818180807f7c6f6256493c2f231609000000000000000000000000010d19242f424f5b6875828e9ba8b5c1cec6b9ac9f93867a6d6053473a2d20140700000000000000000000000000000000060f181f282f353d434c525a61686d757e858074675d5143392f21170d010003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f32251919202d394653606c7885929eabb8c5d1dacdc0b4a79a8d8174675a4e4134271b0e000000000000000000000915202935404b555f6a727f8c949fa7b1bbc4ced7ddd4cbc3b9b1a9a199928c837c756f6a64605d555654524c5150514c525456555d6064696e747b828b9298a0a8b0b8c2cad4dcd6cdc3bab1a79e938b7e71695f544a3f32291f10070000000000000000000000000000000000000d1925303a45515d67717e8a959faab4bfcad6ded4cac0b6ada39b918c8179706b6260585653514b504b5153565860626b6f78818b939aa4afb6bfcad4dfd8ccc0b6aca1968c8073695e53463c3221170d000000000000000000000000000000061b2835414e5b6874818e9ba7b4c1cedad1c4b7ab9e9184786c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a675f554a3f33271b0e0200000000000000000000000000000000000000000000000000000000000000000000000000000615212e3b4854616e7b8797a1adb9c6baaea298887b6e6255483b2f2215060613202d394653606c7985929fabb8c5bbafa49a897c706356493d302316090000000000000000000000000000111e2b3744515e6a7784919daab0b0b0b0b0b0b0b0a5988b7e7265584b3f3225180c00000000000000000000000000000000000008121a242d363f48515b626d727f8c919ca4aeb0b0b0b0b0b0b0b2a9a19691847a6e685e564c433a2f24180d0100000000000e1a2734414d5a6774808d9696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696968d8174675a4e4134271b0e00101d2a3643505d6976839096969696969696969696969285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1926333f4b58646e737575757575757575757575757575746c665b5044382b1f120400000000000000000000000000000000000000000814212d3a46535e696e7575757575757575757575757575716c6155493c3023170a000815222e3b4754606a6f727374747575767677787879797a7a7b7c7c7d7e828f9ca9b6c2cfd6d2cfcdd2d3d7dccabdb0a4978a7e7b7b7a7a7979787877777676757574747373726f6a6054473b2e22150800000000000000000000000000081a2734404d5a6773808d9aa6b3c0cdc8bbafa49a887b6e6255483b2f2215080000000000000000000000000000000000060d161d2429313a414550565e616c717a7b6e61554c4131271d0f06000003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f32251a232a36424d57626f7c8997a1adb9c6d2d9ccbfb3a6998c807366594d4033261a0d00000000000000000000030d18242f39434e58606c77828f95a0a9b2bcc5ced6ddd4cbc3bbb2aba39f959087817c76716d676563615e565d5d5d565e616365676d70757b81868f949fa2aab2bac2cad4dcd6cdc4bbb2a89f958e81756c62574d42382e20170d0000000000000000000000000000000000000008131e2935404b55606c77839098a2aebac1ccd5dcd1c8bfb5ada39b938e837d756f6a6663605d555d555c6063666a6f757c838e939fa4acb6c0c8d1dcd7cdc5bbafa49a9184796d60574d42342a200f050000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0cdd9d2c5b9ac9f92867978787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787771675b4f43362a1d100400000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535e697885929eabb8bdbeb3aa978a7e7164574b3e2d22170b05121f2b3744505b6576828f9ca9b5bdc0b6ac998c7f7266594c3f3025190e0200000000000000000000000000111e2b3744515e6a7784919da3a3a3a3a3a3a3a3a3a3988b7e7265584b3f3225180c0000000000000000000000000000000000000008121b242d363f49515b636d737f8c929ca4a3a3a3a3a3a3a3a3a3a8a09690837a6d685d554b4035291d110400000000000e1a2734414d5a6774808a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8174675a4e4134271b0e00101d2a3643505d6976828a8a8a8a8a8a8a8a8a8a8a8a8a86796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232f3b47525c6467686868686868686868686868686867605b544a3f33281c0f03000000000000000000000000000000000000000005121e2a36424d575e61686868686868686868686868686864615a5045392d2114080006131f2b37434e586062666667676869696a6a6b6b666d6d6e6e6f6f707a85929facb8c5d2cbc6c2c1c5c7cbd1cdc1b4a79a8e81746e6e6d6d666c6b6b6a6a69696868676766666260584e43372b1f1306000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbccc0b6ac968a7d7063574a3d3024170a000000000000000000000000000000000000040c12181f282f353e444c525a61686e6e695e53433a2f1f150b00000003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225232c353d46535f6974818d9aa9b3bec9d5d6cbbfb4aa988b7e7265584b3f3225180c000000000000000000000007121d28313c44505b656d7a839196a1aab3bcc4cdd5ddd5cdc4bdb5aea7a099938e88827e7a7572706d686b6a6a6a6b686d707275797d82878d92999fa6aeb4bcc3ccd4dcd5ccc4bbb3a9a0969083796d605a50453b30261c0e0500000000000000000000000000000000000000020c18242f3944505b656e7b86929fa5afbac3ccd6dad1c7bfb5ada59e959089817c7773706d676a6a6a676d6f72777c818790959da5afb6bec7d2dad7cec5bbb1a79f93887d70675d51453b3122180e000000000000000000000000000000000c1926333f4c5966727f8c99a5b2bfccd8d3c7baaea3998985858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858583776a5e5144372b1e1104000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576975828f9ca8b0b0b0b0a69a8d80736753493f33271b0f030f1b27333f49536673808c99a6b0b0b0b0a89b8f827568564d42362a1e110500000000000000000000000000111e2b3744515e6a7784919696969696969696969696968b7e7265584b3f3225180c000000000000000000000000000000000000000009121b242d373f49515b636d73808c92969696969696969696969696969590837a6d675d5145392c20130600000000000815222f3b4855626e7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6f6255483c2f22150900091623303c4956636f7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2a36404a52585a5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b53504a42382d22170b000000000000000000000000000000000000000000020e1a25313b454d53545b5b5b5b5b5b5b5b5b5b5b5b5b5b575550483e33281c110500030f1b27323d464e5456595a5a5b5b5c5c5d5e5e5f5c60606161626974808d98a2aebac6c9c0bab6b4b9babfc6cfc5b9ac9f92877b6e6160605c5f5e5e5d5d5c5c5b5b5a5a595956544e463d32271b0f03000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2beb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000001070d161e2429323a414650565e61615e574d4231281e0d0300000003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f32252a353e47515b616e7b86929facb9c5cfdad3c7baaea398897d7063564a3d3023170a0000000000000000000000010c161f27333f49535d686e7b849198a2aab3bbc3ccd7dcd6cfc6bfbbb1aba49f9b948f8a86827f7d7a787877767778787a7d7f82858a8f93999fa3abb0babfc5ced5dcd6cbc3bab2a9a19791847a6d675d51483e332a1e150a00000000000000000000000000000000000000000007121d27333f49535f69717e8b939ea8b1bac4cdd7d9d1c7bfb7afa7a09d938e89837f7c7a7877767778797c7f83888e939aa0a7afbbc0c7d0d9d8cfc6bcb3a9a0958d80736b60554b4033291f1006000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7d7cbbfb4aba29792929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929184786b5e5145382b1e12050000000000000000000000000000000000000000000000000000000000000000000000000000020e1a2531404c5966737f8c99a3a3a3a3a3a39c8f8376655b5044372b1f12050b17222d3d4a5764707d8a97a8a3a3a3a3a39e918478695e52463a2d20140700000000000000000000000000111e2b3744515e6a77848a8a8a8a8a8a8a8a8a8a8a8a8a8a7e7265584b3f3225180c00000000000000000000000000000000000000000009121b252d373f49515b636e7380898a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a837a6d6053473a2d20140700000000000814212e3a47535f6a6e70707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706f6a5f53473a2e211508000915222f3b4854606b6f70707070707070707070707070706b6155483c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e19242e3840474b4d4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e46443f382f261c11060000000000000000000000000000000000000000000009141f29333b4246484e4e4e4e4e4e4e4e4e4e4e4e4e4e4a49453e362c22170c0000000a16202b343d4347494c4d4d4e4f4f505051514a5053545458616e7b87929faab4bfcac0b7afa9a7acaeb4bcc6c7bbafa3998e81746a5f53504a52515150504f4f4e4e4d4d4c4947433d342b20150a00000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9ccbfb3a6998c807366594d4033261a0d000000000000000000000000000000000000000000040c1319202830363e444d525454534d453b311f160c0000000003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3230363f475059626d75818e99a3aebbc7d6dfd2c5b8ac9f92867a6d6053473a2d201407000000000000000000000000040d17222d38414c565e696f7c869298a1a9b2bac2cbd1d9d8d1cbc3bdb5afaca69f9c98928f8c89878584848384848587898c8f92989b9fa4abaeb4bdc2cad0d7d8d0cbc1b9b1a8a09791857b6e685e554b40362d21180c03000000000000000000000000000000000000000000010b17222d38414d57626c75818e95a0a8b2bbc5cdd6d9d1c9c1b9b1aca59e9b95908c8986858483848586898c90959b9fa4acb1b9c0ccd2d9d7cfc6bdb4aaa1979083796d60594f43392f21170d00000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdc9d6dcd1c6bdb3a9a29f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9e9184786b5e5145382b1e1205000000000000000000000000000000000000000000000000000000000000000000000000000000091724303d4a5763707d8a96969696969696969285796c605346392d2013060614212e3b4754616e7a87969696969696969696877a6e6154473b2e211408000000000000000000000000000a1623303d495663707d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e6154483b2e2115080000000000000000000000000000000000000000000009131b252d374049525c636e737d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e6155483b2e221508000000000006121f2b37434e585f626363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363625f584e43372b1f12060007131f2c38434f596063636363636363636363636363636361594f44382c20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121c262e363b3f404242424242424242424242424242413938332d261d140a0000000000000000000000000000000000000000000000030d17212931363a3b42424242424242424242424242423e3c39332c241a1005000000040f19222b32373b3c3f4041414242434344453f44464754606a75818e99a3afbcc6c3b9afa59d9a9fa3aab4bfcbc0b5ab9f92877b6e62584e4345444443434242414140403f3c3b37322b22190f0400000000000000000000000000000916222f3c4955626f7c8895a2afbbc8cdc1b4a79a8e8174675b4e4134281b0e0100000000000000000000000000000000000000000001080e161e252a323b4146474846423b33291f0d040000000003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f343b4246515a616b727f8b939eabb5bfcbd7dccfc2b5a99c8f8276675d5145392c1f13060000000000000000000000000006111b262f3a444d575f6a6f7d869197a0a8b0bbc0c7cfd7dcd7d0c7c0bbb9b0abaaa39f9c989698929190909091929896989b9fa2aaacafb5babfc6cfd6dbd6cec6bfbab0a7a09691857c6f695f564c43392f241b0f06000000000000000000000000000000000000000000000006111b262f3c45505a606d7a839196a1a9b3bbc4ccd7ddd2cbc3bcb8afaaa7a09d99999392919091929299999d9fa7acafb6bec3cbd8ddd5cdc5bdb4aba29892857b6e665c51473d31281d0f0500000000000000000000000000000000000916222f3c4955626f7c8895a2afbbd0dbe2d8cfc5bcb3adabababababababababababababababababababababababababababababababababababababababababababababab9e9184786b5e5145382b1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a878a8a8a8a8a8a8a8a8a887b6e6255483b2f2215080714202d3946525e6878848a8a8a8a8a8a8a8a8a8a7d7064574a3d3124170a000000000000000000000000000916222f3b4854606b7070707070707070707070707070706e695e53463a2d211407000000000000000000000000000000000000000000000009131c252e37404a525c636b7070707070707070707070707070707070706e695f53463a2d2114070000000000020f1a26313c464e5355575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575755534e463c31261b0f0300030f1b27323d464f54565757575757575757575757575756554f473d33271c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141c242a2f33343535353535353535353535353535342d2b28221c140b02000000000000000000000000000000000000000000000000050f171f252a2d2e353535353535353535353535353531302d28221a1208000000000007101920272b2e2f3333343435363637372e3438424f59626f7c87939fabb5c0c7beb1a79d938e9298a3aebac4c7bbafa3998e81756a5f53473d32373736363535343433332f2e2b27201910070000000000000000000000000000000815222f3b4855626e7b8895a1aebbc8cec2b5a89b8f8275685c4f4235291c0f020000000000000000000000000000000000000000000000050c131920293036393b3b3a36312921170d000000000003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3f444d525b626c707d87929fa5afbdc6d1dcd4c8bcb1a7988b7f7265554b4035291d100400000000000000000000000000000a141d28323b454e58606b6f7c8591969fa6afb5bdc4cbd1d8d9d2ccc7c2bbb7b4aeaca8a5aaa29f9e9d9d9d9e9fa2aaa5a8acaeb4b9bbc0c7cbd1d8d7d0cac3bcb4aea69e9590847b6f6a5f574d443a31271d1209000000000000000000000000000000000000000000000000000a141d2a333f45525d686e7b849197a2a9b2bac2ccd2d9d5cec8c1bab6b1acaaaba49f9e9d9d9d9e9fa3abaaabb1b9bbc0c7d0d5dad5ccc4bbb3aba39992867c6f695f544b40352c1f160c0000000000000000000000000000000000000815212e3b4854616e7b8794a9b3becad6e2e1d7cec5bebab8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b7ab9e9184786b5e5145382b1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e68707d7d7d7d7d7d7d7d7d7d7d7a6d6154473a2e21140705111e2a36414d56626f7c7d7d7d7d7d7d7d7d7d7d7b6e6155483b2e221508000000000000000000000000000713202c38444f5960636363636363636363636363636363615e574d42362a1e12050000000000000000000000000000000000000000000000010a131c252e37404a525960636363636363636363636363636363636363615f574d42362a1e12050000000000000a15202a343c4347484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4847433c342a20150a0000000a16212b343d4348494a4a4a4a4a4a4a4a4a4a4a4a4a4a48443d352c21160b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a12191f232627282828282828282828282828282828201f1c17110a020000000000000000000000000000000000000000000000000000050d141a1e212128282828282828282828282828282423211c17100800000000000000070f161b1f2223262727282829292a2b28333f4a54616b76828f9aa4afbdc7c0b6aca0958e8186929fa8b2bdc9c0b5ab9f93877c6f62584e43372b2a292928282727262623221f1b150f07000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7cfc3b6a99c908376695d5043362a1d100300000000000000000000000000000000000000000000000002080e171f252a2d2e2e2d2a251f170f05000000000003101d293643505c6976838f9ca9b6b2a5988b7f7265584c444a50575e616d727e869299a3aeb7c1cfd8dbd1c4b8ab9f95887b6e6255483b2f24180c000000000000000000000000000000020b162029333c464f59606a6f7b848f949fa3abb2babfc6ccd2d7d7d4ccc7c6bfbab9b5b2b4aeababaaa9aaababaeb4b2b5b8babfc6c7ccd2d7d7d2ccc5bfbab1aaa39f948f837a6e695f584e453b32281f150b0000000000000000000000000000000000000000000000000000020b18212935414c565e696f7c859297a0a8b1bbc0c7d0d6d9d4ccc6c3bcb8b7b5afacabaaa9aaabacafb5b6b8bcc3c8ccd2d9d7cfc9c1bab2a9a29992877d706a60574d42392e231a0d040000000000000000000000000000000000000713202d3a4653606d798697a2adbac6d3dfe9e0d7d0cac6c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c4b7ab9e9184786b5e5145382b1e120500000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c56606b70707070707070707070706d685e5246392d201307020e1925303b4854606a6f707070707070707070706e695f53463a2d2114070000000000000000000000000004101b27323d474f5456575757575757575757575757575754534d453b31251a0e02000000000000000000000000000000000000000000000000010a131c252e3840474f5456575757575757575757575757575757575755534d453b31261a0e02000000000000030e18222a31373a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3a37312a22180e04000000040f19222b32383b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332c231a100500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080e1317191a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b13120f0b06000000000000000000000000000000000000000000000000000000000003090e1214151b1b1b1b1b1b1b1b1b1b1b1b1b1b171714110c05000000000000000000040a0f131516191a1a1b1c1c1d161f2b3844505b66707d89949facb6c0c8bbafa49a918379808c96a0acb9c1c7bbafa49a8f82756a6054473d32271b1c1c1b1b1a1a191615130f0a0400000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d0c3b6a99d9083766a5d5043372a1d10040000000000000000000000000000000000000000000000000000050d14191e202121211e1a140d0500000000000003101d293643505c6976838f9ca9b6b2a5988b7f7265584950545c60696e757f879298a2abb5bfc9d3ded3c7bbb0a69d908376695f53473a2e1d120700000000000000000000000000000000040d17212a343d474f585f696e7a828c9299a0a8aeb4bbc0c7cbd1d5d8d3d1cbc7c5c2bfbebab8b7b7b6b7b7b8babebfc2c5c6cad0d4d7d5d1cbc7c0bbb4aea7a098928b82796e685f574e463c332920160d03000000000000000000000000000000000000000000000000000000060f1924303a444d575f6a6f7d8591969fa7afb5bdc3cad0d5d7d2cec8c5c3c0bbb9b8b7b6b7b8b9bbc0c3c4c8cdd4d8d6d1cbc4beb9afa8a09792877e716b60584e453c30271d11080000000000000000000000000000000000000006131f2c3845515c667885929fabb8c5d2d6d6d6d6dbd6d3d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d1c4b7ab9e9184786b5e5145382b1e1205000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a444f59606363636363636363636363615e564c41362a1d11050008141f2c38434e58606263636363636363636363615f574d42362a1e120500000000000000000000000000000b16212b353d4448494a4a4a4a4a4a4a4a4a4a4a4a4a4a4846423b33291f14090000000000000000000000000000000000000000000000000000010a131c262e353d44484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4846423b33291f14090000000000000000060f1820262b2e2f30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302f2e2b2620181006000000000007101921272c2f3030303030303030303030303030302f2c27211a110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002070b0d0d0f0f0f0f0f0f0f0f0f0f0f0f0f0f0e060603000000000000000000000000000000000000000000000000000000000000000000020507080f0f0f0f0f0f0f0f0f0f0f0f0f0f0b0a080500000000000000000000000000030608090c0d0e0e0f08131e2834404b54606c7883909da6b0bec7beb2a99f93887c6f7984919ea5afbcc5c0b6ac9e93897c6f62594f43382c21160b0e0e0d0d0c09080603000000000000000000000000000001040607090915222f3b4855626e7b8895a1aebbc8d0c3b7aa9d9084776a5d5144372a1e110400000000000000000000000000000000000000000000000000000002080e1114141514120e09030000000000000003101d293643505c6976838f9ca9b6b2a5988b7f726558535b60666d727b828b9399a2aab4bdc6d1dbd5ccc3b7ab9f94897d7063574d42372b1e0b010000000000000000000000000000000000050f18222b353d464e575f686d787f8791969fa3aaafb6bbc0c7c9cfd2d5d7d3d2cfd0cac6c5c4c3c3c3c4c5c6cad0ced2d3d6d5d2cec9c6bfbab5afaaa29f9590867f756d675e564d453c342a21170e04000000000000000000000000000000000000000000000000000000000008131e28323b454e58606b6f7c8490959fa4abb2babec5c9cfd3d7d4d1d2ccc7c6c5c4c3c4c5c5c7cbd1d1d4d7d4d0cac6bfbab3ada59e9691857d716c61594f463d332a1e150b000000000000000000000000000000000000000004101c2834404b546a7784919daab7c4c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c4b7ab9e9184786b5e5145382b1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d474f55565757575757575757575754524c443a3025190d0100020f1b27323d464e54565757575757575757575755534d453b31261a0e020000000000000000000000000000040f19232b32383b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a36312921170d03000000000000000000000000000000000000000000000000000000010a141c232b33383c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a36312921180d03000000000000000000060e151a1f2122242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242422211f1b150e0600000000000000070f161b1f2223242424242424242424242424242323201c16100800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101010d19242f3845515c66717e8a95a0acb8c2c5b9ada1978d80746b707d8a939eaab4bfc7beafa59c8f82766b6054483d32271c1005010100000000000000000000000000000000000001070d111314151516232f3c4956626f7c8995a2afbcc8d0c4b7aa9d9184776a5e5144372b1e11040000000000000000000000000000000000000000000000000000000000020507080807050200000000000000000104071d293643505c6976838f9ca9b6b2a5988b7f72655c60656c71787e858f949fa4abb4bcc6cfd8d7cec3baafa59c8f82766b6054453c31261a0e00000000000000000000000000000000000000061019232b343c454d565e666c737c848d92989fa4acafb5b9bec4c5c9cfd1d2d4d7d6d3d2d1d0d0d0d1d2d3d6d7d3d2d0cec9c5c4bdb9b4aeaba49f98928c837c726d605d554c443b332a22180f06000000000000000000000000000000000000000000000000000000000000020c162029333c464f59606a6e7a838d9399a0a8adb3b9bec5c7cbd1d2d4d7d4d2d1d0d0d0d1d2d3d7d5d2d2ccc7c6bfbab4aea9a19e938e847b706b615a50473d342b21180c030000000000000000000000000000000000000000000c18232e43505d697683909ca9b6bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdb7ab9e9184786b5e5145382b1e120500000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202c353d44484a4a4a4a4a4a4a4a4a4a4a4746413a32291e13080000000a16212b343d4348494a4a4a4a4a4a4a4a4a4a4846423b33291f14090000000000000000000000000000000007111921272c2f3030303030303030303030303030302e2d2a251f170f050000000000000000000000000000000000000000000000000000000000020a111921272c2f3030303030303030303030303030303030302e2d2a261f180f060000000000000000000000030a0f12141517171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171515120f0a04000000000000000000040a0f13151617171717171717171717171717171614100b05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004060708090b0c0c0d0d0e0e0e0c0b09060100000000000000000000000000000000000000000000000000000004111d2935414c55606d7984919ea7b1bcc5bcb0a69e91847a6d606b75828f98a2aebac3c1b7aa9e94897c6f63594f44382c21160b00000000000000000000000000000000000000040c13181d202122222223313d4a5764707d8a97a3b0bdcad0c3b6a99d9083766a5d5043372a1d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080d111318293643505c6976838f9ca9b6b2a5988b7f7265676d71787e848b92979ea6afb5bdc6ced8d9d0c5bcb2a89e93897c6f63594f44332a2015090000000000000000000000000000000000000000071119222a333b444c545b606a6f7980868e939a9fa3abadb3b7b9bdc2c4c6c7ccd2cccdcececfcececdccd1cbc7c5c4c1bdb9b7b2acaba39f99938e867f796f6a625b514c433b322a211810060000000000000000000000000000000000000000000000000000000000000000040e17212a343d464f575f686d79808791969fa2a9adb3b9babfc4c6c7ccd2cdcdcecfcececdcccec9c5c4c0bbb9b4aeaaa39f97918a817a6e69605950483e352c22190f0600000000000000000000000000000000000000000000071c2935424f5c6875828f9ba8b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0ab9e9184786b5e5145382b1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000000050e1a232c33383c3d3d3d3d3d3d3d3d3d3d3d3a3936302920170c02000000040f19222b32383b3c3d3d3d3d3d3d3d3d3d3d3b3a36312921180d030000000000000000000000000000000000070f161b202223242424242424242424242424242421211e1a140d050000000000000000000000000000000000000000000000000000000000000000080f161c202223242424242424242424242424242424242422211e1a140d060000000000000000000000000000020608080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0908060300000000000000000000000000030709090a0a0a0a0a0a0a0a0a0a0a0a0a0a0907040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707070c10131415161718191a1a1b1b1b191815120d0600000000000000000000000000000000000000000000000000030e18212c3945515d67727f8b96a1acb9c3beb4aa9e938a7e71685d616e7b86929fa7b1bec7bbb0a69c8f82766b6054483e33281c0b020000000000000000000000000000000000040d161d24292c2d2f2f2f2f36424d576673808c99a6b3bfcccfc2b5a99c8f8276695c4f4336291c10030000000000000000000000000000000000000000000000000000000000000000000000000000000001070c1013191d2024293643505c6976838f9ca9b6b2a5988b7f726e73797e838a91969fa2a9b0bbc0c7d0d8d8d0c7bdb3a9a0968e81756b6054473d3321180e030000000000000000000000000000000000000000000710182129323a424a505860676d737b81878f92999ea1a9abadb2b5b7b9bbc0bfbfc0c1c2c2c1c1c0bfbfc0bbb9b7b5b2acaaa8a19e99928e87817a736d675f585145413a312920180f0600000000000000000000000000000000000000000000000000000000000000000000050f18222b343d454e565e676d737c848c92979ea1a9acaeb4b7b9bbc0bfc0c1c1c2c2c1c0bfbebdb9b7b5afacaaa29f98928d857d756d685f574f473e362c231a100700000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39e9184786b5e5145382b1e120500000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a21272c2f30303030303030303030302e2d2a251e170e05000000000007101921272c2e2f303030303030303030302e2d2a261f180f0600000000000000000000000000000000000000040b1013161617171717171717171717171717171514120e090300000000000000000000000000000000000000000000000000000000000000000000050b1013161717171717171717171717171717171717171514120e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105080d11131417181c1f20222324252626272727282524221e1811090100000000000000000000000000000000000000000000000915202a36414d56606d7a85929ea8b2bdc7baaea2988f82756c61565e69727f8c95a0acb6c0c2b7ab9f94897d7063594f44382c1d140a00000000000000000000000000000000010c161f282f35393a3c3c3c3c4046535f6976838f9ca9b6c2cfcec1b4a89b8e8175685b4e4235281b0f020000000000000000000000000000000000000000000000000000000000000000000000000000030a0f12181c1f24292c2f353843505c6976838f9ca9b6b2a5988b7f767b80858b90959ea0a8adb3bcc1ccd2d9d6cec6bdb5aba2979184796d60594f43352b210f060000000000000000000000000000000000000000000000060f1720292f383f444e555d60696e757c82878c91979a9ea1a8a8aaacafb5b2b3b3b4b5b5b5b4b3b3b2b5afacaaa8a8a09e9a96918c86817c746e68605c554e463f352f281f170e06000000000000000000000000000000000000000000000000000000000000000000000000061019222b333c444c555d606b6f7980858c92979c9fa3abaaacafb5b2b3b4b5b5b5b4b3b3b1b2acababa49f9c98928d86817a706c615e564d453d352c241a11080000000000000000000000000000000000000000000000000d1a2633404d596673808c96969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969184786b5e5145382b1e120500000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f161c2023232424242424242424242421201d19130c0500000000000000070f161b1f22232424242424242424242422211e1a140d06000000000000000000000000000000000000000000000407090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000407090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003061313131313131313131313131313130f0f0c0904000000000000000000000000000000000000000000000000000000000307090a13131313131313131313131313130c0c0a0602000000000000000000000000000104060707070707070707070707070707070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1114191d20212423292c2d2e30313233333434343432312e29231b130900000000000000000000000000000000000000000000020e1a26313946525e6873808c97a1adbac4bdb1a79f92867b6e615a5057606d7883909aa4afbbc5bbb0a69d9083766b6155483e2f261b110600000000000000000000000000000007131d28313a414547484848494b515a616e7b87939facb9c6d2cbbfb4aa998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000000000000000000000000000000060b0f161b1d23292c2f35393a4045474a5c6976838f9ca9b6b5a99c8f8283878c92979da0a7acb2babec5ced7dbd6cdc4bcb4aba49992857b6e675d51463d32231a0f00000000000000000000000000000000000000000000000000060e171d262d333d434b51575e616a6f757b80858a8e9196989b9e9fa4aba5a6a7a7a8a9a8a7a7a6a5aba39f9d9b9896918d8a847f7a756f6a615e56514b433c3429241e160d050000000000000000000000000000000000000000000000000000000000000000000000000000071019212a323a434b515960676d737a7f858b8f92999b9d9fa4aba6a6a7a8a9a8a7a7a6a5a8a19e9b9993908b86807b746d68615a524c443c332b231a1208000000000000000000000000000000000000000000000000000c1825323f4b5865727e8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a84786b5e5145382b1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10141617171717171717171717171413110d0802000000000000000000040a0f131516171717171717171717171514120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b10122020202020202020202020202020201c1b1915100902000000000000000000000000000000000000000000000000040b101316162020202020202020202020202020191816120d070000000000000000000001080d111314141414141414141414141414141413100d070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e14191e20252a2d2e312f34383a3b3c3e3f3f40404141413f3e3a342d251b110600000000000000000000000000000000000000000006121e2b37424d57616e7b86929fa9b3bec0b5ab9f958b7f72695e5244505c666f7c88939fa9b3bec2b7ab9f958a7d70635a5041382d22170b0000000000000000000000000000010d18242f3a434b515455555556555c606c75818e9aa4afbbc8d3c7baaea398897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000060c11171b1f272c2f34383a4145474b5153545b6976838f9ca9b6b7ab9f948f90939a9ea1a9acb1b9bdc3cad0d7d8d0cac3bbb3aaa29993877d70695f554c41342b2111080000000000000000000000000000000000000000000000000000050b141c2228313a41454d53586062696e73797d8184888c8f9193999799999a9b9b9c9b9b9a9999979992918e8b8884807d78726e68625f58524c454039312a2219130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000070f182029313940454f555c60676d72797e82868a8e91939998999a9a9b9c9b9b9a99989696918f8b86837f7a736e68605d565046413a322a2119110800000000000000000000000000000000000000000000000000000814212e3b4754616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a0a0a0a0a0a0a0a0a0a0a0707050100000000000000000000000000030709090a0a0a0a0a0a0a0a0a0a08070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a13131313131313131313131313131313131313131313131313131313131313131313131313131313131313121211100f0d0b0906060300000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c0300000000000000000000000000000000000000000000070f161b2022232d2d2d2d2d2d2d2d2d2d2d2d2d2d2625221e18110a0100000000000000040c13191d20212121212121212121212121212120201d18120c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141a1e252a2d3036393a3d4040454748494a4b4c4d4d4e4e4e4c4a463f372d23180d0100000000000000000000000000000000000000000814212e3a47535f6974818e98a2aebbc5bbafa3999083786c60574d424a54606b74818e97a2adb9c2bcb1a79d9083776c6153493f33271b0f030000000000000000000000000004111d2935414b555d606262626364676d737e8b939eacb6c0cccfc5b8ac9f92867a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000030a11171b22272b3238394045474c5254555d6063666c76838f9ca9b6bbb0a69f9c9d9fa4acadb3b8bcc3c8ced6dad5cec6bfbab1a9a19892877f726b61574d433a2f22190f00000000000000000000000000000000000000000000000000000000020a11171f282f353b42464e54575e61666d7074787b7f828486888a8c8c8d8e8f8f8e8e8d8c8c8a888684827f7b7774706d66615e56534e46413b342f271f18100801000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e171f272f353d434b51555d60676d71757a7e818486898b8c8d8e8e8f8f8e8d8c8b898784827e7a76726d68615e56524c443e35302820180f070000000000000000000000000000000000000000000000000000000714202d3a46525e696e70707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706b6054483c2f221609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b101416172020202020202020202020202020202020202020202020202020202020202020202020202020202020201f1f1f1e1d1b1a181513120f0b0607050200000000000000000000000000000000000000000000000000000000000000020c141c23282b3939393939393939393939393939393634312c261e150c02000000000000000000000000000000000000000007111921272c2f30393939393939393939393939393933322e2a231c130a000000000000040d161e24292c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c29241d160d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f262a3036393b4146474a4d4b51535556575859595a5a5a5b585651493f34291e12030000000000000000000000000000000000000006131f2b38434e58626e7b87929faab4bfbdb2a89f92877c6f665b50453b424f59616d7a85929ea7b1bdc2b8ab9f958a7d70655b5044372b1f1205000000000000000000000000000613202c3945515d676d6f6f6f6f7174797f88939fa5afbec7d1c6bdb0a69b8e8275675d5145392c2013060000000000000000000000000000000000000000000000000000000000000001070c151c23282d33373d44484b5153565d6064676d7074797c84919eaab7c2b8b0aba9a9acafb6b9bec5c8ced4d9d4cec9c2bcb4aea7a09791867e726d62594f453c31281e1007000000000000000000000000000000000000000000000000000000000000060d161d242931363d43474d52545c6064676a6f7275777a7b7d7f8080818282828180807f7d7b797775726e696763605c54524c47433c363029231d150d06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d151d2429313940454c51555d6065686d7175777a7c7e7f80818282828180807e7c7a7875726e6865615d56524d45413a3229251e160e060000000000000000000000000000000000000000000000000000000005111e2a36424d575e61636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636360594f44382c201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0e1011131313131313131313131313130e0d0b08030000000000000000000000000000000000000000000000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2b2b2928272522201f1c171414110e080400000000000000000000000000000000000000000000000000000000000a141e262e343846464646464646464646464646464642413d3730271e140900000000000000000000000000000000000000040f19232b32383b3d46464646464646464646464646463f3e3a352e251c110700000000020c161f282f35393a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39352f281f160c010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b141c222831363b4146474c5254575a555c606163646566666767676765625b51463a2e1f1409000000000000000000000000000000000000000815222e3b4754606a75828f99a3afbcc1b9aca0968d80736a5f544a3f333d46525e68717e8b959fabb5c0bcb1a79d9083786c605346392d201306000000000000000000000000000714212d3a4754606d797b7b7b7c7d80848c939aa4afb7c1d0c7bfb4ab9f948a7d7063554b4135291d1104000000000000000000000000000000000000000000000000000000000000040c12181e262e34383f44464f54555c6064686d7175797d8185899196a0acb8c5c2bbb7b5b6b9bbc0c7c9cfd4d8d4cec8c4bdb9b0aaa29f9590857c706c625b51473e332a1f160c0000000000000000000000000000000000000000000000000000000000000000040c13181f252a32373b42464a515357585f626568676d6f717273747475767574747372716e6d666865625f575753504a46413b37312a251e18120b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181f272f343a41454b5153565d606468676d6f71737374757675747473726f6d686865615e5654524c46413b3530282019130c040000000000000000000000000000000000000000000000000000000000020e1a25303b454d52545757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575756544f473d33271c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b11171b1d1e202020202020202020202020201b1a18140f080100000000000000000000000000000000000000000000000008111a22282d303139393939393939393939393939393939393939393939393939393939393939393939393939393939393939383837363534322f2d2b282221201e1914100c07010000000000000000000000000000000000000000000000000006111c2630383f445353535353535353535353535353534f4d49423930261b10040000000000000000000000000000000000000b16212b353d44484953535353535353535353535353534c4b463f372e23180d020000000a141e28313a414547474747474747474747474747474745403931281d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151d262d333b42464c5254565e61646669676d6e6f7172727373747474726d62564a3b31261a0e020000000000000000000000000000000000000916232f3c4956626f7c89939fa2aaafb9afa59e9184796d60584e42382d36414c56606c78839099a3afbab2aca69f958a7e7164574a3e3124170b000000000000000000000000000a1724313d4a5764707d888888898a8d91969fa4acb6c0c7c3bdb5aea3999083766b6155433a2f24180d010000000000000000000000000000000000000000000000000000000000070d161d242930383f44495053596063676d71757a7e82858a8e91979ea0a8b2bdc8ccc7c3c2c3c6c8ccd2d5d5d2cdc8c3bcb8b2aca69f98928c837b6f6a615a51493f352c21180d0400000000000000000000000000000000000000000000000000000000000000000001070d141a20272b3036394044464a4e535559555c60626466666768686968686766666462605c545855534d4a46443f3836302b262019140c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d151d23292f35394045474c525457555d6062656667676869686867666563605d565854524c4746413a363029241e160e08020000000000000000000000000000000000000000000000000000000000000009141f29333b4246474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4948443d352b21160b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e161d22272a2b2d2d2d2d2d2d2d2d2d2d2d2d2d282724201a130b020000000000000000000000000000000000000000000005101a232c33393c3d464646464646464646464646464646464646464646464646464646464646464646464646464646464646464545444342403e3c3938332d2e2d2a251f1d18120f0a0400000000000000000000000000000000000000000000000b17232e38424a505f60606060606060606060606060605c5a544b42372c211509000000000000000000000000000000000003101b27323d474f54566060606060606060606060606060595751493f352a1e1206000006111c26303a434c52545454545454545454545454545453514b43392f24180d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151e262f383f444d53565e6165686d707376787a7b7c7d7e7f80808181817f7265574d42362a1e12050000000000000000000000000000000000000915222f3c4855626f7c838b92989ea5ada99e93897d70675d51463c2f26303a44505b656f7c87929fa9aea8a09e948f877f7266594c3f3326190c000000000000000000000000000a1724313d4a5764707d8a959596979a9ea1a8afb6bec0bbb9b2aba49f92867c6f62594f4431281d130700000000000000000000000000000000000000000000000000000000000810191f282f353d424a50535b60646b6f74797d82868b8f92989a9ea1a9acb2bac3ced8d3d0cfd0d2d4d6d3cfc9c6c2bcb8b1aca8a19e948f867f786e69605850473f372d231a0f0600000000000000000000000000000000000000000000000000000000000000000000000003090e161b1f252a2e34383a3d4347484c4b5153555759595a5b5c5c5b5b5a5959575553514a4c4847423d3a38342e2a251e1b150e08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181e24292f35393a4145474b4b51535658595a5b5b5c5c5b5a59585654524c4b4746413b3935302a251f19130c04000000000000000000000000000000000000000000000000000000000000000000020d17202930363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332b23190f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e1720282e333637393939393939393939393939393433302b251d140b010000000000000000000000000000000000000000000b17222c353e44494a53535353535353535353535353535353535353535353535353535353535353535353535353535353535352525251504e4d4b4846443f3d3b3936302c29241d1b15100b05000000000000000000000000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69655d54493d3125190c00000000000000000000000000000000000713202c38444f5960636c6c6c6c6c6c6c6c6c6c6c6c6c6c66635b51463a2e22160a00000b17232e38424c565d6060606060606060606060606060605d554b4035291d100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e273038424a50575f61686e72767a7d8082848688898a8b8c8c8d8d8d8e8478695f53463a2d2114070000000000000000000000000000000000000815212e3a47535f6a6f787f868f939ea1a1978e81746b60554b40342a1d27333f49535f6a74808d97a1a29f96918a827c726d63574b3e3225180c000000000000000000000000000a1724313d4a5764707d8a97a2a2a4a7abadb2bbc0bdb5afaca8a099938b7e716a6054473e331f160c010000000000000000000000000000000000000000000000000000000009111a222b313940454e545c60656c70767c81858a8f92989b9fa2aaabadb3b8bdc3ccd5e0dfdddbd6d3d0cbc7c5beb9b8b1aba7a09d96918a827b726d665e574e463e352d251b1108000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f141a1c23282c2d31373a3c3f404547484a4c4d4d4e4f4f4f4e4d4d4c4a484644403f3b3a37312d2b28231c19140f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c13191d24292c2f35393a3e404547494b4c4d4e4f4f4f4e4d4d4b494745413f3b3936302d29241e19140d08020000000000000000000000000000000000000000000000000000000000000000000000050e171f252a2d2e30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302f2c2721191107000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b16202932393f43444646464646464646464646464641403c362f261d1308000000000000000000000000000000000000000004101c28333e475055576060606060606060606060606060606060606060606060606060606060606060606060606060606060605f5f5e5e5c5b5a585553504a4a4746413b38352f2b26201c160d080200000000000000000000000000000000000006121f2b3844505c667679797979797979797979797979797570655a4d4134281b0f02000000000000000000000000000000000916222f3b4854606b707979797979797979797979797979726d63574b3e3225180c0003101c28343f4a545d686d6d6d6d6d6d6d6d6d6d6d6d6d6d6d675d5145392c2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d273039424a545b60696e747a7f83878a8d8f91939996979899999a9a9a96887b6e6155483b2e22150900000000000000000000000000000000000006121f2b37434e585f666c727b828a91969e92857a6d61594f43392f2217222d38414e58606d7a84919e98928c847d766f6a635b51463b2f22160a000000000000000000000000000a1724313d4a5764707d8a97a3afb0b3b8b9bdc4c0b5aba49f9b9691877f726c62584e43352c210d040000000000000000000000000000000000000000000000000000000109121b232c343d434b515860666d71787d83898e92989b9fa3aaacaeb4b8b9bec4c8ced5dedad5d2d0cac6c5bfbab8b3adaba79f9d95918b847e766e69605c544d453c342c231b130900000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12181c1f20262b2e2f2f34383a3c3e3f4041414243424141403f3e3b3a38342e2f2e2b26201f1c17110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d12181d1f24292c2d2f35393a3c3e4040414243424141403f3c3a39352f2e2d2a25201d19130e08020000000000000000000000000000000000000000000000000000000000000000000000000000050d141a1e2021242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242322201c160f070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111d28323b444b4f51535353535353535353535353534e4c4841382f251a0f03000000000000000000000000000000000000000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6b6a6968676562605b545754524c4745403937312c272119130c0400000000000000000000000000000000000713202d3a4653606d7886868686868686868686868686868275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707d86868686868686868686868686867f7266594c3f3326190c0006121f2b3844505c66767a7a7a7a7a7a7a7a7a7a7a7a7a7a796d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c18232e39424b545c666c737b81868c90939a999c9e9fa4aba4a5a5a6a6a7a8978b7e7164584b3e30251a0e020000000000000000000000000000000000030f1b26313c464e545b60696e757d848d928b7e71685e52473d31271d111b262f3c45515d67717e8a938e867f79706c625f58514940352a1e1206000000000000000000000000000a1724313d4a5764707d8a97a3b0bdc0c4c5c9c7bbafa499938f8a847d726d625a50463c32231a100000000000000000000000000000000000000000000000000000000009131b242d353e464f555d606a6f787e838a90959b9fa2aaacaeb4b8babfc4c6c9cfd4d9ded6cfc9c5c4bebab8b4aeaca9a19e9a95908a837e78716c615f57504a423b332b221a110900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c1012131b1f212223292c2d2f313333343535363535343333312f2d2c282322211e1a1312100b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c1013191d202124292c2d2f3233343435363535343332302d2c292421201e1914110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e11141417171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717161613100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222e39444d565b5e606060606060606060606060605b58534a41362b201408000000000000000000000000000000000000000a1623303c4955616c7079797979797979797979797979797979797979797979797979797979797979797979797979797979797979787877767573716f6c666664615e5653514b47433c383329241e160e08020000000000000000000000000000000713202d3a4653606d79869393939393939393939393938f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c899393939393939393939393938c7f7266594c3f3326190c000713202d3a4653606d7886878787878787878787878787878275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e2834404b545c666d787f868e92989c9fa4aca9abacafb5b0b1b2b3b3b4a79b8e817468574d42362a1e12050000000000000000000000000000000000000a15202a343c424a50575e616c7079808682766c61564c41352b1f150b141d2935414c55616c768286817b726d67615a534e4640372e23180d02000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad1d2d2c6b9ac9f9386827e78706b625b51483f342b20110800000000000000000000000000000000000000000000000000000007111b252d363f474f5960676d737c838b90959d9fa7abaeb3b9babfc5c6cad0d2d5dae1e0d6ccc4bdb9b7b3aeabaaa39f9b97928d89837d78716d66615a534d443f383029211910080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004060a0f121515181c1f20222426262728292928282726262422201f1c181514120e0906030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080d111314181d1f202325262728282929282726252321201d191414110e080501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a090704000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1b27333f4b565f676a6c6c6c6c6c6c6c6c6c6c6c6c6c67645c53483c3024180b000000000000000000000000000000000000000a1724313d4a5764707d868686868686868686868686868686868686868686868686868686868686868686868686868686868686858585848381807e7b797673706e6864605d55534e48443d3530282019140d0500000000000000000000000000000713202d3a4653606d7986939f9f9f9f9f9f9f9f9f9f9c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c89969f9f9f9f9f9f9f9f9f9f998c7f7266594c3f3326190c000713202d3a4653606d79869393939393939393939393938f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303845515c666d78818c92989fa3aaacafb6b5b7b9bbc0bdbebfbfc0b7aa9e918477695e52463a2d201407000000000000000000000000000000000000030e18222a2f383f444d525961676d737c7b6e615a50443a3023190d030b19242f3a43505a616e7b7c746e68605c555047433c342e251c120700000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad0d1d4c7bbafa4999184807a726d605c544a3f34281e150b0000000000000000000000000000000000000000000000000000050e19232d373f485059616b6f79808790959da0a7abb1b8babec5c7cbd1d3d4d1d0d1d2d5dacfc4bab2adabaaa29f9b98928e8a85807c76706c65605c545046423b342e261e170f070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608070c1013141517191a1a1b1c1c1c1b1a1a1917151312100c07080602000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070c1013141618191a1b1c1c1c1b1a1a18161413110d0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2a36434f5b67717779797979797979797979797979746f64584c4033271a0d010000000000000000000000000000000000000a1724313d4a5764707d8a9393939393939393939393939393939393939393939393939393939393939393939393939393939a93929291918f8e8d8b888583807d7a76716d67625f58544f45413a322a251e170e06000000000000000000000000000713202d3a4653606d798693a0acacacacacacacaca89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3acacacacacacacaca5998c7f7266594c3f3326190c000713202d3a4653606d798693a0a0a0a0a0a0a0a0a0a09c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e38424f59606d78818e939fa3aaaeb4b9bbc0c2c4c6c7ccd2cbccccc5b9aca096877b6e6154483b2e211509000000000000000000000000000000000000000610181d262d333b42464f555d606a6f6e695f53483e32281e11080008131e28313e46535f696e6f6a615e56514b433e37312a221c130a0000000000000000000000000000000a1724313d4a5764707d8a97a3b0bcbfc4c5c8ccc0b5aba096918d867f756d665c50443e30271d1207000000000000000000000000000000000000000000000000020c16202b353f49515a626c707d848d9399a0a7acb1b8bcc2c6cad0d3d4d1cdc8c4c3c4c6c9cfc9bdb2a8a19e9a98928e8a86817d79746f6a64605b53504a423e363128231c150c050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090b0c0d0e0e0f100f0e0e0d0c0b0807060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090b0d0d0e0f100f0e0e0d0c0907060401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004090d0f0f13131313131313131313131313131313131313070705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7783868686868686868686868686868174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa49f9f9e9e9d9c9b9a9898928f8d8a87837e79746f6a636059524c443e36302920180f070000000000000000000000000713202d3a4653606d798693a0acb9b9b9b9b9b9b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afb9b9b9b9b9b9b2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acadadadadadadada89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616c75818f939ea5aeb4babfc6c8ccd2d1d2d1d0cdcbc9d2c9bdb2a8978a7e7164574b3e3025190e0200000000000000000000000000000000000000060b141c222830363e434b51585f62615f574d42362d20160c0000010c161f2a36424d575f61626058524d454039302b262018100a010000000000000000000000000000000a1724313d4a5764707d8a97a3aeafb2b7b8bdc3c7bdb2a8a09e98928c81786d605a5043392e23180c00000000000000000000000000000000000000000000000008131e28323d47515b626c717e8691969fa4abb1b8bcc3c7cdd3d6d3cec8c5c3bcb8b7b8b9bec4c5b9ada196918d8985827e7a75706d66626058535049443f38302a261f17110a03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1015191b1c202020202020202020202020202020202020201413110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a77849193939393939393939393938e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacb6afacacababaaa9a8a6aaa29f9c999794908b85807c76706b605d565046413b322a2119100700000000000000000000000713202d3a4653606d798693a0acb9c6c6c6c6c2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc6c6c6c6bfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9bababababab5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c66707d8a939ea5afbabfc6cbd1d4d8d2cdc8c4c3c0bebcbbc0bbb4a79a8e817467564d42362a1e11050000000000000000000000000000000000000000020a11171f252a313a40454e545555534d453b31241b0e05000000040d1a26313b454d535556544e46413b342e271e1b150e0600000000000000000000000000000000000a1724313d4a5764707d8a97a1a1a3a6aaacb2bbbfc4bab2acaaa29f938d80746c61554b4034281c100400000000000000000000000000000000000000000000010d1925303a444f59626d727e879298a1a8afb5bdc3c8ced4d6d0cac7c3bcb8b7b1acaaabadb3bbc4b7ab9e9184807d7975716d6763605c54544e46443f38342e261e1a140c0600000000000000000000000000000000000000000000000205070809090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909080806020000000000000000000000000000000407090a0a0a0a0a0a0a0a0a0a0909070300000000000000000000020507080a0a0a0a0a0a0a0a0a0a0706040000000000000000000000000000000000010507070a0a0a0a0a0a0a0a0a0a0a0a0907040000000000000000000000000000000000000000000000000306060a0907040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c141b212528292d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c21201d19130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919d9f9f9f9f9f9f9f9f9f9a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9c0bbb9b8b8b8b7b6b4b3b3aeaba9a6a69f9c97928d88837d746d68615a524c443c332b22190f06000000000000000000000713202d3a4653606d798693a0acb9c6d2d2cfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d2d2ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6c6c6c6c2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7883919da5afb7c1cbd0d7dcd3ccc6c3bcb8b6b4b1afaeb6afacaa9e918477695e52463a2d20140700000000000000000000000000000000000000000000060b141a1f282f353c4347494846423b33291f1209000000000009141f2a333b4246484947433d363028231d150c0a030000000000000000000000000000000000000a1724313d4a5764707d8a94949596999da0a8aeb5bdc4bdb9b4aea59d928a7e71675c5145382c1f14090000000000000000000000000000000000000000000005111d2a36414c56606b727f8b9299a2aab2bbc0c7d0d4d7d0cac6bfbab8b1acaaa7a09d9ea1a9b3beb2a5988b7f74706d6664605d5553514a47433d37332d28231c150c09030000000000000000000000000000000000000000000003090e121415151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151514120e09030000000000000000000000050b101316161717171717171717171615130f0a0400000000000003090e121415171717171717171717171413100c070100000000000000000000000002080d1113141717171717171717171717171614100b050000000000000000000000000000000000000000060b0f1213171614100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c161e262c313536393939393939393939393939393939393939392e2d29251e160e0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daaacacacacacacaca79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d2ccc8c6c5c5c4c4c2c1c0bebab8b6b3b0aba9a29f9a959089817a716c615e564d453d342b21180e050000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3d3cfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e5864717e8b95a0acb8c1c9d6dcdad1c9c1bab6b1acaaa7a5a3a1a0a49f9f9f96877b6e6154473b2e211408000000000000000000000000000000000000000000000002090d161d242932373b3c3b3a36312921180d000000000000030e18212a31363a3b3c3b37322a251f18120b0300000000000000000000000000000000000000000a1724313d4a5764707d87878788898c91969fa3abb5bec7c5bfbaaea49e9184796d6053463b3025190e020000000000000000000000000000000000000000040f19222d3946525e686f7d87929fa3abb4bcc4ccd2d9d5cec5bebab4aeaca7a09d9995909197a1adb9b2a5988b7f7265605c5454514c4644403938322b27221b17110a030000000000000000000000000000000000000000000000050d141a1e21212222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222211e1a150e06000000000000000000070f161c20222324242424242424242423221f1b160f0700000000060d141a1e212224242424242424242424201f1d18120b0300000000000000000000050c13191d202124242424242424242424242323201c1610080000000000000000000000000000000000020a11171c1f202423201c160d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e1e2830373d4142464646464646464646464646464646464646463a3935302820160c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7b9b9b9b9b9b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad2d2d2d2d2d2dbd6d3d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3d2d2d1d1d0cfced0cac6c5c2c0bcb7b3adaba79f9d938e857e756e685f574e463d332a20170b0200000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3a47535f6a7784919ea7b1bccad3dbdcd1c8bfb7afaaa7a09d9a989695949a939292928a7e7164574b3e3124180b00000000000000000000000000000000000000000000000000040c131820262b2e2f2e2d2a261f180f0600000000000000060f181f262a2d2e2f2e2b272019140c07000000000000000000000000000000000000000000000714202d3a4753606d797b7a7b7b7c7f848b9299a3acb6c0cccac0b9aca1968b7e7265564d42362a1e110500000000000000000000000000000000000000000a15202c38444f59616d7a849199a3afb5bdc6ced7d6cec9c0bcb4aeaaa29f9a95918c888385919eabb8b2a5988b7f726558514a4745413a38342e2b271f1b17110c06000000000000000000000000000000000000000000000000050f171f252a2d2e2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2e2b2620180f060000000000000007111921272c2f303131313131313131312f2e2c27211910070000060f181f262a2d2e313131313131313131312d2c29241d150d030000000000000000050e171e252a2d2e3131313131313131313131302f2c27211a1108000000000000000000000000000000030b141c22282b2d302f2c282119130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c1620303a42494e4f535353535353535353535353535353535353534746413a32281e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4c6c6c6c1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6dfdfe9e0d7d0cac6c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c7cbd1c8cacdcfd2d3d6d3d2cfcdc7c5bebab8b1aba59d97918a827a6e6960584e453c32291d140a00000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7b8896a0acb9c3cedcded3cabfb6aea59e9b95908d8b8988878686868585858073675a4d4034271a0d000000000000000000000000000000000000000000000000000001070d151b1f222222211e1a140d06000000000000000000060e141a1e212223221f1b150e0802000000000000000000000000000000000000000000000006131f2c3845515c676d6e6e6e6e7073787f87929aa4afbbc7d1c9bdb2a89c908376695e52463a2d20140700000000000000000000000000000000000000030f1b27323c4855606b75828f96a1abb5c0c7cfd8d4ccc4bdb9afaaa29f98928e89847f7b77828f9ca9b6b2a5988b7f7265584c403a39352f2c28231c1b160f0b0600000000000000000000000000000000000000000000000000030d17212931363a3b3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3b3a37312a21180e030000000000050f19232b33383b3d3d3d3d3d3d3d3d3d3d3c3b38322b22190f04030d18212931363a3b3d3d3d3d3d3d3d3d3d3d3a38352f271f150b01000000000000020c1720293036393a3d3d3d3d3d3d3d3d3d3d3d3d3c38332c231a100500000000000000000000000000030c151d262d3338393d3c383329241e160e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e2832424c545a5c6060606060606060606060606060606060605f54524c443a3025190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0d2cdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3ede2d7cec6bfbab8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b9babfbbbcbdc0c3c5c6cad0d3d6d8d3d0cac6c2bcb8afa9a19e938f847b6f6a60574e443b2f261c1106000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a8b2bdcbd5dfd7ccc1b8aea49c938e8883817e7c7b7a7a7979797878736e64584c3f3326190d00000000000000000000000000000000000000000000000000000000040a0f1315161514120e0903000000000000000000000003090e1214151615130f0a040000000000000000000000000000000000000000000000000004101c2934404b555c606161616263666d727d88939fabb5c0cbcec4b9ac9f93877b6e6154473b2e2114080000000000000000000000000000000000000006131f2b37434e5863707d89949ea8b2bdc7d1d9d4cbc2bab2aca59d98928d86817c77726e76838f9ca9b6b2a5988b7f7265584c3f2e2c29241f1c18120f0a0300000000000000000000000000000000000000000000000000000009141f29333b424648484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484847423c332a20150900000000000b16212b353d4448494a4a4a4a4a4a4a4a4a4948433d342b21160a09141f29333b4246484a4a4a4a4a4a4a4a4a4a4745403931271d120700000000000008131e29323a4146474a4a4a4a4a4a4a4a4a4a4a4a48443d352c21160b000000000000000000000000040d151e262f383f44464a48443e35302820170f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1924303a44545e65696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c615e564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e7dbd0c6bcb4aeacacacacacacacacacacacacacacacacacacacacacacacacacaeb4aeafb1b3b6b8babfc5c6cad0d4d9d6d3cdc7c1bbb3ada69e9691857c6f6a5f564d42382d22170b030000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f49536875818e9ba8b5c1cedbdfd3c7bbb0a69c928c817c777472706e6d6d676c6c6c6c67645c52473b2f23170b00000000000000000000000000000000000000000000000000000000000003060809080705020000000000000000000000000000000205070809080603000000000000000000000000000000000000000000000000000000000c18232f39434b515354545455545c606b74808d99a3afbbc7d3c8bbafa49a8a7d7064574a3d3124170a000000000000000000000000000000000000000815222e3b4754606a76828f9ca6b0bac4cfd9d4cac2b9b1a8a09e938e85807a746f6a666976838f9ca9b6b2a5988b7f7265584c3f32251d1913100c070000000000000000000000000000000000000000000000000000000000020e1a25313b454d53545555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555534d453c31261a0e0200000004101c27333d474f545657575757575757575756544e463d32271b0f0e1a26313b454d53555757575757575757575753514b43392f24180c0000000000010d1925303a444c5254575757575757575757575756554f473d33271c100000000000000000000000050d161f273038424a505357554f45413a322921170f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c566570757979797979797979797979797979797979797975685e5246392d2013080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e2d6cabfb4aaa29f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa3aaa1a2a4a6a9acaeb4b8babec5c8cdd6dbd8d4cdc4beb9b0a8a19792857c6e685e544a3f33282015090000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b657784919daab7c4d0dddcd0c3b7aa9e948c80756f6a6765636261605c5f5f5f5f5a58524a40362b1f1307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d273139404547474748484a5059616e7b86929facb9c5d2ccc0b6ac998c807366594d4033261a0d000000000000000000000000000000000000030f1c28333f4a54626f7c88949fabb8c1ccd6d5ccc2b8b0a79f969189817a736d686260586976838f9ca9b6b2a5988b7f7265584c3f3225190d08040000000000000000000000000000000000000000000000000000000000000005121e2a36424d575e6162626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262625f574d42372b1e12060000000713202c38444f5960636464646464646464646260584e43382c1f13121e2a36424d575f6164646464646464646464605d554b4035291d10040000000005111d2a36414c565e6164646464646464646464646361594f44382c1c1106000000000000000000050e171f283139424a545b60636159524c443b332921170d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d687582868686868686868686868686868686868686877a6d6154473a3025190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3dfd3c6baaea2989292929292929292929292929292929292929292929292929298949595979a9c9fa2aaabadb3b8bcc3cad0d7dfd6cfc9c1bab2a9a19791847a6e665b50443c31261a0e0400000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7986929facb9c5d2dfd6cabeb3a99c8f82756e6260585856555453514b5252524d4c4740382e24190e020000000000000000000000000000000000000000000000000000000000030607090a0b0c0d0e0e0d0d0c0b09070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f272f34383a3b3b3b3b3f46525e6875828f9ca8b5c2cfd2c1b5a89b8e8275685b4f4235281c0f02000000000000000000000000000000000006121f2b3844505b6675818e9ba6b0bbcad3d9d0c3bab0a69f9590847d746d68615e56545c6976838f9ca9b6b2a5988b7f7265584c3f3225190c00000000000004080a0b07060400000000000000000000000000000000000000000714212d3a46535e696e6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6e695f53473a2e2114080000000916222f3b4854606b707070707070707070706f6a6054483b2e221514212d3a46535f696e707070707070707070706d675d5145382c1f1306000000000713202d3946525e686d7070707070707070707070706b615548382d22170b0000000000000000050e172029313a434b545c666c706b605d564d453b33291f150b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a869293939393939393939393939393939393998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3dfd2c5b8ac9f9286858585858585858585858585858585858585858585858586868788898a8d9092989a9fa2a9abb1babec5ced3dcdad5ccc4bbb3a9a1968f82786c60574d42372b20160a00000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8799a3aebbc7d3dfd3c6baada297897d70635b544e4b494847474540464545403f3b362e261c120800000000000000000000000000000000000000000000000000000306060c101213151718191a1b1b1a191918161413110d070705020000000000000000000000060606060606060606060606060000000000000000000000000000030d151d23292c2d2e2e2e2e36414d5666727f8c99a5b2bfcccfc2b6a99c8f8376695c504336291d100300000000000000000000000000000000000613202d394653606c7985929fabb8c2cdddd2c7beb2a89f948f827a706b615e56524c505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c00000000050b101416171413100c070100000000000000000000000000000000000815212e3b4854616e7b7c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b6e6255483b2f2215080000000a1623303d495663707d7d7d7d7d7d7d7d7d7d7c6f6256493c2f231615222e3b4855616e7b7d7d7d7d7d7d7d7d7d7d796d6053473a2d201407000000000714212e3a4754616d7a7d7d7d7d7d7d7d7d7d7d7d7d7063544a3f33281c0f03000000000000020d172029323a434c555d666d787d756d685e574d453b31271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5664717e8b99a39f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9c8f8276685e5246392d20130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a797979797979797979797979797979797979797979797979797a7b7c7e808385898d92979da0a7aeb3bcc1cad2dbded6cdc5bbb2a89f948c7f72695f53473d32271b0f02000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000101010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7b8895abb5bfcbd7ded2c5b8ab9f9285786b605447433f3d3b3a3a38342f393934332f2b241c140a01000000000000000000000000000000000000000000000000060b0f1213171c1f2022232425262728272626242220201d181514120e0905020000000004080a0a131313131313131313131313130b0a08040000000000000000000000030b12181c1f2021212125303d4a5663707d8996a3b0bcc9d0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000916222f3c4955626f7c8897a2adbac6d4d8ccc0b6aca0968f82796d686059524c4641505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c0000000810171c212324201f1d18120b03000000000000000000000000000000000f1c2935424f5c6875828888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888883776a5d5144372a1e11000005111e2b3844515e6b77848a8a8a8a8a8a8a8a8a8276695c504336291d1926323f4c5965727f8a8a8a8a8a8a8a8a8a887b6e6255483b2f221508000000000a1724303d4a5763707d8a8a8a8a8a8a8a8a8a8a8a8578665b5044382b1f120600000000000009141f29323b444c555d676d78818a827a6e695e574d43392f24180c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d6876828f9cabb5acacacacacacacacacacacacacac9f92867a6d6154473a3025190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c676d6d6e6f717376797c81858a90959fa2aab0b8c1c9d2dbdfd7cdc4bab0a69f92867b6e62584e43382b1e1408000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000040607090b0c0d0e0e0e0d0d0b0908070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcd1dcdccfc3b6a99c90837669594f443732302f2e2d2c29232c2c2726231f19120a020000000000000000000000000000000000000000000003090e11171c1f2023282c2d2f303132333434343332312f2d2c292422211e1a14120e0903050b1014161720202020202020202020202020171614100b050000000000000000000001070c101314141416222f3c4955626f7c8895a2afbbc8d0c4b7aa9d9184776a5e5144372b1e110400000000000000000000000000000000000c1925323f4c5865727f8b98a9b3becad6d4c8bbafa49a91847a6d675e564f46413a43505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c000008121a22282d30312d2c29241d150d060000000000000000000000000000000f1c2935424f5c6875828f95959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959083776a5d5144372a1e11000005121f2c3845525f6b788592979797979797979084776a5d51442d2217192633404c5966737f8c9797979797979796897c6f6356493c30231609000000000b1724313e4a5764717d8a9797979797979797979386796c605346392d2013060000000000020e1925303b444d565e676d79828e938f847b6e695e554b4035291e150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb9b9b9b9b9b9b9b9b9b9b9b9b9bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000002020505050505050505050505050505050505050505050505050505050505050505050505050505050505111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e050505050505050500000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d615f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f555c606162626467666c6f74797e838b92989ea6afb7c0c9d2dcdfd6ccc2baaea3998e82756a6054473b3025190e020000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0406070c1013141618191a1b1b1a1a1918161414110e080806030000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6dacdc1b4a79a8e8174675b4e413327232221201f1c181f1f1a1917130e0801000000000000000000000000000000000000000000030a0f141a1c22282b2d2e34383a3c3d3e3f40414140403f3e3c3a39352f2e2d2b26201e1a141010171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2423211c171008000000000000000000000000040607080815222e3b4855616e7b8894a1aebbc7d0c3b7aa9d9084776a5d5144372a1e110400000000000000000000000000000000020f1c2835424f5b6875828e9ba8b5c1d0dbd2c6b9ac9f93877c6f685d554c443d353043505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c00040d1a242c33393c3e3a39352f271f18100801000000000000000000000000000f1c2935424f5c6875828f9ba2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a29d9084776a5d5144372a1e11000005121f2b3744505b657985929fa3a3a3a3a39e9184786b544a3f33281c1a2734404d5a6773808d9aa3a3a3a3a3a3968a7d7063574a3d3024170a000000000b1825323e4b5865717e8b98a3a3a3a3a3a3a3a49a877a6d6054473a2d211407000000000005111e2a36424d565e686d79828f949e9691847b6e675d51453e30271c120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5664717e8b99a3aebbc7c6c6c6c6c6c6c6c6c6c6cbc0b5ab9c8f8276685e5246392d201308000000000000000000000000000000000000000000000000000000000000000000000000000004090c0e0f1212121212121212121212121212121212121212121212121212121212121212121212121212121212121e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b1212121212121212120a090704000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154525252525252525252525252525252525252524b515354555657545b6062676d71787f858f949ea5afb7c0cad3e0ded7cbbfb4ab9e93897c6f62564c41362a1e11050000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0c101314181d1f20222426272728272726252321201e191515120f0a05020000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d9ccc0b3a6998d8073665a4d4033271a15141413100c07120d0d0b070200000000000000000000000000000000000000000002080d151b1f252a2d3338393c3f4446484a4b4c4d4e4e4d4c4c4b494745403f3b3a37312d2a251f1b1a22282d30313939393939393939393939393931302d28221a12080000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d0c3b6a99d9083766a5d5043372a1d10040000000000000000000000000000000004111e2a3744515d6a7784909daab7c3d0d6cabeb3a99b8e81756a60564c433a32293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c010c16202c363e44494a47454039312a2219130c040000000000000000000000000f1c2935424f5c6875828f9ba8aeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaa9d9084776a5d5144372a1e1100000613202d394653606c7986939facb0b0b0ab9f928578665b5044382b1f1b2734414e5a6774818d9aa7b0b0b0b0a4978a7e7164574b3e3124180b000000000c1925323f4c5865727f8b98a5b0b0b0b0b0b6a194877b6e6154483b2e21150800000000000714202d3a46525e696e7a8390949ea6a0969083796d605a5042392e23180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d6876828f9cabb5bfcbd7d2d2d2d2d2d2d2d2dcd1c5b9ac9f92867a6d6154473a3025190d01000000000000000000000000000000000000000000000000000000000000000000000002090f15191b1c1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281f1f1f1f1f1f1f1f1f1f171614100b0500000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154474646464646464646464646464646464646464045464748494b4a5053555c60666c727b828e939da5afb8c1ced7e1dcd1c6bdafa59b8f8275685e5246392d2014080000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c181d1f2024292c2d2f313333343434333331302e2d2a2522211f1b15120e0903000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d9ccbfb2a6998c7f7366594c403326190d0707060400000601000000000000000000000000000000000000000000000000050d131920262b3136383f4446494a505355565758595a5b5a5959575553514b4b4846423c3a36302c27232c33393c3d464646464646464646464646463e3c39332c241a100500000000000000000000000000000815222e3b4855616e7b8894a1aebbc7cfc2b6a99c8f8376695c504336291d10030000000000000000000000000000000004101d2935404b556b7885919eabb8c4d1d2c6b9ada197897c6f62584e443a3129293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c08131e28323e4850555753514b433c3429241e160d0700000000000000000000000f1c2935424f5c6875828f9ba8b5bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb7aa9d9084776a5d5144372a1e1100000714202d3a4753606d7a869aa4afbbbdb9ac9f9386796c605346392d201b2835414e5b6874818e9ba7b4bdbdb2a5988b7f7265584c3f3225190c000000000c1926333f4c5966727f8c99a5b2bdbdbdbbafa295887c6f6255493c2f22160900000000000814212e3b4754616e7b8490959fa6b0a8a0958e81746c61544a4034281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb9c5d1dce7dfdfdfdfdfdfdfe0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000030c141b202528292c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e41342c2c2c2c2c2c2c2c2c2c2c2322201c160f08000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a393939393939393939393939393939392e34383a3a3b3c3e3f44464b51545b60686e78818e929da6b0bcc5d0dbe2d8cfc1b9ac9f92867a6e6154473b2f24190d0100000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291f24292c2d2f35393a3c3e3f4041414140403e3c3b3936302f2e2b26211e1a140f0a0400000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000000000000000000060e171e252a31373b42464a505355545c60626364656667676766656462605d555855534d4846423b38322b353e44494a535353535353535353535353534a49443e362c22170b00000000000000000000000000000915222f3c4855626f7b8895a2aebbc8cec2b5a89b8f8275685c4f4235291c0f020000000000000000000000000000000006131f2c3845515d677985929facb8c5d2d1c5b8ab9e9285796c6053463c32281f293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c0d19242f3a44505a6164605d554e463f352f281f191008020000000000000000000f1c2935424f5c6875828f9ba8b5c2c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c3b7aa9d9084776a5d5144372a1e1100000814212e3b4754616e7a8794a1b6c0c8bbafa49a877a6d6054473a2d211c2835424f5b6875828e9ba8b5c1bfb2a6998c7f7366594c403326190d000000000d1a2633404d596673808c99a6b3bfcac9bcafa396897c706356493d3023160a00000000000713202d3a4653606d7980889197a1a9b1a79d938a7d70665c5144382c1f160b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5664717e8b99a3aebbc7d3e3edececececececefe3d7cbc0b5ab9c8f8276685e5246392d201308000000000000000000000000000000000000000000000000000000000000000000020c151e252c31343538383838383838383838383838383838383838383838383838383838383838383838383838383838383838383844515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e41383838383838383838383838302f2c27211a11080000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c23282c2d2e2f2f2d33383940454a50565e666d78808e949eaab3becad6dfe0d3c7bbafa3998c7f7266564c4135291d110400000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236282b2f35393a3d404547494b4c4d4e4e4d4d4c4b494746413f3c3b37322d2a261f1b150e08020000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000000000000000000000020a1117202930363c43474d53545b606265666d6f707172737474737372716f6d676865615f5754524d48443d373e4750555760606060606060606060606060575550483e33281c1004000000000000000000000000000916232f3c4956626f7c8995a2afbcc8cdc0b4a79a8d8174675a4e4134271b0e01000000000000000000000000000000000714202d3a4753606d7a8698a2aebac7d3cfc2b5a89c8f8275665b5044382b2016293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c111d2935414c56616c716d675f585045413a312b2219130c0400000000000000000f1c2935424f5c6875828f9ba8b5c2c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c3b7aa9d9084776a5d5144372a1e1100000815222e3b4855616e7b8894a1aebbccc0b6a194887b6e6155483b2e221c2936424f5c6975828f9ca8b5c2c0b3a79a8d8074675a4d4134271a0e010000010d1a2734404d5a6773808d9aa6b3c0cdcabdb0a3978a7d7064574a3d3124170a000000000006131f2c3845515c666d737d859197a1abafa59e9184796d6053463d32271b0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d6876828f9cabb5bfcbd7e3f4ece8e6e5e6e8ece8dcd1c5b9ac9f92867a6d6154473a3025190d01000000000000000000000000000000000000000000000000000000000000000009141e2730373d414245454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e454545454545454545454545453d3c38332b231a0f0500000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211f1f1f1f1f1f1f1f1f1f1f1f1f1f181c1f2021222322282b2f34383f444d545c666c75828f98a2aebac3ced9e3d7cbc0b5ab9d908376685d5245392c20130600000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f422d3338394045474a4b51535557595a5a5b5a5a59585654524c4c4847433c3a36312b262019140b0600000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000030c141c2328323a41464e53575e61666c6f7275797b7d7e7f808181807f7f7e7c7a7875726e6966615e57544f474244505a61646c6c6c6c6c6c6c6c6c6c6c6c6c64615a5044392d211408000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9ccbfb3a6998c807366594d4033261a0d00000000000000000000000000000000000814212e3b4754616e7a8794aab4bfcad6cdc1b4a79a8e817467544a3f3328191d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190b17212c3945525d68717d796f6a625a514c433c3429241e160e07000000000000000f1c2935424f5c6875828f9ba8b5bababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab7aa9d9084776a5d5144372a1e1100000915222f3c4855626f7b8895a2aebbd2bbafa295887c6f6255493c2f221d293643505c6976838f9ca9b6c2c1b4a79b8e8174685b4e4135281b0e020000010e1b2734414e5a6774818d9aa7b4c0cdcabeb1a4978b7e7164584b3e3125180b000000000004101c2834404b545c606b707b859199a3afaca0968b7f7265594f44382c2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb9c5d1dce7e6e0dcd9d8d9dce0e6e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000040f1b25303942494d4f52525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525e6a7784919daab7c4d0dacdc1b4a79a8e8174675b52525252525252525252525252524a48443d352b21160b00000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114131313131313131313131313070c101313141516171c1f23292d333b424a545b616e7b85929fa7b1bcc8d4e0dcd1c5b9ac9f92867a6d6054473a2d21140700000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f42383f44464b515357555d606264666667676766666463615e565955534e4846423b37312a251f17110a020000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000000000000000000030c151e262e343d444c52585f62696e74797c7f828588898a8b8c8d8e8d8c8c8a888684827e7b77736e69636059534d4955616c7079797979797979797979797979716c6155493c3023160a000000000000000000000000000b1825313e4b5864717e8b97a4b1becacbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000714212e3a4754616d7a8794aab4bfcad6cdc0b3a69a8d8073675a4d402d22171d293643505c6976838f9ca9b6b2a5988b7f7265584c3f322519141d2834404b54606d7a86837c716d605d554e463f353028201910070000000000000f1c2935424f5c6875828f9ba8adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaa9d9084776a5d5144372a1e110000091623303c4956636f7c8996a2afbcc9bcafa396897c706356493d30231d2a3744505d6a7783909daab6c3c2b5a89b8f8275685c4f4235291c0f020000020e1b2835414e5b6874818e9ba7b4c1cecbbfb2a5988c7f7265594c3f3226190c0000000000000c18232e39424b51596069707d87929fa7b1a89d9184776b6054483b2f221509000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5664717e8b99a3aebbc7d3e3e3dbd5d0cdcccdd0d5dbe3d7cbc0b5ab9c8f8276685e5246392d201308000000000000000000000000000000000000000000000000000000000000000915202c37424b53595c5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f6a7784919daab7c4d0dacdc1b4a79a8e8174675f5f5f5f5f5f5f5f5f5f5f5f5f5f5f56544f473d33271c1004000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407060606060606060606060600000406070708060b0f12181c22283038424a525e69727f8b95a0acb8c5d1dee0d4c7bbafa3998a7d7064574a3d3124170a00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f40454a5053555d606367676d6f7172737474747373716f6e686865625f5855534d47433c363027221b140b0400000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000000000000000020b151e2730383f444f565e616a6f747b8085888c8f9298969798999a9a9a9998979a93918f8b8884807b75706b625f57505764707d868686868686868686868686867e7164574a3e3124170b000000000000000000000000000c1926333f4c5966727f8c99a5b2bfccccc0b6ac968a7d7063574a3d3024170a00000000000000000000000000000000000714202d3a4753606d7a8698a2aebac7d3cec1b4a79b8e817468544a3f33281c1d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225191b262f3845515c66727f8c91867e756d6760585146413a322b22190f0400000000000f1c2935424f5c6875828f9ba1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a19d9084776a5d5144372a1e1100000a1723303d4a5663707d8996a3b0bcc9bdb0a3978a7d7064574a3d31241e2b3744515e6a7784919daab7c4c3b6a99c908376695d5043362a1d07000000020f1c2935424f5c6875828f9ba8b5c2ceccbfb3a6998c807366594d4033261a0d00000000000007121d27303940454f56606b727f8c95a0acaca095897c6f6356493c31261a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e3d9d1cac4c0bfc0c4cad1d9dcd1c5b9ac9f92867a6d6154473a3025190d010000000000000000000000000000000000000000000000000000000000000c1925313d49535d65686b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b7784919daab7c4d0dacdc1b4a79a8e81746b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6360594f44382c201407000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000003070c11171e262f38424d57606c7884919daab7c3cdd9e3d7cbc0b5ab998c7f7366594c403326190d00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4b51545b6063676d7073777a7c7e7f80818180807f7e7c7a7875726f6a66615f57534e46413b332d261d160d06000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000a141d273039424a505960686d757c81868d9297989c9fa2aaa4a5a6a7a7a6a6a5aca49f9e9b9896918c87827d756e69605c5464707d8a93939393939393939393938a7d7164574a3e3124170b000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cdc8bbafa49a887b6e6255483b2f221508000000000000000000000000000000000006131f2c3845515d677985929facb8c5d2cfc2b6a99c8f8376665b5044382b1f14293643505c6976838f9ca9b6b2a5988b7f7265584c3f322517222d38414d57606d79849198928b817a6f6a625b524c443d342b21160a00000000000f1c2935424f5c6875828f94949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949084776a5d5144372a1e1100000a1724313d4a5764707d8a97a3b0bdcabeb1a4978b7e7164584b3e31251e2b3845515e6b7884919eabb7c4c3b7aa9d9084776a5d51442e23180c00000003101c2936434f5c6976828f9ca9b5c2cfcdc0b3a79a8d8074675a4d4134271a0e010000000000000b151e272e343d444f59606c7883909daab1a89a8e817467574d42362a1e1205000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d1c7bfb8b4b2b4b8bfc7d1ded3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000e1b2834414d59656f75787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787884919daab7c4d0dacdc1b4a79a8e817878787878787878787878787878787878706b6054483c2f221609000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000000060c141d26303b44505b65737f8c99a7b1bcc8d4e0dcd1c1b4a89b8e8175685b4e4235281b0600000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c50555d60666c7075797d808386888a8c8d8d8e8d8d8c8b898785827f7c77736e69625f58524d443f382f281f180f060000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000000000000006111b262f39424b545c606b707a82878e92999ea2a9a8acaeb4b1b2b3b4b4b3b2b2b6afacaba8a8a09e99928f89827b736d665e64707d8a979f9f9f9f9f9f9f9f9f978a7d7164574a3e3124170b000000000000000000000000020f1c2935424f5c6875828f9ba8b5c2cec6b9ac9f9386796d6053463a2d201307000000000000000000000000000000000004101d2935404b556a7783909daab6c3d0d1c4b8ab9e9185796c6053463c30261c293643505c6976838f9ca9b6b2a5988b7f7265584c3f32252427333f49535e69727f8c96a19f938e847c726d615d564f473d32271b0f03000000000f1c2935424f5c6875828787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878784776a5d5144372a1e1100000b1825313e4b5864717e8b97a4b1becabfb2a5988c7f7265594c3f32261f2c3845525f6b7885929eabb8c5c4b8ab9e9185786b544b4034281c1004000003101d2a3643505d697683909ca9b6c3cfcec1b4a79b8e8174685b4e4135281b0e020000000000020a11171d2328323d44505b65727e8b98a2aeaa9e918477695f53463a2d21140700000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3d9d0bfb5ada7a5a7adb5bfccd6d7cbc0b5ab9c8f8276685e5246392d2013080000000000000000000000000000000000000000000000000000000000000f1c2935424f5c687581858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858587929facb9c5d2dfd2c5b9ac9f928685858585858585858585858585858585857d7063564a3d3023170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000000000000020b141f27333f4953616e7b8895a0acb8c4d1deddd0c3b6aa9d9083776a5d50442d22170b00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569545b60676d72787d81858a8d90939a9799999a9a9a9999979697928f8c88847f7b756f6a615e565049413a312a2118100600000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000000000000060f17222d38414b545c666d737d858f939a9fa3abadb3b5b8babfbdbebfc0c1c0bfbfc0bbb9b7b5b2acaba39f9c938f8780786d6864707d8a97a3acacacacacacaca4978a7d7164574a3e3124170b00000000000000000000000005111d2935414c566a7784909daab7c3d0c4b7ab9e918478675c5145382c1f13060000000000000000000000000000000000000c18242f424e5b6875818e9ba8b4c1ced2c6b9ada197897d7063584e42382e23293643505c6976838f9ca9b6b2a5988b7f7265584c3f32252a363e44505b656e7b86929fa8a59e9691867f756d6860594f43382c1f1307000000000714212e3a4754616d7a7b7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a6e6154473b2e21140800000c1825323f4b5865727e8b98a5b1becbbfb3a6998c807366594d4033261f2b3844505b667985929facb8c5c5b8ac9f928579665c5145382c1f1306000004111d2a3744505d6a7783909daab6c3d0cec2b5a89b8f8275685c4f4235291c0f0200000000020c141c23282b3939333f4953606d7a86929facaca096887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7ddd2c7bdada39c999ca3adbac4cedad1c5b9ac9f92867a6d6154473a3025190d010000000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929299a3afbbc7d4e0d3c7baaea39892929292929292929292929292929292928a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000000000000000000020b17222d3847535f697783909daab6c3d0ddded1c4b8ab9e9185786b5e4a3f33281c0f03000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82756960666c71797e84898e92989a9d9fa4aca5a6a7a7a7a6a6a4a9a19e9b9895918c87817c756e68605b534c433c332a22181006000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000000000030e182127333f49535c666d78808791979fa4acafb5b9bec2c5c6cad0cbcccdcdcdccd2ccc8c6c4c2bdb9b5afaca69e99928c827a6e69707d8a97a3b0b9b9b9b9b9b0a4978a7d7164574a3e3124170b0000000000000000000000000713202d3946525e687885929fabb8c5cfc3b6a99c90837669554b4034281c1004000000000000000000000000000000000000071925323f4c5865727f8b98a8b2bdc8d4c9beb3a99b8e81756a5f544a3f342e263643505c6976838f9ca9b6b2a5988b7f7265584c3f3230363f48505a606c77828f98a2aeafa8a099928b827a6f6b6054483b2f221509000000000713202d3946525e686d6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e685e5246392d20140700000c1926323f4c5965727f8c98a5b2bfcbc0b3a79a8d8074675a4d413427202d394653606c798698a2aebac7c6baaea29886796d6053463a2d201307000004111e2b3744515e6a7784919daab7c4d0cfc3b6a99c908376695d5043362a1d0600000000000a141e262e34384646464645515d6774818e9ba7b2a8978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dcd7ccc0b5ab9c918c919ca8b2bdc9d5d3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9c9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9fa3abb5c0cbd7e3d7cbbfb4aaa39f9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000000000000000006111b2b37424d576774818d9aa7b4c0cddadfd2c5b8ac9f928579665b5044382b1f1206000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275696a6f787e858b91969b9fa2aaaaacafb6b2b3b4b4b3b3b2b1b3adaba8a8a09d99928e87817b726c655d564e453c342a22180f050000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000915202a333c44505b656d78828c9399a1a9afb6bbc0c7cacfd2d3d6d4d2d0cccac9c8c7c7c8c9cbcec9c7c0bbb9b0aba39f948f847b6e707d8a97a3b0bdc6c6c6bdb0a4978a7d7164574a3e3124170b0000000000000000000000000714212e3a4754616d7a8798a2aebac6cec1b4a79b8e8174685b4e412e23180c000000000000000000000000000000000000000815222f3b4855626e7b8896a0acb8c6d1cfc4b9ac9f92877c6f665c50443f38303643505c6976838f9ca9b6b2a5988b7f7265584c3f343a4146515a616c73808c949eaab4bab2aba39f948f847d6f6356493c302316090000000005111d2935414c565e6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161615e564c41362a1e110500000d1a2633404d596673808c99a6b3bfccc1b4a79b8e8174685b4e413528202d3a4753606d7a8693aab4bfcacabfb4aa94877a6e6154473b2e211408000005121e2b3845515e6b7884919eabb7c4d1d0c3b7aa9d9084776a5d51442e23170b0000000006111c2630383f4453535353534c5565717e8b98a4b1a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e0d4c7bbafa4998c7f8c96a1acb9c5d2d7cbc0b5ab9c8f8276685e5246392d2013080000000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9abababababababababababababababababababababababababababababababababababababababababababababababacafb5bdc7d1dce7dcd1c6bcb4aeacababababababababababababababa3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000e1a2631404c5966737f8c99a6b2bfccd9dfd3c6baaea29886796c605346392d201306000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82756c727c838b92979ea0a8acaeb4b7b9bbc0bfc0c0c1c0c0bfbebeb9b8b5b1acaba39f9a938e857f776d685f574e463c342a21170c0300000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000020b1a26313c46515b606c77818e949fa4abb2bbc0c7cbd1d6dad5d2ccc7c6c3c0bdbcbbbababbbcbec1c3c6c7c7c1bdb5aea69f9691847b707d8a97a3b0bdcad2cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000916222f3c4955626f7c8895aab4becaccbfb2a6998c7f7366594c4033261907000000000000000000000000000000000000000814212e3a47535f697784919eabb4bfcbd4c7bbafa3999083786d605b504a423b3543505c6976838f9ca9b6b2a5988b7f7265584c3f3f444c525b626c717e88939fa6b0bcc4bdb4aea69e968e8175685b4e4235281b0f02000000010d1925303a444c52545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454524c443b3025190d0100010d1a2734404d5a6773808d9aa6b3c0cdc2b5a89c8f8275695c4f423629212e3a4754616d7a8794a0adbad0d0bbaea195887b6e6255483b2f221508000005121f2c3845525f6b7885929eabb8c5d1d1c4b7ab9e9184786b544a3f34281c10030000000b17232e38424a505f60606060606063707d8996a3b0a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7dfd2c6b9ac9f93867a84919eabb7c4d1dcd1c5b9ac9f92867a6d6154473a3025190d0100000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b9bbc0c7cfd9e3ede2d8cfc6bfbab9b8b8b8b8b8b8b8b8b8b8b8b8b8b0a3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000000000000000000091825313e4b5864717e8b97a4b1becad7e0d4c7bbafa399867a6d6053473a2d201407000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275777f8790959ea1a9acb2b8babfc3c6c8ccd2cacbcdcdcccccfc9c6c5c2bdb8b5afaca49f97928b827a6e6a5f584e463c33291e150b00000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000000000a141d2b37434e58626d73808d939ea6afb5bdc4ccd2d7dcd7cfc9c7c0bbb9b6b3b0afaeadaeaeafb1b4b7b9bbc0c7c6bfbbb0a8a19691847a7d8a97a3b0bdcad6cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000b1724313e4a5764717d8a97a4b0bdd0ccc0b6ac978a7e7164574b3e3124180b0000000000000000000000000000000000000006121e2b37424d5766727f8c99a3aebac4cfcbc0b5ab9f958d80736d605c544d454143505c6976838f9ca9b6b2a5988b7f7265584c454a50565e616d727e87929aa4afb8c1cec6bfb9ac9f93877c6f6255483c2f221509000000000008131e28323a414647474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474746413b32291e14080000010e1b2734414e5a6774818d9aa7b4c0cdc3b6a99c908376695d5043362a222e3b4855616e7b8894a1aebbc7c8bcafa295897c6f6256493c2f231609000006121f2b3844505c667986929facb9c5d2d2c5b8ab9f928578665c5044382b1f1206000003101c28343f4a545c6c6c6c6c6c6c6c6c6e7b8895a1aea99c8f8376695c504336291d1000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dcddd0c3b6aa9d908377818e9ba7b4c1cedad3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c7cbd1d9e1ebf4eae1d8d1cbc7c5c5c5c5c5c5c5c5c5c5c5c5c5bdb0a3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6dfd2c5b9ac9f928679675c5145382c1f1306000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8279818c9299a0a7adb3b9bdc3c5c4c2bfbebdbcbdbfc0c1c4c5c9ced1d1cec8c7c0bbb6afa9a29f948f847c6f6a5f584e453b30271d1207000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000006111c262f3847535f6a727f8b929da5afbbc0c7d0d8ddd8d1cbc5beb9b5afacaaa6a3a2a1a0a1a2a3a4a7aaacafb5b8bcc3c2bab2a8a0968e817e8a97a3b0bdcad6cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000c1926333f4c5966727f8c99a5b2bfccc8bbafa49a887c6f6255493c2f22160900000000000000000000000000000000000000020e1a26313c4754616e7a86929fa9b2bdc9d1c7bdb1a79d928c7f736d665e57524c47505c6976838f9ca9b6b2a5988b7f7265584b51545c60686d757f889299a3acb6c0cad0c5bbb0a69c8f82756a5f53473a2e2115080000000000020c1620283035393a3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3936302920170d020000020e1b2835414e5b6874818e9ba7b4c1cec3b7aa9d9084776a5d51442e23222f3c4855626f7b8895a2aebbc8c9bdb0a3968a7d7063574a3d3024170a00000713202d3a4653606d798698a3aebac7d3d3c6baaea29886796d6053463a2d201307000006121f2b3844505c66767979797979797979798693a0ada99d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3d7cbc0b5ab9a8d80737e8b97a8b2bdc9d5d7cbc0b5ab9c8f8276685e5246392d20130800000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2cfd1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d2d4d7dce3ebf3fcf3eae2dcd7d3d2d1d1d1d1d1d1d1d1d1d1d1c9bdb0a3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcc8d5ded2c5b8ab9f9285786c554b4034291c1004000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dccfc2b6a99c8f82828f939fa3abb1b9bec5c4bdb9b8b5b2b1b0b0b1b2b3b4b7b9bdc4c5c8ced4d1cbc7c0bbb3ada69e9691857c6f6a5f574d43392e23180d040000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000000b17222d38424f59626e7c87929fa4aeb7c1ccd2d9ded6cfc6bfbab3adaba49f9d9997969594949596989a9d9fa4abacb1b8bcc3bab2a89e938d818d9aa7b4c0cdd7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000010e1b2834414e5b6774818e9aa7b4c1cdc6b9ac9f93867a6d6053473a2d20140700000000000000000000000000000000000000000915202d3946525e6873808d96a1adb9c2cdcfc3b9aea49c918c80786e69605d56534e5c6976838f9ca9b6b2a5988b7f726558555c60666d717a818b939aa3abb5bec7d2cabeb3a99e94897c6f62584e43372b1f1206000000000000040e161e25292d2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2d2a251e170e05000000020f1c2935424f5c6875828f9ba8b5c2cec4b7ab9e9184786b544a3f3428232f3c4956626f7c8995a2afbcc8cabdb1a4978a7e7164574b3e3124180b00000714212d3a4754606d7a8793aab4bfcbd7d6cabeb3aa94877a6d6154473a2e21140700000713202d3a4653606d788686868686868686868b95a2b7aa9d9184776a5e5144372b1e11000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e0d3c7bbafa3998a7d707b8796a1acb9c5d2dcd1c5b9ac9f92867a6d6154473a3025190d01000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2cfdcdededededad5d2d1c9c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8d1d2d5dae0e8f0f7eee5ddd7d2cfcec8c8c8c8c8c8c8c8c8c8c8c8bdb0a3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6ded1c4b7ab9e9184786b5e51452f23180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3ddd0c4b7ab9f948f8f949ea5aeb5bdc3bdb9b7b2adaba8a6a5a4a3a4a5a6a8abacb2b7b8bdc3c9cfd7d2ccc5bebab0a8a09792857c6f695e554b4034281f160c0100000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000030f1c28333f4a54606b75828f99a3afb6c0c9d7ddddd5ccc4bcb4aea9a19e9993908d8a8988878788898b8e9093999da0a7acb1babfbaafa59f9386939facb9c6d2d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000004111d2935414b556976838f9ca9b6c2cfc4b7ab9e918478675d5145392c1f1306000000000000000000000000000000000000000005111e2a36414c56606d7984919ea6b0bbc5cecbc0b6ada39c928d837b736d68625f585c6976838f9ca9b6b2a5988b7f72656064676d71787e858f939fa4acb5bdc6d0cbc3baada2978f82756a6054463c31261b0f0300000000000000040c13191d20212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121201e19140d050000000003101c2936434f5c6976828f9ca9b5c2cfc5b8ac9f928579665c5044382c23303d495663707c8996a3afbcc9cbbeb2a5988b7f7265584c3f3225190c00000814212e3b4754616e7a8794a1adbad1dcdbd0bbaea194887b6e6155483b2e22150800000713202d3a4653606d79869393939393939393959da7b7aa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dcdfd2c5b9ac9f92867a6d7884919eabb7c4d1ded3c7bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2cfdce8e9dfd7cfc9c6c5bcbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbc4c5c9ced6dee8efe5dbd3ccc6c3c2bbbbbbbbbbbbbbbbbbbbbbbbbbb0a3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7dccfc2b6a99c8f8376695c504336291d0700000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfd3c7bbb0a69f9c9c9fa6afbbbfbdb8b2acaaa9a19e9b9998979697989a9b9ea1a8aaacb1b9bec4cbd1d8d0cac1bab2a9a19792857b6e675c51453e31281d120700000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000006121f2b3844505b66707d89949eabb5c0c8d2dbdfd5cbc3bab2aaa39f97928c8783807d7c7b7a7b7b7c7e8183868c91959da0a7aeb4bcbbafa49a939aa4afbbc8d4d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000613202c3945515d677885919eabb8c4cfc2b5a99c8f827669554b4035291d10040000000000000000000000000000000000000000010d1925303b45515d67717e8a949fa9b3bcc5cfc8bfb5ada49c949085807a736f6a66646976838f9ca9b6b2a5988b7f72676d7074797e848b92979ea5afb6bec6cfccc3b9afa59f92857b6e61584e43342a20150a00000000000000000002080d111314141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414110d0802000000000003101d2a3643505d697683909ca9b6c3cfc6baaea29886796d6053463a2d24303d4a5763707d8a96a3b0bdc9ccbfb2a6998c7f7366594c403326190d00000815222e3b4855616e7b8894a1aebbc7d4d5c8bbafa295887c6f6255493c2f22160900000713202d3a4653606d7986939f9f9f9f9f9fa0a2a7afb7aa9e9184776b5e5144382b1e1100000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3dccfc3b6a99c9083766774818e9ba7b4c1cfdad7cbc0b5ab9c8f8276685e5246392d201308000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2cfdce8e1d7cdc5beb9b8afaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeb7b9bdc4ccd6e0e8ddd3c9c1bbb6b5aeaeaeaeaeaeaeaeaeaeaeaeaeaea3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000000000000000007121e2a36424d576773808d9aa6b3c0cdd9dacdc1b4a79a8e8174675b4e4134281b0e01000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3e3d8ccc2b8b0aba9a9abb0b8bfbab1aca8a09e9996918f8c8b8a898a8c8d8e9196999da0a8adb3bbc0c7cfd8d6ccc3bbb3a9a1979083796d60594f43392f24180d02000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000613202d394653606c7883909da6b0bdc7d1dae1d6ccc3b9b1a8a098928c857f7a7773706f6e6d6e6f707174777b7f848a90959fa2aab2bab6aca49fa4acb6c0ccd8d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000714212d3a4754606d7a8797a1adb9c6cdc0b3a69a8d8073675a4d402f24180c0000000000000000000000000000000000000000000008141e2935404b55616c76828f97a1aab4bdc6d0c8bfb6aea69f98928c85807b7773706e76838f9ca9b6b2a5988b7f7477797d81858b91969ea1a9afbbc0c7d0ccc3bab1a79e938a7e71695e52463d3222180e03000000000000000000070e1317191a1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1b1a18140f09010000000004111e2a3744515d6a7784909daab7c3d0cabfb4aa94877a6d6154473a2e24313e4a5764717d8a97a4b0bdcacdc0b3a69a8d8073675a4d4034271a0d01000915222f3c4855626f7b8895a2aebbc8d5d6c9bcafa396897c706356493d3023160a00000713202d3a4653606d798693a0acacacacacadaeb2b9b7aa9e9184776b5e5144382b1e110000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e2d6cabfb4aa998c807366717e8b97a8b2bdc9d5dcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2cfdce6dacfc5bbb3adaba2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2abacb2bac4cedae3d7ccc1b7afaaa8a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000000000000000000040d19222d3a46535f6976838f9ca9b6c2cfdcd4c8bcb1a7988b7e7165584b3e3225180b00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfded4cac2bbb7b6b5b7bbbcb4aea8a09d96918c8884827f7e7d7d7e7f808184888c91959ea1a9afb5bdc6ced7d5cdc5bbb3a99f958e81746b61554b4035291f1408000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000003101c28343f4a5464707d8a95a0acb8c1cfd9e3d9cfc4bab1a7a09691867f79726d6866646362616162636567696e72777d838b9298a0a8b0b8b6afacafb6bec7d2ddd7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000916222f3c4955626f7c8895a9b2bec9cbbeb1a4988b7e7165584b3e3225180700000000000000000000000000000000000000000000020d18242f3a43505a616e7b859298a2abb4bdc5cdc8c0b9b0aaa29f97928c8884807d7b78828f9ca9b6b5a89b8f818183868a8e92979ea0a8adb3bbc1ccd2cbc3bab2a8a0958f81756c61574d42342b2110060000000000000000010a12191f23262629292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929282724201a130b0200000005111e2b3844515e6b7784919eaab7c4d1d0bbaea194887b6e6155483b2e25323e4b5865717e8b98a4b1becbcec1b4a79b8e8174685b4e4135281b0e02000916232f3c4956626f7c8995a2afbcc8d5d6cabdb0a3978a7d7064574a3d3124170a00000713202d3a4653606d798693a0acb9b9b9b9b9babec4b7aa9e9184776b5e5144382b1e110000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce0d3c6baaea298897c6f636e7b8896a1adb9c5d2dfd3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2d0d9e3d5c9beb3a9a19e96959595959595959595959595959595959595959595959595959595959595959595959ea1a8b2bdc9d5dfd2c6bbafa59e9b959595959595959595959595959595958a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000000000000060d161f2834404a54616e7b87939facb9c6d2dfd1c4b8aca095877b6e6154473b2e21140800000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfe6dcd4ccc7c4c2c2c1b9b1aaa29f95918a847f7b78757372717071727375787c80848a91979fa3abb4bcc6ced7d7cdc5bbb1a79d938a7d70675d51453b3025190e020000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000006121f2b3844505c6674818e9ba7b1bccad3e1dcd1c7bdb2a8a09590847c726d67615d565756555454555658575e61666b70787e8691969fa6b0b9bbb9bbc0c7d0d9e4d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000b1824313e4b5764717e8a97a4b1bdcfcabeb3a996897c6f6356493c30231609000000000000000000000000000000000000000000000007131d28313e47535f696f7c869299a3abb3bbc2cccbc2bcb3aea9a29f9996918d8a888686929facb8b6aa9e938f8e9092999b9fa2a9acb2b9bec5cdd0cac0b9b1a8a09690837a6d615a50453b3022190f0000000000000000000a131c242a2f3233363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363533302b251d140b01000005121f2b3845525e6b7885919eabb8c4d1c8bbafa295887c6f6255493c2f25323f4c5865727f8b98a5b2becbcec2b5a89b8f8275685c4f4235291c0f02000a1623303d495663707c8996a3afbcc9d6d7cbbeb1a4988b7e7165584b3e3225180b00000713202d3a4653606d798693a0acb9c6c6c6c6c7d1c4b7aa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3dfd2c5b8ac9f9285796d60697884919eabb7c4d1ded7cbc0b5ab9c8f8276685d5246392d2013080000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b2bdc7d2ddd2c6b9ada1979289888888888888888888888888888888888888888888888888888888888888888888889196a1acb9c5d2dccfc3b6aa9e938f88888888888888888888888888888888887d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000003090f181f28313a44515c6673808d9aa4afbbc8d4ddd0c3b7aa9d908377695e52463a2d20140700000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfeee6ded8d3d0c9c1b8b0a7a098928b847d78736e696866656463646567686a6f73777e858d9299a2aab4bcc5ced7d6cdc3b9afa59e9184796d60564d41362a1e13080000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000713202d3a4653606d7985929eabb8c3cedee3d7cbc0b5aba19690837a6f6a605d55524c4a4948474848494b4d52545961666d717c848f949fa7b1bac4c8ccd2d9e2ebd7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000d192633404c5966737f8c99a6b2bfccc6baada297877a6d6154473a2e2114070000000000000000000000000000000000000000000000010c161f2b37424d57606a707d879299a2a9b1bbc0c7cec5bebab3adaba8a09d999798929298a3aebabbafa59e9b9a9d9fa3ababadb3b9bdc4c9cfcbc5bebaaea7a09691847a6d685d52483e33291f1007000000000000000007121c252e353b3f404343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434341403c362f261d1309000005121f2b3744505b657985929facb8c5d2c9bcb0a396897d7063564a3d3026333f4c5966727f8c99a5b2bfcccfc3b6a99c908376695d5043362a1d0700000a1724303d4a5763707d8a96a3b0bdc9d6d8cbbfb2a5988c7f7265594c3f3226190c00000713202d3a4653606d798693a0acb9c6d2d2d3ddd1c4b7aa9e9184776b5e5144382b1e1100000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e3dbcfc2b5a89c8f8275665c6874818e9ba7b4c1ced9dcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000000e1b2835414e5b6874818e96a1abb5c0ccd7d1c5b8ab9e92857d7c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c84919eabb7c4d1dbcec2b5a89b8f817c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c7a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000002050a0f151a2129313a434e58606d7985919eacb6c0ccd8d5c9bdb2a8998d807366574d42362a1e110500000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfecf1e7ddd3cac1b7afa69e9590867f78706c65615f575958575657595a585f62666c717a80879298a2aab4bcc5d0dbd4cbc0b9aca1968d8073685e52463a3025190d0100000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000a1623303d495663707c8997a2adb9c6d2dfe0d4c7bbafa39991847b6e685f58514b46413d3c3b3a3b3c3d3e4246474f545c606a6f7a828f95a0a8b2bec7d2dde4ebe3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000020f1b2835424e5b6875818e9ba8b4c1cec5b8ab9f928578685e5246392d201307000000000000000000000000000000000000000000000000040d1a26313c454e58606b717e8792979fa7afb6bec3c8cac5bebab8b2acaaa6aaa29f9fa3aab4bfc1b8afaaa8a7aaacaeb5b8babec5c9ceccc6bfbbb4aea49d9590847b6e685e564c41362c20170d0000000000000000020e19242e3740474b4d505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050504e4c4841392f251a0f03000613202d394653606c7986939facb9c6d2cabdb0a4978a7d7164574a3e312633404d596673808c99a6b3bfccd0c3b7aa9d9084776a5d51442e23180c00000b1824313e4b5764717e8a97a4b1bdcad7d9ccbfb3a6998c807366594d4033261a0d00000713202d3a4653606d798693a0acb9c6d3dfe0ddd1c4b7aa9e9184776b5e5144382b1e1100000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce1d5c9bdb2a8988b7f72655464717e8b97a8b2bdc8d4e0d3c7bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000714212e3a4754616d7a849199a4afbbc2ced2c6b9ada1978e81746f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f7784919daab7c4d0dacdc1b4a79a8e81746f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6d675d5145392c201306000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407060606060606060606060000040607080809090e12151a20262b333b434c56606a727f8b97a1adbec7d2ddd2c5b9aca096897c6f6356493c30251a0e0200000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dff3e9dfd5cbc1b8afa59e948f837c726d66605b53534d4c4b4a4a4b4c4d4e54555a61676d737d869298a2aab4becad6ddd5c9bdb2a89f92867b6e61564c41362a1d110500000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000010e1a2734414d5a6774808d9aa9b3becad6e2d6cabfb4aa9f92877c6f695e564e4540393530302f2e2e2f3030363a3e424a50585f686d79839096a0acb6c0ccd8e1ebe3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000005111d2935414c566a7683909da9b6c3d0c3b6a99d9083766a564c41362a1d11050000000000000000000000000000000000000000000000000009151f2a333d464f59616c717e8590959fa4acb1b8bcc3c8cac6c3bdb8b7b3b4aeacacaeb4bcc6cac1bbb6b5b4b6b9bbbfc5c6cacec9c7c0bbb5aeaaa29f928d837b6e695e564c443a30241b0e05000000000000000007131f2a35404a5257595c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5b59534b41362b201408000714202d3a4753606d7a869aa4afbbc8d4cbbeb1a4988b7e7165584b3e322734404d5a6773808d9aa6b3c0cdd1c4b7ab9e9184786b544a4034281c1004000b1825323e4b5865717e8b98a4b1becbd7dacdc0b3a79a8d8074675a4d4134271a0e01000713202d3a4653606d798693a0acb9c6d3dfeaddd1c4b7aa9e9184776b5e5144382b1e110000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3ded2c5b9aca196887b6e6255616e7b8796a0acb8c5d2ded7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000713202d3946525e68707d87939fa7b1bcc5d0c9beb3a99d938a7e716962626262626262626262626262626262626262626262626262626262626a7784919daab7c4d0dacdc1b4a79a8e817467626262626262626262626262626262605d554c4135291d1104000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21141313131313131313131313130c101314141516171a1e21262b31373d454d555d686f7c87929fa9b3bed0d9d4c8bcb1a79e9184786d6053463a2d2013090000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfeae1d7cdc3b9b0a69e938e82796e6a605c5450494642403f3e3d3e3f4043474950555d606b707d869298a2aebac2ced7dacec4baaea3988d8073685e5246392d20150a00000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000005111e2a36424d566a7783909daab6c3cfdbe0d3c7baaea2988e81746a5f574d443c352f2924232221212223252a2d30383f444e565d676e7a84919aa4afbbc4cfdae6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000713202d3946525e687885929fabb8c5cec1b4a79b8e8174685b4e413025190d0100000000000000000000000000000000000000000000000000030e18212b343d47505a616c707b838d939aa0a7acb1b8bcc3c4c8c8c5c4c0bfbab8b8babfc6ced3ccc6c3c2c1c3c5c7cbcec9c5c4bdb9b6afaba39f98928a80796e695e574d443a32281e12090000000000000000000a17232f3b47525c63666969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696968645d53483c3024180b000714212e3a4754616d7a8794a0b6c0ccd8cbbfb2a5988c7f7265594c3f322734414e5a6774818d9aa7b4c0cdd2c5b8ac9f928579665c5144382c1f1206000c1925323f4c5865727f8b98a5b2becbd8dbcec1b4a89b8e8175685b4e4235281b0f02000713202d3a4653606d798693a0acb9c6d3dfeaddd1c4b7aa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e3ded1c4b7ab9e918478695f535e697784919eaab7c4cedadcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000005111d2a36414c56606b73808c959fa9b3becacfc5bbafa59f92857b6e665c55555555555555555555555555555555555555555555555555555e6a7784919daab7c4d0dacdc1b4a79a8e8174675b555555555555555555555555555554514c433a2f24190d01000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2120202020202020202020202020181c1f2021222324262b2d31373c43474f575f676d7a849199a3aebbc4cfd7cdc5b8aca0958a7e71665c5044382b1f12060000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfe3d9cfc5bbb1a79e948e81786d675f58504a443f383631323130313232373b3e434c5159606b707d86929fa6b0bcc5d0dbd6cbbfb4aa9f92867a6d6154473d32271b0f03000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000714202d3a46525e697985929facb8c5d2dfdfd2c5b8ac9f92867b6e61584e453b3229241d191615141515161a1e20262e343c434c555e686f7c88939fa9b3bec9d5e3e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000714212e3a4754616d7a8797a2adbac6ccbfb3a6998c807366594d4033261a08000000000000000000000000000000000000000000000000000000060f19222b353e48505a61696e78808890959da0a7acb1b6b8bcc2c5c6c9cac7c5c5c7cbd0d8e0d7d2cfced0cac6c5c3c0bdb9b7b2acaca49f99928d867e746d675e574d453b322920160c000000000000000000000c1926323f4b57636e7376767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676746f64594c4033271a0e000815222e3b4855616e7b8894a1aebbd2ddccbfb3a6998c807366594d40332835414e5b6874818e9ba7b4c1ced3c6baaea29886796d6053463a2d201307000c1926333f4c5966727f8c99a5b2bfccd8dbcfc2b5a89c8f8275695c4f4236291c0f03000713202d3a4653606d798693a0acb9c6d3dfeaddd1c4b7aa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce1d5c9bdb2a89a8d807367574d576773808d9aa8b2bdc9d5e0d3c7bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000010d1925303a444f59606d78839097a2adbac0cccdc0baada2979083786d60594f4848484848484848484848484848484848484848484848515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e484848484848484848484848484745413a31281e130800000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2d2d2d2d2d2d2d2d2d2d2d2d2d2d23292c2d2e2f2f3131373a3c43474e535960696e79828f96a0abb4bfcdd6cfc5bbb1a79d9083786c60544a3f34281c10030000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3e8dcd1c7bdb3a9a0958f82786d665d554e443f38332d2a262524232426262b2e313a41454f59606b717e8b949faab4bfcad6dcd0c6baaea2988c7f7266584e43372b1f1306000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000814212e3b4754616e7a8798a2aebac6d3dfd7cbbfb4aa9a8e8174695e52463c33292018120d0808070809090e11141c2328313a434c56606b74808d97a1adb9c6d1dce7d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000916232f3c4956626f7c8995a9b3becacabeb1a4978b7e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000007101a232c363e4850575e666d737d838a90959da0a7aaacb1b5b8b9bebdbfc1c5c6cad0d7d3ccc6c3c2bdbebab8b6b4b2acaba8a19e9a938e86807a716c605c554d453b332920170e04000000000000000000000d1a2633404d59667380838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838174685b4e4135281b0e000915222f3c4855626f7b8895a2aebbc8d5cdc0b4a79a8d8174675a4e41342935424f5c6875828f9ba8b5c2ced6cabfb4aa94877a6d6154473a2e211407000d1a2633404d596673808c99a6b3bfccd9dccfc3b6a99c908376695d5043362a1d0600000713202d3a4653606d798693a0acb9c6d3dfe1ddd1c4b7aa9e9184776b5e5144382b1e1100000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3dfd2c5b9ada196897c6f62564956626f7c8996a1acb9c5d2ded7cbc0b5ab9c8f8276685d5246392d2013080000000000000000000000000000000000000000000000000008131e28323d44505c666e7b85929fa5afbac3cfcabeb3a99f958c80736b60564c413c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c44515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e413c3c3c3c3c3c3c3c3c3c3c3c3a39352f281f160c0100000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a3939393939393939393939393939392f34383a3b3b3c3e404246484e53585f626b707b838f949fa8b2bdc6d1d1c7bdb3a99f958a7d70665b5042382e23170b000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3e3d7cbc0b5aba1979083796d665c544b433c342e27221b1a18171718191b1f22282f353d474f59626c76828f98a2aebac5d0dbd6cabfb4aa9d9184776a6054473b2e221509000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000915222f3c4855626f7b8895aab4bfcad6e0d3c7baaea3988a7d7064574d42342a20170d070100000000000002050a11171f28313b444f59606d7a85919eabb5bfcbd7e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000b1824313e4b5764717e8a97a4b1bdcfc9bcb0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000008111a242c363e454d545c606b70787d838a9095999da0a7a9abadb3b1b3b4b8babec5cdcac1bbb6b5b0b4aeabaaa7a8a19e9a96918c87817b746e68615a514b433b332921170e0500000000000000000000000f1c2935424f5c6875818f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f83776a5d5144372a1e11000916232f3c4956626f7c8995a2afbcc8d5cec1b4a89b8e8175685b4e42352936434f5c6976828f9ca9b5c2cfdbd0bbaea195887b6e6255483b2f221508000d1a2734404d5a6773808d9aa6b3c0cdd9ddd0c3b7aa9d9084776a5d51442e23170c00000713202d3a4653606d798693a0acb9c6d3d5d5d5d1c4b7aa9e9184776b5e5144382b1e110000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e3ded1c4b7ab9e9184786c60534654606a7884919eabb7c4cfdadcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000020c162028343f4a545e69717e8a939da8b1bcc6d0c5bcb1a79f93877d70685e52463f342f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e41342f2f2f2f2f2f2f2f2f2f2f2d2c29241e160d040000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d61544746464646464646464646464646464646464045474748494a4d4d5355585f626a6e757d8591959fa6b0bac4cfd2cbc0b5aba1979083766c61544a3f30261c1106000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3e0d3c7bbafa39992857b6e675d544a42393128231c17110e090b0a0b0a0f13161e2429353d47505a616e7b86929fa9b3becad6dbd0c6b8aca095897c6f6256493c31251a0e020000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000091623303c4956636f7c8996a2afbcd0dbdfd2c5b9ac9f92867a6d6053473b3020190e050000000000000000000000060d161f29323d45515d6773808c99a3aebbc7d3e0d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000c1926333f4c5966727f8c99a5b2bfccc8bbafa295887c6f6255493c2f22160900000000000000000000000000000000000000000000000000000000000008121a232c333b424a515961656c70787d83888c9095989c9ea1a9a4a6a8abadb3bbc5c1b8afaaa8a4aaa29f9d9a9796918e8984807b756e69615e5650454039302921170f050000000000000000000000000f1c2935424f5c6875828f9b9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9084776a5d5144372a1e11000a1723303d4a5663707d8996a3b0bcc9d6cfc2b5a89c8f8275695c4f42362a3643505d697683909ca9b6c3cfd5c8bcafa295897c6f6256493c2f231609000e1b2734414e5a6774818d9aa7b4c0cdd5d5d1c4b7ab9e9184786b544a3f34281c1003000713202d3a4653606d798693a0acb9c6c8c8c8c8c8c4b7aa9e9184776b5e5144382b1e110000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce1d5c9bdb2a89a8d8074655b50444e586773808d9aa8b2bdc9d5e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000050e17232e38424d57616c74818e95a0aab4bfcbcec2bbafa49991847a6d615b51463c312722222222222222222222222222222b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134282222222222222222222221201d19130c04000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d61545353535353535353535353535353535353534b5153545556575a575f61666a6f747b82899297a0a7b0b8c2ccd0c7c0bbafa39992857b6e615a5042382d1e140a00000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0a00000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfd2c5b9ac9f92877d70695f554b423830271f17110b0600000000000003060c1319232b353e46535e69727f8b97a2adbac6d3dfd4c8bcb1a79a8d807467574d42362a1e12050000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6dccfc3b6a99c908376675d5145392c20130700000000000000000000000000040d17202935414c55616e7b86929facb9c5d2dfd7cabdb0a4978a7d7164574a3e3124170b000000000000000000010e1b2834414e5b6774818e9aa7b4c1cdc7baaea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000008111a2129303940444f535b60656c70777c7f83878b8f92979597999b9fa2a9b3bebbafa59e9b97959892908d8a8784817d78736e69615f57524c443e342e271e170f05000000000000000000000000000f1c2935424f5c6875828f9ba8a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a99d9084776a5d5144372a1e11000a1724313d4a5764707d8a97a3b0bdc9c9c9c3b6a99c908376695d5043362a3744505d6a7783909daab6c3c9c9c9bdb0a3968a7d7063574a3d3024170a000f1b2835424e5b6875818e9ba8b4c1c8c8c8c8c5b8ac9f928579665c5044382c1f1206000713202d3a4653606d798693a0acb9bbbbbbbbbbbbbbb7aa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3dfd2c5b9ada196897c6f6353493f4956626f7c8996a1adb9c5d2dfd7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000006111c26303b45505a606d79839198a3aebac1ccccc0b5aba1968f82756d62584e43392f241815151515151515151515151e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b1515151515151515151413110d080100000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6160606060606060606060606060606060606060605c60616262646669696e73777b81878f939ea1a9b1b9c2cacfc6beb6afa49f92877d70695e53483e2f261c0c0200000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4231261b0f02000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3d9ccc0b3a6998d80736b60574d433a2f261e150d060000000000000000000001081119232a36424d57606d7985929fabb8c2cdd8d9cec3b7aa9d918477695e53463a2d2114070000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6dbcec1b4a89b8e817568554b4035291d10040000000000000000000000000000050e19242f3a46525e6875828e9ba8b5c1cedbd7cabdb0a4978a7d7164574a3e3124170b000000000000000000020f1c2935424f5c6875828f9ba8b5c2cec7baada194877a6e6154473b2e2114080100020202020000000000000000000000000000000000000000000000000000080f171e272e343d414950535b60646a6f73777b7f828587898a8c8e9297a2adbab6aa9e938f8a89878583817e7b7874706c65615f57534d46413b3228231d150c0500000000000000000000000000000f1c2935424f5c6875828f9ba8b5b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdbdbdbdbdb7aa9d9184776a5e51442e233744515e6a7784919daab7bdbdbdbdbdb1a4978a7e7164574b3e3124180b000f1c2935424f5c6875828f9ba8b5bbbbbbbbbbbbbaaea29886796d6053463a2d201307000713202d3a4653606d798693a0acaeaeaeaeaeaeaeaeaeaa9e9184776b5e5144382b1e1100000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e3ded1c4b8ab9e9184786c605346394653606c7884919eabb7c4cfdadcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000000000a151e29333e45515d676f7c86929fa6b0bac4d0c7bdb2a89e938b7f726a5f554b40352921170c0909090909090909111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e090909090909090907060401000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c676d6e6e6f717375787b7f84888e92999ea5adb3bbc3cccac3bcb4aca49f928c7f726b60574d42362c1d140a0000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569584e43372b1e1308000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265594f453b31281d150c030000000000000000000000000007111a25313b45515d6774808d9aa7b1bcc8d4ded1c5b8aca096877b6e6154483b2e2115070000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6dacdc0b3a79a8d8074675a4d412f24180d0100000000000000000000000000000008131e2a36414d566673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000004101d2a3743505d6a7683909da9b6c3d0c8bbaea295887b6f6255483c2f2214110d070f0f0f0f0b0a08040000000000000000000000000000000000000000000000050c151c23282f383f44495053585f6266696e7276787a7c7e808185929fabb8b5a89b8f817e7c7a787774716e696763605b53534d46423b3630292018120b030000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2b7aa9d9084776a5d5144372a1e11000c1825323f4b5865727e8b98a5b0b0b0b0b0b0b0ab9e9185786b554b4034283845515e6b7884919eabb0b0b0b0b0b0b0a5988b7e7265584b3f3225180c00101c2936434f5c6976828f9ca9aeaeaeaeaeaeaeaeb4aa94877a6d6154473a2e211407000713202d3a4653606d798693a0a2a2a2a2a2a2a2a2a2a2a29e9184776b5e5144382b1e1100000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce1d5c9bdb2a99a8d8074655b50443744505b6574808d9aa9b2bdc9d5e0d3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000030c17212935404b555f6a727f8b939ea8b2bdc7d0c4bab0a69f92867c6f675d51453e33291e140a00000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a79797979797979797979797979797979797979797979797a7a7b7c7d808285888c90959a9fa3abafb9bec5cbc5bebab1aaa39a938c80746d63594f453b31241a0b020000000000000713202d3a4653606d798693a0acb9c6d3dcd0c3b6a99d9083766a5f53473a3025190e050000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f33291f160b0300000000000000000000000000000009141f2935404b55626f7c88959fabb8c4d1ddd4c8bdb2a8988b7e7165584b3e2e23180c0000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8ccbfb2a5998c7f7266594c3f3326190700000000000000000000000000000000010e192530404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000005111e2b3844515e6b7784919eaab7c4d1c9bcafa396897c706356493d2f26201d181c1c1c1c1c171614100b0500000000000000000000000000000000000000000000030b12181d262d33383f44464e5355575e616569686d6f717376838f9ca9b6b2a5988b7f726f6d686a6764615e575653504947423c36312a251e170e0700000000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c2ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc3b7aa9d9084776a5d5144372a1e11000c1926323f4c5965727f8c98a3a3a3a3a3a3a3a3a39f928579675c5145382c3945525f6c7885929fa3a3a3a3a3a3a3a3a3998c7f7366594c403326190d00101d2a3643505d697683909ca2a2a2a2a2a2a2a2a2a2a194887b6e6155483b2e221508000713202d3a4653606d788693959595959595959595959595959184776b5e5144382b1e110000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3dfd2c5b9ada196897c6f6353493f333f4953636f7c8996a1adb9c5d2dfd7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000000050f18242f39434e58626d75828f96a1abb5c0ccccc1baaea3989183796d605a50453b30261c1106000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d4c8bbafa2978c878686868686868686868686868686868686868686868686868788898a8d8f9197999da0a7acafb5bdc1c8c6bfbbb4aea8a09892887f746e645b51473d33291f1108000000000000000713202d3a4653606d798693a0acb9c6d3ddd1c4b8ab9f95887c6f62564c41352920160d040000000000000000000000000005111d2935414c566773808d9aa6b3c0cdd9d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225180d0400000000000000000000000000000000030c18242f3947535f6a7683909da9b6c3d1dcd9cec1b4a89b8e817568554b4034281c100400000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000081a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000004111e2a3744515d6a7784909daab7c3d0ccbfb2a6998c7f7366584e4238302c292428282828282423211c1710080000000000000000000000000000000000000000000000070b141b22272d33373c4347494d535458565d6062646976838f9ca9b6b2a5988b7f7265615e565a5754524d4946443f3837312a261f19140d050000000000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0b7aa9d9084776a5d5144372a1e11000d192633404c5966737f8c96969696969696969696969886796d6053463a2d3844505c6679869296969696969696969696968d8073675a4d4034271a0d00111d2a3744505d6a77839095959595959595959595959595887c6f6255493c2f221609000713202d3a4653606d788688888888888888888888888888888884776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e3ded1c4b8ab9e9184786c605346392d394653606c7884919eabb8c4cfdadcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000000000007121d27313c46515b616d7a849199a4afbbc2cdcbbfb4aaa0958e81746c61574d42382e23170e040000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cbbfb3a89e979493939393939393939393939393939393939393939393939394959597999c9ea1a9aaacb1b9bbc0c4c1bcb8b5aeaaa29f9591867e726d645c53493f352b21170d00000000000000000713202d3a4653606d798693a0acb9c6d3e0d4c8bcb1a79a8d8174685e52463d32281f160d060000000000000000000000000b13202d3946525d687683909da9b6c3d0dcd8cbbeb1a5988b7e7265584b3f3225180c000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000007121d2b37434e5865727f8b98abb4bfcbd7ddd0c3b7aa9d908477675c5145382c1f130600000000000000010507070a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0808080706040100000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000003101c2936434f5c6976828f9ca9b5c2cfcfc2b6a99c8f83766a5f544a413a39352f353535353531302d28221a12080000000000000000000000000000000000000000000000020a11171b22272b32373b3c4246484c4c5254565c6976838f9ca9b6b2a5988b7f726558524c4e4b4846423d3937332d2b261f1a140d0802000000000000000000000000000000000000000f1c2935424f5c6875828f9ba8b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3aa9d9084776a5d5144372a1e11000d1a2734404d5a6773808a8a8a8a8a8a8a8a8a8a8a8a8a877a6d6154473a2e3a4653606d79868a8a8a8a8a8a8a8a8a8a8a8a8a8174675b4e4134281b0e00111e2b3744515e6a77848888888888888888888888888888887d7063564a3d3023170a0006121f2b3844505c66767c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce1d5c9beb2a99a8d8074655b5044372b3844505b6674808d9aa9b3bec9d5e0d3c7bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000010b151f2a343f46525e68707d87939fa6b0bbc5d0c6bcb1a79d928a7e71695e544a3f342820160c0200000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3dbd0c4bab0a8a2a09f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa0a1a1a2a4a6a8abadb3b7b8bcc0bbb9b7b4b1acaba39f98928c847c716c635b534a41372d23190f0500000000000000000713202d3a4653606d798693a0acb9c6d3e4d8cdc2b8ac9f92867a6d61594f443a31281f170f0a040000000000000000030b121c27303a4754616d7a86929facb9c5d2dfd7cabeb1a4978b7e7164584b3e3125180b000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000010f1b26323c4955626f7c8899a3aebac7d3dfd2c5b9ac9f9286796d6053463a2d201307000000000002080d111314141723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f322519141414141413110d08010000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000020e1b2835414e5b6874818e9ba7b4c1d1d0c4b7ab9f94887c6f665b524c4745404242424242423e3c39332c241a1005000000000000000000000000000000000000000000000000060b11171b1f262b2e31363a3b3f414547505c6976838f9ca9b6b2a5988b7f7265584c41413e3b3a36302d2b27221b1a150e09030000000000000000000000000000000000000000000f1c2935424f5c6875828f9ba6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a69d9084776a5d5144372a1e11000915222f3c4855626f7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d796d6053473a2d3a4653606d787d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f6255493c2f221609000815222f3b4855626e7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7a6d6054473a2d2114070003101c28343f4a545f6a6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6e695f53473a2d21140800000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada197897c6f6353493f3328333f4a5463707c8997a1adb9c6d2dfd7cbc0b5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000030d18222935414c56606b73808c949fa9b3becacec3b9afa59f92857b6e665c50443d32281e130800000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e1d6ccc2bab3afadacacacacacacacacacacacacacacacacacacacacacacacadadaeafb0b3b5b8b9bec3c7beb6afacaaa8a7a09d99928e867f786f6a615a514941382f251c11080000000000000000000713202d3a4653606d798693a0acb9c6d3dfdfd3c6baaea2988e81746b60564c433a3129211b15100c0707060406070a0c151c232e39424f5964717e8a99a3afbbc7d4e0d8ccc0b6ac978a7d7064574a3d3124170a000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000a13202d3a4653606d7986929facb9c5d2dfd3c7bbafa399887c6f6255493c2f22160900000000040c13191d2021212123303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225212121212121201d19130c0400000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000d1a2733404d5a6673808d99abb5c0cbd3c7bbb0a69c8f82786c615e5653514b4f4f4f4f4f4f4a49443e362c22170b0000000000000000000000000000000000000000000000000000060b0f151b1f21252a2d2e2f353943505c6976838f9ca9afafa5988b7f7265584c3f30312e2d2a25201f1b17110e090300000000000000000000000000000000000000000000000f1c2935424f5c6875828f99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999084776a5d5144372a1e11000815212e3a47535f6a6f70707070707070707070707070706d675d5145382c3844505c666d70707070707070707070707070706f6a5f54473b2e221508000814212e3a47535f696e6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6d675d5145392c20130600000b17232e38424e585f62626262626262626262626262626262615f574d42372b1e12060000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c4b8ab9e9184786c605346392d222d394653606c7985919eabb8c4cfdadcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000006101925303a444f59606d78839097a2adbac0ccccc0baada2979082786d60594f443a3024191006000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e8ded4ccc4bfbbbab9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9babbbcbdc0c2c4c6c9c7bdb5aca49f9d9b9895908b86817b726d66605850483f372f261d130a000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe2d6cabfb4aa9d93897d70685e554b433b332b271f1d18141312101314151b1e272e34404a54616b7683909cabb5c0cbd7e0d4c8bbafa49a887b6f6255483c2f221509000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000006131f2c3845515c667683909da9b6c3d0dcd7cbc0b5ab978b7e7164584b3e3125180b000000040e161e25292d2e2e2e2e303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f322e2e2e2e2e2e2d2c29241e160d04000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000b1825323e4b5865717e8b99a3afbbc7d4cdc2b7aa9f948d80756d6863605d555c5b5b5b5b5b575550483e33281c1004000000000000000000000000000000000000000000000000000000030a0f13151a1e212124293643505c6976838f9ca3a3a3a3988b7f7265584c3f322521201e1a13120f0b0600000000000000000000000000000000000000000000000000000f1c2935424f5c6875818d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d83776a5d5144372a1e110006121f2b37434e585f626363636363636363636363636363605d554b403529343f4a545c606363636363636363636363636363625f584e43372b1f13060006121e2b37424d575f62626262626262626262626262626262605d554b4135291d1104000006111c26303c464e535555555555555555555555555555555555534d453c31261a0e020000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce1d5c9beb3a99a8d8074665b5044382b1f2b3844505b6674818d9aa9b3bec9d5e0d3c7bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000000008131e28323d44505c666e7b85929fa5afb9c3cfcabeb3a99f948c80736b60564c41352922180d030004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3f0e6ded6d0cbc8c7c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c7c8c8cacccfd1d2cbc0b5aba39a93918e8c88837f7a746e69605c544e463e362e251d140b01000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe7dbd0c6bcafa59e91847a6d675d554d453e37322c292421201f1c1f2021262b30394044515c66707d8a949fabbdc7d1dcdfd2c6b9ac9f9386796d6053473a2d201407000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000004101c2834404b546774818d9aa7b4c0cddadcd1bfb2a5998c7f7266594c3f3326190c0000020c1620283035393a3b3b3b3b3d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3b3b3b3b3b3b3b3a39352f281f160c010000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000714212e3a4754616d7a86929facb9c5cfd3c7bbb0a69d928d817a74706d676969686868686864615a5044392d21140800000000000000000000000000000000000000000000000000000000000306090e12141519293643505c6976838f9696969696968b7f7265584c3f32251914120e090503000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080807f7265584c3f3225190c00030f1a26313c464e5355575757575757575757575757575753514b43392f242e38424a5053575757575757575757575757575755544e463c32261b0f0300020e1a26313c454d535555555555555555555555555555555554514b433a2f24180d010000000a141e2a343c4347484848484848484848484848484848484847423c332a1f150900000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada197897c7063544a3f33281c28333f4a5463707c8997a1adb9c6d2dfd7cbc0b5ab9c8f8276685d5246392d2013080000000000000000000000000000000000000000000000000000000000020c162028343f4a545e69717e8a939da7b1bcc6d0c5bbb0a69f93877d70685d52463f342a1f150b0104111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3f0e9e0d8d2cdcac8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c9cacbcdcfd2d3d6d4c7bbafa399928884817f7c77726d68615e56514a423d342c241c130b0200000000000000000000000713202d3a4653606d798693a0acb9c6d3dfede2d7cec1b9aca0969083796d675f575047433c38352f2e2d2c292c2d2e31373c424a515b606d7883909da6b0bccfd9e3ddd0c3b6aa9d908377675c5145382c1f1306000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000c18232e3e4b5864717e8b97a4b1becad7dacdc0b3a79a8d8074675a4d4134271a0e000008131e28323a41464747474747474a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c47474747474747474745413a31281e13080000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000713202d3946525e6876828f9ca9b3bec9d5ccc2b8aea49d938f86817c7a7776757575757575716c6155493c3023160a0000000000000000000000000000000000000000000000000000000000000000020507081d293643505c69768289898989898989897f7265584c3f3225190c0502000000000000000000000000000000000000000000000000000000000000000a1724303d4956616c7173737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373726d62564a3e3125180b00000a15202a343c4347484a4a4a4a4a4a4a4a4a4a4a4a4a4a4745403931271d2630383f44464a4a4a4a4a4a4a4a4a4a4a4a4a4a4947433c342a20150a00000009151f2a333c4247484848484848484848484848484848484745413a31281d130700000000020c18222a31373a3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3b3a37312a21180e030000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c4b8ab9e9185786c605346392d2217222d3a4653606d7985929eabb8c5cfdadcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000040e17232e38424d57616c74818e95a0aab4bfcbcdc2bbafa49991847a6d615b51463c31271d120700111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3eae0d7cec7c1bdbcbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbcbdbec0c3c5c6cad0c5b9ac9f92867f7b77736f6a65615e56524d444039302b221a120a010000000000000000000000000713202d3a4653606d798693a0acb9c6d3dff3e9e0d5c9bdb2a89f958f82796e69615a544e4745403d3a3a3834383a3b3d43474d545c606d74818e95a0acb8c2cde1e1d5c9bdb2a8998c7f7366554b4034291c1004000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000071623303c4956636f7c8996a2afbcc9d5dbcec2b5a89b8f8275685c4f4235291c0f00010d1925303a444c52545454545454545663707d8996a3b0bcc9d6d8cbbeb2a5988b7f72655854545454545454545454524c433a2f24190d0100000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000005111e2a36414c5664717e8b97a1adb9c1ccd3cac0b6aea59e98928e898684838282828282827e7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c7c7c7c7c7c7c7c7d7b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000815212d3945505a61646666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666665625b51463a2e2216090000030e18222a31373a3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a38352f271f151e262e34383a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b37322a22190e04000000030e18212a31373a3b3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3a39352f281f160c01000000000006101820262b2e2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2e2d2b261f180f06000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce1d5c9beb3a99a8d8174665b5044382b1c121f2b3844505c6674818d9aa9b3bec9d5e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d79839198a3aebac1ccccc0b5aba1968f82756d62584e43392f24180f05111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e3d8cec5bcb5b1afaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeafafb0b1b3b6b8babfc5c7bbafa399928c8783807a746e69605b534c443b332a2019100800000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dff2e9e2d9cec4bab1a79f948f837b706c62605853514b49474644404547484a4e53575f666d747f8c939da7b1bccad4deded2c5b9aca196887c6f6255483c2f23180c00000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbd2dddcd0c3b6a99d9083766a5d5043372a1d100005111d2935414c565e616161616161616163707d8996a3b0bcc9d6d8cbbeb2a5988b7f726561616161616161616161605d564c4135291d110400000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000010d1925303a4754606d7a85929ea5afbac3cbd6c8c0b7afaaa29f9a999391908f8e8e8e8e8a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000815222e3b47545f6a6f70707070707070706e695e52463a2d20140700000000000000000000000000000000000000000000000000000000000000000005111d28343e485056585a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a585651493f34291e120600000006101820262b2e2f30303030303030303030303030302d2c29241d150d141c23282b2d30303030303030303030303030302f2e2b26201910070000000000060f181f262b2e2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2d2c29241d160d0400000000000000060e151a1f212222222222222222222222222222222222211e1a150e060000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada197897c7063544a3f33281c101c28343f4a5463707d8997a1adb9c6d2dfd7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000000000000000a151e29333e45515d676f7c86929fa6b0bac4d0c7bdb2a89e938b7f726a5f554b40352921170c111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3ddd2c7bcb3aaa4a2a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a2a3a3a4a7a9acaeb4b8babfb5aba39f9895908c86807b726c655e564d453b332920160c02000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe9e0d7d0cac6c2b9b0a69f9590857d766f6a64605d55565453504b51535457585f62696e78808c919ca5afb9c3cedce3d7cbbfb4ab9e9184786a5f53473b2e1d120700000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000815212e3b4854616e7b8794a1b5c0ccd7ddd0c4b7aa9d9184776a5e5144372b1e11000713202d3946525e686d6e6e6e6e6e6e6e6e707d8996a3b0bcc9d6d8cbbeb2a5988b7f726e6e6e6e6e6e6e6e6e6e6e6d685d5245392c20130600000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000813202c3945515d67717e8a939ea8b1b9c2cad0c9c1bcb4aeacaba49f9d9c9c9b9b9b98887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e585f626363636363636363615e574d42362a1e1205000000000000000000000000000000000000000000000000000000000000000000000c17222d363e45494b4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4c4a463f372d23180d0100000000060e151a1f21222424242424242424242424242424201f1d18120b030a11171c1f20242424242424242424242424242422221f1b150e0700000000000000060e151a1e212222222222222222222222222222222221201d18130c04000000000000000000030a0f1215151515151515151515151515151515151514120e090300000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c4b8ab9e9185786c605346392d22170b17232e3a4653606d7985929eabb8c5cfdbdcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000000000000000030c17212935404b555f6a727f8b939ea8b2bdc7d0c4baafa59f92867c6f675d51453e33291e140a1e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d9cdc1b5aaa1999595959595959595959595959595959595959595959595959697989a9c9fa2aaacaeb4bbb5afaca7a09d98928d867f776d685f574d453b32281e1308000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe2d7cec5bebab8bab8b0a7a097928a827c75716d67666361605c555c606163676a6f757b838d929ca3adb7c1cbd5dfdcd3c7baaea3998d807467584e43372b1f0b0100000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000714212d3a4754606d7a8799a4afbbc7d4ddd1c4b7aa9e9184776b5e5144382b1e11000714212e3a4754616d7a7a7a7a7a7a7a7a7a7a7e8a97a4b1bdcad7d9ccbfb2a6998c7f7a7a7a7a7a7a7a7a7a7a7a7a7a6d6054473a2d21140700000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000004111d2935414b55616c75818e96a0a7b0babfc6cecec6bfbab8b5afacaaa9a8a8a89f9285796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000030f1b26323c464e5455565656565656565654524d453b30251a0e020000000000000000000000000000000000000000000000000000000000000000000006101b242d34393d3e404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040403f3e3a342d251b1107000000000000030a0f12151517171717171717171717171717171413100c07010000060b10121317171717171717171717171717171615130f0a0400000000000000000003090e1214151515151515151515151515151515151413110d07010000000000000000000000000306080909090909090909090909090909090908080602000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d5c9beb3a99a8d8174665b5044382b1c1106121f2c3844505c6674818e9aa9b3becad6e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000050f18242f39434e58626d75828f96a1abb5c0ccccc1baaea3989083796d605a50453b30261c111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d6cabdb1a4998e898888888888888888888888888888888888888888888888898a8b8d9092989b9fa3aaafb5bbb9b1acaaa29f99928c827a6e695f574d443a3024190d030000000000000000000000000713202d3a4653606d798693a0acb9c6d3e7dbd0c5bcb4aeabaeb4b9b1a9a29f948f87827e797572706d6d666b676d6e7073777c818790959da4adb5bfc9d2ddddd5c9beb3a99f92867b6e6155483c32261b0f0000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000613202d394653606c7986939facb9c6d2ded1c4b8ab9e9185786b5e5245382b1f1200111d2a3744505d6a77838787878787878787878a909aa6b2bfcbd8dacdc0b4a89c918c8787878787878787878787878175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000010d18242f3a43505a616d7a8490959fa6aeb4bcc1c5c8cac6c5c0bbb9b7b6b5b5a99c908376655b5044372b1f12050000000000000000000000000000000000000000000000000000000000000000000000000a15202a343c43474949494949494949494846423b33291f140900000000000000000000000000000000000000000000000000000000000000000000000009121b22282d30313333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333332312e29231b1309000000000000000000030608090a0a0a0a0a0a0a0a0a0a0a0a0a0a070604000000000000000306070a0a0a0a0a0a0a0a0a0a0a0a0a0a090806030000000000000000000000000002060808090909090909090909090909090909070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada197897c7063544a3f33281c0a03101c28343f4a5463707d8997a2adb9c6d2dfd7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000000000000000007121d27313c46515b616d7a849199a4afbbc2cdcbbfb4aaa0958d80746c61574d42382e23171e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c7c7d7e808385898e92989fa3abb1b9bcb8b4aeaba39f948f847b6e695e564c4135291f150b0100000000000000000000000713202d3a4653606d798693a0acb9c6d3e2d6cabeb4aaa29fa2aaafb7b3ada69f9a938f8a85827f7c7a797878797a7b7d8083888e92999fa7aeb6bfc7d1dbddd4cbc2b9ada1978d8073695f53463a2a20150a0000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000005121f2b3744505b657885929fabb8c5d2ded2c5b8ab9f9285786c5f5245392c1f1200111d2a3744505d6a7783909494949494949494979aa2acb7c2cedadcd0c4b8ada39c9994949494949494949494948e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000007131d28313e46525e686e7b8390949fa2aaafb7b8bcc1c3c5c7c7c6c4c3c0b4a79a8d81746753493f33271b0f03000000000000000000000000000000000000000000000000000000000000000000000000040e19222a32373b3c3d3d3d3d3d3d3d3d3b3a36302921170d03000000000000000000000000000000000000000000000000000000000000000000000000000910171d212425272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272525221e1811090100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c5b8ab9e9285796d6053463a2d22170b000c17232e3a4653606d7985929eabb8c5d0dbdcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000000000000000000010b151f2a343f46525e68707d87939fa6b0bbc5d0c6bcb1a79d928a7e70695e544a3f342820162b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6f7070717476797d81868d92999fa7b0b8c2bfbab4aea69e9691847b6e685d52463d31271d120700000000000000000000000713202d3a4653606d798693a0acb9c6d3dfd3c6baaea29892989ea5afbbbab0aca49f9c98928e8c89878685858586878a8d90959b9fa3abb1b9c0c8d1d9ded5cbc2b9b0a69e92857a6d60574d42362a1e12050000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000030f1b27333f495e6b7885919eabb8c4d1ded2c5b8ac9f9285796c5f5246392c1f1300111d2a3744505d6a7783909da1a1a1a1a1a1a1a4a6acb4bec8d3dfe0d5cabfb6ada8a6a1a1a1a1a1a1a1a1a1a19b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000010c161f2a36414c565e696e7a828c92989ea5aaacb1b4b6b9babfbbbcbcc0b5ab988b7e7165584b3e2d22170b000000000000000000000000000000000000000000000000000000000000000000000000000007101920262b2e2f30303030303030302e2d2a251f170f05000000000000000000000000000000000000000000000000000000000000000000000000000000060c111517181a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a191816120d07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070708090a0b0b0c0c0b0b0a090807060401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d5c9beb3a99a8d8174665c5044382b1c11060006121f2c3844505c6674818e9ba9b3becad6e0d3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000000030d18222935414c56606b73808c949fa9b3becacec3b9aea49f92857b6e665c50443d32281e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6262626262626262626262626262626262626262626263646567666d70757a808790959fa6b0b8c2c6bfbab0a8a19691837a6d61594f43392f24180c00000000000000000000000713202d3a4653606d798693a0acb9c6d3ded2c5b8ab9f92858f939ea9b3bbbeb6afacaaa29f9b999694989291929894969a9da0a7acafb5bdc2cbd2dadbd6ccc3b9b0a69e938b7f72685d52453b31261a0e020000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000006121f2b3844505b667885929fabb8c5d2ded1c5b8ab9e9285786b5f5245382c1f1200111d2a3744505d6a7783909daaadadadadadadb1b2b7bec6d0dae5e6dbd1c8bfb8b4b2adadadadadadadadada89b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000040d1925303a444d575e686d797f868e93999da0a7a7aaacaeb4afafafafafa499897c6f6256493c2f231606000000000000000000000000000000000000000000000000000000000000000000000000000000070e151b1f2222232323232323232321201e1a140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000005080a0b0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0c0b090601000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708070c101313141516171718191818171716151413110d070a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada197897d7063544a3f34281c0a000003101c28343f4a5463707d8a97a2adbac6d3dfd7cbc0b5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000006101925303a444f59606d78839097a2adbac0cccbc0baada2979082786d60594f443a30242b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d61555555555555555555555555555555555555555555565758545c6063686d737c838f949fa6b0bbc5cbc2bab2a8a0958e81746b60554b4035291d1004000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82828f97a1a9b3bbc0bbb9b3aeaba8a5a3aaa29f9e9fa2aaa3a6aaacb1b9bbc0c7cfd4dcd7d0cac1bab1a79f948f82786d60564c4133291f1409000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000613202d394653606c7986939facb9c6d2ded1c4b8ab9e9185786b5e5245382b1f1200111d2a3744505d6a7783909daab6babababababdbfc2c8d0d8e2ecede3dad1cac4c0bfbabababababababab4a89b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000008131e28323b454d565d676d737b81888c9195989a9d9fa3aba2a3a3a3a39f93867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13151616161616161616161514120e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010407090e12141517181c1f202122222324252525252424232220201d1819171514120e0907040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c5b8ab9e9285796d6053463a2e23170b0000000c17232e3a4653606d7985929fabb8c5d0dbdcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000000000000000000000008131e28323d44505c666e7b85929fa5afb9c3cecabeb3a99f948c7f736b60564c4135292b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d61544848484848484848484848484848484848484849494a4b4a5053565d606a6f79828f949fa9b3becaccc4bab1a79e93897d70675d5145382c1f150a000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827a859197a2a9b1bbc0c5bebab8b5b2afb4aeababacaeb4b0b3b6b8bcc3c7cbd1d9d6d1cbc5bebaafa8a0959082796d665c50433a2f21180d03000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000714212d3a4754606d7a879aa4afbbc8d4ddd1c4b7aa9e9184776b5e5144382b1e1100111d2a3744505d6a7783909daab6c3c7c7c7c7cad1d2d5dae1e8f1f5ece3dbd5d0cdccc7c7c7c7c7c7c7c1b4a89b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000020c162029333b444c555c60696e757b7f84888b8e90929994959696969696918477675d5145392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090a0a0a0a0a0a0a0a080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060708090a0b0b0b0c0c0b0b0a09080706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080d1113141a1e20212423282c2d2e2e2f3031323232313131302e2d2c2924262421211e1a1413110d08040000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d5c9beb3a99a8e8174665c5044382b1c110600000006121f2c3844515c6674818e9baab3becad6e0d3c7bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000020c162028343f4a545e69717e8a939da7b1bcc6cfc5bbb0a69f92877d6f685d52453f342a3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3c3d3d3e3f44464c52585f676d79828f97a1adb9c3cdccc3b9afa59e9184796d6053473c32271b0f030000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82757c859297a0a7afb5bdc2c6c5c1bfbcbebab8b8b8babfbdc0c3c4c8cdd4d7d3d0cac7c0bbb3ada59d9691837a6d675d544a3f31281e0f0600000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000815212e3b4854616e7b8794a1b6c0ccd8ddd0c3b7aa9d9084776a5d5144372a1e1100111d2a3744505d6a7783909daab6c1c1c1c1c1c1c5c6c9cfd6dfe8f1e7ddd5cdc8c4c3c1c1c1c1c1c1c1c1b4a89b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000050e172029323a434b51575e61696e73777c7e818386878888898989898989817568554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060709060b101213141617171818191818171716151312100c07090706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c1013191d2021252a2d2e312e34383a3a3b3c3d3e3e3f3f3e3e3d3c3b3a39352f33312e2d2a2521201d1913100c0701000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada197897d7063544a3f34281c0a0000000004101c2834404a5463707d8a98a2aebac6d3dfd7cbc0b5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000000040e17232e38424d57616c74818e95a0aab4bfcbcdc2bbafa39991847a6d605b51463c313744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f30312e34383a41454e555d676d7a85929ea7b1bcc8d4ccc1b9aca0968b7e7165584e43372b1f13060000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82756f7c8590959fa3abb0b9bbbfc5c7cbcac6c5c4c5c6cad0cdd0d1d2d1d1cbc7c5bfbab5afa9a29f938e847b6e685d554b42382e1f160c0000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbd2dddccfc3b6a99c908376695d5043362a1d1000111d2a3744505d6a7783909daab4b4b4b4b4b4b4b8b9bec5cdd6e1eadfd5cbc3bcb8b6b4b4b4b4b4b4b4b4b4a89b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000050e172028313940454d52575f61666a6f727477797a7b7c7c7c7c7c7c7d7b6e6155483b2f24180c00000000000000000001050707090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909080705020000000000000000000000000000000000000000000000000000000000000000000000000205060c1012131518171c1f2021232424252525252524242321201f1c1818161313100c0706020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e12181c1f24292c2d30363a3b3d404045464748494a4a4b4c4b4b4a4a494847454042403d3b3a36312d2c29241f1c18120d08020000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c5b8ab9e9285796d6053463a2e23170b00000000000c18232e3a4653606d7985929fabb8c5d0dbdcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d79839198a3aebac1cccbc0b5aba1968f81756d62584e43392f44515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2222222222222222222222222222222222232423282b2f353c434b555e68717e8b95a0acb8c4d1d5c9bdb2a89d9083776a6054473b2e2215080000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82756a6f7b838d92999fa6acaeb5b9babfc1c3c5c7cbd1c9c9d0cac7c5c4c2bfbab9b4aeaba39f97928a81796e695e564c433930261c0d040000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6dbcec1b4a89b8e8175685b4e4235281b0f00111d2a3744505d6a7783909da8a8a8a8a8a8a8a8abadb3bbc5cfdae4d9cdc3b9b1acaaa8a8a8a8a8a8a8a8a8a89b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000050e161f272f343b42464d5355585f626567666d6d6e6f7070707070706e695f53463a2d1d12070000000000000002080d1113141616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161514120e0903000000000000000000000000000000000000000000000000000000000000000105090e1214171c1f20222523282b2d2e2f303131323232313130302e2d2c28232522201f1c1814120f090502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c141a1c23282c2f35393a3e4246484a4d4b51535455555657585858585757565553514b4f4c4a4846423e3a3935302c29231d19130d0802000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb3a99a8e8174665c5044382c1c1106000000000007131f2c3845515c6775818e9baab4becad6e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000a151e29333e45515d676f7c86929fa6b0bac4d0c7bdb2a89e938b7e726a5f554b403444515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21151515151515151515151515151515161617171c1f24293139434c56606c7883909daab6c3ced9cec4b8ab9f95887c6f6255493c2f24190d0100000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569696e7980878f949b9fa3abacaeb4b5b7b9babfbbbcbcbbbfbab8b7b6b4aeacaaa29f99928e857e746d675e574d443a31271e140a000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbd8d9cdc0b3a69a8d8073675a4d4034271a0d00111d2a3744505d6a7783909b9b9b9b9b9b9b9b9b9ea1a9b3bec9d5e0d4c8bcb1a7a09d9b9b9b9b9b9b9b9b9b9b9b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000040d151d232930363b4246484e535558545c60616162636363636363615f574d42372b1e0b01000000000000050c13191d202123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232321201e1a140d050000000000000000000000000000000000000000000000000000000002080d11141a1e2123282c2d2f312e34383a3b3c3d3e3e3e3f3f3e3e3d3c3b3a38342e322f2d2c2823211f1a15110e09020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b12181f252a2e34383a4145474b4d52545759545c6061616263646565656464646361605d555b595754534d4b4745413a38342f29251e19130b06000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada197897d7063544a3f34281c1003000000000004101c2834404b5564707d8a98a2aebac6d3dfd7cbc0b5ab9c8f8276685d5246392d2013080000000000000000000000000000000000000000000000000000000000000000000000030c17212935404b555f6a727f8b939ea8b2bdc7cfc4baafa59f92867c6f675c51453e44515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140808080808080808080808080808090a060b1013191f27313a44505b65727f8c98a7b1bcc8d4d4c8bcb1a79a8d817467554c4135291d110400000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695f676d747c82898e92999c9fa3aba8aaacaeb4aeafafafb4aeacaba9aaa39f9c98928d87817b716c605d554d453b32281f150c02000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbfb2a5988c7f7265594c3f322619060000000000000000000000000000000000000004111d2935404b556874818e9ba7b4c1cedad8cbbfb2a5988c7f7265594c3f3226190c00111d2a3744505d6a77838e8e8e8e8e8e8e8e8e8e9297a1adb9c6d2ded1c4b8aca095908e8e8e8e8e8e8e8e8e8e8e8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000030b12181f252a31363a3c4347484b4a505354555556565656565655534d453c31261a0e000000000000050e171e252a2d2e3030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302e2d2a251f170f0500000000000000000000000000000000000000000000000000040a0f13191d20262a2d2e34383a3c3e413f444647494a4a4b4b4c4b4b4a4a4948464440413e3c3a38342e2e2b26201e1914100b0400000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171d24293036394044464c525458575e61646669666d6d6e6f70717172727171706f6e6d676a686664615e575754524c47454039353029241e17110a020000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c5b8ab9e9285796d6053463a2e23170c000000000000000c18232e3a4753606d7985929fabb8c5d0dbdcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000000000000000050f18242f39434e58626d75828f96a1abb5c0ccccc1baaea2989083796d605a504544515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000003080d151f27333f4953616e7b8895a0acb8c5d1d8cdc3b7aa9d908477675d5145392c20130600000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569555c606a6f767d82868c8f9299999b9d9fa3aaa2a2a3a2aaa29f9e9c9998928f8c85807b756e69615a514b433b332920160d0300000000000000000713202d3a4653606d798693a0acb9c6d3d9cdc0b3a69a8d8073675a4d402d22170b000000000000000000000000000000000000000613202c3945515d677784919daab7c4d0ddd6cabfb4aa978a7d7164574a3e3124170b000d1a2733404d5a6673808181818181818181818185929eabb8c5d1ddd0c3b6aa9d90838181818181818181818181817f7265584c3f3225190c00000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000001070c141a1f262a2d32373b3c3f3f44464748494949494949494846423c332a1f14090000000000020c1720293036393a3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3b3a36302921170d0300000000000000000000000000000000000000000000040a0f151b1e252a2d31363a3b3f4446484b4d4a50535456575758585858585757565453514a4e4b494645403b3a37312d2a251f1b16100b0500000000000000000000000000000000000000000000000000000000000000000000000000060b141b22272f353b42464a5153565d606569696e70737578797a7b7c7d7d7e7f7e7e7d7d7c7b7a79777573706e696764605d5653514b46413a353027221b140b0500000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb3a99a8e8174665c5044382c1c11060000000000000007131f2c3845515c6775818e9baab4bfcad6e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000007121d27313c46515b616d7a849199a4afbbc2cdcabfb4aaa0958d80746c61574d42515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000000030d17222d3846535f697784909daab7c3d0ddd2c6b9ac9f93867a6d6054473a2d21140700000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c51585f626b70757a7f83868a8c8e9092989495969695949892918f8c8986837f7a746e69615e575045403a312921170e040000000000000000000713202d3a4653606d798693a0acb9c6d3dbcec1b4a89b8e81756853493f33271b0f030000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6d2dfd3c6baaea298887b6e6255483b2f221508000c1926323f4b58636e7375757575757575757576838f9ca9b6c2cfd8cbbeb2a5988b7f757575757575757575757575726d62564a3e3124180b00000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000002090e141a1e21262b2e2f2e34383a3a3b3c3d3d3d3d3d3d3b3a37312a21180e03000000000008131e29323a4146474949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494846423b33291f1409000000000000000000000000000000000000000002090e161b20272b3036393b4246484a505355585a545c6061626364646565656464636361605c545a585553514b4847433c3a36302c27211c160e090300000000000000000000000000000000000000000000000000000000000000000000070f181d262d333940454d52545c6064686d7175787b7d80828586878888898a8b8b8b8b8a8a8988868584827f7d7b7774716d6864605c55524c45413a332d261d170e0700000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada297897d7063544a3f34281c0a000000000000000004101c2934404b5564707d8a98a2aebac6d3dfd7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a343f46525e68707d87939fa6b0bbc5d0c6bcb1a79d928a7d70695e544a515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000006111b2a36424d576875828f9ba8b5c2cedbd4c7bbafa499897d706356493d3023160a00000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4e53596063686e72767a7d8082848687888889898887868584827f7c7976726d68615e57534d453e352f281f170f05000000000000000000000713202d3a4653606d798693a0acb9c6d3dccfc2b6a99c8f8376655b5044372b1f12060000000000000000000000000000000000030f1c28333f4a5463707c8999a4afbbc7d4dfd2c5b8ac9f9285796c605346392d201306000a17232f3b47525c636668686868686868686976838f9ca9b6c2cfd8cbbeb2a5988b7f72686868686868686868686865625b51463a2e22160900000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000003090e12151b1f212223282b2d2e2e2f3030303030302e2d2b261f180f060000000000010d1925303a444c525456565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565654524d453b30251a0e02000000000000000000000000000000000000060b141921272c32373a4146474d5355545c6062646769666d6e6f7071717172727171706f6e6d6669676562605c5555534e4746423b38322c27211a150c070000000000000000000000000000000000000000000000000000000000000000061119212a2f383f444b51575e61666d70757a7e8285878a8c8f9197949495969798989897979796949892918e8c8a8784817e7a75716d67615e56524c443f382f292019110900000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c5b8ab9e9285796d6053463a2e23170c0000000000000000000c18232f3a4753606d7985929facb8c5d0dbdcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000000000000000000000000000030d18222935414c56606b73808c949fa9b3becacec3b9aea49e92857b6e665b50515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000e1a2631414e5a6774818d9aa7b4c0cddad7ccc0b5ab998c7f7266594c3f3326190c00000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f43474f54565e6165676d70737577797a7b7b7c7c7c7b7a797876736f6d6765605d56534d46423b3329241d160d0500000000000000000000000713202d3a4653606d798693a0acb9c6d3ded1c4b8ab9e9185796c605346392d22170b010000000000000000000000000000000006121f2b3844505b6673808c99abb5c0ccd7dcd0c3b6a99d908376665b5044382b1f12060007131f2a36404a52585a5b5b5b5b5b5b5b5c6976838f9ca9b6c2cfd8cbbeb2a5988b7f72655b5b5b5b5b5b5b5b5b5b585651493f34291e120600000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000002050a0f121515171c1f2021222223232323232322211e1a140e0600000000000005111d2a36414c565e61636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363615e574d42362a1e120500000000000000000000000000000000020a11171f252a32383c43474c5254575f6165666d6f71747678797a7c7d7d7e7e7f7e7e7d7d7c7b79787674716f6d6765625f5854524d48443d38332b261f18120b0300000000000000000000000000000000000000000000000000000000030a1117232b333c414950555d60696e74797d82868b8f929797999c9ea1a9a1a2a3a4a4a5a5a4a4a3a2aaa29f9d9b999796918e8a86827d79736d68605d565049413b322b231b1209010000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb3a99a8e8174665c5144382c1c110600000000000000000007131f2c3845515d6775828e9baab4bfcad6e0d3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000006101925303a444f59606d78839097a2adbac0cccbc0b9ada2979082786c60594f5e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000000000009192633404c5966737f8c99a6b2bfccd9ddd2c0b3a79a8d8074675a4d4134271a0e01000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f423d44484c5254555d60636668666d6d6e6f6f706f6e6d676b696663605c5554524c46423b3631292118130c040000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfd2c6b9ada197897c6f6253493f33271d1207000000000000000000000000000000040d16202d394653606c7884919eabb7c4d2ddd7ccc0b5ab9a8d817467544a3f33281c0f0300020e19242e3840474b4d4e4e4e4e4e4e505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584e4e4e4e4e4e4e4e4e4c4a463f372d23180d0100000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000030608060b1012131415161616161616161514120e0903000000000000000713202d3946525e686d6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6e695e52463a2d201407000000000000000000000000000000050b141b222730363d43484e54565e6165696e7275797c7e8083848687898a8a8b8b8b8b8b8a8a8987868583817e7c7976726e6a66615e56544f48443d373128231d150c050000000000000000000000000000000000000000000000000000030c151c2328353d454d535b60676d737b80858a8e92989c9ea1a9a6a8abadb3aeafb0b0b1b2b1b1b0b0afb4aeacaaa8a6a8a09e9a99928f8a85807a736d68605b534d443d352d241b1309010000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baada297897d7063544a4034281c100400000000000000000004101d2935404b5564717d8a98a2aebac6d3e0d7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d44505c666e7b85929fa5afb9c3cecabeb3a99f948c7f736b60565e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8dbcec1b4a89b8e8175685b4e4235281b0f02000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4232383b4146474b51535759545c6061616263636261605d555c595653514b4745413a36312a251f170f0701000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e1d5c9beb3a99a8d8073655b5044392f23180f0500000000000000000000000000010c161f2a36414d5663707d8a96a1adb9c5d2e0d4c7bbafa4998a7d7164574a3e2d22170b00000008121c262e363b3f40424242424243505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c42424242424242423f3e3a342d251b11060000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000306070708090a0a0a0a0a0a080705020000000000000000000714212e3a4754616d7a7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7b6e6154483b2e2115080000000000000000000000000000070e161d262d333b42464f54586062686d72777b7e8285888b8d8f9192999596979798989897979696999391908d8b8886827f7b77726e69636059554f47423c342e271e170f08000000000000000000000000000000000000000000000000000a151e262e343f474f575f656c71797f868d92979b9fa3aaabadb3b3b5b8b9bebbbbbcbdbebebebebdbdbcbfbab8b7b5b2b2acaaaba39f9b97928c86807a716c655e564f473f362d251b1309000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded2c5b8ab9f9285796d6053463a2e23180c00000000000000000000000c18242f3a4753606d7986929facb8c5d0dbdcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000000000000000000000000000000020c162028343f4a545e69717e8a939da7b1bcc6cfc5bbb0a69f92877d6f685d5e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddadbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f42362c3036393b4045474a4d4a50535455555656555453514b504c494645403a39352f2a251f1a140d050000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e6dacfc4b7aa9e9184786c60554b40342921170d060000000000000000000000020a131d28313a46525e6875828f9ba8b2bdc9d5dfd2c6b9ac9f93867a6d6154473a2e211406000000000a141c242a2f3233353535353643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3535353535353532312e29231b1309000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989897f7366594c403326190d0000000000000000000000000008101920282f383f444d525960636a6f757a7f83888b8f9298979a9c9e9fa3aba3a4a4a4a5a5a4a4a3aba49f9e9c9a9898928f8b88847f7b75706b636159534d4540393029211a1109000000000000000000000000000000000000000000000006111c2630383f44515960696e777e848c92989ea1a9acaeb4b8b9bebfc2c4c6c9cfc8c9cacbcbcbcacacad0cac6c5c4c1bfbdb9b7b4aeaca9a29e98928d857e776e69605950483f372d251b11070000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb3a99b8e8174665c5144382c1c1207000000000000000000000007131f2c3945515d6775828e9baab4bfcad6e0d3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000040e17232e38424d57616c74818e95a0aab4bfcbcdc2bbafa39991847a6d605a6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000004101c2834404a546875828f9ba8b5c2cedbdcd0c3b6a99d9083766a5d5043372a1d1004000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f423629252a2d2f35393a3d403f44464748484949494847454043403c3a38342e2c29241e1a140e0903000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfded2c5b9aca0968a7e71675c51453d33291f180f09030000000000000000060b141b242f3a434f59616e7b86929facb9c4cfdad8ccc0b6ac9d908376685d5246392d20130700000000020a12191f232627282828293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f322828282828282524221e18110901000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000030608090b0b0b0b0b0a0a09080706040100000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696968c7f7366594c403326190d00000000000000000000000008111a222b323a414950565e616b6f767c82868b9095989b9fa2aaa7a9abacafb5b0b0b1b1b2b1b1b0b0b5afacaba9a7aaa29f9c9895918c86827c76706b615f57514b423b332c231b120a010000000000000000000000000000000000000000081217232e38424a505b626b707b838b91969fa2aaadb3b9babfc5c6c9cfcfd1d2d4d2d1d0d0cfcfcfd0d1d2d3d6d3d2d0cecec9c5c4bfbab9b3adaaa29f97928b827b706b625a51493f372d23190f060000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baada2978a7d7063544a4034281c0b00000000000000000000000004101d2935404b5564717e8a98a2aebac7d3e0d7cbc0b5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d79839198a3aebac1cccbc0b5aba1968e81756c626a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000006121f2c3844515c667683909da9b6c3d0dcddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f423629191e2024292c2d302e34383a3a3b3c3c3d3c3b3a38352f33302d2c2823201d19130e09030000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe1d5c9bdb2a89e9184796d60584e453b312a211a140e090604000406070c11171d262d35404b55616b74818e99a3afbbc7d6e0d4c8bbafa49a8c7f7366564c4135291d1105000000000000080e1317191a1b1b1d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f32251b1b1b1b1b191816120d060000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000000000040a0f1215151717171717171616151413110d08060603000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2998c7f7366594c403326190d000000000000000000000008121a232c343d444c535b60696e757c82888e92999d9fa7a8abaeb3b3b6b7b9bbc0bdbdbebebebebebdbdc0bbb9b8b6b4b4aeaca9a8a09d99928f89837d766e69605c544d453e352d241b130a0100000000000000000000000000000000000006101a2428343f4a545c606d727d8590959ea1a8aeb4b9bec5c7cbd1d2d5d2d1d1cbc7c5c4c4c3c2c2c3c4c5c5c7cbd1d0d1d4d9d5d2d1cbc7c5beb9b4aea9a19e948f857d716d625b51493f352b21180d030000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded2c5b8ab9f9285796d6053463a2e23180c000000000000000000000000000c18242f3a4753606d7a86929facb8c5d1dcdcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000000000000000000000000a141e29333e45515d676f7c86929fa6b0bac4d0c7bdb2a89e938b7e716a6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000000070f18202d3a4653606d7985929fabb8c5d2dedccfc3b6a99c908376695d5043362a1d1003000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c1114181d20202423282b2d2e2e2f30302f2e2d2c29242623201f1c1813110d080100000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe5d9cec4b9aca1968c7f726a60574d433c332a251f1a1413100c101313181b22272f383f45515d67707d89939eabb5c0cbd7dfd2c6b9ac9f93877b6e6154483b3024190d010000000000000002070a0c0d0f101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190f0f0f0f0c0b090601000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000060e151b1f212224242424242423222221201d191613120f0b0600000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4afafafafaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeafafafafafa6998c7f7366594c403326190d0000000000000000000008111a242c353d464e565e656c727b81898f949b9fa3ababb1b5b8babec0c2c4c5c7cbd1cacacbcbcbcacad2ccc7c6c4c3c0bfbab8b5b1acaba39f9c949089827b736d665e574f473f362d251b13090000000000000000000000000000000000040d18222c363e44505c666d747f8792979fa7adb2babfc6cacfd3d7d3cfc9c6c5c1c0bbb9b8b7b6b5b5b6b7b8b9bbc0c1c4c5c8ced2d6dad7d3cfcac6bfbab3ada69f9792877f726d625b51473d33291f14090000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb3a99b8e8174665c5145382c1c1207000000000000000000000000000713202c3945515d6775828f9baab4bfcbd7e0d3c7bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000000000000000020c17212935404b555f6a727f8b939ea8b2bdc7cfc4baafa59f92867c6e677784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000003091019222a36414c5664707d8a97a2adbac6d3dfdbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f070d11131417171c1f2021222223232221201f1d1819161313100c070401000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfebe0d5c9bdb2a89f92867c6f695e564d453e36312a25201f1d181c1f2023282d333a4149505c606d7984919ea5afbdc7d1dcd5c9bdb2a89c8f8376695e53463a2d1e13080000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190c0202020000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000006101820262b2e2f313131313131302f2e2d2c292423201f1c17110f0a0400000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1b4aeaba2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a5abb3b2a6998c7f7366594c403326190d00000000000000000006101a232c363e474f5860686d777f868e939c9fa6acaeb5b8bcc2c5c6cad0cfd1d2d0cdcbcac9c8c7c8c9cacacccfd1d1cfd0cac7c5c2bdb8b5afaca69f9c948f8680796e69615950483f372d251b1108000000000000000000000000000000010c161f2a343e48515b606d78808b9299a2a9b1b9bdc4cad0d6d7d1cbc7c5beb9b8b5b5afacabaaa9a8a8a9aaabacafb5b4b7b8bdc3c6cacfd4d9dbd6d0cac5beb9b0a9a199938b7f726d62594f453b31261a0d040000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baada2978a7d7063544b4034281c10040000000000000000000000000004101d2935404b5564717e8a98a3aebac7d3e0d7cbc0b5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000000000000000000050f18242f39434e58626d75828f96a1abb5c0ccccc1baaea2989083796d7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140700000000000000000000000000000205090e141a232b343c46525e6875828f9ca9b3becad6e2dacdc1b4a79a8e8174675b4e4134281b0e01000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0001040607060b101213141515161616151413100c070907060400000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe9e1dacec4baaea39891857b6e685f574f46423b36302d2c2924282c2d2e34383f444c535b606e74818e96a1acb7c1cfd9dcd2c5b9ada1968b7e7164574d42362a1e0c020000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000040e18222a31373a3c3e3e3e3e3e3d3d3c3b3a39352f302d2b28221c1b150f0a030000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b4aaa29f9595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959699a1abb2a6998c7f7366594c403326190d0000000000000000040e18222c353e485059606a6f7a828b92989ea5aab0b9bbbfc6c8cdd2d3d2d1cbc7c5c3c0bebdbcbbbbbbbcbdbebfc2c5c6c9cfd2d3d2cec8c7c0bbb9b0aba69f98928c837b706b625a51493f372d231a1006000000000000000000000000000007131d28313c46505a636d75818d929fa3abb3bbc2c9cfd6d8d1cbc6bfbbb9b3adaba8aba39f9e9d9d9c9c9c9d9e9fa3aba7aaacb2b8b9bec5c8ced6dbdbd6cfc9c2bbb3aba49f918b7f726b60574d42362a1f160c010000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded2c5b8ab9f9285796d6053463a2e23180c0000000000000000000000000000010d18242f3a4754606d7a86929facb9c5d1dcdcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c46515b616d7a849199a4afbbc2cdcabfb4aaa0958d80747784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140a0a0a0a0a0a0a0a0a0a0a0a0a0b090e12141a1f262a353d46505a616e7a86929facb9c5d0dbe3d7cbbfb4aa988b7f7265584c3f3225190c00000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000030607070809090a090807060400000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e9dfd7cfcac6bfb4aaa19790837a6e696159534d46423c3a39352f34383a3b40454950565d656c74808d929da8b2bdc9d2e1d5c9beb3a99e9184796d6053463b31251a0e000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000a15202a343c4347484a4a4a4a4a4a494948474541403d3938332d2b27201a150d0801000000000000000000000000000000000000000b1824313e4b5764717e8a97a4aea29892888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888898f99a5b2a6998c7f7366594c403326190d00000000000000020c16202a343d47505a616b707c848f949fa2aaafb7bbc2c7cbd1d4d4cfc9c5c4c0bbb9b6b4b2b1b0afaeaeafb0b1b2b5b8b9bec2c5c7cbd1d4d1cbc7c2bcb7b0aaa39f9590857d716c625b51493f352c22180c03000000000000000000000000010d18242f3a434e58616c737f8c939da4afb5bdc5cdd5dad6cfc6bfbab5aeaca9a19e9b9899929191908f8f9091929299989b9da0a8abadb3b8bcc3cad0d8e0dad5cdc5bdb5afa39f92877d70695f53463f31281e13080000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb3aa9b8e8174665c5145382c1d12070000000000000000000000000000000713202c3945515d6775828f9babb4bfcbd7e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a343f46525e68707d87939fa6b0bbc5d0c6bcb1a79d928a7d7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21161616161616161616161616161718191a1e20252a31363e474f58626c75818e99a3afbbc7d7e1e0d3c7baaea398897d706356493d3023160a00000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e1d7cdc5beb9b8b9b3a9a09590847b706b615e57524d4947454043404546484b51535b60686d77808d929da5afbac4cedbd8cfc6b9ada1978b7f72665c514538291f1409000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000030f1b26313c464e535557575757575756555554514c4c4946443f3837322b262019130c040000000000000000000000000000000000000b1824313e4b5764717e8a97a4ab9f92857c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7d8996a2afa6998c7f7366594c403326190d0000000000000008131e28323c464f59616c717d8691969ea6aeb4bcc1c7ccd3d7d1cbc7c4bdb9b8b5afacaaa7a5a4a3a2a1a2a2a3a4a6a8abadb3b5b9bbc0c7c8ced6d4cdc7c2bcb4aea79f9792877e726d625b51473e342a1e150b00000000000000000000000004111d2935414b555f6a707e88939fa5aebbc0c7cfd7d8d0cac1bdb4aeaba39f9b97928e8c8986858483828283848586888b8e91969a9ea1a9acb1babfc6ced4dcdfd6d0c7c0bbafa39992857b6e615a50433a2f24190d010000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baaea2988a7d7063544b4034281c0b0000000000000000000000000000000004111d2935414b5564717e8a99a3aebac7d3e0d7cbc0b5ab9c8f8276685d5246392d2013080000000000000000000000000000000000000000000000000000000000000000000000000000000000030d18222935414c56606b73808c949fa9b3becacec3b9aea49e92857b84919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2323232323232323232323232323242425252a2d31363b42465059606a717e8b939eabb5c0cbd7e9dfd2c5b9ac9f92867a6d6053473a2d20140700000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc5bbb3adabadb3b1a7a09691857d756e69615e575553514b504b515354555c60656c717a818d929da4aeb7c0ccd6dcd1c6bcb0a69e9285796d60544b403428170d03000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000006121f2b37434e585f62646464646464636261605d55595653504a47433c373129241e160d0500000000000000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f7a8793a0ada6998c7f7366594c403326190d000000000000040d1925303a444e58616b717e879298a1a8b0babfc5ced3d8d5cfc7c0bbb9b2adababa39f9d9a989796959495969797999c9ea1a9a8acafb5b8bdc3cacfd7d3cfc6bfbab1a9a299938b7f726d62594f463c30271d120700000000000000000000040f19222c3945515d676f7c86929aa4afb7c0cbd1d9d6cec6bfbab0aba39f99928f8a85827f7c7a7877767575767778797b7e8184888d92979da0a7aeb4bcc2cad2dbe2d9d2cbc0b5aba2978f82766c62564c4135291d1307000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded2c5b8ab9f9285796d6053463a2e23180c00000000000000000000000000000000010d18242f3a4754606d7a86929facb9c5d1dcdcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000006101925303a444f59606d78839097a2adbac0cbcbc0b9ada1978f8384919eaab7c4d1dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a30303030303030303030303030303030313230363a3b42464d535a616b6f7c86929fa5afbdc7d1dce2d6cabfb4aa9c8f8276675d5145392c1f130600000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d6cabeb3a9a29ea2a9b3b1a8a0979288817b736e696662605d555d545c606164676d70787e858e939da4aeb6c0c9d2ddd7cbbfb4aa9f948b7e71675d5142392e23180500000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000815212e3a47535f6a6f717171717170706f6e6d67686663605b54544e47433c352f281f170e06000000000000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c6262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626d7a8793a0ada6998c7f7366594c403326190d0000000000010c161f2935414c565f6a707d879299a2aab2bac1cad0d7d6cfc9c2bdb5afaca9a19e999992908d8b8a89888888898a8b8c8f9297979b9fa3abacb2b9bec5cdd6d8d1cbc2bbb3aba49f918b7f726b61584e42392e23180c040000000000000000000a16212a36424d57606d79849198a2acb6c0c9d7dcd5ccc4bcb4aea69e99928d86827d7975726f6d676a6a6969696a666c6f7174777b80858a90959fa2aab0b8c1c9d2dae3dcd1c7bdb3a99f948b7e71685d52453a2f24180d010000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb4aa9b8e8175675c5145382c1d120700000000000000000000000000000000000713202c3945525d6875828f9cabb5bfcbd7e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d44505c666e7b85929fa5afb9c3cecabeb3a99f948f9196a0acb8c5d2dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3e3f404246484d53575f616c717d859298a2aeb7c1cfd9e3ded3c6baaea2988b7e7265554b4035291d100400000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d2c6b9ada2979297a2a9b3b2a9a29a938e86807b77736f6d676a696a666d6e7175797d838b92979ea5aeb6c0c8d2dbd4cbc2baaea3989082776c60554b4030271d120700000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000915222f3c4855626f7c7d7d7d7d7d7d7c7c7b7a787573706c66626058534e45413a312920180f060000000000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f55555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555606d7a8793a0ada6998c7f7366594c403326190d000000000007131d28313a46525e686f7c869299a3abb4bcc4ccd6dbd3cdc4beb9b0aba39f9c96918d898683817f7e7d7c7b7b7c7d7e7f8285878a8f92999ea0a8adb3bbc1cad0d7d7cdc5bdb5afa39f92877d706a5f544b40342820150a0000000000000000030f1b27323a46535e6973808d96a1aab4bec7d2dbd5cbc3bab2aaa29f948f86807a75706d666563605d555d5c5c5d545b60626568696e73797e838c92989fa6afb7c0c8d2dae3d9cfc5bbb0a69f92857a6d60554b4035291d1104000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baaea2988a7d7064554b4034281c1004000000000000000000000000000000000004111d2935414c5664717e8b99a3aebbc7d3e0d7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c162028343f4a545e69717e8a939da7b1bcc6cfc5bbb0a69f9c9ea0a8b2bdc8d4dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d615449494949494949494949494949494949494a4b4c4d4d5254575e61696e757e869297a1aab4bfc9d3e1e1d6cabfb4aa9f92857a6d6054473a2f24180c0000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d1c5b8ab9e92859297a2adbab3aca49f98928d87837f7c7a7877767778797b7e82858a90959ea1a9afb7c0c8d2dad4cbc2b8afa59f92867c6e655b5043392f1e150b0000000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd4cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000004111d2935404b556875818a8a8a8a8a8a8988888784827f7d78736f6a625f58524c433b332a21180f0500000000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f52484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484854606d7a8793a0ada6998c7f7366594c403326190d00000000010d18242f3a43505a616d7a849198a2abb5bdc6ced6dbd3cac1bbb3ada69f99928f8a84807c7a77747271706f6e6f6f70717375787b7e82868c91969ea2a9afbabfc6ced7d7d0c7c0bbafa39992867c6f665c51453c31261b0f040000000000000007131f2c38434e58616e7b86929fa8b2bcc6d0d9d6ccc3b9b1a8a198928a827b736d6863605c545653514b504f4f504a50535558575f62676d71797f868f949ea5aeb6c0c8d2dde1d7cdc2baada2978c7f73675d5145392c20140900000000000000000000000713202d3946525e6876828f9cabb5c0cbd7e3ded2c5b8ab9f9285796d6053463a2e23180c000000000000000000000000000000000000010d19242f3a4754606d7a86929facb9c5d1dcdcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e17232e38424d57616c74818e95a0aab4bfcbcdc2b8b0aba9aaacb2bac3ced9dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d615656565656565656565656565656565656565757585a575e6165696e737b818a9298a1a9b3bcc6d0dbe2d8cfc6baaea2988d8174675d5145392c1d12070000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3cdc0b3a69a8d8085929fa8b2bcb6afaaa39f9a95908c8886858483848586878a8e92989d9fa7adb3bbc1c9d2dcd6cbc2b9b0a69d938b7e716a5f53493f31271d0c030000000000000000000000000000000003101d293643505c6976838f9ca9b6c2c7c7c7beb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000613202c3945515d67778491979797979796959496918f8c8984807c766e6a605d564d453c332a21170d03000000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f52453c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c4754606d7a8793a0ada6998c7f7366594c403326190d0000000004111d2935414b55616c75818e96a1aab4bdc6cfd8dbd2c9c1b8b0a9a19e948f87827d7973706d67676564636261626364646669696e71757a7f848b92979da5aeb4bcc5ced6d9d2cbc0b5aba2989083796d60584e43372b21160a000000000000000915222e3b4854606a75818e98a3aebac4ced7d7cec4bab1a7a09691867e756e69615e5653504a49474540434242433f4446484b4d53555c60666d727b828e939da4aeb6c0cbd5e1dfd6cabeb3a99e92857a6d6053473b31251a0e02000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb4aa9b8e8175675c5145382c1d1207000000000000000000000000000000000000000813202c3945525d6875828f9cabb5c0cbd7e0d3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d79839198a3aebac1cccac2bbb7b6b7b8bdc3ccd5e0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d636363636363636363636363636363636363636364656669696e72767b80868e939fa3aab3bbc5ced7e2d9d0c6bdb2a89f92867b6e61554b4135291d0b010000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ccbfb2a6998c7f7f8c96a0aab4bdbbb4aeaca79f9d99959792919091929794979b9fa2aaabb1b9bec5cdd3d8d0cbc0b9b1a79f948e81746d62584e41382d1f150b000000000000000000000000000000000003101d293643505c6976838f9ca9b6bbbbbbbbbbb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9cececbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfcccececabdb0a4978a7d7164574a3e3124170b0000000714202d3a4753606d7a86939fa4a4a4a3a3a2a8a19e9b9997918d88827c746d685e574e453c33291f1409000000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000613202c3945515d67717e8a939ea8b2bcc5cfd8dbd2c8c0b7afa69e97918a827b75706d6663605d5558575655555556575859575e6164686e72787e858e939fa2aab3bcc5cdd6dcd1c7bdb4aaa0958d80736a5f53473d32271b0f03000000000005121e2a36424d57626f7c89939eaab4bfccd6dbd0c6bcb2a8a09590847c716c615f57524c46443f3c3a39352f36362d3338393c3e42474b51545c60696e78818d929da4aeb9c3cfd8e3dbcfc5b9ada1978b7e7265574d42362a1e120500000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baaea2988a7d7064554b4034281c0b000000000000000000000000000000000000000004111d2935414c5665717e8b99a3afbbc7d3e0d7cbc0b5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e29333e45515d676f7c86929fa5afbac4d0cdc7c4c2c4c5c8ced5dee7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a70707070707070707070707070707070707070707071727376787b7e83878d92999ea5aeb4bcc5cdd7e0d9d0c7beb4aba0968c8073695e52433a2f24180d000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ccbfb2a6998c7f7a849198a2abb4bcbfbab9b1abaaa6a9a29f9d9c9d9ea2a9a4a8acaeb4b8bcc2c9cfd6d4cec6bfbaafa79f959082796d605a50463c2f261b0d03000000000000000000000000000000000003101d293643505c6976838f9ca9aeaeaeaeaeaeaea5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc1c1c1c1beb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfc1c1c1c1bdb0a4978a7d7164574a3e3124170b000000091623303c4956636f7c899aa4afb0b0b0afafb2acaba8a9a19e9a948f87807a6e695f574e453b30251a0e050000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000005111d2a36414c56606d7a85929ea5afbac4ced7ded2c9c0b6aea59e948f857e766e6963605c5453514b4c4b4a494848494a4b4c4d5354565e61656c717a818a9298a2a9b3bbc5cfd9d9cfc6bcb1a79f93877c6f62594f44382c1f140900000000000714212d3a46535e6976828f9ca5afbcc6d0ded6cabfb4aaa19690837a6f6a615a534d46413a38342e2d2c2924292922282b2d2f31373940454a51575f666d77808d929da7b1bdc6d1dce1d6cabeb3a99c908376695e53463a2d2114070000000000000000000713202d3946525e6876828f9cabb5c0cbd7e3ded2c5b8ab9f9285796d6053473a2e23180c0000000000000000000000000000000000000000010d19242f3a4754616d7a86929facb9c5d1dcdcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c17212935404b555f6a727f8b939ea8b2bdc7d2d3d0cfd1d2d4d9e0e7e7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d6cabdb0a3978a7e7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d7e7f808285878b90939a9fa3abafbabfc6cfd7dfd9d0c7beb6aca3999184796d60574d4231281d1307000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ccbfb2a6998c7f737c869299a3aab3bbc1c3bcb8b6b2b3adabaaa9aaabadb3b1b5b8babfc5c8cdd5d4cec8c2bcb4aea59d959083796d675c51483f342a1d140a00000000000000000000000000000000000003101d293643505c6976838f9ca1a1a1a1a1a1a1a1a1988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0b4b4b4b4b4b4b2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3b4b4b4b4b4b4b0a4978a7d7164574a3e3124170b0000000c1825323f4b5865727e8b98acb6c0bdbdbcbbbdb9b7b5b2adaba69f99928d837b6e6a5f574d42362a20160c0200000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000713202d3946525e6873808c97a1adb7c1ccd6e0d6ccc1b7aea49d938e827a716c625f5753504a4745403f3e3d3c3b3c3c3d3e404246484c52535b60686d747d869297a1a9b3bdc7d1dcd7cec3bbafa4998f82756b6054483b30251a0e02000000000815212e3b4854616e7b87939facb9c1ced8d9cfc7baaea29891847a6e685f585047423c36302c2823201f1d181c1c171c1f2022262b2e343940444d545c656c74808d95a0abb5bfcbd7e2dacfc5b9ac9f93877b6e6154483b2e2115090000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabfb4aa9b8e8175675c5145382c1d12070000000000000000000000000000000000000000000813202d3946525d6876828f9cabb5c0cbd7e0d3c7bbaea3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f18242f39434e58626d75828f96a1abb5c0ccd7dddcdddee1e5eaf1e7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cbbeb2a59a908a89898989898989898989898989898989898989898a8a8b8d8f9297989c9fa4acaeb4bdc1cbd1d8ddd7d0c7beb6aca49a92877c6f675d51453b301f160c01000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6ceccbfb2a6998c7f73717e879298a2a9afb9bdc4c4c3bfbebab8b7b6b7b8b9bebdc1c5c6cad0d4d1cdc8c3bdb8b0aaa39f938e82796d675d554b40362d22180b0200000000000000000000000000000000000003101d293643505c6976838f94949494949494949494948b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3a8a8a8a8a8a8a8a8a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6a8a8a8a8a8a8a8a8a4978a7d7164574a3e3124170b0000030f1c28333f4a546774818e9aa7b4c1c2c3c5c6c9c5c4c2beb9b8b0aba39f9590847c6e695e52463f32281e130800000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090914212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000030f1b27333f4953616d7a86929fa9b3bec9d3dfdacfc4baafa59d928d81786d68615a534d46443f3a39352f31302f2e2f30313131363a3b41464950565e616b707d859297a1abb5c0cbd7e0d7ccc0b5ab9e94897c6f63574d42362a1e120500000006131f2b37434e5866727f8c9aa4afbbc8d0d3d1c7bdb0a69f92867c6f685e564e463e37312a251f1c171413100c07060b0f1213151a1d23282e343b424a535b606d79839099a3aebbc6d1dce0d4c8bbafa49a8b7f7265584c3f30251a0e020000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baaea2988a7d7064554b4034291c0b0000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e0d7cbbfb5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c46515b616d7a849199a4afbbc2cdd7e1eaebedf1f6f4e7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3dacec2b6aba29a979696969696969696969696969696969696969696969798999c9ea1a9a9acafb6babfc6cfd7dcd9d2ccc4beb6aca49a93887e716a5f554b4033291f0d0400000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c1c1c1bfb2a6998c7f736c717e8692979ea5adb2b8bcc3c6c9c6c5c4c3c4c5c6cacfced2d1cfcec8c5c3bcb8b2aca69f98928b81796d675d554b43392f241b0f060000000000000000000000000000000000000003101d293643505c697682888888888888888888888888887f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d89969b9b9b9b9b9b9b9b9b9b988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c999b9b9b9b9b9b9b9b9b9b978a7d7164574a3e3124170b000006121f2b3844505b667683909da9b4b4b5b6b8babfc5c6cac9c6c2bdb5afa7a09691857b6e615a50443a3025190d01000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000005121f2b3744505b65727f8c98a2aebbc5cfdbe2d5c9bdb2a89e938d80786d665d565047423c38342e2c29242423222222232425252a2d3036383f444c5259616b6f7c859299a3afbbc3ced9ddd2c7bdb0a69c8f8275695e52463a2d2014090000000815212e3b47535f6a7784909dacb6babec5c7cbc0b5ab9e938a7e716a5f564c443c342b261f1913100c06060400000000030606090e12181c232830384149515c666f7c87929faab4bfcbd7e3d8ccc0b6ac9b8e827568574d42362a1e1205000000000000000713202d3946525e6876828f9cabb5c0cbd7e3dfd2c5b8ac9f9285796d6053473a2f23180c00000000000000000000000000000000000000000000010d1924303a4754616d7a86929facb9c5d1dcdcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a343f46525e68707d87939fa6b0bbc5d0dbe6f0f9fdfff4e7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3ded3c8bdb4aba5a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a4a5a6a9abadb3b6b9bbc0c7cbd1d8d8d4d0c7c0bbb2aca49a93887e716c62584e43392f21170d0000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb4b4b4b4b4b2a6998c7f73666c717d858f939ea1a8acb1b8b9bec1c4c6c8ccd2c9d2ccc8c6c4c2c0bdb8b7b1aba8a09d948f867f746d675d554c433a31271d12090000000000000000000000000000000000000000000814212e3b4754616e7b7b7b7b7b7b7b7b7b7b7b7b7b7b7a6d6054473a2d2114070000000000000000000000000000000000000a1723303d4a5663707d898e8e8e8e8e8e8e8e8e8e8e8e8b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c8e8e8e8e8e8e8e8e8e8e8e8e8a7d7164574a3e3124170b00000613202d394653606c7985929fa7a7a8a8a9acaeb4b8b9bec5cdcfc7c0bbb1a8a1978f82766d62564c41362a1d1105000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000613202d394653606c7884919eaab4bfcdd6e1d9d0c7b9ada1968e81746c665c544c443e37312b2823201d1818171615151617181a1e21252a2d333a41464f59606a6f7c87929fa7b1bcc8d4ded9d0c1b9ac9f93877b6e6154483b30251a0e0200000916222f3c4955626f7c8895a0a7abaeb3b7bbc2bbafa3998f82756c61584e443b322a221a150d080300000000000000000000000000070c12181e262f38404b545f6a73808c98a3aebac7d3e0ddd2c4b8ab9e918578695e52463a2d201407000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabfb4aa9b8e8175675c5145382c1d120700000000000000000000000000000000000000000000000813202d3946525e6876828f9cabb5c0cbd7e0d3c7bbaea3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d18222935414c56606b73808c949fa9b3becad6dde7f2fcfff4e7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e4d9cfc6bdb6b2b0afafafafafafafafafafafafafafafafafafafafb0b1b2b3b5b8b9bec3c6c8ccd2d7d6d3cdc8c3bdb5afa8a09a93887e716c625a50463c31271d0f050000000000000000000000000713202d3a4653606d798693a0acb9c6d3d6cfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0a8a8a8a8a8a8a8a6998c7f7366616b6f7b828a91969da0a7abadb3b5b7b9bbc0bcbcbcc0bbb9b7b6b4b2acaaa79f9d96918a827b726d605c554c433a31281f150b000000000000000000000000000000000000000000000714202d3a46525e696e6e6e6e6e6e6e6e6e6e6e6e6e6e6d685d5245392c2013060000000000000000000000000000000000000915222f3c4855626f7c81818181818181818181818181817d7063574a3d3024170a00000000000000000000000000000000000b1724313e4a5764717e81818181818181818181818181817c6f6256493c2f23160900000815222f3b4855626e7b88989a9a9a9b9c9d9fa2aaabadb3bbc1c9d1cbc3bab2a99f948b7e71685e5246392d201409000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000a1723303d4a5663707d8996a0acbcc5d0dfddd2c7beafa59e91847a6d605b544a423a322b261f1c1713100d070a090809090a090e1214191b222730363e464f58606a73808d95a0acb8c2cdd8e0d4c7bbafa4998c807366574d42362a1e120500000d1a2734404d5a6773808b90959a9fa2aaabb0b8b5ab9f92877b6e625a50463c322920181009030000000000000000000000000000000000070c141d262e39424e58606d7a86929facb9c5d0dbdfd2c6b9ada197877b6e6154483b2e21150800000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baaea2988a7d7064554b4034291c1004000000000000000000000000000000000000000000000005111d2a36414c5665727e8b99a3afbbc7d4e0d7cbbfb5ab9c8f8276685d5246392d2013080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101925303a444f59606d78829097a2adbac0cbd5e0eaf4fef4e7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e3e1d8cfc8c2bebdbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbdbdbec0c2c5c6c9cfd2d4d5d2d0cac7c2bcb8b1aba49f9691887e716c625a50483f342a1f150b000000000000000000000000000713202d3a4653606d798693a0acb9c6c9c9c9c2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939b9b9b9b9b9b9b9b9b998c7f73665960696e757d848b90959a9ea1a9a8aaacafb6afafafb6afacaba9a7a8a09d9995908a847e766e69625b514b433a31281f160d030000000000000000000000000000000000000000000005111e2a36424d565e6161616161616161616161616161605d564c4135291d11040000000000000000000000000000000000000815212e3b47535f6a6f7575757575757575757575757575706b6155483c2f23160900000000000000000000000000000000000a1723303c4955616c7175757575757575757575757575756f6a6054473b2e22150800000b1724313e4a5764717d8a8e8e8e8e8e8f9092989a9ea1a9afb7bfc8d7ccc4bbb0a69f92867a6d6154473b31251a0e020000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0005121e2a36424d576774818d9aa8b2bdced7e2d8ccc0b6ac9d93897d70685d524a42383028201a15100b06040100000000000000000205080e11171e252a343d464e58606d7983919da6b0bcc7d3e3d7ccc0b5ab9d918477695e52463a2d20140700000714212d3a4754606d7a7f83888d92989c9fa6abada3998d8074695f53483e342a20170e070000000000000000000000000000000000000000020b141d27303c45525d6875818e9ba9b3becad6e1d5c9beb2a996897c706356493d3023160a0000000000000713202d3946525e6876828f9cabb5c0cbd7e3dfd2c5b8ac9f9285796d6053473a2f23180c000000000000000000000000000000000000000000000000010d1925303a4754616d7a86929facb9c5d2dddcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d44505c666e7b85929fa5afb9c3ced8e2edf8f0e7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d6d6d6d6d6d3cecbcac9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9cacbcccfd1d2d2d1cfcec9c5c4bfbab8b1aba8a099938d847d716c625a50483f362d22190d03000000000000000000000000000713202d3a4653606d798693a0acb9bdbdbdbdbdb5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d79868e8e8e8e8e8e8e8e8e8e8e8c7f736659565e616c70797e83898e9297999b9e9fa4aca2a3a2aca49f9e9c9a9796918c88837e78716c615f575145403930281f160d040000000000000000000000000000000000000000000000020e1925303b444d52545555555555555555555555555554524c433a2f24190d0100000000000000000000000000000000000006121f2b37434e585f6268686868686868686868686868686361594f44382c20140700000000000000000000000000000000000814212d3945505a616468686868686868686868686868686260584e43372b1f130600000a1724303d4a5763707d818181818181828385888d92979da5adb6bfc9d3cdc2baaea2988b7e7265574d42362a1e12050000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000714212d3a46535f697784919eaab7c4cedde0d4c8bbafa49a8e81746b60564c41382f261e160d090300000000000000000000000000000000060b1319222b343c45515c676f7c89949fabb7c6d1dcddd2c7b8aca095877b6e6154483b2e21150800000713202c3945525d686d72777c81858b90949a9ea19f92877a6e61574d42362c22180e0500000000000000000000000000000000000000000000020b151e2935414c5663707d8a97a2adbac6d3dfdacfbeb1a4988b7e7165584b3e3225180b0000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabfb4aa9b8e8175675d5145382c1d1207000000000000000000000000000000000000000000000000000813202d3946525e6876838f9cabb5c0ccd7e0d3c7bbaea3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c162028343f4a545e69717e8a929da7b1bcc6d0dce7e3e3e3dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c8d0cac6c5c4c3c0bdb9b7b4aeaca79f9d9591878079706b625a50483f362d241b100700000000000000000000000000000713202d3a4653606d798693a0acb0b0b0b0b0b0b0a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c78818181818181818181818181817e7064574d525a61666d71787d8185898c8e91939a95969695959a93918f8d8a8784807b77716c66615a534d453f342e271e160d040000000000000000000000000000000000000000000000000009141f29323b424647484848484848484848484848484745413a31281e130800000000000000000000000000000000000000030f1b26323c464e53555b5b5b5b5b5b5b5b5b5b5b5b5b5b57554f473e33281c1004000000000000000000000000000000000005111c28333e485055575b5b5b5b5b5b5b5b5b5b5b5b5b5b56544e463d32271b0f0300000916232f3c4855616b707474747474757576797c80858e939ca4adb7c1d0d6cabfb4aa9c908376695e53463a2d2114070000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000815222e3b4855616e7b8896a0acb9c5d2dedfd2c6b9ac9f93877b6e61594f433a2f261d150c040000000000000000000000000000000000000002081019222834404b55606a7683909cabb5bfcbd7e3d4c8bcb1a7988b7e7165584b3e32251808000004111d2935414c565d60656a6f74797e83888d92979c8f8276685e52453c31241a1006000000000000000000000000000000000000000000000000030c19242f3a4653606d7985929fabb8c5d2ded9ccc0b3a6998d8073665a4d4033271a0d000000000005111d2935414c5665717e8b99a3afbbc7d3e3e0d3c6baaea2988a7d7164554b4035291d0b010000000000000000000000000000000000000000000000000005111d2a36414c5665727e8b99a4afbbc7d4e0d7cbbfb5ab9c8f8276685d5246392d2013080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e17232e38424d57616c74818e95a0aab4bfcbd6d6d6d6d6d6cdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbcbbbebab8b7b6b3b2acabaaa29f9a95908b847c746d67605950483f362d241b12090000000000000000000000000000000713202d3a4653606d798693a0a3a3a3a3a3a3a3a3a39c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b666c75757575757575757575757575706c6155494650545c60656c7074797c7f82848687888989898888868483817e7b77736e6a64605b545046423c3328231d150c040000000000000000000000000000000000000000000000000000020d17202930363a3b3b3b3b3b3b3b3b3b3b3b3b3b3b3a39352f281f160c0100000000000000000000000000000000000000000a15202a343c4347484e4e4e4e4e4e4e4e4e4e4e4e4e4e4a48443e352c21160b000000000000000000000000000000000000000c17222c363e45494a4e4e4e4e4e4e4e4e4e4e4e4e4e4e4947433d342b20160a0000000714202c38444f59616367676767676869666d6f737a818c929ca5afbdc7d2d0c5b9ac9f93877b6e6154483b2e2115080000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000b1824313e4b5764717e8a97a8b2bdc9d5e1d7cbbfb4aa9c908376695f53473d31281e140b0300000000000000000000000000000000000000000000071018232e39434e5865727e8b99a3aebbc7d3e0d9cec1b4a79b8e8174685b4e413025190d0100010d19242f3a444c5254585f62676d71767b80858a8f8b7e7165564c41332a201208000000000000000000000000000000000000000000000000000008131f2b3844505c667783909daab6c3d0dddacdc0b4a79a8d8174675a4e4134271b0e00000000000713202d3946525e6876828f9cabb5c0cbd7e3dfd2c5b8ac9f9286796d6053473a2f24180c0000000000000000000000000000000000000000000000000000010d1925303b4754616e7a86939facb9c6d2dddcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d79839198a3aebac1ccc9c9c9c9c9c9c1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0afaeb3adabaaa9a6a8a19e9b98928e88837e796f6b605d554f473f362d241b1209000000000000000000000000000000000713202d3a4653606d79869396969696969696969696968f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a545b606868686868686868686868686864615a50443e424a51535b6063666c6f7275777a7a7b7c7c7c7b7b79787674716e6966625f5853504a423e37312a2118120b0300000000000000000000000000000000000000000000000000000000050e171f252a2d2e2e2e2e2e2e2e2e2e2e2e2e2e2e2d2c29241e160d04000000000000000000000000000000000000000000040e18222a32373b3c42424242424242424242424242423d3c38332c231a10050000000000000000000000000000000000000005101a242c33393c3e42424242424242424242424242423c3b37322b22190f0400000004101c28333e474f55575b5b5b5b5b5b545c6062676d747f8c939eabb5c0ccd4c8bbafa49a8b7e7265584b3f3225180c0000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000d1a2633404d596673808c99a6b3bfced9e0d3c7baaea3988b7e7165574d42352c1f160c0200000000000000000000000000000000000000000000000007121d27303d4754616d7a86929facb9c5d2dfdcd0c3b6a99d9083766a564c41362a1d1105000008131e28323a4145474e54555d6064696e73797d82867a6d6054473b3021180e00000000000000000000000000000000000000000000000000000003101c28343f4a546875828f9ba8b5c2cedbdacec1b4a79b8e8174685b4e4135281b0e00000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabfb4aa9b8e8275675d5145392c1d12070000000000000000000000000000000000000000000000000000000814202d3946525e687683909cacb6c0ccd8e0d3c7bbaea3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e29333e45515d676f7c86929fa5afbabdbdbdbdbdbdbdbdb4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a2a1a9a29f9e9c9a9796918e8b86817c76716d676059514b433d352d241b120900000000000000000000000000000000000713202d3a4653606d79868a8a8a8a8a8a8a8a8a8a8a8a8a8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424a50535b5b5b5b5b5b5b5b5b5b5b5b5b575550483e30394044495053545b60636668676d6e6f6f706f6f6e6d67696764615e5655534e46443f382f2b261f180f0700000000000000000000000000000000000000000000000000000000000000050d14191e20212222222222222222222222222221201d19130c04000000000000000000000000000000000000000000000006101820262b2e2f3535353535353535353535353535302f2c28211a110800000000000000000000000000000000000000000008121a22282d303135353535353535353535353535352f2e2b272019100700000000000b16212c353e44484a4e4e4e4e4e4e4a5053555d606d75828f99a4afbbc7d4ccc0b6ac998d8073665a4d4033271a0d0000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000f1c2835424f5b6875828e9ba8b5c1cedbdfd2c5b9ac9f92867a6d6054473b31211a0d0400000000000000000000000000000000000000000000000000000b15202d3946525e6875828f9ca8b5c2cfdbded2c5b8ab9f928578685e5246392d2013070000010c1620282f35393c43474b5153575f62666d70757a6d685d5245392c201306000000000000000000000000000000000000000000000000000000000b17232e414d5a6774808d9aa7b3c0cddadbcec1b5a89b8e8275685b4f4235281c0f0000000005111d2935414c5665717e8b99a3afbbc7d3e3e0d3c6baaea2988a7d7164554b4035291d0b0100000000000000000000000000000000000000000000000000000005111e2a36414c5665727f8b9aa4afbbc8d4e0d7cbbfb5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c17212935404b555f6a727f8b939ea8b2b0b0b0b0b0b0b0b0b0a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a9696969696969696969696969696969696969696969696969696969696969696969696969696959594979291908d8a8784817e7a746f6a64605c554f454039312b231b12090000000000000000000000000000000000000613202d394653606c777d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f383f44464e4e4e4e4e4e4e4e4e4e4e4e4e4a49443e362c2e34383f44464a50535659555d6061626363626261605c555a5754524d4847433c38332d261d1a140e0600000000000000000000000000000000000000000000000000000000000000000002090e111414151515151515151515151515151413110d080100000000000000000000000000000000000000000000000000060e151b1f212228282828282828282828282828282423201c16100800000000000000000000000000000000000000000000000810171c212324282828282828282828282828282823221f1b160f0700000000000005101a232c33383c3d4141414141423f44464b515b626e7b87939facb9c6d2d2c1b4a89b8e8175685b4e4235281b0f0200000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00111d2a3744505d6a7783909daab6c3d0dddccfc2b6a99c8f8376685d5245392c20130800000000000000000000000000000000000000000000000000000005111d2a36414c5665727f8b98a5b2becbd8dfd3c6baada297877a6d6154473a2e211407000000040d161e24292c3237394045474d53545c6064686d685d564c4135291d110400000000000000000000000000000000000000000000000000000000061926323f4c5965727f8c98a5b2bfcbd8dbcec2b5a89b8f8275685c4f4235291c0f000000000713202d3946525e6876828f9cabb5c0cbd7e3dfd2c5b8ac9f92867a6d6053473a2f24180c00000000000000000000000000000000000000000000000000000000010d1925303b4754616e7b87939facb9c6d2dddcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f18242f39434e58626d75828f96a1aba3a3a3a3a3a3a3a3a3a39a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a89888786858483807d7b7875726d6862605853514b433d352f281f1911090000000000000000000000000000000000000005121f2b3744505b656c70707070707070707070707070706f6a6054473b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262d333839424242424242424242424242423d3c39332c2423282d3337393f4446494c4b51535455565656555553514b4e4a4746423b3a37312b28221c140b090300000000000000000000000000000000000000000000000000000000000000000000000002050708080808080808080808080808080706040100000000000000000000000000000000000000000000000000000000040a0f1215151b1b1b1b1b1b1b1b1b1b1b1b1b1b171614100b0500000000000000000000000000000000000000000000000000050c111417171b1b1b1b1b1b1b1b1b1b1b1b1b1b1615130f0a04000000000000000008111a21282c2f3034343434342e34383a4147535f6a76828f9ca9b5c2cfcfc2b6a99c8f8376695c504336291d100300000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00111e2b3844515e6b7784919eaab7c4d1dddacdc0b3a79a8d807467564c4135291d1104000000000000000000000000000000000000000000000000000000010d1925303d4a5663707d8996a3b0bcc9d6e2d6cabeb3a994887b6e6155483b2e22150800000000040c13191d20262b2f35393c42474a5153565d605d564c443a3024190d01000000000000000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9dbcec1b4a89b8e8175685b4e4235281b0f000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabfb4aa9b8e8275675d5145392c1d120700000000000000000000000000000000000000000000000000000000000814202d3a46525e697683909cacb6c0ccd8e0d3c7bbaea3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c46515b616d7a8491999696969696969696969696968e8174675b4e4134281b0e010000000000000000000000000000000000000814212e3b4754616e7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c7b7a7978777673716e696865605d56544e464540393029241d160d070000000000000000000000000000000000000000030f1b27333f49535b6063636363636363636363636363636260584e43372b1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141c22282b2d3535353535353535353535353531302d28221a181b22272b2d3338393c3f40454747484949494848464540413e3b3a36302e2b261f1c17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090f0f0f0f0f0f0f0f0f0f0f0f0f0f0a090704000000000000000000000000000000000000000000000000000000000005080a0b0f0f0f0f0f0f0f0f0f0f0f0f0f0f0908060300000000000000000000000810161c202324282828282823282b2f37434e5866727f8c99a5b2bfccd0c4b7aa9d9184776a5e5144372b1e110400000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00121f2c3845525f6b7885929eabb8c5d1ded8cbbeb2a5988b7f7265584c3f2f24190d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e6dbd0bbafa295887c6f6255493c2f221609000000000001080d11151b1d24292c3137394044464c5254524c443a32281e130800000000000000000000000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7b4c1cddadacdc0b4a79a8d8174675a4e4134271b0e00000005111d2935414c5665717e8b99a3afbbc7d3e3e0d3c7baaea2988a7d7164554b4035291d1004000000000000000000000000000000000000000000000000000000000005111e2a36424d5665727f8b9aa4afbbc8d4e0d7cbbfb5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a343f46525d68707d878a8a8a8a8a8a8a8a8a8a8a8a8a8a8174675b4e4134281b0e010000000000000000000000000000000000000714202d3946525e686e7070707070707070707070707070707070707070707070707070707070707070707070707070706f6e6d6d666b696764615e565854524c47433c38342e271e18120c04000000000000000000000000000000000000000000000b17222d3841495053575757575757575757575757575756544e463d32271b0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f20282828282828282828282828282423201c17100c11171b1f22282b2d302f35383a3b3c3c3d3c3c3b3a38342e312e2d2a25211f1a150f0b0600000000000000000000000000000000000000000000000000000000000003061313131313131313131313131313130f0f0c090400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b101416171b1b1b1b1b171c1f26313d495663707c8996a3afbcc9d0c4b7aa9d9184776a5e5144372b1e110400000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00131f2c3946525f6c7985929facb8c5d2dfd7cabdb1a4978a7e7164574b3e3124180800000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0adbac6d3e0d5c9bcafa296897d6f6356493c302316090000000000000001040a0f12181d1f262b2e34383a41454745413a322820160c020000000000000000000000000000000000000000000000000000000005111e2a36414c566975828f9ca8b5c2cfdbd9ccbfb3a6998c807366594d4033261a0d0000000713202d3946525e6876828f9cabb5c0cbd7e3dfd2c5b8ac9f92867a6d6053473a2f24180d010000000000000000000000000000000000000000000000000000000000020e1925303b4854616e7b87939facb9c6d2dfdcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d18222935414c56606b707c7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f6255483c2f2215090000000000000000000000000000000000000005111e2a36414c565e61636363636363636363636363636363636363636363636363636363636363636363636363636363626261605c545d5a5754524d4b4745413a37322c28231d150c0701000000000000000000000000000000000000000000000006111b262f383f44464a4a4a4a4a4a4a4a4a4a4a4a4a4a4947433d342b20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131b1b1b1b1b1b1b1b1b1b1b1b1b171614100b0500060b0f12171c1f202324292c2d2e2f30302f2f2e2d2c28232421201e1914120f0903000000000000000000000000000000000000000000000000000000000000060b10122020202020202020202020202020201c1b19151009020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070c0e0d0b08030000000000000000000000000000000000000000000000000000000000000000000000000003080b0d0e0c0706040000000000000000000000000000000000000000000000000407090a0e0e0e0e060b1015222f3c4855626f7b8895a2aebbc8cfc2b6a99c8f8376695c504336291d100300000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00121f2c3945525f6c7885929fabb8c5d2ded6c9bdb0a3968a7d7063574a3d3024170a00000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfd5c8bcafa295897c6f6256493c2f2316090000000000000000000001070c10151a1c23282c3035393a3935302820160e0400000000000000000000000000000000000000000000000000000000000713202d3946525e687783909daab6c3d0ddd7cbbfb4aa978b7e7164584b3e3125180b0000000714212e3a4754616d7a86929facb9c5d1dce3d6cbbfb4aa9b8f8275675d5145392c1d1207000000000000000000000000000000000000000000000000000000000000000914202d3a46525e697683909da9b6c2cdd8e0d3c7bbaea3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101924303a444f59606b6f70707070707070707070707070706f6a5f53473a2e21150800000000000000000000000000000000000000010d1925303b444c525457575757575757575757575757575757575757575757575757575757575757575757575757575756555453504a504d4a4746423f3a3935302b271f1c18120b0300000000000000000000000000000000000000000000000000000a141d262d3337393d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b37322b22190f040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060f0f0f0f0f0f0f0f0f0f0f0f0f0a0a0804000000000003060b0f121316181d1f2021222323232222201f1c18171414110e090602000000000000000000000000000000000000000000000000000000000000020a11171c1f2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c101313191b1a18140f080100000000000000000000000000000000000000000000000000000000000000000001080f14181a1b191413100c0701000000000000000000000000000000000000000000000000000101010100000814212e3b4754616e7a8794a1adbac7cec1b5a89b8e8275685b4f4235281c0f0200000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00121e2b3845515e6b7884919eabb7c4d1ded7cabdb0a4978a7d7164574a3e3124170600000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adb9c6d3e0d4c8bbaea195887c6e6255483b2f2215080000000000000000000000000004090e12181c1f24292c2d2c29241e160e040000000000000000000000000000000000000000000000000000000000030d15212e3a4754616d7a86939facb9c6d2dfd3c7baaea398897c6f6356493c30231609000005111d2935414c5665717e8b99a3afbbc7d3d6d6d3c7baaea3988a7e7164554b4035291d0c010000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727f8c98a7b1bcc8d4d6d7cbbfb5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d474f5960636363636363636363636363636363625f584e43372b1f1206000000000000000000000000000000000000000008141e29323b4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a49484746443f43403e3b3a36302d2c29241e1b15100c0700000000000000000000000000000000000000000000000000000000020b141b22272b2d30303030303030303030303030302f2e2b27201910070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002020202020202020202020202000000000000000000000000030606070c101314141516161615151313100c07080705020000000000000000000000000000000000000000000000000000000000000000020c141c23282b3939393939393939393939393939393634312c261e150c02000000000000000000000000000000000000000000000000000000000000000000000000000000060b12181c1f2025282724201a130b0200000000000000000000000000000000000000000000000000000000000000020b131a2024272826201f1c18120c060000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7cdc0b3a79a8d8074675a4d4134271a0e0100000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00111e2a3744515d6a7784909daab7c3d0ddd8cbbfb2a5988c7f7265594c3f2d22170b00000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a1aebbc8d4e3d7cbbfb4ab94877b6e6154473b2e21140800000000000000000000000000000000070c1013191d2021201d19130c040000000000000000000000000000000000000000000000000000000000030d151f2a36424d5765717e8b99a4afbbc7d4dfd2c5b9ac9f92867a6d6053473a2d20140700000713202d3946525e6876828f9cabb5c0cbc9c9c9c9c5b8ac9f92867a6d6053473a2f24180d0000000000000000000000000000000000000000000000000000000000000000020e1a25303b4854616e7b87959fabb8c4c9c9c9d1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202b353d464f5456575757575757575757575757575755534e463c31261b0f030000000000000000000000000000000000000000020d1720293036393b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b3a3a38342e34312e2d2a2521201d19130f0a0400000000000000000000000000000000000000000000000000000000000000020a11171b1f20242424242424242424242424242423221f1b150f0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070809090a09090807060400000000000000000000000000000000000000000000000000000000000000000000000000000a141e262e343846464646464646464646464646464642413d3730271e140900000000000000000000000000000000000000000000000000000000000000000000000000020a11171d23282c2d323433302b251d140b000000000000000000000000000000000000000000000000000000000000000b141d252b303334322d2c29231d17110b06000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcc8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00101d293643505c6976838f9ca9b6c2cfdcd9cdc0b3a69a8d80736753493f33271b0f03000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6e0d3c7baaea39986796d6053473a2d20140700000000000000000000000000000000000004080d11131413110d08020000000000000000000000000000000000000000000000000000000000040c151f27313946525e6976828f9cabb5c0ccd7dccfc2b5a99c8f8276675d5145392c1f130600000714212e3a4754616d7a86929facb9bdbdbdbdbdbdbfb4aa9b8f8275675d5145392c1d12070000000000000000000000000000000000000000000000000000000000000000000914212d3a46535e697683909da9b6bdbdbdbdbdbdbbaea3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e19232b343d4348494a4a4a4a4a4a4a4a4a4a4a4a4a4a4847433c342a20150a00000000000000000000000000000000000000000000050e171e252a2d2e3030303030303030303030303030303030303030303030303030303030303030303030303030302f2f2e2d2c2823272421201e191413110d08020000000000000000000000000000000000000000000000000000000000000000000000060b0f121317171717171717171717171717171615130f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2630383f445353535353535353535353535353534f4d49423930261b100400000000000000000000000000000000000000000000000000000000000000000000040b0b141c22282e34383a3f41403c362f261d10060000000000000000000000000000000000000000000000000000000000060f1d262f363c40413f3a38342f28231c17110a0200000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdc9cabdb0a3978a7d7064574a3d3124170a0000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000f1c2935424f5c6875828f9ba8b5c2cedbdbcec1b5a89b8e8275655b5044372b1f120700000000000000000000000000000000000000000000000000000003101c28343f4a5464717e8b97a4b1becad7dfd2c5b9ac9f928679675d5145392c201306000000000000000000000000000000000000000001040707070401000000000000000000000000000000000000000000000000000000000003090e161e273139434f59616e7b86929facb9c5d2ddd5c9bdb2a8988b7f7265554b4035291d10040005111d2935414c5665717e8b99a3afb0b0b0b0b0b0b0b0aea3988a7e7164554b4035291d0c0100000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727f8c98a7b1b0b0b0b0b0b0b0b5ab9c8f8276685d5246392d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071119222b32383b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3a37312a22180e040000000000000000000000000000000000000000000000050d14191e2021242424242424242424242424242424242424242424242424242424242424242424242424242424232221201f1c171a171414110e090704010000000000000000000000000000000000000000000000000000000000000000000000000000000305060a0a0a0a0a0a0a0a0a0a0a0a0a0a09080603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e38424a505f60606060606060606060606060605c5a544b42372c2115090000000000000000000000000000000000000000000000000000000000000000040a0f161b1d262d33394045464c4e4c4841382f22180e03000000000000000000000000000000000000000000000000000000030e18212f3841484c4e4c47454039342e27221b140b0b040000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becac9bdb2a995887c6f6255483c2f2215090000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000d192633404c5966737f8c99a6b2bfcedaded1c4b7ab9e9184786c605346392e23180b0200000000000000000000000000000000000000000000000000000a121f2b3844505c6674818d9aa7b4c0cddaddd0c3b6aa9d9083776a554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105060b0f141a20283039434b55606b75818e99a3aebbc7d3ded2c5b9aca096887b6e6155483b2f24180c00000713202d3946525e6876828f9caba3a3a3a3a3a3a3a3a3a39f92867a6d6054473a2f24180d00000000000000000000000000000000000000000000000000000000000000000000020e1a25313b4854616e7b87959fa3a3a3a3a3a3a3a3a3a39f92867a6d6154473a2e211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101921272c2f3030303030303030303030303030302f2e2b26201810060000000000000000000000000000000000000000000000000002080d1114141717171717171717171717171717171717171717171717171717171717171717171717171717171615141312100c060b080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69655d54493d3125190c00000000000000000000000000000000000000000000000000000000000003090e151b21272c2f383f444b5153585b59534a41342a20150a0000000000000000000000000000000000000000000000000000000915202a33414a53585b5953514b443f38332d261d1b160f0a04000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccc5b9ada196867a6d6053473a2d2014070000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000a1724303d4a5763707d8a96a8b2bdc9d5ded2c5b9aca196897c6f63544b4034281d140b0200000000000000000000000000000000000000000000000006111c26303a4653606d7985929eabb8c5d1dedacdc1b4a79a8e8174675b4e412f24180d01000000000000000000000000000000000000000000000000000000000000000205070808080808080808080808080808090a0b080d1113171c1f252a323a424b555d67707d89939eabb5bfcbd7d5c9beb3a99e918477695f53473a2d1d120700000714212e3a4754616d7a8692969696969696969696969696968f8275675d5145392c1d130700000000000000000000000000000000000000000000000000000000000000000000000914212d3a46535e69778390969696969696969696969696998b7e7165584b3e3225180b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161b1f2223242424242424242424242424242422211f1b150e0600000000000000000000000000000000000000000000000000000000010507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a090807070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030607070707070707070707070707070707060400000000000000000006121f2b3844505c667679797979797979797979797979797570655a4d4134281b0f0200000000000000000000000000000000000000000000000000000000060e151a20262b32383e424a50545c606567645d53463c31261a0f0300000000000000000000000000000000000000000000000000020e1a26313c45535c646765605c55504a443f382f2c27211b150f070000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cec4b8ab9e918578675d5145392c2013060000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000714212e3a4754616d7a8796a1acb9c5d2ded5c9bdb2a89a8d8074665c51453c2f261d140c0300000000000000000000000000000000000000000002091217232e38424e5863707d8997a1adb9c6d2dfd6cabeb3a9988b7e7265584b3f3225180700000000000000000000000000000000000000000000000000000000000002080e1114141515151515151515151515151516171718191d2022282b30363e444c545c676d7984919da5afbdc6d1dcd2c6b9ada1978c7f7265574d42372b1e0b0100000b1825323e4b5865717e8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a7e7164554b4135291d1104000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5766727f8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8276695c4f4336291c1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13151617171717171717171717171717171515120f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c10121314141414141414141414141414141313100c07000000000000000713202d3a4653606d7886868686868686868686868686868275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000060f181f262b32373d444850545b60666d72746f64584e43372b1f14090000000000000000000000000000000000000000000000000006121e2b37424d57646e74726d67605c545049413e38322b27201910070000000000000000000000000000000000000005111e2a36424d566a7783909daab6c3cfc2b6a99c8f837669554b4035291d10040000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000713202d3946525e687884919eabb7c3ced9dacec4b8ab9e9285796d60584e42382f261e150d0802000000000000000000000000000000000000060b14192428343f4a54606a74818e9ba9b3bec9d5dfd3c6baada297897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000050d14191e2021212121212121212121212121222323242525292d2d33383b424650565e666d79828f96a0acb7c1cfd8d5c9bdb2a89e9185796d6053473c31261a0e0000000915222f3c4855626f7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d796d6053473a2f24180d010000000000000000000000000000000000000000000000000000000000000000000000020e1a25313b4754616d7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030709090a0a0a0a0a0a0a0a0a0a0a0a0a0a09080603000000000000000000000000000000000000000000000000000000000000000000000004080a0a13131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130d0c0a070200000000000000000000000004080a0a13131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130c0b09060100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a11171c1f202121212121212121212121212121201f1c18120b0300000000000713202d3a4653606d79869393939393939393939393938f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000030e18212a31373c43474f545a61666c71797f81746a5f53473b31251a0e020000000000000000000000000000000000000000000000000814212e3a47535f6974817f79716d66605b534f48443d37322b22190f040000000000000000000000000000000000000714202d3a46525e697885929fabb8c5cdc1b4a79a8e8174675b4e412f24180d010000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0005111e2a36414c566774818e9aa8b2bdc8d4dfd2c6b9ada1978c7f736a5f544a423830271f19130f0b060400000000000000000000000205090e11171f252a363e44505c666f7c87929facb9c5cfdaded2c5b8ab9f9285796d6053463a2d20130700000000000000000000000000000000000000000000000000000000050e171f252a2d2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f3031323035393a3f44464d525a61686d78828f949fa8b2bdc9d3d4cbc2b9aca1968b7f72675d5145382a1f15090000000815212e3a47535f6a6f707070707070707070707070707070706d675d5145392c1d1307000000000000000000000000000000000000000000000000000000000000000000000000000914202d3946525e686d707070707070707070707070707070706b6054483c2f22160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1014161720202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020201a1917130e07000000000000000000050b101416172020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020191816120d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151c23282c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c28231d150c03000000000713202d3a4653606d7986939f9f9f9f9f9f9f9f9f9f9c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000009151f2a333c42474e545960636c70787e848b887c6f62574d42362a1e1308000000000000000000000000000000000000000000000005111e2a36424d56626e7b878c847e78716c656159544f47433d342b20150a0000000000000000000000000000000000000814212e3b4754616e7a8798a2aebac6cbbfb2a5988c7f7265594c3f32261907000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00010d1925303c4956626f7c8996a0acb8c5d0dbd5c9beb3a99f92867c6e665b544a4239312a251e1b1413100c070a0908070808090a090e12141a1c222830363e48505a606d78839099a3afbbc7d6e1d5c9bdb2a89a8e8174665c5145382c1f1306000000000000000000000000000000000000000000000000000000020d1720293036393b3b3b3b3b3b3b3b3b3b3b3b3b3b3c3d3e3f3f4146474a5053575e616c717a828f949ea6b0bac3ced6cdc2b8aea49e9184796d60554b4035291d100400000006121f2b37434e585f6263636363636363636363636363636363605d554b4035291d0c010000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c565e616363636363636363636363636363636360594f44382c2014070000000000000000000000000000050a0d0f101313131313131313131313131312120f0c08020000000000000000000000000000000000000000000000000000000000000000000000050a0d0f101313131313131313131313131313131313131307060401000000000000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2626231f19120a010000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2525221e181109010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e262e34383a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a38342e271e150b000000000713202d3a4653606d798693a0acacacacacacacaca89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000020e1a26313c454d53585f626b70767d838b91968e8174695e53463a3025190d01000000000000000000000000000000000000000000000b14202d3a46525e6974818e96918b847e78706b636059544e463d32271b0f0300000000000000000000000000000000000a1623303d495663707c8996aab4becaccc0b5ab978a7d7064574a3d3124170a000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000815222e3b4854606a7784919daab4becad6dacfc5baaea3999083786c665c544b433d36302c27201f1c18171616151414151617181a1e21252a2d333b4246505a616c727f8c95a0abb5c0cbd7dcd2c5b9aca196897c6f63544b4034281c100400000000000000000000000000000000000000000000000000000008141f29323b41464748484848484848484848484848494a4a4b4c4c5254545b6063696e757e858f949ea6b0b8c2ccd5cdc4bbb0a69d928a7e71665c5143392f24180c00000000030f1b26313c464e53555757575757575757575757575757575753514b43392f24180c0000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a444c525457575757575757575757575757575756544f473d33271c1004000000000000000000000000030a10161a1c1d202020202020202020202020201f1e1c18130d060000000000000000000000000000000000000000000000000000000000000000030a11161a1c1d202020202020202020202020202020202020201413110d08010000000000000008111a22282d3031393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393933322f2a241c130a000000000008111a22282d3031393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393932312e29231b1309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2630383f444647474747474747474747474747474645403930271d12070000000713202d3a4653606d798693a0acb9b9b9b9b9b9b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000006121e2b37424d575f626a6f767d838a90959e9f92867b6e61564c4135291d120700000000000000000000000000000000000000000007121d2935414c56616e7b86929f9e96918a837d76706b6260584e43372b1f130600000000000000000000000000000000000c1825323f4b5865727e8b98a5b1bed0c7bbafa499887b6e6255483b2f221508000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000007131f2c38434e5866727f8c98a2aebac3ced9d7cbbfb4ab9f958e81786d665d554f46413a38322d2c292324232221212122232424262a2d3036383f444d525a616c717e87929fa7b1bdc7d1dcd4c8bdb2a89e9184786c605346392e23180c000000000000000000000000000000000000000000000000000000020e1925303b444d5254545454545454545454545454555656575859565e6163666c70757b818a92979ea6b0b8c2cad7cbc3bbb2a99f948d80746c61544b4031271d120700000000000a15202a343c4347484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4745403931271d120700000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323a4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a48443d352b21160b000000000000000000000000040d151c2226292a2d2d2d2d2d2d2d2d2d2d2d2d2d2c2b28241e181007000000000000000000000000000000000000000000000000000000000000040d151c2226292a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d201d19130c04000000000005101a232c33393c3d4646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646403f3b352e251c120700000005101a232c33393c3d46464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646463f3e3a342d251b1107000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e38424a5053545454545454545454545454545453514b42392e23180c0000000713202d3a4653606d798693a0acb9c6c6c6c6c2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000814212e3a47535f696e757c828990959da0a7a3998d8074685e5246392f24180d0000000000000000000000000000000000000000000c18232e3945525d6873808d99a3a8a09e95908a837d766f6a6054473b2e22150800000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cdc6b9ac9f9386796d6053463a2d201307000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000030f1b27323d4754616e7a85929fa8b2bdc8d4dcd1c6bdb1a79d938e81786d676059524c48443d3a38342f31302f2e2d2e2f30303131363a3b42464a50565e616c717e879299a3aeb9c3cfd9d6cdc4b9aca0968c7f72655b5044372b1d120700000000000000000000000000000000000000000000000000000005111e2a36414d565e6161616161616161616161616161626364656668686d7073787d82878e939ea1a9b0b8c1cad1cbc2b9b1a9a1979082786d605a5042392e1f150b010000000000040e18222a31373a3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a39352f271f150b01000000000000000000000000000000000000000000000000000000000000000000000000000000020c1620283035393a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332b231a0f050000000000000000000000030d161f262d3235363939393939393939393939393939373430292219100600000000000000000000000000000000000000000000000000000000000d161f272d32353639393939393939393939393939393939393939392c29241e160d04000000000b17222c353e44494a53535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534d4b4740372e24190e0200000b17222c353e44494a53535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534c4a463f372d23180d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a545c606060606060606060606060606060605c544b4034281c100400000713202d3a4653606d798693a0acb9c6d2d2cfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000815222f3b4855626e7b81878f949d9fa7acb1ab9f92867a6d61554b4035291c12070000000000000000000000000000000000000004101c2834404b55606d7a85929fabb2aca7a09d959089827c6f6256493c2f2316090000000000000000000000000000000004111d2935414b556976828f9ca9b5c2cfc4b7aa9e918477675c5145382c1f1306000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000a16202d3946525e68727f8c96a0acb8c0cad3d8cfc2b9afa59d938e8179706b615e56544f494745403e3d3d3c3b3a3b3b3c3d3e404246484d52545b60696e757e879299a3abb5bfcbd5d8cec4bbb0a69e9184796d6053493f33271b0b000000000000000000000000000000000000000000000000000000000714202d3946525e686e6e6e6e6e6e6e6e6e6e6e6e6e6e6f7071727275777a7d80848a8f92999ea5adb3bbc1cacfc6bfbbb0a7a09791857a6e665c51483e30271d0d030000000000000006101820262b2e2f303030303030303030303030303030302d2c29241d150d030000000000000000000000000000000000000000000000000000000000000000000000000000000000040e161e25292d2e303030303030303030303030303030302f2c27211a11080000000000000000000000000a151f2831383e4243464646464646464646464646464544403b342b22180d0200000000000000000000000000000000000000000000000000000008111f2831383e4243464646464646464646464646464646464646464639352f281f160c01000004101c28333e4750555760606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605957524a40352a1f13070004101c28333e475055576060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060585651493f34291e1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c666d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d665c5145382c1f130600000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000d192633404c5966737f8c939a9fa6abb1b8baaea2988c7f73675d5145392e23180c0000000000000000000000000000000000000006131f2c3845515c67727f8c98a2aebdb9b1aca79f9d948e8174685b4e4135281b0e000000000000000000000000000000000613202c3945515d677884919eabb8c4cfc2b5a99c8f827669554b4034281c1004000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000005111e2a36414c56606d7984919ea4aeb8c1cbd4d4cbc0b7afa59e938e847d756d686360595653514b4b4a494948474748494a4b4d4d5355575e61666c727b818b9299a3abb5bdc6d1d8d0c6bcb2a99f948a7d70665c5141382d22170b000000000000000000000000000000000000000000000000000000000814212e3b4754616e7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c7d7d7e7f8184878a8c91969b9fa3abafb9bec5cdc9c2bdb5aea69f9591857c6f685e544a40362c1e150b000000000000000000060e151b1f212224242424242424242424242424242424201f1d18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13191d20212424242424242424242424242424242322201c160f0800000000000000000000000005101c26313a434a4e505353535353535353535353535352504c463d34291e13080000000000000000000000000000000000000000000000000000020c1a23313a434a4e50535353535353535353535353535353535353535345413a31281e130800000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c66635c52473b2f23170a000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c65625b51463a2e22160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d787a7a7a7a7a7a7a7a7a7a7a7a7a7a796d6053463a2d20130700000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000814212e3b4754616e7a86929facb0b8bcc2bfb4aa9e9285796d60544a4034281b11060000000000000000000000000000000000030f1c28333f4a54606d7985919eaab3bec3bcb8b1ab9f94887c6f6255493c2f221609000000000000000000000000000000000714212d3a4754606d7a8796a1adb9c5cdc0b3a79a8d8074675a4d412e23180c00000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000010d1925303b45515c66707d8a929da6b0b9c3cbd8d2c9c0b7afa59e969189817a746f6b6662605c55585756555454545556575759575f6164696e73787e858e939fa3abb5bdc6cfd7cfc6bfb4aaa1968f82766c61544b402f261b110600000000000000000000000000000000000000000000000000000004111d2a3744505d6a77838787878787878787878787878889898a8b8c8e919696999ea1a8acafb5bdc1c9c7c4bdb9b0aba39f948f837b6f6a5f564d42392e241a0c0300000000000000000000040a0f121515171717171717171717171717171717171413100c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d111314171717171717171717171717171717171614100b05000000000000000000000000000a16222d38434c545a5d606060606060606060606060605f5d574f463b3024180c00000000000000000000000000000000000000000000000000000a141e2c36434c555a5d606060606060606060606060606060606060605f524c433a2f24190d01000a1623303c4955616c707979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979736e63574b3f3226190c000a1623303c4955616c707979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979726d62564a3e3125180b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d87878787878787878787878787877e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000714202d3946525e6874818e9ba6b0bbc7cdc6b9ada1978b7f72665c5144382d22170b000000000000000000000000000000000006121f2b3844505b66717e8b97a1adbcc5cec8bdb2a89c9083766a5f54473b2e221508000000000000000000000000000000000916222f3c4955626f7c8895a8b2bdc9cbbeb2a5988b7f7265584c3f3225190700000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000008141e2834404b54616b73808d949ea7b1b9c1ccd2d2c9c1b7afa8a09e938e86817c77726f6d676765646362616061626363646669696e71757b7f848b92989ea5afb5bdc7cfd7cdc5bdb5aea29891847b6e615a5042392e1d140a0000000000000000000000000000000000000000000000000000000004111d2a3744505d6a77839094949494949494949494949495969798999b9ea0a8a6abacb2b9bbc0c7c5c0bbb9b2aca69f99928d827a6e695f584e443b30271c120800000000000000000000000000030608090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507070a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0907040000000000000000000000000000000d1a26323e4a545e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6961574c4034281c0f0300000000000000000000000000000000000000000000000006111c26303e48555e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5d564c4135291d1104000a1724313d4a5764707d8686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686807366594d4033261a0d000a1724313d4a5764707d86868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686867f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a9393939393939393939393938b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000005111e2a36414c56626f7c88949fabb7c4cecabeb3a99e9184796d6053493f33271b0f03000000000000000000000000000000000613202d394653606c7884919ea9b3beced2c5b9aca1968a7d7064584e43372b1f1306000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcfcabdb0a3978a7d7064574a3d3124170a00000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000020c18232e39424f59606c78828f959fa7afbbc0c7d0d5c9c1bab2aca59e98928e89847f7c7977747170706f6e6d6e6e6f70717375787b7e82868c91969fa2aaafbbc0c7cfd1cbc3bbb3aba39f92867c6f695e52483e30271d0b020000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909da1a1a1a1a1a1a1a1a1a1a1a2a3a4a5a5a8aaacb2b3b7b9bdc4c5bfbab8b5afaca8a19e948f8780786d685e574e463c32291e150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2935424e5a667076797979797979797979797979797873695d5044372b1e12050000000000000000000000000000000000000000000000000b17232e3842505a6670767979797979797979797979797979797979797976685d5245392c201306000a1724313d4a5764707d8a9393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393938c807366594d4033261a0d000a1724313d4a5764707d8a9393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393938b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a0a0a0a0a0a0a0a0a0a0988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000010d1925303b47535f6a7683909ca8b2bdc9cfc5b9aca1968b7e71655b5044372b1f160a0000000000000000000000000000000713202c38444f5964717d8a96a0acbbc4cfcabfb4aa9e9184786d6053463c32261b0f03000000000000000000000000000000000d1a2633404d596673808c99a6b3bfcccabeb3a995887b6f6255483c2f22150900000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000007121d27303e44505b666d798390959ea5afb6bec2c9ceccc4bdb9afaaa29f9b96918c898683817e7d7c7c7b7a7a7b7c7d7e808285888a8f92999ea1a8aeb3bcc1cbd1cfc6bfbbb2a9a299928a7e716a60564d42362c1e150b000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daaaeaeaeaeaeaeaeaeaeaeafb0b0b1b2b4b7b9bdbfc4c5c2bbb7b4aeacaba39f9b96918a827c736d665d564d453c342a20170c030000000000000000000000000000000000000000000000000002060a0c0c131313131313131313131313131313130a0907040000000000000000000000000000000000000000000000000000000000000000000000000000000000000106090c0c13131313131313131313131313131313130909070300000000000000101d2a3643505d6976828686868686868686868686868685786c5f5245392c1f1206000000000000000000000000000000000000000000000003101c28343f4a54616c7682868686868686868686868686868686868686867a6d6054473a2d211407000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f998c807366594d4033261a0d000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3adadadadadadadada5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000008141e2b37434e5864717d8a96a1acb9c6d0c9bdb2a89d9083786c6053463d32271b0f0400000000000000000000000000030d16222f3b4854606b7683909da8b2bdcdd3c6baaea2988c7f72665c5044382a20150a00000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cec6b9ada197877a6d6054473a2d21140700000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000b151e28333f4a545d676e7a838e939fa4acb1b9bdc4c8cdc9c1bcb4aeaca8a09d999992908d8b8a898887878788898a8a8c8f9297979c9fa3abacb2babec5cecdc7c2bdb5aea8a09792877e716c61584e443b30231a0c03000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6bababababababababbbcbcbdbebfc1c4c5c8ceccc2b8b0aaaaa29f9c99928f8a847e766e6a605c544c433b332a22180e0500000000000000000000000000000000000000000000000000070d1216181920202020202020202020202020202020161613100b05000000000000000000000000000000000000000000000000000000000000000000000000000000070d1216181920202020202020202020202020202020201615130f0a040000000000101d2a3643505d6976839093939393939393939393939285786c5f5245392c1f120600000000000000000000000000000000000000000000020c17202b3844505c66707d8a949393939393939393939393939393939393877a6d6054473a2d211407000a1724313d4a5764707d8a97a3acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaca6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaca5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0babababababab1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000020f1b26323c4653606d7884919eaab4bfcacec4b8aca0958a7d7063594f43382c20150a0000000000000000000000000009141f2b37434e5863707d89959fabbac3ceccc0b6ac9f92867a6d60544a3f3428190e040000000000000000000000000000000004101d2935404b55697683909ca9b6c3cfc5b8ab9e928578675d5145392c20130600000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000030c17222d38424b555e686e79818c939a9fa7acb2b8bcc3c6c9c6bfbab8b2acaaaba39f9d9a9897969594939495969697999c9ea1a9a8acafb5b9bdc4cacac7c2bcb7b0aba39f9691857d716c625a50463d32291f110800000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3c7c7c7c7c7c7c7c7c8c9cacbccced1d2d4d3c7bbb0a69f9c98928f8c86827d78716c625f58514a423a312921181007000000000000000000000000000000000000000000000000010a12181e2225262d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2322201c160f07000000000000000000000000000000000000000000000000000000000000000000000000010a11181e2225262d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d23221f1b160f0700000000101d2a3643505d697683909c9f9f9f9f9f9f9f9f9f9f9285786c5f5245392c1f12060000000000000000000000000000000000000000000008131e2935404b55606d7884919da69f9f9f9f9f9f9f9f9f9f9f9f9f9f9f93877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b3a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdc6c6c6c6beb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000a151f2b3844505c66727f8c98a2aebac7d2c8bcb1a79c9083766b6054483c31261b0f030000000000000000000000020e1a26313b47535f6a76828f9ca7b1bcccd4c8bbafa49a8d8074685d5242382e231707000000000000000000000000000000000006131f2c3945515d677885919eabb8c4d0c3b6aa9d9083776a554b4135291d110400000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000006111c262f3a434d565e676d757f8890959ea1a8acb1b8b9bec4cac7c3bdb8b7b5aeacaaa7a4a3a3a2a1a0a1a1a2a3a4a6a8abadb3b5b9bbc0c7c9cec6bfbab8b0aba69f99928d847b706b625a50483e342b20170d0000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0d4d4d4d4d4d4d4d5d6d7d8d8dbdddedcd0c3b7aa9f948f8985827f7b75706c66615a534e44403930281f170f07000000000000000000000000000000000000000000000000000a131c232a2f323339393939393939393939393939393939302f2c272119110700000000000000000000000000000000000000000000000000000000000000000000000a131c232a2e31333939393939393939393939393939393939302f2c2721191007000000101d2a3643505d697683909ca9acacacacacacacab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000010d1925303945515d67717e8b95a0acacacacacacacacacacacacacacaca093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6bfb3a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6beb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad3d3cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000003101c28343f4a54606d7a86929facb6c0cccec3b7ab9f94897c6f63584e43372b1f1409000000000000000000000005121e2a36424d57626f7c88949faab9c2cdd2c6b9ac9f93877b6e62564c4130261c110600000000000000000000000000000000000714202d3a4753606d7a8697a1adb9c6cec1b5a89b8e8275685b4f422f24180d0100000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000a141d28313b444d555d606d727c838a91969da0a7abadb3bbc4cfcec8c5c4bfbbb9b6b4b1b0afafaeadadaeafb0b1b3b5b8b9bec2c5c7cbd1cec6bcb4aeaca69f9c948f8780796e69605950483f362c22190e050000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3c9c9c9c9c9c9c9cacbccced1d2d5d9dedccfc2b5a99c8f827c7876726e6963605b545047433c342e271e160d050000000000000000000000000000000000000000000000000007121c252e353a3e3f464646464646464646464646464646463d3c38332b23190c03000000000000000000000000000000000000000000000000000000000000000000050f1c252d353a3e3f46464646464646464646464646464646463c3b38322b22190f040000101d2a3643505d697683909ca9b6b9b9b9b9b9b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000005111d2a36414c56606d7984919ea8b1bdb9b9b9b9b9b9b9b9b9b9b9b9ada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2ccbfb3a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000b17232e3845525d6874818d9aa4afbbc8d4c7bcb0a69c8f82756a5f53473b31251a0e02000000000000000000000714212d3a46535f6975818e9ba6b0bbcbd4c8bcb1a79c8f8275695f53443a2f1e140a0000000000000000000000000000000000000915222f3c4855626f7b8895a9b3bec9cdc0b3a69a8d8073675a4d4034271a070000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000020b161f29323b434b515b636a6f767e848b90959a9ea1a9b3bec9d5d4d1d1cbc7c5c3c0bebdbcbbbabababbbcbdbdbfc2c5c6cacfd2d4d7d0c6bcb4aaa29f9a94908a827b736d675f574f473f362d241a1007000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6bcbcbcbcbcbcbcbdbebebfc1c4c5c9ced1d2d0c3b7aa9f948f8783807c76716d66625a534d453f372e251c140b02000000000000000000000000000000000000000000000000020d18232e373f464b4c535353535353535353535353535353534948443d352b1e150b0000000000000000000000000000000000000000000000000000000000000000030d17212d373f464a4c53535353535353535353535353535353534948433d342b21160a0000101d2a3643505d697683909ca9b6c3c6c6c6c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000000000040f19222d3946525e68737f8c97a1adbac3cec6c6c6c6c6c6c6c6c6c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6dfdfdfe2dad4cfcccbc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9bfb3a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6dfdfdfdfdfdfdbd8d7d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000006111c2935414c56626e7b87939facb9c3cecdc2b9ac9f93877c6f62574d42362a1e130800000000000000000005111d2a36414c56616e7b87929facb9c2ccd1c5b8aca095897d7063574d4232281e0c020000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdcfcbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000000040d17202931394045515860626c71797f83888d9197a1adb9c6d2dfdedcd7d3d2d0cdcbcac9c8c7c6c7c8c9c9cacccfd1d2d6dadfe0d6cabfb4aaa298928e88837d766e6a605d554d453d352d241b120800000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daaafafafafafafafafb0b1b2b3b4b7b9bdc0c5c6cac7bbb0a69f9992908d89837e79716c615f57514940372e261c140a00000000000000000000000000000000000000000000000006121e2a353f495157596060606060606060606060606060606056544f473d30271d12070000000000000000000000000000000000000000000000000000000000000009141f29333f49515759606060606060606060606060606060606056544f463d32271b0f0300101d2a3643505d697683909ca9b6c3cfd2d2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000a15202a36424d57616d7a85929fa9b2beccd5d2d2d2d2d2d2d2d2d2c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3ece2d9d0c9c3bfbebcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcb3a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6e3eceae2dad4cfcbcac6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6beb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000d1924303a47535f6a76828f9ca8b2bdc8d4c8bbafa49a8e8175695e53463a3025190d0100000000000000000a13202d3946525e6874808d99a3afbbc7d6cabeb3a99d9184776b6054453c3120160c000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbcabdb1a4978a7e7164574b3e3124180b0000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000000050e171f272f353f464e545a61676d72777c8085919eabb8c4d1deebe7e3e0dfdddad7d6d6d5d4d3d4d4d5d6d7d9dbdedfe2e6ece0d3c6baaea2989286817c76716c625f57514b433c332b231b12090000000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909da2a2a2a2a2a2a2a2a2a3a4a5a6a8aaacb2b3b8b9bec5c2b8b0aba39f9d9995908a847e766e69625b524940382e261c110800000000000000000000000000000000000000000000000a16222f3a46515b63666c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6360594f43392e23180c030000000000000000000000000000000000000000000000000000000000030d1a25313b45515b63666c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6360594f43382c1f130700101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000020b1b27323a46535f6974808d98a2aebbc4cfdee7dfdfdfdfdfdfdfd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3e5dad0c7beb7b3b1afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafa6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6e3ece2d8d0c8c3bfbeb9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000008131e2b37434e5863707d8a96a0acb8c5d0ccc0b6ac9f92867b6e61564c41362a1d13070000000000000006111c2935404b55616d7a86929fabb5c0cbd2c6b9ada2978b7e7165594f44332a1f0d04000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccc9bcafa396897c706356493d3023160a0000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000000000050d151d2429343d424a50585f666d71767c828f9ba8b5c2cedbe5e1dfdedad5d2d1cfcecdcccccccdceced0d2d4d7dddde0e4dfd2c5b8ac9f92857d77716d67615a534e454039312a21191109000000000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a77839096969696969696969696969798999b9ea0a8a7abadb3b9bbc0bdb5afaca9a79f9d96918b827b726d635c524a40382e231a0e05000000000000000000000000000000000000000000000c1825323e4b57636d7279797979797979797979797979797979706b60554b4034281f140900000000000000000000000000000000000000000000000000000000010b151f2a36424d57636d7279797979797979797979797979797979796f6b6054483b2f22150900101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000a141d2b37434e58616e7b86929faab4becdd6e0f0ecececececece0d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3dfd4c9beb5aca7a4a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6e3e5dad0c6beb7b2b1adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadada5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000020f1a26313c4653606c7884919da9b3becad2c7bbafa3998d8074685e52463a2f24180d000000000000000c17232e3945515d6773808c98a2aebdc7d1cbc0b5ab9e9285796d6053473d3320180e00000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7b4c1cdc8bbafa295887c6f6255493c2f2216090000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000000000010c161f28313a434b545c606a6e787e83898f939eaab6c3cfdcdad5d2d1cfc9c6c5c2c1c0c0bfbfc0c1c2c4c6c7ccd2d0d3d8dfd3c6baaea298928a837e79706c615e564e463d342b22190e05000000000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a778389898989898989898989898a8b8b8c8e9196969a9ea1a9acafb6bec0bbb9b6b1aba8a19e948f867f736e645c524a40352c20170d020000000000000000000000000000000000000000000c1926333f4c5966727f868686868686868686868686868686867d70675c51453c31261a0d0400000000000000000000000000000000000000000000000000000007121d27313946535e69727f86868686868686868686868686868686887d6f6356493c3023160900101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000006111c262f384754606a75818e99a3aebcc5d0dfe8edecedeff3f9ede0d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3dbcfc3b7aca39b989696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696968c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6e3dfd4c8beb4aca6a4a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000009151f2b3744505b65727f8b97a2adbac7d2cbc0b5ab9f92867a6d61554b4035291c1207000000000003101c28343f4a54606d7985929eaab4bfcfd3c7bbafa3998d8073675d5145382c1f130600000000000000000000000000000000000000030f1c2936424f5c6975828f9ca8b5c2cfc8bbaea195887b6e6255483b2f2215080000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000000000008131e28313a434c555d666d727c838a90959b9ea5afbbc6d2d3cfc9c5c4c0beb9b8b5b4b4b3b2b3b3b4b5b7b9bbc0c3c4c7cdd2d5cabfb4aaa29f95908b857d756d685f584e463d342b20170c0200000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c7c7c7c7c7c7c7c7c7c7c7c7d7e7f808184878a8d92979c9fa4acb1babec5c2bcb8b2ada69f98928b80736e645c52473e32291e14080000000000000000000000000000000000000000000713202d3a4653606d7883909a9393939393939393939393939184796d60574d42372b1f160c0100000000000000000000000000000000000000000000000000000c18242f39434f59616e7b869293939393939393939393939393978e81746b6054483b2f22150900101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000000b17222d38424f59626f7c87939fabb5bfced7e2e3e0dfe0e3e8eef5e0d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3d8ccbfb3a79b918b89898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6e3dbcfc3b7aca29b979393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393938b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000030f1b27333f4953606d7a85929fabb5c0ccd1c7baaea2988c8073675d5145392e23180c000000000006121f2c3844505c66727f8b97a2adbcc6d0d2c5b9ac9f92867b6e61554b4035291d10040000000000000000000000000000000000000003101d2a3643505d697683909ca9b6c3cfc7baaea194877b6e6154483b2e2115080000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000000060f19242f3a434c565d676d787f8690959d9fa7aaafb8c1cccbc7c4bdb9b8b3b3adaba9a8a7a6a5a6a7a7a8aaacafb5b6b7bbc2c5c9cfc6bcb4aea7a09d97918a817a6f6a60584f473d32291e130800000000000000000000000000000000000000000000000000000000000000000000000815212e3b47535f6a6f6f6f6f6f6f6f6f6f6f6f6f7071727375777a7d80858a8f939a9fa7adb3bbc4c7c4bdb9b0aaa29f928c80736e64594f443b3025190e04000000000000000000000000000000000000000006121f2c3844515c666f7d88939fa99f9f9f9f9f9f9f9f9fa0968c7f73695f53463e31281e13080000000000000000000000000000000000000000000000000004101d2935404b55616b75828f98a29f9f9f9f9f9f9f9f9f9fa69e92857a6d60594f43382c1f130700101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000030f1c28333f4a54616b76828f9aa4afbdc6d1e0dcd7d3d2d3d7dce3eae0d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3d7cbbeb1a4988b7f7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7b6e6154483b2e211508000a1724313d4a5764707d8a97a3b0bdcad6e3d8cbbfb2a69b908b868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686867f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000001010101000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000b17222d3845515d6773808d99a4afbbc7d4cabfb4aa9f92857a6d60544a4034281b1106000000030f1b27333f4953606d7984919ea9b3beced4c8bcb1a79b8e8175695e5243392f24180c000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0c7baaea194877b6e6154483b2e2115080000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000000030d17212935414c565d686d79828c92989fa7abb1b6bbc1cac6bfbab9b2adaba6a9a19e9c9b9a9999999a9b9b9d9fa4aba9abb0b8b9bdc4cbc6bfbab1aca9a19e938e857c6f6a60594f443a3025190c030000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e585f6263636363636363636363636364656668686d7074797d828790959fa2a9b2bac3cbc9c2bcb4aea49c928d80736b61564c41362a21160b000000000000000000000000000000000000000004101c2834404a54606b74818e97a1adacacacacacacacb2a89f92867b6e615a50433a2f24190b020000000000000000000000000000000000000000000000040d1b242c3945515d67707d8a939eaab4acacacacacacacb4ab9f948b7e71685d52463d32271b0f0300101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000020c16202b3844505b66707d8a949facb6c0cfd8d9d1cbc7c5c7cbd1d9e1ead3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6e695e53463a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabeb1a4978b7e7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000001040607090a0c0d0d0e0e0d0d0c0a080605030000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000006111b2935404b55616e7b87939facb9c3cdd0c6baada2978c7f72665c5144382d22170b00000005121f2b3744505b65717e8b96a1acbbc5cfd1c4b8ab9f95897c6f62574d4231271d1207000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0c7bbaea194887b6e6155483b2e2215090907060401000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000009141f29333b45525d686d7a828f949fa3aab1b8bcc2c6c9c1bdb4aeaca8a19e9a9797928f8e8d8d8c8c8d8e8f919399989c9fa6abadb2babfc6cac3bcb8b3ada59e9792857c6f6b60564c41362a1e150b00000000000000000000000000000000000000000000000000000000000000000000030f1b26323c464e5355565656565656565656565657585859565e6163666d71767c838b9297a0a8b1b9c3cbcec6bfbaaea49d928a7d70685e52463d32271b100400000000000000000000000000000000000000000c18232e39424f59616d7a85929ea6b0bcb9b9b9b9b9baaea3988f82766c61554c4135291d140a00000000000000000000000000000000000000000000010c16202b37434e58606d7984919ea5afbcb9b9b9b9b9b9baaea3998f82766c61564c41342b21160a0000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000008131e2834404b55606c7883909da6b0bec7d2d8cfc7c0bbb9bbc0c7cfd9e3d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363615e574d42362a1e1205000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d716d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d665c5144382c1f1206000000000000000000000000000000000000000000000000000000000000020507070d1113141517191a1a1b1b1a1919171513120f0b06060a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000d18242f3a46535f6975828f9ba7b1bcc8d4cabeb3a99e9184796d6053493f33271b0f0300000613202d394653606c7883909da8b2bdcdd5c9bdb2a89d9083766a6054453b301f150b01000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0c8bbafa295887c6f6255493c2f221615151413110d070100000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000020e1a26313b45505a606d7a8390949fa6aeb4bcc2c8ccc4bdb9b0aba39f9b96918d8a8785828181807f808081828486898c9094999ea1a8aeb4bcc2cac8c4beb9afa9a19792867d6f685e52463f30271d1207000000000000000000000000000000000000000000000000000000000000000000000a15202a343c43474949494949494949494949494a4b4c4d4c5254545c60646a6f787e859196a0a7b1b9c3ced0cabfb6aea49e92857a6e61594f44382c20150a000000000000000000000000000000000000000007121c27303d46525d68717e8b949faab4bfcbc6c6cbbfb4aa9f948a7e71675d51453c2f261c110600000000000000000000000000000000000000000008131e28323a47535f6a73808d96a1acb8c1cec6c6c6c9bdb2a89f92867b6e625a50443a3022190f040000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000010d1924303845515c67717e8b95a0acb8c2d0d8cec6bdb5afacafb5bdc7d1dcd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f62565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565654534d453b31251a0e02000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d71646060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605c544a4034281c10040000000000000000000000000000000000000000000000000000000105090e121415181d2020222426262727282726252422201f1b1714120f1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000007131d2a36424d5763707d8995a0acb8c5cfcfc5b9ada1968b7e71655b5044372b1f160b0007131f2c38434e5863707d8a95a0acbac4ced2c5b9ada1968a7e7164584e4333291f0d0300000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0c9bdb0a3968a7d7063574a3d312622222221201d18130c04000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000005121e2a36424d57626c75818e959fa6b0babfc6cfccc3bab2ada69e99928e8984807d7b78767574737273747475777a7c7f83888c91969fa3aab0b8c0c9cfc9c1bbb3a9a29891857a6d615a5043392e23180c00000000000000000000000000000000000000000000000000000000000000000000040e18222a32373b3c3c3c3c3c3c3c3c3c3c3c3c3d3e3f404146474b51535860666c727b849095a0a7b1bcc6d0d6c8c0b9ada1978f82766b6054483c31261b0f0300000000000000000000000000000000000000000b151e2935414c56616c76828f98a3aebac3ced9d0c6bcb0a69e91847a6d60584e42382d22170b0200000000000000000000000000000000000000020b19242f3a44505a626e7c87929fa8b2bdcad3d2d7cec5b9aca0968c8073695f53483e32281e1007000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000004111d2935414c56606d7984919ea7b1bccad4d0c6bcb4aba39fa3abb5c0cbd7d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494846423b33291f140900000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164575353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353514a42392e23180c000000000000000000000000000000000000000000000000000002080d11141a1e212124292c2d2f313233343434343332302e2d2b2722211f1a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000010e1a26313b4854606b7783909da9b3bec9d5c9bdb2a89d9184786c6053463d32271b10040915222e3b4854606a7683909ca7b1bcccd6cabfb4aa9e9184796d6053463d3220170d0000000000000000000000000000000000000000000003101d2a3643505d697683909ca9b6c3cfccbfb2a6998c7f7366574d42362f2f2f2f2d2c29241d160d040000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000714212d3a46535f69717e8b939ea7b0b9c2cbd1cbc2b9b1a8a19e948f86817d7873716e69696867666666676868676d7072767b80848c92989fa6afb7c0c8d5cdc5bbb3aaa1978f82756c62554b4034281c11060000000000000000000000000000000000000000000000000000000000000000000006101820262b2e2f30303030303030303030303031323036393a4045464e545b60696e7a839095a0aab4bfcad6d5c9beb3a99f94897d7063584e43372b1f12060000000000000000000000000000000000000000030c1924303a44505a626e7b86929fa8b2bdc8d4d8cec2b9ada1978d80746a5f544a3f33281e1408000000000000000000000000000000000000000a141d2935414c56616c76828f99a3aebac4cedcdbd0c5bcafa59e9184796d60574d42362d20160c00000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000040e18222c3945525d68727f8c96a1acb9c3ced6cabfb4aaa2999299a3afbbc7d3d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3b3a36312921170d0300000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a4747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474644403930271c120700000000000000000000000000000000000000000000000003090e14191e20252a2d2e2f35393a3c3d3f4040414140403f3d3b3937332d2e2b262024313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000009141f2c38444f5965717e8b97a1adb9c6d1cfc4b8aca0958a7d7064594f44382c20150a121e2b37424e57626f7c89949fabb9c3ced3c7baaea2988c7f72665c5044382c1f120500000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1d1cfc2b6a99c8f8276695f5346403c3c3c3c3a39352f281f160c0100000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000005121e2a36424d57616e7b86929fa5afb9c2cbd7ccc2b9b1a7a096918a827b75706c6664615e575b5a5a59595a5b555d606365696e73797f868f949da5aeb6c0c9d3cdc5bcb3a99e948b7e71675c5145382e23170b0000000000000000000000000000000000000000000000000000000000000000000000060e151b1f21222323232323232323232323242525252a2d2e34383d424a50575f686e79839098a2aebac3cdd8cfc5bbb0a69c8f82756a5f53473a2e21150a00000000000000000000000000000000000000000008131e28323e47535f6973808c96a0acb8c1cdd7d5c9beb2a99f92877c6f665b50443b3025190c03000000000000000000000000000000000006111c262f3845525d68717e8a949fabb5bfccd6e1d6cabeb3aa9e93897d70675c51453c31241b0e0400000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000a15202a36424d57606d7a85929fa8b2bdcbd5d3c6baaea2989286929facb9c5d2d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302e2d2a251f170f050000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a38342e271e150b000000000000000000000000000000000000000000000002090e151a1e252a2d31363a3b3e404547484a4c4d4d4e4e4d4c4c4a4846443f3b3a37312c29313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000003101b27323d4753606d7985929eabb5bfcbd4c8bdb1a89d9083766b6054483c32261b0f14212e3a47535f6a75828f9ba6b0bbcbd5d2c5b8ac9f92867a6d61544a3f34281c100300000000000000000000000000000000000000000000000d192633404c5966737f8c99abb5bfcbd2c6b9ac9f93877b6e615a514b494848484745413a31281d130700000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000714212d3a46535e6974818e98a2aeb7c1cbd4d0c4bab1a79f9591847d756e6963605b5454534d4e4e4d4c4d4d4e4b515456575f61676d737b828e939ca4aeb7c1ccd6cec4bbb0a69e9184796d60544a3f34281c10030000000000000000000000000000000000000000000000000000000000030608090c07060a0f1315161616161616161616161616171819191d2023282c2f383f444d565e676e7c86929fa7b1bcc8d4d6cdc2b7aa9e94887c6f6255483c31261a0f020000000000000000000000000000000000000000020c16202b37424d57606d7984919ea5afbbc5cfdacfc4bbafa3999083786c60564c41362a1e150b00000000000000000000000000000000000b17222d38424e58606d7a85929ea6b0bdc6d1ded9cfc7baaea2988e81756b60554b40332a2012090000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000020b1b26313a46525e6973808d97a2adbac4cedfd2c5b8ac9f9286808d99a6b3c0ccd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232321211e1a140d05000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e312d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c28231c150c0300000000000000000000000000000000000000000000060c141a20262b3036393b4246484b4b5153555759595a5a5b5a595857555350494847433c39352f3d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000b161f2c3845515c6773808c99a3aebbc7d3cec3b8ab9f95897c7063584e43372b1f141e2a36424d57626e7b87939facb9c2cdd3c7bbb0a69a8e8174685e5242382e23170c0000000000000000000000000000000000000000000000000a1724313d4a5764707d8a99a3aebbc7d3c8bbafa49a8e81746c605c555655555554514b433a2f24180d01000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000003101c28343f4a54616e7b87929faab4bfc9d3d2c7beb2a89f9590837b706c615f5753504a4846424241403f404141414547494d53555c60696e78818d929ca5afbac4cfd6cdc1b9ada1968b7e72665c5044382b1f1206000000000000000000000000000000000000000000000000000003060a0f121515191413100c07080909090909090909090909090a0b080d1113181c1f262d333c444c555f6a727e8b959fabb8c5d0dbd3c7bbb0a69b8e817468584e43372b1f1206000000000000000000000000000000000000000000040e1a26313c45515c67707d89939ea9b3becad6d7cbc0b5ab9f958b7f72685e52463d30271d1207000000000000000000000000000000030f1c28333f4a54606a74808d97a1adb8c2cfd8dcd1c7bdb1a79f92857b6e61594f43392f21180e000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000a141d2b37434e58616e7b86929fa9b3beccd6d5c9beb3a99b8f81808d9aa7b3c0cdd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161514120e090300000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124202020202020202020202020202020202020202020202020202020202020202020202020202020202020201f1c18120b03000000000000000000000000000000000000000000030a11171f252a31373b4146474d535458555d60626465666767676766656361605b5355534e4745413a3d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000004101c2934404b55616e7b86929facb9c2cdd4c8bcb1a79c8f82766a5f53473b31261a202d3a46525e6974818e9aa4afbbc8d4d0c3b7ab9f94887c6f62564c4130261c11060000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb9c3d0ccc0b6ac9e938b7e736d676463626262605d554b4135291d1104000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000006121f2c3844505c6674818d99a3afbcc6d0d8ccc0b6aca19690837a6e69615a534d46443f3b3a363134333333342f35393a3d42464b51575f666c74808d939ea8b2bdc9d5d5c9bdb2a99e9184786d6053463a2d201308000000000000000000000000000000000000000000000104060c1012131b1f212226201f1d18120b0300000000000000000000000000000105070c10141c2228323b434e58626d7783909daab3becad6d7ccc1b8ab9e9285786a5f53473a2e211408000000000000000000000000000000000000000000000915202834404b55606b75818e97a2adbac2cfd9d1c7bdb1a79f92857a6e61594f43392e23180c0300000000000000000000000000030c19232b3844505b666f7c87939fa9b3becad4e1d7cbc0b5ab9f958b7f72685e52473d31271d0f06000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000006111b262f3847535f6a74818e98a3aebbc5cfded2c6b9ada1978a7e818e9ba8b4c1ced3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090908070502000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e31241714141414141414141414141414141414141414141414141414141414141414141414141414141414141312100c0700000000000000000000000000000000000000000000050c151c232830363c42474c5254575e616568676d6f707273737474737372706e6c6566625f5854514c45414a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000c18232f3946525e6975818e9ba7b1bcc7d4cdc2b7aa9e94887c6f62574d42362a1e2935414c56616e7b86929facb6c0ccd4c8bdb2a89c8f82766a5f53443a301e150a000000000000000000000000000000000000000000000000000613202c3945515d6776828f9ca7b1bdc7d2c7beafa59f93887f7974716f6f6f6f6d675d5145392c201306000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000713202d3a4653606d7985929fabb5c0ced7d4c8bbafa49a91847a6d685e575046423c38332d2d2a25272726262724292c2d31373940454d545b606e75818e96a1adb9c3ced9cfc4b9aca096897c6f6356493c3025190e020000000000000000000000000000000000000205070d1113171c1f20262b2e2f332d2c29241d150d030000000000000000000000000000000000040a11172029313c46515b65717e8b98a2aebac6d3dfd2c6b9ada197887b6e6255483b2f22150800000000000000000000000000000000000000000000030c18232e39434f59616d7a85929fa7b1bdc7d1d9cfc2baada2978e81756b60554b4034281f1409000000000000000000000000000b151e2a36414c56606c78839099a4afbbc5cfdcdcd4c7bbafa3999083786c60564d41352c1f150b00000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000b17222d38414f59626f7c87939faab4bfcdd7d7cbc0b5ab9e928579828f9ca9b5c2cfd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b070707070707070707070707070707070707070707070707070707070707070707070707070707070706040000000000000000000000000000000000000000000000070e171e262e343b42464d53565e6165696e7174777a7c7d7f80808181807f7f7d7b7976726e6a65605d55524c4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000007121d2a36424d56626f7c89959fabb8c4cfd3c7bbb0a69b8e8175695f53463a30252c3945525d6873808d99a3aebec7d2d2c5b8aca0968a7d7063584e4332281e0c030000000000000000000000000000000000000000000000000004111d2935414b5563707d8a95a0abb5c0c7d0c1bbafa49a938c84807d7c7b7b7b796d6054473a2d211407000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000a1623303d495663707d8997a2adbdc7d1d8ccc0b6ac9f93887d70685e564d453e37312b2822211e1a1b1a191a1a181d2021262b2f343b424a505c606d7a84919ea7b1bcc8d4d5c9bdb2a89a8d807367564d41362a1e11050000000000000000000000000000000002090e1114181d2023282c2d31373a3c3f3a38352f271f150b01000000000000000000000000000000000000060e171f2a333f4753606d7a85929fabb8c5d2ded5c9beb3a9988b7e7265584b3f32251806000000000000000000000000000000000000000000000007121d27303d46525e68727e8b959fabb5c0cbd7d6cabeb3a99e93897d70675c51453c31261a0d04000000000000000000000007121d27303946525e68727f8b95a0abb5c0cdd6e0d5c9bdb2a99f92877c6f665b50443b30231a0d0300000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000030f1b27333f4953606b75828f99a4afbcc6d0dfd4c7bbafa3998c807683909da9b6c3d0d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081119202930383f444d52575f62686e72767b7e818486888a8c8c8d8d8e8d8c8b8a8885837f7b77726d67605d56505764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000010e1925303b4754606a7683909da8b2bdc9d5ccc2b9ac9f92877b6e61564c41362a34404b55606d7a85929fabb4bfd0d6cabeb3a99e9184786c6053463c3120160c0000000000000000000000000000000000000000000000000000010d18242f3a4653606c78839099a4afb6bec4c7c0b6aca49f96918d8a898888887d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000003101c28343f4a546774808d9aa9b3becfd9d4c8bbafa49a8d81746b60564c443b332b261f1c1714120e090d0c0d070d1113141a1d23292f383f45525d68707d8a95a0acb8c7d1d9cec4b7aa9d918477685e5246392d2014070000000000000000000000000000050b1014191e2024292c2e34383a3d4347484c4745403931271d120700000000000000000000000000000000000000050d18212c3945515d6775818e9ba8b4c1cedbdacfc1b5a89b8e8275685b4f422d22170b0000000000000000000000000000000000000000000000000b151e2a36414c56606c77839099a3afbbc4cedad0c5bcafa59d9184796d60574d42372b1f160c01000000000000000000000c18232e39424f59616e7a85929fa7b1bdc7d2dfd8cec6b9ada1968d80746a5f544a3f32291f11080000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000010c161f2b3744505b65707d89949eabb5c0ced8dfd2c5b9ac9f92877b7784919eaab7c4d1d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121a232b323b424a50575e61696e747a7f83878b8e9196959798999a9a9a9a99989698928f8c88847f7a736d68605b5364707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000009141f2b37434e5864717e8a96a1adb9c6d0d4c7bbafa3998d8174685e52463a2f3845515c67727f8c98a2aebdc6d1d3c6baada2978b7f72655b5044372b1f120400000000000000000000000000000000000000000000000000000007131f2b3844505b666f7c87939fa4acb2b9bbc0beb6afa8a19e9a979695958a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000006121f2b3844505c667784909daab7c3cfddd2c6b9ac9f93877b6e61594f443a3229211a140f0b0605020000000000010406090e12181d262d35414c56616b7783909dabb5c0cbd7d1c5b8aca096877a6e6154473b2e211408000000000000000000000000000810171c1f252a2d2f35393a3f4446494e53555953514b43392f24180c000000000000000000000000000000000000000006101d2935404b556673808c99a6b3bfccd9ddd0c4b7aa9d9184776a544a3f33281c0f030000000000000000000000000000000000000000000000030c1925303a44505b656f7c87929fa8b2bdc9d5d7cec1b8aca0968c7f73695f53463e31281e130800000000000000000004101c2834404b54606b75818e97a2adb9c3d0d9dbd0c6bcb0a69e9184796d60584e42382d20170d000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000000007131d2834404a54606c7883909da6b0bdc7d2e0d4c8bcb1a79b8f82757885929eabb8c5d1d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b242c353d444d545c60696e757b81868b9095989b9ea0a8a3a5a6a6a7a7a6a6a5aaa29f9c9996918b85807a716c655d64707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000020f1b27323d4653606d7984919eaab4bfcbd6cbc0b5ab9f92867a6d61554b41353f4a54606d7985919eaab4becfd7cbc0b5ab9f92857a6d6053493f33271b0f03000000000000000000000000000000000000000000000000000000030f1c28333f4a54606a727f8c939aa1a8acafb5bdc0bbb2adaba7a4a2a2978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000713202d3a4653606d7986929facb9c5d2dccfc2b6a99c8f8276695e53473d322820170f09030000000000000000000000000001070b141c242f3a444f5965727f8c99a3afbbc7d4d4c8bdb2a896897d706356493d3023160a00000000000000000000000008121a22282d30363a3b4145474a505356585f6266605d554b4035291d100400000000000000000000000000000000000000010d18242f3e4b5864717e8b97a4b1becad7ded1c5b8ab9e928578665b5044382b1f120600000000000000000000000000000000000000000000000008131e27333f49535f6a73808d96a1acb9c1ced7d4c8bdb2a89f92867b6e615a50433a2f24190b0200000000000000040d1a242c3845515c66707d89939ea9b3becbd5e2d6cabfb4aa9e948a7e71675d51463c2f261c0e05000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000000000000000000010d18242f3844515c66717e8a959fabb8c1d0d9ded1c4b8aca095897d707986929facb9c5d2d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121b242d363e474f565e666d727b81878e92999d9fa7a7aaacb2b0b2b3b3b4b4b3b2b2b4aeaca9a8a09d98928d857e776d6864707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000a151f2c3844505c66727f8c98a3aebac7d3d1c7baaea3988d8073675d51453944505b66727e8b97a1adbcc5d0d4c7bbafa3998d8073675d5141382d22170b00000000000000000000000000000000000000000000000000000000000b17222d38424e58626d737f8891969b9fa4abb5c0c4bdb9b8b3b0afa3978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000815222f3b4855626e7b8899a3aebac7d3d7ccc0b5ab978a7e7164574d42352b20160e050000000000000000000000000000000000020a131e28323e4754616e7a86929facb9c5d2d9cebeb2a5988b7f7265584c3f3225190c000000000000000000000005101a242c33393b4246474b5154545c6063676a6f726d675d5145382c1f13060000000000000000000000000000000000000000071623303d495663707c8996a3afbcc9d6dfd2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000020b17222d38414e58606d7984919ea5afbcc5d0d9cec3baaea3988f82766c61554c4135291d140a000000000000010c161f2a36424d57606d7984919da5afbcc5d0dddbd3c7baaea2988f82756c61554b41342a1d140a00000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000004111d2935414b55606d7984919ea7b1bccad3e2d5c9bdb2a89d9083776d7a8799a3afbbc7d4d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101a242d363e48505960696e787f868e93999fa3ababb1b4b7b8bdbdbfbfc0c0c1c0bfbebfbab8b6b2acaaa29f97928b827a6e69707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616d7a86929facb8c2cdd6cbbfb4aa9f92857a6d60544b404653606c7884919ea9b3beced7d2c5b9ac9f92877b6e61554b402f261b1106000000000000000000000000000000000000000000000000000000000006111c262f3d46515b636d737d848b8f9399a4afbbc7c9c5c4c0bdb0a3978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000a1724313d4a5764707d8a97abb4bfcbd7d4c7bbafa499877b6e6154483b3121190d0400000000000000000000000000000000000000010c16202d3946525e687784919daab7c4d0dacdc0b4a79a8d8174675a4e4134271b0e01000000000000000000000b17222c363e44494d5254555d6064666d7074777b7f796d6053473a2d22170b00000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6e0d4c7bbafa499877a6d6154473a2e2114070000000000000000000000000000000000000000000000000006111b262f3c45515d67707d8a939eaab4becad6d7cbbfb4aa9f948a7e71675d51453c2f261c1106000000000007131d28313a46535f69737f8c96a0acb7c1ced7dfd4c8bcb1a79f92867b6e615a50433a2f22190b0200000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000030e18212c3945515d67727f8b96a0acb9c3cddcded2c5b9aca0968a7e716e7b8794abb5c0cbd7d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e19222c363e48505a616b707b828c92989fa4abaeb4b8bcc1c4c5c8cecbcccdcdcccac9d0cac6c5c2bdb8b4aea9a19e948f847b6e707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000c17232e3846525e6874818e9aa6b0bbc7d3d0c6baada2978c7f72665c51454f5964717e8a96a0acbbc4cfd4c8bcb1a79b8f8275695e53433a2f1d140a000000000000000000000000000000000000000000000000000000000000000a141d2b343f49515b636c70797e8286939facb9c6d2d2d1cabdb0a3978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000b1825323e4b5865717e8b98a4b1bed1dcd2c6b9ac9f9386796d6053463a2d20130700000000000000000000000000000000000000000005111e2a36414c566976828f9ca9b5c2cfdbcec1b5a89b8e8275685b4f4235281c0f0200000000000000000004101c28333e485055565e6165676d7175797c808488897d706353493f33271b0f05000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7e3d7ccc0b5ab95887b6e6255483b2f22150800000000000000000000000000000000000000000000000000000a141d2935404b55616b75828f98a2aebac3d0d9d1c6bcb0a69e91847a6d60584e42382d22170b02000000020b18242f3a43505a616e7b86929fa8b2bdc9d3e0d7cdc5b8aca0958c7f72695f53483e31281d10070000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000915202a36414d56606d7a85929ea8b2bdcbd4dfd5c9beb3a99e9184786d6f7b8895a2aebbd1dcd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202b343e48505a616c717d8590949fa2aaafb5babfc6c7cdd1d2cfcac6c5c2c0bfbebdbdbec0c1c4c6c5bebab3ada69e9691847b707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000006111c2a36414c56626f7c88949fabb7c4ced6cabeb3a99e9184796d60544a54606b7783909da8b2bdcdd6d1c4b8aba095897c6f63574d4231281d0b02000000000000000000000000000000000000000000000000000000000000010b151f2834404a545c606d727a80849199a4afbbc7d4d1d0cabdb0a3978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000c1925323f4c5865727f8b98a5b2becbd8d1c4b8ab9e918578665c5144382c1f1206000000000000000000000000000000000000000000020e192530414e5b6874818e9ba7b4c1cedacfc2b5a99c8f8276695c4f4336291c10030000000000000000000814202d3944505a6164696e72767a7d8185898d91968d8073655b5044372b20170b020000000000000000000000000000000000030f1b27333f495366727f8c99a5b2bfccd8e8ddd2bbaea195887b6e6255483b2f2215080000000000000000000000000000000000000000000000000000020b18242f39434f59616e7b86929fa7b1bdc7d2d8cfc2b9ada1978d80746a60544a3f33281e14080000000a141d2935404b55616c75828f98a2aebac3cedbdacfc5bbafa59d9183786d60574d42362c1f160c000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000020e1a26313946525e6873808c97a1adbac4ceddded2c6b9ada1978b7e72666f7c8995a2afbcc8d5d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f29323d46505a616c717e8792979fa6aeb4bbc0c7cbd1d4cec8c5c4beb9b8b5b3b2b1b0b0b2b3b4b8b9bec4c5beb9b0a8a09691847a7d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000d1925303a47535f6a76828f9ca8b2bdc9d5d0c5b9ada1978b7e71665b505863707d89959fabbac3ced5c9beb3a99d9083776b6054453b311f160c0000000000000000000000000000000000000000000000000000000000000007121d27313944515c666d757f868d9196a0abb5c0ccc8c5c4bfbcb0a3978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000d192633404c5966737f8c99a6b2bfccd9d0c3b6aa9d9083776a544a4034281c100400000000000000000000000000000000000000000000081a2733404d5a6673808d99a6b3c0ccd9cfc3b6a99c908376695d5043362a1d10030000000000000000000a1623303c4955616c70777b7e82868a8e92979a9e9e9184786c6053463e32291d140b020000000000000000000000000000000005121f2b3744505b6574818d9aa7b4c0cddae2d6cabeb3a994877a6e6154473b2e21140800000000000000000000000000000000000000000000000000000007121d27313e46525e69727f8b95a0abb5c0ccd7d5c9beb2a99f93877c6f665b50443b3025190c030006111b262f3845515d67707d8a949eaab4bfccd5e1d6cabeb3a99d93897d70665c51453b31241a0d04000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000006121e2b37424d57616e7b86929fa9b3beccd5e0d5c9bdb2a89e9185796d63707d8996a3b0bcc9d6d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e1925303b444e58616c717e879299a1a9b0babec5ccd2d6cec9c3bdb8b7b3adaba8a7a5a4a3a4a5a6a8abadb3b7b9bdc1bab2a9a0968f817e8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000008131e2b37434e5864707d8a96a0acb9c5d0d5c9beb2a99d9184786c60535f6a76828f9ca7b1bcccd5d2c6b9ada1978b7e7164594f4433291f0d04000000000000000000000000000000000000000000000000000000000000000c18232f3943505a606d78818c92989ea0a8b2bdc7c3bdb8b7b2afaea3978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000d1a2633404d596673808c99a6b3bfccd9d1c4b8ab9e918578665c5044382c1f1206000000000000000000000000000000000000000000000e1b2834414e5b6774818e9aa7b4c1cddad0c3b6aa9d9083776a5d5044372a1d11040000000000000000000a1724313d4a5764707e83878b8f92989b9ea2a9aaa0968a7d70645a50443b2f261d140c05000000000000000000000000000208121a202d394653606c7884919eabb8c4d1dedfd2c6b9ada297867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000010b151f2a36424d57606d78839099a4afbbc4cfdacfc4bbafa4999083786c60564c41362a1e150b000b17222d38414e58606d7984919ea6b0bcc6d0ded8cfc6b9ada1978e81746b60544a4033291f120800000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000000000000020c1a232e3a47535f6974818d98a2aebbc5cfdeddd2c5b9ada1968b7f726764707d8a97a3b0bdcad6d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202a36424d56606a717e879299a3abb3bbc2cad0d7d0cac4bdb9b2acaaa9a19e9b9a9997969798999b9ea1a9abacb2b9bebbb2a89e938e818e9ba8b4c1cedbd8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b26313c4653606c7884919eaab4becad6cfc4b8aca0968a7d716459626f7c88949fabb9c3cdd7cbbfb4aa9e9185796d6053463d3220170d0000000000000000000000000000000000000000000000000000000000000004101c2934404b55616c74808d939fa2aaacb2bac4bfbbb1acaaa6a3a1a1978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000c1926333f4c5966727f8c99a5b2bfccd8d2c6b9ac9f9386796d6053463a2d20130900000000000000000000000000000000000000000005121e2a36424d576976828f9ca9b5c2cfdccfc2b6a99c8f8376695c504336291d10030000000000000000000b1824313e4b5764717e8a939a9c9fa3aaabadb3b2a89d9083776c61564d41382f261e170f0b0600000000000000000003070d1319242a36424d57626f7c8996a1adb9c5d2dfded1c5b8ab9e928578675d5145392c20130600000000000000000000000000000000000000000000000000000000030d1a25303b44505c666f7c87939fa9b2bdc9d5d7ccc0b5ab9f958b7f72685e52463d30271d12070f1b27333f49535f6a73808d96a1adb8c1ced8dcd1c6bdb0a69e92857a6d61594f42392e21180d0000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000a141e2c38434f59626e7b87929faab4bfcdd6dfd5c9bdb2a89e9184796d6064717e8b97a4b1becad7d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141e29323b46525e696f7c869299a3abb5bdc5cdd6d6cec5bebab2aca8a09e9a97928f8d8c8b8a8a8b8d8e9197999ea1a8adb3bbbaafa59e938e939eaab6c2cfdbd8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000a151f2b3844505b66727f8b98a2aebac7d2d4c8bdb2a89d9083776b606975818e9ba6b0bbcbd4d3c7baaea3988c7f73665c5145382c1f13050000000000000000000000000000000000000000000000000000000000000006131f2c3845515c67717e8a929da5aeb4b9bdc4bdb5aea8a09d99969594948a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000c1825323f4b5865727e8b98a5b1bed1dcd4c7bbafa499877b6e6154483b30251a0d0400000000000000000000000000000000000000020b14212d3a46535e697784919daab7c4d0dbcec2b5a89b8f8275685c4f4235291c0f020000000000000000000714212d3a4754606d7a86929facacaeb4b8b9beb8ab9f958a7d70685e534941383029201b17110e090a09080809060b0f12181e252a363e46535f6974808d9aa8b2bdc9d5e1dccfc3b6a99c90837669554b4035291d1104000000000000000000000000000000000000000000000000000000000009141f28343f4a54606a74808d96a1adb9c1ced8d2c7bdb1a79f92857a6e61594f43392e23180c19222b3744505b656f7c87929fa8b2bdcad3e0d7cbbfb5ab9f948b7e71685e52473d30271c0f060000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000000000006111c2630384854606b75828f99a3afbcc6d0dfd9cdc5b9aca1968b7e72675c65727e8b98a5b1becbd8d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1925303b44505a616e7b849198a2abb5bdc7cfd6d5ccc4bcb3aea8a19e96918d898582807f7e7d7d7f808185898d91969ea1a9afb6b7afa59e9b9ea5afbac6d2ded8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54606d7a85929facb6c0ccd8cec3b8ab9f95897d70636e7b87929facb9c2ccdfd2c5b9ac9f92867a6d61544b4034281c1004000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7984919ea4aebabfc5c7beb5aba39f95918c89888787877d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000b1724313e4a5764717d8a97aab4bfcbd7d7ccc0b5ab978a7e7164574d42362a1f160d040000000000000000000000000000000000020b141d29323b4854616e7b87939facb9c6d2dacec1b4a79b8e8174685b4e4135281b0e020000000000000000000713202c3945525d6876828f9caab4babfc5c6c8bcb1a79e92857a6e655b534a423a322b27221b1a17171615151617171c1f242930363e48505a616e7b86929facb8c4cfdae4d8ccc0b6ac9a8e8174675b4e412f24180d010000000000000000000000000000000000000000000000000000000000020b17232e38424e58606d7a84919ea6b0bcc6d0d9d0c3baaea2988e81756b60554b4034281f151e2935414c56606c77839099a3afbac4cfdcdbd3c7bbaea3999082776c60564c41352b1e150b000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000b17232e3842505a636f7c89939eabb5c0ced7e2d4c8bcb1a79e9184796d605566727f8c99a5b2bfccd8d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c56626c76828f96a1aab4bdc7cfd9d4cbc3bab2aaa29f96918a84807c79757472717071727375787c80848b92979fa4acb4b7afaaa8aaafb7c1cbd7e2d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3845515d6774808d9aa4afbbc8d4d4c8bcb1a79c8f82766a74818d99a3afbbc7d4d3c7bbb0a69b8e8174685e5242392e23180c0000000000000000000000000000000000000000000000000000000000000005111e2a36424d5765727e8b96a1acb6c0caccc0b6aca399928b847f7c7b7b7a7b796d6053473a2d201407000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000815222f3b4855626e7b8898a3aebac7d3ddd2c2b5a99c8f8276695e52463d31281f160e08020000000000000000000000000000070c141d262f3b44505a66737f8c9aa4afbbc8d4d8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000004111d2935414c5665727e8b98a2aebac5d0d2cdc3b9ada1978f82776c655c544c443e37332d2a262423222122232322282b2f353a4146505a626c75828f98a3aebac7d6e0e0d4c8bbafa49a8a7e7164574b3e312418070000000000000000000000000000000000000000000000000000000000000006111c26303c45515d67717e8a949eaab4bfcad6d6cabeb3aa9e93897d70675c51453c31261c26303846525e68717e8b949fabb5c0ccd6e0d5c9bdb2a89f92877c6f655b50443a3023190c03000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000003101c28343f4a54616c7683909ca5afbdc7d1e0d9d0c7b8aca0958a7e71665c596673808c99a6b3bfccd9d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202d3946525e68717e8b949fa9b2bcc6d0d9d4cac2b9b1a8a098928c847e78736f6d6667666463646566656c6f73797f858d939aa2aab2bab6b4b6bac1c9d3dde4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2935414c55616e7b87939facb9c3ced8cdc3b7ab9f94887c6f7a86929fabb5c0cbd7d0c4b7ab9f94887c6f62564c4130271d1207000000000000000000000000000000000000000000000000000000000000000714202d3a46525e697683909ca8b2bdc8d4c8bbafa49a92877f7873706e6e6e6e6d675c5145382c1f1306000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000713202d3a4653606d7986929facb9c5d2dfd2c6b9ac9f93877b6e61594f433a31282019130e090603000000000000000205080d12181e262f38414d56626c7784919dacb6c0ccd8d4c8bcb1a7968a7d7063574a3d3024170a00000000000000000000010d19242f3a4754616d7a86929faab3becad6d5c9beb3a99f948d80776d665e565046443f38363131302f2e2e2f302d33383940454c525a616c717e8b949eaab4bfcbd6e8dfd2c6b9ac9f93877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000a141e2935414c55616c75828f98a2aebac3d0d9d0c5bcafa59e9184796d60574d42372b232e38424f59616d7a85929ea6b0bdc7d1ded7cec5b9aca1968d80736a5f53493f32281e110700000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000000020c16202b3844505c66707d8a949fabb7c1cfd9ddd2c7beb0a69d9083786c60545a6773808d9aa6b3c0cdd9d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090707070707070707070707070707070707070707070707070707070707070707070707070707060400000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141e2a36424d57616e7a85929fa6b0bbc4ced8d6ccc2b8b0a7a09691857f79716c6563605c545958575758535b6062666d727980889298a1a8b2bbc1c2c6cbd3dbe5e4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d19242f3a47535f6975828f9ca7b1bcc8d4d3c7bbb0a69b8e8175808c98a3aebdc7d1d5c9bdb2a89c8f83766a5f53443a301e150b00000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7b87939facb9c4cecbc0b5ab9f93887d726d666362616161605c554b4034291c1004000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000006121f2b3844505c667683909ca9b6c3cdd8d4c7bbafa4998d80746b60554b433a3229251e1a1312100b060b0a0b0c090e1214191c23283038424a535e68717e8b96a0acbec7d2ddd1c4b8aca095877a6e6154473b2e21140800000000000000000000000813202d3946525e6873808d98a2aebac5d0d9cfc5bbb0a69d928d81786d68615a53504946423f3e3d3c3b3b3c3d3e3f44464b51565e616c717e87929fa6b0bcc6d0dce2d6cabeb3a99d908376685e5246392d2013070000000000000000000000000000000000000000000000000000000000000000020c19242f3a43505a616e7b86929fa7b1bec7d2d7cec1b9aca0968c7f73695f53473e3128343f4a54606b74818e97a1adb8c2cfd9dbd0c5bcafa59e9184796d60584e41382d20160c0000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000008131e2935404b55606d7884919da6b0bcc9d3e1d8ccc0b6ac9f94897d70655b505a6774808d9aa7b3c0cddad3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231614141414141414141414141414141414141414141414141414141414141414141414141414141313100c070000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1925303a46535f6974818d97a2adb8c2cdd6d9d0c4bab0a69f9590847b726d67605b5353504a4c4b4a4a4c495053545c60676d737e869196a1a9b3bdc6d1d7dde5ede4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4233271c0e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e2b37424d5763707d8995a0acb8c5cfd8ccc2b9ac9f93877c85929faab4bfcfd9d2c5b9aca0968a7d7064584e4332291e0c0300000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a9aa4afbbc8d3c7bbafa3998d80746b605c545554545453514b43392f23180c00000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000003101c28343f4a5466727f8c99a7b1bcc8d4d7ccc0b5ab9f93877d6f675d554c443d35302b26201f1c171918171718191a1e21252a2e343c424a545b656e7b85929fa8b2bdd0d9ddd0c3b6aa9d908377685e5246392d201407000000000000000000000005111d2a36414c56616d7a85929fa9b3bec7d2d6cdc2b8aea49d938e827a716c63605b53534d4c4a4a494848494a4b4a5053555d60686d757e879299a3afb8c1ced8e2dbd3c6baada2978b7e7164564c41362a1d110500000000000000000000000000000000000000000000000000000000000000000008131e28313e46535e69727f8c95a0acb6c0ccd8d4c8bdb2a89f92867b6e615a50433a2f3844505c666f7c87939fa9b3becbd4e1d6cabfb4aa9e938a7d70675d51463c2f261b0e050000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000010d1925303945515d67717e8b95a0acb8c2cddbe0d4c8bbafa49a8f82766b6053495b6774818e9aa7b4c1cddad3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23212121212121212121212121212121212121212121212121212121212121212121212121212121201f1c18120b03000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c56616e7b86929fa9b3becad4ddd2c7beb2a89f9490837a6e69605c55504946443f3f3e3d3e3f3f44464b51555d606c707c849197a2abb5bfcbd7dfeaf5e4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569594f44382c20170d030000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a26313c4854606b7784919da9b3becad6d4c7bbafa49991859197a2adbcc6d0d6cabfb4aa9e9184786c6053463c3220170d0000000000000000000000000000000000000000000000000000000000000000000d1a2633404d596673808c99acb6c0ccd2c5b9ac9f92867a6e6159504a484847474745403931271d120700000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000b17232e3c4855626f7b88959fabb8c4cedad2c7bbafa4999184796d675e564e46413a37312d2b2823252524242526262a2d30363940444d545c666c77828f97a2adbac3cee2d3c7bbb0a6998c807366564d41362a1e11050000000000000000000000010d1925303a46525e6873808c97a1acb6c0ccd8d4cac0b7aea59e948f857e76706c65615f57595756555455565657545b6062676d727a818a9299a3abb5c0cad3e0ded5c9bdb2a99f9285796d6053473a3025190d01000000000000000000000000000000000000000000000000000000000000000000010c161f2a36424d57606d7883909aa4afbbc5cfd9cec3baaea3988f82766c61564c4136424d57606d7883909aa4afbbc5cfddd9d0c7baaea2988f82756b61554b40342a1d140a000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000005111d2a36414c56606d7984919ea7b1bccbd4ded7cbbfb4ab9f93877c6f62594f4e5b6874818e9ba7b4c1cedad3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2d2c28231d150c030000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e6874818e99a3aebbc5d0dcd8ccc0b6aca19690827a6e685f57514b443f3a38342e3130312d33373940454b515a616a6f7b859299a3aebbc3cdd9e4f0e4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3ddd0c3b7aa9d9083776b6054483e33291f150d05000000000000000000000000000000000000000000000000000000000000000000000000000000000009151f2c38444f5965727e8b97a2adb9c7d1d7ccc0b5aba1979197a1a9b3beced8d3c6baaea2988c7f72665b5044382b1f12050000000000000000000000000000000000000000000000000000000000000000020f1c2935424f5c6875828f9ba8b5c2d2cfc2b5a89c8f8275685e52443f3b3b3b3b3a38342f271f150b0100000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000615212e3a47535f6a7783909da8b2bdc9d5d7ccc0b5aba0968f82796d686058524c47423c3a38342e32313031323331363a3b41464a51575f666d78818e949ea9b3beccd5d9d0c7b7ab9f94887c6f6255483c3025190e0200000000000000000000000008131e2935414c56606d7a85929aa4afbbc2cdd6d2c9c0b7afa69e97928a827d78726e696865646362616162636466666c6f74797e858e939fa3abb5bdc7d1dcdfd5ccc3b9ada1968c7f73675d514539291e13080000000000000000000000000000000000000000000000000000000000000000000000040d1a25313b44515c666f7c88939fa9b3bec9d5d7cbbfb4aa9f948a7e71685d52453c46525e69727f8c95a0acb6c0cdd7ddd2c7bdb1a79f92867b6e61594f43392f22180b02000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600040e19222d3946525e68737f8c96a1adb9c3ceddded3c7baaea3998e81756a5f54474e5b6874818e9ba7b4c1cedad3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a38342e271e150b0000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7a86929fabb5bfcdd7dfd4c8bbafa49a91847a6d685e564d454039332d2b282325242422272b2e343a404550585f69707d87929fa7b1bcc8d4dee8e4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3ded1c5b8aca095897d70635a50453b31271f170e0a0401000000000000000000000000000000000000000000000000000000000000000000000000000003101c27333d4753606d7985929eabb5c0cbd7d2c7bdb3a9a19ea1a9b3bbc5cfd8ccc0b6ac9f92857a6d60544a3f33281c0f03000000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfccbfb2a5998c7f7266564c41342e2e2e2e2d2c29231d150d030000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000006121f2b37434e5864717e8a96a1acb9c2ced7d2c7bdb2a89f948f837a6f6a615e56534d4946443f403f3e3d3e3f40404246484c52545c60696e78818e939da6b0bbc5cfddd2c7beb1a79c8f82766a5f53473a2e1f140800000000000000000000000000020d1925303a45515d67707d88939fa6b0bbc4ccd5d2c9c1b8b0a9a19e948f8a847f7b78757271706f6e6e6f70717376797c81858b92979ea5afb5bdc7cfd9dfd6cdc3baafa59e9184796d60554b403529170c0200000000000000000000000000000000000000000000000000000000000000000000000009141f2834404a54606b74818e97a1adb9c2cfd8d1c6bcb0a69e91857a6d60584e434f59616e7b86929fa7b1bec7d2dfd7ccc0b5aba0958c7f72695e52473e31271d100600000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000a15202a36424d57616d7a85929fa9b2bdccd5dfd6cabeb3a99f92867b6e61584e434e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256494747474747474747474747474747474747474747474747474747474747474747474747474747474747474645403930271d120700000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b65727f8c99a3afbdc6d1dfd4c8bcb1a79f93887d70685d564d443c342f27221f1c17181717171b1f23282f353e464e57606b727f8b95a0abb8c1ccd7e3e4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3e0d4c8bcb1a79c8f82766c61574d43393129201b15110d07080706060708090b0909070300000000000000000000000000000000000000000000000000000b161f2c3945515d6773808d99a3afbbc7d3d9d0c4bbb3adabadb3bbc4cdd7d4c8bbafa49a8d8074685d5242382d22170b00000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0c9bcb0a396897d7063564a3d3023212121201f1c18120b03000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000030f1b26313c4653606d7984919ea6b0bcc5d0d9d0c4bab0a69f9590837c746d68625f575553504a4c4c4b4a4a4b4c4d4d5355565e61666d727b828e939da5afb8c1cdd7d8ccc0b6ac9f958a7d7064584e43372b1f0d02000000000000000000000000000008131e2935414c55616b73808d949fa9b2bac3ccd4d2cac1bbb3ada69f9c96918b8885827f7d7d7c7b7b7c7d7e808285888d92989ea1a9afbbc0c7cfd9ded6cdc4bbb2a89e938a7e71675d5143392f24180500000000000000000000000000000000000000000000000000000000000000000000000000030c18232e39424f59606d7a85929ea6b0bcc6d1d8cfc2b9ada1978d80746a60544b55616b75818e98a2aeb9c3d0d9dcd4c7bbafa4999083786d60574d42352c1f150b0000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206020b1b27323a46535f6974808d98a2aebbc4cfdeddd3c6baada2978d8073695e5346424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f62565454545454545454545454545454545454545454545454545454545454545454545454545454545454545453514b42392e23180c00000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eabb5c0cfd8ded1c5b8aca0958d80736b60564c433b3229231d1712100b060a060b0f12181d2429343c454f59606c7883909da6b0bbc6d2e2e4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3e4d9cec3b7ab9f948a7e71695e554b433b322b26201d181514141313141516181615130f0a0400000000000000000000000000000000000000000000000004101d2935404b55616e7b86929facb9c3cdd8d6cdc4beb9b8b9bec4cdd6dfd2c6b9ac9f93877b6e61564c412f261c110600000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0c8bbafa295887c6f6255493c2f221614141413100c070100000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000a151f2c3844515c66717e8a949fa9b3becad6d6ccc2b8b0a79f959188817a736e696562605c54595858575758595a575f6164686d72797f8690949ea5afb7c1cad3d6cdc5bbafa49a9083786c6053463c31261b0f000000000000000000000000000000020d19242f3a434f59606d78829097a1a8b1bac2cbd5d3cdc5beb9b0aba8a09d9897918e8c8a8988878889898a8d8f92989a9fa2aaadb3bbc1cbd1d9dad6ccc4bbb3a9a0968e81756c61554b4031271d1207000000000000000000000000000000000000000000000000000000000000000000000000000007121c27303d45525d68717e8b949faab4bfcbd7d5c9beb3a99f93877c6f665b515c67707d89939eaab4bfcbd5e1d5c9beb3a99f93877c6f665c50453b30231a0d030000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12000a141d2b37434e58616e7b86929faab3becdd6dfd5c9bdb2a89f92857a6d61574d42424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f626161616161616161616161616161616161616161616161616161616161616161616161616161616161616161605c544b4034281c1004000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a0acbdc7d1e1d5c9beb3a99d9183796d60594f443a31292018120b0603000000000003070c1318222a333d44505b65707d89939eaab6c6d0dbe7d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dfdfd3c7bbb0a69f92857b6e675d554c443d37322c29242221201f202121232523221f1b160f070000000000000000000000000000000000000000000000000c18242f3946525e6975828e9ba7b1bcc8d4dfd6cfc9c6c4c6c9cfd6dfd4c8bcb1a79c8f8275695f53433a2f1d140a0000000000000000000000000000000000000000000000000000000000000000000004111e2a3744515d6a7784909daab7c3d0c7bbaea194887b6e6155483b2e2215080807060400000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000004101c2834404a54616c76828f97a2adbabfc8d7d4cac2b9b1a8a09a938e85807b76726f6d6667666564636465666768696e71757a7f848c92989fa6afb7c1c9d2d7cdc5bbb1a79f93877c6f655b5044372a20150a0000000000000000000000000000000008131e28313e44505c666e7b859196a0a8b1b9c1c9ced7cfcac2bbb7b2acaaa9a19e9b989796959494959697999c9fa2aaabaeb3b9bec5cdd7dcd7cfcac2bab2a9a19791847a6d605a5043392f1f150b010000000000000000000000000000000000000000000000000000000000000000000000000000000b151e2935414c56616c76828f98a3aebac3ced9cfc4bbafa4999083786c6057606d7984919ea5afbcc5d0ddd8cfc6b9ada1978d80746a60544a3f33291f1108000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206111c262f384754606a75818e99a3aebcc5d0dfd9cec5b9ada1968c7f72685e52453b424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d665c5145382c1f1306000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576773808d9aa8b2bdcfd9dfd2c6b9ada1978b7e71675c51473d32281f170e0701000000000000000000010710182127333f4953606b75828f9baab4bfcad6e2d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dfe4d8cdc2baada2979082796d675e564f47433c39352f2f2e2d2c2d2d2e3031302f2c2721191007000000000000000000000000000000000000000000000007121d2a36424d57636f7c89959fabb8c4cfdae1dad5d2d1d2d5dae1ded1c5b8aca095897d7063574d4231281e0b020000000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0c7baada194877a6e6154473b2e2114080000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000c18232e3942505a616e7b85929fa4adb6c0cbd1d4cbc2bab1aca49f97928d88837e7c797674737271707172737375787b7e81868c91969fa3aab0b8c1c9d2d5cdc5bbb3a99f958d80746a6053493f3327180e0300000000000000000000000000000000010c161f28343f4a545e696e7c8491959fa7afb9bdc4cbd1d6ccc7c3bdb8b7b2adaba8a5a4a3a2a1a1a2a3a4a6a9abaeb4b8babec5c9cfd6d8d3cdc5beb9b0a8a19791857b6e685d52483e31281d0d0300000000000000000000000000000000000000000000000000000000000000000000000000000000030c1924303a44505a626e7b86929fa8b2bdc8d4d7ccc0b5aba0958b7f72685f6973808c96a0acb7c1ced7dcd1c6bcb0a69e91857a6d60584e42382e21170d00000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120b17222d38424f59626f7c87939fabb4bfced7e2d4c8bcb1a79e9184796d60564c4133424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3d6c9bcb0a396897d7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a786d6053463a2d201307000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f697784919daab7c4ceddd7cbc0b5ab9e9285796d60554b40352b20160d0500000000000000000000000000060f17222d38414f5964707d8a98a2aebac6d3dfd8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dfe9ded6cabeb3a99f948f82796e686159534e4745403e3b3b3a38393a3b3c3e3c3b38322b22190f0400000000000000000000000000000000000000000000010e1a25303b4854606b7783909da9b3bec9d5e2e6e1dfdedfe1e6e2d5c9beb3a99d9083776b6054453c311f160c000000000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683909ca9b6c3cfc7baaea194877b6e6154483b2e2115080000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000007121c27303e46535f69707e8a929ca4aebbc0c7cfd6ccc3beb6afa9a29e9a94908b888583807f7f7e7d7d7e7f808285888a8e92999ea1a8aeb4bcc2cad3d5ccc3bbb3a9a1979083786d60584e41382d221706000000000000000000000000000000000000040d17232e38424d565f6a6e7b8390959ea5acb2bbc0c7ccd2d3cec8c5c4beb9b8b5b2b0b0afaeaeafb0b1b3b6b8babec5c6cad0d5d6d3cdc7c1bbb3ada69f9691857c6f695f564c41362c1f160c00000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323e47535f6973808c96a0acb8c1cdd7d2c7bdb1a79f92857b6e626e7b86929fa8b2bdc9d3e0d7cbbfb4aa9f948a7e71685d52463d30261c0f0500000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120f1c28333f4a54606b76828f9aa4afbdc6d1e0d9d0c7b8aca0958b7e71675d51443a30424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabeb1a5998f89878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787877e7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8895a0acb8c5d1ded3c7bbafa3998c8073675c5143392e23190e0400000000000000000000000000000006111b262f3d4753606d7985929facb8c5d2dfd8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dff2e6dbcfc5bbb0a69f948f827a706b625f5853514b4a48474745464748494b4948433d342b21160a000000000000000000000000000000000000000000000009141f2c38434f5964717e8b97a1adb9c6d1dcd5d5d5d5d5d5d5d5d2c6b9ada1978b7e7165594f44332a1f0d040000000000000000000000000000000000000000000000000000000000000000000000020f1c2935424f5c6875828f9ba8b5c2cec8bbaea195887b6e6255483b2f2215080000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000000b151e2a36424d57616c73808c929da4afb5bdc3cad0d0c7c0bbb3adaba69f9c989892908d8c8b8b8a8a8b8c8d8f9197979b9fa3abacb2babfc6ced7cec9c1bab2a9a29792857b6e665c51463d2f261b11060000000000000000000000000000000000000006111c26303b444e585f696e7a838e939ea1a8afb5bbc0c7c9cfd3d1cfc9c6c4c1bfbdbcbbbabbbcbcbdc0c2c5c6cad0d3d6d3cfcac6c2bcb7afa9a19e948f847b6f6a5f574d433a2f241a0d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202b37424d57606d7984919ea5afbbc5cfd9d0c3baaea2988e81756c76828f98a3aebac4cedbdbd3c7baaea3988f82766c61564c41342b1e140a0000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f0c16202b3844505b66707d89949facb6c0cfd8ddd2c7beb0a69d9083786c60554b403235424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3dacdc2b6aba199969494949494949494949494949494949494949494949494949494949494949494949494949494949494949494948a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a8b1bdc8d4dfd2c5b9ac9f92867b6e61554b4030271d110700000000000000000000000000000000000a141f2c3845515c6775828e9ba8b5c1cedbd8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dfeee8e1d7cdc2b8b0a69f948f857d756f6a64605d555755545351535454565856544f463d32271b0f0300000000000000000000000000000000000000000000030f1b27323d4653606d7985919eaab4bfcbc8c8c8c8c8c8c8c8c8cbbfb5ab9e9285796d6053473d3320180e000000000000000000000000000000000000000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7b4c1cdc8bcafa295897c6f6256493c2f2316090000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000000030c1a26313b45505a636d73808d929fa3abb1babfc6ced2ccc5beb9b8b0aba9aaa29f9c9a999897969798999a9b9ea1a9a8acaeb4b9bdc4cbd0d1cbc4bdb9afa8a09792857c6f695f544b40342b1d140a0000000000000000000000000000000000000000000a151e29323c464e575e686d79818a91969fa3abafb5b9bec4c7cad0d1d2d1cecbcac9c8c7c7c8c9cacccfd2d3d2d1d1cbc7c5bebab8b0aba59e97928b827a6e695f584e453b31281e12080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e1a26313c45515c67707d89939ea9b3becad6d6cabeb3aa9e93897d717e8a949faab4bfccd5dfd4c8bdb2a89f92867b6e615a50443a2f22190c020000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f131e2834404b55606c7883909da6b0bec7d2e1d8ccc0b6ac9f948a7d70665b5043392f35424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3ded3c7bdb3aba5a3a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546774818d9aa7b4c0ced9dbcfc2b5a89c8f8275695e5243392e1e150b00000000000000000000000000000000000004101c2934404b5565727e8b98a5b1becbd8d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3ebe4ddd8d4d2cbc2b8b0a69f979289827c75716d6766646261605d60606163646360594f43382c1f130700000000000000000000000000000000000000000000000a161f2c3845515c66737f8c98a3aebabbbbbbbbbbbbbbbbbbbbbbbbaea3998c8073675d5145382c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccc9bcb0a396897d7063564a3d3023170a0000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000000009141f29333e48525b646e73808b9299a0a7aeb4bcc2c7cdcfcac6c2bcb7b6b4aeaca9a7a6a5a4a3a4a5a6a6a8abadb3b4b9babfc6c9ced1cbc6bfbab2aca59e9691857c6f6a5f574d42392e22190b02000000000000000000000000000000000000000000030c17202a343c454d565e676d757d848d92999fa4abadb3b8babfc1c4c5c9cecccdcececfcfcecdcccbcbcec8c5c4c1bfbab9b3adaba69f9c938e857e766e685f574e463c33291f160c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009151f2834404b55606b75818e97a2adbac2cfd9d0c5bcafa59e91847a85919ea6b0bcc6d1ded7cdc5b8aca0968c7f73695f53483e32281e1007000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f19242f3845515c67717e8b95a0acb8c2d0d9e0d4c8bbafa49a8f82766b61544a3f312735424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3e4d9cfc5bdb6b1b0adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadada4978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c667683909da9b6c3d0dcd7cbbfb5ab998c7f7266564d4230271d0c03000000000000000000000000000000000000000c18232f3d4a5763707d8a96a3b0bdc9d6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3e2d9d2ccc8c6c6c8c2b8b0a9a19e938f87827e7a7573716e6e6d676c6d6e6f716f6b6054483b2f221509000000000000000000000000000000000000000000000004101c2834404b54616e7a86929facaeaeaeaeaeaeaeaeaeaeaeaeaeac9f92867b6e61554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1bed2cabeb1a4978b7e7164584b3e3125180b0000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000000030d18212c364049525c646e737f8791959fa2aab0b7bbc2c6c9cfcdc7c4c3bfbab8b6b3b2b2b1b0b0b1b2b3b5b8b9bec1c5c7cbd1cec8c6bfbab4aea8a09e938e847b6f6a60584e453b30271d10070000000000000000000000000000000000000000000000050e18222a333b444c555d606b707980878f93999ea1a9acaeb4b4b7b9bdbebfc0c1c1c2c2c1c0c0bfbebdbdb9b7b4b4aeaca9a29f9a949089817a716c615e564d453c342a21180d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c18232e39434f59616d7a85929fa6b0bdc7d1d7cec1b9aca09691849197a1adb8c2cfd8dbd0c5bbafa59e9184796d60574d42362c20160c00000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1d2935414c56606d7984919ea7b1bccad4e2d7cbbfb5ab9f93877c6f62594f42382d2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3ebe1d7cfc7c2bebcbabababababababababababababababababababababababababababababababababababababababababab0a4978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb9c5d2dfd3c7bbaea399897c6f6356493c3023150b00000000000000000000000000000000000000000716222f3c4955626f7c8895a2afbbc8d5d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3d9d0c7c0bbb9b9bbc0c2bbb3ada69e9a938f8a8682807d7b7a7a79797a7b7c7e7d6f6356493c302316090000000000000000000000000000000000000000000000000c18232e3946525e6874818e9ba6a2a2a2a2a2a2a2a2a2a2a2a2a2a79b8e8175695e5243392f24180c00000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96acb6c0cccbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120602020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000000000060f1a242e37404a525c646d727d838c92989fa6abb0b8b9bec5c6cad0d0cac6c5c3c0bfbebebdbdbebfc0c2c4c6c9cfcfcfc9c6c3bcb8b4aeaba39f96918a817a6e6960584e463c33291e150b00000000000000000000000000000000000000000000000000060f182129323a434b515961676d737c82878c91979c9fa2aaa8abacb2b1b2b4b4b5b5b5b4b4b3b2b1b0b2acaaa8aba39f9c97928d88837d756d68625a524c443c332a22180f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303d46525e68717e8b949fabb5c0cbd7d4c8bdb2a8a0969196a1a9b2becad4e1d6cabeb3a99e93897d70675c51453c31241a0d0400000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c18222c3945525d68727f8c96a1acb9c3cddcdfd3c7bbaea3998e81756a6054473e2f262835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3f0e9e1d9d3cdcac9c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7bdb0a4978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8898a3aebac7d3dfd2c5b9ac9f9286796d6053473a2d20140700000000000000000000000000000000000000000714212e3a4754616d7a8794a0adbac7d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6ddd2c7beb6afacacafb6bec5beb9b0aca49f9c98928f8d8a88878686868787898a7d7164574a3e3124170b00000000000000000000000000000000000000000000000007121d2a36414c56626f7c889495959595959595959595959595959595897c6f62564d4231271d120700000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b889aa4afbbc8cdc0b3a79a8d8074675a4d4134271a080000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f14212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000000000008111c252e38404a525b626b6f787f868f949c9fa6abadb3b8babfc1c3c6c7ccd2cdcccbcac9cacbcccccbd0cac6c5c2c0beb9b8b1acaaa39f99928c847d756d685f574e463d342a21180c030000000000000000000000000000000000000000000000000000060f172028313940454f555d606a6f757b80858a8f9298989b9ea1a8a4a6a7a7a8a8a9a8a7a6a5a4a3a8a09e9b9899928f8a85807b76706b615e565046413b322a2118100600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e2a36414c56606c77839099a3afbbc4ced9cec3bab2a8a19ea1a8b2bbc4cfdcd9cfc7baada2978e81756b60554b40332a1f12080000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c202a36424d57606d7a85929ea8b2bdcbd5dfd6cabeb4aa9f92867b6e61584e43352c1d2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3f0efe6dfd9d4d1d0cfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcabdb0a4978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996aab4bfcbd7dcd0c3b6a99d908376675c5145382c1f130600000000000000000000000000000000000000000714202d3a4753606d7a8693a0adb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d8ccc0b6aca49f9fa4acb6c0c9c1beb6afacaaa29f9c99979594999292999497887b6e6155483b2e221508000000000000000000000000000000000000000000000000000d1925303b47545f6a7682888888888888888888888888888888888882766a6054443b301f150b0100000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6cec2b5a89b8f8275685c4f423024190d0100000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000000000000000a131c262e384048515960666d727b828a90949a9ea1a9acaeb4b4b7b9bbc0bfc0c1c1c2c2c2c1c0bfbebdbebab8b6b3b3adaba7a09d98928e868079706b615e564d453d342b22180f0600000000000000000000000000000000000000000000000000000000050e161f282f353e434b51586062696e73797d8285888b8e91969697999a9b9b9c9c9b9a999898979696918e8b8986837e79746f6a636159524c443e36302920180f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c1925303a44505b656f7c87929fa8b2bdc9d5d5ccc3bab2adabadb2bac4cdd6dcd1c7bdb1a79f92857a6e61594f43392e21180e000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c26313a46525e6973808d97a2adbac4ceddded3c6baaea2988d8074695f53463d32231a2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3f1e6ddd5cdc8c4c3c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2bdb0a4978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1bed1dcdacdc0b3a79a8d807467554b4034291c100400000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d4c8bbafa49a93939aa4afbbc0ccc7c0bbb9b4aeaca8a6a4a1aba39f9fa39e928578695f53463a2d2114070000000000000000000000000000000000000000000000000008141e2b37434e58616d7a7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7a6d61584e4332291f0d0300000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c677884919eabb8c4d0c3b7aa9d9084776a564c4135291d110500000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c28282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000000000000010b141c262e363f474f545c60696e767d83888d92979c9fa2aaa7aaacafb5b2b3b4b5b5b5b5b4b3b2b1b1b4aeaba9a6a9a19e9a95908b86817b736d676159524c443c332b22191006000000000000000000000000000000000000000000000000000000000000040d161d2429313a40454e54575e61666d7176797c7f818487898b8c8d8e8e8f8f8e8d8d8c8b8a898784817f7c7976716d67625f58554f46413a322a251e170e06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e27333f49535f6a73808d96a1acb9c1ced7d5ccc4bdb9b7b9bdc4ccd6dfd7cbc0b5ab9f958b7e72685e52473d30271d0f06000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c2b37434e58616e7b86929fa9b3beccd6dfd5c9beb2a99f92857a6d61574d42342b201b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3eadfd5cbc3bcb8b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b0a4978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d8cbbfb2a5988c7f7265594c3f2f23180c0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d2c6b9ac9f938886939fa5afbbc0c7ccc8c6bfbab8b5b3b0aeb4aeacaca99c8f827669574d42362a1e120500000000000000000000000000000000000000000000000000020f1b26323c46525e686d6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6d685e52463d3220170d0000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2934404b55697683909ca9b6c3cfc5b8ab9f928578685d5246392d20130700000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f524539353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000000000000000020b141c242d353d424a51575f616c70767b80858a8f9298989a9d9fa4aba5a6a7a8a8a9a8a7a6a6a5a4aaa29f9c999797918d88837f7a756e6a605d554f46413a322a211910070000000000000000000000000000000000000000000000000000000000000000040c12181f282f353c43474d53545c6064666d6f7275787a7d7e7f81818282828181807f7e7d7c7a7775726f6d6764605c55534e48443d3630292019140d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17222d38414e58606d7984919ea5afbcc5d0dbd6cfc9c5c4c5c9cfd6dedcd4c7bbafa3999083786c60564c41352b1e150b00000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c2e3a47535f6a74818e98a3aebbc5cfded9cec6b9ada1978c7f73685e52453b3122191b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3e4d9cdc3b9b1abaaa9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a4978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1b2834414e5b6774818e9aa7b4c1cddad7cabeb1a4978b7e7164584b3e312518070000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d2c5b8ac9f92867f8c939da5afb5bdc3c9cfcac7c5c2c0bdbbbfbab9b3a6998c807366594d4031261a0e0200000000000000000000000000000000000000000000000000000a15202a36414c565e616262626262626262626262626262626262615e564c41342b200e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232f414e5b6874818e9ba7b4c1cec6baaea298877a6d6154473a2e21140700000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f52454242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424754606d7a8793a0ada6998c7f7366594c403326190d000000000000000000000000000000020a121b232b303940444d535a6164696e73797d8285888b8e90939997989a9b9b9b9c9b9a9a9998979698928f8d8a8785817c77726d68625f57514b433e35302820180f070000000000000000000000000000000000000000000000000000000000000000000001070d161d242932373b42464a5153545c60626568696e7071737474757576757473727170706d68686562605c5553514b47433c38332a251e170e0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3c45515d67707d8a939eaab4becad6e2dad5d2d1d2d5dae0e0d5c9bdb2a89f92877c6f665b50443b3023190c0300000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c38444f59626f7c87939faab4bfcdd7e1d4c8bdb1a89e9184796d60564c41332a1f101b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3e0d4c8bcb1a7a09d9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cedbd6cabdb0a3978a7d7064574a3d3124170a0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6cec5b8ac9f928579818e939fa4abb1b9bdc4c8cdd2cfcccad1cbc7bdb2a8978a7d7064574a3d31241709000000000000000000000000000000000000000000000000000000040d1925303a444c5254555555555555555555555555555555555554524c443a3022190f00000000000000000000000000000000000000000000000000000000000000000000000000000000000007192633404c5966737f8c99a6b2bfd2cabeb3aa95887c6f6255493c2f22160900000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f524f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f54606d7a8793a0ada6998c7f7366594c403326190d00000000000000000000000000000000000910191e272e343b42465055575f62666d7175797b7e818486898a8c8d8e8e8f8f8f8e8d8c8b8a8a888583807d7b78746f6a65615d56534e4540393129251e160e0600000000000000000000000000000000000000000000000000000000000000000000000000040c131820272b3136394044464a51535558565e61636466676868696968676665656463615e56585653514b4745403937312c272119130c0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2935404b55616b75818e98a2aebac3d0d9e3e1dfdedfe1e5e2d8cec6b9ada1968d80736a5f544a3f32291e11080000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f52453930394854606b75828f99a4afbcc6d0dfdbd1c5b8aca0958b7e71675d51443a3021180e1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3ddd1c4b8aba095908f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2936424f5c6975828f9ca8b5c2cfdbd5c9bcafa296897c6f6356493c302316090000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c1c1c1b8ac9f92857978818c9399a0a7adb2b8bcc2c5c6cad0cfd1c5b9ada196877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000008131e29323a41464748484848484848484848484848484848484746413a32291e10070000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97acb6c0ccd0bdb0a4978a7d7164574a3e3124170b00000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b606d7a8793a0ada6998c7f7366594c403326190d000000000000000000000000000000000000070c151c232831363e44494d53545c6064666c6f7174777a7c7e7f80818282828281807f7e7e7d7b797673716e696762605854524c47423c352f271f19130c0400000000000000000000000000000000000000000000000000000000000000000000000000000001070d151b1f252a2e34383a404446494c4d52545658595a5b5b5c5c5b5a5a5958575654524c4c494645403a38342f2b26201c160d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b18242f39434f59616e7b86929fa7b1bdc7d2dde8ebeaebede7dbd0c6bcb0a69e9184796d60584e42382d20170d000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f52452e3942505a63707d89949eabb5c0ced8e1d3c7bcb0a69d9184786d60554b4032291e0f0f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3ddd0c3b6aa9d9083838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383827d6f6356493c30231609000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101d293643505c6976838f9ca9b6c2cfdcd5c8bbaea295887b6f6255483c2f2215090000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb4b4b4b4b4ac9f9285796d747f8790959ea1a8abb1b6b8babfc0c2c4c4b8ab9e918478685e5246392d20140700000000000000000000000000000000000000000000000000000000020d1720293036393a3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3a3936302920170d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c889aa4afbbc8cbbfb2a5988c7f7265594c3f3226190700000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c6868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686d7a8793a0ada6998c7f7366594c403326190d00000000000000000000000000000000000000030b12181f262a33393c42474a5153545b60626567676d6f71727374757576757473737271706e6c666664615e5755544e4746413a373129241d150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f141a1c23282c2e34383a3c3f4246474a4b4c4e4e4f4f4f4e4e4d4c4b4a494746413f3c3a38342e2c29231d1a15100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313e46525e69727f8b959fabb5c0ccd7e3f0f7f8efe2d6cabfb4aa9e948a7d70675d51463c2f261c0e05000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f524534404a54616c7683909da6b0bdc7d2e0d9cfc7b7ab9f948a7d70665c5043392f20170c0f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676766f6b6054483b2f221509000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd4c7baada194877a6e6154473b2e2114080000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0a8a8a8a8a8a8a89f9285796c6d727c838b91969d9fa7a9acaeb4b4b5b7b9b5a89b8f827568564d41362a1e11050000000000000000000000000000000000000000000000000000000000050e171e252a2d2e2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2e2d2a251e170e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6cdc1b4a79a8e8174675b4e412f24180d01000000000000000000000b1824313e4b5764717e8a97a4ab9f92857875757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757a8793a0ada6998c7f7366594c403326190d000000000000000000000000000000000000000000070c141a22282d3137394044464a50535558555d6063646567686868696867676665646362605b545754524d4947433c3935302b262018120b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12181c1f23282c2d2f30363a3b3d3e4041414242434241403f3e3d3d3a3935302f2d2c28231f1c18120f0a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a36424d57606d78839099a4afbbc7d4e0edf9f9ece0d3c6baaea2988f82756c61554b40342a1d140a00000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f52453844515c66717e8a959fabb8c1d0d9dcd1c7bdafa59c9083766c61544a3f31271d0e050f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696360594f44382c201307000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101d2a3743505d6a7683909da9b6c3d0dcd3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d7986939b9b9b9b9b9b9b9b9b9285796c636a6f787f848a9095989c9fa2aaa7a9aaacaea6998c7f7366594c403025190e02000000000000000000000000000000000000000000000000000000000000050d13191e2021222222222222222222222222222222222221201e19130d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d677884919eabb7c4cfc2b6a99c8f837669554b4035291d1104000000000000000000000b1824313e4b5764717e8a97a4ac9f9287818282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828f9ba8b2a6998c7f7366594c403326190d0000000000000000000000000000000000000000000003090e171c20262b2e34383a3f4446484b4c51545657595a5b5b5c5c5c5b5a595857575553504a4a4846423c3b37322d29241e1a150c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c1012181c1f2022252a2d2e3031333435353636353433323231302e2d292523201f1c1813100c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d1a25303b44505c666f7c87939facb9c6d2dfecf9ede1d4c8bdb2a89f92867b6e615a50433a2f22180b0200000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245414b55606d7984919ea7b1bccad3e2d7cbc0b5ab9e93897c6f625a5042382e1f150b000f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c56544f473d32271b0f03000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101d293643505c6976838f9ca9b6c2cfdcd4c8bbaea195887b6e6255483b2f2215080000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d79868e8e8e8e8e8e8e8e8e8e8e85796c5860666d72797e83878b8f9298989a9c9e9fa3a896897d7063564a3d30231708000000000000000000000000000000000000000000000000000000000000000002080d11131415151515151515151515151515151515151413110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556976828f9ca9b5c2cfc4b8ab9e918478675d5145392c201306000000000000000000000b1824313e4b5764717e8a97a4aea399928e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8f939eaab2a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000050b10151a1c23282c2d3338393c3e414547494b4c4d4e4f4f4f4f4e4d4c4b4b4a4846443f3e3b3a36302e2b27201d19130e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004070c10121316191e202123252627282829292827272625242321201d19161313100c070400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f28343f4a54606a74808d9aa7b3c0cddae6f3ebded1c5b8aca0968c7f72695e53483e31281d10060000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f524545515d67727f8b96a0acb9c2cddcdfd3c7bbafa3998f82756a6054473e30261c0d03020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256505050505050505050505050505050505050505050505050505050505050505050505050505050505050504948443d352b21160b00000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2cfdcd5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000613202d394653606c788181818181818181818181818174685b545c60666d71767b7f8385888b8d8f9192999496877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000010507070909090909090909090909090909090909070705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f414d5a6774808d9aa7b3c0cdc5b9ada196867a6d6053473a2d201407000000000000000000000b1824313e4b5764717e8a97a4b5aba39f9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9ea6b0b2a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000000003090e12181c1f22282b2d2f2f35393a3c3e3f4041424243424140403f3e3d3b3938332d2e2d2a25221f1b15110d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090e1114141718191b1b1c1c1c1b1b1a191817161413110d0807060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303946525e68727e8b98a5b1becbd8e4f1eaddd0c4b7aa9d9184796d60574d42362c1f160c000000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c5b8ab9e9285786b5f52414c56606d7a85929ea8b2bdcbd4dfd6cabfb4aa9f92877b6e62584e43352c1e140a00020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256494343434343434343434343434343434343434343434343434343434343434343434343434343434343433c3b38322b23190f0400000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c2cedbd6c9bdb0a3968a7d7063574a3d3024170a0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c000006121f2b3844505b666c757575757575757575757575746f64594a50545c6064696e7276797c7e818284868788888477685d5246392d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071825323f4b5865727e8b98a5b1bed0c9bdb2a895887c6f6255493c2f221609000000000000000000000b1824313e4b5764717e8a97a4b1b5aeaca8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8aab0b4b2a6998c7f7366594c403326190d0000000000000000000000000000000000000000000000000000000000070c1012171c1f202224292c2d3031323435353536353434333231302f2d2b282221201e1a15130f0a05010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0b0d0e0e0f0f100f0e0d0c0b0a0a07070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e39424f59616d7a85929eabb8c5d1deebf8ebdfd2c5b8ac9f92867b6e615a50433a2f24190c020000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c5b8ab9e9285786b5f5246525e6873808c97a1adbac3ceddded3c6baaea2988d8174695f53463d32231a0c0200020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3636363636363636363636363636363636363636363636363636363636363636363636363636363636302f2c27211911070000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd7cabdb1a4978a7e7164574b3e312418060000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c0000030f1c28333f4a545b6068686868686868686868686868645d5348444a5053575e6165666d6f72747677797a7b7c7c6f62564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000030607080a0b0c0d0e0e0e0e0d0d0c0b09070705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a9b3becacfbdb0a4978a7d7164574a3e3124170b000000000000000000000b1824313e4b5764717e8a97a4a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a6998c7f7366594c403326190d0000000000000000000000000000000000000000000000000000000000000004060b0f121315191d202123242627282829292928272625242422201f1c171514120e0906030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b54606b74818e97a2adb9c6d2dfecf8ece0d3c6baaea2988f82756c61554c4135291e140a0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c4b8ab9e9185786b5e524d57616e7a86929fa9b3beccd5e0d5c9beb3a99f92867a6e61574d42342b2111080000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f292929292929292929292929292929292929292929292929292929292929292929292929292929292322201b160f07000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0cddad8cbbeb1a5988b7e7265584b3f2d22170b0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c0000000b17222d38424a50535b5b5b5b5b5b5b5b5b5b5b5b5b59534b41383f44464d5354545c6062656769666c6d6e6f6f6a5f53443a3024190d01000000000000000000000000000000000000000000000000000000000000000000000000020507060c101213151618191a1a1b1b1a1a191917161413110d0807070401000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8797a2adbac6ccbfb2a6998c7f7366594c4033261908000000000000000000000b1824313e4b5764717e8a979b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b998c7f7366594c403326190d00000000000000000000000000000000000000000000000000000000000000000000030606080d1113141618191a1b1c1c1c1c1b1a191818171513120f0b0607050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030606080a0c0d0d0e0e0d0d0c0a080706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d1a242c3845515c66707d89939ea9b3becad6e2eefaefe2d6cabfb4aa9e948a7e71675d51453d30261c110600000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c4b7ab9e9184786b5e51535f6974818d98a2aebbc5cfded9cec6b9ada1978c8073685e52453c3122190f000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1615130f0b0400000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8d9ccbfb3a6998c80736653493f33271b0f0300000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000006111c262f383f44464e4e4e4e4e4e4e4e4e4e4e4e4e4d4841392e34383b4246484a505355585a545b60606162625f584e4332281e1308000000000000000000000000000000000000000000000000000000000000000000000205080e111414171c1f20212325262727282827272626242221201d19171413110d080501000000000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e687885929fabb8c5cec1b4a79b8e8174685b4e413024190d010000000000000000000b1824313e4b5764717e8a8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000001040607090b0c0d0e0f0f100f0e0d0d0c0b0a0806060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060606060606060606060606000000000000000000000000000306060b0f1213151719191a1b1b1a1a1917151313100c070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a36424d57606d7984919da5afbbc5cfdbe6f2f2f3e7dbd0c6bcb0a69e91847a6d60584e42382e23170b03000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c4b7ab9e9184786b5e4e58626e7b87929faab4bfcdd6e1d4c8bdb2a89e9285796d60564c41332a1f1007000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316101010101010101010101010101010101010101010101010101010101010101010101010101009090703000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdcfdadbcfc2b5a89c8f8275655b5044372b1f120500000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c000000000a141d262d33383942424242424242424242424241403c372f23282c31363a3b3f4446494b4e4a505354555555534e463c3220160c02000000000000000000000000000000000000000000000000000000000000000003090e1214191e202123282c2d2e3031333334343434333332312f2e2d29252421201d1913110d0802000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c566a7683909da9b6c3d0c3b6a99d9083766a564c4135291d11040000000000000000000916232f3c4956626f7d8181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181817d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003061313131313131313131313120706040000000000000000060b0f1213171c1f20222425262728272726252422201f1c181413100c070300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313a46535f69737f8c95a0acb7c1cdd7e1ece6e5eaebe2d8cec1b9ada1968d80746a60544a3f34281f1409000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c4b7aa9e9184776b5e54606a75828f99a3afbcc6d0dfdcd2c5b8aca0968b7f72675d51443b3021180e00000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090303030303030303030303030303030303030303030303030303030303030303030303030300000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a8b2bdc9d5ded1c5b8ab9e9285796c605346392d20130600000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000000020b141c22282b2d3535353535353535353535353534302b25171c1f252a2d2e34383a3c3f413f44464748494947433c342a200e0400000000000000000000000000000000000000000000000000000000000000060b10141a1e21252a2d2e2e34383a3b3d3e3f404141414140403f3e3c3a393530302d2c2924201d1913100b04000000000000000000000000000000000000000000000000000000000000000000010d192530424e5b6875818e9ba8b4c1cec5b8ab9e928578685d5245392c2013070000000000000000000915222e3b4854606a6f747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474706c6155493c3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004060708090a0a0b0c0b0b0b0a090807060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b101220202020202020202020201f1312100c07000000030a0f11171c1f2022282b2d2e313233343434343332302f2d2c2823201f1d18120f0b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b19242f3a43505a616e7b86929fa8b1bdc9d2dfe0dcd9d8dedfe1e0d5c9bdb2a99f93877c6f665c50443b30251a0d040000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd0c4b7aa9d9184776a5e59626f7c89939eabb5c0ced7e1d4c8bcb1a79e9184786d60554b4032291e0f0600000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8796a1adb9c5d2dfd2c6b9ada297887b6e6255483b2e23170c00000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c0000000000020a11171c1f20282828282828282828282828282724201a0c10141a1e2123282c2d2f322d3338393a3b3c3c3b37322a22180e000000000000000000000000000000000000000000000000000000000000060b11171c1f262a2d3036393b3e3f444648494b4c4d4d4e4e4d4d4c4c4a49474641403d3a3935302d2a251e1b16100b040000000000000000000000000000000000000000000000000000000000000000081a2633404d596673808c99a6b3bfccc6b9ada197877a6d6054473a2d21140700000000000000000007131f2c38434e58606268686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686864615a5044392d20140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060609070c1013141515161718191818171716151313100c07090706040000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f2d2d2d2d2d2d2d2d2d2d2d2c201f1c18120b030b10151a1c22282b2d2d3338393b3d3f4040414140403f3d3b3a38342e2d2c29241f1b17110b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2935414c55616c76828f98a3aebac3cedbdbd4cfcccbd1d2d5dadacfc4bbafa4999083786d60574d42362a1f160c0100000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd0c3b7aa9d9084776a5d616b7683909ca5afbdc7d1e0d9cfc7b8ab9f958a7d71665c50433a2f20170d0000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e687884919eabb7c4d1ded6cabeb3a9978b7e7164544a3f34281c1003000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000000000000060b0f12131b1b1b1b1b1b1b1b1b1b1b1b1b1a18140f0903090e1214171c1f20222522282b2d2d2e2f2f2e2b262018100600000000000000000000000000000000000000000000000000000000020a11171c23282b31363a3b4146474b4a5053545658595a5a5b5b5a5a5959575554524c4d4a4745413a3936302c27211b160e09020000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becacabeb3a995897c6f6256493c2f231609000000000000000000030f1b27323d464e54565b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b575550473e33281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060b0f12131518181d1f20212223242525252524242321201f1c1818161313100c070603000000000000000000000000000000000000000000000000000000000000020c141c23282b3939393939393939393939392d2c28231c150c161c20262b2d3338393c3f4446484a4c4c4d4e4e4d4d4c4a484645403d3a39352f2b27221b17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3845515d67717e8a949eaab4bfccd5d9d1c9c4c0bfc4c5c9cfd6d7ccc0b5aba0958c7f72695e52463e31281d130700000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd0c3b6a99d9083766a5963707d8a949fabb7c1cfd9dcd1c7bdb0a69d9083766c61544a3f31281d0e050000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c566875828f9ba8b5c2d0dbdbcfc1b4a79a8e8174665c5044382c1f150a000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000306060f0f0f0f0f0f0f0f0f0f0f0f0e0e0c08030000000205060c1012131618171c1f2021222222211f1b150e0600000000000000000000000000000000000000000000000000000002080c141c23282e34383b4246484c525457545c606163646666676767676666656462615e565a5754524c4746413a38322c27211a140d0500000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9cfbdb0a4978a7d7164574a3e3124170b000000000000000000000a16212b343d4348494e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4a49443e352c22170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001040a0f1215171c1f20222524292c2d2e2f30313232323131302f2e2d2c28232523201f1c1815120f0a05020000000000000000000000000000000000000000000000000000000a141e262e34384646464646464646464646453a38342e271e1b21282c3137383f4446494a5053555758595a5b5a5a5958575553514b4a4745403937332d28221c140b080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424e58606d7a84919ea6b0bcc6d0ddd1c7bfb8b3b2b7b9bdc4ccd6d2c7bdb1a79f92867b6e615a50433a2f24180b02000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdccfc3b6a99c90837669606b7783909da6b0bcc9d3e1d7cbc0b5ab9e94897c6f635a5042382e1f160c000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d192530404c5966737f8c99aab4bfcad6ded1c4b8ab9e9184796d6053463c31261b0d040000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000002020202020202020202020202010000000000000000000003060709060b0f12131415161615130f0a04000000000000000000000000000000000000000000000000000000050d14191e262e34383f44464d5355565e616467666d6e7071727374747474737372716f6d68696663605d5654524c48443d38322a251f170e07010000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbc8ccbfb2a5998c7f7266594c3f3326190c00000000000000000000040f19222b32383b3c4141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141413d3c39332c231a10050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d11151a1f2122282b2d2f322f35393a3b3c3d3d3e3f3e3e3e3d3c3b3a38342e32302d2c2823211f1b15110e090200000000000000000000000000000000000000000000000006111c2630383f44535353535353535353535352464440393027272c33383c43474a505356545b60616465666767676766656362605c555753514b46443f38332d261d19130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54606a74808d96a1adb8c2ced8d4cbbfb5ada7a5abadb2bac4cfd9d0c3baaea2988f82756c61554b4035291d140a000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdccfc2b5a99c8f82766963707d89959fabb8c2cddbdfd4c7bbafa3998f82756b6054483e30261c0d04000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081723303d4a5663707d8998a2aebac6d3dfd2c5b9ada1968a7d7164584e43372b1f160c0100000000000000000000000000000000040e16202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060708090908060300000000000000000000000000000000000000000000000000000000060e171f252a30383f444a5053575f6166686e717476797b7c7e7f8080818180807f7f7d7c7a787673706d6865615e56544f48443d3630292018120c0400000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7cdc1b4a79a8e8174675b4e4134281b0e010000000000000000000007101921272c2e2f35353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353531302d28221a1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13181d20262b2e2d3338393c3e414045474848494a4b4c4b4b4a4a4948464540413f3c3a38342e2e2b26201e1a140f0a03000000000000000000000000000000000000000000000b17232e38424a505f606060606060606060605f53514a42392e32383e44484e53545b606266666c6e707273737474737372706e6d676764605d55535049443f382f29241e160e0600000000000000000000000000000000000000000000000000000000000000000000000000000000030d1a232b3844505b666f7c87929fa9b2bdcad3d9d0c2b9ada39b989ea1a8b2bdc9d5d6cabfb4aa9e938a7d70675d51453c2f261c11060000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdbcec2b5a89b8f8275686975828f9ca7b1bccad4ded6cabfb4aa9f92877c6e62594f44362c1e150a00000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929facb8c5d1dcd5c9bdb2a99c9083766a5f53473d31281d1307000000000000000000000000000000030d16202935404b55606d7a8693a0adb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1117202930363e424a50545c6064696e72767a7e80838687898b8c8d8d8e8e8d8d8c8c8a88878583807d7a76726d68636059544f46423b3329241d160d05000000000000000000000000000000000000000202020200010815212e3b4854616e7b8794a1aebac7cec2b5a89b8f8275685c4f4235291c0f020000000000000000000000070f161b1f22232828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282423201c171008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e151b1d24292c31373a3c3f4446484b4e4b515354555657585858585757565453514b4e4b494645403c3a37312d2a251f1a150e09030000000000000000000000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c6c6c605c544a40353d44484f55585f62666c6f7376797b7d7f7f80818180807f7d7b797773706d6763605b53504a423d353028201810080000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a36414d56606c78839099a3afbbc4cfddd2c7bdb1a79b918c9196a1adb9c1ced8d0c5bcb0a69e9184796d60584e42382d22170b0200000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdbcec1b4a89b8e8175686e7b87939facb9c3cddfded3c6baaea2988e81746a5f53473d32241a0c0300000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6675828f9babb4bfcbd7dacfc4b7ab9f94887c6f62594f433a2f2418120701000000000000000000000000050d151f28323a45515d67717e8b98a4b1becbd7d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c141c2328323b414650545c60666d70767b7f83878a8d909298969799999a9a9a9a99999897959892908d8a87837f7a75706b636059524d453f352f281f170f06000000000000000000000000000004080a0b0f0f0f0f070d1115222f3c4855626f7b8895a2aebbc8cfc3b6a99c908376695d5043362a1d1003000000000000000000000000040a0f1315161b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b171614100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c141a20272b2f35393c4347484a505355585b555d60616263646565656464636261605c545a585653514b4847433c3a36302b26201a140c0701000000000000000000000000000000000006121f2b3844505c667679797979797979797979786d665c514440454f545961636a6f74797c808385888a8b8c8d8e8d8d8c8b8a888683807d7974706c65605b544f45413a322a221a12090000000000000000000000000000000000000000000000000000000000000000000000000007121d27313946525e68727f8b959fabb5c0cdd6d7ccc0b5ab9f958c7f84919ea6b0bcc6d0d7cec1b9ada1968d80736a5f544a3f33281f140900000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdacec1b4a79b8e81746673808c99a4afbbc7d4e0d5c9beb3a99f92867b6e61584e43352b2112080000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b5465717e8b99a3aebac7d3e0d3c7bbb0a69a8e81746b60554b4035292418120b0600000000000000000002080e171f27313a444f59606d7985919eabb8c4d1ded8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161e262e343e444d525a61666d71787d82878c90939a9a9d9fa3aaa4a5a6a7a7a7a7a6a6a5a4aaa29f9c999a93908b86827c76706b615e57504540393129211810060000000000000000000000050b101416171c1c1c1c1c181d20262f3d4a5663707d8996a3b0bcc9d1c4b7aa9e9184776b5e5144382b1e11050000000000000000000000000000030709090e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0a0a08040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181f252a32373a4045474e5355545b606265676a676d6e6f70707172717171706f6e6d6669676563605c5455534e4746423b37312a261f18120b03000000000000000000000000000000000713202d3a4653606d788686868686868686868685786d6053464b515960636b70767b8085898c9092989798999a9a9a9a9998969992908d8a85817d78716c666059524c443c342c241b12090000000000000000000000000000000000000000000000000000000000000000000000000c18232f39434f59616e7b85929fa7b1bdc7d1dcd4c7bbafa4999083787e8a949eaab4bfcad6d5c9bdb2a89f92877c6f665b50443b30251a0d04000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdacdc0b3a79a8d80746d7984919eabb5c0ccd7ddd2c6b9ada1978d8073695e52463c3123190f000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3a4754616d7a86929facb9c3ced9d8cdc2b9ac9f93877d6f675d51453e3629241d17110c070604000105070a0f141920293139434c56606b73808d97a1adb9c6d2dfd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e161f2830383f4450565e616c70787e848a8f939a9d9fa4aca9acaeb4b1b2b3b3b4b4b3b3b2b2b0b3aeaba9aca49f9d99928f89827d756e69625a514b433b332a221810060000000000000000000810171c212324282828282824292c3038424e5866737f8c99a6b2bfccd0c3b7aa9d9084776a5d5144372a1e11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c151d232830363d43474b5153585f6266666c6f717477797a7b7b7c7d7e7f7e7e7d7d7c7b79787674726f6d6666625f5854524d47433c363129241d150d060000000000000000000000000000000713202d3a4653606d7986939393939393939397897d7063534e555d606b6f767d83888d9297999d9fa2aaa5a6a6a7a7a6a6a5aba39f9d9a98928e89847e78706b605d564e463e362d241b12080000000000000000000000000000000000000000000000000000000000000000000004101c2934404b55606b75818e98a2aeb9c3cfd9d5c9beb3a99f93877c6f75828f98a2aebac3ced9cfc4bbafa3999083786c60574d42362a1f160c010000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd9ccbfb3a6998c8073707d8a97a1adbdc7d2ddd5c9bdb2a89e92857a6d60564d42342a201107000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e6875818e9ba8b1bdc8d4e0d4c7bbafa4999184796d605a50483f352f27221b181413100c0d1113141a1f252a323b434b555e686f7d87929fa9b3bec9d5e1d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d162028313a424a505a61686e757d848b91969c9fa4acacafb6b6b9babfbebfc0c0c1c1c0c0bfbfbdbebab8b6b6afacaba39f9c948f89827b716c605d554d453c342a22180f060000000000000008121a22282d303135353535352f35393a414a545f6a76838f9ca9b6c2cfcfc2b5a99c8f8276695c4f4336291c1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607080808080808080808080808070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104060708080808080808080808070705010000000000000000000000000000000000000000000000020a11171e272e343b42464e54555d60656a6f7376797b7e818486868788898a8b8b8b8b8a8a8987868583817e7c7976726f6a65615e57534e46423b352f271f180f0900000000000000000000000000000713202d3a4653606d7986939f9f9f9f9f9fa99a8d8174655b5860676d747d838a90949a9ea1a9a9acaeb4b2b2b3b4b4b3b3b2b5afacaaaaa29f9b95918a847d746d685f5850483e362d241a11080000000000000000000000000000000000000000000000000000000000000000040e1b242c3845515c67707d89939eaab3becbd4d9cfc7b9ada1978d80746a6e7b86929fa8b1bdc8d4d7cbc0b5ab9f958b7f72695e52463e31281d12070000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8ccbfb2a5998c7f7275828f9ca9b2bed0d9dcd2c5b9aca0968b7f72675d51443b3022180e00000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c5663707c8995a0acb8c3ced9d7ccc0b5aba0968d81746c615a51454039332d2924201f1d18191d2021262b30363d444c555d676d7a849199a3afbbc4cfdae6d8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d162028323a434c545c606c717b828a91959ea1a8acafb6b9bbc0c3c5c7cbd1cccccdcdcdcdcccccbd0cac6c5c3c0bbb9b5afaca69f9c948f857e756d675e574e463c342a21180e03000000000005101a242c33393c3e4242424242424045474c525b666f7c88949fabb7c4d0cec1b4a79b8e8174685b4e4135281b0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c10131414141414141414141414141414110e080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d111314141414141414141414141413110d08020000000000000000000000000000000000000000040c141c2328303940454d52586062676d71767b808385888b8e91929994959697989898979796959a9392908d8b8985827f7b77726e69625f58534d454039312a221b120a010000000000000000000000000713202d3a4653606d798693a0acacacacacab9e9184786c60616a6f79818990949c9fa6abadb3b6b8babfbebfc0c1c0c0bfbec0bbb9b6b4aeaca7a09d969189817a6f6a615a50483e362c23190f05000000000000000000000000000000000000000000000000000000000000020c16202b37424d57606d7984919ea5afbcc5d0dcd1c7bdb0a69e92857a6d6069737f8c95a0acb8c1cdd7d1c7bdb1a79f92867b6e61594f43392f24180b0200000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e727a86929facb9c4cfdfd4c8bcb1a79e9184796d60554c4132291f0f0600000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090404040404040404040404040404040404040404040404040404040404040404040404040404040404040403030100000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a4854606b7784919da7b1bcc8d4ddd2c7bdb2a89d928a7e716c625b514b443f38352f2d2c2924252a2d2e31373b41464f565e676d79829096a1abb5c0cdd6e1e4d8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f28323a444c565d666d747e858f949da0a8acb2b9bbc0c6c8ccd2d2d1cfc9c6c5c3c2c1c0c0c1c1c3c5c6cad0ccc8c6c0bbb9b0aba69e97928b81796e695f584e463c332a1f150900000000000b17222c363e44494a4f4f4f4f4f4f4b5153565e616c78828f9ca6b0bbc7d3cbc0b5ab998c807366594d4033261a0d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181d1f20212121212121212121212121201e19140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13181d20202121212121212121212121201d19130c05000000000000000000000000000000000000050d161e262e343d424b51575e616a6f747a7e83888c8f9298989a9d9fa3aba2a3a3a4a5a4a4a4a3aca49f9e9c9a9898928f8c88837f7b756f6a615f57514b433c342d241c130a0100000000000000000000000713202d3a4653606d798693a0acb9b9b9b9ada197897c6f626c707c848e939c9fa6abb0b8b9bec3c5c7cad0cacbcdcdcdccd1cbc7c5c3bfbab8b1aca8a09d938e847c716c625a50483e352b21170c03000000000000000000000000000000000000000000000000000000000008131e28323a47535f6973808c96a0acb7c1ced7d7cbc0b5ab9f948b7e71685d606d7984919da5afbbc5d0d9cfc3baaea2988e81756b61554b4035291d140a00000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd7cabeb1a4978b7e727f8b99a3afbbc7d3d9d0c7b8ab9f958a7e71665c51433a2f20170d0000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23161111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100f0d0a050000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e2c38444f5964717e8a95a0acb8c1cdd7d9d0c4baaea49f92877e726d605d55504945403b3a38352f3036393a3d43474d525960686e79828f949fa8b2bdc7d1dfe8e4d8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d28313a444c565e686d78808a92979ea6acb1b9bdc4c8ccd2d4cfcac6c5c1beb9b8b7b5b4b3b3b4b5b6b8babfc1c5c6c9cbc7c2bbb7b0a9a29f938f837b6f6a5f584e453c31261a0e0200000004101c28333e485055575b5b5b5b5b5c555d6063686d75808d949fabb8c2cdd3c7bbafa3998b7e7165584b3e3225180b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d151d24292c2d2e2e2e2e2e2e2e2e2e2e2e2e2d2a251f170e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161d24292c2d2e2e2e2e2e2e2e2e2e2e2e2d2a251e160e0500000000000000000000000000000000070f171f2830383f444f545c60696e757c81858b9095999c9fa2aaa7aaacaeb4aeafb0b1b2b1b1b0b0b6afacaba9a7aaa29f9c9995908c86817c756e69605d554e463e362e251c140a01000000000000000000000713202d3a4653606d798693a0acb9c6c9beb2a99a8d80736c717e8691969da5abb0b7bcc2c5c4c2bfbebdbcbdbfc0c1c4c5c9ced1d2d0cac6c3bcb8b2aca59d9691867e716c625a50473d33291e150b00000000000000000000000000000000000000000000000000000000030c1924303a44505a626e7b86929fa8b2bdc9d3dcd3c7bbafa3999083786c60565c66707d89939ea9b3becad6d6cabeb4aa9e938a7d70675d51453c2f261c1106000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd6cabdb0a3978a7d7783909dabb5c0cbd7d2c7bdb0a69d9083786c60544b4031281e0e050000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1c1916100a03000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002101b27323d4653606c7883909da6b0bbc5cfdbd6ccc0bbafa39992887f736d67605b53514b4847454043434146474a4e53565e616b6f7a828f949fa6b0bac4cfd9e3ebe4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071018242f39434c565e686d7a828d929fa2a9b0b8bdc3c9ced4d3ccc7c5beb9b8b5b3adabaaa9a8a7a7a7a8a9acaeb4b4b8b9bec5c7cbc7c1bcb3ada59e9590857c6f6a5f574d42372b1e12060000000814212d3944505a616468686868686969676d70747a828d929da6b0bbcad4d2c5b9ac9f92867a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f272f35393a3b3b3b3b3b3b3b3b3b3b3b3b3936302920170f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f282f35393a3b3b3b3b3b3b3b3b3b3b3a3936302820160c0200000000000000000000000000000710192129313a424a505960666d727b81898e92989d9fa7a9acaeb4b4b7b9babfbbbcbdbebebebebdbdc0bbb9b8b6b4b4aeaca9a7a09d99928e87827b736d675f58504840372e261c130a000000000000000000000713202d3a4653606d798693a0acb9c6cfc4b7aa9e918477717e879298a0a8afb7bcc2c4bdb9b8b5b2b1b0b0b1b2b3b4b7b9bdc4c5c8ced5d3cec8c3bdb8afa8a19892887e716c61594f453b30271c12070000000000000000000000000000000000000000000000000000000a151e2935414c56616c76828f99a3aebac4cedbd5c9bdb2a99f92877c6f655b5054606b75818e97a2adbac2d0d9d0c5bcafa59e9184796d60584e42382d22170b020000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd6c9bcafa396897c7b88959fabbdc7d1d7ccc0b5ab9e94897d70655b5042392e1f160c000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a292826211b150d040000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b161f2b3744505b65707d8a949ea9b3becad6dcd7cbc0b5aba39a938b8079716c65605d555553514b50504c525457585f62686e747d848f949fa6b0b8c2c8ccd2d9e2e8d8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c19222935404b555d686d7a838f949da4adb3bbc1c8ced5d5ccc7c2bbb7b3adaba8a9a19e9d9c9b9a9a9a9b9d9fa2aaa7abadb3b9bbc0c7cbc5bebaafa7a09791857c6f695f53473a2d2114080000000a1623303c4955616c7175757575757576777a7c81868f939da4aeb8c2ccd5c9beb3a99c8f8276685e5246392d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313940454747474747474747474747474746413b322921170d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313a404547474747474747474747474746413a32281e130800000000000000000000000000061019222b333b434b545c606b70797f868e939a9fa2aaabb1b6b8babfc1c4c5c7cbd1c9cacbcbcbcacad2ccc8c6c5c3c0bfbab8b5b1acaba39f9a938f8680796e6a615a514940382e251c11080000000000000000000713202d3a4653606d798693a0acb9c6d2c5b9aca096887c7d879299a3aab2bac0bdb9b7b2adaba8a6a5a4a3a4a5a6a8abacb2b7b8bdc3c9cfd7d4cec8c0bab2aaa29a93877e716b60574d42392e23180c030000000000000000000000000000000000000000000000000006111c26303845525d68717e8b949fabb4bfccd5d8cfc6b9ada1968d80736a5f53494f59616e7a85929fa7b1bdc7d2d7cec1b9aca1968d80736a5f544a3f33281f14080000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd5c8bbafa295887c808c99a7b1bccfd9d4c7bbafa4998f82756b6053493f30271d0d04000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c37373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373635322d261f160d0300000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616b75828f97a2adbac0cad4dcd1c7bdb5aca49f928d847e78706d676561605d555d5d565e6163666a6f737b818791969fa6b0b8bbb9bbc0c7d0d6dfd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e2b343d45515d676d7a8390959fa6aebabec5cdd4d6cec9c1bbb7b0aba9a29e9b989792908f8e8d8d8e8e909298979b9ea1a9acafb5bbc0c7cac1b9b1a9a19791857b6e6155483b2e2215080000000b1724313e4a5764717e828282828282838486898e92989ea6aeb6c0cad4ccc4b9ada1978b7e7164564c41362a1d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f39434b5153545454545454545454545454524d443b33291f140900000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3a434b51535454545454545454545454524c443a3025190d010000000000000000000000050e18222b343d454d555d666d747d848c92989ea5acaeb4b8bcc2c5c6cad0d0d2d3d7dcd6d5d4d3d4d5d6ddd8d4d2d1cfd0cac6c5c2bcb8b5afaca49f98928c837c716c635b524a40372e231a0f0600000000000000000713202d3a4653606d798693a0acb9c6d4c8bdb2a89b8e81859299a3abb4bcbdb8b2acaaa9a19e9b9998979697989a9b9ea1a8aaacb1b9bec4cbd1d9d4ccc4bcb4aca49992877d70695e544a4034281f1409000000000000000000000000000000000000000000000000000c17232e38424e58606d7a85929ea6b0bdc6d1dcd1c6bdb0a69e9184796d60584e4146525e68727f8b959fabb5c0ccd7d5c9bdb2a89f92877c6f665b50443b3025190d0300000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd4c7bbaea194887b84919daab7c3cdd6cbbfb4aa9f93877c6f62594f41382d1e150b00000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f62564944444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444443423e3831281f150a00000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38414f59616e7b85929fa4aeb8c2cbd4d9cfc7beb6afa49d96918b837d7a75716e6d676a696a6b686d7073777b80868e9299a1a9b0b8b6afacafb6bec5cdd6d8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303d46515b606d79839095a0a7b0b8c0cacfd7d7ccc4bdb9b0aaa69f9c97928e8b8885848281808081828385878a8e92979b9fa3abafb5bdc1cac3bbb3a9a1978f8376695c504336291d100000000b1724313e4a5764717d8a8e8e8e8e8f909193999a9fa2aab0b8c0c8d6cbc3baafa59e92857a6d6054473a3025190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b555d606161616161616161616161615e564d453b30251a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935404b555d6061616161616161616161615e564c41362a1d110500000000000000000000030d17202a343d464e575e676d78808991969fa2aaafb8babfc5c7cdd2d3d6d7d3d2cfcccbc9c8c7c7c7c8c9caccced1d2d5dad6d3d2cec8c7c0bbb6afaaa39f9591867e736d635c52493f352c21180b02000000000000000713202d3a4653606d798693a0acb9c6d9cec3b6a99d938e9297a1abb5bdbab1aca8a09e9996918f8c8b8a898a8c8d8e9196999da0a8adb3bbc0c7cfd8d6cec6beb5aba39992857b6e665c51443b30251a0e04000000000000000000000000000000000000000000000004101c28343f4a54606a74818e97a1adb8c2cfd8d7cbbfb5ab9f948a7e71675d51463c414c56606c78839099a4afbbc4cfdacec4bbafa3999083786c60564d41362a1f150b01000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd6c9bcafa396897c8996a0acb8c5d4d3c7baaea3988e81746a5f53473d2f261b0c0300000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625650505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050504e49423a31261b1005000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3e46525e68717e8b929da6b0b9c3cbd4d9d0c7c0bbaea8a19e95908a86827e7b7a7877767677787a7d7f83888d92989fa3abb2bbb6aca49fa4acb3bbc5cfdacbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e38424e58626d75818e959fa7b1b9c2cad6d9d1cbc1bab2aca69e9c948f8985827e7b787776757474747576797b7e8185898e92999fa3abb0babfc6c4b9aca1968b7e7164584b3e3125180b0000000815222e3b4855616e7b88989b9b9b9c9c9e9fa4abacaeb4bcc1cad0cac2b9b1a89e938a7e70675d514539291e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d676d6e6e6e6e6e6e6e6e6e6e6e6e685e574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d676d6e6e6e6e6e6e6e6e6e6e6d685e5246392d201307000000000000000000020b151f29323c464e5860696e79828d929da0a8aeb4bcc1c6cad0d4d8d6d3d1cbc7c5c3bfbebdbcbababbbcbcbdbfc2c4c5c9cfd2d4d7d9d4d1cbc7c0bbb4aea7a098928b7f736e635b51473e332a1d140a000000000000000713202d3a4653606d798693a0acb9c6d3d2c6baafa59d9b9ea1a9b3bcb4aea8a09d96918c8884827f7e7d7d7e7f808184888c91959ea1a9afb5bdc6ced7d7d0c7bdb5aba1979083786d60574d42362a20150a00000000000000000000000000000000000000000000040d1a232c3844505c666f7c88939fa9b3becad4dcd3c7bbaea3998f82766c61554b41343b44505b666f7c87939fa9b3bec9d5d7cbc0b5ab9f958b7f72685e52463d31271d1207000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd9cdc0b3a69a8d808d9aa8b2bdc8d4cabeb3a99f92867b6e61584e43352b1d140a0000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5c5a544c42382d21160a000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2a36414d56616c74808d949fa7b1b9c2cad6d9d2ccc0bab2ada79f9d98928f8b8886858483838485878a8c90959a9fa2aaafb5bdbbafa49a939aa1a9b3bec9d5cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54606a727f8b939ea7b1b9c3cbd4d9cfc7c0bbb0a8a19e948f89827d7975716e696a696867676768656c6e7174797d82868d92999ea6aeb4bcbeb3a99e9184796d6053463a2d2013070000000613202d394653606c7985929fa8a8a8a9aaacafb5b8babfc6ceccc6bfbab0a7a0968e81756c61554b413529170c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d797b7a7a7a7a7a7a7a7a7a7a7b75695e52463a2d20160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a7b7a7a7a7a7a7a7a7a7a7a6d6154473a2e2114070000000000000000000a141d27313b444e58606a6f7b838f949da4acb2babfc6ced3d6dad5d0cac6c5c0bbb9b6b3b1b0afaeadaeafb0b0b2b5b7b9bdc2c6c7ccd2d5dad7d2ccc6bfbab1aaa29f918c80736d63594f453c2f261b11060000000000000713202d3a4653606d798693a0acb9c6d3d6cbc0b7afa9a7abadb3b9b1aaa29f95918a847f7b78757372717071727375787c80848a91979fa3abb4bcc6ced7d9d0c7bdb3a99f958c7f72695e52463c32261b0f030000000000000000000000000000000000000000010c161f2a36424d57606d7883909aa4afbbc5cfdcd5c9bdb2a89f92877b6e625a50433a2f333f4a54606a74808d97a1adb9c2cfd8d1c7bdb1a79f92857b6e61594f43392f24180b020000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdccec1b5a89c928d929ca8bac3ced2c6b9ada2978d8073695e52463c3123190b020000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a69665e54493e3226190d010000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b1925303b44505a606d78828f959fa7b0b8c0cad0d7d8ccc4bdb9b1abaaa29f9b9894979291909091929796999da0a7acaeb4bbc0b9b0a69f93869297a1adb9c6d2cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202c3844505c666f7c87929fa5afb9c2cbd5d9d0c7bdb5afa69e969189827c76706c6665615f575c5b5a5a5b535b606164666c70757b80878f949fa2aab1b9ada1978b7f72665c5144382c1f120600000005121f2b3744505b657683909ca9b5b5b6b7b9bbc0c5c6cac8c7c0bbb4aea69f9590847a6d615a50433a2f24180500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7c8787878787878787878787877b6e6154483d32271b0f0100000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f878787878787878787878276695c504336291d10000000000000000006111b262f39434c565f6a6f7c8590959ea6aeb8bdc3cad0d7dad5cfc9c5bebab8b5afaca9a6a4a3a2a1a0a1a2a3a4a5a8abadb2b5b9bbc0c7c9cfd8ddd8d1cbc3bcb4aea39c928c7f726c61574d41382d22170b0100000000000713202d3a4653606d798693a0acb9c6d3ddd2c9c0bab6b4b8b9b8b0a7a098928b847d78736e696866656463646567686a6f73777e858d9299a2aab4bcc5ced7d9cfc5bbb1a79f92867b6e61584e43372b201509000000000000000000000000000000000000000007121d28313946525e69727f8c95a0acb6c0cdd6d8cec6b9aca1968d80736a5f53483e31282d38424e58606d7a85919ea6b0bdc6d1d9cfc2baada2978e81756b61554b4035291d140a0000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c5b9aea49c9a9ca4aeb9ccd5c9bdb2a89e92857a6d60574d42342a201107000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777670665a4e4235281c0f030000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141f29323e44505c666d7a8390959fa6aebabec5ced3d6cfc9c2bcb8b4aeaca8a4a9a29f9d9c9d9e9ea1a9a6aaabb1b8babfc1b9b1a79f948c7f85929eabb8c5d2cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141f2a36424d57606d78839099a3aeb7c1cbd4ddd2c7beb5aba39f948f847c756f6a63605b5455534d4f4e4d4d4e49505354545b6063696e747b828b9298a0a7b1a99e9285796d60544a4034281c1004000000030f1b27333f49536774818d9aa7b4c0c3c4c6c7c7c5c3c1bcb8b6afaaa29f9490837b6e685e52483e31281d130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3a47535f6a7783909494949494949494998c7f7266584e43382b1d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c94949494949494948f8376695c504336291d1000000000000000000b17222d38414b555e686f7c869197a0a7b0b8c0c8ced6dbd6cfc9c4bdb9b3adababa39f9c99989695949494959697999b9ea1a8a9acafb5b9bec5ccd2d9dcd7cec6bfbaada49f93887d70695f53493f33271d130700000000000713202d3a4653606d798693a0acb9c6d3e4dbd2cbc6c2c1c1b7afa69e9590867f78706c65615f575958575657595a585f62666c717a80879298a2aab4bcc5d0dbd6cdc2baaea2988f82756a5f54473c31261a0e00000000000000000000000000000000000000020b18242f39434f59616e7b86929fa7b1bec7d2dcd0c6bcb0a69e9184796d60574e42362c1f262f3c45525d68717e8a949fabb4bfcbd7d6cabeb3a99e93897d70675d51453c2f261b110600000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd5cac0b6aea8a6a8aeb6c0cad2c5b9aca1968c7f72685d52453b3022180e00000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3ddd0c4b7aa9d9184838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838276695c504336291d10030000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d172028343f4a545d686d7a8390949da4adb3bcc1c7cdd4d5cdc8c6bfbab8b5b1b3adabaaa9a9aaabadb3b2b6b8bcc3c6bfbab0a7a0958f8279818e9bacb6c0cccbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1925303a46525e69727f8c95a0abb5bfc9d3dcd8ccc0b6aca399928c827a6f6a62605853504a48464243424141413f4446484a5053575e61696e757e8690959fa7a2978c7f72675d5142392e23180c00000000000b17222d3e4b5865717e8b98abb5c0bcbcbbbfbab9b6b4b1acaca49f98928c827a6e695e564c41362c1f160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e5865727f8b99a3a1a1a1a1a1a19d9184776a605447392f23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a1a1a1a1a1a19c8f8376695c504336291d1000000000000000040f1b27333f49535c676e7a849198a1a9b1b9c1cad4d9dad5cdc4beb9b2ada9a29f9a9992908c8b8a8987878889898a8c8f9196979c9fa4abadb3bbc0c7d0d6ded7d0cabfbbafa49a92867b6e655b50443a2f24180d01000000000713202d3a4653606d798693a0acb9c6d3dfe4ddd6d2cbc1b8afa59e948f837c726d66605b53534d4c4b4a4a4b4c4d4e54555a61676d737d869298a2aab4becad6dfd6cabfb4aa9e93887c6f62574d42372b1c11060000000000000000000000000000000000000a141d2935404b55616c75828f98a2aeb9c3d0d9d6cbbfb4aa9e948a7d70675d51453c31241a1d2935414c56616c76828f99a3aebac4ced9d0c5bcafa59e9184796d60584e41382d22170b02000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcdcd2c8c0b9b5b3b5b9c0c8d4c8bcb1a79e9184796d60564c4133291f100600000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3ded1c5b8aca095919090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909085786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e17232e38424c565d686d7a828d929fa2a9afb7bcc2c7cbd1d4d0cac7c5c2bebebab8b7b6b6b7b8b9bebfc3c4c7c1bcb4aea69e9590837a717e8b9aa4afbbc8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414d56616e7b86929fa7b1bdc6d1dbd4cac2bbafa49a92877f776d686058544e46443f3b3a36313534342d3337393b3f44464d52575f626c717b8390959f9f92857a6d60554b4030271c120700000000000616232f3c4956626f7c8999a4afafafafafb4aeacaaa7a7a09d9a938e867f796d685e564d443a30241a0d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26313c4754616d7a86929facadadadadaca096897c6f62554b4034291c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5adadadada99c8f8376695c504336291d10000000000000040d1a242b3744505b656d79839096a1aab3bbc3cbd3dcd6cfc9c1bbb3ada8a19e97928d8a8683807e7d7c7b7a7b7c7d7d7f8284878a8f93999ea1a9afb6bec4ccd5dedbd6ccc0b6aca2988f82776c60554b4035291d1207000000000713202d3a4653606d798693a0acb9c6d3dfeae1d7cdc3b9b0a69e938e82796e6a605c5450494642403f3e3d3e3f4043474950555d606b707d869298a2aebac2ced7dbd0c6bcafa59b8e8175695f5347382e23170b000000000000000000000000000000000006111b262f3845515d67707d8a939eaab4bfcbd5dcd3c7baaea3988f82756c61554b40332a201219242f3a43505a626e7b86929fa8b2bdc9d5d7cec1b9aca0968d80736a5f53493f33271e1308000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce3dad2cac5c1c0c1c5cad2d0c7b8aca0958b7e71675c51443a2f21170d0000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3e1d4c8bdb1a8a09d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303a444c565d686d78808a92979ea5abb0b9bbc0c6c7ccd2d1d2ced0cac6c5c4c3c3c4c5c6cac7c5bfbab9afaaa39f948f837a6d6e7a87939facb9c1c1beb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e6874818d98a2aeb9c3cfd8d8cfc2b8afa59f93887e726c655d564e47433d38332d2d2a2628272722272b2d2d33383b42464d535a62696e7a839094988d8073685d5243392f1e150b0000000000000714202d3a4753606d7a86939fa3a3a3a3a2aba39f9d9a9895918c87817b736d675d564d443b32281e120800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202d3946525e6875828f9ba9b3bebabdb2a89a8d8174675c5145382c1f1409000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2babab6a99c8f8376695c504336291d100000000000010c161f2b37434e58606c77818e959fa8b2bcc4cdd5ddd5cdc5beb9afa9a19e96918c85817d7a767371706f6e6d6e6f70717275787a7e82878c92979fa4acb2bac3ccd5ddddd2c7beb4aa9f948b7e71675d5145392f24180c000000000713202d3a4653606d798693a0acb9c6d3dfe3d9cfc5bbb1a79e948e81786d675f58504a443f383631323130313232373b3e434c5159606b707d86929fa6b0bcc5d0dbd7cec1b9ac9f93877b6e62544a3f34281c1003000000000000000000000000000000000b17222d38414e58606d7984919ea5afbcc6d0ddd5c9bdb2a89f92867b6e615a5043392f21180e131e28313e47535f6973808c96a0acb9c1ced7d5c9bdb2a89f92877c6f655b50443a3025190d030000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9e3dcd5d1cecdced1d5d2c7beb0a69d9083786c60554b4032281e0f050000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3e5d9cec3bab1acaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa9f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e28323a444c565d666d747e858e939c9fa6acafb5b9bbc0c2c4c5c7cbd1c9c9d1cbc7c5c4c2bfbab9b4aeaca59e98928c827a6d68687783909daab4b4b4b4b1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b55616e7b86929faab4bfcbd5dcd1c6bcb0a69d928c7f726c605b534c443d38322b2822211e1a1b1a1a171b1f2022282b30363c424750575f686d79829092867a6d61564c4131271d0c0300000000000006131f2c3945515d67778491969696969695949992908e8b88847f7b756e69605c554c443b322920160c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c5664707d8a97a1adb9c6c3b8ab9f9285796d6053473b30251a0e020000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000007131d28313a47535f6a737f8c939ea7b1bac4ced6ddd4cbc3bbb3ada59e97918b847f7a74706d67666563626161616263646668686e71767b7f858e939aa0a8b2bac3cbd5e0d9d0c5bcb0a69e9285796d60554b4035291d10040000000713202d3a4653606d798693a0acb9c6d3e8dcd1c7bdb3a9a0958f82786d665d554e443f38332d2a262524232426262b2e313a41454f59606b717e8b949faab4bfcad6e0d4c7bbafa4998d8074665c5044382b1f1206000000000000000000000000000000030f1b27333f49535f6a73808d96a1acb7c1ced7d8cec6b9aca0968c8073695f53483e31271d0f060c161f2b37424d57606d7984919ea5afbcc5d0d9cec4bbaea3999083776c60564c41362a1f150b0100000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9eee7e1dddad9daddd8ccc0b6ac9f94897d70665b5043392e20160c000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3eadfd5ccc3bdb8b7b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6ab9f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c162028323a434c545c606c717a818990949c9fa3abacafb5b5b7b9bbc0bcbcbcbbbfbab9b7b5b4aeacaaa39f9b938e867f776d685e6673808d99aaa8a8a8a8a8a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d6773808d98a3aebcc6d0ddd7cbbfb4aa9f948e80746d635a5049413a322b271f1c1714120e090e060b0f1213171c1f252a31373e454d565d676d7a848d8074685e52433a2f1f150b0000000000000004101d2935404b556875818989898989898888878683817e7c77726e69615e57514b433a322920170e04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a4653606d7985929eabb8c3c6baada2978a7e7164574d42362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000010d18242f3a43505a626e7c87929fa5afb9c2ccd6dcd3cbc2b9b1a9a19e938e857e79726d6764605d5558575654545556565759565e6164696e737a81889196a0a8b1b9c3ced7e2d7cec2b9ada1978c7f72675d5145382c1f13080000000713202d3a4653606d798693a0acb9c6d3e3d7cbc0b5aba1979083796d665c544b433c342e27221b1a18171718191b1f22282f353d474f59626c76828f98a2aebac5d0dbd7ccc0b5ab9e9185796d6053463a2d20130a0000000000000000000000000000030c19232b3744505b656f7c87929fa8b2bdc9d3dbd0c6bcafa59e9184796d60574d42362c1f150b00040d1a26313c45515c67707d8a939eaab4bfcad6d7cbbfb5ab9f948b7e71685e52463d31271d120700000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9f6f2ede9e7e6e9e0d4c8bbafa49a8f82766b60544a3f30271d0d04000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3e3e7ded5cec8c5c4c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3b8ab9f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e162028313a424a515a61686e757d83898f92999d9fa4aba9aaacafb5afafafafb4aeacaaa8aba39f9c98928e89817b726c655d5663707c89989b9b9b9b9b9b9b988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929faab4bfced7e0d3c7baaea3988f82786d605b51443f382f28201b160f0b060502000100000305060b0f141a1f262b333c444c555d686f7c857b6e61564c4131281e0d0300000000000000000c18242f3b4855616e7b7d7c7c7c7c7c7c7b7a797774726f6a66615e57524d454039312820170e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131f2c3844505c6674808d9aa7b1bcc8beb3a99c8f8276695e52463a2d20150a0000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000004111d2935414b55616c76828f99a3afb7c1cbd4dcd3cac1b8b0a7a097928a817a716d66605d5554514c4b4a49484748494a4a4c4c5254575e61686d747d849196a0a7b1bcc5d0dbe0d6cabeb3a99e9285796d6053473a3025190d0100000713202d3a4653606d798693a0acb9c6d3e0d3c7bbafa39992857b6e675d544a42393128231c17110e090b0a0b0a0f13161e2429353d47505a616e7b86929fa9b3becad6ddd2c7b9ada197897d7063564a3d31261a0f03000000000000000000000000000b151e2a36414c56606c77839099a3afbac4cedcd6cabfb4aa9e938a7d70675c51453b31241a0d03000009151f2934404b55616b75818e98a2aebac3d0d9d1c6bdb0a69f92857a6d61594f43392f23180b02000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9f0f0f0f0f7ece1d7cbbfb4ab9f93877c6f62594f42382d1e150b00000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6d6d6d6d6d6d9d4d1d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0c5b8ab9f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdcad6d6d6cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e161f283039404450565e616b70767c82868b909399999c9e9fa3aba2a3a2a2aba39f9d9b9999928f8c86817c756e69605b5353606d79868e8e8e8e8e8e8e8e8e8b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5664717e8a98a2aebcc6d1e0d6cabeb3aa9f92867b6e665c50493f332d261d160e0a0300000000000000000000000003090e151a212a323a434c565f6a6f7b6e695e53443a301f160c0000000000000000000714212d3a46535f696e7070707070706f6e6d6d666765625f5854534d46423b342f271f160e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54626f7c8895a0acb8c6c5b9ac9f93877b6e6154473d32271b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000613202c3945515d67717e8a949fabb5c0c9d3ddd3cac1b8b0a69f9590857e756d68605c54514b4745413e3d3c3b3a3b3c3d3e3f4146474d52565d616b6f7b849095a0aab4becad6dedacfc5b9ada1978a7e7164564c41362a1d110500000713202d3a4653606d798693a0acb9c6d3dfd2c5b9ac9f92877d70695f554b423830271f17110b0600000000000003060c1319232b353e46535e69727f8b97a2adbac6d3dfd5c9beb3a99b8e817468584e43372b1f120600000000000000000000000007121d27303946525e68717e8b949fabb5c0ccd6dbd3c6baaea2988f82756b61554b40332a1f1108000000030c18232f39434f59616e7b86929fa7b1bec7d2d8cfc2baada2978e81756b60554b4034291d140a000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce3e3e3e3e3e3e6dbd0c7baaea3998e81756a5f54473d2f261c0c0300000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c5b8ab9f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdc9c9c9c9c9bdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161e272e343e444c525960636b6f757a7f83868a8d8f9192999595969695949992918f8d8a86837f7a756f6a615e575049515c66737f818181818181818181817d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6875828f9caab4becfd8dfd3c6baaea2988d8073695e544a3f3727221b140b040000000000000000000000000000000003090f182028313a434e585f696e695f574d4232291e0d0400000000000000000005121e2b37424d575f61636363636363626161605c545855534e4846423b363029231d150d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e3847535f6a7783909dabb5bfc7bbafa4998c7f7266584e43372b1d120700000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000005111d2a36414c56606d7984919ea6b0bdc7d1dbd5ccc2b8b0a69e9490837b716c615d56514a45413a39352f302f2e2e2e2f30313036393b42464c525960696e7a839098a2aebac2cdd8e1d5c9beb3a99c8f8275685e5246392d20130700000713202d3a4653606d798693a0acb9c6d3d9ccc0b3a6998d80736b60574d433a2f261e150d060000000000000000000001081119232a36424d57606d7985929fabb8c2cdd8dacfc4b8ab9e9185786a5f53473a2e2115080000000000000000000000000c18232e39424f59616d7a85929ea6b0bdc7d1ded4c8bdb2a89f92867b6e61594f43392f21180e000000000007121d27313e46525e69727f8c95a0acb6c0ccd8d6cabeb3a99e93897d70675c51453c2f261b11060000000000000000000000101d2a3643505d697683909ca9b6c3cfd6d6d6d6d6d6d6d6d6cabeb3a99f92867b6e61584e43352b1d140a0000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1ced6d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdb8ab9f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdbdbdbdbdbdbdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c151c2328323b41464f54596063686e72767a7d808284868788898989888887868482807d7a76726d68626058534d44404b54636d7375757575757575757575706b6054483c2f221609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d0dfd6cabeb3a99f92857a6d61574d42382e2517110a0200000000000000000000000000000000000000060e161f28313c464e575f615f574d453b3120170d00000000000000000000020e1a26313c454d535556565656565655555453504a4b4847433c3a36312a251f18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2b37434e5865727f8b99a3aebbc7c0b5ab9d9184776a605447392e23180c00000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000713202d3946525e6873808d97a1adb8c2cfd9d7cec3bab0a69e948f827a6e69615a524c444039352f2c29242423212122232324252a2d30363a41464f575e686e7b86929fa6b0bcc7d3e2dacfc5b9ac9f92867a6d6154473a2e21140700000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265594f453b31281d150c030000000000000000000000000007111a25313b45515d6774808d9aa7b1bcc8d4dfd2c6b9ada197887b6f6255483c2f221507000000000000000000000004101c2834404b54606b74818e97a2adb9c2cfd9d7cec5b8aca0968c7f72695e53473e31271d0f060000000000010b151f2a36424d57606d7883909aa4afbbc5cfdacfc5bbafa59e9184796d60584e41382d22170b0200000000000000000000101d2a3643505d697683909ca9b6c3c9c9c9c9c9c9c9c9c9c9c6baada2978d8073695e53463c32231a0b020000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1c9c9c9c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0ab9f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0b0b0b0b0b0b0b0b0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b1218202930363d44484f54565e6165686d70737677797b7b7c7c7c7c7b7a79777573706d6765615e56544e46423b3942515b6366686868686868686868686360594f44382c201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a99a3aebbc7d3dfd3c6baada2978c7f72685e52453b30261c130600000000000000000000000000000000000000000000040d161f2a343c454d5355534d453b33291f0e05000000000000000000000009141f2a333c42464849494949494949484746443f3f3c3b37322d2a251f1a140c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1b26323c4754616d7a86929facb9c5c7b8aca095897c6f62554b4034281c1004000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000030f1c28333f4a54616d7a86929fa9b2becad4d9d0c5bcb2a89f948f82796d685e565046413a342e2924201d191716151415161717191e20252a30353d454d565e69727f8b949fabb7c5d0dbe0d3c7bbafa3998a7e7164574a3e2e23180c00000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f33291f160b0300000000000000000000000000000009141f2935404b55626f7c88959fabb8c4d1ddd5c9beb3a9988b7f7265584c3f2f24180d01000000000000000000040d1a242c3845515c66707d89939da9b3becbd4dbd0c5bcafa59d9184796d60574d42352c1f150b00000000000000030d1a25303b44505c666f7c87939fa9b3bec9d5d7cdc1b9aca0968c80736a5f53493f33271e130800000000000000000000101d2a3643505d697683909ca9b6bdbdbdbdbdbdbdbdbdbdbdbdb2a89f92857a6d61574d42342a201108000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4bdbdbdbdbdbaada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3a3a3a3a3a3a3a3a3a3a3978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e171e252a32383d43484c5254565d60636669666d6e6f6f706f6f6e6e6d66686663605d5554524c47433d36313040495157595b5b5b5b5b5b5b5b5b5b56544f473d33271c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c566774818d9aabb5bfcbd7ded2c5b8ab9f9285796d60564c4133291e150a000000000000000000000000000000000000000000000000040d18222a333b42464846423b332a21170d000000000000000000000000030e18212a31373a3b3d3d3d3d3d3d3c3b3a3a38342e2f2e2b26211e1a140e0902000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202d3946525e6875828f9ba9b3bec8bdb1a89a8d8174675c5145382c1f1408000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000006121f2b3844505b66727f8c98a3aebbc4cfddd2c7beb4aaa0968f82786d675d564d443e353028231c1813110d0809080708090a080d11141a1e2429333b444d57606c7883909caab4becad6e2d7cbc0b5ab9a8d817467544b4034281c1004000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225180d0400000000000000000000000000000000030c18242f3947535f6a7683909da9b6c3d1dcdacfc2b5a89b8f827568554b4035291d10040000000000000000010c161f2a36424d57606d7983919da5afbbc5cfddd6cabeb4aa9e93897d70665c51453b31231a0d03000000000000000009141f28343f4a54606b74818e97a1adb9c2cfd9d4c8bdb2a89f92867c6e655b50443a3025190c03000000000000000000101d2a3643505d697683909ca9b0b0b0b0b0b0b0b0b0b0b0b0b0ada1968c7f72685e52453b3122190e00000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b0b0b0b0b0b0b0ada093877a6d6054473a2d211407000a1724313d4a5764707d8a9696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969285786c5f5245392c1f12060000000a1724313d4a5764707d8a969696969696969696969696968a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d141921272c32383b4146474c5254575a545c606162626363626161605c545a5753514b4746413a37322a252e3740464b4c4e4e4e4e4e4e4e4e4e4e4a48443d352b21160b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e687784919daab7c4d1dcd8ccc0b6ac9b8e8275675d51443a3021170c0300000000000000000000000000000000000000000000000000061018212a31363a3b3a36312a21180f0500000000000000000000000000060f181f262b2d2e3030303030302f2e2e2d2b282322211f1b15120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c5664707d8a97a1adb9c6c3b8ab9f9285796d6053463b3025190e020000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000613202d394653606c7884919eaab4bfcdd6d8ccc0b6aca29891847a6d665d554c443b3229241e18120d07040100000000000000000105090e13192029323b44505b65717d8a98a2aebac6d3dfdcd1c3b7aa9d908477665c5145382c1f1306000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000007121d2b37434e5865727f8b98abb4bfcbd7ddd1c4b7aa9e918477675d5145392c201306000000000000000008131e28313a46535f69727f8c95a0acb7c1cdd7dbd3c6baaea2988e81756b60544b4033291f1108000000000000000000020c17232e38424f59616d7a85929ea6b0bdc7d1d9cec3baaea3999082776c60564c41362a1e150b000000000000000000101d2a3643505d697683909ca3a3a3a3a3a3a3a3a3a3a3a3a3a3a79e9184796d60564c4133291f100700000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba3a3a3a3a3a3a3a3a3a093877a6d6054473a2d211407000a1724313d4a5764707d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a85786c5f5245392c1f12060000000a1724313d4a5764707d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a7e7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080e161c21272c3036393b4145474a4d4a5053545556565655555453504a4d4a4745403a3935302b27201a252e353b3e40424242424242424242423d3c38332b23190f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86939facb9c6d2dfd4c8bbafa49a8b7e7164554b4032281e0f05000000000000000000000000000000000000000000000000000000060f181f262a2d2e2d2a261f180f06000000000000000000000000000000060e141a1e2122232323232323222221201f1c171515120f0a05020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a4653606d7985929eabb8c3c6baada2978a7e7164564d41362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100005111e2a36414c5663707d8a96a0acbcc6cfd7d4c8bbafa49a92867c6e685d544b433a32292019130c0700000000000000000000000000000002080e172027333f4953606d7985929fabb8c5d2dedfd2c6b9ac9f9386796d6053463a2d201307000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000010f1b26323c4955626f7c8899a3aebac7d3dfd2c6b9ac9f93867a6d6053473a2d20140700000000000000020b19242f3a43505a616e7b86929fa7b1bcc9d2dfd4c8bcb1a79f92867b6e61594f42392e21170d000000000000000000000006111c26303d46525e68717e8b949fabb5c0cbd7d7cbbfb4ab9f948b7e71685e52463d30271d12070000000000000000101d2a3643505d6976839096969696969696969696969696969696958b7e71675d51443a3021170d0000000000000000000000000000000000000000000000020f1b2835424e5b6875818e969696969696969696969693877a6d6054473a2d211407000814212e3b4754616e7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7063564a3d3023170a000000000814212e3b4754616e7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10161b1e252a2d2f35393a3d403f4446484849494949484746443f403d3a39352f2d29251e1b16131c232a2f323335353535353535353535302f2c272119110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d899aa4afbbc8d4dfd2c6b9ac9f93877a6d6154473a2f21160c0000000000000000000000000000000000000000000000000000000000060e141a1e2122211e1a140e06000000000000000000000000000000000003090e1214151616161616161615141312100b0608060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131f2c3844515c6674808d9aa7b1bcc8beb3a99c8f8275685e5246392d20150a0000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000714202d3946525e6875828f9ca8afb9bec5cdcabeb3a99f93887e706a5f564c4239312820170e0802000000000000000000000000000000000000050e17222d3845515c6774818e9ba7b4c1cedae0d4c7bbafa499887b6e6255483b2f221508000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000a13202d3a4653606d7986929facb9c5d2dfd4c8bbafa49a897c6f6256493c2f231609000000000000000a141d2935414c55616c76828f98a2aeb9c3cedbd7cdc5b8aca0958c7f72695e52473d30271d0f050000000000000000000000000a151e2935414c56606c77829099a3afbbc4cfdad1c6bdb0a69e92857a6d61594f43392e23180c0300000000000000101d2a3643505d6976828a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a83786c60554b4032281e0f050000000000000000000000000000000000000000000000020f1b2835424e5b6875818a8a8a8a8a8a8a8a8a8a8a8a8a877a6d6054473a2d211407000714202d3946525e686e7070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706b6055483c2f231609000000000714202d3946525e686e7070707070707070707070707070706e695e52463a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f14191e2024292c2d302e34383a3b3c3c3d3c3c3b3b3a38342e302d2c2924201d19130f0a0a12191e232526282828282828282828282322201c160f080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98acb6c0ccd8dcd0c3b6a99d908376685e5246392d20130400000000000000000000000000000000000000000000000000000000000003090e12141514120e09030000000000000000000000000000000000000000020507080a0a0a0a0a0a090807070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a54626f7c8895a0acb8c7c5b9ac9f92867b6e6154473d32271b0f0000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000814212e3b4754616e7a8692979ea5adb3bbc1c6baada2978e81746c61584e443a30271f160d0500000000000000000000000000000000000000000006111b2934404b5565727e8b98a5b1becbd8e3d7ccc0b5ab968a7d7063574a3d3024170a000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000006131f2c3845515c667683909da9b6c3d0dcd8ccc0b6ac978b7e7164584b3e3125180b00000000000006111c262f3845515d67717e8a949eaab4bfccd5dbd0c5bbafa59d9083786d60564d42352b1e150b00000000000000000000000000030c1925303a44505b656f7c87929fa8b2bdc9d5d8cfc2b9ada1978e81746b60554b4034281f150900000000000000091623303c4956636f7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e665b5043392f20160c000000000000000000000000000000000000000000000000000916222f3c4955626f7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d796d6053463a2d2013070005111e2a36414c565e6163636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636360594f44382c2014070000000005111e2a36414c565e61636363636363636363636363636363615e564d42362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080e1114191d20212423282c2d2e2f2f30302f2e2e2d2b28232420201d1813110d08020000070d121619191b1b1b1b1b1b1b1b1b1b171613100b05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0d2ddd9ccbfb2a6998c7f7366564c41362a1e110500000000000000000000000000000000000000000000000000000000000000000205070807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3947535f6a7783909dabb5c0c7bbafa3998c7f7265584e43372b1d120700000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000714202d3946525e68717e858e939ea1a9afb9bcb1a79f92857a6d615a50463c32281e150d0400000000000000000000000000000000000000000000000c18232f3d4a5763707d8a96a3b0bdc9d6e8ddd2beb1a5988b7e7265584b3f3225180c000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000004101c2834404b546774818d9aa7b4c0cddaddd2bfb2a6998c7f7366594c403326190d0000000000000b17222d38424e58606d7a84919ea6b0bcc6d0ded6cabeb3a99e93897d6f665c50443b3023190c03000000000000000000000000000008131e27333f49535f6a73808d96a1adb9c1ced8d6cabeb3a99d93897d70675c51453c31261a0e040000000000000915222f3b4854606b6f7070707070707070707070707070707070706e695f544a3f31271d0e04000000000000000000000000000000000000000000000000000815212e3b47535f6a6f70707070707070707070707070706d665c5044382c1f120600010d1925303b444c5254575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575756554f473d33271c100400000000010d1925303b444c525457575757575757575757575757575754524d443b3025190e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205080d11131417171c1f202122232323222221201f1c17171413100d070501000000000002060a0c0d0f0f0f0f0f0f0f0f0f0f0a0907040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c2936424f5c6975828f9ca8b5c2cfdbd7ccc0b5ab968a7d7063574a3d3025190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020608080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a08070502000000000000000000000000000000000106090b0c0e0e0d0d0c0c0b0a0807060401000000000000000000000000000000000000000000000000000000000000000000000007121c2b37434e5865727f8c99a3afbbc7c0b5ab9d9184776a605447392e23180c00000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100005111e2a36414c56616c717a818a92979ea5adb3aba0958b7e72685e52483e342a20160c030000000000000000000000000000000000000000000000000716222f3c4955626f7c8895a2afbbc8d5e2d8cbbfb2a5988c7f7265594c3f3226190c000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000c18232e3e4b5864717e8b97a4b1becad7dacdc0b4a79a8d8174675a4e4134271b0e0000000000030f1c28333f4a545f6a74808d96a1adb8c2ced8d9d0c7baada2978e81746b60544a3f32291f1107000000000000000000000000000000020b17222d38414e58606d7984919ea6b0bcc6d0dacfc5bbafa59d9184796d60574d42372b20160c02000000000007131f2c38434f596063636363636363636363636363636363636363615f574d42382d1f150b000000000000000000000000000000000000000000000000000006131f2b37434e585f626363636363636363636363636363605c544a3f34281c1003000008141e29323b4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a48443d352c21160b00000000000008141e29323b4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4746423b32291f14090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001040707060c10121315151616161615141312100b0607060401000000000000000000000000000202020202020202020200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2a3744515d6a7784909daab7c3d0ddd4c7bbafa499887b6e6255483b2f22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f121415161616161616161616161616161616161616161616161616161616161616161616161514120e090300000000000000000000000000060d121618191a1a1a1a19181817151413110d0809070603000000000000000000000000000000000000000000000000000000000000000f1b26323c4754616d7a86929facb9c5c7b8aca095897c6f62554b4034281c1004000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000020e1925303b44505a61686d757e858e939ea1a9a89d9083786c60564c41362c22180e04000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9ccbfb2a6998c7f7366594c403326190d000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000071623303c4956636f7c8996a2afbcc9d5dbcec2b5a89b8f8275685c4f4235291c0f00000000050f1a232b3844505b666f7c87929fa9b2bdcac9c9d2c7beb1a79f92857a6d61594f42382e20170d000000000000000000000000000000000006111b262f3c45515d67707d8a949eaab4bfcac9c9cdc1b8aca0968c7f73695f53473e32281e13080000000000030f1b27323d464f545657575757575757575757575757575757575755534d453c2f261c0d030000000000000000000000000000000000000000000000000000030f1b26323c464e5355575757575757575757575757575753504a42382e23170c000000020d1720293036393b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332c231a0f05000000000000020d1720293036393b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a36302920170d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306070809090a09090808070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ded2c6b9ac9f9386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e151a1f21222323232323232323232323232323232323232323232323232323232323232323232322211e1a140e0600000000000000000000010911181e22242527272727262524232221201d1919161312100c0604010000000000000000000000000000000000000000000000000000000a15202d3946525e6875828f9ca9b3bec8bcb1a79a8d8074675c5145382c1f1408000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000008141e29323e4850565e616c717a818a92979ea0968a7d70665b50443a30231a0f0600000000000000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5e1d9cdc0b3a69a8d8073675a4d4034271a0d000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbd2dddcd0c3b6a99d9083766a5d5043372a1d10000000000b16212a36414d56606c78839099a3afbbbdbdbdbdbdc0b6aca0958b7f72685e52473d30261c0e050000000000000000000000000000000000000a141d2935404b55616c75828f98a2aebabdbdbdbdbdbdb2a89f92867b6e625a50443a3024190d0000000000000a16212b343d4348494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4846423c332a1d140a000000000000000000000000000000000000000000000000000000000a15202a343c4347494a4a4a4a4a4a4a4a4a4a4a4a4a4a46443f3830261c110600000000050e171e252a2d2e3030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302f2c27211a11080000000000000000050e171e252a2d2e3030303030303030303030303030302e2d2a251f170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b546c7885929fabb8c5d2ded1c5b8ab9e928578665c5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1820262b2e2f303030303030303030303030303030303030303030303030303030303030303030302e2d2a261f180f0600000000000000000009131b23292e313234343433333231302f2d2c29242523201f1c1713110d08010000000000000000000000000000000000000000000000000005111e2a36414c5664707d8a97a1adb9c6c3b8ab9f9285796d6053463b3025190e020000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000020d17202c363e444c525a61686d757e858e939d9184786c60544a3f32291e11080000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6e3d9ccbfb3a6998c807366594d4033261a0d000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000815212e3b4854616e7b8794a1b5c0ccd7ddd0c4b7aa9d9184776a5e5144372b1e1100000004101c27333946525e68727f8b959fabb5b0b0b0b0b0b0b0afa49a9083786c60564c41352b1e150a00000000000000000000000000000000000000020b18242f3943505a616e7b86929fa8b1b0b0b0b0b0b0b0aea3988f82766c61564c4135291c11060000000000040f19222b32383b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a37312a21180b0200000000000000000000000000000000000000000000000000000000040e18222a32373b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a38342e261e150a000000000000050d14191e202124242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242323201c160f0800000000000000000000050d14191e202124242424242424242424242424242421201e19140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c0f11121313131313131313131313131313120f0a050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c667986929facb9c5d2ded1c4b7ab9e9184786b544b4034281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e18222a31373a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a36312a21180e0300000000000000030c1b252d343a3e3f414140403f3f3e3d3b3a39352f322f2d2c2823201d19130f0a040000000000000000000000000000000000000000000000010d1925303a4653606d7985929eabb8c3c6baada2978a7d7164564c41362a1e11050000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000050e1a242c323a414650565e616c717a818a928b7f72655b5042382d20170c000000000000000000000000000000000000000000000000000000030c1524313e4b5764717e8a97a4b1bdcad7e4d8cbbeb2a5988b7f7265584c3f3225190c000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000714212d3a4754606d7a8799a4afbbc7d4ded1c4b7ab9e9184786b5e5145382b1e120000000714202c38444f59616e7b85929fa7a3a3a3a3a3a3a3a3a3a99f93877c6f665b50443a3023190c03000000000000000000000000000000000000000007121d28313e46535f69737f8c95a0a3a3a3a3a3a3a3a3a3aa9f948b7e71685d5246382d22170b00000000000007101921272c2f303030303030303030303030303030303030302e2d2b261f180f0600000000000000000000000000000000000000000000000000000000000006101820262b2e2f30303030303030303030303030302d2c28231c150c030000000000000002080d1114141717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171614100b0500000000000000000000000002080d1114141717171717171717171717171717171414110e0902000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c13181b1e1f20202020202020202020202020201e1b1610090100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798699a3afbbc7d3ddd0c4b7aa9d9184776a5e51442e23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343c434748494949494949494949494949494949494949494949494949494949494949494949494846423b332a1f1409000000000000000b151e2d373f464a4c4d4d4d4d4c4b4b4a48474541413f3c3a38342e2c29241e1b150e09030000000000000000000000000000000000000000000008131f2c3845515c6674808d9aa7b1bcc8beb3a99c8f8275685e5246392d20150a0000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000008121a202930363e444c525a61686d757e85867a6d6053493f2f261c0e050000000000000000000000000000000000000000000000000000000b151e2b37434e586774818d9aa7b4c0cddae4d7cabdb1a4978a7e7164574b3e3124180b000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000613202d394653606c7986939facb9c6d2ded1c4b8ab9e9185786b5e5245382b1f120000000916222f3c4854606b75818e97969696969696969696969696978e81746a60544a3f32291e1107000000000000000000000000000000000000000000010c161f2a36424d57606d7984919696969696969696969696969692857a6d61544a3f33281c0f03000000000000070f161b1f222324242424242424242424242424242424242422211e1a140e060000000000000000000000000000000000000000000000000000000000000000060e151b1f21222424242424242424242424242424201f1c17110a0300000000000000000000010507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09070400000000000000000000000000000000010507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f171e23282a2b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0b4bfcbd7ddd0c3b6aa9d9083776a5d5044372a1d0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1a26313c464e53555656565656565656565656565656565656565656565656565656565656565656565655534d453b31261a0e02000000000007121d27303f495156585a5a5a5a595857565554514c4e4c4946443f3a39352f2b26201a140d0500000000000000000000000000000000000000000004101c2834404b54626f7c8895a0acb8c7c5b9ac9f92867a6e6154473c32271b0f0000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000080e171e252a323a414650565e616c717a7e71675d5141382d1d140a0000000000000000000000000000000000000000000000000000020a121c27303947535f6a7884919eabb7c4d1dee3d6c9bcb0a396897d7063564a3d3023170a000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000005121f2b3744505b657885929fabb8c5d2ded2c5b8ab9f9285786c5f5245392c1f120000000a1723303d4a5663707d898a8a8a8a8a8a8a8a8a8a8a8a8a8a8a857a6d61584e42382d20170d0000000000000000000000000000000000000000000000040d1a26313b45515c66707d898a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8174665b5044382b1f120600000000000000040a0f1315161717171717171717171717171717171717171514120e090300000000000000000000000000000000000000000000000000000000000000000000040a0f13151617171717171717171717171717171312100c0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f1821292f343738393939393939393939393939393937332c251c1309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798699a3aebac7d3ddd0c4b7aa9d9184776a5e51442f24180d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e585f6263636363636363636363636363636363636363636363636363636363636363636363615f574d42362a1e120500000000000c18232e3942515b6265676767666665646362605d555b585653504a4745413a37312a251f170f060000000000000000000000000000000000000000000c18232e394754606a7783909dabb5c0c7bbafa3998c7f7265584e43372b1d120700000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000050d1319202930363e444c525a61686d716c61554b412f261b0b0200000000000000000000000000000000000000000000000000040b141c232e39424e58626f7c8896a1acb9c5d2dee1d5c9bdb2a895887c6f6255493c2f221609000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000030f1b27333f495e6b7885919eabb8c4d1ded2c5b8ac9f9285796c5f5246392c1f130000000916222f3c4955626f7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f685e52463d2f261c0e0500000000000000000000000000000000000000000000000009141f2834404b54606b707d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d786c605346392d201306000000000000000000030709090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a080705020000000000000000000000000000000000000000000000000000000000000000000000000000030608090a0a0a0a0a0a0a0a0a0a0a0a0a0a070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607080a0c0d0d0e0e0e0e0d0c0b0a08070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070a0b0c0c0d0e0e0e0d0d0c0a09070705010000000000000000000000000000000000000000000000010406070a0b0c0c0c0b090707050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c17212a333a4044454646464646464646464646464646433e372e251b100500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c667986929facb9c5d2ded1c4b7ab9e9184786b554b4135291d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3a47535f6a6e707070707070707070707070707070707070707070707070707070707070707070706e695f53463a2d2114070000000004101c2834404b54626d7274747373727271706e6d676a676562605c5454524c47433c3631292117110a030000000000000000000000000000000000000007121d2b37434e5865727f8c99a3afbbc7c0b5ab9d9084776a605447392e23180c00000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000002080e171e252a323a414650565e6164615a50433a2f1d140a00000000000000000000000000000000000000000000000003090d161d262d34404a545f6a75818e9ba8b2bdc9d5e1ded2c5b9aca096877a6e6154473b2e211408000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000006121f2b3844505b667885929fabb8c5d2ded1c5b8ab9e9285786b5f5245382c1f120000000815222e3b4754606a6f707070707070707070707070707070706f6a5f564c41342b1d140a00000000000000000000000000000000000000000000000000030c18232e39424f59606b70707070707070707070707070707070706c665b5044382b1f12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507070c101213151718191a1a1b1b1a1a191817151312100c07080602000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080d111314161818191a1b1b1a1a191917161413110d08080705020000000000000000000000000000000206080d111314161819191818161413110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000007131e29333c454c505253535353535353535353535353534f4940372c21160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a5f6c7885929fabb8c5d2ded2c5b8ab9f928578675d5145392c2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7b6e6155483b2e2215080000000006131f2c3845515c66727f808080807f7e7e7d7b7a787674726f6d6665605d56534e46423b3328231c150c03000000000000000000000000000000000000000f1b27323c4754616e7a86929facb9c5c7b8aca095887c6f62544b4034281c1004000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000050d1319202930363e444c5254575550483e31281d0b0200000000000000000000000000000000000000000000030a0f151a20282f383f44515c666f7c87939facb9c4cedae5ddd1c4b7aa9e918477685e5246392d201407000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000613202d394653606c7986939facb9c6d2ded1c4b8ab9e9185786b5e5245382b1f1200000006131f2b37434e58606263636363636363636363636363636363625f584e443a3022190b02000000000000000000000000000000000000000000000000000007121d27303d474f59606363636363636363636363636363636363605b544a3f33281c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070604000000000000000000000000000000000000000000000000000000000000000000000000000206090e121415181c1f202223252627272828272626252322201f1c181514120e0906030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415191d20212324252627272827272625242221201d19171514120e0906030000000000000000000003090e1214191d20212324252625242321201d19130d08020000000000000000000000000000000000000000000000000000000000000000000000000000000c18232f3a454f575c5e606060606060606060606060605f5a52493e33271b0f020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e45525e6b7885919eabb8c4d1ded3c6baada297877a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b687581898989898989898989898989898989898989898989898989898989898989898989898074675a4d4134271a0e000000000713202d3a4653606d79868d8d8d8d8c8b8a8988878583817f7c7975716d68625f58534d453f342e261e150b020000000000000000000000000000000000000a15202d3946525e6875828f9ca9b3bec8bcb1a79a8d8074665c5145382c1f1408000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000002080e171e252a323a4146474b49453e362c1f160c000000000000000000000000000000000000000000060b10151b20262b323a424a505b606d7882909aa4afbbc8d6e0e4d8ccc0b6ac9a8d817467564d41362a1e1105000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000714212d3a4754606d7a879aa4afbbc8d4ddd1c4b7aa9e9184776b5e5144382b1e11000000030f1b27323c464e54555757575757575757575757575757575755534e463c32281e1007000000000000000000000000000000000000000000000000000000000b151e2b353d474f54565757575757575757575757575757575753504a42382d22170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c10131413100c07010000000000000000000000000000000000000000000000000000000000000000030a0f12141a1e212223282c2d2e3032333334343434333332302e2d2c282322211e1a15120f0a03000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f141a1e202124292c2d3031323333343434333332312f2e2d29242421211e1a13120f0b0600000000000003090e151a1e2124292c2d303132333231302e2d29241e19130c0500000000000000000000000000000000000000000000000000000000000000000000000000030f1b2834404c5761686b6c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e1205000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061d2a3744505d6a7783909daab6c3d0ddd6cabeb3a995887c6f6255493c2f22160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e96969696969696969696969696969696969696969696969696969696969696968d8074675a4d4134271a0e000000000a1723303d4a5663707d89989a9a9999989796959892908e8b8985827e7a756f6a615e5751443f3830261d140a00000000000000000000000000000000000005111e2a36414c5664717d8a97a2adb9c6c3b8ab9e9285796d6053463b3025190d010000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000050d131920293036393a3e3d39342c241a0d0400000000000000000000000000000000000105090e11171c1f262b31373e444c545b606d74808d949facb6c0ccd8e8e0d4c8bbafa49a8a7d7164574a3e3025190e02000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000815212e3b4854616e7b8794a1b6c0ccd8ddd0c4b7aa9d9184776a5e5144372b1e11000000000a15202b343c4347494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4847433c342a20160c0000000000000000000000000000000000000000000000000000000000030c19232b353d4448494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a46443f382f261c11060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b12181c1f201f1c18120b030000000000000000000000000000000000000000000000000000000000060b10151a1f21262b2d2e2e34383a3b3d3f404041414141403f3e3d3b3a38342e2e2d2b26211f1b15100c060000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f252a2d2e2f35393a3d3e3f3f4041414140403f3d3c3a393530312e2d2a25201f1c17110d08020000050d141a1f262b2d2f35393a3d3e3f3f3f3e3c3a3935302a251e160e0500000000000000000000000000000000000000000000000000000000000000000000000005111e2a3744505c68737879797979797979797979797979766c5f5346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1c2835424f5b6875828e9ba8b5c1cedbdbd0bdb0a4978a7d7164574a3e31261a0f0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39a8d8074675a4d4134271a0e00000006121f2b37434e586774808d9aaaa6a6a5a5a4a3aaa29f9d9a9898928f8b86817c756e69625b504a42382f261b11060000000000000000000000000000000000010d1925303b4653606d7985929eabb8c3c6b9ada1978a7d7064564c41362a1e11050000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000002080e171e252a2d2e31302d28221a12080000000000000000000000000000000104080d11141a1c23282b32373c424750565d666c737f8c929da6b0bec7d2dde8dfd2c6b9ac9f93877a6d6154473a2e21140800000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbd2dddccfc3b6a99c908376695d5043362a1d1000000000040e19222b32373b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3a37312a22180e04000000000000000000000000000000000000000000000000000000000000071119232b32383b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3938332d261d140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171d23292c2d2c29231d150d030000000000000000000000000000000000000000000000000000060c11171c1f262b2e31373a3b3e404446484a4b4c4d4d4e4e4d4d4c4b4a484644403e3b3a37312e2b261f1c17110c070000000000000000000000000000000000000000000000000000000000000000000001080b141c22282b30363a3b3f414547494b4b4c4d4e4e4d4d4c4c4a49474641403e3b3a36312d2b28221c19140e09080f171f252a31373a3b414547494b4c4c4b4b494746413a36302820160c02000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b788586868686868686868686868686796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0d1dcdacdc0b3a79a8d807467584e43372b1f120600000000000000000000000000000000000000000000000000000000000000030608090605030000000000000000000000000000000f1c2835424f5b6875828e9ba8afafafafafafafafafafafafafafafafafafafafafafafafafafafafa79a8d8074675a4d4134271a0e0000000815212e3b47535f6a7884919eabb3b3b2b1b1b0b3aeaba9a7aaa29f9c98928e88827b726d605c544a41382d22170b04000000000000000000000000000000000008141f2c3845515c6774808d9aa7b1bcc8beb3a99c8f8275685e5246392d20150a0000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000000050d13191e20212423211d171008000000000000000000000000000104080d1113191e20262b2e34383c43474d535a61686d78808c919ba4aeb8c2d0d9e4e2d4c8bcb1a79d908376685e5246392d20130700000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6dbcec1b5a89b8e8275685b4f4235281c0f000000000007101920272b2e2f303030303030303030303030303030302f2e2b2620181006000000000000000000000000000000000000000000000000000000000000000007111921272c2f30303030303030303030303030303030302d2b28221c140b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090b141b22272f34383a38342f271f150b010000000000000000000000000000000000000000000000030a11171c23282b31373a3c4246484b4a5153555658595a5a5b5b5a595958565553514a4b4847423c3a37312c28231c18120b0300000000000000000000000000000000000000000000000000000000000000040c13191d262d33383b4246484b4c5254565758595a5a5b5a5a5958575554524c4d4a4846423c3938332d2a251e1a15121a212930363c4247484c51545657585958575654524c46413a32281e1308000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b788591939393939393939393939386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98abb5bfcbd7ded1c4b7ab9e9184786a5f53473a2e2114090000000000000000000000000000000000000000000000000000000000040a0f12151513120f0b06000000000000000000000000000f1c2835424f5b6875828e9ba8b5bcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcb3a79a8d8074675a4d4134271a0e0000000915222f3c4855626f7c8896a1acb9c0bfbebdbcbebab8b6b4b4aeacaaa39f9b938f867f746d665c53493f332720150a000000000000000000000000000000000004101c2834404b55626f7c8995a0acb8c7c5b9ac9f92867a6e6154473c32261b0f0000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000000002080d111314181714110c0600000000000000000000000004070d1013191d20252a2d3137383f44464e53575f626c717a828d929ba3adb7c0cad4e2e3d9d0c7b8aca0958a7e7164564c41362a1d110500000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbd8dacdc0b3a79a8d8074675a4d4134271a0e000000000000070e151b1f22222424242424242424242424242424242422211f1b150e0600000000000000000000000000000000000000000000000000000000000000000000070f161c20222324242424242424242424242424242424201f1c17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d151a1d262d333940454745403931271d120700000000000000000000000000000000000000000001080c151c23282e34383c4347484d535558545c606163656666676767676666656361605c545855534d4847433c38342e28231d150c080200000000000000000000000000000000000000000000000000000000060d161e24292f383f44464d525458565d6063646566666767676666656462615d565a5754534d4946443f3836302b262018242c333b42464d5355555d6063646566656463615d56524c443a3025190d010000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919e9f9f9f9f9f9f9f9f9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8999a3aebbc7d3ded2c5b9aca196887b6e6255483b31251a0e04000000000000000000000000000000000000000000000000000000060e151b1f2122201f1b17110a0200000000000000000000000f1c2835424f5b6875828e9ba8b5c1c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c0b3a79a8d8074675a4d4134271a0e000005111e2a36414d5666737f8c99a8b2bdc9cccbcad0cac6c5c3c1bfbab8b4aeaca59e98928b80786d655b50443c32271b0c0200000000000000000000000000000000000c18232e394754606a7784919dabb5c0c7bbafa3998c7f7265584e43372b1c120700000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000000000000010507070b0a0805000000000000000000000003070c1013181d2024292c3036393c42464a5053585f62696e767e858f949da4adb5bfc9d2dce8ddd2c7bdb2a89d9184786c6053463a3025190d0100000713202d3a4653606d798693a0acb9c6d3d8cbbfb2a5988c7f7265594c3f322619060000000000000000000000000000000000000004111d2935404b556874818e9ba7b4c1cedad8ccbfb2a5998c7f7266594c3f3326190c00000000000000040a0f131516171717171717171717171717171717171515120f0a04000000000000000000000000000000000000000000000000000000000000000000000000050b101316161717171717171717171717171717171713120f0b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c13191f262b2f383f444b5153514b43392f23180c0000000000000000000000000000000000000000040c13191e262e34383f44464e5355575f616467666d6e7072737374747474737271706e6d666764615f5755534e46443f38342e271e19130c0400000000000000000000000000000000000000000000000000000610181f282f353e424a5053575e616568686d7071727273747474737372706f6d68696764615e575653504a46413b373129242d363e454d52575f6166676d7071727272716f6d68615e564c41362a1d11050000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabacacacacacacac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5d2dfd5c9bdb2a8998c7f7266574d42362a20150a000000000000000000000000000000000000000000000000000006101820262b2e2f2d2b27221b140b02000000000000000000000f1c2835424f5b6875828e9ba8b5c1ced6d6d1cac4c1bfbfbfbfbfbfbfbfbfbfbfbfbfbfbfbfbfbfb3a79a8d8074675a4d4134271a0e00000714202d3946525e687683909da9b6c3cececfd1d2d4d3d2d0d0cac6c5bfbab9afaaa29f928e81776c60584e43372b1e140a000000000000000000000000000000000007121d2b37434e5865727f8c99a3afbbc7c0b5ab9d9083776a5f5347392e23180c00000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000000000000060c1012181c1f24292c2f35393a4146474d53545c60636a6f757b828a91979ea6aeb6bfc7d1dbe4ded7ccc0b5aba0968a7e71665b504438281e13080000000713202d3a4653606d798693a0acb9c6d3d9cdc0b3a69a8d8073675a4d402d22170b000000000000000000000000000000000000000613202c3945515d677784919daab7c4d0ddd7cbc0b5ab978a7e7164574b3e3124180b000000000000000000030608090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09080603000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0606030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b12181e252931373d414950555c605c554b4034291c1004000000000000000000000000000000000000070d161e242930383f444a5053585f6266696e717477797b7d7e7f8080818180807f7e7d7b797774716e6966625f5853504a4540393029241e160e07000000000000000000000000000000000000000000000000060f18222a313a414550545b6063696e7274777a7c7e7e7f80818180807f7f7d7c7a787673716e696662605b54524c47423c352f373f4850575e61696e73777a7c7e7f7f7e7e7c7a786d685e5246392d2013070000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8b9b9b9b9b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515d677683909da9b6c3d0dbdacec3b6a99c908376695e53463c32271b0f05000000000000000000000000000000000000000000000000050e18222a31373a3c3937332d261d140a000000000000000000000f1c2835424f5b6875828e9ba8b5c1cedbd1c8bfb9b4b3b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2a79a8d8074675a4d4134271a0e00000814212e3b4754616e7b87939facb9bfc0c1c2c4c6c7ccd2d2d5d6d3d1cbc7c1bcb4aea59d938d80736a6054473e30261c110600000000000000000000000000000000000f1b27323d4754616e7b86929facb9c5c7b8aca095887c6f62544a4034281c1004000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000001040a0f11171c1f23282c2f35393a4145474c5254575f61666d70757c81878f949ea1a9b0b8c0c8d1d9e3ded6ccc4bbafa4999184786d60544a3f3328160c020000000713202d3a4653606d798693a0acb9c6d3dbcec1b4a89b8e81756853493f33271b0f030000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6d2dfd3c7bbafa399887c6f6255483c2f221509000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171d232830353c42474f535b60676d675c5145382c1f1306000000000000000000000000000000000009101920282f353d424a50545c60646a6e73777b7e81848688898b8c8d8d8e8e8d8c8c8b89888684817e7b77736f6a64605c54514b423d3530282019100900000000000000000000000000000000000000000000050e18212a343c434c515a61666c70757b7e818486898a8b8c8d8d8e8d8d8c8b8a88878583807d7b77736f6c66615e56534e45413a3f49515a61696e757b808486898a8b8c8b8a8987857a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4c6c6c6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556773808d9aa9b3becad6dfd2c5b9ac9f92877b6e61584e43372b21170d0400000000000000000000000000000000000000000000030c17202a343c43474846443f382f261b11060000000000000000000f1c2835424f5b6875828e9ba8b5c1ced5cabfb6aea8a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a69a8d8074675a4d4134271a0e0004101d2935404b5565717e8b9aa4afb2b2b3b4b5b7b9bbc0c4c5c9ced5dad7d3cec6bfbaafa59f93877c6f62594f42382e23170b00000000000000000000000000000000000a15202d3946525e6875828f9ca9b3bec8bcb1a79a8d8074665c5144382c1f1308000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000000000000000000000000000000000001070d11151b1c23282c2e34383a4045474c5254565e6165696e73797d82888e93999fa6adb3bbc1cad2dae3ddd5ccc4bab0a69f93877d70665c5042382d221705000000000713202d3a4653606d798693a0acb9c6d3dccfc2b6a99c8f8376655b5044372b1f12060000000000000000000000000000000000030f1c28333f4a5463707c8999a4afbbc7d4dfd2c5b9ac9f9286796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003061313131313131313131313131313130f0f0c0904000000000000000000000000000000000000000000000000000000000307090a13131313131313131313131313130c0c0a06020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090b141b22272e343a41464d535960656c71796d6053473a2d201407000000000000000000000000000000010a121b222b323a41454f545c60666d71777b8084888b8e919399969899999a9a9a9a999998969992918e8b8884807b77716d66605c544f46413a322b221b120a0100000000000000000000000000000000000000020d172029333c464e555d606c70787d82868b8e91939a979899999a9a9a999998979597928f8d8a8784807c78736e68625f57514b4347515b626c717b81888c91939a979899989796978a7d7064574a3d2f24180d0100000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3d4a5763707d8a97a2adbac6d3dfd4c7bbafa3998e81756a6054473e332920160c030000000000000000000000000000000000000000030c151e29323c464e535553504941382d22170b0000000000000000000f1c2835424f5b6875828e9ba8b5c1ced0c4b9aea49c9999999999999999999999999999999999999999998d8074675a4d4134271a0e0006131f2c3845515d6775828f9caca4a5a5a6a7a9aaacafb5b7b9bdc4c9cfd6dfd7d0cac0bbafa49a8f82766b61544a3f34281c10030000000000000000000000000000000005111e2a36414d5664717e8a97a2adbac6c3b8ab9e9285796d6053463a3025190d010000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000000000000000000000000000000040a0f13181d20262b2e34383a4045464b5153565d6065686d72767b80848a8f949b9fa4abb0b9bec4cdd3dce5dcd4cbc3bab2a89e948c7f736b60544a3f2f261c1106000000000713202d3a4653606d798693a0acb9c6d3ded1c4b8ab9e9185796c605346392d22170b010000000000000000000000000000000006121f2b3844505b6673808c99abb5c0ccd7ddd0c4b7aa9d918477675c5145382c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b10122020202020202020202020202020201c1b1915100902000000000000000000000000000000000000000000000000040b101316162020202020202020202020202020191816120d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d141a1d262d333940454c52575f616b6f787e84786b5e5145382b1e120000000000000000000000000000010a131c242d343c444c525960666d72787e83888c9196979a9d9fa4aba5a6a6a7a7a7a7a6a5a4aba39f9d9a9796918c88837e79726d666059524c443d342d251c130a0200000000000000000000000000000000000008131e29323b454e585f676d747d848a8f92999b9d9fa4aca5a5a6a7a7a7a6a6a5a3a9a29f9c9a9795918d89847f7a756e6a605d554f4f59626d727e868e93999d9fa4aca5a5a5a4a99a8d807367554b4135291d110400000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929fabb8c4cedad7cbc0b5ab9f93877c6f62594f453b32281e150c05000000000000000000000000000000000000050d151e27303b444e585f62605b53493f33271b0f0300000000000000000f1c2835424f5b6875828e9ba8b5c1cecdc1b4a89c928c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8074675a4d4134271a0e000714202d3a4753606d79869297979898999a9b9c9e9fa4ababacb2b9bec4cdd5dddbd6ccc0b6ac9f948a7d70665c5044382b1f120600000000000000000000000000000000020e1925303b4653606d7985929fabb8c3c6b9ada1978a7d7064564c41362a1e11050000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000000000000000000000000000000000000040a0f151b1d24292c3237383f44464b5153555d6064686d71767a7f83888d91969c9ea6acafb5bdc2c9cfd6dfe0d9d5cac2b9b1a8a0968f82776c60594f42382e1d140a00000000000713202d3a4653606d798693a0acb9c6d3dfd2c6b9ada197897c6f6253493f33271d1207000000000000000000000000000000040d16202d394653606c7884919eabb7c4d2dddbcec1b4a89b8e817568554b4034281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c0300000000000000000000000000000000000000000000070f161b2022232d2d2d2d2d2d2d2d2d2d2d2d2d2d2625221e18110a0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c13191f262b2f383f444b51565e61696e757d838a86796c605346392d201300000000000000000000000000010a131c252e363f464e565d606b70787f848a9095999da0a8a7aaacafb5b1b2b3b3b4b4b3b3b2b1b5afacaaa7a8a09d9995908a847f79706b615d564e463f372e251c140a0100000000000000000000000000000000030c1925303a444d575f6a6f7a818a91969c9fa3abaaacafb6b1b2b3b4b4b3b3b2b2b0b3adaba9a6a8a09d9996918c86817b736d67615955606b727f8892989ea5aaacafb6b2b2b1b1aa9d908377675d5145392c20130600000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6674818e9ba8b2bdc9d5dcd1c7bbafa49a8f82766b61574d443a30271e170f0802000000000000000000000000000003090f171f273039434d565f6a6f6c655b5044372b1f150a00000000000000000f1c2835424f5b6875828e9ba8b5c1ceccbfb3a6998c807f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7d7063564a3d3023170a000a1724303d4a5763707d8a8a8b8b8b8b8c8d8e8f9193999a9ea1a8adb3bbc3cbd5deddd2c7beb0a69d9184786d6053463a2d201308000000000000000000000000000000000008141f2c3845515c6774818d9aa8b1bdc8beb3a99b8f8275685e5246392d20150a0000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2b8b8b6a99c8f8376695c504336291d100000000000000000000000000000000000000000000000040a0f151b20262b2f35393c43474a5053555c6064676d71757a7e82868b9094999ea1a8aab0b9bbc0c7d0d5dae1ddd8cec9c0b8b0a7a09691847a6d655b50473d30261c0b0200000000000713202d3a4653606d798693a0acb9c6d3e1d5c9beb3a99a8d8073655b5044392f23180f0500000000000000000000000000010c161f2a36414d5663707d8a96a1adb9c5d2e3d5c9bdb2a8988b7e7165584b3e2e23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c141c23282b3939393939393939393939393939393634312c261e150c02000000000000000000000000000000000000000007111921272c2f30393939393939393939393939393933322e2a231c130a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181e242931373d414950555c60686d747b8289909586796c605346392d2013000000000000000000000000000a131c262e373f48505860686d757d838b91969d9fa7aaacb2b4b7b9bbc0bebfc0c0c1c1c0bfbfbec0bbb9b7b4b2acaaa7a09d96918b847d756d686058514940372e261c130a000000000000000000000000000000000a151e2a36414c565f696f7c848e939ea1a8acafb5b7b9bbc0bebfc0c0c1c0c0bfbebdbebab8b6b3b1acaaa9a19e99928e868079706b625d67707d87939aa2aaafb7b9bbc0bebfbeb9ac9f92867a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b5463707d8996a1acb9c5cfdbd8ccc0b6ac9f948a7d70695e564c423930292119130e09040000000000000000000104090e141a21293139434b555e696f7b776c6053463c31261b0f02000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca0938679737373737373737373737373737373737373737373706b6055483c2f231609000915222f3c4855626f7c7e7e7e7e7e7f7f80818284868a8d91969ea1a9b1b9c3ccd5e0d9d0c2b8aca095897d706356493d3025190d010000000000000000000000000000000004101c2834404b55626f7c8995a0acb8c7c5b9ac9f92867a6d6154473c32261b0f0000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5ababababa99c8f8376695c504336291d1000000000000000000000000000000000000000000002080d151b20262b32373a4145474e54545c6063676d70757a7e82868b8f92999c9fa6abadb2b7bbc1c7ccd2d9e2e2d9d2ccc4bdb9aea69f9590847b6e685d53493f352b1e140a0000000000000713202d3a4653606d798693a0acb9c6d3e6dacfc4b7aa9e9184786c60554b40342921170d060000000000000000000000020a131d28313a46525e6875828f9ba8b2bdc9d5ded2c5b9aca196887b6e6155483b2e221507000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e262e343846464646464646464646464646464642413d3730271e140900000000000000000000000000000000000000040f19232b32383b3d46464646464646464646464646463f3e3a352e251c11070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0c151d232830353c42464f535b60676d727a80868f939d9386796c605346392d201300000000000000000000000008121c252e384049515a626a6f7a818991959ea1a8abb1b7b8bdc1c4c6c7ccd2cccccccbcbcdccccd1cbc7c5c4c1bdb8b7b1aca8a19e969189817a6f6a625b514940382e251c1108000000000000000000000000000006111c26303846525e686e7b8591969da5acb2b9bbc0c4c6c8ccd2ccccc9c7c6c6c6c7d0cac6c5c2c0bdb8b7b2adaba39f99928d857d726d606d7a859299a4acb4bcc1c6c8ccd2ccc7bbafa399897d7063564a3d2f23180c00000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3a4653606d7884919ea9b3becad6ddd2c7beb0a69e91857b6e685d544b423b332a251e1a14100c07070605040607070d10141a1f252a333b434b555c676e7b857d7063584e43372b1e1408000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d66666666666666666666666666666666666666666360594f44382c201407000815212e3a47535f6a6f71717171717272737476777a7d80848b9197a0a7b1bac3ced9e2d4c8bdb1a89a8d817467564c41362a1e110500000000000000000000000000000000000c18232e394754606a7784919dabb5c0c7bbafa3998b7f7265584e43372b1c120700000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c989e9e9e9e9e9e9c8f8376695c504336291d100000000000000000000000000000000000000000040c131920262b32373c43474b5154585f62666d7074797d81868a8f92999c9fa3ababb0b8b9bdc4c7ccd4d7ddded8d3d0c7c0bbb2aca49d948f837a6e695f564c41382d23190c020000000000000713202d3a4653606d798693a0acb9c6d3dfded2c5b9aca0968a7e71675c51453d33291f180f09030000000000000000060b141b242f3a434f59616e7b86929facb9c4cfdaded1c4b7ab9e918478695f53463a2d21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2630383f445353535353535353535353535353534f4d49423930261b10040000000000000000000000000000000000000b16212b353d44484953535353535353535353535353534c4b463f372e23180d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e161b1e272e343a41464d535960656c71797f858d92999ea59386796c605346392d2013000000000000000000000007101a242e37404a525b636c717c848e939da0a7acb2b8bcc3c5c8ced0cec9c5c4c2c1c0bebfc0c1c2c4c5c8ced0cec8c5c3bcb8b2ada8a09d938e847c726d635b524a40372e241a1006000000000000000000000000000c17232e3842505a616d7a849197a1a8afb9bdc4c7cbd1d2cdc7c4c3bfbdbbbab9b9babbbcbec1c4c5c8c5c4bdb9b4aeaba39f9791877f746e727f8c97a1abb5bec6ced2d4d8d4d1cbc0b5ab998d807366554b4034291c1004000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121f2b3844505c66727f8b97a2adbac4cfdad9d0c2b9ada19791837a6d665c544d453e36302a251f1d181514131210131315181d20252a31363e454d555d676d79838f82766a5f53473b3025190d010000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d605959595959595959595959595959595959595956554f473d33271c10040006121f2b37434e585f6264646464656566676869686d7074797e859095a0a8b2bdc8d4e0d9cec3b7ab9e918478685e5246392d201307000000000000000000000000000000000007121d2b37434e5866727f8c99a3afbbc7c0b5ab9d9083776a5f5347392e23180c00000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c91919191919191918f8376695c504336291d1000000000000000000000000000000000000001080e161e242931373c43474e54555d60656a6f74797d81858a8e92989b9fa3abacafb5b7bcc2c5c9cfd3d7e0dfd8d3cdc7c2beb6afa8a09e928d82796e685f574d443a2f261b1107000000000000000713202d3a4653606d798693a0acb9c6d3dfe1d5c9bdb2a89e9184796d60584e453b312a211a140e090604000406070c11171d262d35404b55616b74818e99a3afbbc7d6e0d5c9bdb2a89a8d807467574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e38424a505f60606060606060606060606060605c5a544b42372c211509000000000000000000000000000000000003101b27323d474f54566060606060606060606060606060595751493f352a1e120600000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d141a21272c303940454c52575f616b6f787e848c92979fa3ab9f9386796c605346392d201300000000000000000000030d19222c363f49525c636d727e8791969ea5acb1b9bdc4c8cdd1cec8c5c4bdb9b7b6b4b3b2b2b3b4b6b7b9bdc3c6c8ccd2cdc8c4bdb9b2aca59e9691877f736d635c52493f362c22180c03000000000000000000000003101c28343f4a54616c76829096a0a9b2bac1c9ced4d7ccc6c2bcb7b6b2b0aeadacacadaeafb2b4b7b8bcc3c4c7c6bfbab5aea9a199938c80747884919ea9b3bdc7d0d8d9d2ccc8c6c0bbb6a99c908376675c5145382c1f1306000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54606d7985929fa8b2bdc9d5dfd5c9beb2a9a0958f82786d665e575046413a36312c29242221201f1c1f202224292c31363b42464f575e676d79828f94887c6f62564c41362a1d12070000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d60534c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4a48443d352c21160b0000030f1b26313c464e5355575758585858595a5b565d6064666d727a839096a0acb9c4ced9ded2c5b9aca196877a6d6154473a2e2114070000000000000000000000000000000000000f1b27323d4754616e7b86929facb9c5c7b8aca095887c6f62544a4034281c1004000000000000000000000000000000000000000000000000000c1825323f4b5865727f858585858585858585858275685c4f4235291c0f0000000000000000000000000000000000040c1319202830353c43474e53585f62676d72777c8185898e92979b9fa2aaacaeb4b9bbc0c7c7cdd2d5dae0dbd6d3cdc7c2bcb7b1aca49f96918981786d675e564d453c32281d140a00000000000000000713202d3a4653606d798693a0acb9c6d3dfe5d9cec4b9aca1968c7f726a60574d433c332a251f1a1413100c101313181b22272f383f45515d67707d89939eabb5c0cbd7ded2c5b9aca096897c6f6256493c31261a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69655d54493d3125190c00000000000000000000000000000000000713202c38444f5960636c6c6c6c6c6c6c6c6c6c6c6c6c6c66635b51463a2e22160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000070c13191f262a32383e424b51565d61696e757c838a91969fa2a9aeb59f9386796c605346392d2013000000000000000000010b151f2a343e48515b636e737f8b9299a0a8afb8bcc3c9ced4ccc7c3bcb8b7b2acaba9a8a6a5a5a6a8a9aaacb2b6b9bbc0c7ccd2cfc9c3bdb8afa8a199928b7f736e635b51483e342a1e150b000000000000000000000006121f2c3844505c66707d8a949fa8b2bbc4ccd5d8d1cbc1bab6b1aba9a6a3a1a0a0a0a0a1a3a5a7aaacb1b6b7bbc2c7c6bfbbb3aba49f928b7f7b8796a1acbbc5d0d9d7d0c7c0bbb9b5afacaa9f9286796d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3845515d6773808c96a1adb9c2cdd6dacfc4bbb1a79f948e81786e69615a524c46423b39352f2f2e2d2b282c2d2f2f35393b42464d535961696e79828f949b8e8174685e5246392f23180c0000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d60534640404040404040404040404040404040403d3c38332c231a0f050000000a15202a343c4347484b4b4b4b4b4c4c4d4e4c5254545c60686d7a84919ea8b2bdc9d5e1d5c9bdb2a8968a7d7063574a3d3024170a0000000000000000000000000000000000000a15202d3a46525e6976828f9ca9b3bec8bcb1a79a8d8074665c5144382c1f1308000000000000000000000000000000000000000000000000000b1824313d4a56626d7278787878787878787878756f65594d4134281b0e00000000000000000000000000000000050d161e2429323a41454e53585f626a6f747a7e83888d92979b9fa2a9acaeb4b9babfc5c7cbd1d3d8dfded8d3d0cac6c2bcb7b0aba79f9a938d847d746d665d554c443c332a20160b0200000000000000000713202d3a4653606d798693a0acb9c6d3dfebe0d5c9bdb2a89f92867c6f695e564d453e36312a25201f1d181c1f2023282d333a4149505c606d7984919ea5afbdc7d1dcd6cbbfb4aa9e9184776a6054473b2e1f140900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667679797979797979797979797979797570655a4d4134281b0f02000000000000000000000000000000000916222f3b4854606b707979797979797979797979797979726d63574b3e3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181e242931363d434850545c60686d747b828990959ea1a8adb3bbac9f9386796c605346392d201300000000000000000007121d27313c46505a636d73808c919fa3abb2bac1c8ced5cec9c1bbb7b1acaaa8a19e9c9b9998989a9b9c9ea0a8a9acafb6bbc0c7d0d5cec8c1bab2aba39f918c80736d635a50463c30271d1207000000000000000000000713202d3a4653606d7884919da6b0bac3cdd6d8cfc6bfbaafaaa79f9d999694939393949496989b9da0a7a9abb0b8babfc6c4bdb5afa49f9287818e9aa8b2bdcdd6d7cdc5beb6afacaba39f9d9e99897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2935404b55606d7984919ea6b0bbc5d0d9d6cdc3b9b0a69e938e837b706c615e56534d4745403d3b3a393734383a3b3d4045474d53575e616c707b838f949e9f92867a6e61554b4034291c100400000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a33333333333333333333333333333333302f2c27211a110800000000040e18222a31373a3c3e3e3e3e3e3f3f40414145474a50565e68717e8a96a0acb9c5d2dedacebeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000005111e2a36424d5664717e8a97a2adbac6c3b8ab9e9285796d6053463a3025190d010000000000000000000000000000000000000000000000000915222e3a45515b62656b6b6b6b6b6b6b6b6b6b68655d53493d3125190c000000000000000000000000000000060e171f282f353e444c52585f626a6f757c81868b90959a9ea1a9abadb3b8babfc5c7cbd1d4d7dcded9d4d1cdc7c5bebab8b0aba69f9c9590878079706b605c544b433b322a21180e040000000000000000000713202d3a4653606d798693a0acb9c6d3dff1e5dacec4baaea39891857b6e685f574f46423b36302d2c2924282c2d2e34383f444c535b606e74818e96a1acb7c1cfd9dfd3c7baaea3988c807366584e43382b1f0d030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7886868686868686868686868686868275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707d86868686868686868686868686867f7266594c3f3326190c00000000000000000000000000000000000000000000000000000000000000000000000000040a0c151d232830353b42464f545a61666d727a80868e939d9fa7acb2babeb9ac9f9386796c605346392d20130000000000000000000c18232f39434e58616c727f8c929ca3aeb4bdc4ccd4d2ccc4bdb9b0aaa7a09d9996918f8e8d8b8c8d8e8f9196999d9fa4acafb6bec3cbd1d4ccc4bdb5aea39c928c7f726c61584e42392e23180c04000000000000000004111d2935414b5565717e8b96a0acb8c2ccd5d9d0c6bdb4aea59e9b95908c8a888786868788898b8e9195989c9fa6acaeb4bbc0c7c0bbafa399928e929da9bac4cedbd0c5bbb3aca49f9a99929191928c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d18242f3945515d67717e8a949fa9b3bec7d2ddd5cbc2b8afa59e9590857e746d68615e5753514b4948474644404546484a4b5153575e61696e757d8590959fa6a3988c8073675c5145382c1f160b00000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2626262626262626262626262626262323201c160f0800000000000006101820262b2e2f31313131323233342f35393a3f444c56606d7884919eaab7c4d1ddd9cdc0b3a69a8d8073675a4d4034271a0d010000000000000000000000000000000000020e1925303b4753606d7985929fabb8c3c6b9ada1978a7d7064564c41362a1d110500000000000000000000000000000000000000000000000005121d29343f495156585e5e5e5e5e5e5e5e5e5e5c59534b42372c2015090000000000000000000000000000060f182029313a41454f565d606a6f757c82888e92989da0a7abadb3b8babec5c6cad0d3d7dcdfd9d4d1cec8c5c2bbb7b4aeaba69f9c949089837c746d676059514b423a312920180f06000000000000000000000713202d3a4653606d798693a0acb9c6d3dff6ebe0d6cbbfb4aaa19790837a6e696159534d46423c3a39352f34383a3b40454950565d656c74808d929da8b2bdc9d2e1d7cbc0b5ab9f92867a6d6154473d32271b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d79869393939393939393939393938f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c899393939393939393939393938c7f7266594c3f3326190c000000000000000000000000000000000000000000000000000000000000000000000003090e161b1e272e343a41454d535960636c71797f858d92999ea5abb1b9bdc4cab9ac9f9386796c605346392d2013000000000000000004101c2934404b555f6a717e88939fa4adbabfc6cfd6d1c8c0bab2aca69e9c95918c88848381807f7f80818384888c90939a9fa4acb1bbc0c7cfd6cfc6bfbbada49f93887e706a5f544b40342820150a00000000000000000613202c3945515d6776828f9ca8b2bdcad4ddd2c7beb4aba39f938e88837f7d7b7a79797a7b7c7f8184888b90949a9fa3aaafb5bdc2c0b5aba39f9a9da5afbaccd6d6cabeb3a9a29a938d8886848485888276695c4f4336291c10000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2935404b55616c76828f97a1acb6c0ccd8dbd4cac1b7afa79f97928a807a746e6963605d5556555453504b51535557555d6064696e737b818a92979fa7b0aa9e9285796d6053473d33271c1000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d201919191919191919191919191919171614100b050000000000000000060e151b1f2122242425252525262724292c2e343a44505c6673808d99a6b3c0ccd9dbcec1b5a89b8e8275685b4f4235281c0f0200000000000000000000000000000000000009141f2c3845515c6774818d9aa8b2bdc8beb3a99b8f8275685e5246392d20150a000000000000000000000000000000000000000000000000010c18232d373f454a4b525252525252525252524f4d49423930251b0f0400000000000000000000000000061018212a333b434c525961686d747c82878f939a9fa2aaabb1b8b9bec5c6cad0d3d6dbddd8d4d2cdc8c4c3bcb8b7b0abaaa29f9a949089837d766f6b605d554f45403930281f170e0600000000000000000000000713202d3a4653606d798693a0acb9c6d3dff1e8e1dad0c6bcb3a9a09590847b706b615e57524d4947454043404546484b51535b60686d77808d929da5afbac4cedbdbd4c7bbafa3998d8174685e5246392b20160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939f9f9f9f9f9f9f9f9f9f9c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c89969f9f9f9f9f9f9f9f9f9f998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000000000000000000000001080d141a20272b303940454c52575f616b6f767e848c92979fa3abafb8bcc2c9ceceb9ac9f9386796c605346392d201300000000000000020c1a242c3845515c676f7c86929aa4afb6bfcbd1d8d0c7bfb6aea8a19e948f8884807b787675737272737576777b7f83878e939a9fa7afb5bdc6cfd8d1cbbfbbafa49a92867c6f665c51453c32261b0f05000000000000000714212d3a4754606d7a86929facb9c3cedfd8ccc0b6aca399928a817b7673706e6d6d6d6d6e707274777b7f83888e92989fa4abb1b9c0bdb5afaca7a9afb7c0cbded3c6baada2979288807b797777797b7e7064574a3d3124170a000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c18242f3943505a616e7b85929aa4afbbc0c9d3dbd3c9c1b9b1a9a29f928d86807b74706d6766636261605b545c60626466676d70757b80868e939fa2a9b1b9ada1978b7e7165594f44382c1c1106000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130d0d0d0d0d0d0d0d0d0d0d0d0d0a0907040000000000000000000000040a0f121515181818181819191a191d202328343f4a5464717e8a97a4b1bdd2dddccfc2b5a99c8f8276695c4f4336291c100300000000000000000000000000000000000004101c2934404b55626f7c8996a0acb8c7c5b9ac9f92867a6d6154473c31261b0f0000000000000000000000000000000000000000000000000006111b252d343a3d3f4545454545454545454542413d3730271e140900000000000000000000000000050e18222a333b454d565d606b707a81878f939a9ea6acaeb4b8bcc3c6c9cfd3d6dbddd7d4d2ccc8c6c3bcb8b6b1acaaa69f9c98928e89837d76706b636059514b433d342e271e160d050000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe8dfd6cfc9c6c4bbb1a7a09691857d756e69615e575553514b504b515354555c60656c717a818d929da4aeb7c0ccd6ddd5c9beb3a99f92877b6e61564c41362a190f04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acacacacacacacaca89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3acacacacacacacaca5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000000000000000000000000070c13191f262a32383e424b51565d60696e757c838a91969fa2a9aeb5bdc1c8cdd0cac4bdac9f9386796c605346392d2013000000000000000a141e2c38434f59606d79839198a2acb6c0c8d7dcd0c7bfb5ada49d96918a827c77736f6a6968666565676869696e72767b818790959fa3abb5bdc6cfd8d7ccc0b6aca2989083796d60584e43372b21160b000000000000000a1724313d4a5764707d8a99a3aebbc7d3e0d4c8bbafa49a92877e756e696663616060606161636568696e72767b81868d93999fa7aebbbfc0bbb9b4b5bac0c9d2d4c8bdb1a89f92857d746e6d666b696e706c6155493c3023160a000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313e46525e69707d88939fa5afb7c1c9d6dbd3cbc2bbb3ada49d98928d86817d7a7672706e6d6c656b666d6e7073767a7d82878d92989ea5adb3bbbeb3a99d9083776b605448382e23170b000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000030608090b0b0b0b0b0c0c080d111317232e3b4855626e7b8895acb6c0ccd8dccfc3b6a99c908376695d5043362a1d1003000000000000000000000000000000000000000c18232f394754606a7784919dabb5c0c7bbaea3998b7f7265584e43372b1c11060000000000000000000000000000000000000000000000000009121b23292e3132383838383838383838383534312c251e150c02000000000000000000000000020b17202a343c454d575e686d747d848e939a9fa4acb0b8babfc6c8cdd2d5dadcd7d3d2ccc7c6c0bbb9b6b1acaaa7a09d9994908b85817c76706b636059544f4540393128231d150c04000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe1d6cdc5beb9b8b9b9b1a8a0979288817b736e696662605d555d545c606164676d70787e858e939da4aeb6c0c9d2ded5cbc3b9ada1978d8074695f53443a3025190700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9b9b9b9b9b9b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afb9b9b9b9b9b9b2a5998c7f7266594c3f3326190c000000000000000000000000000000000000000000000000000000000000030b12181e242931363d434750545c60686d737b818990959ea0a8adb3bbbfc6cfd1cbc5bebab2aca79386796c605346392d201300000000000006111c2630384854606b73808d95a0aab4bec7d2dad0c7beb5ada39c928d847d756f6a66625f585b5a58595a5b575f6166696e747c838b9299a3abb4bcc6d0d9d2c7beb4aaa0958d80736a5f54473d33271c10040000000000010e1b2734414e5a6774818d9aabb5bfcbd7d8ccc0b6ac9f93887e716c615f57575554535354555658575f61656a6e747a808790959da4aeb5bdc6c5c1c2c5cbd2dbd1c5b8aca0958b7f726b62605c575f6164615a5044392d201408000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a36424d56606b73808c939da5afb7bfcad0d8d4cdc5bebaaeaaa29f99928e8986837f7c7b7a79787879797b7d7f82868a8f92999fa3aaafbabec5c5b8aca095897d7063544a3f34281c10030000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000001040614202d3a4753606d7a869aa4afbbc8d4dcd0c3b6a99d9083766a5d5043372a1d10040000000000000000000000000000000000000007121d2b38434e5866727f8c99a4afbbc7bfb5ab9d9083776a5f5347382e23170c00000000000000000000000000000000000000000000000000000911181d2224252b2b2b2b2b2b2b2b2b2b292825201b140c03000000000000000000000000000a141d29323c464e575f696e7a818a91969fa4acafb6bec1c6cad0d4d9ddd7d4d1cbc7c5c0bbb9b6afaca9a7a09d9995918c88837e7a746f6a636059544f48433d352f281f18120b0300000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e6dacfc5bbb3adabadb3bab2a9a29a938e86807b77736f6d676a696a666d6e7175797d838b92979ea5aeb6c0c8d2dbd7cdc3b9afa59e91857a6d60574d4232291e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6c6c6c6c2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc6c6c6c6bfb2a5998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000000000000040a0c151c23282f353b42464e545a61666d727a80868e939d9fa7acb2babec5cbd1ccc6bfbab3ada8a19e9586796c605346392d20130000000000000b17232e3842505a636f7c87939fa8b1bcc6d0d9d3c9beb5ada39b918c8079706c625f5855534e4e4d4c4c4d4e4d5355575e616a6f787f879299a3aab4bdc7d2d9d0c6bcb1a79f92877c6f62594f44382c21160a000000000003101c2936434f5c6976828f9ca9b5c2d1dcd4c8bbafa49a8e81746c615a534d4a484746464748494c4d5355585f62686d747c838d929fa3abb5bfcbcdced1d6ddddd0c4b7aa9d9184796d605953514d5355575550483e33281c1004000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d1925303b444f59636e74818e939ea5aebabfc6ced6d7cfcac0bcb4aeaba39f9b98928f8c8988878685858686888a8c8f92989b9fa3abaeb4bcc1cacac0b9b0a79c8f8276665c5044382b1f12060000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7986939facb9c6d2ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000010f1b27323d4854616e7b87939facb9c5c6b8aca095887c6f62544a3f34281c10030000000000000000000000000000000000000000000000000000060c121518181f1f1f1f1f1f1f1f1f1f1c1b19150f09020000000000000000000000000006111b262f3b444e585f696e7b838e939ea1a9afb6bbc0c7d0d3d6dbd9d4d2ccc7c6c0bbb9b5afacaca49f9d9895908c8884807b76716d67626058544f48443d383229241d160d07000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e1d5c9beb3a9a19ea1a9afb7b3aca49f98928d87837f7c7a7877767778797b7e82858a90959ea1a9afb7c0c8d2dad7cdc5bbb1a79e938a7e71675d51453b3120170d0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d2d2cfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d2d2ccbfb2a5998c7f7266594c3f3326190c000000000000000000000000000000000000000000000000000003090e151b1e272e343a41454d535860626c71797f858d92999ea5abb1b9bdc4cad0d0c7c0bbb4aea9a29f96918a83776a5d5044372a1d11000000000003101c28343f4a54616c76839099a4afbac3ced8d6cdc1b7ada39b918b7f746d67615a534e48474342403f3f40424246484d535860666c727e879298a3abb5c0ccd7d8cec3bbafa3998f82766b6054483d32271b0f020000000004101c2834404a546a7784909daab7c3d0ddd2c6b9ac9f93877b6e615a5047423d3b3a3a3a3a3b3d3f4246484e53565e616a6f78808b9299a3aebbc0cbd4dee2e5d9ccbfb2a6998c7f73665c5046444246484a49443e362c22170b00000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f29323d47525c606c78818e939ca4aeb4bcc2cad0d7d6cec6bfbab5aeacaaa39f9c9996959992919292989597999c9fa3aaacafb5babfc6cec6bfbaaea69f959083796d6053463a2d2013070000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b657985929facb8c5d2ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000a16202d3a46525e6976828f9ca9b3bec8bcb1a79a8d8073665c5044382c1f13080000000000000000000000000000000000000000000000000000000105090b0c121212121212121212120f0e0c09040000000000000000000000000000000b17222d38414c565f6a6f7b8491959da5adb2bbc0c7ccd2d9dfd8d3cec8c7c0bbb9b5afacaba49f9c9a93908c88837f7b77736e6964605d55544e48443d38332c272118120c0400000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfd2c6b9ada19792979ea5afbcb6afaaa39f9a95908c8886858483848586878a8e92989d9fa7adb3bbc1c9d2dad5cdc5bbb3a9a0958e81756c61554c4133291f0e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000001080d141a20272b303940444c52575f616a6f767d848b92979fa3abafb8bcc2c9cecec8c2beb6afaba39f97928c847e776c605346392d201306000000000006121f2b3844505c66707d8a959fabb5c0ccd5dacfc4bbafa59b918b7f726d605d555047433c3a37313332323431373a3b42464e545b606c717d869299a4afbbc3cfd9d7cbc0b5ab9f94897d7063594f43382c1e13080000000006121f2c3844515c667885929eabb8c5d1dccfc3b6a99c908376695e53473e37312e2d2d2d2e2e3031363a3c43474c525860666d747e87929fa4aeb9c2cdd8e4e3d6c9bdb0a3968a7d7063544a3f38363a3b3d3c39332c241a10050000000000000000000406070c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d20130c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c070604010000000000000000000000000000000000000000000000000000000000000000000000020d17202c354044505b666d78818c929fa2aab1babfc6ccd2d6d0cac6bfbbb9b4aeaca9a5a3aba39f9e9e9fa3aaa3a6a9acaeb4b9bbc0c7cbc9c2bcb4aea49d9490837a6d665c5044382b1f12060000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495f6b7885929eabb8c5d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000005121e2a36424d5764717e8a97a2adbac6c3b8ab9e9285796d6053463a3025190d01000000000000000000000000000000000000000000000000000000000000000505050505050505050502020000000000000000000000000000000000030f1b27333f49535e686f7c859196a0a7afb9bdc4ccd2d8ddd8d3ccc7c3bcb8b5afacaba39f9c9993908b87837f7b77736e6a66625f5753514b47433d38332c27211b160d07010000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ded1c5b8ab9e92858e939ea9b3bcbbb4aeaca79f9d99959792919091929794979b9fa2aaabb1b9bec5cdd3dad5ccc3bbb3a9a1979183796d605a50433a2f21180d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000000060c13191f252a32373e424a51565d60696e757c838a91969ea2a9aeb4bdc1c7cdcfc9c3bdb8b0aca49f99928d857f79716c655b5044372b1f120500000000000713202d3a4653606d7884919da7b1bdc7d2ded5c9beb2a99e938b7f726d635b514b433e37312e2b2627252627262b2d31363d424a505a616b707d87939fa7b1bdc7d1dcd1c7bdb0a69d9083766b6054483a3025190d010000000713202d3a4653606d7986939facb9c6d2d9ccbfb3a6998c807366574d42352b2622212020212223262a2d31373a41464e545c606c717e8a929ca7b1bcc7d3dfe2d5c8bcafa295897c6f6256493c2e2a2d2e31302d28221a12080000000000000001070c10131418181818181818181818181818181818181818181818181f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201818181818181818181818181818181818181818181818181413110d070100000000000000000000000000000000000000000000000000000000000000000000050e1a2328333f4a545c666d77808b92989fa7aeb4bbc0c7cbd0d4d1cbc7c5bfbab9b6b2afb5afacababacaeb4b0b2b5b9babfc5c7cbc8c4bdb9b0aaa29f928d827a6d685e544a3f34281c10030000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d45525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000020e1a25303b4753606d7985929fabb8c3c6b9ada1978a7d7063564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202b3744505b656e7a859197a1a8b1b9c0c9cfd8dddad5cdc7c2bbb7b1acaba49f9c99928f8b86837f7b76726e6966625f5855534d4745403937322c27211c160f0a0400000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82818e97a2aab4bdbfbab9b1abaaa6a9a29f9d9c9d9ea2a9a4a8acaeb4b8bcc2c9cfd6d6cfc9c1bab1a9a29792857c6e675d51483e31281e0f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000000000000000000000000000000000000000000030a11171e242931363d434750545c60686d737b818990949ea0a8adb3babfc6cfd0cac4beb9b1aca69f9a938e86807a726d67605b53493f33271b0f030000000005121e2b37424d5764707d8a96a0acb9c2d0d9dcd2c6b9ada1978e81756d625b51454039312b26211f1a1a19191a1a1e21252a2f383f445059616b73808d95a0abb5c0cbd7d9cfc2b8ab9f95897c6f63564c41362a1d11050000000714212d3a4754606d7a8799a3afbbc7d4d7cabdb1a4978a7e7164574b3e31241a151413131415161a1e21262b30363c424a505a626c73808d959fabb7c2cdd8e4d5c8bbaea295887b6f6255483c2f2221222423201c17100800000000000000030b12181d1f202525252525252525252525252525252525252525252525252b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2525252525252525252525252525252525252525252525252520201d18130c0400000000000000000000000000000000000000000000000000000000000000000000081117222d38424b545c656c737e8690959fa2aaafb5babfc6c8ced2d3d1cbc7c5c2bfbcc0bbb9b8b8b9babfbdbfc2c5c7cbcbc7c3bdb8b2ada69f98928b81796d685e564c42382e23170b000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000009141f2c3845515d6774818e9aa8b2bdc8beb3a99b8e8275685e5246392d20150a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141f2b37434e58606c77828f97a1a9b2bac3ccd5dadfd6cfc9c2bbb7b0aba7a09d99938f8b86827e7a76726e6965615f5755534e4847423c39352f2b27201c16100b05000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827a859298a3abb3bbc3c3bcb8b6b2b3adabaaa9aaabadb3b1b5b8babfc5c8cdd5d6d0cbc5beb9b0a8a09792857c6f6a5f554b40362c1f160c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000000000000000000000000000000000040a0c151c23282f353b42464e545a61666d727a80868e939c9fa6acb2b9bec5cbd1cbc6bfbab3ada8a09d949087817b736d68605c55504941382d22170b00000000000714212d3a46535f6976828f9ca8b2bdcbd4e2d2c6baafa59e91857a6d615b514940352f271f1b15120f0a0c0c090e12141a1d262d333e474f59606d79839199a3afbbc7d2ddd4c8bcb1a79b8e8175685e5246392d2013080000000613202d394653606c7986929facb9c5d2d6c9bcafa396897c706356493d302316090707070708090e12151a1e252a30383f44505a606c7883909da7b1bcc8d4e0d5c8bbaea295887b6f6255483c2f221515171614100b0500000000000000030d151d24292c2d323232323232323232323232323232323232323232323232323845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c6053463932323232323232323232323232323232323232323232323232322d2c29241d160d040000000000000000000000000000000000000000000000000000000000000000000006111c262f39424b535b606c717b838c92989fa4abaeb4b8bdc3c5c7cbd1d0d1cfccd1cbc7c5c4c5c5c7cbd1cccfcac6c5bfbab9b2aca8a19e948f867e746d675d564c443a30261c1106000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000004101d2935404b55636f7c8996a0acb8c7c5b9ac9f92867a6d6154473c31261b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1925303a47535f6a727f8c949fa9b3bbc4ccd5dedcd4cdc5beb9b0aba69f9c95918c87827e7a76726e6865615e5755534d4847433c3a37312c29241d1b16100b050000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82757d869299a2a9b1b9bec5c4c3bfbebab8b7b6b7b8b9bebdc1c5c6cad0d4d3d0cac6bfbab3ada69e9591857c6f6a5f574e43392f241a0d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000000000000000000000000000000000003090e151b1e262e343a41454d535860626c70797f858d92989ea5abb0b9bdc4cacfcfc7c0bbb4aea9a19e95918a827c756e69615d56514b443f382f261b110600000000000815222e3b4855616e7b87939facb9c3cedfdbcfc2b6a99e938a7d70685d52493f3729241d150d0a0603000000000205090b141c2228353e45515c676f7c87929facb6c0ccd8d8cdc2b9ac9f92867a6d6154473a2f24190d01000006121f2b3844505b667885919eabb8c4d1d6c9bdb0a3968a7d7063574a3d3024170700000000000002050a0f13191e262e343f44505b66707d89959fabb8c4d1ddd5c8bbaea295887b6f6255483c2f2215090a0a08040000000000000000010b151f272f35383a3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f45525e6b7885919eabb8c4d1d2c6b9ac9f9386796c6053463f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3a39352f281f160c01000000000000000000000000000000000000000000000000000000000000000000000a141d2730394149505a62696e787f868e93999fa3aaacb2b6b9bbc0c1c3c5c6c9cfc8c9c9c8d0cbc7c5c4c2c0beb9b8b4aeaca8a09d96918a827b716c605c554c433a32281e140a00000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000c18242f394854606b7784919eabb5c0c7baaea3998b7f7265584e43372b1c110600000000000000000000000000000000000000000000000000000000000001010101010101010101000000000000000000000000000000000005111e2a36414d56626e7c86929fa6b0bbc4cdd6dedbd2cac2bbb3ada69f9c948f89847f7b76716d6865615e5654524d4846423b3a37312e2b26201d18120f0a0400000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275717e8792979fa7adb3b9bdc4c6cac6c5c4c3c4c5c6cacfced2d2d0d0cac6c5bebab4aea9a19e948f837b6f6a60584e453c31281d12080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000000000000000000000000001080d141a20272b30383f444c52575e616a6f767d848b92979fa3aaafb7bcc2c9cecdc8c1bdb5afaaa29f97918b847d766f6a615f57524c454039332d261d140a000000000005121e2a36424d576673808d9aa4afbbc8d4e0d3c7bbb0a69b8e81746b61564c41372d2518120b0300000000000000000000020a1117232934404b55606a74808d9aa4afbbc8d4e0d3c7baaea3988b7f7265554c4135291d11040000030f1c28333f4a546a7784909daab7c3d0d7cabeb1a4978b7e7164584b3e2f24180c03000000000000000002080c141c2328333f4a54606b7683909da9b6c3d0dcd5c8bbaea295887b6f6255483c2f22150900000000000000000000000007121d2731394045474b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b525e6b7885919eabb8c4d1d2c6b9ac9f9386796c60534b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4745403a31281d130700000000000000000000000000000000000000000000000000000000000000000000020b151e272f383f4450575f666d737b81878e92989ea0a8aaacafb5b5b6b8b9bebbbcbcbcbcbbbfbab8b7b5b4b3adababa39f9c96918b847e766e69615a514b433a312820160c0200000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000007121d2c38434f5966737f8c99a4afbbc7bfb4ab9d9083776a5f5347382e23170c00000000000000000000000000000000000000000000000000000407090a0e0e0e0e0e0e0e0e0e0e0c0b0906010000000000000000000000000714202d3946525e6874818e99a3aeb8c2cdd6dfdbd2c9c0b8b0a9a19e948f89827d77726e6964615e5654524c4846423b3a36312e2b26211e1a15100d0701000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82756c717d8590959ea1a9adb2b8babec2c4c5c7cbd1c9c9d0cac6c5c3c2bfbab8b3adaaa39f97928a827a6e6960584e463c332a1f160c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0000000000000000000000000000060c13191f252a32373e424a50565d60696e757c838a91969ea1a9aeb4bcc1c7cdcec9c3bcb8b0aba39f98928c857e78706c626058534d46413a342e27221b140b0200000000000714212d3a46535f697784909dacb6c0ccd8ddd0c3b7ab9f94887c6f62594f443a30251b13070100000000000000000000000000061118232f39434e58616e7b87939facb9c4cedad7cbbfb4aa9c8f8276675d5145392c2013060000000b17222d434f5c6976828f9ca9b5c2cfd8ccbfb2a5998c7f7266554b4035291e150c08020000000000000000020a1117222d38424f596773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f2215090000000000000000000000000c18242f39434b5153585858585858585858585858585858585858585858585858585858585e6b7885919eabb8c4d1d2c6b9ac9f9386796c60585858585858585858585858585858585858585858585858585858585853514b433a2f24180d0100000000000000000000000000000000000000000000000000000000000000000000030c151d262d333e454d545c60696e747c81868c9196999d9fa3aba8a9abadb3aeafafafafaeb4aeacaaa9a7a9a29e9b99928f8a847e79716c615f575045403930281f160e040000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000010f1b27323d4854616e7b87939facb9c5c6b8ab9f95887c6f62544a3f34281c10030000000000000000000000000000000000000000000000050b101416171b1b1b1b1b1b1b1b1b1b191816120d070000000000000000000003101c28343f4a54616e7b86929fabb4bfcad3dfddd3c9c0b7afa69f97928a827c76706b66615e5754524c4746413b3a36302d2a26211f1a15120e0904010000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275696b707b838b92979ea1a8abaeb4b5b7b9bbc0bcbcbcbbbfbab8b7b5b4aeaca9a29f98928d857e756d685f574e463d342a21180d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000000000000000000000000030a11171e242931363c434750545c60686d737b818790949ea0a8adb3babfc6cfd0cac4bdb9b1aba69e99928e868079726d666159544e46423b353028231d17110a020000000000000815222e3b4855616e7b8895a0acbec7d2ddd5c9bdb2a89c8f82766a5f53473e32281e13090000000000000000000000000000000007121d27313d47535f6976828f9ca8b2bdc9d5dcd1c5b9ac9f92867a6d6054473a2d211406000000061b2835424e5b6875818e9ba8b4c1cdd9cec2b5a89b8f8275675d51453a30271e19130f0a06030000000000000006111c262f404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f221509000000000000000000000004101d2935404b555d6065656565656565656565656565656565656565656565656565656565656b7885919eabb8c4d1d2c6b9ac9f9386796c656565656565656565656565656565656565656565656565656565656565605d554b4035291d11040000000000000000000000000000000000000000000000000000000000000000000000030b141b2227333c424a50565e616a6f747a7f84888c909299999b9d9ea1a9a2a2a3a3a2a2aaa39f9d9c9a9797928f8b86827d78716d67615a534d453e342e271e160d04000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000a16202d3a46525e6976828f9caab3bec8bcb1a79a8d8073665c5044382c1f130800000000000000000000000000000000000000000000080f161c202223282828282828282828282625221e18110a01000000000000000006121f2b3844505c6673808d99a3aebdc6d1dcdfd5cbc1b7afa59d948f857e766f6a63605954524d4746413b3936302d2a25211e1a14120f0906020000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82756960696e787e858c91969b9fa2aaa8aaacafb5afafafafb4aeacaaa8aaa29f9b97928d86807a716c605d564d453d342b22180f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000000000000000040a0c151c23282f353b42464e545a61666d727a80868e939a9fa6acb2b9bec5cbd1cbc5bebab2aca7a09d948f87817b736d67605c544f47433d363129241e18120b0600000000000000000c1926323f4c5965727f8c98a7b1bcd0d9ded2c5b9aca0968a7d7064584e43352c20160c0000000000000000000000000000000000010b151f2b37424d5764707d8a96a1acb9c5d2ded3c7baaea3998a7d7164574a3e2e23170c0000000c1825323f4b5865727e8b98a7b1bcc8d4d2c5b8ac9f92867a6d60564c4239302a251e1b13120f0b060502000000000a142734404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f221509000000000000000000000006131f2c3845515d676d7272727272727272727272727272727272727272727272727272727272727885919eabb8c4d1d2c6b9ac9f938679727272727272727272727272727272727272727272727272727272727272726d675d5145392c201306000000000000000000000000000000000000000000000000000000000000000000000000020a1117212a30383f444d52585f62686d72777b7f8386898c8e90929794959596969595949892918f8d8b8885827e7a75706c66605c555047423c3328231d150c0400000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000005121e2a36424d5764717e8a98a2aebac6c3b8ab9e9185796d6053463a3024190d01000000000000000000000000000000000000000008111a21272c2f303434343434343434343432312e29231b130a00000000000000000713202d3a4653606d7985929eabb4bfcfd8e2d9cdc3b9afa59d938e827a716c626058544f4746423b3935302d2a25201e1a14120e090602000000000000000407090a090806030000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569575e666c717a7f848a8f9298999b9d9fa3aba2a3a2a2aaa29f9d9b9998928f8a85807b746d68615a524c433c332b221910070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000000000000000002090e151b1e262e343a41454d535860626c70787f858d92989fa4acb0b8bdc3cacfcfc6bfbab3ada8a19e959089827c746e68605d55504a423e37322a261f19130c0700000000000000000005121e2a36424d576975828f9ca8b5c2cedbddd1c4b7aa9e9184786c6053463c31201a0e04000000000000000000000000000000000000030d1a26313c4653606c7884919eabb7c4d1ded7cbbfb4ab9a8d807467544a3f34281c100300000815212e3b4854616e7b8795a0acb8c7d1d3c7baaea3988b7e71685e544b433c36302b26201f1c1714110e090604000d1a2734404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000714202d3a4753606d797e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e85929fabb8c5d2d8cbbeb1a5988b7f7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e796d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000060f181e262e343b42464e53565e61666a6e73777a7c7f82838586888889898989888887858482817e7b7975716d6864605b54514b433e37312a2118120b030000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000020e1a25303b4753606d7985929fabb8c3c6b9ada1978a7d7063564c4135291d110500000000000000000000000000000000000000050f1a232b33383c3d414141414141414141413f3e3a352d251b1107000000000000000916222f3c4955626f7c8897a1adbdc6d1e1e0d4c8bcb1a79e938e81786d68615a544e48443d3a36302d2925201e1914120e0905020000000000000000050b101416171515120f0a04000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c545b60686d73787d8285898c8f9192999595969695959892908f8c8985827d79736e68615e565045413a312a21191007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000000001070d141a20262b30383f444c51575e616a6f767d848b92979fa3aaafb6bec2c8cecdc7c1bdb4aea9a29f96918a837d756f6a615e56514b443f38302b27201a140d0802000000000000000000000714202d3a46525e697885919eabb8c4d1ded7ccc0b5ab998d8073665b5044382b1f1208000000000000000000000000000000000000000009151f2b3844505b6674808d9aa7b3c0cfdadcd1c3b6a99d908376665c5044382c1f120600000714202d3a46525e697783909dabb5c0cbd6cbbfb4aa9e92857a6d665c554e46413a37322d2b2822201e1a1313100c071a2734404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a878b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b9298a2aebac6d3d8ccbfb3a79b918b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000060c151c232830363c43474c5254585f6266676d6f727576787a7b7b7c7c7c7c7b7b7a79777674716e6c6564605d5653504a454039302b261f180f0700000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000009141f2c3845515d6774818e9aa8b2bdc8beb3a99b8e8275685d5246392d20150a000000000000000000000000000000000000000b16212b353d44484a4e4e4e4e4e4e4e4e4e4e4c4a463f372d23180d010000000000000c1925323f4c5865727f8b98a9b3becfd8e2ded1c4b8aca0958e81776d665e565047433d38332d2a25201d1914110d08050200000000000000000000080f161c20222322211f1b150b060000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4a50565d60666d7075797c8082848687888989898888878584827f7c7975716d67615e56524c443e352f281f180f0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0000000000040c13181f252a32373e424a50555d60696e757c828a91969ea1a9aeb4bbc0c7d0cec8c2bbb7afaba39f97928c847e78706b625f58524d45403a342e261e1b150e09030000000000000000000000000815212e3b4854616e7b8797a1adb9c6d2dfd4c7bbafa499897d7063544a3f33281c0f030000000000000000000000000000000000000000030f1c28333f4a5464717e8a97a9b2bdc9d5dfd2c5b8ac9f9286796d6053463a2d201307000005121e2a36424d576673808c99a3afbbc5d0d0c6b9ada1978f81786d675f58524c47433c3938332d2d2a25201f1c18131a2734404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a879498989898989898989898989898989898989898989898989898989898989fa2aab3becad6dbcfc3b7aca39b98989898989898989898989898989898989898989898989898989898989894877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000030a11171f252a31373a4146474e5355555d606366686a676d6e6f6f70706f6f6e6d6c6569676462605b5354524c46443f38342e271e1a150e060000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000004101d2935404b55636f7c8996a0acb9c7c4b9ac9f92867a6d6154473c31261a0f00000000000000000000000000000000000004101c27333d474f54565b5b5b5b5b5b5b5b5b5b595751493f35291e1206000000000004101c2934404b556875828e9ba8b5c1cfdbdfd3c7bbb0a69d9083796d655c544c443e37322c27201e1a14110d08050100000000000000000000000008111a21272c2f302f2e2b262017110a02000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f444c52545c6064666d6f737577797b7b7c7c7c7c7b7a797775726f6d6664605c55524d46413a3229241e160d060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000070d161d242930363c43474f545c60676d737b81878f949da0a8adb3babfc6cccfc9c3bdb8b0aba59e99928d857f79716c656059534e46413b352f28231c150c0a0400000000000000000000000000000a1724313d4a5764707d8a97a9b3bec9d5dfd2c6b9ac9f93867a6d6054473a2d22170b000000000000000000000000000000000000000000000b17222d3b4854616e7b8796a1adb9c5d2dfd3c7baaea398887c6f6255493c2f2216090000020e1a25303b4855626e7b87929faab4becad6cabeb3a99e938f81796f6a615e56534e4946443f3b3a36302d2c28231f1c2734404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5abaeb3bcc5d0dbdfd4c9beb5aca7a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c141920262b3036393c4347484b515356595b555d60616262636362626161605b535a58555350494745413a38332d28231d150c0903000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000c18242f394854606b7784919eacb6c0c7baaea3998b7e7265584e43372b1c110600000000000000000000000000000000000714202c38444f5960636767676767676767676765625b51463a2e221609000000000006131f2c3845515c677884919eabb8c4d1dedcd0c3b7aa9e94897c6f675d534a423a322b27201c16110e0905010000000000000000000000000000050f1a232b33383c3d3c3a373127221b140b050000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4241454a5053545c60636668666d6e6e6f706f6f6e6d686a686662605c5453514b46413b3630282019130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0000000710191f282f353b42464e545961666d727a80868e939a9fa6acb2b9bec5cbd0cac4beb9b2aca69f9c938e86807a726d67605b534f47433c363029241d17110a03000000000000000000000000000000000c1926333f4c5966727f8c99a5b2bfcfdaddd0c3b6aa9d908377675d5145392c1c1106000000000000000000000000000000000000000000000614212d3a46535e697884919eabb8c4d1ded6cbbfb4aa978a7d7164574a3e3124170b0000000914212e3a47535f6a74818e98a2aebac2cbcfc5bbafa59e938f837c736d68625f585553504a4746423d3a38342e2c282334404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1adb1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b8babec5ced7e1e5dad0c7beb7b3b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1aea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e151a1e252a2d31373a3b404547494c4f4b51535555565656565555545350494e4b4846443f3a39352f2b28221c18120b030000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000007121d2c38434f5966737f8c9aa4afbbc8bfb4ab9d9083766a5f5347382e23170b00000000000000000000000000000000000916222f3c4854606b7074747474747474747474726d62574a3e3125180b00000000000714202d3a4753606d7a8696a1adb9c5d2dfd7cbc0b5ab9c8f82756b60554b41393028201b15100b050200000000000000000000000000000000000b16212b353d44484a4847433c332d261d170e0701000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4235383f44464a50535659545c6061626263636262615e565c595653514a4745403936302a251e160e080100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0000040f19222b313a41454d52585f626b70787f858d92989fa4acb0b8bdc3c9cfcbc6bfbab3ada8a09d949089817b736d68605c555049413d37312a251f18130c060000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4c0cddadacdc0b3a79a8d807467554c4135291d0a000000000000000000000000000000000000000000000005121e2a36424d576875828e9ba8b5c1cedbdcd0bfb2a5988c7f7265594c3f3226190c00000006121f2b37434e58616e7a85929fa6b0b9c3cccdc1b8afa59e959087807a746f6a6662605b5454524d494645403a38342e34404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1adbabebebebebebebebebebebebebebebebebebebebebebebebebebec5c6cad0d7e0e9ece2d9d0c9c3bfbebebebebebebebebebebebebebebebebebebebebebebebebebebebaaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f13191d20262b2e2f35393a3c3f4240454748484949494948484746443f413e3b3937332d2c29241f1c17110c0700000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000010f1b27323d4854616e7b87939facb9c5c6b8ab9f95887b6e62544a3f34281c1003000000000000000000000000000000000a1723303d4a5663707d818181818181818181817f7265594c3f3226190c00000000000814212e3b4754616e7a8794a8b2bdc9d5e0d4c7bbafa3998a7d7164594f43392f271e160e0a040000000000000000000000000000000000000004101c27333d474f545655534e443f382f292018120b030000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f42362e34383a3f4446494d4a51535455565656555554524c4f4c494644403a38342f2a251f19130c05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000a15202b343d434b51575e616a6f767d848b92979fa3aaafb6bec2c8cecfc7c0bbb4aea9a19e96918a837c756e69615d56514b443f382f2b262019140d070100000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd7cabeb1a4978b7e7164584b3e2f24190d0100000000000000000000000000000000000000000000020e1a25313f4c5966727f8c99a5b2bfccd8dacdc0b3a79a8d8074675a4d4134271a0e000000020f1a26313c46525e68727f8c949fa7b1bac4cccac1b7afa79f99928d86817c77736f6c6665615e575653514b4645403937404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1adbac7cbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbd2d3d6dbe1e9f2f4ebe2dad4cfcccbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbc7baaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d11151a1f2124292c2d30332f35393a3b3c3c3d3d3c3c3b3a3937332d312f2d2b2722201d19130f0b06000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000a16212d3a46535e6976828f9caab4bec8bcb1a7998d8073665c5044382b1f1308000000000000000000000000000000000c1926323f4c5965727f8c8e8e8e8e8e8e8e8e8e8276695c504336291d1000000000000815222f3b4855626e7b8895a1aebbcfdadfd2c5b9ac9f92867a6d6054473d31271d150c040000000000000000000000000000000000000000000714202c38444f596063625f585049413b3229231d150d0600000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f423623282b2e34383a3c4040444648484949494948474641423f3c3a38342e2c29231d19140d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00030f1b27323d464e555d60696e747c828a91959ea1a9aeb4bbc0c7d0cdc8c1bdb5afaaa29f97918b847d766f6a615f57524c454039332d261d1a150e0802000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0ddd6c9bcb0a396897d7063564a3d30231708000000000000000000000000000000000000000000000000091825323e4b5865717e8b98a4b1becbd7dbcec2b5a89b8f8275685c4f4235291c0f000000000915202a36414c56606d79829095a0a8b2bac1cbc9c1b9b1aba39f98928e8884807c7975716e696763605c5453514b46443f4d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1adbac7d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d2d3d7dce3eaf3f9efe7dfd9d4d1d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0c7baaea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050a0f1214181d2020232624292c2d2e2f2f30302f2f2e2e2d2b27222522201f1b1713110d08030000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000005121e2a36424d5764717e8b98a2aebac6c2b8ab9e9184796d6053463a3024190d010000000000000000000000000000000c1926323f4c5965727f8c989a9a9a9a9a9a9a8f8376695c504336291d100000000000091623303c4956636f7c8996a2afbcc9d5ddd0c4b7aa9d918477685d5245392b1f150b03000000000000000000000000000000000000000000000916222f3c4854606b706f6a605b534c443e342f271f17110a020000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c1f23282c2d302e34383a3b3b3c3d3c3c3b3a393630332f2d2c28231f1c18120e0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0006131f2b37434e5860676d737b81878f949da0a8adb3babfc6cccec9c3bcb8b0aba39f98928c857e78706c626058534d46413a342e27221b140b0a030000000000000000000000000000000000000000000005121f2c3845525f6b7885929eabb8c5d1ded5c8bbafa295887c6f6255493c2f2216090000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdcad7dccfc3b6a99c908376695d5043362a1d1000000000030d1925303b45515c676d7a839196a1a8b0bbc0c7cbc2bdb5aeaaa39f9a96918c8885827e7b7773706d6664605c545350494d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1adbac3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c5c7cbd1d9e1eaf1e7ddd5cdc8c4c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3baaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000206070d1013141619181d2020222223232323222221201f1b17181513120f0b06040100000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000020e1a25313b4753606d7985929fabb8c4c6b9ada1978a7d7063564c4135291d11040000000000000000000000000000000c1926323f4c5965727f8c98a5a7a7a7a7a79c8f8376695c504336291d1000000000000a1724303d4a5763707d8a96a3b0bdc9d6dccfc2b6a99c8f837669564c413529190d030000000000000000000000000000000000000000000008131f2b38434e5863707d7c726c655e564f4540393127221b140b0500000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c12171c1f202323282c2d2e2f2f30302f2f2e2d2a252623201f1c1813100c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000815222e3b4754606a6f7980868e939a9fa6acb1b9bec5cbd0cac4bdb9b1aba69e99928e868079726d66615a544e46423b353028231d17110a0200000000000000000000000000000000000000000000000004101c2834404b556c7985929facb8c5d2dfd7cbc0b5ab94887b6e6155483b2e2215080000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6ddd0c3b6aa9d9083776a5d5044372a1d11000000000008141e2834404b555d686e7b8491969ea6afb5bdc2c8c6bfbbb4aeaca8a09d9997928e8b8784807d7975706d6663605b53515a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1adb6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b9bbc0c7cfd9e3eadfd5cbc3bcb8b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104060709070d10131415151616161615151413120f0b06080605030000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000009141f2c3945515d6774818e9aa8b2bdc9beb2a99b8e8175685d5245392c2015090000000000000000000000000000000c1926323f4c5965727f8c98a5b2b4b4b4a99c8f8376695c504336291d1000000000000a1724303d4a5763707d8a96a3b0bdc9d6dbcec2b5a89b8f8275685c4f422f24190c00000000000000000000000000000000000000000000040e1a242e3b4754606a7783867f776e686159514b433c332d261d170e07000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c060c10121316181c1f202122232323222221201e1919161312100c07040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000916232f3c4956626f7c858d92989fa4acb0b8bdc3c9cfcbc5bebab2aca7a09d948f87817b736d67605c545047433d363129241e18120b06000000000000000000000000000000000000000000000000000006131f2c3845515c677986939facb9c6d2dfd3c7bbafa399877a6d6054473a2d2114070000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbc8d5ddd0c4b7aa9d9184776a5e5144372b1e110000000000020c18232e39434c565e696f7c848f949fa3abb0b8bcc3c8c6bfbab8b2acaaa9a19e9b9895908d8985827d7974706c65605d556773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacafb5bdc7d1dce4d9cdc3b9b1acaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa194877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070809090a0a090908070605030000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000004101d2935404b55636f7c8996a0acb9c7c4b9ac9f92867a6d6054473c31261a0f0000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc1b6a99c8f8376695c504336291d1000000000000a1623303d495663707c8996a3afbccfdadccfc2b6a99c8f837669544a3f34281c10030000000000000000000000000000000000000000030c16202b37424d57626f7c89928b827a706b605c554e443f382f29201910070000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f00030607070c101213151516161616151413110d08090706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a979fa2aaafb6bec2c8cecfc6bfbab3ada8a19e959089827c746e69605d55504a423e37322a261f19130c07000000000000000000000000000000000000000000000000000000000713202d3a4653606d798699a4afbbc7d4dfd2c5b9ac9f928679675d5145392c2013060000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4ded1c4b7ab9e9184786b5e5145382b1e1200000000000007121d27303a444d575f6a6f7a828c92999fa6acb1b8bcc2c5c7c3bdb8b7b3adaba8a7a09d9a98928e8a85817c78726d67606773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a87949d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9fa3abb5c0cbd7e0d4c8bcb1a7a09d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d94877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000c18242f394653606c7884919eacb6c0c7baaea3988b7e7265584e43372b1c110600000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000916222f3c4955626f7c8895a9b3bec9d5ddd1c4b7aa9e918477665c5044382c1f130800000000000000000000000000000000000000020b151e28323a47535f6975818e9b948f857d746d675f585049413b322a22190e0400000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000406070808090a0909080707050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a9aeb4bbc0c7d0d4c9c1bdb4aea9a29f96918a837d756f6a615e56514b443f38302b27201a140d080200000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0b5c0cbd7ded2c5b8ab9f928578665b5044382b1f12060000000000000000000000000000000000000000000000000714212e3a4754616d7a8794a0adbac7d3ded1c5b8ab9e9285786b5f5245382c1f12000000000000000b151e28323b454e585f686d777f8790949da0a7abb1b8b9bdc4c5c5c4beb9b8b5b1acaaaaa29f9b97928e89847f79726d6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a879090909090909090909090909090909090909090909090909090909090909299a3afbbc7d3ded1c4b8aca09590909090909090909090909090909090909090909090909090909090909090877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000407090a131313131313131313131313131313100f0d09050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000007121f2b3744505b65737f8c9aa4afbbc8bfb4aa9d9083766a5f5347382e23170b00000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000714212e3a4754616d7a8797a1adb9c6d2dfd2c5b9ac9f9286796d6053463a30251910060000000000000000000000000000000000040b141d27303a44505a626e7b86929f9e97928a80796f6a605b534c443c342a20150a00000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bfc6ccd2d5cbc1b7afaba39f97928c847e78706b625f58524d45403a342e261e1b150e0903000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798699a3afbbc7d3dfd2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000815222e3b4855616e7b8894a1aebbc7d4ded1c4b7ab9e9184786b5e5145382b1e1200000000000000030c162029333c464e565d656c727c838990959d9fa7abadb2b7b9bdc1c5c6c5c1bcb8b7b4aeaca9a29f9a96918b857f797073808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000714212e3a4754616d7a8383838383838383838383838383838383838383838383838383838383838387929facb9c5d2ddd0c3b6aa9d8983838383838383838383838383838383838383838383838383838383838383837a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000000050b101416172020202020202020202020202020201c1c1915100a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7b87939facb9c5c6b8ab9f95887b6e62544a3f34281c1003000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000713202d3946525e687885929eabb8c5d1ded3c7baaea3988a7d7063564c41362a22181008020000000000000000000000000001080d161d262e39434c56616c76828f99a3a9a19e928d837c726c655e564e463c32261b0f03000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdd0d8d9cdc3b9afa59e99928d857f79716c656059534e46423b352f28231c150c0a0400000000000000000000000000000000000000000000000000000000000000000006121f2c3844515c667986929facb9c5d2dfd4c7bbafa499877a6d6154473a2e2114070000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcc8d5ddd0c4b7aa9d9184776a5e5144372b1e110000000000000000040e17212a343c444c535b606a6f767d838a9095999ea1a8aaacb2b4b8b9bec2c5c5c3bfbab8b3adaba8a09e97928c847d73808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000713202d3946525e686d7777777777777777777777777777777777777777777777777777777777777885919eabb8c4d1d2c6b9ac9f938679777777777777777777777777777777777777777777777777777777777777776e685e5246392d20140700000000000000000000000000000000000000000000000000000000000000000810161c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000b17222d3846535e6976838f9caab4bfc8bcb1a7998d8073665c5044382b1f1308000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000005111d2a36414c566976838f9ca9b6c2cfdad7cbbfb4aa9b8e8175685e52463e342a2219140e090502000000000000000105080d13191f282f38404b555e68717e8a949fabb3ada49d9590867f776e685f584e43372b1f1306000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdcad7d4c8bcb1a79e938e86807a726d67605b534f47433c363029241d17110a03000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a5f6c7885929fabb8c5d2ded7ccc0b5ab94887b6e6155483b2e2215080000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6ddd0c3b6aa9d9083776a5d5044372a1d11000000000000000000050f18222a323a4149505860626b70787e83888d91969a9ea0a8a8abadb3b6b9babfc3c5c5bebab8b2aca9a19e96918880808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f221509000000000000000000000005111d2935414c565e616a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6b7885919eabb8c4d1d2c6b9ac9f9386796c6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a615e564d41362a1e11050000000000000000000000000000000000000000000000000000000000000008111a21282c2f303939393939393939393939393939393635322d261e160c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000006111b2a36424d5764717e8b98a2aebac6c2b8ab9e9184796d6053463a2f24190d010000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000010d192530404d596673808c99a9b3bec9d5dcd1c5b8ac9f92867a6d61594f463c342a251e1a14120e090b0a0a0a0b080d1113191e2429313a4149515c676d7a85919ea6b0bdb9aea7a098928b827a6f6a5f54473b2e221508000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdcad7d1c4b8aca0958e817b746d68605c555049413d37312a251f18130c0600000000000000000000000000000000000000000000000000000000000000000000000000000c18232e45525e6b7885919eabb8c4d1deddd2bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad7dccfc3b6a99c908376695d5043362a1d100000000000000000000006101820282f383f444e545961656c71767b8084898e9196989b9ea1a9a9acaeb4b7b8bcc3c4c3bdb9b3ada8a09a938c85929fabb8c5d2ded5c8bbaea295887b6f6255483c2f2215090000000000000000000000010d1925303a444c52545d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5e6b7885919eabb8c4d1d2c6b9ac9f9386796c605d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d54524d443b3025190e0200000000000000000000000000000000000000000000000000000000000005101a232c33383c3d46464646464646464646464646464643413e3830281e0e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000e1a25313b4753606d7a85929facb8c4c5b9ada196897d7063564c4135291d11040000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000081623303c4956636f7c8997a1adb9c6d2dfd3c7baaea2988e81756b61584e463e36302a26211e1a19181716171818191e20252a2f353c434b535b606d79829097a1adb8c2c0b9b1aaa39f948f857c6f6255493c2f221609000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdcad7d0c3b6aa9d90837b746d68605c555049413d373129251e18120b06000000000000000000000000000000000000000000000000000000000000000000000000000000071d2a3744505d6a7783909daab6c3d0ddd6c9bdb0a3968a7d7063574a3d302417080000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1becbd8dbcec1b4a89b8e8175685b4e4235281b0f0000000000000000000000060e161d262d333d43474f535b60646a6e73787d8184888b8e9297999c9fa3aaaaacb1b6b8bcc2c5beb9b2aca49f989298a2aebac6d3dfd5c8bbaea295887b6f6255483c2f22150900000000000000000000000008131e28323a414647505050505050505050505050505050505050505050505050505050525e6b7885919eabb8c4d1d2c6b9ac9f9386796c6053505050505050505050505050505050505050505050505050505050504746413b32291f1408000000000000000000000000000000000000000000000000000000000000000b16212c353e44484a5353535353535353535353535353534f4e49423a3020170d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000914202c3945515d6774818e9ba8b2bdc9bdb2a99b8e8175685d5245392c2015090000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000713202d3a4653606d7985929eabb8c1d0d9d6cabfb4aa9e938a7d706a5f585046413b36312d2a2626252423242425252a2d30363a41454d555d656c75818e949fa9b2becacbc3bcb4aea69f92867a6e6154473b2e211408000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdcad7d1c4b8aca0959087807a726d67605b534f47423c353028231d17110a02000000000000000000000000000000000000000000000000000000000000000000000000020f1c2935424f5c6875828f9ba8b5c2cedbd7cbbeb1a4988b7e7165584b3e3025190e020000000000000000000000000000000000000000000003101c28343f4a546673808c99a6b3bfccd9d9ccc0b3a6998d8073665a4d4033271a0d000000000000000000000000040b141b222732373d41495053585f62666c7074777b7e8185888c8f92989a9da0a7a9abb1b8b9bec4beb6afaaa29fa2aab3becad6e2d5c8bbaea295887b6f6255483c2f221509000000000000000000000000020c1620283035393a444444444444444444444444444444444444444444444444444445525e6b7885919eabb8c4d1d2c6b9ac9f9386796c6053464444444444444444444444444444444444444444444444444444443b3936302920170d0200000000000000000000000000000000000000000000000000000000000004101c28333e474f55576060606060606060606060606060605c5a544c4232291f1409000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000004101d2935404b5563707c8996a0acb9c7c4b8ac9f92867a6d6054473c31261a0e0000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000006121f2c3844505c6673808d9aa6b0bec7d2dbd0c6bcafa59e92857c6f6a615a524c46423b3a3631323131303031323036393a41464c51575f676d77808d939ea6b0bbc4cfd5cfc6bbaea3998d8074685e5246392d201407000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdcadcd4c8bcb1a7a099928d857f79716c656059534d46413a342e27221b140b090300000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0d2dddacec1b4a79b8e817468564c41362a1e11050000000000000000000000000000000000000000000006121f2b3844505c6676828f9ca9b5c2cfdcd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000020a111720272b2f383f44464e53545b606367696e7175787c7f8286898d9095989d9fa7abadb3b8bcc0bbb3aeabaeb3bcc5d0dbe6d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000040e161e25292d2e373737373737373737373737373737373737373737373737373845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c6053463937373737373737373737373737373737373737373737373737372e2d2a251f170e05000000000000000000000000000000000000000000000000000000000000000714202c38444f5961636c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69665e54443b3025190e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000010d18242f394653606c7884919eacb6c0c7baaea3988b7e7165574d42372b1c110600000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000003101c28343f4a54626e7b88949eacb6c0ccd8d8cec1b9ada19792857c706c615e56534d484642403f3e3d3d3d3e3f404146474c52555d60696e79818d929da5afb8c2cdd6d7cbc0b5ab9f92867b6e61564c41362a1e1105000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdcbd1d9cdc3b9b1aba39f97928c847e786f6b615f57524c454039332d261d1a150d08020000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98acb6c0ccd8ddd1c4b7aa9e918477685e5246392d201407000000000000000000000000000000000000000000000713202d3a4653606d7985929fabb8c5d2ded5c9beb3a9968a7d7063574a3d3024170a000000000000000000000000050c13191d202120262d33373c43474a505356575f6165656c6f72767a7d8084878b9095999ea1a9acb1b9bdbebab8babec5ced7e1e1d5c8bbaea295887b6f6255483c2f2215090000000000000000000000000000040c13191d20212a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a21201e19140d0500000000000000000000000000000000000000000000000000000000000000000916232f3c4855616b70797979797979797979797979797979767066564d42362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000007121f2b3744505b6573808c9aa4afbbc8bfb4aa9d908376695f5347382d22170b00000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000c17232e3847535f6a75828f9aa4afbbc5cfdad6cabeb3a9a19792857e756e68615f5755534d4d4c4b4a494a4b4b4d4c5254565e61676d737b838f939da4aeb7c1cad4d8cec6bbafa3998e8174695e53443b3025190d01000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b4bbc0c7cfd4cbc3bdb5aea9a29f96918a837c756e69615e56514b443f382f2b261f19130c0700000000000000000000000000000000000000000000000000000000000000000a1623303d495663707d899aa4afbbc8d4ded2c5b8aca096877a6e6154473b2f24180c000000000000000000000000000000000000000000000915222f3c4855626f7c8898a2aebac6d3dfd2c6b9ada197877b6e6154483b2e2115080000000000000000000000050e161e252a2d2e2d2a25272b3137383f44464a4d5355535b606266676d7073777b7f83888d92979da0a7acb2bbc0c5c6cad0d7e0e9e1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000002080d1113141d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1414110e0802000000000000000000000000000000000000000000000000000000000000000005111d2a36414c5663707d8686868686868686868686868686868276695e52463a2d20150a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7b87939facb9c6c6b7ab9f95887b6e62544a3f33281c0f03000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000006111c2b37434e58626f7c87939fa9b3becad6dacfc5bbb3a9a197928a817a736e6964615f57595958575657575859565e6164686d727a808690959ea5aeb6c0c9d3dcd0c6bcb1a79f92877b6e62574d4232291e140800000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a2aaafb5bdc2c8cecfc6bfbbb3ada8a19e959089827b746d68605c555049413d373129251e18120b060000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86939facb9c6d2dfd4c8bdb2a8978a7d7164554b4035291b1106000000000000000000000000000000000000000004111d2935414c5665727e8b98aab4becad6ded1c5b8ab9e928578695e53463a2d21140700000000000000000000030c1620283036393a3936302820262b2d3338393d42464849505355555d606367696e72767b80858b90959ea1a8afb6bec5ced7e2e9f2e1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000105070711111111111111111111111111111111111111111111121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013111111111111111111111111111111111111111111111108070502000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e6875828f9393939393939393939393939393877b6e6154473c32261b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000b17222d3846535f6976838f9caab4bfc7bcb1a7998d8073665b5044382b1f1308000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000f1a26313c47545f6a75818e97a1adb9c0cad4d7cdc5bbb3a9a29e938e85807b75716e696866656464636364656668686d71757a7f858d9299a0a7afb8c0c8d2dbd6cbbfb4aa9f958c8073695f53453b3120170d0200000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a92989fa3abb0b8bcc3c9cfcbc5bebab2aca79f9d938f86807a726d67605b534f47423c353028231d17110a02000000000000000000000000000000000000000000000000000000000613202c3945525d687784919daab7c4d1dcd9cec0b4a79a8d8074675d5145382d22170b00000000000000000000000000000000000000000a13202c3945525d6875818e9ba8b4c1d0dbdbcfc2b5a89c8f827569574d42362a1e1205000000000000000000000a151e28323a41464746413a322c231c22282b2d31363a3b3f4446494b515356575e6165696e73797e838a91969fa4acb4bcc5d0d9e3eee1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000000000004040404040404040404040404040404040404040405121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060404040404040404040404040404040404040404040400000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929f9f9f9f9f9f9f9f9f9f9f9fa4998c7f7265584e43372b1c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000006111b2a36424d5764717e8b98a2aebac6c2b8ab9e9184786c6053463a2f24190d010000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000915202b37434e58616d7a85929ea4aeb8c2cbd4d7cdc5bbb3ada59e97928d87827e7b787573727170707071727375787a7d82868c92979fa3abb1b9c1cad2dad2c9c1baaea3989083786d60574d4233291f0e050000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000714202d3a4753606d797f868e92999ea6acb1b9bec4cad0cac4bdb9b1aba59e99928d857f79716c656059534d46413a342e27221b140b0903000000000000000000000000000000000000000000000000000004111d2935414c566874818e9babb5c0cbd7ded1c5b8ab9e9285796d6053493f33271c110600000000000000000000000000000000000006111c27333f4953606d7a86929facb8c5d2dfd5c9beb3a9998c807366594d4031251a0e0200000000000000000006111c26303a444c5254524c443e352c21171c1f20262a2d2d3337393c4045474a4d5254575f62676d71787e848d939aa2aab4bdc7d2dde8e1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5865727f8b99a3aeacacacacacacacacacb5ab9d9084776a5f5347382e23170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000e1a26313b4753606d7a85929facb8c4c5b9ada196897d7063564c4135291d11040000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000030f1b26323c46525e68717e8a929da6b0b9c2cbd6d7cdc5beb9afa9a29f99938f8a888582807f7e7d7c7d7e7e808284878a8f92999ea1a9aeb4bdc3cbd3dbd6c9c1b7afa59f92867c6e665c50453c3121170d000000000000000713202d3a4653606d798693a0acb9c6d3d6cfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0006131f2c3945515d676d737a81878f949da0a7adb2babfc6cccec9c2bcb8afaba39f97928c847e786f6b615f57524c454039332d261d1a150d0802000000000000000000000000000000000000000000000000010d19242f3e4b5764717e8a99a3afbbc7d3dfd2c6b9ada2978b7e71655b5044382d22170d0300000000000000000000000000000000030c17222d3744505b65727f8c98a2aebac6d3dfd2c6b9ada197897c6f6356493c30231609000000000000000000000c17232e38424c565e615e564f473e3329201712131a1e2122272b2d2f35393a3d4246484d53555c60656c717980889298a2abb5c0ccd7e3e1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b47535f6a7783909dabb4bfb9b9b9b9b9b9b9b9b8aca095887c6f62544a3f34281c1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000914202c3945515d6774818e9ba8b2bdc9bdb2a89b8e8175685d5245392c2015090000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000a15202a36414c56616c74808d949fa7b0b9c1cad0d7cfcac1bbb3adaba49f9c9797918f8c8c8b8a898a8a8b8c8f9196979c9fa3abadb3babfc6cfd5d7d0cac1b7afa59d938b7f726a5f544a3f332a200f05000000000000000713202d3a4653606d798693a0acb9c6c9c9c9c2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0004101d2935404b555d60686e747c828990959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea9a29f96918a837c756e69615e56514b443f382f2b261f19130c070000000000000000000000000000000000000000000000000814212d3a4754606d7a86929facb9c5d0dbd6cabeb3a99d9184786c60544a3f33281f150c040000000000000000000000000000030c151e28333f4a54606c7884919eaab4bfcad6ded1c5b8ab9e9285796c605346392d20130600000000000000000003101c28343f4a545e686d6861594f453b32292117110e1214171b1f2024292c2d30363a3c42474b51535b60676d737d869299a4afbbc7d4e0e1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b54626f7c8895a0acbdc6d1c6c6c6c6c6c6c8bcb1a79a8d8073665c5044382b1f1307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000004111d2935404b5563707d8996a1acb9c5c4b8ac9f92867a6d6054473c31261a0e0000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000040d1925303a44505a606d78828f959fa6afbabec5ced6d6cdc5bebab5afaca8a9a19e9b9998979796969798999b9ea1a8a8acafb5b9bec5cbd1d8d6cec6bfbaafa59e938e81776c60584e42382e21180e00000000000000000713202d3a4653606d798693a0acb9bdbdbdbdbdb5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000c18242f39434b51565e616a6f767d838b91979fa2aaafb5bdc2c8cecfc6bfbbb3ada8a19e959089827b746d68605c555049413d373129251e18120b06000000000000000000000000000000000000000000000713202c3945525d6876828f9caab4bfcad6dbcfc5b8aca095897d70665b50443c31271e160d04000000000000000000000000030c151e26303844505b66707d8a96a0acbcc6d0dbd5c9bdb2a89b8e8174665b5044382b1f12060000000000000000020b19222c3844505c666d7a706b61574d443b3328221c140b080b0f1213181d1f20252a2d31373940454950555c606b707d87939facb9c6d2dfe1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6674808d9aa7b1bccfd8d2d2d2d2d2d9cec3b8ab9e9185796d6053463a2f24180d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000010d18242f3a4653606c7884919eabb7c2c7baaea2988b7e7165574d42372b1c110600000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000008131e29323e44505c666d7a8390949ea5aeb4bcc2cbd0d6cfcac7c0bbb9b5b3adaba8a6a5a4a3a3a3a4a5a6a8abadb2b5b9bbc0c7c9cfd7d6d0cac2bcb4aea59e938e81786c655b50463c30261c0f0600000000000000000713202d3a4653606d798693a0acb0b0b0b0b0b0b0a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000007121d27313940454c52585f626b70787e848c92989fa4abb0b8bcc3c9cfcbc5bebab2aca79f9d938f86807a726d67605b534f47423c353028231d17110a02000000000000000000000000000000000000000004111d2935414c5665727e8b98a2aebac6d3dfd4c8bcb1a79c9083786c60584e433930281f160e0904000000000000000003090d151e273038424e58606c7883909ca8b2bdced8dfd2c5b9ada1968a7d7064544a3f33281c0f0300000000000000000a141d2a36414c56606d78847d70695e564d453c332d261d19140e0905070c1013141a1e20262b2f34383f444b5159616b74818e9aa7b4c1cddae1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929eabb8c3cdddd8d4d2d1d2d5d2c6b9ada197897d7063554b4135291d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000007131f2b3744505b6573808c99a6b0bbc7bfb4aa9c908376695f5347382d22170b00000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000000020d172028343f4a545d686d79828e939fa2aab1babfc6cacfd5d2ccc7c6c2beb9b8b5b3b2b1b0afb0b1b1b3b5b7b9bdc2c5c7cbd1d5d5cfcac6bfbab1aaa29f938e81786c665b53493f332a1e150a0000000000000000000713202d3a4653606d798693a0a3a3a3a3a3a3a3a3a39c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0000010b151f272f353b41464e535960666c71797f868e93999fa6acb1b9bec4cad0cac4bdb9b1aba59e99928d857f79716c656059534d46413a342e27221b140b0903000000000000000000000000000000000000010d19242f3a4754606d7a86929facb8c1cfd9d9cec3b7ab9f948c7f726a5f554b433a3128201a15100c0707060607060b10141a1f273039424a545f6a727f8c949fabbac4cee0d7cbc0b5ab9e9184796d6053463a2d22170b000000000000000006111b262f3846525e68727f8c857b6e685e574e443f382f2a251e1a14100c070606090e12151a1d23292d333940454f5964707d8a97a3b0bdcad6e1d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c5664707d8a97a1adb9c6d5d2ccc8c6c4c6c9cfc9beb3a99b8e8175675d5145392c2014090000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7b88949fabb7c6c6b7ab9f94887b6e62544a3f33281c0f03000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000050e17232e38424c565d676d79818a92989fa7aeb4b9bec5c9ced3d4d2cfc9c6c4c2bfbfbebdbcbdbdbebfc2c4c5c9cfd2d3d4d1cfc9c5bebab4aea79f98928b81786d665b544a41382d21180c030000000000000000000713202d3a4653606d79869396969696969696969696968f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000000030d151d242930363c43474f545b60676d737b81878f949da0a7adb2babfc6cccec9c2bcb8afaba39f97928c847e786f6b615f57524c454039332d261d1a150d080200000000000000000000000000000000000813202c3945515d6774818d9aa5afbdc7d1dcd3c7bcb0a69f92867c6f675c554b433a322b261f1c18151313131315171c1f252a3139424b545c666e7c86929fa6b0bcccd5ded3c7bbafa3998c7f73665c5044382c1c110600000000000000000b17222d38414e58616e7a859290837a6e696058504a423c36302a261f1c1813120f0b060d090e12181b22272f343e4a5763707d8a96a3b0bdc9d6e1d5c9beb3a994877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e6875828f9ca9b3becad0c7c0bbb9b8b9bec4cdc4b8ac9f92867a6d6054473b31251a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000b17222d3846535f697683909caab4bfc7bcb0a6998c8073665b5044382b1f1308000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000000000006111c26303a444c555d676d757e8690959fa3aaadb3b9bdc4c6cad0d2d3d2d1cecccbcacac9c9cacbccced1d2d2d1cfcec8c5c3beb9b3adaaa29f9590867e756d665c544a42382f261b0f06000000000000000000000713202d3a4653606d79868a8a8a8a8a8a8a8a8a8a8a8a8a8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0a00000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000030b12181e252a31373d424a50555d60686e747c828990959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea9a29f96918a837c756e69615e56514b443f382f2b261f19130c070000000000000000000000000000000004111d2935414c55626f7c88939eabb5c0cbd7d8cdc2baaea3999083796d675d554c443e37312c282321201f1f202123282b30363d434b545c666d78839098a3aeb9c2cdded6cabfb4aa9f92867b6e61544a3f34281c0a0000000000000000030f1b27333f4953606a74818e989590847b6f6a605b544e46413b36312c2923201f1c1719191a1a1b1a1e212429333f4a5465717e8b98a4b1becbd7dfd2c6b9ada197867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a86929facb9c5cfc7beb6afacabadb3bbc4c7baaea2988b7e7164574d42362a1e120500000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000000006111b2a36424d5765717e8b98a2aebac6c2b7ab9e9184786c6053463a2f24190d010000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000a151e28323a434c555d606c717b838c92989ea2a9acb2b8babfc2c5c6cad0cccdcececfcfcecdcdcccbcfcac6c5c3c1bcb8b7b2ada9a29f98928c837b716c605c544a42382f261d140a00000000000000000000000613202d394653606c777d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4231261b0f02000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000000000001070c141920262b2f383f444b51565e616a6f767d838b91979fa2aaafb5bdc2c8cecfc6bfbbb3ada8a19e959089827b746d68605c555049413d373129251e18120b060000000000000000000000000000010d19242f3a47535f6a75828f99a3afbbc5cfdad7cbbfb4aba0958f81796d675d564f47423c38342e2e2d2c2c2d2e2e34383b42464f555d666d78818e959faab4bfcbd4dbd3c7baaea2988d8174695e5242382e23170c00000000000000030e18212b3744505b656f7c87939fa09691847c726c665f58524c46423b38342f2d2b28222626272727252a2d30353c44505b6673808d9aa6b3c0cdd9ded1c4b8ab9e918578675d5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5865727f8c99a3afbbc7ccc0b6aca49f9ea1a9b3bec9bfb4aa9c8f8276695e53463a2d21150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000e1a26313b4754606d7a86929facb8c4c5b9ada196897d7063554c4135291d11040000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000000000000030c162028313a434b515a61696e7880868c92979ea1a8acaeb4b5b8babebebfc0c1c1c2c2c1c1c0bfbfbebeb9b8b6b4b1acaaa9a19e97928c8680786e69625a504a42382f261d140b02000000000000000000000005121f2b3744505b656c70707070707070707070707070706f6a6054473b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569584e43372b1e1308000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7d8ccbfb2a5998c7f7266594c3f3326190c0000000000000002080e151b1d262d333940454d52585f626b70787e848c92989fa4abb0b8bcc3c9cfcbc5bebab2aca79f9d938f86807a726d67605b534f47423c353028231d17110a020000000000000000000000000008131e2b37434e58626e7c87929fa9b3becad6dcd1c6bdb1a79e938f82796d686159534d4644403c3b3a38383a3b3c3f44464d525960676d78818e939ea7b1bcc6d0ddd5c9bdb2a89f92867b6e61574d4230261c1106000000000000000915202935414c56606c7883909aa4a8a09691877f786e6a615e56534d4745403b3938332d333333343431363a3b41464e57606c7884919eabb7c4d1dedccfc3b6a99c90837669554b4035291d100400000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4754606a7784919dabb5c0cbc8bbafa49a939197a1adb9c6c6b9ac9f93877b6e6154483c32271b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000914202c3945515d6775818e9ba8b2bdc9bdb2a89b8e8175675d5145392c2014090000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000040d161f28313a404550575f666d737a80858b91969b9fa2aaa9abadb3b1b3b4b4b5b5b5b4b4b3b3b2b1b3adaba9a7a7a09d9997918c85807a736d665f5750443f3830261d140b02000000000000000000000000030f1b27333f49535b6063636363636363636363636363636260584e43372b1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dcd0c3b6a99d9083766a5f53473a3025190e050000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8d8ccbfb2a5998c7f7266594c3f3326190c000000000000000000030a0b141c22282f353b41464e535960666d717980868e93999fa6acb1b9bec4cad0cac4bdb9b1aba59e99928d857f79716c656059534d46413a342e27221b140b09030000000000000000000000010f1b26313c47535f6a74818e97a1adb9c1cbd5d8cfc3b9afa59e948f837a706b625f5753514a49484645454648494a5053575e616b7079828f939ea5afb9c3ced8d4cbc3b9ada1968d8073695e52453b301e150a00000000000000020f1a26313945525d68717e8b959facb2a8a199928c827c746e68615f5753514b4846443f414040404041424246484c52585f69707d8a96a1adb9c5d2dfd6cabeb3a99a8d8074675a4d412f24180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2934404b55626f7c8995a0acbdc7d1c6b9ac9f938885919eabb8c4c8bbafa49a8c7f7266584e43372b1c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000004111d2935414b5563707d8996a1acb9c5c4b8ac9f92867a6d6054473c31261a0e0000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000000040d161f282f353e454d545c60686e73797f848a8f9298999c9fa2a9a4a6a7a7a8a9a8a8a7a6a6a5a4a9a19e9c9a9895908c89847f7a736d68605c544d453f342e261e140b0200000000000000000000000000000b17222d3841495053575757575757575757575757575756544e463d32271b0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ddd1c4b8ab9f95887c6f62564c41352920160d040000000000000000000000000005111d2935414c566773808d9aa6b3c0cdd9d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000020a11171d242930363c43474f545c60676d737b81878f949da0a7adb3babfc6cccec9c2bcb8afaba39f97928c847e786f6b615f57524c454039332d261d1a150d0802000000000000000000000a15202b37434e58616e7a85929ea5afb9c3cdd6d5cbc1b7afa69f9590847d756e6963605c545654535151535456545c6063696e757d838f949ea5afb7c1cbd4d6ccc3b9aea49e91847a6d60564d4233291f0c030000000000000006121f2b37434e58606d7a85929ea7b1bab2aba39f948f87817a736e6964605c555553504a4d4c4c4d4d4e4f4d5354565d616a6f7b85929ea8b2bdc9d5dfd2c6b9ada297897d706356493d302316070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6774818d9aa7b1bccfd1c4b8ab9e9184808c99a6b3bfccc0b6ac9d9184776a605447382e23170c000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3a4653606c7884919eabb7c2c7baaea2988b7e7165574d42372b1b110600000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000000000000000000040d161d2429333b424a50565e61676d72787e8285898d8f92979698999a9b9b9c9c9b9a9a999898969792908e8b8783807c78726d67615e56504a423c3328231c140c0200000000000000000000000000000006111b262f383f44464a4a4a4a4a4a4a4a4a4a4a4a4a4a4947433d342b20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e0d4c8bcb1a79a8d8174685e52463d32281f160d060000000000000000000000000b13202d3946525d687683909da9b6c3d0dcd7cabeb1a4978b7e7164584b3e3125180b00000000000000000000000000060b12181f252a31373d424a50555d60696e747c828990959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea9a29f96918a837c756e69615e56514b443f382f2b261f19130c04000000000000000000040f1a26313c46525e68717e8a939ea7b1bbc5ced7d3c9c1b8b0a79f96918a827b74706d66646261605c5c60616264666d70747b818990959fa6afb7c1c9d2d7cec4bab1a79d92897d70675d51443b3020170d00000000000000000814212e3a47535f6a73808d97a1adb9c2bdb5aea69f99928d86807b75706d676462605b545a59595a5a5a5c575e6164686d727c839197a1adbac4cfdad9cfc5b8ab9e9285796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929fabb8c3ced0c3b6a99d90837e8b98a4b1becfc7b8aca095887c6f62544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000007131f2b3844505b6673808c99a6b0bcc7bfb4aa9c908376695f5346382d22170b00000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000000000040c1318212930383f444c52555d60666d7175797d80828588898b8c8d8e8e8f8f8e8e8d8c8c8b89878583817e7b77736f6c65605d55524c443f38302a2117110a0200000000000000000000000000000000000a141d262d3337393d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b37322b22190f0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e4d8cdc2b8ac9f92867a6d61594f443a31281f170f0a040000000000000000030b121c27303a4754616d7a86929facb9c5d2dfd7ccc0b5ab968a7d7063574a3d3024170a000000000000000000000000000001070d141920262b30383f444b51565e616a6f767d838b91979fa2aaafb5bdc2c8cecfc6bfbbb3ada8a19e959089827b746d68605c555049413d373129251e160e040000000000000000000a15202a36414c56616c75818e95a0a9b3bcc5ced6d3cac2b9b1a8a09e948f86817d7974716f6e6d66676d6e6f7174797c80868e939da0a7b0b8c1c9d2d6cdc5bcb2a89f958d81746b60554c4132291f0e0500000000000000000815222f3b4855626e7b87929fa9b3becbc6bfbbb0aba39f98928d87827d7975716e6c6668676666666767696a696e71747a7f869195a0a9b3beccd6dcd1c7bdb1a79b8e8174665c5044382c1f12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4cecec6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5764717e8a97a2adbac6d5cec1b5a89b8e817d8996a8b2bdc9c8bdb1a89a8d8074665c5044382c1f13080000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54616e7b88949fabb7c6c6b7ab9f94887b6e6153493f33271b0f03000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000000000000000000000001070f181e262e343b41464b51545c6064666d707376797b7c7e808181828282818180807f7e7c7a787674726e696662605b53514b46413a342e261e180f0600000000000000000000000000000000000000020b141b22272b2d30303030303030303030303030302f2e2b27201910070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfdfd3c6baaea2988e81746b60564c433a3129211b15100c0707060406070a0c151c232e39424f5964717e8a99a3afbbc7d4e0d4c7bbafa499887b6e6255483b2f2215080000000000000000000000000000000002080e151b1e262e343940454d52585f626b70787e858c92989fa4abb0b8bcc3c9cfcbc5bebab2aca79f9d938f86807a726d67605b534f47423c35302820160c020000000000000000030d1925303b44505a606d79839097a1aab3bcc5cdd5d4cbc2bab2aca69e99928e8985817e7c7b797878797b7c7e8185898d92989ea5acb1b9c2cad3d4cdc4bbb3aaa1969083796d60594f433a2f20170d0000000000000000000d1a2633404d596673808c949fa7b0b8c1cbcbc2bdb5afaaa29f99938f8a85827e7b7976757473737373747577787b7e81868c9298a0a7b1bbc5cfded7cbc0b5ab9f958a7d7064544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c1c1c1c1b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a46525e6976828f9ca9b3becad6ccbfb3a6998c807a8796a1adb9c5cec3b8ab9e9285796d6053463a2f24190d0100000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3847535f697683909caab4bfc7bcb0a6998c8073655b5044372b1f1307000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000000000000000060c151c232830363940454a5053545c606366656c6e70717374747576757574737372716f6d68696765615e575653504945413a353028231c150c06000000000000000000000000000000000000000000020a11171b1f20242424242424242424242424242423221f1b150f07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe2d6cabfb4aa9d93897d70685e554b433b332b271f1d18141312101314151b1e272e34404a54616b7683909cabb5c0cbd7dfd2c6b9ac9f9386796d6053463a2d201307000000000000000000000000000000000000040a0c141c23282f353b42464e535961666d717980868e93999fa6acb1b9bec5cad0cac4bdb9b1aba59e99928d857f79716c656059534d46413a32281e130800000000000000000008141e29323e45515d676e7b859298a2a9b3bbc3cbd5d4ccc4bdb9b0aba39f9a97928e8a89878685858687898a8e92979a9fa2aaafb8bcc3cbd4d5cbc2bbb3a9a29891847b6e675d51473d31281e0e050000000000000000000713202d3a4653606d78828f959fa6afbbc0c7cfc7c0bbb4aeaba49f9c98928f8b88858381807f7f808081828385878b8e92989fa2aab1b9c3cdd7d4ccc3bbafa3999083786d6053463a2e23170c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb4b4b4b4b4b4ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b87939facb9c5d0d6cabeb3a9978a7d7884919eabb8c4d1c6b9ada1978a7d7063564c4135291d110400000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000000000000006111c2b37424d5765717e8b98a2aebac7c2b7ab9e9184786c6053463a2f24180d010000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000000000000000000030a11171e252a2f35383f44464b515356535b6061636566676868696968676766656563615e565b5854534d4946443f38352f29251e17110a03000000000000000000000000000000000000000000000000060b0f121317171717171717171717171717171615130f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe7dbd0c6bcafa59e91847a6d675d554d453e37322c292421201f1c1f2021262b30394044515c66707d8a949fabbdc7d1dcddd0c3b6aa9d908377675c5145382c1f13060000000000000000000000000000000000000000020a11171d242930363c43474f545c60676d737b81878f949da0a7adb3babfc6cccec9c2bcb8afaba39f97928c847e786f6b615f57524c443a3025190d010000000000000000020d17202935414c555e696f7c869297a1a9b1b9c0c9ced6cec9c1bdb4aeaca9a29f9b97959a939292979495979b9ea1a9acaeb4bcc1c8ced6cec9c0b9b1a9a19792867c6f695e554b40352b1f160c0000000000000000000006121f2c3844515c666d798390949ea5afb5bdc3cbcbc5bfbab5afacaaa29f9b979892908e8d8c8c8d8d8d8f909297979b9fa2aaaeb4bcc3ccd5d5cbc3bab2a89f92877c6f665c5044382b1c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919ea8a8a8a8a8a8a8a89f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2c38434f5966737f8c99a4afbbc7d7d3c6baada297887b75828f9ba8b5c2d0c9beb3a99b8e8275685d5245392c20140900000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000e1a26313c4754606d7a86929facb8c4c5b9aca196897d7063554b4135291d11040000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000000000000000000000060c14191d24292e34383a4045464a495053555658595a5b5b5c5c5b5b5a5959585654524c4e4b4846423c3937332d29241d19130c06000000000000000000000000000000000000000000000000000000000305060a0a0a0a0a0a0a0a0a0a0a0a0a0a09080603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfede2d7cec1b9aca0969083796d675f575047433c38352f2e2d2c292c2d2e31373c424a515b606d7883909da6b0bccfd9e3d5c9beb3a9998c807366554b4034281c100400000000000000000000000000000000000000000000060b12181f252a31373d424a50555d60696e747c828a91959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea9a29f96918a837c756e69615e564c4135291d1105000000000000000000050e19242f3a434d57606a6f7d859297a0a7aeb9bdc4cbd0d5cfc6bfbab9b3adaba7a4aca49f9e9fa2a9a2a4a7abadb3b8babfc6ced4d0cac4bdb9aea79f9791857c6f6a5f564d43392f231a0d040000000000000000000004101c2834404a545d676d7a828e939fa3abb1babfc6cbcac7c0bbb9b4aeaca8aaa29f9c9b9a9999999a9a9c9d9ea1a9a7acaeb4babfc6ced6cfc9c2b9b1a8a0968d80736a5f544a3f34281c0a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919b9b9b9b9b9b9b9b9b9b9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3b4854606b7784919eabb5c0ccd7d2c5b8ab9f928578737f8c99aab4bfcbcfc5b9ac9f92867a6d6054473b31261a0e02000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000915202c3945515d6775818e9ba8b2bdc9bdb2a89b8e8174675d5145392c2014090000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000000000000000000000000000000000002080d12181c23282b2e34383a3d3f444648494b4d4e4e4f4f4f4e4e4d4d4c4b49474641413f3b3a36312d2b27221b18130d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe8e0dad5c9bdb2a89f958f82796e69615a544e4745403d3a3a3834383a3b3d43474d545c606d74818e95a0acb8c2cde1dfd2c6b9ada197887c6f6255493c2e23180c00000000000000000000000000000000000000000000000001070d141920262b30383f444b51575e616a6f767d838b92979fa2aaafb6bec2c8cecfc6bfbbb3ada8a19e959089827b746d685e5246392d2013070000000000000000000008131e28313b454e58606b6f7c8590959da4acb2babfc6cad0d1cbc7c5bebab8b4b1b6afacababadb3afb0b4b8b9bec5c6cad0d0cac6bfbab2aca49d9590857c6f6a60584e443b31271d11080000000000000000000000000c18232e39424b555e686d79818c9299a0a7aeb4babfc6caccc7c6bfbab8b5b4aeaca9a8a7a6a6a6a6a7a8aaabadb3b4b8babfc6cad0d0cac4bdb9b0a79f969184796d60584e42382e23170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b78858e8e8e8e8e8e8e8e8e8e8e8e86796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b55636f7c8996a0acbdc7d2ddcfc2b5a89c8f8275707c8998a3aebac7d3c7baaea3988b7e7165574d42362a1e1205000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5563707d8996a1adb9c5c4b8ac9f92867a6d6054473b31261a0e0000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000000000000000000000000000001070d11171c1f23282c2d2d3337393b3d3e404141424342424140403f3e3c3a393630322e2d2a25201f1b17110d07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003080b0d0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0a090704000000000000000713202d3a4653606d798693a0acb9c6d3e8ded6cfc9c5c4bab1a79f948f837b706c62605853514b49474644404547484a4e53575f666d747f8c939da7b1bccad4ded8ccc0b6ac9e9185786c605346392d201307000000000000000000000000000000000000000000000000000002090e151b1e262e343a40454d52585f626b70787e858c92989fa4acb0b8bcc3c9cfcbc5bebab2aca79f9d938f86807a6d6154473a2e21140700000000000000000000010c161f29333d464f59606a6f7b838d929ea1a8aeb4babec5c8cdd2cfcac6c5c1bdc0bbb9b8b8babebcbdc1c5c6cacfd2cdc8c5bebab4aea8a09e928d837b6f6a60584e463c32291f150b0000000000000000000000000007121c27303a434c565e676d747f8790959fa3aaaeb4babfc5c7cbcac6c5c2bfbab8b6b4b3b2b2b3b3b4b5b6b8b9bec1c5c7cad0cdc8c5bebab2ada69f9590847b6e675d51463c30261c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a6774808181818181818181818181818175685b4e4235281b0f02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6774818e9aa8b2bdd0d9d6cabeb3a9988c7f726d7986929facb8c5d2cbbfb4aa9c908376695f53463a2d21160a000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a4653606c7884919eabb7c2c6baaea2988b7e7164574d42362a1b110600000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000060b1012181c1f2022272b2d2e3032333435353636353434333232302e2d2a252521211e1a13120f0b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080f14181a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b171614100b0500000000000713202d3a4653606d798693a0acb9c6d3e0d6ccc4bdb9b7b9b9b0a69f9590857d766f6a64605d55565453504b51535457585f62696e78808c919ca5afb9c3cedcded4c8bbafa49a8e8174655b5044372b1f120500000000000000000000000000000000000000000000000000000000040a0c141c23282f353b42464e535961666d727a80868e939a9fa6acb1b9bec5cbd0cac4bdb9b1aba59e99928d85786c5f5245392c1f120000000000000000000000040d17212b343d464f585f696e79808a91969fa3aaadb3b8bcc3c5c7cbd1d0ced2ccc8c6c5c5c6cacfcaced0d1cbc7c5c3bcb8b3adaaa29f96918a80786e695f584e463c342a20170d0300000000000000000000000000000b151e28313a444c555c606d727c838c92989fa3aaaeb4b9bbc0c4c6c9cfcac6c5c3c1c0bfbfc0c0c0c2c3c5c6cacfd1cbc7c5c2bcb8b4aea8a19e948f837a6e695e554b40342a1e140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1a2733404c58646e74757575757575757575757575756f65594d4034271b0e01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a85929facb8c3cedfd3c6baada297897c6f6776838f9ca9b6c2d0d1c6b9ac9f93877b6e6155483d32271b0f000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000008131f2b3844505b6673808d99a7b1bcbebfb4aa9c908376695f5346382d22170b00000c1926323f4c5965727f8c98a5b2bebeb6a99c8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000003070c101313171b1f202223252627282829292828272626252321201d19181514120e090503000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b131a1f2427272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272423201c161008000000000713202d3a4653606d798693a0acb9c6d3dacfc4bab2adabadb2b8b0a7a097928a827c75716d67666361605c555c606163676a6f757b838d929ca3adb7c1cbd5e0d7cbbfb4ab9f93877c6f6253493f33271b0f03000000000000000000000000000000000000000000000000000000000000020a11171d242930363c43474f545c60676d737b81878f949da0a7adb3babfc6cccec9c2bcb8afaba39f9786796c605346392d2013000000000000000000000000050f19222b343d464e575f676d747d848c92989fa2a9acb1b6b9bbc0c1c3c5c6cacfc8c9c9c8cfc9c6c5c3c1bfbbb9b6b1aca9a29f98928c847d746d665e574e463c342b22190e05000000000000000000000000000000030c161f28323a434b515b636a6f787f868d92989fa2aaacafb5b8b9bec0c2c3c5c7cbd1c8c9c9c8c8d0cac7c5c3c1bfc0bbb9b6b1abaaa29f96918b82796d685e574d43392f22180c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824303c48535c646768686868686868686868686868655d53483d3125180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5764717e8b98a2aebac6d3ded2c5b8ab9f9285796d6673808c99aab3becad4c8bbafa49a8c7f7366584e43382b1d12070000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54626e7b88959fabb1b1b1b1ac9f93877b6e6153493f33271b0f03000c1926323f4c5965727f8c98a5b1b1b1b1a99c8f8376695c504336291d10000000000000000000000000000000000000000000000000000000000000000000000406060b0f12131516181a1b1b1c1c1c1b1b1a1a1918161413110d08080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b141d252b303334343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434302f2c28211a11080000000713202d3a4653606d798693a0acb9c6d3d5c9bdb2a8a19ea1a8b1b9b1a9a29f948f87827e797572706d6d666b676d6e7073777c818790959da4adb5bfc9d2ddd7cec5baaea3998e81756a5f5341382d22170b000000000000000000000000000000000000000000000000000000000000000000060b13181f252a32373e424a50555d60696e747c828a91959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea99386796c605346392d201300000000000000000000000000071019222b343c454d555c606c707980868d92979da0a7a9acafb5b4b6b8b9bebbbcbcbcbcbbbeb9b8b6b4b5aeaca9a7a09d97928d867f79706b605c544d453c342b221910070000000000000000000000000000000000040d16202830394045515860666d727b80868d92989c9fa3ababadb2b3b5b7b9babfbbbcbcbcbbbbbabfbab8b7b5b3b5afaca9a79f9d98928c847e786d675e564d453b31271d10060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202b36414a53585a5b5b5b5b5b5b5b5b5b5b5b5b5b59534b41372c201408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f6976838f9caab4bfcad6d7cbc0b5ab9b8e817566636f7c8998a2aebac6d3ccc0b6ac9e9184776a605447392e23180c0000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3847535f697683909daaa5a5a5a5a5a49a8c8073655b5044372b1f1205000c1926323f4c5965727f8c98a5a5a5a5a5a59c8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000000000000000000030506080a0b0d0e0e0f100f0f0e0d0d0c0b09070705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131d262f363c40414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141413d3c38332c231a100500000713202d3a4653606d798693a0acb9c6d3d2c5b9ada1969196a0a7b1bbb3ada69f9a938f8a85827f7c7a797878797a7b7d8083888e92999fa7aeb6bfc7d1dbd9d0c5bcb2a89f92867b6e61584e432f261b11060000000000000000000000000000000000000000000000000000000000000000000001070d141a20262b30383f444b51575e616a6f767d838b92979fa3aaafb6bec2c8cecfc6bfac9f9386796c605346392d20130000000000000000000000000000071019222a333b434b515961676d737b80858c9095999d9fa3aba8a9abadb3aeafafafafaeb3adaba9a8aba39f9d9995908c85807a736d676159514a423b332a2219100700000000000000000000000000000000000000040e161e272e343f464e545c60696e747b80858a8f92999b9ea1a9a6a8aaacaeb4aeafafafafaeadb4aeacaaa8a6aba39f9c9895908c857f79716c665d554c443b33291f150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1a252f3841484c4e4e4e4e4e4e4e4e4e4e4e4e4e4e4d4841392f251a0f04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7b87939facb9c5d0dbd3c7bbafa3998a7e7164606d7985929fabb8c5d0d2c7b9aca096897c6f62544b4034281c100400000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2b37424d5765717e8b9898989898989898989184786c605346392d201306000c1926323f4c5965727f8c98989898989898988f8376695c504336291d1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1a252f3841484c4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4a48443e352c21160b00000713202d3a4653606d798693a0acb9c6d3d1c4b7ab9e91849095a0abb5bebab0aca49f9c98928e8c89878685858586878a8d90959b9fa3abb1b9c0c8d1d9d8d1c7bdb4aaa1968d8074695f53463c321d140a0000000000000000000000000000000000000000000000000000000000000000000000000002090e151b1e262e343a41454d52585f626b70787e858d92989fa4acb0b8bdc3c9cfb9ac9f9386796c605346392d20130000000000000000000000000000000710182129303940454f555d60696e737a7f83888c909299999b9d9ea1a9a2a2a3a3a2a2a9a19e9d9b999992908c88837f7a736e68605c554f444039302921181007000000000000000000000000000000000000000000040c151d2328343c424a50575e61696e747a7e82868b8e919798999b9d9fa3aaa1a2a3a2a2a1a1aaa29f9d9b999799928f8b87837f7a736d67605b544b433a322921170d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131d262f363c404142424242424242424242424242403d372f271d13090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6573808c9aa4afbbc8d7dfd2c5b9ac9f92867a6d615c6675828f9baab4bfcad4c8bdb2a89a8d8174665c5145382c1f130800000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a26313c4754606d7a868b8b8b8b8b8b8b8b8b8b897c706356493d3023160a000c1926323f4c5965727f8b8b8b8b8b8b8b8b8b8b8276695c504336291d100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a070604000000000000000008141f2b36414a53585a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a57554f473e33281c1004000713202d3a4653606d798693a0acb9c6d3ccbfb2a6998c7f839099a3afbbc0beb6afacaaa29f9b999694989291929894969a9da0a7acafb5bdc2cbd2dad6cfc6bfb5aba29891847a6d61574d42342a200b02000000000000000000000000000000000000000000000000000000000000000000000000000000040a0c141c23282f353b42464e535961666d727a80868e939a9fa6acb2b9bec5b9ac9f9386796c605346392d201300000000000000000000000000000000060f181e272e343e434b51565e61676d72777b7f8386898c8e90929794959596969595949792908e8c8986837f7b77726d67615e56514b433e342e271e170f060000000000000000000000000000000000000000000000030b1218222b30383f444d52575e61676d71767b7e8185888b8d8f9092989495959696959594939892908e8c8a8886837f7b76726d68605d55504a423a312820170f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b141d252b3033343535353535353535353535353534312c251d150b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eacb6c0ccd8d6cabeb3a99c8f8275685e5464717e8a98a2aebac6d3cec3b8ab9e9285796d6053463a3024190d01000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000915202c3945525d68707d7e7e7e7e7e7e7e7e7e7e7e7c6f6256493c2f231609000915222f3c4855626f7c7e7e7e7e7e7e7e7e7e7e7d7063574a3d3024170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12141517171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171312100c070000000000000b1824303c48535c64676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676361594f44382c201407000713202d3a4653606d798693a0acb9c6d3ccbfb2a6998c7f7c87929fa3afb5bdc0bbb9b3aeaba8a5a3aaa29f9e9fa2aaa3a6aaacb1b9bbc0c7cfd4d9d4ccc4bdb5aea49992867c6f685e52453b3122180e000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171d242930363c43474f545c60676d737b81878f949da0a8adb3babfac9f9386796c605346392d20130000000000000000000000000000000000060c151d2328313940454d52555d6065696e73767a7c7f818385878888898989898887878583817f7c7a76736e6965605d55524c4540393028231c150c0500000000000000000000000000000000000000000000000000000710191e262e343b42464d52555d6064686e7175787b7e808284868787888989898888878786858482807e7c7976726e6966615e56514b443f382f281f160e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b131a20242727282828282828282828282828282725201a130b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5563707d8996a1acbec7d2ddd3c6baada2978a7d71645653606d7a86929facb8c5d0d2c6b9ada2978a7d7064564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c56616c7072727272727272727272726f6a6054473b2e221508000815212e3b47535f6a6f72727272727272727272706b6155483c2f23160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d141a1e21222424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424201f1c18120b03000000000d1a2733404c58646e74747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474706b6155483c2f231609000713202d3a4653606d798693a0acb9c6d3ccbfb2a6998c7f737e8b919fa4abb3bbc1c5bebab8b5b2afb4aeababacaeb4b0b3b6b8bcc3c7cbd1d9d4cec8c2bab2aba39f93877d706a5f564c4133291f10070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b13181f252a32373e424a50555d60696e747c828a91969ea1a9aeb4ac9f9386796c605346392d2013000000000000000000000000000000000000030b12181f272f353b42464c5154575f6266676d70737576787a7b7b7c7c7c7c7b7b7a78767572706d6766615f5754514b46413b342e271e18120b0300000000000000000000000000000000000000000000000000000000070c151c232830363b42464b5153565e616568696e71737577797a7b7b7c7c7c7c7b7a7a7979777573716f6d6765615e5754524c454039332d261d160d050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080f14181a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b18140f090200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6775818e9ba8b2bdd0d9ded2c5b8ab9f9285796d6053515d6775818e9ba9b3becad6cabeb3a99b8f8275685d5246392d201509000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a43505a616465656565656565656565656260584e43372b1f13060006121f2b37434e585f62656565656565656565656361594f44382c20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f171f262a2d2e30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302d2c28231c150c030000000e1b2734414e5a6774818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181817d7063574a3d3024170a000713202d3a4653606d798693a0acb9c6ceccbfb2a6998c7f73737f8c9399a2a9b0b8bdc3c6c5c1bfbcbebab8b8b8babfbdc0c3c4c8cdd4d5d2cec8c3bdb8b0a8a199928b7f726b61584e443a3021180d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d141a20262b30383f444c51575e616a6f767d848b92979fa3aaaf9f9386796c605346392d20130000000000000000000000000000000000000000070d151d242930363a4145474d5355555d606366686a686d6e6f6f70706f6f6e6d676a686663605d5555534d4745413a363028231d150c0700000000000000000000000000000000000000000000000000000000000000030a11171f252a3036394045474d525458575f62656668666c6d6e6e6f706f6f6e6e6d6d666a68666462605c5554524d4746413a352f28221c140b040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003080b0d0e0f0f0f0f0f0f0f0f0f0f0f0f0f0e0c0804000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb8c4cedfd4c8bcb1a79a8d8174675c514b5564707d8a97a2adbac6d3cfc5b9ac9f92867a6d6154473c31261a0e000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313e47505557585858585858585858585856544e463d32271b0f0300030f1b26323c464e53555858585858585858585857554f473e33281c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17212931363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a38342e271e150b00000013202d394653606c79868d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8c7f7366594c403326190d000713202d3a4653606d798693a0acb9c1c1c1bfb2a6998c7f736d737f8792979ea6acb2b9bbc0c5c7cbcac6c5c4c5c6cad0cdd0d2d1d0cfc9c5c3bcb8b2aca69f9691877f726d62594f463c32281e0f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e151b1e262e343a41454d525860626b70787f858d92989fa49f9386796c605346392d2013000000000000000000000000000000000000000000030b12181f252a2f35393c4247484b515356595b565d606162626363626261605d555b595653514b4847423c39352f2a251e18120b0300000000000000000000000000000000000000000000000000000000000000000000060c141a1f252a2f35393b4146474b4d5355585a545b6061616262636362626160605c545b59575553514b4846423b39363029241d17110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121e2b37424d5765717e8b98a2aebac6d3ded1c5b8aca095897c6f62554b4653606d7985929fabb8c4cfd3c7baaea3998b7e7265574d42372b1b11060000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2c353e44494a4b4b4b4b4b4b4b4b4b4b4b4947433d342b20150a0000000a15202a343c4347484b4b4b4b4b4b4b4b4b4b4a48443e352c21170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f29333b4246484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4644403930271c1207000013202d394653606c7986939a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a998c7f7366594c403326190d000713202d3a4653606d798693a0acb4b4b4b4b4b2a6998c7f73666d727d858f949da0a8acafb6b9bbc0c1c4c5c7cbd1c9d2ccc8c6c5c4c2bdb9b7b1aca8a09d948f847c726d625b51473e342a20160c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0c151c23282f353b42464e545961666d727a80868e939a9f9386796c605346392d20130000000000000000000000000000000000000000000001070c14191e24292c31373a3b404547494c4e4c5254555556565656555454514b4e4c494745403b3a37312c29241d19140c070000000000000000000000000000000000000000000000000000000000000000000000000002090e141a1d24292c3036393b3e4247484b4d4a50535454555656565555545453504a4f4d4b484745403b3a36302d2a251e18120b0600000000000000000000000000000000000000000000000000000000000004080a0b131313131313131313131313131313120707050100000000000000000000000000000000000000000000000000000000000003060809131313131313131313131313131313130b0b090501000000000000000000000000000000000000000000000000000000000814212e3a47535f697683909caab4bfcad6d7cbc0b5ab9d9184776a60544345515c6674818e9aa9b3bec9d5cbbfb4ab9d908376695f5347382d22170b0000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d1a232c33393c3d3f3f3f3f3f3f3f3f3f3f3f3c3b37322b22190f04000000040e18222a32373b3c3f3f3f3f3f3f3f3f3f3f3d3c38332c231a1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313b454d5355575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575753514a42392e23180c000013202d394653606c7986939fa7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a6998c7f7366594c403326190d000713202d3a4653606d798693a0a8a8a8a8a8a8a8a6998c7f7366636b707b828a91969c9fa4acacafb5b5b7b9bbbfbbbcbcc0bbb9b8b7b5b2adaba7a09d96918b827a6f6a625b51493f352c22180e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a11171e242930363c43474f545c60676d737b818790949386796c605346392d201300000000000000000000000000000000000000000000000002090e13191d20262b2e2f35393a3d40424145474848494949494848474541423f3d3a38352f2d2b26201d18130e08020000000000000000000000000000000000000000000000000000000000000000000000000000000002090e12181d20252a2d2e31373a3b3e403f44464748484949494948474746443f42403e3c3a38342f2d2a25201e19130c07010000000000000000000000000000000000000000000000000000000000050b101416172020202020202020202020202020201f1413110d08020000000000000000000000000000000000000000000000000000040a0f13151620202020202020202020202020202020181715110c06000000000000000000000000000000000000000000000000000003101c28343f4a54626e7b88949fabbcc6d0dbd4c7bbafa3998c7f7266584e43404b5463707d8997a1adb9c6d2d1c6b8ab9f95887b6e6153493f33271b0f0300000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a22282d303132323232323232323232322f2e2b2720191007000000000006101820262b2e2f32323232323232323232302f2c28211a11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d575f616363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363605c544a4034281c10040013202d394653606c7986939facb4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b2a6998c7f7366594c403326190d000713202d3a4653606d7986939b9b9b9b9b9b9b9b9b998c7f73665961696e757d848a8f939a9c9fa3aba8aaacaeb5aeafafb6afacabaaa8a8a19e9b95908a847e786d68605851493f372d231a10060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c13191f252a32373e424a50555d60696e757c828a9186796c605346392d2013000000000000000000000000000000000000000000000000000001080d11151a1e2124292c2d30332f35393a3b3c3c3d3d3c3c3b3a39352f33302d2c2924211e1a15110d0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d1014191e2021262b2e2f322d3338393a3b3b3c3d3c3c3b3b3a3a38342e33312f2d2c2923201e1a14110d08020000000000000000000000000000000000000000000000000000000000000810171c2123242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c21201e19130d05000000000000000000000000000000000000000000000000070f161b1f22232c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2524211d1811090000000000000000000000000000000000000000000000000006121f2b3844505c6673808d99a6b0bcced8dfd2c5b9ac9f92867b6e6154473d3a4653606d7985919eabb8c4ced4c7bcb1a7998c8073655b5044372b1f120700000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c202324252525252525252525252523221f1b150f0700000000000000060e151b1f2122252525252525252525252423201c17100800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f696e70707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706d665c5144382c1f12060013202d394653606c7986939facb7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b2a6998c7f7366594c403326190d000713202d3a4653606d79868e8e8e8e8e8e8e8e8e8e8e8c7f736659575f616b70787d82878c909299999b9d9fa3aba2a2a3aca49f9e9d9b9896918e8a837e78716c665e564e463f372d251b11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d141a20272b30383f444c51575e616a6f767d8486796c605346392d2013000000000000000000000000000000000000000000000000000000000104090e1214181d1f20232624292c2d2e2f2f30302f2f2e2d2c29242623201f1d1814120e0904010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104080e1114141a1e21222522282b2d2e2e2f2f30302f2f2e2d2d2b2823262422201f1c1814120e0905010000000000000000000000000000000000000000000000000000000000000008121a22282d3031393939393939393939393939393939382e2d2a251e170e050000000000000000000000000000000000000000000007101920272b2e2f3939393939393939393939393939393932312e29221b12090000000000000000000000000000000000000000000000000713202d3a4653606d7984919eabb8c2cdded6cabeb3a99c8f8276695e52463a3844505c6674808d9aa8b2bdc9d5cdc2b7aa9e9184786c605346392f23180c00000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1014161718181818181818181818181615130f0a04000000000000000000040a0f12151518181818181818181818171614100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d786d6053463a2d2013070013202d394653606c7986939faaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa6998c7f7366594c403326190d000613202d394653606c78818181818181818181818181817e7064574d535961666c70767b7f83868a8c8e91929994959696959a9392918f8b8884817d78716c66605b544c443d342d251b13090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e151b1e262e343a41454d535860626c70787f7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000206070c1013141619191d2021222223232323222121201d1819161413100c070602000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507090e12141518171c1f2021212223232322222121201f1c171a18151413100c07050200000000000000000000000000000000000000000000000000000000000000000005101a242c33393c3e464646464646464646464646464646453a3936302920170d020000000000000000000000000000000000000000030d19222b32373b3c464646464646464646464646464646463e3d3a342d241b11060000000000000000000000000000000000000000000004111d2935414c5663707d8a96a1adb9c5d2dfd3c6baada2978a7e7164564d4236343f4a54626f7c8996a1acb9c5d2d2c5b9aca096897c6f63554b4034291c1004000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a0c0c0c0c0c0c0c0c0c0c0c0908060300000000000000000000000000030608090c0c0c0c0c0c0c0c0c0c0a0a070400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a877a6d6154473a2e2114070013202d394653606c7986939d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d998c7f7366594c403326190d0006121f2b3844505b666c75757575757575757575757575706c615549464f545b6064696e73767a7d8082848687888889898887868584827e7b7874706c65605b54504a423a322b221b130901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0c151c23282f353b42464e545a61666d726d62564a3d3124180b00000000000000000000000000000000000000000000000000000000000000000000000406070a080d11131415151616161615151413110d070a070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002060808060b0f1213141515161616161514141312100b060b09070604000000000000000000000000000000000000000000000000000000000000000000000000000b17222c363e44494a535353535353535353535353535353524746413a32291e130800000000000000000000000000000000000000010b151f2b343d434749535353535353535353535353535353534b4a453f362d22180c010000000000000000000000000000000000000000000713202c3945525d6875818e9ba9b2bdc9d5ded2c5b8ab9f9285796d6053473b302e384854606a7884919eabb7c3ced5c9bdb2a89a8e8174675c5145382c1f1308000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1dbd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b969696969696969696969696969696969696969696969696969696969696969696969696969696969696969694877a6d6154473a2e2114070013202d394653606c798691919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191918c7f7366594c403326190d00030f1c28333f4a545b606868686868686868686868686864615a50443e424a5053575f6266686d71737577797a7b7b7c7c7b7a79787775726e696864605b53504a443f382f282019100901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a11171e242931363c434750545c6065625b51463a2e22150900000000000000000000000000000000000000000000000000000000000000000000000000000000010406070809090a0a0909080706040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030606070808090a09090808070706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c28333e485055576060606060606060606060606060605f54524c443a3025190f0500000000000000000000000000000000000007121d27313d464e54565f606060606060606060606060606060585650483f34291d11050000000000000000000000000000000000000000000714212d3a4754606d7a86929facb9c4cfdad4c8bdb2a89a8d8174675c514538292c38434e586673808d99a7b1bcc8d4cec4b8ab9f9285796d6053473a3025190d010000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4cececec3b6aa9d9083776a5d5044372a1d11040000000000000001040607060401000000000000000000000000000000000000000000000000040607090b0d0d0c0b08070502000000000000000000000000000000000000000000000000000000000000030607090b0b0a0908060300000000000000000000000000000000000000000000000000000000000000000000030506090a0b0a0906050300000000000000000000000000000000000000000000000000000000000000000000030608090a0b0b090706030000000000000000000000000000000c1925323f4c5865727f8b98a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a094877a6d6154473a2e21140700111e2b3744515e6a77838484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484847f7265584b3f3225180c00000b17222d38424a50535b5b5b5b5b5b5b5b5b5b5b5b5b575550483e2f383f44464d5355565d60646668666d6d6e6f6f706f6e6d666a6865625f5757535049443f38332d261d160e0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c13191f252a32373e424a5053585651493f34291d120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b615e564c41362a21170b0200000000000000000000000000000000040d18242f39434e5860626c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c65625a50453a2e211509000000000000000000000000000000000000000006121f2b37434e5865727f8b98a3aebac7d6ded1c5b8aca096897c6f62554b40342927323d4855626f7c8895a0acb8c5d1d3c6baada2978a7d7164564c41362a1e11050000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c1c1c1c1c1b6aa9d9083776a5d5044372a1d1104000000000001070d10131413100d07010000000000000000000000000000000000000000070c10121316181a1a19181514120e09040000000000000000000000000000000000000000000000000000060b101213161718171515120f0a04010000000000000000000000000000000000000000000000000000000000060b0f1213161718171613120f0b06000000000000000000000000000000000000000000000000000000000001040a0f121515171817161312100b06000000000000000000000000000c1925323f4c5865727f8b98a5b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0ada094877a6d6154473a2e21140700101d2a36434f5b677177777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777726d62564a3d3124180b000006111c262f383f44464e4e4e4e4e4e4e4e4e4e4e4e4e4a49443e362c2d33383c4247484c52545759545c6061616263636261605c545c5855534d4a46443f38332d28221c140b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d141a20272b30383f44464b4a463f372d23180d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010406070809090a0a0b0b0b0b0b0b0a0a090807060400000000000000000000000000000000000000000000000000000000000000000000000000000000000003080d1012131313131313131313131313131313130f0e0c08040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303c4955616c71797979797979797979797979797979786d685e52463e33291d140a000000000000000000000000000000010c161f2935404b55606a6f79797979797979797979797979797979716c62564a3d3124170b00000000000000000000000000000000000000000815212e3a47535f6a7783909daab4bfcbd7d7ccc0b5ab9d9184776a605443392f23212e3a47535f6a7784919daab7c2cdd6cabeb3a99c8f8275685e5246392d2015090000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb4b4b4b4b4b4b4aa9d9083776a5d5044372a1d110400000000040c12181d2020201d18120c0400000000000000000000000000000000040a0f12181c1f2023252627262422211e1a14100c0701000000000000000000000000000000000000000002090e11171c1f202324252422211f1b15110d070100000000000000000000000000000000000000000000000002080d11171b1f202224252422201f1b17110d080200000000000000000000000000000000000000000000000001070d11151b1f212224252423201f1c17110e0902000000000000000000000c1925323f4c5865727f8b98a5b2bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbaada094877a6d6154473a2e211407000e1b27333f4b565f676a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a65625b51463a2e2215090000000a141d262d333839424242424242424242424242423d3c39332c2422282b31373a3b4145474a4d4a50535455555656555453504a4f4b4847423d3937332d28221c17110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e151b1e262e34383a3f3d3a342d251b110600000000000000000000000000000000000000000000000000000000000000000000000000000000040607090a0c0e080d1113141516161717171818181817171716141313100c070b0808060200000000000000000000000000000000000000000000000000000000000000000000070e14191d1f1f2020202020202020202020202020201b1a18140f0901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d868686868686868686868686868686857a6d615a50453b2f261b1106000000000000000000000000000008131e28313a45515d676f7c878686868686868686868686868686867e7165584b3e3225180b0000000000000000000000000000000000000003101c28343f4a54626f7c88959fabbcc6d1dcd4c7bbafa4998c7f7266584e4331271d1f2b37434e5866737f8c99a7b1bcc8d4d0c5b9ac9f92867a6d6154473c31261a0f0000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919ea8a8a8a8a8a8a8a8a89d9083776a5d5044372a1d1104000000040d161d24292c2d2c29241d160d0800000000000000000000000000040a0f151b1c23282c2d3032333433312e2d2a261f1d18120c07000000000000000000000000000000000000050d141a1c23282b2d2f3132312f2e2b26201d18130c0400000000000000000000000000000000000000000000050c13191b22272b2d2f3132312f2d2b27221b19130c0400000000000000000000000000000000000000000000040c13181d20262b2e2f3132312f2d2b28231c19140d050000000000000000000c1925323f4c5865727f8b98a5b2bec9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c7baada094877a6d6154473a2e211407000b17222e39444d565b5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e585651493f34291d1206000000020b141c22282b2d3535353535353535353535353531302d28221a171c1f262b2e2f35393a3e403f44464748484949484746443f423f3b3a37312d2b27221b17110b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0c151c23282c2d32312e29231b1309000000000000000000000000000000000000000000000000000000000000000000000000040607070c1013141517191a1c191d2021222223232424252525242424232221201f1c181a181514120e0908060200000000000000000000000000000000000000000000000000000000000811191f25292b2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d282724201a130b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303c4955616c75818e969393939393939393939393978f82756c62574d41382d22170c03000000000000000000000000040e19242f3a434f59606d798491999393939393939393939393978f82756c62564a3d3124170b0000000000000000000000000000000000000006121f2c3844505c6673808d9aa7b1bccfd8dfd2c6b9ac9f93877b6e6154483d3221151b26313c4855616e7b88959fabb8c7d2d3c7bbafa3998b7f7265584e43372b1c110600000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919b9b9b9b9b9b9b9b9b9b9b9083776a5d5044372a1d11040000010c161f282f35393a39352f281f1a11080000000000000000000003090e161b20272b2e34383a3c3e40403f3e3b3a36312c29241d18120b03000000000000000000000000000001090e171f252a2e34383a3c3e3e3d3c3a37312c29241d160d080000000000000000000000000000000000000000090e161e252a2d3337393c3d3e3d3c3937332d29251e160e080000000000000000000000000000000000000000080d161d24292c31373a3c3d3e3e3c3a38342e2a251f170e0901000000000000000c1925323f4c5865727f8b98a5b2becbd3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c7baada094877a6d6154473a2e2114070006111d28323b444b4f515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151514b4a463f372d23180d0100000000020a11171c1f20282828282828282828282828282423201c17100b0f151a1e2124292c2d312e34383a3a3b3c3c3d3c3b3a38342e322f2e2b26201f1b17110b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a11171c1f202524221d1811090100000000000000000000000000000000000000000000000000000000000000000105070c10131316181c1f20222426272824292c2d2f2f30303031313232313131302f2e2d2c2823262422211e1a1514120e0906020000000000000000000000000000000000000000000000000007111a232a313538393939393939393939393939393939393534312c251d150b0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212d3944505a606d7a84919aa49f9f9f9f9f9f9f9fa99e938b7e71695e53493f33271e150a0000000000000000000000020c16202935414c55606b74808d96a09f9f9f9f9f9f9f9f9fa59e92857b6e615a50453a2e211509000000000000000000000000000000000000000713202d3a4653606d7985929eabb8c3cdded6cabeb3aa9c8f8276695e52463a2d201415212d3a46535f697683909dabb5c0ccd7cbc0b5ab9d9083776a5f5347382d22170b00000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b78858e8e8e8e8e8e8e8e8e8e8e8e8e83776a5d5044372a1d1104000007121d283139404547454039312c231a11080000000000000001080d151a20272b323739404446494b4d4d4c4b4846423b38352f28231c150c06000000000000000000000000020b131b20293036383f4446494a4b4a4847433c39352f281f1a11090000000000000000000000000000000000010a121a20283036383f4446494a4b4a4946443f38353028201a120a01000000000000000000000000000000000009111a1f282f35393c4347484a4b4a4946443f38363029201b130b020000000000000c1925323f4c5865727f8b98a5b2bec6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6baada094877a6d6154473a2e21140700000b16202932393f43444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444443f3d3a342d251b110600000000000000060b0f12131b1b1b1b1b1b1b1b1b1b1b1b1b171614100b050003090e1214191d20212423282c2d2e2e2f30302f2e2d2c28232522211e1a13120f0b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c101213181815120d06000000000000000000000000000000000000000000000000000000000000000002080d1113181c1f202323292c2d2f313334352f35393a3b3c3c3d3d3e3e3e3e3e3e3d3d3c3b3a38342e33312f2e2b2622211e1a15120e090300000000000000000000000000000000000000000000030e19232c353c41454646464646464646464646464646464642403c372f271d1309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c28333e45525d68707d88939fa7b1acacacacacacafa59f92857b6e655b50443c30261c11060000000000000000000008131e28323a45515d67707d88939fa8b2acacacacacacb3a99e938a7e71685e52483f34291d110500000000000000000000000000000000000005111d2a36414c5664707d8a97a1adb9c6d2dfd3c6baaea2988a7e7164574d42362a1e12121e2a36424d5765727f8b99a4afbbc7d4d1c7b8ab9f95887b6e62544a3f33281c0f03000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a677480818181818181818181818181818073665a4d4033271a0d0000010d18242f39434b5153514b433e362c231a11080000000000060b13191f262b32383d43474a51535658595a595755534d47454039342e271e180f0800000000000000000000010b141d252d333b42464a50535657585755534e4745413a312c231b1309000000000000000000000000000000000a131c242c323a4146495053555758575553504946413a322c241c130a0000000000000000000000000000000009131b232c313a4145474e53555758575653504a46423b322d251d140b0100000000000c1925323f4c5865727f8b98a5b2bababababababababababababababababababababababababababababababababababababababaada094877a6d6154473a2e2114070000040e1720282e33363737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373732312e29231b1309000000000000000000000306060f0f0f0f0f0f0f0f0f0f0f0f0f0a0a080400000000000206080d11131417171c1f2021222223232221201f1c17181514120e090503000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306070c0b0906010000000000000000000000000000000000000000000000000000000000000000050c13191d2023282c2d2f2f34383a3c3d3f4142434145474849494a4a4a4b4b4b4b4a4a4a494746454042403e3b3a37312f2e2b26211e1a150f0b06000000000000000000000000000000000000000008141f2a353e464d51525353535353535353535353535353534e4d4841392f251a0f0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222935414c56606b74808d95a0abb5c0b9b9b9b9baaea2988f82776c60584e42382e23170d030000000000000000050e1925303a444f59606d7a84919aa4afbab9b9b9b9b9b9ada1978e81756c61564d41362d22180c010000000000000000000000000000000000000713202d3946525e6875828f9ba9b3bec9d5ded2c5b8ab9f9285796d6053473b30251a0e0e1a26313b4754616e7b87939facb9c6d1d4c8bcb1a7998d8073665b5044382b1f1207000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1a2733404c58646e7475757575757575757575757575736e63584b3f3226190c000004101d2935404b555d605d5550483e352c231a12080200030a11171e242931373d43474e54545c60636566676664615f5753514b444039302a211a12090000000000000000000a131d262f373f454d52545c6062646564625f5854514b433e352d251b1108000000000000000000000000000009121c252e363e444c52535b606264656462605b53524c443e362e251c1209000000000000000000000000000008111b252d353e434b5154585f6264656462605c54524d443f372f261d130a00000000000c1925323f4c5865727f8b98a5adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadada094877a6d6154473a2e211407000000050e161d22272a2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2524221d18110901000000000000000000000000000202020202020202020202020200000000000000000000000001040707060c101213141515161615141312100c060808060200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e171e252a2d2e34383a3c3f404547484a4c4d4f504c525455555656575758585857575756555453514b4f4d4b4847423f3b3a37312d2b261f1b17110a020000000000000000000000000000000000000d1925313c4650585d5f6060606060606060606060606060605b59534b41372c2014080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d19242f3a434f59606d79839199a3afbbc2cec6cabeb3aa9f948b7f726a5f544a3f34281f150b01000000000000020d17202935414c56616b74818e96a1acb6c0ccc6d0c4baafa59e91857a6d615a50443b30241b1106000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5cfdad5c9bdb2a89a8e8174675d514538291f14090914202d3946525e6876838f9cabb5bfcbd7cdc3b7ab9e9184786c605346392f24180c000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824303c48535c64676868686868686868686868686866635c52473b2f23170a00000613202c3945515d676d67615a50473e352c2419140d0c10141c22282f353c42474e54586062666d6f71737372716e6965605d55514a423c332c241b12090000000000000006101c252f38414951575e61666d6f7171706f6a66605d554f473f372d231a0d04000000000000000000000000050e1b242e37404850565e61656c6f7071706f6c65615e56504840372e241b0e05000000000000000000000000040d1a232d373f474f555d60666a6f7071716f6d66615e56514941382f251c0f06000000000c1925323f4c5865727f8b98a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a094877a6d6154473a2e21140700000000040b11171b1d1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e181815120d0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030607070809090a0908070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a131313131313131313131313131313090806030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c1720293036393a404546494c4b51535557595a5b5d565d60626263636364646565646464636261605c545b595755534d4c4847423c3a37312b27221b140b080200000000000000000000000000000000101d2935414d58626a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c68655d53483c3124180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313d45515d676f7c87929fa7b1bcc6d0d0c5bcb0a69f92867c6e665c50443c31271d120700000000000008141f29323b46525e68707d8a939da8b2bec7d2d2c7beb2a89d938a7d70685e52483e32291f12090000000000000000000000000000000000000006131f2b37434e5865727f8c99a3aebbc7d6ded2c5b9aca096897c6f63554b403529170d0205111e2a36414d5665717e8b99a3aebbc7d3d2c5b9ada196897d7063554b4035291d10040000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202b36414a53585a5b5b5b5b5b5b5b5b5b5b5b5b5b5a58524a40362a1f130700000714202d3a4753606d79706c61594f473e362a251f18171c1f262d333a41454d535860626a6f74797c7e80807f7e7b77716d67605c544d453e362d241b12090000000000030e18222e37414a525b62696e74797c7d7e7d7b78736d67615951493f352c1f160c0100000000000000000000020d17202d364049515a61686d73787c7d7e7d7c78736d68615a514940362d20170d0200000000000000000000010c16202c353f49515961676d73787b7d7e7d7c79746e69625b524a41372d21180e030000000c1925323f4c5865727f8b939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393877a6d6154473a2e211407000000000000060b0e10111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110c0b090601000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b101416172020202020202020202020202020201615130f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e29323a4146474b51535659555c606264666768696b686d6e6f6f707071717171717170706f6e6d666a686664625f575955534e4847423c37332d261d19140d05000000000000000000000000000000121f2b3845515d6a7479797979797979797979797979797979756f65594d4034271a0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2935404b55606a737f8c959faab4bfcad6cec2baaea3989083786d60584e43392f24180d0400000000060f1925303b44505a616d7a85919ea5afbac4d0d8ccc0b6aca1968e81746c61564c41362c20170d00000000000000000000000000000000000000000815222e3b47545f6a7783909dabb5bfcbd7d8ccc0b6ac9e9184776b605443392f24180500020e1925303b4754616d7a86929facb9c5d0d5c9bdb2a89b8e8174675d5145392c1f14080000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1a252f3841484c4e4e4e4e4e4e4e4e4e4e4e4e4e4e4d4b4740382e24190e0200000c1926323f4c5965727f7d706b61595048403630292423282c2f383f444c52575f616a6f767c8185898b8c8d8c8a88837e79736d665f5750483f362d251b1106000000000a15202a343f49525c646d727b8185898a8b8a88848079706b625b51473e31281e13080000000000000000000009141f29333f48515b636c717a8084888a8b8a8884807a716c635b51483e32291f14090000000000000000000008131e28323e47515b626b70798084888a8b8a8985817b726d645c52493f332a2015090000000c1925323f4c5865727f87878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d23221f1b160f0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a444c5254545c60626568676d6f707274757677797a7b7c7c7d7d7d7e7e7e7e7d7d7d7c7a7978777573716e696966625f5755534d46443f382f2a251e170e080000000000000000000000000000131f2c3946525f6c79858686868686868686868686868686868175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18242f39434e58606d78839098a2aebac2cdd6cbbfb4aa9f958c7f736a60554b4035291f160c010000020b17212a36414d56616c75818e97a1adb7c0ccd6d0c7bbafa49a91847a6d60594f443a30241a0e050000000000000000000000000000000000000004101c2834404b55626f7c8895a0acbdc6d1dcd4c8bbafa49a8c7f7366594f4331271d120700000814202d3946525d6875828f9caab4bfcad6cfc4b8ab9f9285796d6053473b3025190e0200000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131d262f363c404142424242424242424242424242403f3b362e261c12080000000c1926333f4c5966727f867d706b615a5146413b352f2e34383e424a50565d60696e757c82898d929798999a999795908b857f786e69615a50483f372d23180c010000030f1a26313c46515b646e747f868d929797989796918c857d726d62594f433a2f24190d010000000000000000020e1a25303b45505a636d737e858d919797989797918d857e736d635a50443b3025190e000000000000000000010d19242f3a444f59626d727d858c919697989797928d867f746e645b51463c31261a0f0200000713202d3a4653606d797a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a796c605346392d20130600000000000000000000000000000000000000000004080c0e0f131313131313131313131313131307070501000000000000000000000000000000000000000000000000000000000005080a0b1313131313131313131313131313120f0a05000000000000000000000000000000000000000106090b0c1313131313131313131313131313090907030000000000000000000000000000000000000003090d111213131313131313131313131313130a0a080400000000000000000008111a22282d30313939393939393939393939393939392f2e2b272019100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c565e6165666d6f7275777a7b7d7f808283848587888889898a8a8b8b8b8a8a8a89888786858382807e7b7875726e6a66615f57535049413d363029201a110600000000000000000000000000131f2c3946525f6c798592939393939393939393939393938e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c44505c666e7b86929fa6b0bbc5cfd0c6bcb1a79f92877c6f675d51453d31281e130800000a141d29333b46525e68717e8a939ea9b3bec9d2d2c7bdb2a89f93887d70685d52473e32281e1208000000000000000000000000000000000000000006131f2c3845515c6774808d9aa7b1bccfd8dfd2c6b9ac9f93877b6e6154483d3221150b01000005111d2935414c5664717e8a98a2aebac6d3d3c6baaea2988a7e7164564d41362a1e110500000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b141d252b3033343535353535353535353535353533322f2a241c140a000000000c1926333f4c5966727f8c867d716c635b524d45403e3c3f44464f545b60686d747b82898f949a9ea1a9a6a6a5a7a09d97928c837b716c625a51493f34291d1205000006121f2b37434e58636d74808b92989ea1a9a4a8a19e9792877f726b61554c4135291d1104000000000000000005111e2a36424d57626c737f8a92989ea1a9a4a9a19e97928a7f736c62564d42362a1d1207000000000000000004111d2935414c56616c727f8792979ea1a8a4a9a19e98928b80746d63584e43372b1e1308000006131f2c3845515c666d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6c655b5044372b1f12050000000000000000000000000000000000000001090f14181a1b20202020202020202020202020201413110d080200000000000000000000000000000000000000000000000000060c1115171820202020202020202020202020201e1b1610090100000000000000000000000000000000060d1215181820202020202020202020202020201615130f0a0400000000000000000000000000000000070e15191d1f2020202020202020202020202020171614100b0500000000000005101a232c33393c3d4646464646464646464646464646463c3b37322b22190f0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e686d7276797c7f818486888a8c8d8e909192989595969696979798989797979695949792908e8c8a8885827f7b77736e6964605b534f46413b322c2317110a020000000000000000000000131f2c3946525f6c7985929f9f9f9f9f9f9f9f9f9f9f9f9b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f28343f4a545f69727f8b949fa9b3becad6cec3bbafa3999184796d60594f433a2f24190e0506111b262f3b45505a616e7b85929ea5afbbc4cfd7ccc0b5aba0968d80746b60564c41352c20160c0000000000000000000000000000000000000000000713202d3a4653606d7985929eabb8c3ceded6cabfb4aa9c8f8276695e53463a2d211403000000010d1924303a4753606d7a86929facb8c5d0d6cabeb4aa9c8f8276685e5246392d20150a00000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e161e24292c2d3232323232323232323232323232322e2d2a251e170e050000000c1926333f4c5966727f8c92877e736d615e56514b4a494a50535961666c717a80868f939c9ea6abadb3b3b3b2b1aca9a29e9590867e716c625b51453a2e22150900000815212e3a47535f6a727f8c929fa2aaadb3b1b2aca9a19993877d70675d5145392c20150a00000000000000000714202d3a46525e69717e8b919fa2aaadb2b1b2ada9a29f918b7e71695e5246392e23180c00000000000000000713202c3945525d68707d879399a1a9acb2b1b3adaaa29f928c7f726a5f53473a3025190d010004101c2834404b545c606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605b53493f33271b0f03000000000000000000000000000000000000030b131a202427282d2d2d2d2d2d2d2d2d2d2d2d2d2d21201d19130c0400000000000000000000000000000000000000000000000910171d2124242d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a0100000000000000000000000000010911181d2224252d2d2d2d2d2d2d2d2d2d2d2d2d2d23221f1b160f0700000000000000000000000000000911192025292c2c2d2d2d2d2d2d2d2d2d2d2d2d2d2423201c17100800000000000b17222c353e44494a5353535353535353535353535353534947433d342b20160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a7f8286898c8e91929997999a9b9c9e9fa2aaa2a2a3a3a4a4a4a4a4a4a3a3a2a9a29f9d9b999797928f8c8884807b76706c656059524c443e3628231c140c0200000000000000000000131f2c3946525f6c7985929facacacacacacacacacaca89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17232e38424d57606c77828f97a2adbac1cdd7cbc0b5aba0958d80746b60564c41352920170d0c17222d38414d57626c75828f97a2adb7c1cdd6cfc6bbafa4999184796d60594f433a2f231a0e05000000000000000000000000000000000000000005111e2a36424d5664717d8a97a2adb9c6d2dfd3c6baaea2988b7e7164574d42362a1e1205000000000813202c3945515d6775818e9ba9b3becad6d0c5b9ac9f92867b6e6154473c31261b0f00000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c1620283035393a3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3a3936302920170c0200000c1926333f4c5966727f8c9992887f766e68605d555756545c60646b70787e858d92999ea5aab0b8b9bebfc0bfbcb8b3ada79f9892877e726d62564a3d3124180b0005111d2a36414c56626f7c87929fa4aeb4b9bebebdb9b3aba49992857a6d6054473c31261b0f0300000000000004101c2834404b55616e7b86929fa4aeb3b9bebebeb9b3ada49f92867b6e61544b4034281c1004000000000000030f1b27333f4953606d7a859299a4abb3b9bdbebeb9b4aea49f92877c6e62564c4135291d110500000c18232e39424b5153545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545453504941382d22170b000000000000000000000000000000000000010b151d252c3134353939393939393939393939393939392d29251e160e0400000000000000000000000000000000000000000009121a22282d3031393939393939393939393939393937332c251c13090000000000000000000000000009131b23292e31323939393939393939393939393939302f2c272119100700000000000000000000000007111b232b313638393939393939393939393939393931302d28221a110800000004101c28333e4750555760606060606060606060606060606056544e463d32271b0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2633404d596673808b8f9298989b9d9fa3aba5a7a8a9aaacaeb4afafb0b0b0b1b1b1b1b0b0b0afb3adabaaa8a6a9a19e9c9996918d87827d78706b615e56504840342e261e140a00000000000000000000131f2c3946525f6c7985929facb8b9b9b9b9b9b9b9b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303c44505b656e7b85929fa5afbbc4cfd1c7bdb1a89f93887d70685d52453e32291e13151e27333f49535f69717e8b949ea9b3bec9d3d1c6bdb1a79f93877c6f675d51473d31281e11080000000000000000000000000000000000000000000714202d3a46525e6975828f9ca9b3becad6dfd2c5b8ac9f92857a6d6053473b31251a0e020000000004101d2935404b5564707d8a97a2adbac6d3d4c7bbafa3998c7f7265584e43372b1c1106000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323a4145474b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4746413a32291e130800000c1926333f4c5966727f8c999a938c827b726d6766646365666d71767d838b92979fa3abafb7bbc2c6cacfcdcec8c5beb9b1aaa29993887f7265584b3f3225180c000713202d3946525e6875828f99a3afbabfc6cacec9c5bdb5aba1978c807366584e43372b1f120600000000000006131f2c3845515c6774818e98a2aebabec5c9cfc9c5bebaaea2988e8174665c5145382c1f130600000000000005121f2b3744505b6573808d97a1abb5bdc5c9cec9c6bfbaafa3998f8275685e5246392d201307000007121d273039404546474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474746443f382f261b110600000000000000000000000000000000000009131d272f373c40424646464646464646464646464646463935302820160c020000000000000000000000000000000000000006101a242c34393d3e4646464646464646464646464646433e372e251b1005000000000000000000000006111b252d343a3d3f46464646464646464646464646463c3b38322b22190f0400000000000000000000030e19232d353c424546464646464646464646464646463d3c39332c231a100500000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6260584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576975828f9c9fa3aaa8aaacafb5b2b3b5b6b7b8babfbbbcbcbdbdbebebebdbdbdbcbbbebab8b6b5b3b3adaba8a8a09d9a938f8a837d756e68615a52443f3830261c1106000000000000000000131f2c3946525f6c7985929facb8c5c6c6c6c6c6c1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e27333f49535e69717e8a939ea9b2bdc9d5cfc3bbafa49a91847a6d605a50443a3025191c26303844505b656e7b86929fa6b0bbc5cfd7cbbfb5aba0958d80736b60554b40352b1f160c000000000000000000000000000000000000000000000814212e3b4754616e7b86929facb9c5cfdbd5c9bdb2a89b8e8174675d514539291f14090000000000010d18242f3a4653606d7985929fabb8c4cfd7cbc0b5ab9d9083776a5f5347382e23170b000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130701010101010101010101010100000000000000000000000000000000000000000000000000000000000000010d1924303a444c525458585858585858585858585858585854524c443a3025190d01000c1926333f4c5966727f8c99a49f948f857f7a7573716f7174797d838a90959ea1a9aeb5bdc1c7cac6c5c3c3c4c6c9cac2bcb4aba49a9286796c5f5246392c1f13000714212e3a4754616d7a86929fabb5c0cad0d6dad5d0c7bdb3a99e9184786a5f53473a2e2115080000000000000713202d3a4653606d7985929faab4bfcad0d5dad5d0cabfb4aa9f9285796d6053463a2d2013070000000000000613202d394653606c7884919ea9b3bdc7d0d5dad5d0cac0b5ab9f92867a6d6154473a2e2114070000000b151e272e34383a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3937332d261d140a000000000000000000000000000000000000040f1a252f3941484d4e53535353535353535353535353535346413a32281e1308000000000000000000000000000000000000000c17222c363e45494b53535353535353535353535353534f4940372c21160a00000000000000000000010d18232d373f464a4b53535353535353535353535353534948433d342b21160a000000000000000000000915202b353f474e5253535353535353535353535353534a49443e352c22170b00000a1623303c4955616c707979797979797979797979797979796f6a6054473b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f697885929eabaeb4b4b7b9bbc0bfc0c1c3c4c5c7cad0c9c9c9cacacbcbcacacac9d0cac6c5c3c1bfbeb9b8b5b2acaca49f9c959089827a706c635c504a42382e231711070000000000000000131f2c3946525f6c7985929facb8c5d2d2d2d2cec1b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17222d38414d57616c75818e96a1adb9c0ccd8ccc0b6aca1968e81746c61564c41362a21232e38424e58606c77829098a2aeb8c1cdd7cec6bbaea3999083796d60594f43392f23190d0400000000000000000000000000000000000000000007131f2c38434e5866727f8c99a3afbbc7d7ded2c5b9aca096897c7063554b403529170d0300000000000007131f2c3845515c6674818e9aa9b3bec9d5d1c7b8aca095887c6f62544a3f34281c10030000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130e0e0e0e0e0e0e0e0e0e0e0e0e0a0a080400000000000000000000000000000000000000000000000000000004111d2935414c565d60656565656565656565656565656565615e564c41362a1d1105000c1926333f4c5966727f8c99a5a69f97928c86817f7d7c7e81848a90949da0a7adb3bbbfc6c7c5bfbab8b6b6b8b9bec1c6c5bdb5ac9f9285796c5f5246392c1f13000b1824313e4b5764717e8a99a3afbdc7d1dbe2e5e2d9d0c5b9aca196887b6f6255483c2f2215090000000000000a1623303d495663707d8998a2aebcc6d0dbe1e6e1dbd0c6baada297897c706356493d3023160a0000000000000915222f3c4855626f7b8896a1adbbc5d0d9e2e5e2dbd1c7bbafa3998a7e7164574b3e3124180b000000030c151d23282c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27221b140b020000000000000000000000000000000000000814202c37414b53595b60606060606060606060606060605f524c443a3025190d01000000000000000000000000000000000005111d28343e48505557606060606060606060606060605f5a52493e33271b0f0200000000000000000006121d29343f49515658606060606060606060606060606056544f463d32271b0f000000000000000000010d1925313c4751595e5f60606060606060606060606060575550473e33281c1004000a1724313d4a5764707d8686868686868686868686868686867c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8897a1adb9bfc1c4c5c7cbd1cdcecfcecccac9c8d1cbc7c5c5c4c5c5c7cbd1c9cbced0d0cecfcac6c5c2bdb8b6afaca79f9d938f857e736e605c544a3f342823190d0300000000000000131f2c3946525f6c7985929facb8c5d2dfdfdbcec1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b45505a616d7a84919ea4aebac3cfd2c7beb2a89d938a7e70685e52463e332928343f4a545f6a727f8c949faab4bfcad3d0c6bcb1a79f92877c6f675c51463d31281d1108000000000000000000000000000000000000000000000915222e3b4854606a7784919dabb5c0cbd7d8ccc0b6ac9e9184786c605346392f2418060000000000000004101c2834404b5463707d8997a1adb9c6d2d4c8bcb1a79a8d8073665c5044382b1f13070000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d201a1a1a1a1a1a1a1a1a1a1a1a1a1a171614100b05000000000000000000000000000000000000000000000000000713202c3945525d686d7171717171717171717171717171716d685e5246392d201307000c1926333f4c5966727f8c99a5b0a9a29f98928e8c8a898b8d91969c9fa6acb1b9bec5c6bfbab8b4aeaca9a9abadb2b5b9bbc0b8ac9f9285796c5f5246392c1f13000d192633404c5966737f8c99abb5c0cfd9e3edf4ebe2d5c9bdb2a8968a7d7063574a3d3024170a0000000000000b1825323e4b5865717e8b98aab4beced8e2ecf1ece2d6cabeb3a9978b7e7164584b3e3125180b0000000000000a1724313d4a5764707d8a97a8b2bdcdd7e2ebf4ede3d7cbc0b5ab998c7f7266594c3f3326190c00000000030b12181c1f202121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121201f1b17110a02000000000000000000000000000000000000000c1824313c48535d65686c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5e564c4135291d110500000000000000000000000000000000000815212d3945505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e12050000000000000000000915222e3a46515b62656c6c6c6c6c6c6c6c6c6c6c6c6c6c6360594f43382c1c1106000000000000000004111d2936424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5044392d201408000a1724313d4a5764707d8a93939393939393939393939393897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a9b3becad0d0d1ced0cac6c5c3c1bfbebcbbbbbfbab9b8b7b8b9bbc0bbbcbfc1c3c5c7cbd0d2d1cec8c7c0bbb9b1aba69e97928a80746d665c50443f352b1f150b01000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29333e46525d68707d89929da8b2bdc7d1d0c4baafa59e92857a6d615a50453b2f303944505c666e7c86929fa6b0bcc5d0d6cbbfb4aa9f958c7f736a5f554b40342b1f160c0000000000000000000000000000000000000000000004101d2935404b55626f7c8995a0acbdc7d1dcd4c8bbafa49a8c7f73655b5044372b1d120700000000000000000c18232e3a4653606d7985919eabb8c4ced9cdc3b8ab9e9184796d6053463a2f24180d0100000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2727272727272727272727272727272423201c1710080000000000000000000000000000000000000000000000000714212d3a4754606d7a7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7a6d6154473a2e211407000c1926333f4c5966727f8c99a5b2b3adaaa29f9b999796989a9ea1a8abb0b8bcc3c7c0bbb4aeacaaa29f9d9c9ea1a9a8acafb6b8ac9f9285796c5f5246392c1f13000d1a2734404d5a6773808d9aa6b3c0d1dce7f3fdf3e5dacebeb1a4978b7e7164584b3e3125180b0000000000000c1926323f4c5965727f8c98a5b2bfcfdbe6f2fdf2e6dbd0bfb2a5988c7f7265594c3f3226190c0000000000000b1825313e4b5864717e8b97a4b1beced9e5f3fdf3e8dcd1c0b3a69a8d8073675a4d4034271a0d000000000000070c101313141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141413120f0b060000000000000000000000000000000000000000010e1a2734404d59656f75797979797979797979797979797976685e5246392d20130700000000000000000000000000000000000a1724303d4955616c7179797979797979797979797979766c5f5346392d2013060000000000000000000b1824313d4a56626d7279797979797979797979797979796f6b605448382d22170b000000000000000006121f2c3845525e6a757979797979797979797979797979706c6155493c3023160a000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f95897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546773808d9aa6b3c0cec9c5c4c1bebebab8b6b5b3b1afaeaeb4aeacabababacafb5aeb0b2b4b6b8babfc5c6cad0d4d2ccc8c3bcb8b0a9a19e928c81786d605b51473d31271d1207000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17202935414c56616b74808d96a0abb5c0cbd7ccc1b9ada1978f82756c62574d413839434e58606d78839098a3aeb8c2ced7cec6baaea3989083786d60584e43392e22190d040000000000000000000000000000000000000000000006131f2c3845515d6774818e9aa8b1bdcfd9dfd2c6b9ac9f93877b6e6153493f33271b0f03000000000000000007121f2b3844505c6674808d9aa8b2bdc9d5d2c6b9ada197897d7063554b4035291d110400000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a3434343434343434343434343434343431302d28221a110800000000000000000000000000000000000000000000000915222f3c4855626f7b888b8b8b8b8b8b8b8b8b8b8b8b8b897c6f6256493c2f231609000c1926333f4c5966727f8c99a5b2bebab4aeaca8a6a4a2a4a7abadb2b7bbc2c7c1bdb5afaaa39f9b989290909197969b9fa4acb1ac9f9285796c5f5246392c1f13000c1926333f4c5966727f8c99abb5bfcbd7e3edf3ebe1d4c8bdb2a8968a7d7063574a3d3024170a0000000000000b1825313e4b5864717e8b97a9b3becad6e2ecf4ebe4d6cabeb3a9978b7e7164584b3e3125180b0000000000000a1724303d4a5763707d8a96a8b2bdc9d5e1ebf3ede3d7cbbfb4ab998c7f7266594c3f3326190c0000000000000000040607070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706050300000000000000000000000000000000000000000000020f1b2835424e5b68758186868686868686868686868686867a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e86868686868686868686868686796c605346392d201306000000000000000005111e2a36424d5665727f86868686868686868686868686867d6f63544a3f33281c0f03000000000000000613202c3946535f6c7987868686868686868686868686867e7064574a3d3124170a000a1724313d4a5764707d8a97a3acacacacacacacacaca295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c667683909ca9b6c2c0bdb9b7b4b2b3aeabaaa8a6a4a3a2a1aaa39f9e9e9f9fa3aba1a3a5a7aaacaeb4b8babfc6c9ced6d4cdc8c1bbb3ada49c938e80746d62594f43392f24180c020000000000131f2c3946525f6c7985929facb8c5d2dfe5dbcec1b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e1924303a444f59606d79849199a3afbbc3ced5c9beb3a99e938b7e71695e53493f404b555f6a737f8c959faab4bfcad4d0c6bcb0a69f92867c6e665c50463c30271d100700000000000000000000000000000000000000000000000714202d3a4753606d7985929fabb8c3ceded6cabfb4aa9c8f8376695f5341382d22170b00000000000000000003101c28343f4a54626f7c8996a1acb9c5d2d5c9beb2a99b8e8175675d5145392c20140900000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d60534641414141414141414141414141414141413d3c39332c231a1005000000000000000000000000000000000000000000000915222f3c4855626f7b8895989898989898989898989895897c6f6256493c2f231609000c1926333f4c5966727f8c99acb5bdc6bfbab8b4b2b0afb1b4b8b9bdc4c7c2bcb7afaba39f98928e898583838586898e939a9fa7ac9f9285796c5f5246392c1f13000b1724313e4a5764717d8a99a3aebbc7d1dbe2e5e1d9cfc7b9aca096887b6e6255483b2f221508000000000000091623303c4956636f7c8997a2adb9c5d0dbe1e5e2d9d2c6b9ada197897c6f6356493c302316090000000000000815222f3b4855626e7b8896a0acb9c4cfd9e1e5e2dbd3c7baaea3998a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e939393939393939393939393877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a939393939393939393939386796c605346392d20130600000000000000000714202d3a46525e697683909393939393939393939393938d8074665b5044382b1f1206000000000000000613202c3946535f6c79869293939393939393939393938a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9afa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929facb8b6b3b2acaaa8a5aaa29f9d9b99979695949498929291929299949496989b9d9fa3aaacaeb4b9bdc4cad0d8d4cdc5beb9aea59d928c7f726b60554b4035291e14080000000000131f2c3946525f6c7985929facb8c5d2d9d9d9cec1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d45515d676f7c87929fa7b1bcc6d0cfc5bbb0a69f92857b6e655b504445515c676f7c87929fa7b1bcc6d0d6cabfb4aa9f948c7f726a5f544a3f342a1e150b000000000000000000000000000000000000000000000005121e2a36424d5764717e8a97a2adbac6d3dfd3c6baaea2988b7e7164574d422f261b1106000000000000000000000b17232e384854606a7884919eabb7c3ced9cfc4b8ac9f92867a6d6053473b30251a0e02000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d60534d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4a49443e362c22170b000000000000000000000000000000000000000000000915222f3c4855626f7b8895a2a4a4a4a4a4a4a4a4a4a295897c6f6256493c2f231609000c1926333f4c5966727f8c9aa4abb5bdc3c6c5c1bfbdbcbec0c4c5c9c3bcb8b1aba59e99928d86817c797676787a7d828790959ca49f9285796c5f5246392c1f13000714212d3a4754606d7a86929fabb5c0cad0d5d9d5cfc7bdb2a99e918477695f53473a2e2114080000000000000713202d3a4653606d7985929eaab4becad0d5dad5d0c7beb4aa9e9285796d6053463a2d2013070000000000000814212e3a47535f6a7784919ea9b3bdc7cfd5d9d5d0cabfb5ab9f92867a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9b9f9f9f9f9f9f9f9f9f9f94877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a979f9f9f9f9f9f9f9f9f9386796c605346392d20130600000000000000000814212e3b4754616e7b87939f9f9f9f9f9f9f9f9f9f9f9e9184786c605346392e23170b000000000000000613202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8898a2aeaca9a6a8a09e9b98969892908e8c8b89888887868685848586868788898c8e9092989b9fa2aaacb2babfc6ced4d7cfc9bfb7afa59f93887d70675d51453b3025190e0100000000131f2c3946525f6c7985929facb8c5ccccccccccc1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202935404b55606a73808c95a0aab4bfcbd6cdc1baaea2988f82776c60584e4f59606d79839099a3aeb9c3ced7cdc5baaea2989082786c60584e42382e22190c0300000000000000000000000000000000000000000000000714212d3a46535e6976828f9ca9b3becad6dfd2c5b8ac9f92857a6d6053473b3120140a000000000000000000000006111c2c38434e586673808d99a7b1bcc8d4d3c6baaea2988b7e7164574d42362a1e1205000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d605a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a575550483e33281c10040000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aeb1b1b1b1b1b1b1afa295897c6f6256493c2f231609000a1724313d4a5764707d879399a3abb2bbc0c7cbd1cac9cbcec9c4bdb9b1aca79f9d938f87817a746f6c6569676d70757c838c929f9f9285796c5f5246392c1f13000613202c3945525d6875818e99a3afbabfc6c9cec9c4bdb5aba1978c7f7366574d42372b1e120600000000000006121f2c3844505c6674808d98a2aebabec5c9cfc9c5beb6aea2988d8074665c5044382b1f120600000000000006121f2b37434e5866737f8c97a1abb5bdc4c9cec9c6bfbaaea3998e8175675d5145392c2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8acacacacacacacaca094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4acacacacacacac9f9386796c605346392d2013060000000000000005121e2a36424d5765727f8b9aa4afacacacacacacacacada197897c6f63544a3f34281c10030000000000000613202c3946535f6c7986929facacacacacacacaca3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad2d2d2c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98aaa39f9c999796918e8b8987858382807e7c7b7b7a7979787878797a7a7b7d7f8183868a8e92989ea0a8aeb4bcc3cbd4dad5c9c0bbafa49a9184796d60564c41362a1d120700000000131f2c3946525f6c7985929facb8bfbfbfbfbfbfbfb4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e18242f39434e58606d78839098a3aebac2ced6cabeb3aa9f948b7f726a5f5455606b73808d95a0abb5bfcbd4d0c5bbb0a69f92867b6e665b50463c30261c10070000000000000000000000000000000000000000000000030f1b27333f4953616e7b87939facb9c5d0dbd5c9bdb2a89b8e8174675d5145392c2013020000000000000000000000000f1b27323d4855626f7c8895a0acb8c5d1d6cabfb4aa9c8f8276695e52463a2d20150a000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d676767676767676767676767676767676767676764615a5044392d2014080000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbbebebebebebcafa295897c6f6256493c2f231609000a1623303c4955616c717e879299a0a8afb6babfc5c6c6c5c3bdb9b2aca7a09d959089827b746e6862605b555d60636a6f78808a92989286796c5f5246392c1f130004111d2935414c56616e7b87929fa4aeb4b9bebebdb9b3aba3999184796d6053473c31261a0e0200000000000003101c28343f4a54616d7a86929fa3adb3b9bdbebdb9b3aca49f92867a6d61544a3f34281c1003000000000000020f1a26313c4753606d79859199a3abb3b9bdbebeb9b4aea49f92877b6e61554c4135291d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4b9b9b9b9b9b9ada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1b9b9b9b9b9ac9f9386796c605346392d201306000000000000000714202d3a46525e697683909cacb6c0b9b9b9b9b9b9beb2a99a8d8074665c5044382b1f12060000000000000613202c3946535f6c7986929facb9b9b9b9b9b9b0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6dfd5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935404b556774818e9a9a98928f8d8a8784817f7c7a7877757371706f6e6d6d666b6b6c676d6d6e70727477797d81868b91969fa2aab1b9c2cbd4dbd8ccc0b6aca0968d8073685e5246392f24180d01000000131f2c3946525f6c7985929facb2b2b2b2b2b2b2b2b2a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313d44515c666e7c86929fa6b0bcc5d0d0c5bcb0a69f92867c6e665c5d676f7d87939fa7b1bdc6d1d6cabeb3a99f948b7e72695f544a3f342a1e150a00000000000000000000000000000000000000000000000005121f2b3744505b65737f8c9aa4afbbc8d7ded2c5b9aca196897d7063554b4035291d11040000000000000000000000000a16212e3a47535f6a7784909daab7c2cdd8d0c6b9ac9f93877b6e6154483c32261b0f000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca0938679747474747474747474747474747474747474747474706c6155493c3023160a0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8cbcbcbc8bcafa295897c6f6256493c2f231609000814202d3944505a626c717e8791969fa4acaeb4b8b9bab8b6b2aca8a19e95918a837c756e69615e5653504b5153585f666d737e86929285796c5f5246392c1f1300010d19242f3a47535f69727f8b929fa2aaadb3b1b2aca9a19992877d70675d5145392a20150900000000000000000c17232e3846525e68717e8a919fa2a9adb2b1b2ada9a29a938a7e71685e5242382e23170b00000000000000000915202c3945515d67707d879299a1a9acb2b1b3adaaa29f928b7f72695f53433a2f24190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1c6c6c6c6baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdc6c6c6b9ac9f9386796c605346392d201306000000000000000815212e3b4854616e7b87939facb9c6d2c6c6c6c6cfc4b8ab9e9185796d6053463a2e23170c0000000000000613202c3946535f6c7986929facb9c5c6c6c6bdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d67778490918d8a8683807d7a7775726f6d686a68666463626161605c545e555c606161636568666d70757a7e848c92989fa7b1b9c2cbd4ddd2c7beb2a89f92867a6e61554b4035291d1004000000131f2c3946525f6c7985929fa6a6a6a6a6a6a6a6a6a6a69b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2834404a545f6a727f8c949faab3becad6cec2baaea3989083786d60606d79849199a4afb9c3cfd6cdc5baada2978f82766d62574d42382d22180c030000000000000000000000000000000000000000000000000613202d394653606c7884919eacb6c0ccd8ded1c4b7ab9e9184786c6053463a2f24180d0100000000000000000000000006121f2b37434e5866737f8c99a7b1bcc8d4d4c7bbafa4998c7f7266584e43372b1c11060000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cecdc0b3a79a8d808080808080808080808080808080808080808080807d7064574a3d3124170a0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d7d5c8bcafa295897c6f6256493c2f2316090004101c28333e48505a626c717c848d939a9fa3aaabacadabaaa8a19e96918b837d766f6b625f57524c46444045474e545c606c717d869285796c5f5246392c1f13000008131e2b37424d57626d74808b92989ea1a9a4a8a09e9791877e716b60554b403529180e03000000000000000006111c2a36414c56616c727f8a92979ea1a8a4a8a19e9792887f726c61564c4130261c1106000000000000000004111d2935404b55606b717f8791979ea0a8a4a9a19e98928b80746d62574d4231281e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1ced2d2c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130600000000000005121e2a36424d5765727f8c9aa4afbbc8d4d2d2d2d2d2c6b9ada197897d7063544a3f34281c100300000000000613202c3946535f6c7986929facb9c5d2d2cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a878984817d7a7673706e68686563615e565b59585655555453514b514b515354555659545c6064676d71797f8690959fa7b0b8c2ced7d9d0c4baaea3988d8073675d5145392c201307000000131f2c3946525f6c798692999999999999999999999999998e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d18232e39424e58606c77828f98a2aebac1cdd6cbbfb4aa9f958c80736a6b74808d96a0abb5c0cbd5cfc5bbafa59f92857b6e615b51453b2f261c0f0600000000000000000000000000000000000000000000000004111d2935404b5563707c8996a0acbec7d2ddd3c7bcb0a6998c8073655b504437281d130700000000000000000000000000030f1b26313c4855616e7b88959fabb8c7d2d7ccc0b5ab9d9184776a5f5447382e23170c0000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cecec1b5a99d928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5e1d5c8bcafa295897c6f6256493c2f23160900000b17222c363f48505a616a6f7980878e92989c9e9fa29f9d9a96918c847e78706c636059534d46413b3735393c424a505a616b707d8686796c5f5246392c1f130000010e1a26313c45515b646e747f868d929797989796918c857d716c62594f43392f241806000000000000000000000d1925303a44505a636d727e858d919697989796918d857e726d635a50443a301e140a000000000000000000010d18242f3a434f59626c717d858c919697989797928d867f746e645b51453c311f160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013060000000000000714212d3a46535e697683909dacb6c0ccd8e4dfdfe1d5c9beb3a99a8d8174665c5044382c1f120700000000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c807c7874706d676664615e56585654524c4f4d4b494848474645404540454747484a4c4b5153555d60676d737b8390959fa6b0bcc5d0dbd6cbbfb4aa9f92867a6d6053473a2e23180c000000131f2c3946525f6c79868c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121c27303c44505b656e7b85929fa5afbbc4cfd0c6bcb1a79f92877c6f707d89929da8b2bdc7d2d5c9beb3a99e938b7e71695e52493f33291d140a000000000000000000000000000000000000000000000000000613202c3945515d6774818e9ba8b2bdd0d9dbd0c4b7ab9f94887b6e6153493f3327160c0100000000000000000000000000000a15212d3a46535f697683909dabb5c0ccd7d2c7b8aca095887c6f62544a3f34281c100300000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1ced1c5b9aea49d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5e1d5c8bcafa295897c6f6256493c2f231609000005101a242d363f48505860676d747c81868c8f92939792908e89847f79716d66615a544f47423c36302b292c30383f445059606b707d85786c5f5245392c1f1200000009151f2a333f49525c646d727b8085888a8b8a88847f79706b625a50473d31281d12070000000000000000000008131e29323e48515b636c717a8084888a8b8a8884807a716c635b51483e32291e0c020000000000000000000007131d28313d47505a626b70797f84888a8b8a8885807b726d645c52493f332a1f0d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013060000000000000815212e3b4854616e7b87959fabbec7d2dde8f4f2e6dacfc4b8ab9e9285796d6053463a2e23180c00000000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b47535f6a6f746f6c6563605d555754524c4c4947464142403e3d3c3b3a3a38342f34383a3a3b3d3f4045464b51555c60696e7a8390949faab3becad6dcd0c6baaea2988a7e7164544b4034281c100400000d192633404c5966737f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e27333f49535e69717e8b939ea9b3bec9d5cec3bbafa3999184797a84919ea4aebac4d0d6ccc4b9ada1978f82756c61574d42372d21180b02000000000000000000000000000000000000000000000000000714202d3a4753606d7a85929facb8c4cecececabfb4aa9c908376695f5341382d22170b00000000000000000000000000000005121e2a36424d5765727f8b99a4afbbc7cecec8bcb1a79a8d8074665c5044382c1f130800000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1ced6cbc0b6aea9a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a79a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5e1d5c8bcafa295897c6f6256493c2f23160900000008121b242d363e464e555d606a6f747a7f828586868583817c78726d67605c545048433d37312a251f1d1f262e343e474f59606b707d7064574a3d3124170a000000030e18212d37404a525b62686e74797c7d7e7d7b77736d67605950483f352b1f160c0100000000000000000000020d17202c363f49515a61686d73787c7d7e7d7c78736d68615a51493f362c20170c0000000000000000000000010c161f2b353f48505960676d73777b7d7e7d7c79746e68625b524a40372d21180e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201306000000000005121e2a36424d5766727f8c99a7b1bcd0d9e4eef9f7ebdfd2c6b9ada197897d7063544a4034281c1004000000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e585f626763605b5353514b4a4746413f3c3a3936303331302f2e2e2d2c2823292c2d2e2e302e34383a40454b51575e686d79829098a2aebac3ced9d6cabfb4aa9c8f8275665c5145382c1f130600000c1825323e4b57636d73737373737373737373737373737373706c6155493c3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17222d38414d57626c75818f97a1adb9c0ccd7cbc0b5aba0968d80818e96a1adb6c0ccd5cfc4baafa59e92857a6d615a50453b30241b0f060000000000000000000000000000000000000000000000000005121e2a36424d5764717e8b98a2aebac1c1c1c1c1baaea2988b7e7165574d422f261b1106000000000000000000000000000000020e1a26313b4754616e7b87939facb9c1c1c1c1c1b8ab9e9285796d6053463a2f24190d01000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cedbd2c8c0b9b5b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3a79a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d6d5c8bcafa295897c6f6256493c2f2316090000000009121b242c343d434b51586062686d727678797a787774706c65605c55504a423e38322b2620191410151c2328353d474f59616c706c6155493c3023160a00000000060f1b252e38404951565e61666d6f7171706e6a66605d554f473f362d23190d04000000000000000000000000050e1a242e373f4850565d61656c6f7071706f6c65605d5650483f372e241a0e05000000000000000000000000040d1a232d363f474f555d60666a6e7071716f6d66615e56514940382e251b0f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130600000000000714212d3a46535f697783909daab6c2cdddebf5f7f7eee2d5c9beb3a99a8e8174665c5144382c1f1207000000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26323c464e53555a565350494745403d3b393630302e2d2a25262523222221201f1c181c1f2021222323282c2f353940454d565d676e7a85929fa7b1bcc8d4dbd0c5b8ac9f9286796d6053463a2d20130700000a16222f3b46515b636666666666666666666666666666666664615a5044392d20140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b45505a616d7a85919ea5afbac4d0d1c7bdb2a89d928d8e939ea8b2bdc8d2d5c9bdb2a89e938a7e70685e52483e33291f120900000000000000000000000000000000000000000000000000000714212d3a46535f697683909caab4b4b4b4b4b4b4b4ac9f92867a6d6054473c3121140a00000000000000000000000000000000000914202d3946525e6876838f9cabb5b4b4b4b4b4b4ada1978a7d7063564c4135291d1104000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1ced3d3d2cbc5c1c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0b3a79a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8c9c9c9c8bcafa295897c6f6256493c2f231609000000000009121a222b313940454e54565e616569666d6d676a6763605b53514b443f38302c27211a150d08040a1117232b353d474f59616461594f44392d201408000000000009131d262e373f444d52545c6062646564625f5853514b433d352d241b1108000000000000000000000000000008121c252e363e444c52535b606264656462605b53524c443e362e251c1208000000000000000000000000000008111b242d353d434b5153585f6264656462605c54524d443f372e261d1309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130600000000000815222e3b4855616e7b8895a0abb8c4d1ddeaebeaeaebe6dacfc5b8ab9f9285796d6053463a2e23180c000000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343c4347494e4946443f3a39352f2e2d2a252321201d191a18161515141313100c101314141517181c1f24292f343b434c555e68727f8b95a0acb8c7d1dcd3c7baaea398897c6f6256493c2f231609000006121e2a354049515759595959595959595959595959595959575550483e33281c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29333e46525e68707d8a939da8b2bdc7d2cfc3baaea49d9a9b9ea5afbac4cfd6ccc4b9ada1968e81756c61564c41362d21170d0000000000000000000000000000000000000000000000000000030f1c28333f4a54616e7b88949fa8a8a8a8a8a8a8a8a8a89b8e8175675d5145392c201302000000000000000000000000000000000005111e2a36414d5665717e8b99a3a8a8a8a8a8a8a8a8a99b8e8175685d5245392c201306000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c0b3a79a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbbdbdbdbdbdbcafa295897c6f6256493c2f2316090000000000000810191f272f353d43474c525459545c60605d555b56535049454039342e261e1b160e0903000000061119232b353e474f5557554f473e33281c10040000000000010b141d252d323b41464a50535557585755534e4745403a312b231b1209000000000000000000000000000000000a131c242c323a4146495053555758575553504945413a322c241c130a0000000000000000000000000000000009121b232c313a4045474e53555758575553504a46413b322d241d140b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013060000000006121e2b37424d5766727f8c99a7b1bcc8d4e0e1dedddddee1dfd3c6baada2978a7d7063544b4034281c10040000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e18222a32373b3c413c3937332d2c292421201e19161413110d08070c10131315171718181818171615131213181d2329313a434c56606d7883909dabb5c0cbd7d6cbbfb4aa988c7f7265594c3f322619060000020d19232e3740464b4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4a49443e362c22170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17212a36414c56616b74818e96a0abb5c0ccd7ccc0b6aea9a7a8aaafb7c1ccd6d0c4baaea49e91847a6d605a50443a30241b0f05000000000000000000000000000000000000000000000000000006121f2b3844505b6673808c999b9b9b9b9b9b9b9b9b9b9b96897d7063554c4135291d11040000000000000000000000000000000000020e1925303b4754616d7a86929b9b9b9b9b9b9b9b9b9b9b92867a6d6054473a2d211407000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b3a79a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aeb0b0b0b0b0b0b0afa295897c6f6256493c2f23160900000000000000070d151d242932373a4146474c4a505353514b4e4946443f38342e28231c140c0a0400000000000007111a232c353e44494a49443e352c21170b00000000000000020b121b20293036383f4446494a4b4a4847433c39352f281f1a11090000000000000000000000000000000000010a121a20283035383f4446494a4b4a4846443f38353028201a120a01000000000000000000000000000000000009111a1f282f35393c4347484a4b4a4946443f38363029201b120b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201306000000000814212e3a47535f697783909daab7c3cdd9d9d4d1d0d1d2d5d9d6cabeb3a99b8e8174665c5145382c1f13070000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101820262b2e2f34302d2b27221f1d181414110d08070c10131417181c1f2022232425252525242321201f1b1714181f28313b44505c66717e8b99a3afbbc7d4dcd0c1b4a89b8e8175685b4e422d22170b00000007121c252e353b3e404040404040404040404040404040403d3c39332c241a1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f1925303a444f59606d79849199a4afbbc3cfd2c8c0b9b5b3b4b6bac1c9d3d2c7bdb2a89d92897d70685d52483e32291e12090000000000000000000000000000000000000000000000000000000613202d394653606c79848e8e8e8e8e8e8e8e8e8e8e8e8e8e84786c6053463a2f24190d010000000000000000000000000000000000000814202d3946525d6875828e8e8e8e8e8e8e8e8e8e8e8e8e8b7e7165584b3e3225180b000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8adadadadadadadadadadadadadadadadadadadadadadadadadadadada79a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2a3a3a3a3a3a3a3a3a3a295897c6f6256493c2f2316090000000000000000030b121820272b3035393a3f3f4446474540413d3937332d28231d17110a0200000000000000000008111a232c33393c3d3c39332c231a1005000000000000000000090e171f252a2e34383a3c3e3e3d3b3a37312c29241d160d080000000000000000000000000000000000000000080e161e24292d3337393c3d3e3d3c3937332d29241e160e080000000000000000000000000000000000000000080d161d24292c31373a3b3d3e3e3c3a38342e2a251f170e09000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201306000000000815222f3b4855626e7b8895a0acb8c4d5d5cec8c5c4c4c5c9ced6cfc5b8ab9f9285796d6053463a2f23180c0000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e151b1f21222723201f1b1713100c0707070d1013181d1f202323282c2d2f30313132323131302e2d2b272221201d1f28343f4a54616d7a86929facb9c5d2dccfc3b6a99c90837669544a3f33281c0f030000000a131c232a2f323333333333333333333333333333333331302d28221a1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e29323e45515d676f7d87939fa7b1bdc6d1d2cbc5c1c0c1c2c6cbd3d7ccc0b5aba0968d81746b61564c41362c20170d000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8181818181818181818181818181817e71665b504438281e13080000000000000000000000000000000000000005111d2935414c5663707d81818181818181818181818181817f7265594c3f3226190c000000000000000000000000000000000000000f1c2835424f5b6875828e9ba0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895969696969696969696969695897c6f6256493c2f23160900000000000000000001070c151b1e25292d2e2e34383a3a39352f302d2b27221b18120b0600000000000000000000000008111a21282d3031302d28211a11080000000000000000000000050d14191c23282b2d2f3132312f2e2b26201d18130c0400000000000000000000000000000000000000000000040c13191b22272b2d2f3132312f2d2b27221b19130c0400000000000000000000000000000000000000000000040c13181d20262b2e2f3132312f2d2b28231c19140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130600000006121f2b37434e5866737f8c99a7b1bcc8d4ccc3bdb8b7b7b9bdc4ccd3c6baada2978a7d7063554b4034291c100400000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f1315161b1613120f0b060403090e12181d2024292c2d302e34383a3b3d3e3e3f3f3e3d3d3b3937332d2d2c2924232e3846525e687683909ca9b6c3cfdcd1c4b8ab9e918578665b5044382b1f1206000000010a12191e2225262626262626262626262626262626262423201c171008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c17202935414b55606b73808d95a0abb4bfcbd7d6d1cecdcecfd2d7d9cfc7bbafa4999184796d60594f443a2f241a0e05000000000000000000000000000000000000000000000000000000000714212d3a46535f696e757575757575757575757575757575716c62544a3f3328160c0100000000000000000000000000000000000000010d1924303a4854606b707575757575757575757575757575726d62574a3e3125180b000000000000000000000000000000000000000f1c2835424f5b6875828e93939393939393939393939393939393939393939393939393939393939393938d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b888a8a8a8a8a8a8a8a8a8a8a8a8a897c6f6256493c2f2316090000000000000000000000040a0f13191d202123282b2d2d2c292423201f1b17110c070000000000000000000000000000000810171c20232423201c1710080000000000000000000000000002080e11171c1f202224252422211f1a15110d070100000000000000000000000000000000000000000000000002080d11171b1f202224252422201f1b17110d080200000000000000000000000000000000000000000000000001070d11151a1f212224252422201f1c17110e08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013060000000815212e3a47535f6a7784909daab7c3cdcec3bab2acaaaaacb2bac4cecabeb3a99b8e8175675c5145382c1f130700000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090e090605030002080d141a1d24292c2f35393a3d40404546484a4a4b4b4b4b4a494846443f3d3a39352f2c2a36414c5666727f8c99a5b2bfccd8d2c6b9ac9f9386796c605346392d2013060000000000070d12161819191919191919191919191919191919171614100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e18242f3a434f59606d79839099a3aebac2ced7e2dbdadbdbdedcd1c7bdb1a89f93877d6f675d51473d32281e1208000000000000000000000000000000000000000000000000000000000005121e2a36424d575f6168686868686868686868686868686865625a5042382d22170b00000000000000000000000000000000000000000008131e2c38444f596063686868686868686868686868686865625b51463a2e221609000000000000000000000000000000000000000f1c2835424f5b687581868686868686868686868686868686868686868686868686868686868686868686868074675a4d4134271a0e0000000000000000000000000000000000000000000714212d3a4754606d797d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7a6d6054473a2d2114070000000000000000000000000002080d111314171c1f2020201d181613120f0b06000000000000000000000000000000000000050b101416171614100b050000000000000000000000000000000000060b101213161718171514120f0a04010000000000000000000000000000000000000000000000000000000000060b0f1213161718171513120f0b06000000000000000000000000000000000000000000000000000000000001040a0f121415171817161312100b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013060000000915222f3c4855626f7b8895a0acb8c5d4c8bdb2a8a09d9ea0a8b2bdc9d0c5b8ab9f9285796d6053473a2f24180c00000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000060b14191f252a2f35393a4045474a4c4b5153555657585858585756545350494a4745413a3834303e4a5764717d8a97a4b0bdcad7d4c8bbafa49a867a6d6053473a2d20140700000000000002060a0c0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0a0a0804000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313d45515c666f7c86929fa6b0bcc5d0dbe7e6e7e8e3d7cbc0b5aba0958d80736b60554b40352c20160c000000000000000000000000000000000000000000000000000000000000020e1a26313b454d53555b5b5b5b5b5b5b5b5b5b5b5b5b5b5b585650483f2f261c110600000000000000000000000000000000000000000002101c27333d474f54565b5b5b5b5b5b5b5b5b5b5b5b5b5b595751493f35291e1206000000000000000000000000000000000000000714202d3a4753606d797a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a796d6053463a2d2013070000000000000000000000000000000000000000000613202c3945515d676d7070707070707070707070707070706d685d5245392c201307000000000000000000000000000000010507060b1012131413110d070605030000000000000000000000000000000000000000000004080a0a0a0804000000000000000000000000000000000000000000030607090b0b0a0808060200000000000000000000000000000000000000000000000000000000000000000000030506090a0b0a0906050300000000000000000000000000000000000000000000000000000000000000000000020608080a0b0b0907060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201306000006121f2b37434e586673808c99a7b1bcc8d1c5b8aca096919196a0acb9c5d2c6baaea2988a7d7064554b4035291d1004000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171e252a3136394045474b51535659555c6062636464656564646361605b535754514b46443f383c4956636f7c8996a2afbcc9d5d8ccc0b6a094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2834404b545f6a727f8c949faab4bfcad6e2eef4ede0d3c7bbafa3999184796d60594f433a2f231a0d040000000000000000000000000000000000000000000000000000000000000009141f29333b4246484e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4b4a453f362d1d140a00000000000000000000000000000000000000000000000b16212b353d44484a4e4e4e4e4e4e4e4e4e4e4e4e4e4e4c4a463f372d23180d010000000000000000000000000000000000000006131f2c3845515c676d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d665c5145382c1f130600000000000000000000000000000000000000000004111d2935414b555d60636363636363636363636363636363605d564c4135291d1104000000000000000000000000000000000000000003060707060401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130600000815212e3a47535f6a7784919daab7c3ced0c4b7aa9d918484919eaab7c4d1cabeb4aa9b8e8175675d5145392c1f1307000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c141c232830363b42464b5153555d60636669676d6e70717172727170706e6c656764605d5553504a45404855626e7b8895a1aebbc8d4ddd2baaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18232e39424e58606c78829098a2aebac6d3dfecede0d4c8bcb1a79f92877c6f675c51473d31281d11080000000000000000000000000000000000000000000000000000000000000000030d18212931363a3b4242424242424242424242424242423e3d3a342d241b0b020000000000000000000000000000000000000000000000050f1a232b33383c3d42424242424242424242424242423f3e3a352d251b1107000000000000000000000000000000000000000004101c2934404b555c6060606060606060606060606060606060606060606060606060606060606060606060605c544b4034281c1004000000000000000000000000000000000000000000010d18242f3a434b515457575757575757575757575757575754524c443a2f24190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104060708090a0a0909070704010000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130600000915222f3c4855626f7c8896a0acb8c5d5cdc0b4a79a8d80818e9ba8b4c1d1d0c5b8ac9f9285796d6053473a2f24180d010613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f171e262e343b41464d53555d6064676d70737578797b7d7d7e7e7e7e7d7c7b797774706d6764605c54514b4754606d7a8793a0adbac6d3d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303c44505b666e7b86929facb8c5d2dfebeaded1c5b8aca0958c80736a60554b40352b1f160c00000000000000000000000000000000000000000000000000000000000000000000060f181f262a2d2e35353535353535353535353535353532312e29221b12090000000000000000000000000000000000000000000000000008111a21272c2f30353535353535353535353535353532312e29231b130a000000000000000000000000000000000000000000000c18232f39434b51535353535353535353535353535353535353535353535353535353535353535353535353514b42392e23180c000000000000000000000000000000000000000000000007131d28313a4145474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4745413a32281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707080808080808080808080807070401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507070d1013141516171716151413110d0806050300000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013060006131f2b37434e586673808d99a8b2bdc8d4cabeb3a9988b7e7f8c99abb5c0cbd3c6baaea2988a7d7164554b4035291d10040613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009111a212930383f444c52575e61676d71757a7d7f82858688898a8b8b8b8b8a89878583817d7a76716d66605d555053606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17232e38424d57626c76838f9ca9b6c2cfdce9eaddd0c3b7aa9d9084796d60584e43392f23190d040000000000000000000000000000000000000000000000000000000000000000000000060d141a1e21222828282828282828282828282828282524211d171109000000000000000000000000000000000000000000000000000000080f161c20222328282828282828282828282828282625221e18110a010000000000000000000000000000000000000000000007121d273139404547474747474747474747474747474747474747474747474747474747474747474747474645403930271d12070000000000000000000000000000000000000000000000010c161f282f35393a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a39352f2820160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d11131414141414141414141414141413110d0801000000000000000000000000000000000000000000000000000000000000060606060606060606060606000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004090e121415181d202022232323232221201d191613120f0b060000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201306000815222e3b47545f6a7784919eaab7c3ced2c6b9ada197887c7d8999a3afbbc7d3cabfb4aa9b8e8275675d5145392c2013080013202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000109121b232c333b424a50565e61696e73797e8285898c8f91939a96979798989797969892908d8a86827d79736d67605b54606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f28343f4a545f69717e8b949fabb7c4d0dde9ebded2c5b8ab9f92857b6e665b50443c30271d120700000000000000000000000000000000000000000000000000000000000000000000000003090e1214151b1b1b1b1b1b1b1b1b1b1b1b1b1b1b181715110c060000000000000000000000000000000000000000000000000000000000050b101416171b1b1b1b1b1b1b1b1b1b1b1b1b1b191816120d07000000000000000000000000000000000000000000000000010b151f272f34383a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a38342e271e150b00000000000000000000000000000000000000000000000000040d161d24292c2d3030303030303030303030303030302d2c29241e160d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13191d2021212121212121212121212121201d19130c040000000000000000000000000000000000000000000000000106090b0c131313131313131313131313090806030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c10141a1e212224292c2d2f2f30302f2f2d2c292422201f1b17110d08020000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201306000916222f3c4955626f7c8896a0acb9c5d5d1c5b8ab9e9285787a86929facb9c5d2d0c5b8ac9f92867a6d6053473a2f24190d0113202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b242c353e454d545c60686e747b80858a8f9298999c9e9fa4aca4a4a5a5a4a3aaa29f9d9a99928f8a847f79716c665e606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313944505c666e7b86929fa6b0bbc7d3dfececdfd3c6baaea2989082786c60584e43392e23180d0400000000000000000000000000000000000000000000000000000000000000000000000000020507080f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0b0b09050100000000000000000000000000000000000000000000000000000000000000000407090a0f0f0f0f0f0f0f0f0f0f0f0f0f0f0c0b0906010000000000000000000000000000000000000000000000000000030d151d23292c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c28231d150c030000000000000000000000000000000000000000000000000000040c13181d202124242424242424242424242424242421201d19130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e161e25292d2e2e2e2e2e2e2e2e2e2e2e2e2d2c29241e160d0400000000000000000000000000000000000000000000060d1215181820202020202020202020201f1515120f0a0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f262a2d2e2f35393a3b3c3d3d3c3c3a39352f2f2d2b27221b19130b0600000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130606131f2b37434e586673808d99a8b2bdc8d4ccc0b6ac9b8f82757783909daab6c3cfd3c7baaea2988a7e7164554c4135291d110413202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121b252d363e474f575e666d727a81878d92979b9fa2aaa8abacafb6b0b1b1b1b1b0b4aeacaaaba39f9c97918c847e786e68606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18232f39434e58606d78839098a2aeb8c2cdd8e4e8e6e2d6cabeb4aa9f948c7f726a5f554b4034281f160c0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f2020202020202020202020202020202020202020202020202020202020202020202020201f1c18120b030000000000000000000000000000000000000000000000000000000001070d1113141717171717171717171717171717171413110d08010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c1620283035393a3b3b3b3b3b3b3b3b3b3b3b3a39352f2820160c0100000000000000000000000000000000000000010911181d2224252d2d2d2d2d2d2d2d2d2d2d2c22211f1b150e060000000000000000000000000000000000000000000000000000000000000000000000000000000002080c151d23282c31363a3b3f40454748494a4a49484745413f3c3937332d29241e17110a020000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013060815222e3b4754606a7884919eabb7c3ced4c8bbafa49a8b7e7173808d99a9b3becad6cabfb4aa9b8f8275675d5145392c20130813202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101a242d373f48505961696e787f858e92999fa2a9acaeb4b5b8b9bbc0bdbebebebebdbfbab8b6b5aeaca9a19e97918b827a706b6d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c16202934404b555f6a727f8c949faab4bfcad4dedcdbd9dadbd0c5bcb0a69f92867c6f675c51453d31281e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707090b0c0d0d0e0e0e0d0c0c0b090707040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c101314141414141414141414141414141414141414141414141414141414141414141414141313100c070000000000000000000000000000000000000000000000000000000000000000010406070a0a0a0a0a0a0a0a0a0a0a0a0a0a0a07070401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e28323a41464747474747474747474747474745413a32281e13080000000000000000000000000000000000000009131b23292e31323939393939393939393939392f2e2b26201810060000000000000000000000000000000000000000000000000000000000000000000000000000040c13191e272e34383b4246484c4b515355565656565554524c4c4946443f38353027221b140b0600000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013030f1b27333f4953626f7c8996a1acb9c5d5d2c6b9ac9f93877b6e6f7c8997a2adbac6d3d0c5b8ac9f92867a6d6054473a2f24190d13202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e19232c363f49515a616b707b828c92989fa3abadb3b8babfc2c4c6c8c9c5c4c3c2c0c0c0c1c3c3bfbbb9b2ada9a19e948f857d706d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323a45515c676f7c87929fa6b0bcc5d0d7d3d0cfcccdd1d7cec2baaea3999083796d60594f433a2f24190e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607080d1113141618191a1a1b1b1a1a191818161413110d0807060401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070707070707070707070707070707070707070707070707070707070707070707070707060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303a444c5254545454545454545454545454524c443a2f24190d01000000000000000000000000000000000006111b252d343a3d3f4646464646464646464646463c3a37312a22180d03000000000000000000000000000000000000000000000000000000000000000000000000080e161e242930394045464d535558555d60626263636262605d56595553504946413a332d261d180f0a010000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201305121f2b3744505b6573808d9aa8b2bdc9d5d0c3b6aa9d908377696d7985929fabb8c5d2d3c7baaea3988a7e7164564c4135291d1113202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202b353e48515b626c717d8590949fa2aaafb5babec5c6cacac6c5c1bdb9b7b6b5b4b3b3b5b6b8b9bdc2beb9b2ada69f9792867d70798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e19242f3a444f59606d79839199a3aeb9c2ced3ccc7c3c2c0c1c5cad7cbbfb4aba0958d80736b60554c41352920170d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003070c10121316191d20212324262627272827262625242321201d19171413110d08050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708080705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e38424c565e616161616161616161616161605d564c4135291d110400000000000000000000000000000000010d18232d373f464a4b5353535353535353535353524847433c342a1f150b010000000000000000000000000000000000000000000000000000000000000000000008111a202830353e434b5153575f616568676d6e6f70706f6f6d68696662605b53524c443f382f2a211c130b0200000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130613202d394653606c7884919eabb7c4ced5c9bdb2a8998c7f73666675818e9babb5c0ccd6cbbfb4aa9c8f8275685d5245392c201308202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d47505a626d727e8792979fa6aeb4bbc0c7cacfc9c5bebab8b5b2acaaa9a8a7a6a7a8a9abadb2b6b9bbbeb9b0a9a19892877d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17202935414c56606b74808d95a0abb5bfcbd3cac1bbb7b5b3b4b9c0c8d1c6bdb1a79f93877d6f675d51453e32291e1408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12181c1f202324292d2e2f3132333434343433323231302d2c29242421201d1914120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a090806030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e1214151414110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a545e686d6e6e6e6e6e6e6e6e6e6e6e6d685d5245392c2013070000000000000000000000000000000006121d29343f4951565860606060606060606060605f55534e463c31271d120700000000000000000000000000000000000000000000000000000000000000000008121a232c323a41454f555c6064696e7275777a7b7c7d7d7c7b7a7876726f6c65615d565049413c332e251d140b01000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130f1b27333f4953626f7c8996a1adb9c5d6d2c5b9ada196887c6f6264717e8b99a4afbbc7d4d0c5b9ac9f92867a6d6054473a3024190d202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d1925303a444f59616c727f889299a2a9b0babec5cbd0cac5beb9b3adaba8a8a09e9c9b9a999a9b9c9ea1a9a9acafb5bbbbb3aaa39992857b8894a1aebbc7d4d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29323b45525d68707d88939fa7b1bdc6d1cdc1b8b0aaa8a6a8aeb6c0cbcfc3bbafa49991847a6d605a50443b3025190f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d11171c1f23282c2d2f3035393a3c3e3f4040414141403f3f3e3c3a393530312d2c2924211e1a14100b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415161616161616161616161616161616161616161616161616161616161616161616161615130f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141a1e212121201e19140d07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c666d7a7a7a7a7a7a7a7a7a7a7a7b7a6d6054473a2d211407000000000000000000000000000000000915222e3a46515b62656c6c6c6c6c6c6c6c6c6c6c6c625f584e43392f23180e050000000000000000000000000000000000000000000000000000000000000008111a242c353e444c525961676d71777b7f8284868889898989888785827f7c78726d68605b534e453f372e261d140a010000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013121f2b3744505b6574808d9aa8b2bdc9d5d1c4b8ab9e9184786a5f616d7a86939facb9c6d2d3c7baaea3998b7e7164564c4135291d11202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a36414c56606b717e88939aa3abb3bbc2cad0cec5bfbab3ada9a29f9b979691908f8d8d8d8e909196989c9fa4abafb5bcb4aba1979083909ca9b6c3cfdcd4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b44505a606d7a84919aa4afb9c3cfcfc5bbb0a69e9c999ca4aeb9c3cfccc0b5aba1968e81746c61564c41362a21180c02000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d13181c22282b2e34383a3c3f414647494b4c4d4d4e4e4d4d4c4b4b49474541413e3a39352f2d2a261f1c160f0b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e141a1e21222323232323232323232323232323232323232323232323232323232323232323232322221f1b150e0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f252a2d2e2e2d2a251e18130c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d788587878787878787878787877e7164574b3e3124180b000000000000000000000000000000000b1824313d4a56626d727979797979797979797979796f6a5f554b40342920170b02000000000000000000000000000000000000000000000000000000000007111a232c363e474f565d606b70797e83888b8f91939a959696959596918f8c88847f7a726c655f57514940382e261c130a0000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201313202d394653606c7884919eabb8c4cfd5c9beb3a99a8d817467585e687683909da9b6c2cdd7cbbfb4ab9c8f8275685d5246392d2013202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313946525e686f7d86929aa4acb5bdc5cdd6ccc4bcb4aea9a19e97928e8b87848382818080828385888c8f93999fa4abb0bbb3a99f9490949fabb7c4d0ddd4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17222d38414d56616c75818e96a1acb6c0cbd6cabeb3a99e948f8d929ca7b1bdc6d1c7bdb2a89d938a7e70685e52463f332a1e140a00000000000000000000000000000000000000000000000000000000000000000000000000000000040c13181d24292d333839404446494c4c5254565759595a5a5b5a595958575654524c4d4a4745413b3a36312c271f1c17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f181f262a2d2e303030303030303030303030303030303030303030303030303030303030303030302f2e2b26201910070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141c222831363a3b3b39363029241d18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5663707d8a9794949494949494949285796d6053473a2d201407000000000000000000000000000000000c1825323f4b5865727f8686868686868686868686867c6f675c51453e32291d140a00000000000000000000000000000000000000000000000000000000060f19232c353e48505961686d747d848b9095989b9e9fa4aca3a3a2a9a19e9c9996918c867f776e6a635b524a40382e251c120800000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d200f1c28333f4a54636f7c8996a1adb9c5d6d2c6b9ada197897d7063565665727f8c98a7b1bcc8d4d1c5b9ac9f92867a6d6154473a302519202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3943505a616d7a859198a3acb6bec7cfd4cbc3bab2aaa29f97928b85827e7b7776757473747576787b7f83878e93999ea6aeb5b0a69f9c9fa6b0bbc7d3dfd4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e27333f49535e69717e8a939ea8b2bec7d2ccc4b9ada2978f82808d95a0abb4bfcbd0c4baafa59e92857a6e615a50453b30261c11060000000000000000000000000000000000000000000000000000000000000000000000000002080d161d24292f35383f44464a51535659565d6162646566676767676665656463605d565a5754514c4846423b38332b28221c140b0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e18212a31363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b37322a22190e04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f181d262d333b4246484746413b352f28231c150c0b04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d6875828e9ba9a1a1a1a1a1a89a8e8174675d5145392c1f1306000000000000000000000000000000000b1824313d4a56626d75828f9793939393939393989083796d60594f443b2f261b11060000000000000000000000000000000000000000000000000000030e18212b353e47505a616b707a818a91969d9fa7a8aaacafb6b0b0afb2adaba9a8a09e98928b837b726d645c524a40372e241a0e04000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20121f2b3844505b6674808d9aa9b2bdc9d5d1c5b8ab9e9285796d605354616e7b87959fabb8c7d2d3c7bbaea3998b7e7165564c41362a1d202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609060606060606060606060606060606060606060606060606060606060606060606060601000000000000000000000000000000000000000004101d2935404b55616c75818f97a1aab4bec7d0d4cac2b9b1a8a198928c857f7975716e69696867666768696a6e72767b81878f949fa3abb2b0aba9abb0b8c2cdd8e4d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303844505b656e7b85929ea5afbac4d0cfc4baafa59e92857a79839099a3aebac2ceccc0b9ada1978f82756c62574d42382e23170d030000000000000000000000000000000000000000000000000000000000000000000000050d14191f282f353a40454a5053545c60626669686d6f71727373747474737272716f6d68696764605d5555534d48443d38332d261d18120b03000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2a333b424648494949494949494949494949494949494949494949494949494949494949494949494947433c342a20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121821292f383f444d535454524c45403a342e271e1b160f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facadadadadaca096897c6f63554b4035291d1004000000000000000000000000000000000915222e3a46515b616d7a85919aa49f9f9f9f9fa0958d80746b61564d41382d22170d040000000000000000000000000000000000000000000000000009151f2a333d474f59616c717d848e939ea1a8abb1b5b7b9bbc0bcbcbcbdb9b8b5b2acaaa29f9490867f746e645c524940362c20160c020000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013202d394653606c7885919eabb8c4cfd5c9beb3a99a8d8174665c50535e697683909dacb6c0ccd7cbbfb5ab9c8f8276685e5246392d20202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23161313131313131313131313131313131313131313131313131313131313131313131313130e0d0b07030000000000000000000000000000000006131f2c3945515d67717e8a939ea9b3bcc6d0d6cdc2b8b0a79f9691867f79726d6764615e565c5a5a5a5b585f6265696e757b828c9299a1a9b2b7b6b7bbc2cad4dee1d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17232e38424d57606c77828f97a2adb7c1ccd5c9bdb2a89e938a7e716f7c86929fa6b0bcc5d0c9beb3a99e948b7e71695f544a3f34281f150b01000000000000000000000000000000000000000000000000000000000000000000070e171f252a313a41454b51545b6063666d6f7275787a7c7e7f8080818180807f7e7e7c7a787674716d6765615f57544f46443f382f29241d150d06000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313b454d53555656565656565656565656565656565656565656565656565656565656565656565655544e463c32261b0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c151d2328333b424a50575e61615e56514b444039302c27211b150e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e5865727e8b98a3aebabac0b6ac9e9184786c605346392f24180c000000000000000000000000000000000006121d29343f46525e68707d88939fa7b1acacb1a79d928a7d70685e53493f33271f160c010000000000000000000000000000000000000000000000040d1a26313c454f59616b717e8791979da5adb2b8bcc2c4c6c5c3c2c2c3c5c5c4c2bdb9b4aea69f98928c80746e635b51483e32281e13080000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201c28343f4a5463707c8997a1adb9c6d6d2c6b9ada197897d7063544a4d5765727f8c9aa4afbbc8d4d1c5b9ac9f92867a6d6154473b3025192c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1a1917130e08010000000000000000000000000005111d2935414c56606d7984919ea5afbbc4cfd8d0c4bbb0a69f9590847c736d67605c5554524d4f4e4d4d4f4e5355575f62696e777f879197a1a9b3bcc6c7cdd4dce6e1d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f28343f4a545f69727f8b949fa9b3bec9d3ccc3b9ada1968e81756c6a727f8c949faab4bfcacfc5bbb0a69f92867b6e665c50443c31271d120700000000000000000000000000000000000000000000000000000000000000010a1119202930363e434b51555d60666c7074797c7f828587898a8c8c8d8d8e8d8c8c8b8a89878582807d7a76726e6963605953504a423c352f271f181008000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d575f6163636363636363636363636363636363636363636363636363636363636363636363625f584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e171e272e343e454d545b60696e6e68605d55514a423e38322b26201a140d08010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3a47535f6a7683909daab4bfc8bbafa49a8c7f73655b5044372b1d12070000000000000000000000000000000000010d18232a36414c56606b73808d95a0aab4bfb9aea49e92857a6e655b50443c31281d120700000000000000000000000000000000000000000000010c16202b37424d57606b707d879299a1a9afb9bdc4c7c6bfbab8b7b5b5b6b8babec5c8c5bfbab0aaa39f928d80736d635a50443a3025190b0200000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201f2b3844505c6674818d9aa9b3bec9d5d1c5b8ab9e9285796d6053464854616e7b87939facb9c6d2d4c7bbafa3998b7e7265564c41362a1e2c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2726231f19120b020000000000000000000000000713202d3946525e68737f8c97a1adb7c1cdd6d2c7bdb2a99f948f837a6e6a605d55514b47464242414041424347484d53575f656c727c859197a2aab4bfcad6e0e6eee1d4c7bbaea194887b6e6155483b2e22150800000000000000000103040404040404040404040404040404040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313944505c666e7b86929fa6b0bbc5cfcfc3baaea49e91847a6d60606c78829098a2aebac1cdcdc1baaea2989083786d60584e43392f23180d040000000000000000000000000000000000000000000000000000000000010a131b232b323b414650555d60676d72787c8185898c8f9297959798999a9a9a9a999898979697918f8d8a86827f7b76706b64605b544e454039312a221a1109010000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f696e707070707070707070707070707070707070707070707070707070707070707070706f6a5f54473b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101920293039404550575f666c727b7a736d67605c545048443d37312a251f19130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54626e7b88959fabbcc6c6b9ac9f93877b6e6153493f33271b0b01000000000000000000000000000000000000060d1925303a444f59606d79839098a2aebac0b9ada1978f82776c60584e43392f24180f0500000000000000000000000000000000000000000008131e28323a47535f69707d869299a3abb2bbc1c9c2bcb7b4aeacaaa8a8aaabadb3b9bbc0c7c2bcb4aea49c928c7f736c61564c4135291d140a00000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20202d3a4653606d7985929eabb8c4cfd5c9beb3a99a8d8174665c504446535e697683909dacb6c0ccd7cbc0b5ab9c8f8276685e5246392d202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3939393939393939393939393939393939393939393939393939393939393939393939393939393433302b241d140b0100000000000000000000030f1c28333f4a54616d7a85929fa9b2bec9d3d7ccc0b5aba1968f82796e685f58514b45403b3a363034333431373a3c42474d535b606a6f7c859298a2aebac2ced8e2ede1d4c7bbaea194887b6e6155483b2e221508000000000000060a0e10111111111111111111111111111111110d0d0a070200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e18242f39434e58606d78839098a2aeb8c2cdd1c7bdb2a89d92897d70685d5b666e7b86929fa6b0bbc5cfcabfb4aa9f948c7f726a5f554b4034291f160c01000000000000000000000000000000000000000000000000000000020b141c252d353d444d525a61676d737a7f84898e9297999c9ea1a9a4a5a6a6a7a7a7a6a5a5a4a9a19e9c9a99928f8b88827d77716c665f58514b433c342c231b130a0200000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c6f6255493c2f22160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1117222b323b424b515a61696e787f86858079726d66615a544f47433c363029241e160d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c6673808d99a7b1bccabfb4aa9c8f8276695e5341382d22170b000000000000000000000000000000000000000008131e28323d45515c666e7b86929fa5afbabeb3a99f948c7f726a60554b40352921170c0200000000000000000000000000000000000000010d19242f3a44505a616e7b869298a3abb5bdc4c6bfbab0abaaa29f9d9c9b9d9fa2a9acafb6bec4c6bfbaaea49c918a7e71685e52463d2f261b1106000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d1c2834404a5463707d8997a1adb9c6d6d2c6b9ada197897c7063544a3f424d5765727f8c9aa4afbbc8d4d1c6b9ac9f93877a6e6154473b30252c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f62564946464646464646464646464646464646464646464646464646464646464646464646464646464646413f3c362e261d12080000000000000000000006121f2b3844505b66727f8c98a2aebbc4cfdbd4c7bbafa49991847a6d675e564e45403a342e2d2a25272727262b2e31373c41495058606a6f7d86929fa6b0bcc6d0dce7e1d4c7bbaea194887b6e6155483b2e22150800000000040b11161a1d1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1a1917130e080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202935404b55606a73808c959faab4bfcad7cbc0b5aba0968d80746b6056545f69717e8b949ea9b3becad0c5bcb0a69f92877c6f675c51453d31281e13080000000000000000000000000000000000000000000000000000010b141d262e373f474f565e616c717a80858c91969a9ea2a9a8abadb3b1b2b3b3b4b4b3b3b2b1b1b2adaba9aba39f9c98948f89837e786f6a605d554e463e352d251c140a01000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808989898989898989898989898989898989898989898989898989898989898989898983776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b141b2227343d444c545c606c717b838c92928c857f79716c636059534e46423b352f2820160e0400000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7984919eabb8c2c6baaea2988b7e7164574d422f261b11060000000000000000000000000000000000000000020c16202834404b545f69717e8b939ea8b2bdbbb0a69f92867c6f675d51453e33291e140a0000000000000000000000000000000000000004111d2935414c56616c76828f98a2aab4bdc6c5bcb4aea69f9c9892908f8f9092979b9fa4acb2bac3cbbfb6ada39e92857a6d61594f41382d22170b000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d1f2c3844515c6674818e9aa9b3bec9d5d1c4b8ab9e9185786c605346393b4854616e7b87939facb9c6d2d4c7bbafa4998b7e7265564d42362a2c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625652525252525252525252525252525252525252525252525252525252525252525252525252525252524d4c4740382e24190e030000000000000000000613202d394653606c7884919eaab3becdd6d5c9bdb2a89f93877d70685e554c443c352f2823201e191b1a1a1a1f21262b2f383f444e58606b717e8a949eaab4bfcbd6e3e1d4c7bbaea194887b6e6155483b2e221508000000050e151c2227292a2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2726231f19120a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323a45515d676f7c87929fa7b1bcc6d0cfc6bbafa3999184796d60594f4d57626c75828f97a1adb9c1cccec2bbaea3999183796d60594f433a2f24190e05000000000000000000000000000000000000000000000000000a131d262e384049515960686e767e848c92979ea1a8abadb3b5b8b9bebdbfbfc0c0c1c0bfbfbebdbeb9b8b5b5aeaca9a69e9c95908a837c736d675f584f473f372e261c130a000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d96969696969696969696969696969696969696969696969696969696969696969083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c151d262d333e464e565e666d747e8690959f9f97928b847e76706b625f58524d45413a322820160c0200000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5663707d8996a1adb9c5c5b8ac9f92857a6d6053473b3120140a00000000000000000000000000000000000000000000050e18232e39424d57626c75818e96a1abb5c0baaea3999184796d605a50453b30261c11060000000000000000000000000000000000000713202c3945525d68717e8a949faab4bcc6c5bcb3aaa29f94908a858482828385898e939aa0a8b1b9c3c8bfb9ada1978e81746b6053493f33271b0f030000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d202d3a4653606d7985929eabb8c5cfd5c9beb2a99a8d8074665b5044383a46525e697683909cacb6c0ccd7ccc0b5ab9c908376695e52463a2d2c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5a58524a40362b1f1307000000000000000003101c28343f4a5463707d8a96a0acbcc5d0ded2c5b9aca1968d80736b60564c433b3229241d1814110e090d0a0f12151a1d262d333d464f59616c76828f98a3aebac7d3e0e1d4c7bbaea194887b6e6155483b2e2215080000040e1720272e33363737373737373737373737373737373734322f2a241c140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f1925303a444f59606d79849199a3afb9c3ced1c6bcb1a79f92877c6f675d514745505a616e7a85929ea5afbac4d0cbbfb5aba0958d80736b60564c41352920170d02000000000000000000000000000000000000000000000008121c252e38404a525b626b707a828a91969fa2a9adb2b8b9bec2c5c6cacfcbcccdcccbcbcccbcbcfc9c6c4c2bfbbb9b6b0aaa79f9d95908780796f6a6159514940382e251c12090000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161e272f383f44505860686e78818a92989fa7a9a19e96918a837d756f6a615e57524c443a32281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d6875818e9ba9b2bdc9bdb2a89b8e8174675d5145392c201302000000000000000000000000000000000000000000000007121d27303c45505a606d7a849199a3afbbbfb4aba0968e81746c61574d42382e23170d040000000000000000000000000000000004111d2935414b55606d7a85929ea6b0bcc5c6bcb3a9a298928b837e7a77757577797d81889196a0a7b1bac4c9beb3a99d93897d70655b5044372b1f13080000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2834404b5463707d8997a2adb9c6d6d2c6b9ada197897c6f63544a3f3336424d5765727f8b9aa4afbbc8d4d2c6b9ac9f93877b6e6154473b30253946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645c52473c3023170b000000000000000006121f2b3844505c6675818e9ba8b2bdced7d6cabfb4aa9e9184786d60594f443a31292018130c0705020000000206090b141b2227343d46505a616e7b86929facb8c3ced9e5d4c7bbaea194887b6e6155483b2e22150800000b15202931393f4244444444444444444444444444444444403f3b362e261c1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17212935414c56616b74808d96a0abb5c0cbd7cbbfb4aaa0958d80736a60554b403f46525e68717e8a939ea8b2bec7d1c6bdb1a79f93887d70685d52453e32291f14080000000000000000000000000000000000000000000007101a242e37404a525c636d727d858f949ea1a8adb3b9bdc4c6cacfd1cbc7c5c3c1c0bfbfbebfc0c1c2c5c6cacfcbc7c5c2bbb7b1aba79f99928d847c706b625b524a40372e241b120800000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7afafafafafafafafafafafafafafafafafafafafafafafafafafafafaa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e161f2830394149505a616a6f7a838e939fa2aab1b3ada8a09e959089827c746e69605d564c443a3024190d0100000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb8c4c5b9aca096897c7063554b4035291d10040000000000000000000000000000000000000000000000000b151e2a333f45525d686f7d87929fa7b1bcbdb2a89d938a7e71695e544a3f34281f160c010000000000000000000000000000000613202c3945515d6774808d97a1adb8c2cbbfb4aaa29792867f76716d676968666d70757d849095a0a8b2bdc9c5bbafa59d9083786c6053463a3025190d0100000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2c3845515c6674818e9ba9b3becad6d1c4b8ab9e9184786c605346392d303b4754616e7b87939facb9c6d2d4c7bbafa4998b7f7265574d42362a3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c7979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746e64584c3f3326190d00000000000000000713202d3a4653606d7985929eabb8c4ceded3c6baaea2988c7f72665c50473d32281f170e0701000000000000000000020a1117222b343e46535f6973808d9aa8b1bdc8d4e1d4c7bbaea194887b6e6155483b2e2215080006111c27313b434a4f515151515151515151515151515151514d4b4740382e24190e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29333b46525e68707d89929da8b2bdc7d1cec5baaea3989083786d60584e433936414c56616c75818e96a1acb6c0cccfc3bbafa49a91847a6d605a50443b3025190f060000000000000000000000000000000000000000030d19222c364049525c646e737f8791979fa6adb2babec5c9cfcdc8c4c3c0bbb9b6b5b4b3b2b1b2b3b4b5b8babec1c5c6caccc7c3bcb8b1aba39f9691867d726d645c52493f362d241a0f06000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3bcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcb6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1720283139424a535b606c717c8490959da5aeb4bcbeb9b2aca79f9d948f87817b736d685d564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000006121e2b37424e5765727e8b98a3aebac7c0b6ac9e9184786c605346392f24180d01000000000000000000000000000000000000000000000000030c18212935414c56606b73808c959faab3bebaafa59f92857b6e665c50443d31281e13080000000000000000000000000000000714212d3a4754606d7a86929fa9b3becac7baaea39892857c726d64605d55545c60636b707a839096a0acb9c1cdc0b8aca095897d7063564c41362a1d110500000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2d3a4653606d7985929fabb8c5cfd5c9bdb2a99a8d8074665b5044382b2d3a46525e697683909cabb5c0ccd7ccc0b5ab9c908376695e52463a2d3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3dfd2c5b9ac9f928685858585858585858585858585858585858585858585858585858585858585858585858585858585858585868074675a4d4134271a0e0100000000000000091623303c4956636f7c8997a2adb9c6d2dfd2c5b8ac9f92857a6d60544a3f352b20160d0500000000000000000000000000061019222a36424d57626f7c8895a0acb8c5d1ded4c7bbaea194887b6e6155483b2e221508000a16222e39434d555b5d5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5a58524a40362a1f13070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b45505a616d7a85919ea4aebac3cfd0c5bcb0a69f92867c6f665c51463d31303b44505a606d7a84919aa4afbbc3cfccc0b6aca1968e81756c61564d41362a21180c03000000000000000000000000000000000000010b151f2b343e48525b646e74808c9299a1a9b0b9bdc4cacfcbc7c2bcb8b6b5afaca9a8a7a6a5a5a5a6a7a9abadb3b4b8babfc5c7ccc8c2bdb5afa8a09892877f736e645b51483f362c21180c030000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002020304040504030201000000060f182129323a434b545c656c737e8691969fa7afbabec5c9c3bdb9b1aba69e99938e86807a6d685d5246392d201307000000000000000000000000000000000000000000000000000000000000000000000000000814212e3a47535f6a7683909daab4bfc8bbafa49a8c7f73655b5044372b1d12070000000000000000000000000000000000000000000000000000060f19242f3a444f59606d78839098a2aebac0baada2979082786d60584e433a2f24190f060000000000000000000000000006121f2b37434e5865717e8b98a2aebbc5c8bcb1a79f92867d6f6a625b53514b4a50535960686e7a84919ea5afbdc7c8bcb1a79b8e8175685e5246392d20130700000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392834404b5563707d8a97a2adbac6d3d2c5b9ada196897c6f63544a3f33282a36424d5765727f8b99a4afbbc7d4d2c6b9ac9f93877b6e6154483b313946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3e0d3c7baaea39992929292929292929292929292929292929292929292929292929292929292929292929292929292929292928d8074675a4d4134271a0e01000000000000030f1c28333f4a546673808d99a9b3becad6d5c9bdb2a89a8d8074685d5242382e23190e0400000000000000000000000000000007101a26313b47535f6a7784919daab7c4d0ddd4c7bbaea194887b6e6155483b2e221508000e1a27333f4a555f676a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a67635c52473b2f23170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17222d38414d57616c75818e97a1adb6c0ccd6cabfb4aa9f948c7f726a5f544a40342b29323e45525d68707d88939fa8b2bdc7d1c7beb2a89e938a7e71685e52463f332a1e150a00000000000000000000000000000000000007121d27313d46505a636d74808d929fa3abb3bbc2c9cfcfc7c0bbb9b1aba9aba39f9d9b9a99989899999a9c9fa2a9a8acaeb4b7bbc2c7cfc7c0bbb2aaa299938b80736d635a50483e332a1e150b0000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3bfbfbfbfbfbfbfbfbfbfbfbfbfbfbfbfbfbfc5c6cad0d7d6d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090b0d0e0f1010111211100f0e0d0c090f18212a333b444c555d666d77808b9298a1a8b1b9c0cad0d5cec8c2bcb8b0aba49f98928d847a6d6154473a2e211407000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54626e7b88959fabbcc6c6b9ac9f93877b6e6153493f33271b0c0100000000000000000000000000000000000000000000000000000008131e28323d44505c666e7b85929fa5afbabeb3a99f948c7f736a60554c41352921180c030000000000000000000000000815212e3a47535f6a7683909daab4bfcdc5b8aca0958c7f726b6058514745403f44464f565e686f7d89939eabb5c0ccc3b9ac9f92867a6d6154473a2f23180c00000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392c3845515c6774818e9ba9b3becad6d1c4b8ab9e9184786c605346392d2225303b4754616e7b87939facb9c6d2d4c8bbafa49a8c7f7265574d42363946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3e3d7cbbfb4aba39f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9a8d8074675a4d4134271a0e0100000000000006121f2b3844505b667683909ca9b6c3cfdbd2c5b9ada196887b6e62564c4130261c1107000000000000000000000000000000000009141f2b37434e586673808c99a6b3bfccd9d4c7bbaea194887b6e6155483b2e22150800101d2936424f5b677177777777777777777777777777777777736e63584b3f3226190d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e27333f49535e69717e8b939ea9b2bec8d2cdc5baaea2989082786c60584e42392e22202935414c56606b74808d96a0abb5c0cbd0c4baafa59e92857a6e615b51453c30261c110600000000000000000000000000000000000c18242f39434e58616c73808c929ca4afb5bdc4cdcfc9c0bdb5afaca79f9d999992908e8d8c8c8b8c8d8e8f9297979b9fa2aaaab0b7bbc1c8cbc3bcb4aba49f928c7f726d625a50453c30271d120700000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b8babec5ced7d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000000000000000000000010507070c10131416181a1b1c1d1d1e1e1d1d1c1b1a181618212a333c454d565d676d78818d929fa3aab2bac2cbd6dbd6cdc4beb9afa9a19e949087807a6d685d5246392d20130700000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b6673808d99a7b1bccabfb4aa9c8f8376695f5341382d22170b00000000000000000000000000000000000000000000000000000000010c162028343f4a545f69717e8a939ea8b2bdbbb0a69f92877c6f675d51453e332a1e150a0000000000000000000000000915222f3c4855626f7c88959fabbcc6c9bdb2a99d9183786d60594f463f393534383d444c56606b74818e99a4afbbc7c7baaea3998c7f7265554b4034291c1004000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d3a4653606d7985929fabb8c5d0d5c9bdb2a89a8d8074655b5044372b1c202d3946525e687683909cabb5c0ccd7ccc0b6ac9d908376695e53463a3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3e7dcd1c6bdb4aeacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaca79a8d8074675a4d4134271a0e010000000000000613202d394653606c7985929facb8c5d2ded1c4b8ab9e9184786a5f53443a2f1e150a000000000000000000000000000000000000030f1b26323e4a5764717d8a97a4b0bdcad7d4c7bbaea194887b6e6155483b2e22150800111e2a3744515d6a77848484848484848484848484848484848073675a4d4034271a0d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303944505b656e7b85929fa5afbbc4cfcfc5bbb0a69f92867b6e665b50463c30271c19242f3a444f59606d79849199a3afbbc3ceccc1b9ada2978f82766d62574d42382e23170d0300000000000000000000000000000004101d2935404b55606a717e8a929ca4aebbc0c7cfccc4bdb9afaba39f9b95908c8986838281807f7e7f80818285888a8e92989c9fa6aab0b8bdc3ccc5bdb5afa49c918b7f716c61574d42392e23180c03000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6abaeb3bcc5d0d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000000205080d111314181d1f202224262829292a2b2b2a2928272625232129333c454d575e686d79828e939da4aeb4bcc4ccd4d7cfcac1bbb2ada59d97918a827c746d685d564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eabb8c2c6baaea2988b7e7164574d422f261b11060000000000000000000000000000000000000000000000000000000000040d17232e38424d57616c74818e96a0abb5c0bbafa39991847a6d605a50453b30261c11060000000000000000000003101c28343f4a546673808d99a7b1bccec5b9ada1968a7d70665c50473d342c29282b323b444f59616e7b87939facb9c6cbbfb4ab9d908376675c5145382c1f1306000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c6053463935404b5564707d8a98a2aebac6d3d2c5b9ada196897c6f6353493f33271b1e2a36414d5665727f8b99a4afbbc7d4d2c7b8ab9f95877b6e6154483c3146535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3ede2d8cfc6bfbab9b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b3a79a8d8074675a4d4134271a0e010000000000000815222f3b4855626e7b8898a2aebac6d3dbcec1b5a89b8e827568574e4232281e0c03000000000000000000000000000000000000000a1623303c4956636f7c8996a2afbcc9d5d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c798691919191919191919191919191918e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18232e39424e58606c77828f97a2adb7c1cdd5c9beb3a99e948b7e71695f544a3f342a1e15131e28323d45515d676f7c87929fa7b1bcc6d0cabeb3a99e948b7f72695f544a3f34281f150b0100000000000000000000000000020c1a242c3845515d676f7c86929fa4adb6bfcbd1c9c1bab2ada59d99928e8983807d7a76757473727272737476787b7e81858a8f949c9ea6acb2bbc0c7c7c0bbada39f93877e70695f544b4034281f1409000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9999999999999999999999999999999999999999999fa2aab3becad0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000003090e1214191e202124292c2d2f31333535363737383736353433322f2d333b454d575f696e7a838f949ea5aebabfc6ced6d4cdc5beb9afa9a19e938e847e766f6a605d564c443a3024190d01000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5663707d8996a1adb9c5c5b8ac9f92857a6d6053473b3120140a0000000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d79849199a3afbbc0b5aba0968e81756c61574d42382e23170e0400000000000000000006121f2c3844505c667683909ca9b6c2cdc4b8ab9e9184786c60544a3f352b221d1c2029323d46525e6976828f9cacb6c0ccc5b9ac9f9286796d6053473a2d201407000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346393845515d6775818e9baab3becad6d1c4b7ab9e9184786c605346392d22171925303b4754616e7a87939facb9c6d1d4c8bcb1a7998c7f7266574d423746535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3f4eae1d8d1cbc7c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c0b3a79a8d8074675a4d4134271a0e010000000000000b1824313e4b5764717e8a97aab4bfcad6d6cabfb4aa988b7f7265584c3f3125160c00000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929d9d9d9d9d9d9d9d9d9d9d9d9b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2834404b545f6a727f8c949fa9b3bec9d3ccc4b9ada1978f82756c62574d42382d22180c0c16202935404b55606a73808c959faab4bfcbcfc5bbb0a69f92867b6e665c50443c31271d1207000000000000000000000000000a141e2c38434f59606d79849198a3aeb6bfc8d7c9c0b7afa8a19e928e86817c7673706d67686766656566666769696e7175797d82898f949da0a8afb6bec5ccbfbbafa49992867b6e665c51453b31261a0e020000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c9298a2aebac6d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000060b10141a1e21252a2d2e2f35393a3c3e4041424343444544434241403f3c3a3b454d575f696e7b8390959fa6afb7c0cbd0d8d6cbc2bbb3ada59e97918a8179716c625f58524c443a32281e13080000000000000000000000000000000000000000000000000000000000000000000000000613202c3945525d6875818e9ba8b2bdc9bdb2a89b8e8174675d5145392c20130200000000000000000000000000000000000000000000000000000000000000000a151e29333e45515d676f7c87929fa6b0bbbdb2a89e938b7e71695f544a3f342820160c0200000000000000000713202d3a4653606d7985929facb8c5cbbfb4ab998d8073665b5042382e2319101017202a36424d5764717e8a9aa4afbbc8c7bbaea399897c6f6256493c2f231609000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346393a4753606d7985929facb8c5d0d5c9bdb2a89a8d8073655b5044372b1b1114202d3946525e6876838f9cabb5c0cbd7cdc2b6aa9d908377695f53463a46535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3f0f3eae2dcd7d3d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2cdc0b3a79a8d8074675a4d4134271a0e010000000000000c1926333f4c5966727f8c99a5b2bfd0dbd3c6baaea298887c6f6255493c2f22160900000000000000000000000000000000000000000714202d3a4753606d7a8693a0adb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929faaaaaaaaaaaaaaaaaaaaa89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313a45515c666f7c86929fa6b0bcc5d0d0c4baafa59e92857a6e615a50453b2f261c1006040d18242f39434e58606d78839098a3aebac2cecdc2baaea2989083786d60584e43392f24180e04000000000000000000000006111c2630384854606b74808d96a0aab4bfc8d1c9c0b7afa59e969189817b756f6a6663605d555a595958595a5b575f6164676d71767c828991969fa4acb3bcc4ccc0b5aba2989083796d60574d42362a1e12050000000000000000000000000000000000000000000000000000000a1723303d4a5663707d7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f85929fabb8c5d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000070c11171c1f262b2d3036393a3e404547494b4d4e4f5050515150504f4e4d4b4947454d575f696e7b8491959fa7b0b8c1c9d6d8d0cbc0b9b1a9a29e938e847d746d67615a534e45413a322820160c020000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb8c4c5b9aca196897d7063554b4035291d11040000000000000000000000000000000000000000000000000000000000000000030c17212935414b55606a727f8c949fa9b3bebaafa59f92867b6e665c50443d32281e130800000000000000000916222f3c4955626f7c8898a2aebac6c7baaea399887c6f62544a3f30261c1107050e1a25303b4754606d7a86939facb9c6cbbfb5ab988c7f7265594c3f32261906000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c60534635404b5564717d8a98a2aebac6d3d2c5b9ada196897c6f6253493f33271b0a111e2a36414c5665727e8b99a3afbbc7d4d1c4b8ab9f95887b6e6155483c46535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3f0e9e0d8d2cdc9c8c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c0b3a79a8d8074675a4d4134271a0e010000000000000e1b2734414e5a6774818d9aa7b4c0cddad2c5b8ac9f9285796d6053463a2d20130700000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb7b7b7b7b7b7b7b7b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b18242f3a434f59606d79839098a3aeb8c2ced2c7beb2a89e938a7e71685e52483f33291d140a000007121d27313d44515c666e7c86929fa6b0bcc5d0cabfb4aa9f958c7f736a60554b40352920160c02000000000000000000000b17232e3842505a636f7c88939fa8b2bcc6d0c9c0b7afa59d938e847d746e696260585653514b4e4d4c4b4c4d4e4d5355555d60646a6f757c848d939aa2a9b2bbc3c7bdb4aaa0958d8074695f53463a2d2114070000000000000000000000000000000000000000000000000000000916232f3c4855606b707373737373737373737373737373737373737373737884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000030b12181c23282b31373a3b4146474b4b51535557595b5c5c5d5e5e5d5c5b5a5958565451575e696e7b849196a0a7b1b9c2cad3d6cec6bfbaaea79f97928a817a706b605d555047433c352f2820160e0400000000000000000000000000000000000000000000000000000000000000000000000006121e2b37424d5765717e8b98a3aebac7c4b7ab9e9184786c6053463a2f24180d01000000000000000000000000000000000000000000000000000000000000000000060f18242f3a434e58606c78828f97a2adb9c0baaea2989083786d60594f443a3024190f06000000000000000c1825323f4b5865727e8b98aab4bfcac5b9ac9f9286796d6053463a2d20150a00000914202c3945515d677784919daab7c4d1c1b5a89b8e8275685b4f422d22170b000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c6053463945515d6775828e9baab4bfcad6d1c4b7ab9e9184786c605346392d22170b0e1925303b4754616e7a86929facb9c5d1d4c8bcb1a7998c7f7266574d4246535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3eae0d7cec7c1bdbcb9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b3a79a8d8074675a4d4134271a0e010000000000000f1c2936424f5c6975828f9ca8b5c2cfdbd0c4b7aa9d918477665c5044382b1f120600000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c4c4c4c4c4c4c1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2935414b55606b73808d95a0aab4bfc1c1c1c0b6aca1968e81756c61564c41362d21170b020000010b151f2834404a545f6a727f8c949faab3bec1c1c1bcb1a79f92877c6f675d51453d32281e130800000000000000000003101c28343f4a54616c7683909aa4afbac3ceccc1b7afa59d938e817a706b615e57544e4a47454041403f3f3f40414246484b51535860626b6f7980889297a1a9b2bac3c4bab0a69f93867b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000714202c38444f59606366666666666666666666666666666666666666666b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000040a0c151c23282e34383c4246484c525457555d606264666868696a6a6b6a696867666562605d5e696e7b849196a1a8b1b9c2cbd3d4ccc4bcb4aea49d9590857e756d686159514b433e373129241e160d04000000000000000000000000000000000000000000000000000000000000000000000000000814212e3a47535f697683909caab4bfc7bbb0a6998c8073655b504437281d1307000000000000000000000000000000000000000000000000000000000000000000000007131d28313d44505b666e7b85929ea5afb9beb4aa9f958d80736b60564c41352921180c030000000000010e1b2834414e5b6774818e9aa7b4c1d0c3b6aa9d908377665c5145382c1f1303000004111d2935414b556875818e9ba8b4c1cec4b7aa9d9184776a53493f33271b0f030000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c6053463a4753606d7a86929facb8c5d0d5c9bdb2a89a8d8073655b5044372b1b11060814202d3946525e6876828f9cabb5c0cbd7cdc3b7aa9d908377695f534746535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3e3d8cec5bcb5b1afacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaca79a8d8074675a4d4134271a0e01000000000000111d2a3744505d6a7783909daab6c3d0dcd0c3b6a99d9083766a544a3f34281c100300000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c5d0d0d0d0cec1b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3845515d676f7d87939fa7b1b4b4b4b4b4b4afa49a91847a6d605a50443b30241b0f0600000000030d18232e39424e58606c77828f98a2aeb4b4b4b4b4b4afa3999184796d60594f443a3024190d01000000000000000006121f2b3844505c66707d8a959facb6c0cccfc4baafa59d938e81776d686059524d47433d3a39352f333232333331363a3b4045474e545960676d747d859197a0a8b2bbbcb2a89f948d8073695f53463a2d21140700000000000000000000000000000000000000000000000000000004101c27333d474f5556595959595959595959595959595959595959595e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000060b151b1e272e34383f44464d5355565e616468676d6f71737475767677787776757473726f6d67686e7b849196a1a8b2bac3ccd4d4cbc2bab2aaa39f928d837b716c615d564f45413a312b262019130c0400000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54626e7b88949fabbcc6c4b7ab9f94887b6e6153493f3327160c010000000000000000000000000000000000000000000000000000000000000000000000010c161f28333f4a545e69707e8a929da7b1bcbcb1a79f93877d70685d52463f332a1e150b0000000000020f1c2935424f5c6875828f9ba8b5c2cdc1b4a79a8e817467544b4034281c10040000010d18242f3f4c5966727f8c99a5b2bfccc5b8ab9e928578655b5044372b1f12050000000000000000030607080f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140808080807060401000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346414b5564717e8a98a2aebac6d3d2c5b9aca196897c6f6253493f33271b0a0005111e2a36414c5665727e8b99a3afbbc7d4d1c4b8aca095887b6e62554846535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3ddd2c7bcb2aaa4a29f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9a8d8074675a4d4134271a0e01000000000000111e2b3844515e6b7784919eaab7c4d1dbcfc2b5a89c8f8275695c4f422e23170b0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c5d2dddddbcec1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3842505a606d79849199a4a8a8a8a8a8a8a8a8a89f93887d70685d52483e32291e120900000000000007121c27303c44505b656e7b85929fa5a8a8a8a8a8a8a8aba0968d80746b60564c4135291d110400000000000000000713202d3a4653606d7884919da7b1bec7d2c9bdb2a89e938e81776c655d564f46423b37322d2c29242626252627262a2d2f35383d43474f555d606b707c859196a0a9b3b4aaa1968f82786d60574d42362a1e1205000000000000000000000000000000000000000000000000000000000b16212c353d44484a4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000020a111720262b303940444a5053575f6166686d7175777a7c7e8081828383848483838281807e7c7a77737a849196a0a8b2bac4ccd5d3cac2b9b1a8a198928b80786e69615a524c443e352f281f1b150d0801000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b6673808d99a6b0bccabfb4aa9c908376695f5341382d22170b00000000000000000000000000000000000000000000000000000000000000000000000000040d17222d38424d57616c74818e95a0aab4bfbbafa49991847a6d615a50463c30271d12070000000003101d293643505c6976838f9ca9b6c2ccbfb3a6998c807366594d402e23180c00000000071825313e4b5864717e8b97a4b1becac6b9ac9f9386796c605346392d201306000000000000060c10121314141b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e2114141414141413110d070100000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c60534645515d6775828f9baab4bfcad6d1c4b7ab9e9184786a605441382d22170b00010d1925303b4754616d7a86929facb9c5d1d4c8bcb1a7998c7f7366584e43535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3d9cdc1b5aaa09995939393939393939393939393939393939393939393939393939393939393939393939393939393939393938d8074675a4d4134271a0e01000000000000121f2b3845525e6b7885919eabb8c4d1dbcec1b4a89b8e8175685b4e4235281b060000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54616c74818e969b9b9b9b9b9b9b9b9b9b9b968d80746b60564c41362c20170d00000000000000000b151e27333f49535e69717e8b939b9b9b9b9b9b9b9b9b9b9b93887d70685d5245392c2013070000000000000005121e2a36424d5764707d8a95a0acb9c2d0cfc6b9ada1968e81776c655b534c443d36302b2720201d181a1918191a1a1e2124292c32373d434b5159606a6f7b849197a1abaea29891847a6d665c50453b31261a0e0200000000000000000000000000000000000000000000000000000000050f1a232c33383c3d404040404040404040404040404040404045515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000050b141b222732373e424a51545c6064696e73777a7e818486888a8c8e8f8f909191908f8e8d8c8b89868380839196a0a8b2bac4ccd6d2c9c1b8b0a79f9691867e746d665e575046413a3229241d160d0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eabb7c2c6baaea2988b7e7165574d422f261b1106000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3b45505a606d79839198a3aebac0b5aba1968f81756d62584e43392e23180e0500000004111e2a3744515d6a7784909daab7c3cbbeb2a5988b7f7265584c3f32251907000000000a1724313d4a5764707d8a97a3b0bdcac7bbafa499877a6d6054473a2d21140700000000030a11171c1f202121212835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21212121212121201d18130c04000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c6053464754606d7a86929facb8c5d0d5c9bdb2a89a8d807367584e432f261b110600000814202d3946525e6876828f9cabb5c0cbd7cdc3b7aa9d9084776a5f5347535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3d6c9bdb1a4998e8986868686868686868686868686868686868686868686868686868686868686868686868686868686868686868074675a4d4134271a0e01000000000000121f2c3945525f6c7885929fabb8c5d2dacdc0b3a79a8d8074675a4d4134271a0e0100000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b66707d8a8e8e8e8e8e8e8e8e8e8e8e8e8e8e84796d60594f443a2f241a0e050000000000000000030c17222d38414d57626c75818e8e8e8e8e8e8e8e8e8e8e8e8e8e847a6d6054473a2d211407000000000000000714212d3a46535f6976828f9ca8b1bdcbd1c6bdafa59e91847a6d655b5349413a322a251f1b1413110d070c0c0c090e1214181d1f272b313940454f585f696e7b859299a3a49f92867c6f685e544a3f332a1f140900000000000000000000000000000000000000000000000000000000000008111a21272c2f30333333333333333333333333333333333845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000070e171d262d333c434750545c60666d70767b8083878a8e91939a97999b9b9c9d9d9e9d9c9b9a99989a93908d9195a0a8b2bac4ccd6d2c8c0b7afa69f9590847c716c605c544d453e3530282018130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5563707d8996a1adb9c5c5b8ac9f92867a6d6054473b3121140a000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29333e45515d676f7c86929fa6b0bbbdb2a89e938b7e716a5f554b40342820170b02000005121e2b3845515e6b7884919eabb7c4cabeb1a4978b7e7164584b3e3125180b000000000a1623303d495663707c8996a3afbcc9ccc0b5ab94887b6e6155483b2e221508000000030c151c23282c2d2e2e2e2e35424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e2e2e2e2e2e2e2d2c29241d160d040000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c6053414c5664717e8a98a3aebac7d3d2c5b9aca196897c6f6256493d3223140a00000005111d2a36414c5665717e8b99a3afbbc7d3d1c5b8aca095887b6e625548535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c7979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746e64584c3f33261a0d00000000000000131f2c3946525f6c7985929facb8c5d2d9ccbfb3a6998c807366594d4033261a0d0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c78808181818181818181818181818181817c6f675d51473d32281e12080000000000000000000006111b262f3b45505a616d7a8181818181818181818181818181817e7164574b3e3124180b000000000000000815222e3b4855616e7b87939facb9c3cecbbfb5ab9d93897d70675d534941382f28201a140f0a06040100000000000205070c10151b1f272f353d464e575f69707d87929f9d928a7e716a5f564c42382e21180e0300000000000000000000000000000000000000000000000000000000000000080f161c2023232626262626262626262626262626262b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000008111920292f383f444e545a61666d72787d82878c90939a9b9e9fa4aca6a7a8a9a9aaabaaa9a8a7a6aca49f9d999da0a7b1bac3ccd6d7cec0b6aea59e948f837a6f6a625a514b423b3329241e160e07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6775818e9ba8b2bdc9bdb2a89b8e8174675d5145392c20130200000000000000000000000000000000000000000000000000000000000000000000000000000000020b17212935404b555f6a727f8b949ea9b3bebaafa59f92867c6e675c51453d32291d140a000006131f2c3946525f6c7985929facb8c5cabdb0a4978a7d7164574a3e3124170b000000000916222f3c4955626f7c8895a2afbbc8d2bbafa295887c6f6255493c2f2216090000000a151e262e34383a3b3b3b3b3b424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473b3b3b3b3b3b3b3b3a39352f281f160c0100000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605345525d6875828f9baab4bfcbd6d1c4b7ab9e9184786a6054473b2e221502000000010d1925303a4754616d7a86929facb9c5d1d4c8bcb1a7998c807366584e535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645c52473c3024170b0000000000000013202c3946535f6c7986929facb9c5d2d9ccbfb3a6998c807366594d4033261a0d0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c5d2dbdbdbcec1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b666c747575757575757575757575757575756f6a60554b40352b20160c0000000000000000000000000a141d29333e46525e686d757575757575757575757575757575716c6155493d3023170a00000000000005121e2a36424d576673808c9aa4afbbc8d3c7bbaea3998e81746b60554c41382f261d160d090200000000000000000000000000040a0d151d2429343c454d57606b727f8b94948d80736c61584e443a30261c0f06000000000000000000000000000000000000000000000000000000000000000000050b1014161719191919191919191919191919191e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000009121a232b333b414950585f626c71797f848a8f939a9d9fa4acaaacafb6b3b4b5b6b6b7b7b6b6b5b4b3b6afacaaa6aaacb1b9c3ccd5dbd0c6bcaea49d938e82796d685f585045403930292119130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb8c4c5b9aca196897d7063554b4135291d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000050f18242f39434e58606c77828f97a1acb6c0baaea2989083796d60594f443a2f261b11060005121f2b3845525e6b7885919eabb8c4cabdb1a4978a7e7164574b3e3124180b00000000091623303c4956636f7c8996a2afbcc9c8bbaea195887b6e6255483b2f221508000006111c2630383f44464747474747474e5b6875818e9ba8b4c1cedbd3c7baada094877a6d61544747474747474747474745413a31281d130700000000000b1824313e4b5764717e8a97a4b1bdcad4c7bbafa39986796c60534754606d7a86929facb9c5d0d5c9bdb2a8998d807366584e43372b1f1306000000000813202d3946525e6876828f9cabb5c0cbd7cec3b7aa9d9184776a5f53535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f626060606060606060606060606060606060606060606060606060606060606060606060606060606060605a58524a41362b1f130700000000000000121f2c3945525f6c7885929fabb8c5d2dacdc0b3a79a8d8074675a4d4134271a0e0100000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c5cececececec1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a545b60676868686868686868686868686868686260584e43392f23190d04000000000000000000000000020b17212a36414c565e6168686868686868686868686868686864615a5045392d2115080000000000000714212d3a46535f697784909dacb6c0ccd2c5b9ac9f92867b6e61594f433a2f261d140b050300000000000000000000000000000000030b1218222a333b454f59626d76828f8f82786d605a50463c32281e140a0000000000000000000000000000000000000000000000000000000000000000000000000407090a0d0d0d0d0d0d0d0d0d0d0d0d0d121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000010a131b242c353d454d535b606a6f767e848b91969c9fa4acacafb6b7b9bbc0bfc1c2c2c3c4c4c3c2c1c0bfc0bbb9b6b3b7b8bcc3ccd5ded6cabfb4aa9d928d81786d675e564e463e342e271e170f0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b37424d5765717e8b98a2aebac7c4b7ab9e9184786c6053463a2f24180d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c44505b656e7a85929aa4afbbbfb4aaa0958d80736b61564c41382d22170d0304111e2a3744515d6a7784909daab7c3cbbeb1a5988b7e7265584b3f3225180c000000000a1724303d4a5763707d8a96a3b0bdc9cabeb3aa94877a6d6154473a2e21140700000c17232e38424a5053545454545454545b6875818e9ba8b4c1cedbd3c7baada094877a6d615454545454545454545454514b433a2f24180d01000000000b1824313e4b5764717e8a97a4b1bdcad2c5b9ac9f9286796c5f534c5664717e8b98a3aebac7d3d2c5b9aca096887c6f6255493d32271b0f030000000005111d2a36414c5665717e8b99a3afbbc7d3d1c5b8aca096887c6f6255535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625653535353535353535353535353535353535353535353535353535353535353535353535353535353534d4c4741382f241a0e0300000000000000121f2b3845525e6b7885919eabb8c4d1dacec1b4a79b8e8174685b4e4135281b060000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c1c1c1c1c1c1c1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424a50535a5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b56544e463d31271d11080000000000000000000000000000050f1925303a444c52545b5b5b5b5b5b5b5b5b5b5b5b5b5b5b575550483e34281d11050000000000000815222e3b4855616e7b8895a0acbec7d2c8bcb1a79b8e8175685e52473d31281d141413120f0b060b0907070401000000000000000000010710182129333d47515b626e7b86847a6d665c50483e342a20160c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000a131c252d363e474f575e656c727c838a91969ea1a8acafb6b9bbc0c4c6c8ccd2cececfd0d0d1d0cfcecdd2ccc8c6c3c0c4c5c8ced5dedfd3c6baaea2988d80786d665d554c443c3428231d150c05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f697683909caab4bfc7bcb0a6998c8073655b504437281d130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f27333f49535e68707d88939fa7b1bcbcb1a79f93887d70685e53493f33271f150b01101d293643505c6976838f9ca9b6c2ccbfb2a6998c7f7366594c4033261908000000000b1824313e4b5764717e8a97a4b1bdcac6baaea29886796d6053463a2d2013070003101c28343f4a545c6061616161616161616875818e9ba8b4c1cedbd3c7baada094877a6d6161616161616161616161605d554b4135291d1104000000000b1824313e4b5764717e8a97a4b1bdcad2c5b9ac9f9286796c5f53525d6875828f9caab4bfcbd7d1c4b7aa9e9184776a6054473b2b20150a0000000000010d1925303a4754616d7a86929facb9c5d1d4c8bdb2a8998c807366584e5f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f62564946464646464646464646464646464646464646464646464646464646464646464646464646464646413f3c362f261d13080000000000000000111e2b3844515e6b7784919eaab7c4d1dbcfc2b5a89c8f8275695c4f422e23170b0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb4b4b4b4b4b4b4b4b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f383f44464d4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4947433d342b1f150b0000000000000000000000000000000008131e29323a4146474e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4b49453e362c22170c000000000000000c1925323f4c5865727f8b98a7b1bcd0d1c5b8aca095897c6f63564d41352c26252321201f1b171917161413110d080c0a0807060400000000060f18212b353f47535f6a727f7c6f685d544a3f362c22180e04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000009121c252e373f48505960696e777f8790959ea0a8adb2b9bbc0c6c8ccd2d2d4d3d2d0cecccbcbcacbccccced0d2d4d2d0ccd0d1d4d9dfe7dfd2c5b8ac9f92857c716c605d554d453c342a21180f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7b88949fabbcc6c4b7ab9f94887b6e6153493f3327160c010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17222d38414c56616b74808d95a0aab4bfbbafa49a91857a6d655b50443c31271d12070f1c2835424f5b6875828e9ba8b5c1cdc0b3a69a8d8073675a4d403025190e020000000c1825323f4b5865727e8b98a5b1becbc5b8ab9f928578665c5044382c1f12060006121f2c3844505c666d6e6e6e6e6e6e6e6e6e75818e9ba8b4c1cedbd3c7baada094877a6e6e6e6e6e6e6e6e6e6e6e6e6d675d5145392c201306000000000b1824313e4b5764717e8a97a4b1bdcad2c5b8ac9f9285796c5f5254606d7a86929facb9c5d1d4c8bdb2a8998d807366584e43372b190f040000000000000813202d3946525e6876828f9cabb5bfcbd7cec3b7aa9e9184776a5f545f6c7985929facb8c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3939393939393939393939393939393939393939393939393939393939393939393939393939393433302b241d140b010000000000000000111e2a3744515d6a7784909daab7c3d0dccfc3b6a99c90837669544a3f34281c100300000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929fa8a8a8a8a8a8a8a8a8a8a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262d333839414242424242424242424242424242423c3b37322b22190d0300000000000000000000000000000000020c1720293036393a4242424242424242424242424242423e3d39342c241a100600000000000005111e2a36424d576875828f9ba8b5c2ced0c3b7aa9d9083776b6054443b342e3331302e2d2b272226242221201d191a1817151313100c070b0a08060f19232b37424e57636d726f6a5f564c42382e241a100600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000008111b242e374049515a616b707b828c92999fa7acb2b9bdc4c8ccd2d4d4d1d1cbc7c5c3c1bfbfbebdbebfc0c1c4c6c7ccd2d2d5dae1e3e9ecdfd3c6baaea29892867e746d675f574e463c332a21170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6573808c99a6b0bccabfb4aa9c908376695f5341382d22170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b444f59606d79839098a2aebac0b6aca1978f82776c60584e43392f24180e0e1b2734414e5a6774818d9aa7b4c0cfc2b5a89b8f827568564c41362a1e11050000030f1b27333f49536773808d9aa6b3c0cdc4b7ab9e9184786b544a3f34281c1003000713202d3a4653606d787a7a7a7a7a7a7a7a7a7a818e9ba8b5c1cedbd4c8bbaea195887c7a7a7a7a7a7a7a7a7a7a7a7a796d6054473a2d211407000000000b1824313e4b5764717e8a97a4b1bdcad2c5b8ac9f9285796c5f4c5665717e8b99a3aebbc7d3d2c5b9aca096887c6f6255493c32271b090000000000000005111d2935414c5665717e8b99a3aebbc7d3d2c5b9aca096887c6f62555f6c7885929fabb8c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2726241f1a130b020000000000000000000f1c2936424f5c6975828f9ca8b5c2cfdbd0c4b7aa9d918477665c5044382b1f120600000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7986929b9b9b9b9b9b9b9b9b9b9b9b9b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141c22282b2d343535353535353535353535353535352f2e2b2720191007000000000000000000000000000000000000050e171e252a2d2e35353535353535353535353535353531302d28221a1208000000000000000714202d3a46525e697885919eabb8c4d1ccc0b3a6998d807366594f46444041403e3c3b3937332d32312f2d2c292427252422201f1c181a18161513120f1a26313c45515b6366625f584e443a30261c12080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000007101a232d364049515b626c717d858f949fa3abb1b9bdc4c9cfd4d7d4cec8c5c4bfbbb9b7b4b3b2b1b1b1b2b3b5b7b9bbc0c4c6c9cfd3d8dee4e2d6cabfb4aaa298928b81796e695f584e453c332920170e0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eabb7c2c7baaea2988b7e7165574d422f261b110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29323e45515c676e7c86929fa5afbabeb3a99e948b7f726a5f554b40352920170b1825323f4b5865727e8b98a9b3becac4b7ab9e918478685e5246392d201408000005121f2b3744505b6576838f9ca9b6c2cfc2b5a99c8f8276695c4f432e23170c00000915222f3c4855626f7c878787878787878787878e939eaab6c3cfdcd5c9bcb0a4988e888787878787878787878787878074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad2c5b8ab9f9285786c5f525e6876828f9cabb5bfcbd7d1c4b7aa9e9184776a5f53473b2b20150a00000000000000010d1925303a4754606d7a86929facb9c5d1d4c8bdb2a8998d807366585f6b7885929eabb8c5d1d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23202020202020202020202020202020202020202020202020202020202020202020202020201a1a17130e0801000000000000000000000e1b2834414e5b6774818e9aa7b4c1cddad2c5b8ac9f9285796d6053463a2d20130700000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c79868e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f202728282828282828282828282828282823221f1b150f070000000000000000000000000000000000000000050c13191d20212828282828282828282828282828282423211d17100800000000000000000814212e3b4754616e7b8797a1adb9c6d2c9bdb2a8968a7d7063575553514a4e4c4b494746443f413f3e3c3a39352f3432302f2d2c282326252321201f1c17202a33404951575955534e463c32281e140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000040e19222c353f48515b636d727e8692979fa6aeb5bdc2c9ced5d8d1cbc7c3bdb8b7b5aeacaaa8a6a5a4a4a5a5a6a8aaacafb5b8b9bec4c7cdd3d8dedbd0c6bcb4aaa39f938e837b6f6a5f574d453b322920160c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414b5563707d8996a1acb9c5c5b8ac9f92867a6d6054473c3121140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17202834404b555f6a727e8b939ea8b2bdbbb0a69f92867c6f675d51453e33291d1415222f3c4855626f7b8897a2adb9c6c5b9ada196877a6e6154473b3025190d02000613202d394653606c7985929fabb8c5ccc0b6ac998c7f7366594c403326190600000915222f3c4855626f7b889494949494949494949b9ea5afbbc6d2ded8ccc0b5aaa0989594949494949494949494948d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad1c5b8ab9e9285786b5f54616d7a86929facb9c5d1d4c8bdb2a8998d807366584e43372b1f130600000000000000000813202c3945525d6875828f9cabb4bfcbd7cec3b7ab9e9184786a605e6b7885919eabb8c4d1d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23161313131313131313131313131313131313131313131313131313131313131313131313130e0d0b07030000000000000000000000000d192633404c5966737f8c99a6b2bfd1dcd3c6baaea298887c6f6255493c2f22160900000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e221508000e1b2835414e5b6874818181818181818181818181818181817f7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1615130f0a040000000000000000000000000000000000000000000002080d1113141b1b1b1b1b1b1b1b1b1b1b1b1b1b1b181715110c060000000000000000000a1724313d4a5764707d8a97a9b2bec9d2c5b9aca096877a6d656361605c545b595856545350494e4c4a4947454142403f3d3b3a38342e3331302e2d2b282226242e3740464b4c4847433c342a20160c09060100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000020c16202b343e47505a636d737f879298a1a9b0bbbfc6cfd5d9d2ccc7c0bbb9b2acaaaba39f9d9b999898979899999b9d9fa4ababadb3b7bbc2c7cdd5dad7cec6bcb4aea59d9590857c6f695f574d443b32281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6774818e9ba8b2bdc9bdb2a89b8e8175675d5145392c20130200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e18232e39434e58626d75828f96a1abb5c0baaea3989183796d605a50453b2f261c13202d394653606c7985929eabb8c5c9bdb2a8978a7d7064564c41362a1f1409070f1b27333f4953626e7b8898a2aebac6c8bbafa49a897d7063564a3d3023170a00000915222f3c4855626f7b8895a1a1a1a1a1a1a1a1a8aaafb7c1ccd7e3ddd1c6bbb2aaa4a1a1a1a1a1a1a1a1a1a1a19a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad1c5b8ab9e9285786b5f5665717e8b99a3afbbc7d3d2c5b8aca096887c6f6255483c32261b0f03000000000000000004111d2935414c5664717e8b99a3aebac7d3d2c5b9aca196897c6f625e6b7784919eaab7c4d1d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609060606060606060606060606060606060606060606060606060606060606060606060601000000000000000000000000000000000b1825313e4b5864717e8b97aab4bfcbd7d6cabfb4aa988b7f7265584c3f31261a0e02000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e221508000e1a2734404d59656f74757575757575757575757575757575726d62564a3d3124180b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060e0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f090806030000000000000000000000000000000000000000000000000000010507070f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0b0a080500000000000000000000000c1926333f4c5966727f8c99a5b2bfcfd1c4b7aa9e9184777372706e6d66696866646361605b535a59575554524c4f4d4b4a4846454041403e3d3b3938332d33312f2e353b3e3f3c3a37312a2218191816120d07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000008131e28323d464f59626c737f8b9399a3aab3bbc2cbd1d8d5d0c7c0bbb5afaca8a09d9a9992908e8c8c8b8a8b8c8d8e9193999a9ea1a9abb0b7bbc2c9cfd6d7cfc6bfbaafa7a09791857b6e695e564d443a3024190f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb8c4c5b9ada196897d7063554c4135291d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303c46515b616d7a849199a4afbbbfb4aaa0958d80746c61574d42382d22171f2b3744505b6575828f9babb5c0ccc1b5a89b8e8275685e52463b30251a131318232b3744505b6573808c99aab3becac6b9ac9f93867a6d6054473a2d21140700000915222f3c4855626f7b8895a2adadadadadadadb5b6bbc1c9d3dde8e2d8cdc4bbb5b0aeadadadadadadadadada79a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad1c4b8ab9e9185786b5e5e6876828f9cabb5c0cbd7d1c4b7aa9e9184776a5f53473b2a20150a000000000000000000010d1924303a4754606d7a86929facb9c5d1d5c9bdb2a89a8d8073655b6a7784919daab7c4d0d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8898a3aebac7d3dbd0c1b5a89b8e817568574e42372b1e1308000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e221508000c1824303c48535d656868686868686868686868686868686865625b51463a2e2215090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4c0cdd2c5b8ab9f928581807e7d7b7978767473716f6e6c656967656462605d565c5a58575553514b4e4d4b494846443f413f3e3c3a3935303432302f2d2c29242625221e18110a0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000060f1925303a444e58616b717e8b919fa4abb4bcc5cdd7dbd6cbc3beb6afaba39f9b96918d89868481807f7e7e7e7f80828486898d91979c9fa6abb0b9bec4cdd8d8d1cbc1b9b1a9a19791847b6e685e564c41352921180c0300000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765717e8b98a2aebac6c4b7ab9e9184786c6053463a2f24190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e2a333f46525e68707d87939fa7b1bcbcb1a79d928a7d70695e544a3f33281f1b27333f495365727f8c99a4afbbc7c5b9ac9f92867a6d61564d42362a2520202429343f4a54606c7884919eabb7c4ccc0b6ac9d918477685d5245392c20130600000915222f3c4855626f7b8895a2aebabababababac1c3c6ccd3dbe5efe9dfd6cdc6c0bcbbbabababababababab3a79a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad1c4b7aa9e9184776b5e616d7a86929facb9c5d1d4c8bdb2a8998c807366584e43372b180e04000000000000000000000813202c3945525d6875828f9cabb4bfcbd7cec4b7ab9e9184786c606a7783909daab6c3d0d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb9c5d2ded1c4b8ab9e9184786a5f53473a3024190d000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e221508000814202c37414b53595b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b585651493f34291d120600000000000002070b0d0d13131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130d0c0a07020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c2936424f5c6975828f9ca8b5c2cfd3c6baada297928e8d8b8988868483817f7e7c7a7977767472716f6d686a6867656362605c555b5958565453504a4e4c4a4947464142403f3d3c3a39352f33312e2a231c130a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000030e18212935414c56606a707d87929fa3afb5bdc6cfd7d8d0cac0b9b1aca49f99928e8884807c7977757372717172727375777a7d81858a8f949c9fa6adb3bbc2ccd2d9d7cbc3bbb3a9a19691847a6e685d52453e332a1e150a0000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f697683909caab4bfc7bcb0a6998d8073665b504438281e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c18212935414c56606b73808d959faab4bfb9aea49e92857b6e665b50443d31281d222d3b4855616e7b87939facb9c3c7baaea3998c7f72695e52464036312d2d2f353d44505c66707d8996a1acb9c5c8bbafa49a8d807366564c4135291d110400000915222f3c4855626f7b8895a2aebbc7c7c7c7c7cecfd2d7dde5edf7f0e7dfd9d4d1d0c8c7c7c7c7c7c7c7c0b3a79a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad0c4b7aa9d9184776a5665727e8b99a3afbbc7d4d1c5b8aca096887c6f6255483c32261b09000000000000000000000004111d2935414c5664717e8b99a3aebac7d3d2c5b9ada196897c6f62697683909ca9b6c3cfd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844515c667783909daab6c3d1dcd2c5b9ada196887b6e62564c4135291d12070000000000000000000000000000000000040d16202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800040f1a252f3941484d4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4b4a463f372d23180d010000000000080e1317191a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020191916130d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2a3744515d6a7784909daab7c3d0d6cabeb3a9a29f9b999896999391908e8c8b8987858482817f7d7c7a7877757372706e6d67696866646361605b545a59575654524c4f4d4c4a48474540423f3e3a352d251c1107000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000915202a333c46525e686f7c869299a3afbbc0c7d0d8d7cec6bfbaaea7a09a938e87817c77736f6d66686665656465666668676d7074787d82888f949ea1a9b0bbc0c7d0d9d5cdc4bbb2a8a09691837a6d605a50453b30261c110600000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7b87939facb9c6c4b7ab9f94887b6e62544a3f3328160c010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1925303a444f59606d78839098a2aebac0b9ada2978f82786c60584e433a2f24212d3a46535f6975828f9ca8b1bdc8bfb4ab9f92857b6e615b5146423b3a393b40454f59606d7883909da8b2bdc9c6b9ac9f93877b6e6155483b2f24190d0100000915222f3c4855626f7b8895a2aebbc1c1c1c1c1c4c5c9ced6dee8f1e7ded5cec8c5c4c1c1c1c1c1c1c1c1c0b3a79a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad0c3b7aa9d9084776a5e6876838f9cabb5c0cbd7d0c4b7aa9d9184776a5f53473a2a20150a0000000000000000000000010d19242f3a4754606d7a86929facb9c5d1d5c9bdb2a89a8d8074656976838f9ca9b6c2cfd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a546774818d9aaab4bfcbd7d5c9bdb2a89a8d8074685d5245392e23180e05000000000000000000000000000000030c161f28343f4a54606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e221508000009131d272f373c40414242424242424242424242424242423f3d3a342d251b110600000000020a12191f2326272d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2625231e19120a01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2c3845525f6b7885929eabb8c5d1dbcfc5bbb3adaba8a6a5aba49f9e9c9b9997969892918f8d8c8a8887858382807e7d7b797876747371706e6c666967666462615e565c5a58575553514b4e4c4a463f372d23180d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000030d1a26313c46515b616d7a849198a2abb5c0ccd2d9d7cec5bcb4aea49d959087817b756f6a6763605c545959585758595a555d6063656c70767c828a91979fa6afb6bec7d0d9d6cdc4bab2a8a0958e81756c62574d42382e23170c0300000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6573808c9aa4afbbc8bfb4aa9c908376695f5342382d22170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d44515c666e7b86929fa5afbabeb3a99f948c7f726a60554b413529212a36424d5763707d8995a0acb8c3c6baaea2988e81756d635b534d484646474b5159616b727f8c95a0acbac4c9beb3a99c8f8276695f53463a2d1e13080000000915222f3c4855626f7b8895a2aeb4b4b4b4b4b4b7b9bdc4ccd6e0eadfd5ccc3bdb8b7b4b4b4b4b4b4b4b4b4b3a79a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad0c3b6a99d9083766a616e7b87939facb9c6d1d4c8bcb1a7998c807366584e43372b1f12060000000000000000000000000813202c3945525d6875828f9caab4bfcbd7cfc4b8ab9e9184786c6975828f9ca8b5c2cfd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3d4a5764707d8a98a3aebac7d3dacfc4b8ac9f92867a6d60544b40342820170e0600000000000000000000000000040c151e28313944505c66707d8996a3afbcc9d6d4c7bbaea194887b6e6155483b2e2215080000010b151d252c30343535353535353535353535353535353532312e29231b130900000000000a141c242a2f3334393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393933322f2a241c130a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b556c7985929facb8c5d2dfd7cdc5bebab8b5b3b1b5afacaba9a7a6a4aaa39f9d9c9a9897959792908f8d8b8a8886858381807e7c7b7977767472716f6d686a6867656362605d555b595751493f352a1e12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000010b151f2b37434e58626d75828f96a1aab4bdc7d1ddd7cdc5bcb3aaa29f928d837c746e696260585653514b4d4c4b4b4b4c4d4b5153535b60636a6f767e858f949fa4acb5bdc7d0d9d6ccc4bab1a79e938b7e71695f544a3f34281f14090000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eacb6c0c7baaea3988b7e7165574d422f261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202834404a545f69717e8b939ea8b2bdbbb0a69f92877c6f675d51453e332926313b4653606c7884919da7b1bdc7beb3aa9e938c7f736d615e5754535354555d606b707d87929fa7b1bcccc6b9ada1978a7e7164574d42362a1e0c010000000915222f3c4855626f7b8895a2a8a8a8a8a8a8a8abacb2bac4cedae5d9cec3bab2acaaa8a8a8a8a8a8a8a8a8a8a79a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcacfc3b6a99c9083766965727f8b99a4afbbc7d4d1c5b8aca095887b6f6255483c31261b0f0300000000000000000000000004111d2935414c5664717e8a98a3aebac7d3d2c5b9ada196897c6f6875828e9ba8b5c1ced6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5d0dbd3c6baaea2988c7f72665c51453e322920180f090300000000000000000002080d161e263039434e58606d7883909daab7c3d0ddd4c7bbaea194887b6e6155483b2e221508000000030b131a202427282828282828282828282828282828282524221d181109010000000008121c262e363b3f404646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646403e3b352e251c12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c677986939facb9c6d2dfdfd7cfcac6c5c1c0bec0bbb9b7b6b4b2b1b4aeacaaa9a7a5a4a9a29f9d9b9a98969a9391908e8c8b8987868482817f7d7c7a7877757372706f6d676a6866635b51463a2e2216090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000007121d27313947535f6a727f8b939ea8b2bcc6cfd9d8cec5bbb3a9a298928a80786f6b615e57544e49464540403f3e3e3f3f404045474950535860626c717a828c939aa4abb5bdc7d2ddd5ccc3b9afa59f92867b6e665c50443c31261a0e040000000000000000000000000000000000000000000000000000000000000000000004111d2935404b5563707d8996a1acbec7c5b8ac9f92867a6d6054473c3121140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e18232e39424d57626c75818e96a1abb5c0bbaea3999184796d605a50453b30262b3744505b65727f8b95a0abb5c0c5bcafa59c918c7f766e69646160606163676d747d869299a3aeb9c3c6bdb0a69e9285796d6053463b31261a0e000000000915222f3c4855626f7b88959b9b9b9b9b9b9b9b9ea1a8b2bdc9d5e1d4c8bdb2a8a09d9b9b9b9b9b9b9b9b9b9b9b9a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcacfc2b6a99c8f837669697683909cabb5c0ccd7d0c4b7aa9d9184776a5f53473a2a20150a00000000000000000000000000010d19242f3a4754606d7a86929facb9c5d0d5c9bdb2a99a8d80746674818e9ba7b4c1ced6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6776828f9caab4bfcad6d6cabfb4aa9e9184796d60594f443b322a211a140e0906050300010507090e13191f283038424b555f6a727f8b95a0acb8c5d1ded4c7bbaea194887b6e6155483b2e2215080000000001090f14181a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b181815120d060000000000020e19242e3840474b4d53535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534c4b4640372e24190d020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798699a4afbbc7d4e0dcd3ccc7c3c2c0c2c4c5c7c6c4c3c1bfbebfbab8b7b5b4b2b0b3adabaaa8a6a5aca49f9e9c9b9997969992918f8d8c8a8987858482807f7d7b7a787675726d63574a3e3125180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000c18232f3943505a626e7c86929fa5afbac4ced8dbd0c6bcb3a9a29792867e746d666059534d47433c3a38342e32323132332f35393a3f44464e545a61686d7880889399a4abb5c0ccd7dcd5cbc1baaea2989083786d60574d42372b20150a000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6774818e9ba8b2bdc9bdb2a89b8e8175685d5245392c2013020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121c27303c45505a606d7a849199a3afbbbfb5aba0968e81746c61574d42382e27333f4953606d78839099a3afbbc3c1b7ada39c918c827b75706e6d6c6e70747980879298a2abb4bfcbbfb5ab9f948b7e71665c5145382a1f1409000000000915222f3c4855626f7b888e8e8e8e8e8e8e8e8e9196a1acb9c5d2ded1c5b8aca096918e8e8e8e8e8e8e8e8e8e8e8e8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcacfc2b5a89c8f8275696e7b87939facb9c6d2d4c8bcb1a7998c7f7366584e43372b180e0400000000000000000000000000000813202c3945515d6775828f9baab4bfcbd6cfc4b8ab9e9185786c74818d9aa7b4c0cdd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935404b5565717e8b98a2aebac6d3dbd0c6b9ada1968d80746b61564d443c332b261f1a1413120f0b0d1113141a1e252a313a424a545d676e7c86929fa7b1bcc8d4e0d4c7bbaea194887b6e6155483b2e22150800000000000004080c0e0e0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0c0b09060100000000000007131f2a36404a52585a60606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605957524940352a1e13070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0b5c0cbd7ded3cac2bbb7b5b3b5b7b9babfbebfc1c3c5c6c7c5c4c2c0bfbdbebab8b6b5b3b1b6afacaba9a7a6a4aba39f9e9c9a9997959892908f8d8b8a88868583817f7266594c3f3326190c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000004101c2934404b55616c76828f98a2aeb7c1ccd6ddd6cabfb4aaa29792857c716c605c544f46423b37322d2c2823262524252624292c2d33373c434750565e666c737e879399a4afbbc0cad3ddd6cabfb4aa9f958c8073695f53463c32261b0f040000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a85929facb8c4c5b9ada196897d7063564c4135291d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105070709090a0a09080706040000000b151e2a333e45525d686f7c87929fa6b0bbbdb2a89d938a7e71695e544a3f34282d3844515c666f7c87929fa8b2bbc5bfb5ada39c948f86817d7b79797a7c81858d9399a2aab4bdc6c2bbaea3999082776c60544b403428180e03000000000815212e3b4854616e7b8181818181818181818184919eabb7c4d1ddd0c4b7aa9d9184818181818181818181818181817e7164584b3e3125180b000000000b1824313e4b5764717e8a97a4b1bdcacec2b5a89b8f827568727f8b9aa4afbbc8d4d1c5b8aca095887b6e6255483c31261a0800000000000000000000000000000004111d2935414c5564717e8a98a3aebac7d3d2c6b9ada197897c6f73808d9aa6b3c0cdd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3a4754606d7a85929facb8c1d0d9d5c9bdb2a89d928a7d70695e564e453d37312b2621201f1b17191e2021262b30363c434c545c666d79839198a2aeb9c3ced9e5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000b17232f3b47525c64676c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c66635b52463b2f23160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798699a3afbbc7d3d8ccc2b8b0aaa9a7a8aaacaeb4b1b3b4b6b8b9bebdbfc0c2c4c5c7c6c5c3c2c0bec0bbb9b8b6b4b3b1b4aeacaaa9a7a5a4aaa29f9d9b9a9896959791908e84786b5e5145382b1e120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000006131f2c3845515c67717e8a949faab4bfc9d3dfd4cbc2baaea29892857c6f6a615a504a423d36312b27201f1c181918181819181d2022272b32373e444c545b606c717e87939fa4aeb8c2cdd6dbd0c5bcb1a79f92877b6e61584e43372b21160a000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5764717e8b98a2aebac6c4b8ab9e9184786c6053463a2f24190d01000000000000000000000000000000000000000000000000000000000000000000000000000000030506080d1113141516171616151413100c0707050c18212935414c56606b737f8c949fa9b3bebaafa59f92857b6e665c50443d322834404a54606a73808d96a0a9b3bbc5bfb5ada69e98928e8a87868687898d92979fa4abb4bcc6c2b8b0a69f92877c6f655b5042392e23180600000000000714202d3a46525e696e75757575757575757575818e9ba8b4c1ced9cdc0b3a69a8d8075757575757575757575757575716c6256493d3024170b000000000b1824313e4b5764717e8a97a4b1bdcacec1b4a89b8e8175687683909cacb6c0ccd8d0c3b7aa9d9084776a5f53473a2a20150a000000000000000000000000000000010d19242f3a4754606d7a86929facb8c5d0d5c9beb3a99a8d807373808c99a6b3bfccd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945515d6774818e9aa5afbdc7d2dacfc4baaea49e92857b6e685f574f46423c37312e2d2b2722252a2d2e31373a41464e555d666d78818f95a0aab4bfcbd5dfe1d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1926333f4b58646e737979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979736d63574b3e3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844515c667986929facb9c5d2d3c7bbb0a69f9c9a9c9d9fa3aba4a6a8a9abadb3b0b2b4b5b7b9bbc0bec0c1c3c5c6c8c6c4c3c1bfbebfbab9b7b5b4b2b0b4aeabaaa8a6a5a3a9a19e9d9184786b5e5145382b1e120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000004111d2935414c56606d7984919ea6b0bcc6d0dcd8cfc2b9aea49f92867c6f6a605850443f38302a251f1b1313100c070b0b0c070d1013171b1f272b323a424a505a626c717e8b929da6b0bbc5cfdad7cec2bbafa3998e81756a5f53473d32271b0f04000000000000000000000000000000000000000000000000000000000000000714212d3a46535f6976838f9caab4bfc7bcb1a7998d8073665b504438281e13080000000000000000000000000000000000000000000000000000000000000000000000000000060b0f121316191d2021222323232322201f1c181514120e0f19242f3a434f59606d78829097a2adbac0baada2979083786d60594f443a2f2e39424e58606d79849197a1a9b3bcc5bfb8b0aaa29f9b9799929299969a9ea1a9afb5bdc6c2b9b0a69f948d80736a5f53493f30271d1207000000000005121e2a36424d575e6168686868686868686875818e9ba8b4c1ced9cdc0b3a69a8d807368686868686868686868686864625a5045392d211508000000000b1824313e4b5764717e8a97a4b1bdcacec1b4a79b8e81746e7b87939facb9c6d2d4c8bcb1a7998c7f7366584e43372b1f1206000000000000000000000000000000000813202c3945515d6775828f9baab4bfcad6cfc4b7aa9d918477727f8c99a5b2bfccd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414b55626f7c88939eabb5c0ccd7d6ccc0b9ada19790837a6e6a6059534d46423d3a3937332d3036393a3d42474c525860676d78818e939ea7b1bcc6d0dde7e1d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a67738086868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686867f7366594c403326190d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a5f6c7885929fabb8c5d2d0c3b7aa9f948f8d8f9192999697999b9d9ea1a9a3a5a7a9aaacafb5b1b3b5b6b8babebdbfc1c2c4c5c7c7c5c4c2c0bfbdbebab8b7b5b3b2b0b3adaa9d9184776a5e5144372b1e110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000713202c3945525d68737f8c96a1acb8c2ced8dcd1c6bdb1a79c928a7e716a60584e463e342e261e1a140f0a06040000000000000104060b0f151b20282f383f44505a626c73808d949ea9b3bec9d5e0d7cbc0b5ab9f93877c6f62594f44382c20150a000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7b87939facb9c6c4b8ab9f95887b6e62544a3f3328160c01000000000000000000000000000000000000000000000000000000000000000000000002080d11171b1f2023252a2d2e2f3030302f2f2d2c292321211e1a14131e28313d44505c666e7b85929fa5afbabeb3a99f948c80736b60564c413529303c45515d676f7c859297a2aab3bbc1c2bcb4aeaca8aba39f9fa3aba7abadb3bbc0c6bfbab1a79f948f82786d60584e41382d1e150b000000000000020e1a25303b454d52545b5b5b5b5b5b5b5b6875818e9ba8b4c1ced9cdc0b3a69a8d8073675b5b5b5b5b5b5b5b5b5b5b585650483f34291d1105000000000b1824313e4b5764717e8a97a4b1bdcacdc0b4a79a8d8174727e8b9aa4afbbc8d4d1c5b8aca095887b6e6255483c31261a0f020000000000000000000000000000000004111d2935414b5564717e8a98a2aebac7d3d1c5b8aca095877b727f8b98a5b2becbd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3a47535f6a75828f99a4afbbc5cfdad5c9beb3a99f9590847c706b615f57534d4a4746443f43444146474a4d53565e616a6f7a818e939ea5afb9c3ced7e2efe1d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393938c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e45525e6b7885919eabb8c4d1cfc2b5a99c8f828082848687898b8c8e9092979597989a9c9e9fa3aba4a6a8aaabadb3b0b2b4b6b7b9bbc0bec0c2c3c5c6cac6c5c3c2c0bebdbeb6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000004101c2834404b55606d7a85929fa8b2bdcad4e0d7cbbfb4ab9f958d80736c61584e463d3428231c150c090300000000000000000000000000030a0e161d262d333f48505a606d78828f97a1adb9c1ced8dcd1c7bbafa49a8f82756b6054483c32271b0f01000000000000000000000000000000000000000000000000000000000005121f2b3744505b65737f8c9aa4afbbc8bfb4aa9d9083766a5f5342382d22170b0000000000000000000000000000000000000000000000000000000000000000000000060b13191b22272b2d2f3036393a3c3c3d3d3c3b3a38342f2e2d2a251f1c181f28343f4a545e69717e8a939da8b2bdbcb0a69f92877d6f685d52453f332935404b555f6a6f7c859298a1a9afb9bec5bfbab8b5b5afacacaeb5b4b8b9bec5c2bcb4aea79f959082796d665c51463c2f261b0c030000000000000009141f29333b4246484e4e4e4e4e4e4e5b6875818e9ba8b4c1ced9cdc0b3a69a8d8073675a4e4e4e4e4e4e4e4e4e4e4b49453f362d22170c01000000000b1824313e4b5764717e8a97a4b1bdcacdc0b3a79a8d807475828f9cacb6c0ccd8d0c3b7aa9d9083776a5f53473a2a20150a0000000000000000000000000000000000010d18242f3a4753606d7a86929facb8c5d0d4c8bcb1a7988b7e717e8b98a4b1becbd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d2b37434e58626f7c87939fa9b3bec9d5dacfc5bbb1a79f9691857d756e69615f57575453504950504c525456575f62686d737c848f939ea5afb7c1cbd1d5dce3e1d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9a9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f998c7f7366594c403326190d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071d2a3744505d6a7783909daab6c3d0cdc0b3a69a8d80747577797b7c7e8081838587888a8c8d8f9192999698999b9d9fa2a9a4a5a7a9abacafb5b1b3b5b7b8babec5ced0cecdcbcfc3b6a99c908376695d5043362a1d100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000006131f2c3845515c67727f8c98a2aebac4cedcddd3c7baaea3999083786d605a50463d342b2217110a030000000000000000000000000000000000040b141c2228363f44505c666d7a85929ea5afbcc6d0dcd8ccc0b6ac9e94897c6f63584e43372b1d120700000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eacb6c0c7baaea3988b7e7265574e422f261c1106000000000000000000000000000000000000000000000000000000000000000000020a11171e252a2d3337393c4041464748494a4949484745403f3b3a36312c28231c232e38424d57616c74818e96a0abb5bfbbafa39991847a6d605a50453c302f39434e585f6a6f7c8692979ea5adb3babec5c5c1c0bbb9b9bbbfc0c5c5c3bcb8b1aaa39f959083796d675d544b40342a1d140a0000000000000000020d17212930363a3b4242424242424e5b6875818e9ba8b4c1ced9cdc0b3a69a8d8073675a4d4242424242424242423e3d39342d241b110600000000000b1824313e4b5764717e8a97a4b1bdcaccc0b3a6998d80737a86929facb9c5d2d4c8bcb1a7998c7f7366584e43372b180e030000000000000000000000000000000000000713202c3945515d6775828f9baab4bfcad6cec1b4a89b8e81757e8a97a4b1bdcad6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160906060606060606060606060606060606060606060606060606060606060606060606060606060606060101000000000000000000000000010f1b26323c47535f6a74818e97a1adb9c1cbd4d7cdc2b9b1a8a0979287817b746e69676461605b535d5d565e616366696e737a808691969ea6afb7c1c0c1c5cad2dae3d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9aa6acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaca6998c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1c2835424f5b6875828e9ba8b5c1cecec1b5a89b8e827569666c6e7071737576787a7c7d7f8182848687898b8d8e9092979597999a9c9e9fa3aba5a6a8aaabaeb4bcbfc7d0d9d8cfc2b5a99c8f8276695c4f4336291c100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000713202d3a4653606d7985919eaab4beccd6dfd5c9bdb2a89f92867c6f665c50483e342b221910060000000000000000000000000000000000000000020a11172428343f4a545e68717e8a939eaab4bfcbd6ddd2c7beb0a69c9083766a605447392f23180c0000000000000000000000000000000000000000000000000000000004101d2935404b5563707c8996a0acbec7c5b8ac9f92867a6d6054473c3121140a000000000000000000000000000000000000000000000000000000000000000000060b141c22283036383f4446494c4c525455565656565553514b4b4846423b38342e271e26303b45505a606d79849199a3aebbc0b5aba1968e81756c62574d42392e313c464e58606a6f7d858e939ea1a9aeb3b9babfc0c1c2c2c1c0bfbdb9b7b1aca79f98928c837a6d675d554b42392e22180b02000000000000000000050f171f252a2d2e3535353535424e5b6875818e9ba8b4c1ced9cdc0b3a69a8d8073675a4d40353535353535353531302d29221b12090000000000000b1824313e4b5764717e8a97a4b1bdcaccbfb2a6998c7f737d8a98a3aebac7d3d1c4b8aca095887b6e6255483c31261a080000000000000000000000000000000000000004111d2935404b5564717e8a98a2aebac6d3d1c5b8ab9e9285787d8a97a3b0bdcad6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23161212121212121212121212121212121212121212121212121212121212121212121212121212121212120e0e0b0803000000000000000000000a15202b37434e58616d7a85929ea5afb9c2ccd6d4cbc2bab2a9a299938e87817b7774706d6c656a696a6b686d7073777b80858d9299a0a8b0b8b9b5b3b5b9c0c8d2ddd4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b2a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0d2d0c3b6a99d9083766a5b6061636466686a676d6f7072747677797b7c7e8082838587888a8c8e8f91929996989a9b9d9fa2aaadb5bfc9d4dbcec1b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000006131f2b37434e5865717e8b97a1adbcc5d0ded9cec5b9aca1968c7f736a5f544a3f362c221910070000000000000000000000000000000000000000000000061217232e38424c56616c75818e98a3aebac5d0dbd9d0c1b7ab9f94887c6f62554b4034291c10040000000000000000000000000000000000000000000000000000000613202c3945515d6774818e9ba8b2bdc9bdb2a99b8e8175685d5245392c20130200000000000000000000000000000000000000000000000000000000000000020a11171d262d333a41464950535659565e61626363636262605c555854534d4644403930292429333e45515d676f7c87929fa6b0bbbdb2a89e938b7e71695f544a403428343c464e58606b6f7a818a92979fa2aaacaeb4b3b4b5b5b4b4b2b2adaba7a09d9590867f786d685d554c433930271d10060000000000000000000000050d141a1e20212828282835424e5b6875818e9ba8b4c1ced9cdc0b3a69a8d8073675a4d4034282828282828282524211d171109000000000000000b1824313e4b5764717e8a97a4b1bdcaccbfb2a5998c7f74818e9aaab4bfcbd7d0c3b7aa9d908377695f53473a2a20150900000000000000000000000000000000000000010d18242f3a4753606d7a86929facb8c5d0d2c6b9ada197887b7d8996a3b0bcc9d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1b1a18140f08010000000000000000040f1b26313c46525e68707e8a939da6b0bac4ccd5d4ccc4bbb3aba49f99928e8884817d7a797877767777787a7d7f83888d92989fa3abb2bab6aea8a6a8aeb6c0cbd5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3c0c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6bfb2a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98abb5c0ccd1c4b8ab9e918578675d53545658595b555d606264656769666d6e7071737577787a7c7d7f8183848688898b8d8f9092989ba3adb8c3cfd9ccc0b3a6998d8073665a4d4033271a0d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000815222e3b4754606a7784919da9b3beced7e2d4c8bcb1a79e9184796d60584e42382e241a10070000000000000000000000000000000000000000000000000006111c26303a44505a616e7b86929fa9b3becad6e2d3c7bcb0a69a8d8074675c5145382c1f14090000000000000000000000000000000000000000000000000000000714202d3a4753606d7a85929facb8c4c5b9ada196897d7063564c4135291d1104000000000000000000000000000000000000000000000000000000000000020b141b22272f383f444c52535b60626669686d6f6f70706f6e6d676865615e5753514a423d352f282935404b55606a727f8c949fa9b3bebaafa59f92867b6e665c51443d322a343d464f5960686d757e858d92989c9fa3aba7a8a8a8a8a7a6a8a19e9a95918b837b726d665d564c433a31271e150b0000000000000000000000000002090e1214151b1b1b2835424e5b6875818e9ba8b4c1ced9cdc0b3a69a8d8073675a4d4034271b1b1b1b1b1b181715110c0600000000000000000b1824313e4b5764717e8a97a4b1bdcacbbeb2a5988b7f7884919eabb7c4d1d4c8bcb1a7998c7f7266574d42372b180e0300000000000000000000000000000000000000000713202c3945515d6775828e9baab4bfcad5c9beb3a9988b7e7c8996a2afbcc9d5cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c282724201a130b0200000000000000000a15202a36414c56616c74818e949fa8b2bac3ccd7d6cdc5bdb5afaba39f9a96918d8a878685848383848587898c9095999fa2aaaeb4bdb8aea49c9a9ca4aeb9c3ced9c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3c0cdd2d2d2d2d2d2d2d2d2d8d3d0cfc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9bfb2a6998c7f7366594c403326190d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8999a4afbbc7d2c6b9ac9f93867a6d605348494b4d4e4c51545557595a545c6061636566686a686d6f7172747678797b7d7e808283858b919ba7b3c0ccd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000003101c28343f4a54626f7c8995a0acbbc4cfe0ded1c5b8aca0958b7e71675c51463c30261c12080000000000000000000000000000000000000000000000000000000a141e28323e46525e6973808d97a2adbac7d1dcd8cdc2b8ab9f9285796d6053473b30251a0e020000000000000000000000000000000000000000000000000005121e2a36424d5764717e8b98a2aebac6c4b8ab9e9184796d6053463a2f24190d010000000000000000000000000000000000000000000000000000000000000a141d262d333c424a50565e61656c6f7376787a7b7c7d7c7c7b7a7775726e6964605c544f45413a312c2f39434e58606c77828f97a1adb9c0baaea2989083786d60594f443a302b343d474f565e616c717a80858b8f9299989a9b9c9c9b9a999796918d89847e786e6a605c544c443a31281f150c03000000000000000000000000000000020507080f0f1b2835424e5b6875818e9ba8b4c1ced9cdc0b3a69a8d8073675a4d4034271a0f0f0f0f0f0b0b0805010000000000000000000b1824313e4b5764717e8a97a4b1bdcacbbeb1a5988b7e7b8896a1acb9c5d2d1c4b8aca095887b6e6155483c31261a0800000000000000000000000000000000000000000004101d2935404b5564717d8a98a2aebac6d3cfc1b4a89b8e817c8895a2afbbc8d5cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393433302b251d140b0100000000000000030d1925303a44505a606d79829096a0a8b1b9c1cbd1d7d0c7c0bbb5afaca8a09e9a9799929190909091929796999d9fa7abaeb4babfbab0a69c928d929ca7b1bcc8d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3c0d0d9e4dfdfdfdfe6dcd4cdc7c4c2bcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcb2a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6d2c8bbafa49a8a7d7063574a3d3e4042414547494a4c4e4a50535456585a5b565d606264666769666d6e7072737577787f8b98a5b2becbd5c9bdb2a896897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000006121f2c3844505c6674808d9aa8b1bdcdd6e1d5c9beb3a99d9083786c60554b40342a1e140a00000000000000000000000000000000000000000000000000000000020c16202a36424d57616d7a85929fabb5c0cbd7dfd3c6baada2978a7e7164574d42362a1e1205000000000000000000000000000000000000000000000000000714212d3a46535e6976828f9caab4bfc8bcb1a7998d8073665c504438281e130800000000000000000000000000000000000000000000000000000000000006111b262f383f444e545b60686d72787c7f8385878889898989888684827e7b76716d666059524c433e352c313c44505b656e7a85929ea4aeb9bfb4aa9f958d80736b60564c41362a2b343d444c525a61686d737a7e8286898b8d8e8f8f8e8d8c8a8884817d77716c665f57504a423a32281f160d030000000000000000000000000000000000000000020e1b2835414e5b6874818e9ba7b4c1cedacdc0b3a79a8d8074675a4d4134271a0e0202020200000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcacbbeb1a4988b7e7f8b98a8b2bdc9d5d0c3b6aa9d908377695f53473a2a201509000000000000000000000000000000000000000000010d18242f3a4753606d7986929facb8c5d0d1c4b7aa9e91847c8895a1aebbc8d4cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256494545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454541403c362f261d1308000000000000000008131e28323e45515c676d7a849196a0a7b0bbc0c7cfd5d2ccc7c0bbb9b2acaaa7aba39f9e9d9c9d9e9ea2a9a6aaabb1b8babec3bab2a89f948d808d95a0acb8c5d1c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9aaab4bec7d2dde8f0f4e9ded4cac2bbb7b6b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d677784919daab7c4d1ccc0b6ac9a8d817467584e4337332f35393a3c3d3f413f444648494b4d4f4c52545557595b545c6061636567686a74808d9aa7b3c0cdd2c5b9ada196877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000713202d3a4653606d7985929eabb8c3cededfd2c6b9ada1978a7e71665b5043392e22180c020000000000000000000000000000000000000000000000000000000000050e1a25303b46525d6873808d99a3afbbc7d3e0d6cabeb3a99c8f8276695e52463a2d201407000000000000000000000000000000000000000000000000000815212e3b4854616e7b87939facb9c5c4b8ab9f95887b6e62544a3f3428160c0100000000000000000000000000000000000000000000000000000000000a1317222d38414950585f666c727a7f84898c8f929795969696959993918f8b87837e79706b605d564f473e3627333f49535e68707d8a929da7b1bcbcb1a79f93887d70685e52463f342a2b323a414650565e61676d72767a7c7e8081828281817f7d7b7874706b65605b544e443f38302820160d04000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4c0cddacdc0b4a79a8d8174675a4e4134271b090502000100000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcacabeb1a4978b7e828f9ba8b5c2ced4c8bcb1a7998c7f7266574d42372b1e12060000000000000000000000000000000000000000000007131f2c3945515d6775818e9baab4bfcad2c5b9aca096887c8895a2afbbc8d5cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625652525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252524e4c4841382f251a0f0300000000000000020c16202834404b555e686e7b8491959ea6afb5bdc2c9ced4d1cbc7c4bdb9b7b4b5afacabaaa9aaaaabadb3b2b6b8bcc3c6c0b9b1a8a1968f827883909daab7c3d1c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d98a2acb6c0ccd8dde7f1e4d8cdc2b8b0aba9a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3998c7f7366594c403326190d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556774818e9aabb4bfcbd2c4b7ab9e9184786a5f53473b3025292c2d2f31322e34383a3b3d3e4042414547494a4c4e4a51535556585a5b667683909ca9b6c3cfd1c4b8ab9e918478695e52463a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000a1723303d4a5663707d8997a1adb9c6d2dfd8ccc0b6ac9e9285796d60544a3f30271d10060000000000000000000000000000000000000000000000000000000000000009141f2935414c56616e7b86929facb9c4cfdadbcfc5b9ac9f93877b6e6154483b2e23180c00000000000000000000000000000000000000000000000007131f2c38444f5966737f8c9aa4afbbc8bfb4aa9d9083766a5f5342382e23170b000000000000000000000000000000000000000000000000000000000008121c2527333f49535b606a6e787f868c9196999c9ea1a9a2a3a3aba49f9e9b9894908a847d746d68615950483e352d38414d56616c74808d95a0aab4bfbbafa49a91857a6d615b51463c31272930363e444c52555d6065676d6f7274757575757473706e696763605953504a423c342e261e160e0400000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9cec1b4a79b8e8174685b4e4131261a14110e090d0d0c0c0b090601000000000000000b1824313e4b5764717e8a97a4b1bdcacabdb1a4978a7e85929eabb8c5d1d1c4b8ab9f95887b6e6155483c31261a0e020000000000000000000000000000000000000000000004101d2935404b5564717d8a98a2aebac6d3c9bdb2a8978a7d8a97a4b0bdcad6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5b59534b41362b2014080000000000000000050e18232e39434c565f696e7b838f949fa3abb0b9bdc4c8cdd1d3cec9c5c4c0c0bbb9b8b7b6b6b7b8b9bebfc3c4c7c3bcb8afa7a09691847b74808d9aabb5c0cbc7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7c86929aa4afbbc1cbd5dfe9dfd3c7bbb0a69f9c9696969696969696969696969696969696969696969696969696969696969696969696969696969696968c7f7366594c403326190d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3d4a5764707d8a99a3aebac7d2c5b9ada196887b6f62574d42362a1e202122242623282b2d2e3032333035393a3c3e3f41404446484a4b53606c7985929fabb8c5d2cec2b5a89b8f827568564d42362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000006121e2b37424e576874818e9ba9b3bec9d5e0d4c8bbafa49a8c8073665c5142382d1e150b0000000000000000000000000000000000000000000000000000000000000000030d1924303a46525e6975828e9ba9b2bec9d5e0d4c7bbafa4998c7f7265544a4034281c100400000000000000000000000000000000000000000000000915222f3b4854606b7784919eacb6c0c7baaea3988b7e7265584e4330261c110600000000000000000000000000000000000000000000000000000000040e1a242e373f44505b656c727c838c92989ea1a8a9abadb3afb0afb5afacaaa8a69f9c969189817a706b615a50473e352f3b444f59606d79839098a3aebac0b6aca1978f82756d62584e43392f23252a323a41464c5154555d6063656768696968676664615f5756544f46443f382f28231c140c040000000000000000000000000000000000000000000000000d192633404c5966737f8c99a6b2bfccd9cfc3b6a99c90837669584e43372b23201e1a1b1a1919191815120d060000000000000b1824313e4b5764717e8a97a4b1bdcad0c3b6aa9d90839097a1adb9c6d2d0c3b6aa9d908377695f53463a2a1f15090000000000000000000000000000000000000000000000000c18242f3a4753606d7985929facb8c5d0cec3b6aa9d9083909daab6c3d0d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645d53483c3024180b00000000000000000007121d27303a444d575f696e7a828c92999fa6acb2b8bcc3c5c8cecfd1d1d1cbc7c5c4c3c3c3c4c5c6cac8c5c2bcb7b1aba59d9590847b6e707d8a99a3afbbc1c1bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000815212e3a47535f6a707e88939fa5afb9c3cdd7e1ddd0c4b7ab9f948f898989898989898989898989898989898989898989898989898989898989898989898989898989898989897f7366594c403326190d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5d0c9bdb2a89a8d8074695e52463b30261c14161719171c1f202123252724292c2d2f31332e34383a3b414c5663707d8997a2adbac6d3c9bdb2a8998c7f7266594c3f3025190e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000814212e3a47535f6a7884919eabb8c4cfdadfd2c6b9ac9f93877b6e61544b402f261c0c0300000000000000000000000000000000000000000000000000000000000000000008131e2a36424d5763707c8997a1adb9c6d2dfd7ccc0b5ab9c8f8276665c5144382c1f12060000000000000000000000000000000000000000000004101d2935404b55636f7c8996a0acbec7c5b9ac9f92867a6d6054473c3121140a00000000000000000000000000000000000000000000000000000000020c16202c363f49525c606c777f8690959fa2aaadb2b6b8b9bebcbcbcc0bbb9b7b5b0aba8a09e938e847d706c61594f473d33323e45515c676f7c86929fa6b0bbbeb2a99e948b7f726a5f554b40342920202930363a4145474b515456585a5b5c5c5b5a595755534d4948443d38332d261d17110a02000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2bed1dcd1c5b8ab9e9285786a5f53473c342e2d2a25282726262524221e18110901000000000b1824313e4b5764717e8a97a4b1bdcad1c4b8aba0959095a0a9b3becad4c8bcb1a7998c7f7266574d42362a180e0300000000000000000000000000000000000000000000000007131f2c3845515d6775818e9baab4bfcad1c4b8aca0959095a0acb8c4d1d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c7878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878746f64594c4033271a0e000000000000000000000b151e29323b454d565e686d777f8790949ea0a8abb1b7b8bdc0c2c4c6c7ccd2c9c9d2ccc7c6c4c2c0bdb8b7b1aba79f9d938e837b6e696d7a86929facb4b4b4b4aea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e58616c73808c939ea7b1bbc5cfd9dccfc2b6a99c8f827d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6776828f9ca9b3becacfc4b9ac9f92867b6e61574d42382e23171107060b1012131516181a191d202122242623282c2f3846525e6875828e9ba9b3becad2c5b9aca096887b6f6255483c2f221509000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000815222f3b4855626e7b8896a1adb9c5d2e1d8ccc0b6ac9c908376695e5242392e1d140a00000000000000000000000000000000000000000000000000000000000000000000020e1a25303b4653606c7884919eabb8c4cfdbddd2c5b8ac9f9285796d6053463a2d2013070000000000000000000000000000000000000000000006131f2c3945515d6774818e9aa8b2bdc9beb3a99b8e8275685d5245392c2013020000000000000000000000000000000000000000000000000000000008131e28323e48515b636e74808c92989fa7aeb4b9bdc2c5c6c5c3c2c2c3c5c6c4c2bcb7b2aca59d9691877e706b61594f453c3134404b555f6a727f8b949ea9b3bebbb0a69f92867c6f675c51453e32291d1e252a2f35393a414547494b4d4e4f4f4e4e4c4a4846423d3c38332b28221c140b060000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97abb5c0cbd7d2c6b9ada197887b6e62584e45403b3a36303434333232312e29231b1309000000000b1824313e4b5764717e8a97a4b1bdcad4c8bcb1a7a09da0a7b1bbc5cfd1c4b8ab9f95887b6e6155483b31261a080000000000000000000000000000000000000000000000000004101d2935404b5564707d8a98a2aebac6d3c8bcb1a7a09da0a7b1bcc8d4d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3dfd2c5b8ac9f928685858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858174675b4e4134281b0e00000000000000000000030c172029333b444d565d656c727c838b91969d9fa7aaacb2b3b6b7b9bbc0bcbcbcbbc0bbb9b7b5b4b1acaaa79f9d95908981796e695f677683909ca8a8a8a8a8a8a194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000030f1b26313c46505a606c77818f95a0a9b3bdc7d1dcd0c4b7ab9f948a7e7170707070707070707070707070707070707070707070707070707070707070707070707070707070706e695f53463a2d211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935404b5564717e8b97a2adbac7d2c7baaea3988d8074695e544a3f34282318120c07030607080a0b080d1113141617141b222d38424e58616d7a86929facb9c5d0d1c4b7aa9e9184776a5f53473a2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000030f1b27333f495365727f8b98a8b2bdc9d5e0d4c8bbafa49a8b7f7265574d4230271d0b02000000000000000000000000000000000000000000000000000000000000000000000009141f2b3844505b6674808d9aa9b3becad6dfd3c6baaea298897c6f6356493c2f24180c000000000000000000000000000000000000000000000714202d3a4753606d7985929fabb8c4c6b9ada1978a7d7063564c4135291d1104000000000000000000000000000000000000000000000000000000020b1924303a44505a636d73808d929fa3aab1babfc6c8c5beb9b8b6b5b5b7b8babfc6c7c4bdb9afa9a19992877d706b60574d42372f39434e58626d75828f97a1acb6c0baaea3989083796d60594f443b2f261b191e24292c2f35393a3c3f414242424241403d3b3a37312f2c271f1c17110a02000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8999a3afbbc7d3d5c9beb3a99a8d80746a5f57514b474642424140403f3f3e3a342d251b11060000000b1824313e4b5764717e8a97a4b1bdcad9cdc3b9b1abaaabb1b9c3cdd7d0c3b6a99d908376695f53463a2a1f140900000000000000000000000000000000000000000000000000000c18242f3a4753606d7985929facb8c5d0cdc3b9b1acaaacb1b9c3cdd9d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3dfd3c6baaea29892929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292928e8175685b4e4235281b0f0000000000000000000000050e172129323b444c535b606a6f787e848a9095999da0a8a7a9abacafb5afafafafb5afacaaa9a7a8a09d9a95908a837d746d675f576673808c999b9b9b9b9b9b9b94887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343e44505b656d79839197a2abb5c0cbd7d3c7bbb0a69f92867c6f68636363636363636363636363636363636363636363636363636363636363636363636363636363615f574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3a4753606d7985929facb6c0cccbbfb4aa9f92867b6e665c50443e3529241d18120d0706030002000205070c11171d262d333f4a545f6a73808d99a3aebac7d4c8bcb1a79a8d807467584e43372b1f1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000005121f2b3744505b6575828f9ba8b5c2cfdadfd2c6b9ac9f93877b6e6154483b3021150b000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54636f7c8997a2adb9c6d2dfd6cabfb4aa998c7f7366554b4035291d1004000000000000000000000000000000000000000005121e2a36424d5764717e8a98a2aebac6c4b8ab9e9185796d6053463a3024190d010000000000000000000000000000000000000000000000000000000a141d2935414c56616c727f8c929ca4aeb4bcc2c7c0bbb9b3adaba9a8a8aaacaeb4b8bcc2c9c0bbb2aba39992867d70695f53463e32313c46515b616d7a85919aa4afbbbfb4aaa0958d80746b61564c41382d221713191d2024292c2d303234353636353433312e2d2b2622201c160f0b060000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7986929facb9c5d2dacfc5b8ac9f92867c6f69605c5554524d4f4e4d4c4c4c4a463f372d23180d0100000b1824313e4b5764717e8a97a4b1bdcad7d5cbc3bcb8b6b8bcc3cbd5d4c8bcb1a7988c7f7265574d42362a180e03000000000000000000000000000000000000000000000000000007131f2c3845515c6775818e9baab3becad6cbc3bcb8b6b8bcc3cbd5dfd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3e2d6cabfb4aaa29f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9b8e8175685b4e4235281b0f000000000000000000000000060f172029323a414950585f656c71787e83888c9196979a9c9e9fa4aba2a3a3a2aba49f9e9c9a9795918d88837e78706b605c5556636f7c898e8e8e8e8e8e8e8e8e887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000030e182227333f49535d676e7b859299a3afbbc1cbd4cdc2baaea29891847a6d665c5656565656565656565656565656565656565656565656565656565656565656565656565655534d453b31261a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2c3945515d6774808d9aa4afbbc7d1c6baaea3998f82786d605a50473f352f28231c1815120f0a0e090e1214181c23282f383f44505b666f7c87929fabb4bfcbd1c4b8ab9f95887c6f6255493c31261a0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000613202d394653606c7985929fabb8c5d2deddd0c3b7aa9d908377695e52463a2d201403000000000000000000000000000000000000000000000000000000000000000000000000000b17222d394653606c7885929eabb8c5d1dedbd0c2b6a99c8f8376675d5145382c1f130600000000000000000000000000000000000000000714212d3a46535e6976828f9caab4bec8bcb1a79a8d8073665c504438281e130800000000000000000000000000000000000000000000000000000006111b262f3846525d68717e8a919ca4aebabfc6c4beb6afaca9a19e9d9b9c9d9fa3aaabb1babfc5c4bdb4aba39892867b6e615a50443a30343f46525e68707d88939fa7b1bcbcb1a79d928a7d70685e53493f33271f160d1113181d20212325272829292827262422211e1a1613100b03000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c677784909daab7c3cfdad3c6baaea29891847b736d6764615e575c5b5a5959585651493f34291e120600000b1824313e4b5764717e8a97a4b1bdcad7ddd5cdc8c4c3c4c8cdd5ddd1c4b8ab9f95877b6e6154483b31261a0800000000000000000000000000000000000000000000000000000004101c2934404b5564707d8a98a2aebac6d3d5cdc8c4c3c4c8cdd5dde7d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3e7dbd0c5bcb4aeacabababababababababababababababababababababababababababababababababababababababababababababababa89b8e8175685b4e4235281b0f00000000000000000000000000060e1720282f383f444e535b60666d71777b8084878a8d8f9193999595969695959993918f8d8a8784807b76716c656059514b53606d7981818181818181818181817a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000000000000000000061017222d38414b555f69707d87929fa5afb9c3cdd6cabfb4aaa1968f82786d605a504a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4846423b332a1f14090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b55626f7c87939fabb5c0cbcbbfb4ab9f948d80736c615951454039342e2924211f1b1c1b1c1a1e2123292e343b4149505c606c78839099a3afbdc6d1c9bdb2a89d9083766a5f54473b2a20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000815222e3b4855616e7b8897a2adbac6d3dfd8ccc0b6ac9a8d807467574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3744505b6575828f9ba8b5c2d0dcdfd2c5b9ac9f92867a6d6053473a2d20140700000000000000000000000000000000000000000815212e3b4854616e7b87939facb9c5c4b8ab9f95887b6f62544a3f3428160c020000000000000000000000000000000000000000000000000000000b17222d38414f59616d7a85929ea3adb6bfcbc3bab2aca49f9b9792908f8f9092989d9fa7aeb4bcc5c6bdb4aaa2988f82766c61564c41352a36414c56606b73808d95a0aab4bfb9aea49e92857a6e655b50443c31281d1207070d11131416181a1b1c1c1b1b19171514120e0907040000000000000000000000000000000000000000000000000000000000000000000004101c2934404b556874818e9ba9b3becad6d6cabfb4aaa19691867f7975716e696a686767666565625b51463a2e22150900000b1824313e4b5764717e8a97a4b1bdcad7e6dfd9d4d1d0d1d4d9dfdcd0c3b6a99d908376695e53463a291f1409000000000000000000000000000000000000000000000000000000000c18232f3a4653606d7985929fabb8c5d0dbd9d4d1d0d1d4d9dfe7e3d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3ece2d7cec5bfbab8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b4a89b8e8175685b4e4235281b0f0000000000000000000000000000050e161d262d333c414950545c60646a6f73777b7d808384868888898989888887868482817e7a77736e6a64605b534f4545515c666d75757575757575757575756e685e5246392d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3a434d57606b727f8c939ea7b1bbc4cfd0c6bcb2a89f948d80736c61584e443d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a36312a21180e0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3947535f6a75818e99a3afbbc5cfc6bdb0a69d928a7e716b635b514b444039352f2e2b26292828262b2d2f34383f444d535b606e74808d959fabb5c0cfd2c5b9ada1968b7e7164584e43372b180e0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000a1724313d4a5764707d8a97a9b3becad6e0d4c8bbafa49a8a7d7064574a3d30251a0e0200000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495365727f8b98aab4bfcbd6e0d3c7baaea398897c6f6256493c2f2316090000000000000000000000000000000000000007131f2c38434f5966737f8c9aa4afbbc8bfb4ab9d9083776a5f5342382e23170b000000000000000000000000000000000000000000000000000000030f1b27333f4953606b74818e97a1adb5bfc8c3b9b1a8a19a938e898583828284868b90959fa2aab4bcc5c6bcb4aa9f948a7e71685d52463a2f303a444f59606d79839098a2aebac0b9ada1978f82776c60584e43392f24180f0501040607090c0e0f0f0f0f0e0d0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000c18232f3e4b5864717e8b97a1adb9c7d1dbd0c6bcb2a8a198928c85827e7b78777574737372726d62564a3e3124180b00000b1824313e4b5764717e8a97a4b1bdcad7e4eae4e0dddddde0e4e0d4c7bcb1a7988c7f7265574d42362a1e12050000000000000000000000000000000000000000000000000000000007131f2c3845515c6775818e9baab3becad6e2e0dedddee0e4eaf1e3d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3e3e9e0d7d0cac6c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000040b141b22272f383f444a5053585f6266696e71747678797b7b7c7c7c7c7b7b79777674716e6867625f58535049413d404b545c606868686868686868686868615e564c41362a1e110500000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d28313c454f59626d74818e959fa9b3bdc6d1cec4bab0a69d928a7e716a60564c42392e3030303030303030303030303030303030303030303030303030303030302e2d2a261f180f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2b37434e58626e7b87929fa9b3bec9cfc2b8aea49f92867d726d605d55514a45403c3a373136353531373a3b40454a50565e656c73808c929da7b1bdc7d1c8bdb1a89e9184796d6053473c32261b070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000d1a2633404d596673808c99a6b3bfd0dbdfd2c6b9ac9f93867a6d6154473a2e2114090000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3c4955626f7c8898a3aebac7d3e0d7cbbfb4aa978b7e7164584b3e31251806000000000000000000000000000000000000000915222f3b4854606b7784919eacb6c0c7baaea3998b7f7265584e4330261c110600000000000000000000000000000000000000000000000000000005121f2b3744505b656f7c88939fa9b3bec7c4bab1a7a0969188817d79767575777a7e838b9298a2aab4bcc6c6bcb0a69e92857a6d61554b413529323d45515c666e7b86929fa5afbabeb3a99f948c7f726a5f554b40352921170b02000000000001020303020100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929eabb5c0cbd7d7cec4bab2aaa29f97928e8a8785838281807f7f7f7265584c3f3225190c00000b1824313e4b5764717e8a97a4b1bdcad7e4f5f0eceae9eaeceaddd1c4b8ab9f95877b6e6154483b31251a0e020000000000000000000000000000000000000000000000000000000004101c2834404b5564707d8a98a2aebac6d3dfeceae9eaecf0f5f0e3d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6d6d6d6d6d6dbd6d3d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2cec1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000020a11171d262d33383f44464e5355575e61646769666d6e6f6f70706f6e6e6d66696764615e5655534e46443f382f39424b51535b5b5b5b5b5b5b5b5b5b5b54524c443b3025190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000020b161f2a333d47515b606d79839097a1abb4bfcbd7ccc2b8aea49f92867c6f685e544a403428232323232323232323232323232323232323232323232323232323232322211e1a140e0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010f1a26313c47535f6974818e97a1adb9c1cccac0baaea29892877f746d67605c54514b48474344434142434246484b51545c60686e777f8c929ca4aeb9c2cfccc4b8aca0958b7e71675c5145382a20150a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100030f1c28333f4a546875828f9ba8b5c2cedbddd1c4b7aa9e918477685e5246392d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000613202d3a4653606d7986929facb8c5d2dfdcd1c0b3a6998d8073665a4d402d22170b00000000000000000000000000000000000004101d2935404b55636f7c8996a0acbec7c5b9ac9f92867a6d6154473c3121140a000000000000000000000000000000000000000000000000000000000613202d394653606c7883909aa4afbbc5c7bdb2a8a09590847d75706c666869676d71787f869298a2aab4bfcbc2b9ada1978d8074675d5145392c2834404b545f69717e8b939ea8b2bdbbb0a69f92867c6f675d51453e33291d140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515d6773808d99a3afbbc4cdd7d6ccc4bcb4aea9a29f9b979792908f8e8d8c8c83776a5d5144372a1e1104000b1824313e4b5764717e8a97a4b1bdcad7e4f0f0f0f0f0f0f0e4d8ccc0b6ac9d908376695e53463a291f14090000000000000000000000000000000000000000000000000000000000000c18232e3a4653606d7985929fabb8c5d0dbe6f2f0f0f0f0f0f0e3d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000000000060b141b22272e34383c4347484d5254575a545c606162626363626261605c545a5754524d4847433c37332d2730394045464e4e4e4e4e4e4e4e4e4e4e4746413b32291e140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18212b353f45515c676e7b859199a3aebac0cad4cac0baaea39891847a6d665c51443f342b201717171717171717171717171717171717171717171717171717171514120e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202b37424d57616d7a85929ea5afbac3cecabfb4aaa299938c8179726d66605d5555534e504f4e4f504d5355555c60666d717a828c929ca4aeb6c0cbcec4baafa59d9184786d60554b4034291c10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110006121f2b3844505b667784919eaab7c4d1dddbcfc2b5a89c8f827569564c41362a1d110500000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667783909daab6c3d0dddbcec1b5a89b8e82756853493f33271b0f03000000000000000000000000000000000006131f2c3845515d6774818e9aa8b2bdc9beb3a99b8e8275685d5246392d20130200000000000000000000000000000000000000000000000000000005111d2935414c5663707d8995a0acb6c0ccc0b5aba09690837a706b63605b54555d60656c727c869298a3aebac4c9beb3a99f92857a6d6054473c32262e39424d57626c75818e96a1abb5c0baaea3999184796d605a50453b2f261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b55616e7b86929fa8b2bbc5cdd6d6cec6bfbab3adaba8a9a29f9d9b9a9a998e8174675b4e4134281b0e01000b1824313e4b5764717e8a97a4b1bdcad7e3e3e3e3e3e3e3e3e0d4c8bbafa49a8c7f7265574d42362a170d0300000000000000000000000000000000000000000000000000000000000007131f2c3845515c6774818e9ba9b3becad6e2e3e3e3e3e3e3e3e3d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdb4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000020a11171c23282b31373a3c4246484a4d4b5153555556565655555453514b4e4b4746413b3a37312b27221e272e34383a42424242424242424242423b3936302920170d020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a232934404b555e696f7d87929fa4aeb8c2ccd6cbbfb4aaa1969082786d605a50463d32291e150b0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e1a26313c46525e68717e8a939ea8b2bcc5cfc6bcb4aba49f938e847f79716d6765625f585d5c5b5b5d575f6165676d72787e858f949ca4adb6bfc8d0c6bcb2a89d92897d70665c5043392f23180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000613202d394653606c7986929facb9c5d2dfd9ccc0b3a6998d8073665a4d403025190d0100000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546874818e9ba7b4c1cedaddd0c3b7aa9d908477655b5044372b1f120500000000000000000000000000000000000714202d3a4753606d7985929fabb8c3c6b9ada1978a7d7063564c4135291d11050000000000000000000000000000000000000000000000000000000713202d3946525d6875818e9ba7b1bec7c7bbafa49991847a6e68605953504a4b51535b606a707d86929fa8b2bdc9c5baaea2988b7e7165584e43372b27303c45505a606d7a849199a4afbbbfb4aba0968e81746c61574d42382d22170d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3946525e6974818e96a0a9b3bbc3cad0d6d0cac5bebab8b5b3adabaaa8a7aa988b7e7165584b3e3225180b00000b1824313e4b5764717e8a97a4b1bdcad6d6d6d6d6d6d6d6d6d6d2c6b9ac9f93877b6e6154483b31251a080000000000000000000000000000000000000000000000000000000000000004101c2834404b5563707d8a97a2adbac6d3d6d6d6d6d6d6d6d6d6d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000060b11171c1f262b2e30363a3b3e414045464848494949494848464540413e3b3936302e2b261f1b17151d23282c2d35353535353535353535352e2d2a251e170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081118232f39434d57606b717e8b929da6b0bac4ced0c6bcb2a89f948d80746c62584e443b30271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915202a36414c56616c75828f96a0aab3bcc6cec6bdb5afa59e96918b847e7a76726f6a6b6a696868696a696e7275797e848a92979fa6adb6bfc8d2c7beb4aaa1968e81746b60544a3f31271d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000814212e3b4754616e7b8799a3afbbc7d3e0d7cabeb1a4978b7e7164584b3e3125180800000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3f4c5966727f8c99a5b2bfccd8dfd2c5b8ac9f9285796c605346392d2013060000000000000000000000000000000005121e2a36424d5764717e8a98a2aebac6c4b8ab9e9185796d6053463a3024190d010000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c3cbbfb4aa9f93877c6f685e564f46443f4145495058606b737f8c96a0acb9c5cabfb4aa9d9083776a5f53473b2e212a333f45525d686f7d87939fa7b1bcbdb2a89d938a7e71695e544a3f33281f160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2a36424d57606d79849197a1a9b1babfc6cacfd3d0cac6c5c1bebab8b6b5aea298887b6f6255483c2f22150900000b1824313e4b5764717e8a97a4b1bdc9c9c9c9c9c9c9c9c9c9c9ccc0b6ac9c908376695e52463a291f140900000000000000000000000000000000000000000000000000000000000000000c18232e3a4653606d7985929fabb8c5cfc9c9c9c9c9c9c9c9c9c9c9bdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000060b10151a1f21252a2d2e312e34383a3b3c3c3d3d3c3b3b3a38342e312e2d2a25211f1a150f0b0b12181c1f20282828282828282828282821201e19140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313b454f59626c74808d949fa8b2bcc6d0cec4bab0a69d928b7e716a60564d42392e231810070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d1925303a44505a606d79849198a2aab4bcc6cec7c0bbafa9a19e96918b86827f7b7978777674757677787b7e82858b91969ea1a9b0b8bfc8d0c7c0b6aca2989184796d60594f42382e1f150b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000916232f3c4956626f7c8995abb5c0cbd7e3d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000061724313d4a5764707d8a97a3b0bdd2dde0d3c7baaea298877b6e6154483b2e211508000000000000000000000000000000000714202d3a46525e6976828f9caab3bec8bcb1a79a8d8073665c504438281e130800000000000000000000000000000000000000000000000000000004101c2934404b5565727f8b98a3aebac7c7baaea3988e81746a60564c443d383335383f444f59606d7984919eaab4becac5b8ab9f95887c6f6255493c2e23212935414c56606b73808c959faab3bebaafa59f92857b6e665b50443d31281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a25303b45515d676f7c859297a0a7aeb4babec5c6cad0d0d2d0cac6c5c3b8ac9f9285796d6053463a2d20130700000b1824313e4b5764717e8a97a4b1bdbdbdbdbdbdbdbdbdbdbdbdbdbbafa49a8b7f7265574d42362a170d03000000000000000000000000000000000000000000000000000000000000000007131f2c3845515c6674818e9ba9b3bebdbdbdbdbdbdbdbdbdbdbdbdbdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696968e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000030a0f12151a1e20212423282c2d2e2f2f30302f2f2e2d2c28232421201e1914120f09030000070c1013131b1b1b1b1b1b1b1b1b1b1b1414110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f29333d46505a606d78828f96a1aab4bfcad6ccc2b8aea49f92867c6f685e544b40342823190f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323e45515d676e7b869298a3aab4bcc4ccccc1bbb2ada8a19e99928f8c88868483828182838485888b8e92979ea0a8adb3bbc2cacfc6beb6afa49a92867c6f675d51473d30261c0d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000a1724313d4a5764707d8a97a3b0bdd1dce2d6cabeb3a994877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995acb6c0ccd8e2d6cabfb4aa96897c706356493d3023160a000000000000000000000000000000000815212e3b4854616e7b87939facb9c5c4b8ab9f95887c6f62544a3f3428160c0200000000000000000000000000000000000000000000000000000006131f2c3845515c677683909daab4bfcbc5b8ac9f92867a6d61584e443b322b28292d333d45515c67717e8b98a2aebac6c8bcb1a7998d807366544a3f34281c24303a444f59606d78839098a2aebac0baada2979082786c60584e433a2f24190f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2935404b555f6a6f7c8590959fa2aaadb3b8babfc2c4c5c7cbd1cbc3b6a99c908376665c5044382b1f120600000b1824313e4b5764717e8a97a4b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0ac9f93877b6e6154473b30251a0800000000000000000000000000000000000000000000000000000000000000000004101c2834404b5463707d8a97a2adb0b0b0b0b0b0b0b0b0b0b0b0b0b0b0a3978a7d7064574a3d3124170a000a1724313d4a5764707e8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000306090e12141517181c1f202222232323222221201f1c18181414110e0806020000000000000406070f0f0f0f0f0f0f0f0f0f0f0807050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17202b343f44505c666d7a849198a2aebac0cad3cac0baaea39891847a6e665c51453f352b21170d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202935414c555f69707d869298a2aab2bac2cacdc4bdb9b2acaba39f9c98999291908f8e8e90919297989b9ea2a9acb2b9bec5cdccc4bdb4aca49f93887e706a5f554b41352b1e140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000c1825323f4b5865727e8b98a5b1becbd8dfd2c6b9ada19786796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b879aa4afbbc8d4e0dbd0bdb0a3978a7d7064574a3d3124170a00000000000000000000000000000007131f2c38434e5866727f8c99a4afbbc7bfb5ab9d9083776a5f5342382e23170c000000000000000000000000000000000000000000000000000000000714202d3a4753606d7986929facb9c5cabeb3aa9b8e8175685e52463c3229201c1b222934404b55606d7985929fabb8c5cdc3b6a99c908376665c5044382c1f1e28323d44505c666e7b85929fa5afbabeb3a99f948c7f736a60554c41352921180c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d18242f3a434e58606a6f7b838c92989fa2a9acaeb4b5b7b9bbc0bebfc0b3a69a8d807367544a3f34281c100300000b1824313e4b5764717e8a97a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3ab9c908376695e52463a291f1409000000000000000000000000000000000000000000000000000000000000000000000c18232e3a4653606d7985929fa3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3978a7d7064574a3d3124170a000814212e3b4754616e7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f6255493c2f22160900000000000000000000000000000000000000000000000000000000000002050708070c10131315151616161615151313100c07080705020000000000000000000000000202020202020202020202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e192228343f4a545e686f7c86929fa4aeb8c1ccd7cbbfb4aaa1969082786d605b51473d33291f150b0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e19242f3a434d57606b707d869298a1a8b0babfc5cec9c4bdb9b4aeaca9aba39f9e9d9c9b9b9c9d9ea2a9a8abadb3b9bdc4c9cec9c1bab2aba39a938b7f726c61584e433a2f231a0c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000d1a2633404d596673808c99a6b3bfccd9ded1c5b8ab9e928578675c5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939facb9c6d2dfd7cabdb1a4978a7e7164574b3e3124180b0000000000000000000000000000000915222e3b4854606a7784919dabb5c0c7bbaea3998b7f7265584e4330261c1106000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8999a3aebac7c6baaea2988a7d7063564c41342b20170f1118232f3945515d6774818e9ba7b4c1cfc5b8ac9f9285796d6053463a2d20162028343f4a545f69717e8a939ea8b2bdbbb0a69f92877c6f675d51453e332a1e150a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313c464e5860696e787f868d92979b9fa2aaa8aaacafb5b1b2b3b3a9978a7d7164574a3e2e23170b0000000b1824313e4b5764717e8a969696969696969696969696969696969696998b7f7265574d42362a1e11050000000000000000000000000000000000000000000000000000000000000000000007121f2c3844515c6674818e969696969696969696969696969696969696968a7d7064574a3d3124170a000714202d3946525e686e7070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706f6a5f53473b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000406070809090a0a090808070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071017232e38424c565f6a717e8a929ca6b0bac3ced1c6bcb2a99f948e81746d62594f453b31271d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313c454f59616b707d8691969fa6aeb4bcc1c7ccc9c6bfbab9b6b4aeacabaaa9a7a8a9aaabadb3b5b8b9bec5c9cec9c4bdb9afa8a19992887f726d625a50463c31281d1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000d1a2734404d5a6773808d9aa6b3c0cdd9ddd0c4b7aa9d9184776a554b4034281c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844515c667885929eabb8c5d1ded7cbbeb1a4988b7e7165584b3e3225180b000000000000000000000000000004101d2935404b55626f7c8996a0acbdc7c5b9ac9f92867a6d6154473c3121150a00000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98abb4bfcbc5b8ab9f9285796d6053463a3020190e0507121d2935404b5564707d8a97a9b3bec9c6baaea298887c6f6255493c2f221617232e38424d57616c74818e96a0abb5c0bbafa39991847a6d605a50453b30261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a343d464e575e666d727b80858a8e9298989b9d9fa3aba4a5a6a7a197877b6e6154483b2e2115060000000b1824313e4b5764717e8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a877b6e6154473b30251a0e020000000000000000000000000000000000000000000000000000000000000000000004101c2834404a5463707d898a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a7d7064574a3d3124170a0005111e2a36414c565e61636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363625f584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303a444e58616c73808d949ea8b2bcc5d0cfc4bbb0a69d938b7f726b60574d43392f2318110700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a333d474f59616b707c848f949fa2aab0b7bbc1c6cacbc7c5c2bfbab9b7b6b5b4b5b6b7b8b9bec1c5c6cacec8c4beb9b2aca59e9691877e726d625b51483e342a1f160c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000e1b2734414e5a6774818d9aa7b4c0cddaddd0c3b6aa9d9083776a5d50442e23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a546b7884919eabb7c4d1ded8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000000000006131f2c3845515d6774818e9aa8b2bdc9beb3a99b8f8275685e5246392d20130300000000000000000000000000000000000000000000000000000000020f1c2835424f5b6875828e9ba8b5c1d1c2b6a99c8f8376665c5044382b1f120700010c18242f3b4854616e7b8797a1adb9c6cabfb4aa988b7e7265584b3f322518111c26303b45505a606d79849199a3afbbc0b5aba0968e81756c61574d42382e23170e0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18222b343d454d545c60686e73797e8285898c8f9192999697989a9a9b928578695e53463a2d2114070000000814212e3b4754616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d70695e52463a291f14090000000000000000000000000000000000000000000000000000000000000000000000000c18232e3a4653606d787d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7a6e6154473b2e21140800010d1925303b444c525457575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575755534e463c32261b0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005090d0f1013131313131313131313131313130a090703000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e29323c46505a606c78828f96a0a9b3bdc7d2cdc2b9afa59f92877d6f695e554b40342923190f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18212b353d474f59616a6f7a828b92989ea6aab0b8babec5c6cacfcbc7c5c4c3c2c1c1c3c4c5c6cacfcec8c5c3bcb8b2ada8a09e938f847c716c625b51493f362c22190d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000e1b2835414e5b6874818e9ba7b4c1cedadccfc3b6a99c908376695d5043362a1d07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e44515e6a7784919daab7c4d0ddd9ccbfb2a6998c7f7366594c403326190d00000000000000000000000000000714202d3a4753606d7985929fabb8c3c6b9ada1978a7d7063564c41362a1d110500000000000000000000000000000000000000000000000000000000030f1c28333f4a546a7784919daab7c4cdc0b3a69a8d807367544a3f34281c100300000714202d3a46525e697885929eabb8c5d0c1b4a79a8e8174675b4e4134281b0a151e29333e45515d676f7c87929fa6b0bbbdb2a89e938a7e71695f544a3f342820160c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061019222b333b424a51565e61676d7175797c7f82848688898b8c8d8d8e8f827569574d42362a1e12050000000714202d3a46525e696e7070707070707070707070707070707070707070706b60564d42362a170d0200000000000000000000000000000000000000000000000000000000000000000000000007121f2c3844515c666d7070707070707070707070707070707070707070706e685e5246392d201407000008141e29323b4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4947433c342a20150a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1015191c1c2020202020202020202020202020161613100b040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17202a343e44505b666d79849197a2abb5c0ccd7cbc0bbaea39991857b6e675c51453f352b21170d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a232c353d474f585f686d787f868f939c9ea6abaeb3b8b9bec1c3c4c6c9cfc8c9c9d1cbc7c5c4c2c0bcb8b7b1aca9a19e96918a817a6f6a615a51493f372d241a10070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000f1b2835424e5b6875818e9ba8b4c1cedbdccfc2b5a99c8f8276695c4f4336291c1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000071e2a3744515d6a7784909daab7c3d0ddd9cdc0b3a69a8d8073675a4d4034271a0d0000000000000000000000000005111e2a36424d5764717e8a97a2adbac6c5b8ab9e9285796d6053463a3025190d010000000000000000000000000000000000000000000000000000000006121f2b3844505b667885929fabb8c5cabdb1a4978a7e7164574b3e2e23170b00000005121e2a36424d576976828f9ca9b5c2cec1b5a89b8e8275685b4f4235281c0f0c17212935414b55606a727f8c949fa9b3bebaafa59f92867b6e665c50443d32281e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000710192129303940444d52555d6064676d6f727577797b7d7e7f808181827e7164584b3e31251a0e0200000005111e2a36424d575e6163636363636363636363636363636363636363636360594f443b302519050000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a545c60636363636363636363636363636363636363636363615e564c41362a1e11050000020d1720293036393b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b37322a22180e040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c141b212628292d2d2d2d2d2d2d2d2d2d2d2d2d2d2322201b160f070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e182228333f4a545d676e7b859299a4afbbc1cbd7cbbfb5aba1979083796d605b51473d33291f150b010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a232c353d464e565e666c727b82898f949a9fa2aaabadb3b4b6b8b9bebbbcbcbcbbbfbbb9b7b5b3b1acaaa7a09d97918c847d756d68605850483f372d251b1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000f1c2935424f5c6875828f9ba8b5c2cedbdbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2a3743505d6a7683909da9b6c3d0dcdacdc0b4a79a8d8174675a4e4134271b0e000000000000000000000000000714202d3a46525e6976828f9ca9b3bec8bcb1a79a8d8073665c504438281e130800000000000000000000000000000000000000000000000000000000000613202d394653606c7986939facb9c6c9bcafa396897c706356493d30231606000000020e1a2530424e5b6875818e9ba8b4c1cec2b6a99c8f8376695c504336291d10060f18242f3a434e58606c78828f97a2adb9c0baaea2989083786d60594f443a3024190f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f171e272e343b41464b5153555c60636568666d6e70717273747575716c6256493d301f140900000000020e1a25303b454d5254575757575757575757575757575757575757575756544f473d32291f140900000000000000000000000000000000000000000000000000000000000000000000000000000c18232e39424a515357575757575757575757575757575757575757575754524c443b3025190d01000000050e171e252a2d2e3030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302f2e2b26201810070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c161e262d3235363939393939393939393939393939302f2c27211911070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061017222d38424c555f69707d87939fa5afb9c3cdd1c6bdb3a99f958e81746d62594f453b31271d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a232c343c444c545b60696e757c82898e92989b9ea1a9a7a9abadb3aeafafafafb5aeacaaa9a6a7a09d9995908b847f79706b615d564e463e362d251b130900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000f1c2935424f5c6875828f9ba8b5c2cedbdbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2a3743505d6a7683909da9b6c3d0dcdacdc1b4a79a8e8174675b4e4134281b0e000000000000000000000000000814212e3b4754616e7b87939facb9c5c4b8aca095887c6f62544a3f3428160c0200000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8799a4afbbc7c8bbafa295887c6f6255493c2f22160900000000091b2734414e5a6774818d9aa7b4c0cdc3b7aa9d9084776a5d5144372a1e110007131d28313d44505b666e7b85929ea5afbabeb4aa9f958c80736b60564c41352921180c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c151c23283036394045474b51535659545c60626364656767686864625a5045392d210d03000000000009141f29333b4246474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4948443d352b20170d02000000000000000000000000000000000000000000000000000000000000000000000000000007121c2730394044464a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4746413b32291e14080000000000050d14191e202124242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242422211f1b150e070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e2830383e414346464646464646464646464646463d3b38322b23190f04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3a434d57616b727f8c939ea7b1bbc5cfcfc4bbb1a79d938b7f726b60574d43392f24181108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a222a323a424a50575e616a6f757c81858a8f9297989a9c9ea1a9a1a2a3a3a2aba39f9e9c9a9795918c88837e79726d676159524c443c342d241b12090100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000f1b2835424e5b6875818e9ba8b4c1cedbdccfc2b5a99c8f8276695c4f4336291c1003000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0dddacdc0b3a79a8d8074675a4d4134271a0e00000000000000000000000006131f2b37434e5866727f8c99a4afbbc7bfb5ab9d9083776a5f5342382e23170c0000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8894abb5c0ccc7bbaea194887b6e6155483b2e221508000000000d1a2733404d5a6673808d99a6b3c0ccc4b7ab9e9184786b5e5145382b1e1205010c161f28333f4a545e69707e8a929da8b1bdbcb1a79f93877d70685d52463f332a1e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181f252a2f35393a404546494c4a5153555658595a5a5b5c585650483e34291d11000000000000020d17202930363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b38332b23190e05000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e272e34383a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3936302920170d0200000000000002080d1114141717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171615130f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101b26303a42494e4f53535353535353535353535353534948443d352b21160b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d28313c454f59636d75818e95a0a9b3bdc6d1cdc2b9afa59f92877d70695e554b40352923190f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008101820282f383f444d525860626a6f74797e8285888b8e909197949595969695959992918f8d8a8784807b77716d67605c554f46413a322b221b1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000e1b2835414e5b6874818e9ba7b4c1cedadccfc3b6a99c908376695d5043362a1d0700000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0ddd9ccc0b3a6998d8073665a4d4033271a0d0000000000000000000000000815222e3b4754606a7784919dabb5c0c7bbaea3998b7f7265584e4330261c11060000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbd1c7baada094877a6d6154473a2e211407000000000c1926333f4c5966727f8c99a5b2bfccc5b8ab9f9285786c5f5245392c1f120600040d17222d38424d57616c74818e95a0abb4bfbbafa49991847a6d615a50453c30271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c14191d24292c2e34383a3c3f404446484a4b4c4d4e4e4f4b49453e362d22170c00000000000000050e171f252a2d2e3030303030303030303030303030303030303030302f2c27211911070000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151c23282c2d3030303030303030303030303030303030303030302e2d2a251e170e05000000000000000000010507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0908060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915212d38424c545a5c606060606060606060606060606056544f473d32271b10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b161f2a333e47515b606d79839097a1abb5bfcbd7cbc1bbafa39992857b6e675d51453f352b21180d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e161d262d333b42464e54586062676d7175797b7f818385868788898989888887868482807d7a77736e6a65605c55514b433e3530282019100900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000e1b2734414e5a6774818d9aa7b4c0cddadcd0c3b6a99d9083766a5d50432e23180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a546b7884919eabb7c4d1ded9ccbfb3a6998c807366594d4033261a0d000000000000000000000004101c2934404b55626f7c8996a0acbdc7c5b9ac9f92867a6d6154473c3221150a000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895abb5c0cbc7baaea194877b6e6154483b2e211508000000000d1a2633404d596673808c99a6b3bfccc4b8ab9e9185786b5e5245382b1f1205000006111c262f3b45505a606d79839199a3aebac0b5aba1968f81756c62574e42392e23180e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080e12181d1f23282c2d302e34383a3b3d3e3f404142423e3d39342d241b10060000000000000000050d141a1e202124242424242424242424242424242424242424242322201c160f0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f2024242424242424242424242424242424242424242421201e19140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1926323e49545e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6360594f44382c201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18212c353f45515d676e7b859299a3aebbc0cbd7cbc0b5aba1979083796d605b51473d33291f160c010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b141c222830363d43474e54555d6064656c6f727476787a7b7b7c7c7c7c7b7b79777673706d6866625f5853514b4540393129241e160e070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000d1a2734404d5a6773808d9aa6b3c0cdd9ddd0c3b7aa9d9084776a544b4034281c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b667885929eabb8c5d1ded8ccbfb2a5998c7f7266594c3f3326190c000000000000000000000006131f2c3845515c6774818d9aa8b2bdc9beb3a99b8f8275685e5246392d201303000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8799a3afbbc7c8bbaea295887b6f6255483c2f221509000000010e1a2734414d5a6774808d9aa7b3c0cdc4b7aa9d9184776a5e5144372b1e11040000000a141d29333e45515d676f7c86929fa6b0bbbdb2a89e938b7e716a5f544b40342820170b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c1013181c1f202323282c2d2f3031323434353531302d29221b12090000000000000000000002090e1114141717171717171717171717171717171717171717161613100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c1012131717171717171717171717171717171717171717171414110d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1c2835414e5a6670767979797979797979797979797979706b6054483b2f22160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a232935404b555e696f7d87929fa5afb8c2ccd1c7bdb3a9a0958e81756d62594f453b31281d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f252a32383d43474b5153535b6062656769676d6e6e6f70706f6e6e6d66696764615e5655534e46454039342f271f19130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000d1a2633404d596673808c99a6b3bfccd9ded1c5b8ab9e928578665c5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7986929facb9c5d2dfd8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000714202d3a4753606d7985929fabb8c3c6b9ada1978a7d7064564c41362a1d1105000000000000000000000000000000000000000000000000000000000000000613202d394653606c7986929facb9c5c9bcafa296897c6f6356493c30231609000000020e1b2835414e5b6874818e9ba7b4c1cec3b6a99c908376695d5043362a1d1003000000020b17212935404b555f6a727f8c949fa9b3bebaafa59f92867c6e665c51453d32291d140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004070c10131316181c1f2022232526272728292524211d17100900000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09070400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a080705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c69768286868686868686868686868686867d706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081118242f39434d57606b727f8b929da6b0bac4cecfc5bbb1a79e938c7f726b60574d43392f2418110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141a20272b32373940454749505355585b555d606162626363626261605c545a5754524c4847433c38342e29231d150d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000c1925323f4c5865727f8b98a5b2becbd8dfd2c6b9ac9f9386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8799a3afbbc7d4e0d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000005111e2a36424d5664717e8a97a2adbac6c5b8ab9e9285796d6053463a3025190d010000000000000000000000000000000000000000000000000000000000000005121f2b3744505b657885929eabb8c5c9bdb0a3968a7d7063574a3d3024170800000004101c2934404b556875828f9ba8b5c2cec2b5a89b8f8275685c4f4235291c0f0200000000050f18242f39434e58606c77828f97a1adb9c0baaea2989083796d60594f443a2f261b110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607070c101213151718191a1b1b1c181715110c060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f939393939393939393939393897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313b454f59626d74818e949fa8b2bcc6d0cdc3b9afa59f92877d70695f554b403529231a0f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e161b20272b2f35383a3f4446484c4e4b5153545556565655555453504a4d4a4746413b3a37312c28231d18120b03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000a1724313d4a5764707d8a97a3b0bdd1dce0d4c8bbafa49a877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895abb5c0cbd7e3d8ccc0b6ac96897c6f6356493c30231609000000000000000000000714202d3a46525e6976828f9ca9b3bec8bcb1a79a8d8074665c514438291e13080000000000000000000000000000000000000000000000000000000000000000030f1b27333f49536a7784919daab7c4cbbeb2a5988b7f7265584c3f3024190d01000006131f2c3845515c677784909daab7c3cec1b4a79b8e8174685b4e4135281b0e02000000000007121d27313c44505b656e7a85929ea4aeb9bfb4aaa0958d80736b60564c41382d22170d030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607080a0b0c0d0e0f0f0b0a080500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060a0e1011131313131313131313131313131311100e0b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060809131313131313131313131313131313100f0d09050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9c9f9f9f9f9f9f9f9f9f9f96897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f29333d47515b606d78829096a1aab4bfcad6cbc1bbafa39992857b6e675d51453f352c21180d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f151b1d24292c2d3337393c3f41404547484849494949484846443f403d3a3936302e2b261f1c18120c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000916232f3c4956626f7c8995abb5c0cbd7e3d8ccc0b6ac95897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdd1dce0d4c8bbafa49a877b6e6154483b2e211508000000000000000000000814212e3b4754616e7b86929facb9c5c5b8aca095887c6f62544a403428170c020000000000000000000000000000000000000000000000000000000000000000000b17222d424f5b6875828e9ba8b5c1cfc1b4a89b8e817568564c4135291d110500000714202d3a4753606d7986929facb9c5cbc0b5ab998c7f7266594c3f3326190c000000000000010b151f27333f49535e68707d8a929da7b1bcbcb1a79f93887d70685e53493f33271f150b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b11161a1d1e20202020202020202020202020201e1d1b17110b04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f1315162020202020202020202020202020201c1c1915100a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9acacacacacacacaca396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17212b353f44515c666e7a849198a2aebac0cad7cbc0b5aba2979083796d605b51473e332a1f160b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f12181d1f22272b2d2f322f35393a3b3b3c3d3d3c3b3b3a38342e312e2d2a25211f1a15100c0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000814212e3b4754616e7a8799a3afbbc7d3e0ddd2bdb1a4978a7e7164574b3e3124180800000000000000000000000000000000000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1becbd8dfd2c6b9ac9f9386796d6053463a2d20130700000000000000000006131f2b37434e5866727f8c99a3afbbc7c0b5ab9d9083776a5f5342392e23180c00000000000000000000000000000000000000000000000000000000000000000000061925323f4c5865727f8b98a9b3becac4b7aa9d918477685d5246392d20140a00000916232f3c4956626f7c8999a3afbbc7c7bbafa399897c6f6356493c3023160900000000000000030d17222d38414c56616b74808d95a0aab4bfbbafa49a91857a6d655b50443c31271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003070b0d0e13131313131313131313131313131313130e0d0b0803000000000000000000000000000000000000000000000000000000000407090a13131313131313131313131313131313130e0d0b08030000000000000000000000000000000000000000000000000000000000000000050e161c2227292a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b2a27221d160e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f151b1f22232d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5b9b9b9b9b9b9afa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f19232834404a545e686f7c86929fa4aeb8c2ccd1c7bdb3a9a0958e81756d63594f453c31281d140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c1013171b1f20222524292c2d2e2f2f30302f2f2e2d2b28232421201d1914120f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000613202d394653606c7986929facb9c5d2dfd9ccc0b3a6998d8073665a4d403025190d01000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4c0cddaded1c4b8ab9e918578665c5145382c1f13060000000000000000000815222e3b4754606a7784919dabb5c0c7bbafa3998b7f7265584e4330271c1207000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7c8897a2adbac6c6b9ac9f93877a6d6154473d2f261c110709121e2b37424d5765727f8b98abb5c0cbc5b9ac9f92867a6d6053473a2d201407000000000000000006111b262f3b444f59606d79839098a2aebac0b6aca1978f82776c60584e43392f24180e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080e13171a1a20202020202020202020202020202020201b1a18140f0801000000000000000000000000000000000000000000000000050b1014161720202020202020202020202020202020201b1a18140f08010000000000000000000000000000000000000000000000000000000000040e1720272e33363739393939393939393939393939393736332e2720170e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101920272b2e2f3939393939393939393939393939393635322d261e160c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2c6c6c6c6bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071118232e39424c56606a717e8a929da6b0bac3cecfc5bbb1a79e938c7f726b61574d433a2f261b11060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004060b0f12131519181d20202122232323222221201f1c17171413110d0806020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110006121f2b3844505b667784919eaab7c4d1dddbcfc2b5a89c8f827569564c41362a1d110500000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d57697683909ca9b6c3cfdcdcd0c3b6a99d9083766a544b4034281c1004000000000000000004101c2834404b55626f7c8995a0acbdc7c5b9ac9f92867a6d6154473c3221150b00000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7985929fabb8c5c8bbafa49a8b7e7265584e42382d221813131a252d3a47535f697683909ca9b6c3d1c3b6aa9d908377675d5145392c1f13060000000000000000000a141d29323e45515c676e7c86929fa5afbbbeb3a99e948b7f726a5f554b40352920170b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b13191f2426272d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d282724201a130b02000000000000000000000000000000000000000000000810161c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d282724201a130b02000000000000000000000000000000000000000000000000000000000b16202932393f4344464646464646464646464646464644433f39322920100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f19222b32373b3c46464646464646464646464646464643413e3830281e140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfd2d2c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121c27303b444e58616c73808d949fa8b2bcc5d0cdc3b9afa59f93877d70695f554b41382d22170f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003050609070d11131415151616161615151312100b06070705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100030f1c28333f4a546875828f9ba8b5c2cedbded1c4b7ab9e918478685e5246392d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535e697885929eabb8c5d1dedacdc0b4a79a8d8174675a4e412e23180c00000000000000000006131f2c3845515c6774818d9aa7b1bccabeb3a99b8f8275685e5246392d201303000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6575828f9ba9b3bec9c0b6ac9d9083776a60544a3f3329242020262b37424d57616e7b88949fabb7c4c9bdb2a89a8d817467554b4035291d1004000000000000000000020b17202834404b555f6a727f8b939ea9b2bdbbb0a69f92867c6f675d51453e32291d140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b141d242b30333439393939393939393939393939393939393433302b251d140b01000000000000000000000000000000000000000008111a21282c2f3039393939393939393939393939393939393433302b251d140b01000000000000000000000000000000000000000000000000000006111c27323b434a4f515353535353535353535353535353514f4a443b3222190e040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202b343d4347495353535353535353535353535353534f4e49423a30261b1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e29323c46505a606d78828f96a0aab4bec7d2cbc1bbafa49992857b6e675d53493f332721180d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070808090a0a0908080706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000b17222d404c5966737f8c99a6b2bfcfdbded2c5b9aca196877a6d6154473a2e2114090000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8797a1adb9c6d2dfd8ccc0b6ac988b7e7265584b3f322518070000000000000000000713202d3a4653606d7985929fabb8c3c6b9ada1978a7d7064564c41362a1e11050000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495364717e8b97a1adb9c7c7b8ab9f95897c6f665b50443d352f2d2d31364046535f6973808d99a6b0bcc7c5b9aca196897d7063564a3d2f24180c0000000000000000000000050e18232e39434e58626d75828f96a1abb5c0baaea3989183796d605a50443b2f261c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131d262f363c3f41464646464646464646464646464646464641403c362f261d13080000000000000000000000000000000000000005101a232c33383c3d464646464646464646464646464646464641403c362f261d130800000000000000000000000000000000000000000000000000000a16222e39434d555b5d60606060606060606060606060605e5b554d44342b20150a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323d464e54566060606060606060606060606060605c5a544c42382d211509000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17202b343e44505c666d7a849198a2acb6c0ccd7ccc0b5aba2979183796d655b50443e332a1f160b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000061724313d4a5764707d8a97a9b3becad6e1d5c9bdb2a8978a7d7164574a3e31251a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a9b3becad6e0d4c8bbafa49a897c6f6256493c2f231609000000000000000005111e2a36414c5664717d8a97a2adbac6c5b8ab9e9285796d6053463a3025190d010000000000000000000000000000000000000000000000000000000000000000000000000b17222d3a4653606d7985929eabb5c0c8bcb1a79d9083786c60594f45403a393a3b4246525c616e7b86929facb8c2cbc0b5ab9e9184786c605346392d20130700000000000000000000000007121d27303c46515b616d7a849199a4afbbbfb4aaa0958d80746c61564d42382d22170d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e19242f3840474c4d53535353535353535353535353535353534e4c4841382f251a0f030000000000000000000000000000000000000b16212c353e44484a53535353535353535353535353535353534e4c4841382f251a0f03000000000000000000000000000000000000000000000000000e1a27333f4a555f676a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a675f55463c32271b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5860626c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69665e54493e3225190d00000000000000000000000000010406070a090703000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e192228343f4a545d686e7c86929aa4afbbc1cbd2c7bdb3a9a0958f81776c605a50463c31281d140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000815212e3b4854616e7b8797a2adb9c6d2dfdacec0b3a79a8d807467574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576774818e9aa7b4c1cfdadfd2c6b9ac9f93867a6d6053473a2d20140700000000000000000714202d3946525e6875828f9ca9b3bec8bcb1a79a8d8074665c514538291e13080000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6773808d99a3afbbc6c3b8ab9f958b7f726b6059514b474646484d535b636e76828f98a3aebac7c7bbafa3998c7f73665b5044382b1f1206000000000000000000000000000b151e2a343f46525e68707d87939fa7b1bcbcb1a79d928a7d70695e544a3f33281f160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2b36404a52585a60606060606060606060606060606060605b58534a41362b201401000000000000000000000000000000000004101c28333e474f555760606060606060606060606060606060605b59534a41362b20140200000000000000000000000000000000000000000000000000101d2936434f5b6771777979797979797979797979797979777167584e43372b1c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4754606a6f7979797979797979797979797979797670665a4e4135281c0f000000000000000000000001080d111314161613100b0400000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071017232e38424c565f6a707d88939fa5afb9c3cdd0c5bbb1a79e938c7f736c61584e433a2f261c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e11141414110e090200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e11141414110e090200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000714212d3a46535e697885929eabb8c5d1deddd0c3b7aa9d908477695e53463a2d211409000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535e697784919daab7c4d0ddddd0c4b7aa9d918477675d5145392c20130600000000000000000814212e3b4754616e7a86929facb9c5c5b8aca095887c6f62544b403428170d020000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b55616e7b87929faab4bfc8bcb1a79f92867d706b605d5554525354575f616d73808c949eaab4bfcbbfb4ab9f92867b6e61544a3f33281c0f0300000000000000000000000000030c18222935414c56606b73808d959faab4bfb9aea49e92857b6e665b50443d31281d130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724303c47525c64676c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645c53483c301e130800000000000000000000000000000000000714202c38444f5961636c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645d53483c301e130800000000000000000000000000000000000000000000000000111e2a3744515d6a7783868686868686868686868686868683776a605447382e23170c00000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54626f7c8686868686868686868686868686868276695c4f4336291c1000000000000000000000040c13191d20212322201b160c06000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303a444e58616c737f8c939ea7b1bbc5cfcdc3b9afa59f93887e706a5f564c42382d22171006000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d141a1e2021201e1a140d0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d141a1e2021201e1a140d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000005121e2a36424d576875828e9ba8b5c1ced9ded1c5b8aca095877b6e6154483b31261a0e010000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8795a0acb8c5d1ded7cbc0b5ab9a8d817467554b4035291d11040000000000000006131f2b37434e5865727f8c99a3afbbc7c0b5ab9d9083776a5f5442392e23180c0000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3946525e6975828e98a2aebac2c2baaea29892867d736d6763615e606164696e767f8c929ca6b0bcc6c7baaea3998f8275695e5242382d22170b000000000000000000000000000000060f1925303a444f59606d78839098a2aebac0b9ada1978f82786c60584e433a2f24180f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a26333f4c58646e747979797979797979797979797979797979746f64584c3a2f24190d01000000000000000000000000000000000916232f3c4855616b707979797979797979797979797979797979746f64594c3a3024190d010000000000000000000000000000000000000000000000000c1926333f4c5966727f8c9a939393939393939393939395887c6f62544a3f34281c1003000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c6674808d939393939393939393939393988b7e7164584b3e3125180b000000000000000000050d161e24292c2d302f2c272117110a0300000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e28323c464f59606c77818e95a0a9b3bdc7d1cbc1bbafa49a92867c6e685d544a3f332822180e0400000000000000000000000000000000000000000000000000000000000000000000000000000000050e171f252a2d2e2d2a251f18120c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c12181f252a2d2e2d2a251f170e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000020e1a25313f4b5865727e8b98a8b2bdc9d5e0d4c8bcb1a7988c7f7265574d42362a1d1207000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727f8c98a8b1bdc8d4e0d4c7bbafa3998a7d7064574a3d2f24180d01000000000000000815222e3b4754606a7784909dabb5c0c7bbafa3998c7f7265584e4330271d120700000000000000000000000000000000000000000000000000000000000000000000000000000007121d2a36424d57616e7b86929fa7b1bdc6bfb4aaa29892878079746f6d686d6e71757b828c919ca4aeb8c2c9bdb2a89f92867b6e62564d422f261c11060000000000000000000000000000000008131e28323d44515c666e7b86929fa5afbabeb3a99f948c7f726a60554b40352921170c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556774808686868686868686868686868686868686817467564c4135291d1104000000000000000000000000000000000a1724303d4a5763707d8686868686868686868686868686868686817467564c4135291d11040000000000000000000000000000000000000000000000000815212e3b4854616e7b87939f9f9f9f9f9f9f9f9f9fa79a8d8074665c5044382c1f130800000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985919e9f9f9f9f9f9f9f9f9f9f9f9286796d6053473a2d2014070000000000000000050e171f282f35393a3d3b383228231c150c03000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202a343e44505b656d79839097a1abb5c0cbd7ccc0b6aca29891847a6d665b50443e342a20160c020000000000000000000000000000000000000000000000000000000000000000000000000000020d17202930363a3b3a363029241d160d0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d161d242930363a3b3a36302920170d0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000915222e3b4855616e7b8896a0acb9c5d2ded9cec3b6a99d908376695f5346392f24180c00000000000000000000000000000000000000000000000000000000000000000000000a14202d3a46525e697683909da9b6c3ced9dfd2c5b9ac9f92867a6d6054473a2d2114070000000000000004101c2834404b54626f7c8895a0acbdc7c5b9ac9f92867a6e6154473c3221150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a25303b46535f69727f8c959fabb4bdc6bcb4aaa299928d85807c7a79797b7d82868f949ca3adb6bfc8c0b9aca0968c80736a5f53443b301d140a0000000000000000000000000000000000020c16202834404a545f69717e8b939ea8b2bdbbb0a69f92877c6f675d51453e33291e140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d67778390939393939393939393939393939393908477685d5245392c20130600000000000000000000000000000003101c28343f4a546673808d939393939393939393939393939393918477685d5245392c2013070000000000000000000000000000000000000000000000000714202d3a46525e6976838f9caab4acacacacacacacab9e9285796d6053463a2f24190d0100000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b5563707d8997a1adacacacacacacacb3a99b8e8175675d5145392c20130600000000000000060f172029313a4145474948443d342e261e150d030000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030303030303030303030303030303030300040d182227333f49535d676e7b859299a3afbbc0cbd2c7beb4aaa0968f82786c605a50463c32281e140a000000000000000000000000000000000000000000000000000000000000000000000000000009141f29333b42464746423b352f281f18100701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010710181f282f353b42464746423b33291f140900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000714212d3a46535f697784919eaab7c4cedaddd1c4b8ab9f95887b6e61554b4035291c110600000000000000000000000000000000000000000000000000000000000000000006111b2834404a54616e7b87939facb9c6d2dfdcd0c3b6a99d908376685d5245392c2013070000000000000006131f2c3845515c6674808d9aa7b1bccabeb3a99c8f8275685e5246392d201403000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2a36424d57606c78839099a3abb5bec6bcb4aba39f97928d89878686878a8e92989fa6adb5bfc8c0b6ada39e9184796d60574e4232291f0b02000000000000000000000000000000000000040e18232e39424d57626c75818e96a1abb5c0bbaea3999184796d605a50453b30261c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f93867a6d6054473a2d21140600000000000000000000000000000006121f2b3844505c6676838f9c9f9f9f9f9f9f9f9f9f9f9f9f9f9f93867a6d6054473a2d21140600000000000000000000000000000000000000000000000005121e2a36424d5765717e8b98a3aebab9b9b9b9b9b9ada1978a7d7063564c4135291d110400000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515d6774818e9ba9b3beb9b9b9b9b9b9ada1978a7d7063554b4035291d1104000000000000070f182129323a434c515456544f443f3830271f150d0300000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005080a0b10101010101010101010101010101010101010100f17222d38414b555f69707d87929fa5afb9c2cdd0c5bcb2a89e948c80736c61584e443a30261c1106000000000000000000000000000000000000000000000000000000000000000000000000020e1a25303b454d5254524d454039312a2218130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c1318222a313940454d5254524d453b30251a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000005121e2a36424d576774818d9aa8b2bdc9d5e0d4c8bcb1a7998d8073675d5145382e23170c0100000000000000000000000000000000000000000000000000000000000000000b17222d3844515c6673808c9aa4afbbc8d4e0d4c8bcb1a7998c807366564c4135291d1104000000000000000713202d3a4653606d7985929eabb8c3c6b9ada2978a7d7164564c41362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000000000000030e1a26313b44505b666e7c869299a4acb6bfc6bdb5afa9a19e9a969992939a979b9fa3aab0b8bfc9c0b6aea49c91897d70675c51453c3120170d000000000000000000000000000000000000000007121c27303c45505a606d7a849199a3afbbbfb5aba0968e81746c61574d42382e23170d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8999a3afacacacacacacacacacacacafa499897d7063564a3d2d22170b0000000000000000000000000000000713202d3a4653606d7985929facacacacacacacacacacacacafa49a897d7063564a3d2d22170b000000000000000000000000000000000000000000000000020e1a25303b4754606d7a86929facb9c5cfc6c6c9beb3a99b8e8175685d5245392c2014090000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929facb8c4cfc6c6c6c5b8ab9e9285796d6053463a2f24180d010000000000071018212a333b444c555d60636059504a423931271f150b01000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c111417171d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1b262f39434d57606b727f8b939da7b1bbc4cfcec3bab0a69c928a7e716a5f564c42382e23171007000000000000000000000000000000000000000000000000000000000000000000000005111e2a36424d575e615e57514b433c3429241d160d060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d161d2429343c434b51575e615e574d42362a1e1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000020e1a26313c4956636f7c8996a1acb9c5d2ded8cdc2b8ab9e9285796d60544a3f34281d120700000000000000000000000000000000000000000000000000000000000000030f1b27333f4953606d7985919eacb6c0ccd8ddd1c4b8ab9f95887b6e6255483b2f24190d0100000000000005111e2a36414c5664717d8a97a2adb9c6c5b8ab9e9285796d6053463b3025190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f28333f4a545f6a717e87939aa4aeb5bdc3c0bbb3adaba7aba39f9fa4aca8acaeb4bcc2c4bdb9aea49c928c7f736b60554b40332a200e050000000000000000000000000000000000000000000b151e2a333e45525d686f7c87929fa6b0bbbdb2a89d938a7e71695e544a3f342820160c0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495366737f8c99abb5c0b9b9b9b9b9b9b9b9b9c0b5ab998c7f736653493f33271b0f0300000000000000000000000000000916222f3c4955626f7c8898a2aebab9b9b9b9b9b9b9b9b9c0b6ac998c807366544a3f33281c0f030000000000000000000000000000000000000000000000000914202c3945525d6875828e9ba9b3becad6dacfc5b8ac9f92867a6d6054473b31251a0e020000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5664717e8a98a2aebac6d6d2d5c9bdb2a89a8d8074665c5044382c1d13070000000000071019222a333c454d565e676d706b605c544b433931271d1207000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c2123242a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a28313b454f59626d74818e959fa9b2bcc6d1ccc1b8aea49f92867c6f685d544a3f342822180e05000000000000000000000000000000000000000000000000000000000000000000000714202d3a46525e696e69605d554e463f352f281f1810070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010710181f282f353f464e555d60696e695e52463a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000913202d394653606c7884919eabb7c2cdd8dfd2c6b9ada2978b7e71665c5044392f24180c030000000000000000000000000000000000000000000000000000000000020b17212b3744505b65717e8a97a1adbec7d2ddd7cbc0b5ab9d9083776a5f53473a2e1e1308000000000000000714202d3946525e6875828f9ca9b3bec8bcb1a79a8d8074665c514538291e140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b17222d38424e58616c717e88939fa3abb1bbbfc5beb9b8b3b4aeacacafb6b5b8babfc6c0bab2ada49d928d80736d63594f43392f21180e00000000000000000000000000000000000000000000030c18212935414c56606b737f8c949fa9b3bebaafa59f92857b6e665c50443d32281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6575828f9ca8b5c2d1c6c6c6c6c6c6c6d2c2b5a89c8f8275655b5044372b1f120500000000000000000000000000000c1825323f4b5865727e8b98aab4bfcac6c6c6c6c6c6c6d2c2b5a99c8f8276665b5044382b1f120600000000000000000000000000000000000000000000000004111d2935414c5664707d8a97a2adbac6d3dfd3c7baaea3988b7e7165574d42362a1e1205000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e6875828f9caab4bfcad6ded2c5b9aca096897c6f62544a3f34281c0c0100000000040f19222b343c454d575e686d7a7c736d665c554b43392f24180f050000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121a22282d30313636363636363636363636363636363636363636363636363636333d47515b606d79839096a1aab4bfcbd7cabfbaaea29891847a6d665c50443e342a20160c030000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7b756d675f585045403a312a2218130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c1318222a313a404550585f676d757b6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000005121f2b3744505b6573808d99a7b1bcc8d4e0d6cabeb3a99d9184786d60554b4035291e150b00000000000000000000000000000000000000000000000000000000000a141d28343f4a54606c7883909da9b3bed0d9e0d4c7bbafa3998b7f7265574e42372b1e0c01000000000000000814212e3b4754616e7a86929facb9c5c5b8aca095887c6f62544b403428170d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3c46505a626c727f8b9299a0a7aeb5bbc0c7c5c0bfbab9b9bbc0c1c5c4c2bbb7afa8a19e928d80746e635b51473d31271d0f060000000000000000000000000000000000000000000000060f19242f3a434f59606d78829097a2adb0b0b0ada2979083786d60594f443a2f24190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7985929fabb8c5d2d2d2d2d2d2d2d2d1c5b8ab9e9285796c605346392d2013060000000000000000000000000005111d2a36414c566874818e9ba7b4c1d0dbd2d2d2d2d2d2d2c5b8ab9f9285796c605346392d201306000000000000000000000000000000000000000000000000010d19242f3a4653606d7985929fabb8c4cedad6cbbfb4aa9c908376695e53463a2d21160a000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d0dbddd1c4b7aa9e9184776a605442382e23170c00000000000a16212b343d464e575f696e7a838680786d675d554b40352921170d0300000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101a242c33393c3e434343434343434343434343434343434343434343434343434343434345515c676e7a849198a3aebac0cad6cabfb4aaa0968f82786d605a50463c32281e150a0000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d81796f6a625a514b433c3429241d160d06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070d161d2429343c434b515a626a6f79817d7064574a3d3124170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000030f1b27333f4953626f7b88959fabb8c3ced9dbcfc5b8aca0968b7e72675d51453c30271d120700000000000000000000000000000000000000000000000000000006111b262f3844505c66717e8a95a0abbbc4cfe2dfd2c5b9ac9f92867a6e6154473c31261a0e0000000000000006131f2b37434e5865727f8c99a3afbbc7c0b5ab9d9084776a605442392e23180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2a343e48505a626d727f8790959fa3abafb5b8bcbfc0c1c2c2c1c0bebcb8b6b0aba59d96918a80776c605c524940352b1f150b0000000000000000000000000000000000000000000000000008131e28313d44505c666e7b85929fa5a3a3a3a3a99f948c80736b60564c4135291d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8897a2adbac6d3dfe4e0dfe0e4dfd2c6b9ada297887b6e6255483b2f221507000000000000000000000000000713202d3946525e687784919eaab7c4d1dddfdfdfdfdfdfd3c6baaea298887b6f6255483c2f2215080000000000000000000000000000000000000000000000000008131f2c3845515c6674818e9aa8b2bdc9d5dcd0c6b9ac9f93877b6e6154483d32271b0f00000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727e8b99a3aebbc7d3e2d4c8bcb1a7998c807366584e4330261c110600000000030f1b27323d464e585f696e7b8490938d82796d675d51453f33291f140900000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17222c363e45494a5050505050505050505050505050505050505050505050505050505050504b555e686f7c86929fa4aeb8c2ccd0c6bcb2a89f948d80736c61584e443a30261c110600000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86837c716c605d554e463f352f281f181008010000000000000000000000000000000000000000000000000000000000000000000000000000000000010810181f282f353f464e555d606c717c83867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000b17222d3847535f6a7683909da8b2bdc8d4e1d4c8bdb2a89e9185796d60584e42392e2318110700000000000000000000000000000000000000000000000000060f17222d38414d57606d7884919ea7b1bccdd6e1d4c7bcb1a79c8f8275685e5246392a201509000000000000000815222e3b47545f6a7783909dabb5c0c7bbafa3998c7f7265584e4330271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b18222c363f48515b626d727c838c92999fa3ababb1b2b4b4b5b5b4b4b2b1acaaa69f9c938e847d746c655b504a40372e231a0d0300000000000000000000000000000000000000000000000000010c161f28343f4a545e69717e8a93969696969696969692877d6f685d5245392c2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a9b3becad6ddd8d4d2d4d8ddd6cabeb3a9978b7e7164584b3e2f24180d010000000000000000000000000714212e3a4754616d7a8796a0acb9c5d2dee0dedddedfe1d6cabeb4aa988b7e7265584b3f3025190d0100000000000000000000000000000000000000000000000004101c2834404b54636f7c8996a1acb9c5d2ded4c8bbafa49a8c7f7366584e43372b1c120700000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535e697683909cabb5bfcbd7ddd1c4b8ab9f95887b6e6255483d3222150a000000000007131f2c38434e58606a6f7b8491969f948f82796d605b51453b31251a0e04000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111c28333e485055575d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d56606a717e8b929da6b0bbc7d3cec4bab0a69c928a7e716a5f564c42382e23170c06000000000000000000000000000000000000000000000000000000000000000613202c3945515d6776828f867e756d675f585145413a312a2219130c04000000000000000000000000000000000000000000000000000000000000000000000000000000040c1319222a313a414551585f676d757e868f8275675d5145392c201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000006111b2b37434e5864717d8a96a0acb9c4cfdad9cec3b9ada1978c80736a60544b403428231910070000000000000000000000000000000000000000000000060f182127333f49535f69727f8b96a0acb9c3cddfdcd1c4b8ab9f95897c6f63564c41362a1e110500000000000004101c2834404b54626f7c8895a0acbdc7c5b9ac9f92867a6e6154473c3221150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a242d363f49515b626a6f787f878e92999d9fa7a5a7a8a8a8a8a7a5a7a09d99948f89817a706b605b53493f382e251c1108000000000000000000000000000000000000000000000000000000040d17232e38424d57616c74818a8a8a8a8a8a8a8a8a8a8a847a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c566874818e9ba7b4c1cfd9d2ccc8c6c8ccd2d9cfc0b4a79a8d817467554b4035291d11040000000000000000000000000a1724303d4a5763707d8a96a8b2bdc8d4d9d4d1d0d1d2d5dad0c1b4a79b8e817468564c41362a1d1105000000000000000000000000000000000000000000000000000c18232e394653606c7884919eabb7c3cdd9d8ccc0b6ac9d9184776a605447392e23180c00000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b87939facb9c6d1dcd7cbc0b5ab9d908376695f53473a2e21140300000000000915222e3b4854606a6f7c859196a0a69f948e81756d62574d42362a20150a000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212d3945505a616469696969696969696969696969696969696969696969696969696969696969696969696c74808d949fabb7c3d0d6ccc2b8aea49f92867c6f685e544a3f342822170c0000000000000000000000000000000000000000000000000000000000000004101d2935404b5565727f8b928b81796f6a625b514b433c3429241e160d0700000000000000000000000000000000000000000000000000000000000000000000000000070d161e2429343c434b515b626a6f79818b928b7e7265554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000f1a26313c4653606c7884919ea9b3bec9d5dfd5c9beb3a99f92877c6f665c51453f352b22191107000000000000000000000000000000000000000000060f18212a333c44505b656e7b86929fa8b2bdcbd5e1d4c8bdb2a89d9083766b6054443b3025190e0200000000000006131f2c3845515c6674808d9aa7b1bcbebeb3a99c8f8275685e5246392d2014030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121b242d373f4951585f666d737c81878c909596999a9b9c9b9b9a989695908c88827d746d686159504941382d261c130a000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d797d7d7d7d7d7d7d7d7d7d7d7d7b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e687784919daab7c4d0d0c7c0bbb9bbc0c7d0d0c3b6aa9d908377675d5145392c201306000000000000000000000003101c28343f4a546673808d99a6b3c0ced5cdc8c4c3c5c6c9cfd1c4b7aa9e918477685e5246392d2013070000000000000000000000000000000000000000000000000007121f2b3744505b6573808d99a7b1bcc8d4ddd2c7b8aca096897c6f62544a4034281c100400000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5866727f8c9aa4afbbc8d4e0d4c7bbafa3998b7f7265574d42372b1e120600000000000916232f3c4956626f7c859297a1a8b0a69e938b7e72695e53463c32271b0f010000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303c4955616c717676767676767676767676767676767676767676767676767676767676767676767676767678838f9ca9b6c2cfdcd4cac0baaea29891847a6d665c50443e34281d1105000000000000000000000000000000000000000000000000000000000000010d18242f3b4854616e7b8795938e847c726d605d554e463f352f281f19100801000000000000000000000000000000000000000000000000000000000000000000010810191f282f353f464e555d606d727c848e9395877b6e6154483b2f24180d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000a151f2b3844505b66727e8b97a1adb9c3cdd9dacfc4bbafa3999083796d605a50473d342b2318120b030000000000000000000000000000000000020a1117212a333c454f59606c77828f98a2aebac3ceddd9cfc7b8aca0968a7d7064594f4332291e1408000000000000000713202d3a4653606d7985929eabb1b1b1b1ada2978a7d7164564c41362a1e1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b252d373f464e545c606a6f757b7f83878a8c8d8e8f8f8e8d8b898783807b76706b605d564f443f382f261b140a010000000000000000000000000000000000000000000000000000000000000a141e29333e45515d676d7070707070707070707070706e695e53463a2d21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8796a0acb8c5d2c7beb6afacafb6bec6cec5b9ac9f92867a6d6053473a2d201407000000000000000000000006121f2b3844505c6676838f9ca9b6c2cfcbc3bcb8b7b8b9bec5cdc5b8aca096877a6d6154473a2e21140600000000000000000000000000000000000000000000000000030f1b27333f4953626f7b8895a0acb8c7d2ddd4c8bdb2a89a8d8074665c5144382c1f13080000000000000000000000000000000000000000000000000000000000000000000815212e3b47535f6a7784919dacb6c0ccd8dfd2c5b9ac9f92867a6e6154473c31261a0e0200000000000714212e3a4754616d7a828b9298a3abafa59f92867b6e61584e43372b1e13080000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717e838383838383838383838383838383838383838383838383838383838383838383838383838383909daab7c3d0dddcd6cabfb4aaa1968f82786d605a5045392d211508000000000000000000000000000000000000000000000000000000000000000714212d3a46535e697784909d9691867e756d675f585145413a312a2219130c0400000000000000000000000000000000000000000000000000000000000000040c1319222b313a414551585f676d757e8691969d908377695e53463a2d1d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000030f1c28333f4a54606d7985919ea7b1bcc8d4dfd7cbc0b5aba0958d80746c62594f473d3528231c150c08020000000000000000000000000001080b141b2227333c454d57616b727f8c949faab4bfccd5dcd1c7bdb0a69d9184786c6053463d3220170d0200000000000005111e2a36414c5664707d8a97a1a5a5a5a5a5a59f9285796d6053463b3025190e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b252d343c424a51585f62696e73777a7d7f8181828281817f7d7a77736e6a636059524c433e332d261d140a0200000000000000000000000000000000000000000000000000000000000000020c17212935404b555d60636363636363636363636363615e574d42362a1e120500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a8b2bdc8ccc0b6aca49fa4acb4bcc6c7bbafa399897c706356493d3023160900000000000000000000000713202d3a4653606d7985929facb8c5cdc3b9b1acaaabadb3bbc5c8bdb2a8968a7d7063574a3d2e23170c00000000000000000000000000000000000000000000000000000b17222d3847535f6a7783909dabb5c0ccd7d9cec3b8ab9e9285796d6053463a3024190d0100000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54626f7c8895a0acbec7d2ddd6cabfb4aa9c8f8276685e5246392a1f15090000000000000713202d3946525e686d757f869299a3afaea3988e81756a6054473a2f24190d0100000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b909090909090909090909090909090909090909090909090909090909090909090909090909095a0acb8c5d1dee7dbd0c6bcb2a89f948d80746c6155493d3023170a0000000000000000000000000000000000000000000000000000000000000005121e2a36424d576673808d99a098928b81796f6a625b514c433c3429241e160d070000000000000000000000000000000000000000000000000000000000070d161e2429343c434c515b626a6f79818b9298a0998d807366574d42362a1e0c0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000b17222d3845515c67717e8b95a0acb8c1cdd6dcd1c7bdb1a79d928b7e716b60594f473e342e271e19140f0a0602000000000000000205090e13191d262d333d454e575f69707d87929fa6b0bcc6d0ded7cbc0b5ab9f948a7d70665b5044382b1f1205000000000000000713202d3946525e6875828f9898989898989898988d8174675c514538291e1408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b222a303940444e53575e6166686e707274757575757472706e6866625f58544f45413a3127221b140b02000000000000000000000000000000000000000000000000000000000000000000050f18242f39434b515357575757575757575757575754534d453b31251a0e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b546673808d99a6b3c0cec8bbafa49a939aa2aab4bfcac0b5ab998c7f7266594c3f31261a0e02000000000000000000000916222f3c4955626f7c8898a2aebac6c8bcb1a7a09d9ea1a9b3bec9c0b3a6998d807366544a3f34281c10030000000000000000000000000000000000000000000000000006111b2b37434e5865727f8c99a4afbbc7d4dfd2c6b9ada1978a7d7064564c4135291d11040000000000000000000000000000000000000000000000000000000000000006121f2b3844505b6673808d9aa7b1bcd0d9dfd3c6baaea2988a7e7164564c41362a180e0300000000000005111d2a36414c565e616d727d87929fa5afaa9e93887c6f62564c4135291d110400000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b989c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9da0a7b1bcc8d4e0ede2d8cec4bab0a69d928a7e7164574b3e3124180b00000000000000000000000000000000000000000000000000000000000000020e1a25313c4956636f7c8997a1a39f938e847c726d605d554e463f352f281f1910080100000000000000000000000000000000000000000000000000020810191f282f353f464e555d606d727c848e939fa3a197897c6f6256493c31251a0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000006111c2934404b55606c7883909da5afbbc5d0d9d9cfc3b9aea49f92877d6f6b605950444039302a251e1a15120f090b0a0a0a0b090e12141a1e24292f383f444f575f696e7b859299a3afb8c2ced7d9cfc7bbafa3998f82766c61544a3f33281c0f03000000000000000714212e3a4754616d7a868b8b8b8b8b8b8b8b8b8b897c6f62554b403428170d020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010910181e272e343c43474d5354565e6163666768696868676563615e5655534e48443d352f281f17110a02000000000000000000000000000000000000000000000000000000000000000000000007121d2831394045474a4a4a4a4a4a4a4a4a4a4a4a4846423b33291f1409000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c667683909ca9b6c3cfc6b9ac9f93869298a2aebac7c2b5a89b8f827568574d42362a1e1205000000000000000000000c1825323f4b5865727e8b98aab4bfcac4b8aca095909297a1adb9c6c2b6a99c8f8376665c5044382c1f120600000000000000000000000000000000000000000000000000000f1a26313c4754616e7b87939facb9c6d0dcd6cabeb3a99b8e8275685d5245392c201409000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eabb8c3cededfd2c5b8ac9f92857a6d6053473b3025190700000000000000010d1925303a444c525b626b727f8c939eaaafa59b8e8174685d5245392c20130600000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9aaacb1b9c3ced9e4f0eae0d6ccc2b8aea49a8e8174675b4e4134281b0e01000000000000000000000000000000000000000000000000000000000000000913202d394653606c7985929eaba59e9691867f756d675f585145413a312b2219130c040000000000000000000000000000000000000000000000040c1319222b313a4145515860676d757f8691969ea5ab9e9285796c605346392d2013090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000c18232f3944505b666f7c89939ea9b3bec7d2ddd5cbc0bbaea39992867d6f6b615a514a423d36302b26211f1a181817161718181a1e21252a2f353c41495059606a6e7b849197a2abb5c0cad4dcd1c7bdb2a89f92877c6e62594f42382d22170b00000000000000000815222e3b4855616e7b7e7e7e7e7e7e7e7e7e7e7e7e716a605443392e23180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c151c232831373b4246484c525457595a5b5c5c5b5a585654524c4847433c383329241e160d0600000000000000000000000000000000000000000000000000000000000000000000000000010c161f282f35393a3d3d3d3d3d3d3d3d3d3d3d3d3b3a36312921170d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb8c5cfc2b5a89c8f8286929facb8c5c5b8ab9e928578695f53463a2d21140700000000000000000005111d2a36414c566875818e9ba8b4c1d0c3b7aa9d908385929eabb8c5c5b8ac9f9285796d6053463a2d20130700000000000000000000000000000000000000000000000000000a15202d3a46525e6976828f9caab4bfcbd6dacfc5b9ac9f92867a6d6054473c31261a0e02000000000000000000000000000000000000000000000000000000000004101c2834404b5563707c8996a1adb9c5d2dfd5c9beb3a99b8e8175675d514539291e1408000000000000000008131e29323a41465159626d75828f98a2aeac9f92867a6d6054473a2d22170b00000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b7b8bcc3cbd5dfe7e7e7e8ded4cac0b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000000000000000000000000000006121f2b3844505b6674818e9babafa8a098928b817a6f6a625b524c433d3429241e160d07000000000000000000000000000000000000000000070e161e2429343d434c525b626a6f7a818b9298a0a8afab9b8e8174665b5044382b1f12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000007121d28333f4a54606b75818e97a1acb6c0ccd8ddd7cbbfb5aba29892867d716c605c544e46413b37312e2b2625242423242425262b2d31363a41454e535b606b707c859196a1a9b3bdc7d1dcd7cbc0b5aba0968d80746a5f53473e2f261c110600000000000000000714212d3a46535f696e7272727272727272727272716c62584e4330271d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121820262b31363a3b4146474a4c4e4e4f4f4e4e4c4a4746413b3a37312c272119130c04000000000000000000000000000000000000000000000000000000000000000000000000000000040d161d24292c2d3030303030303030303030302e2d2a251f170f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8998a3aebac7cec2b5a89b8f8284919eaab7c4c6b9ada197887b6e6155483b2e2215070000000000000000000713202d3946525e687784919eaab7c4cec1b4a89b8e8183909daab6c3c6baaea298887c6f6255493c2f221608000000000000000000000000000000000000000000000000000005111e2a36424d5764717e8b98a3aebac7d3e0d3c7baaea3998b7e7265574d42372b1e1205000000000000000000000000000000000000000000000000000000000006131f2c3845515c6774818e9aa8b2bdc9d5dfd2c6b9ada197897d7063554b4035291d10040000000000000000020c17202930363f47515b616d7a86929facaea2988b7e716453493f33271b0f03000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2bec3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c5c8ced5dbdbdbdbdbdbdbdacdc1b4a79a8e8174675b4e4134281b0e0100000000000000000000000000000000000000000000000000000000000000030f1c28333f4a5464717d8a99a3aeb2aaa39f938e847c726d605d564e463f352f282019100802000000000000000000000000000000000002081019202830353f464e565d606d727c848e939fa3aab2aea3998a7d7164544a3f33281c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000010b17222d38424f59616e7a85929aa4afbbc3ccd6dcd1c6bdb4aaa29892867e746d666058524c47433c3a37313231303030313231373a3b42464c52575f656c727d859197a1a8b2bbc5cfd9d5ccc3bbafa3999184796d60584e43352c1d140a00000000000000000005121e2a36424d575f61656565656565656565656565625a50463d321e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c151b1f252a2d3036393b3d3f4142424242413f3d3b3936302e2b26201c160d08010000000000000000000000000000000000000000000000000000000000000000000000000000000000040c12181d202024242424242424242424242421211e1a140d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98aab4bfcbcec1b4a89b8e8183909ca9b6c3c9beb3a9978a7e7164574b3e2f24180c0000000000000000000714212e3a4754616d7a8796a0acb9c5cdc0b4a79a8d80838f9ca9b6c2cabfb4aa988b7f7265584c3f3025190e0200000000000000000000000000000000000000000000000000020e1a25303b4754606d7a86929facb8c5cfdbd7cbbfb4ab9c908376695f53463a2d21160a00000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929fabb8c4cfdaded1c5b8ab9e9285796d6053463a2f24180d01000000000000000008110e171e252a353f46525d6874818e9ba8b1aa9b8e8175655b5044372b1f1205000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbcecececececececececececececececececececececececececececececececececececececececececececececdc1b4a79a8e8174675b4e4134281b0e0100000000000000000000000000000000000000000000000000000000000000000b17222d3a4754606d7a86929facb9b4aea59e9691877f756d6860585145413a322b2219130c04000000000000000000000000000000040c1319222b323a4145515860686d757f8791969ea5aeb4b9ac9f92867a6d6054473a2d22170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000006111c262f3d46525e68707d88939fa7b1bac4ced7d8cfc5bcb4aaa298928a80786f6a615e56534e484743403f3e3d3d3d3e3f404246484d53565d606a6e777f879297a1a9b2bac4cdd7d6cdc3bab0a69f92877c6f675d51463c31231a0b02000000000000000000020e1a26313b454d53555858585858585858585858585650483f342b200c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f141a1e21252a2d2e303334353635353432302e2d2a25211f1a15100b05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d1013141717171717171717171717171514120e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576875828f9ba8b5c2d0cdc0b4a79a8d81828e9ba8b5c1cfc0b3a79a8d807467554b4035291d100400000000000000000a1724313d4a5764707d8a97a8b2bdc9ccbfb3a6998c80828f9ba8b5c2d0c1b4a89b8e817568564d41362a1e110500000000000000000000000000000000000000000000000000000914202c3945515d6775828e9ba9b3becad6dcd1c6b7ab9f94887b6e6155483d32271b0f0707070707070707070707070707070707070707070707070707070707111d2935414c5664707d8a97a2adbac6d6e0d4c8bdb2a89a8d8074665c5044382c1d1207000000000000000007111a232a3135383935414c56636f7c8995a0acab9e9285796c605346392d201306000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2bec1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1b4a79a8e8174675b4e4134281b0e0100000000000000000000000000000000000000000000000000000000000000000613202c3945525d6876828f9ca9b6bfbaafa8a099928b817a6f6a625b524c443d3429241e160e0600000000000000000000000000060e161e2429343d444c525b626a6f7a818b9299a0a8afbabfb6a99c8f8276675d5145392c1c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000a141d2a36414c56616b74808d95a0a8b2bcc5cfd8d7cec5bcb4aaa29f928d837c746e68625f5855534e4d4b4b4a494a4b4b4d4d5355575e61686d737b828c9299a1a9b2bbc4ccd6d7cec4bbb2a89f948c7f726a60554b41342a201108000000000000000000000009141f29333b4246484b4b4b4b4b4b4b4b4b4b4b4b49453f362d22190f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e1214191e20212426272829292827252321201e1914120f0a03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070a0a0a0a0a0a0a0a0a0a0a0a080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f697885919eabb8c4d1ccc0b3a6998d80808d9aa7b3c0cdc3b6aa9d908377675d5145382c1f13060000000000000003101c28343f4a546673808d99a6b3c0cecbbfb2a5988c7f818e9ba7b4c1cec4b7ab9e918478685e5246392d201407000000000000000000000000000000000000000000000000000004111d2935414c5564707d8a97a2adb9c6d2dfd3c7bcb0a6998c807366594f43382c1d13131313131313131313131313131313131313131313131313131313131313202c3945525d6875828f9ba9b3becad6ded2c5b8aca096897c6f62544a3f34281c0c0100000000000000030e19232c353c41454646464854606b7784919daaada197877b6e6154483b2e211508000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4a79a8e8174675b4e4134281b0e01000000000000000000000000000000000000000000000000000000000000000004111d2935414c5665727f8c98a8b2bdc1bab2aba39f938e847c726d605d564e463f3530282017110a02000000000000000000020a1117202830353f464e565d606d727c848f939fa3abb2bac1bdb2a8988b7f7265554c4135291d0a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000020b1925303b444f59606d78839096a1a9b3bcc6cfd7d7cec5bcb4aea49d959087817a746e6a66625f585a585757565757585a575f6165696e747a80868f949fa3abb3bbc4cdd6d6cec5bcb3a9a0968f82786c60584e433a2f22180e000000000000000000000000030d18212931363a3b3f3f3f3f3f3f3f3f3f3f3f3e3d39342d241b10070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205080e11141417191b1b1c1c1b1b19171414110d080602000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8897a1adb9c6d2cbbfb2a5988c7f7f8c99a5b2bfccc5b9ac9f92867a6d6053473a2d2014070000000000000006121f2c3844505c6676838f9ca9b6c2cfcabeb1a4978b7e808d9aa6b3c0cdc5b9aca196877a6e6154473b2e2114070000000000000000000000000000000000000000000000000000010d19242f3a4653606d7985929eabb8c4cedad8cdc2b7aa9e9184776b605448392e2320202020202020202020202020202020202020202020202020202020202020212d3a4754606d7a86929facb9c5d0dbddd1c4b7aa9e9184776a605442382e23170c000000000000000008141f2a353e464d51525353534f596774818e9aa7b3a996897d7063564a3d3023170a000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000000000000000000000000000000010d19242f3b4855616e7b8896a0acb8c1bab6b4aea59e9691877f756d6860585145413a3227221b140b0400000000000000040b141b2227323a4145515860686d757f8791969ea5aeb4b6bbc1b8aca096887b6e6155483b2f24190d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000008141e29323e45515c666e7b849197a2aab4bcc5ced6d7cec6bfbaaea7a09a938e86817b76726e6a6967656463636364656769696e72767b80858d92999fa6afb5bdc5cdd6d6cdc5bcb4aaa19791847a6d665b50463d31281d0f0600000000000000000000000000060f181f262a2d2e323232323232323232323232302d29221b120900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0c0e0f0f0f0f0e0c0a08070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a9b3bec9d5cabdb1a4978a7e7e8b97a4b1becac7bbafa399897c6f6356493c30231609000000000000000713202d3a4653606d7985929facb8c5d2c9bcb0a396897d7f8c98a5b2bfcbc9bdb2a8978a7d7064574a3d2e23180c00000000000000000000000000000000000000000000000000000008131f2c3845515c6674818d9aa8b2bdc9d5ded2c5b9aca096897c6f63554b40342d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d36424d5765717e8b98a3aebac7d7e1d4c7bcb1a7998c7f7366584e4330261c110600000000000000000d1925313c4650585d5f606060606066737f8c99a6b2a5988b7f7265584c3f3225190c000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b989b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9a8e8174675b4e4134281b0e010000000000000000000000000000000000000000000000000000000000000000000814212d3a47535f697784919daab7b7afaaa8acafa8a099928b817a6f6a625b524c443d332d261d160e060000000000060e161d262d333d444c525b626a6f7a818b9299a0a8aeaca8aab0b8b7aa9d918477695f53473a2d1e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001010101010101010101010105121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000020d17202834404b545e696f7c859298a3aab3bcc4cdd8d8d0cac0b9b1aca49f98928e87837f7b787673727170707071727376787b7f83878d92989fa3abb0bbc0c7cfd6d7ccc4bbb3aaa29891857b6e685e544a3f342b1f160c000000000000000000000000000000060d141a1e212225252525252525252525252524211d171109000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c556774818d9aa7b4c0cfdac9bcb0a396897d7d8996a3b0bcd0cbc0b5ab988c7f7265594c3f31251a0e020000000000000916222f3c4955626f7c8898a2aebac6d3ccc0b6ac95887c7e8b97a4b1becacec0b3a69a8d807367544b4034281c1004000000000000000000000000000000000000000000000000000004101c2834404b54636f7c8996a1acb9c5d2ded5c9bdb2a89a8d8174675c51453a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a46525e6976838f9caab4bfcbd7ddd1c4b8ab9f95887b6e6155483d3222150a000000000000000000101d2935414d58626a6c6c6c6c6c6c6c717e8b97a4b1a6998c807366594d4033261a0d000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8174675b4e4134281b0e0100000000000000000000000000000000000000000000000000000000000000000006121e2b37424d576773808d9aa9b3afa59e9b9fa3ababa39f938f847c726d605d564e443f382f282017110a0200020a111720282f383f444e565d606d727c848f939fa3abaaa29f9b9ea6b0b3a99a8d807367574d42372b1e1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a0e0e0e0e0e0e0e0e0e0e0e0e0e121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000050e18232e39424d575f6a707d869298a2aab3bbc3ccd2d9d6cbc3beb6afaaa39f9a93908c888582807e7e7d7c7d7e7e808285888c9093999fa2aaaeb4bdc2cbd1d9d1cbc2bab2a9a19892867c6f695f564c42382d22190d040000000000000000000000000000000003090e1214151818181818181818181818181715110c060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707090a0b0b0b0c0c0b0b0a0907070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d677784909daab7c3d0d6cabfb4aa95887c7c8895aab4bfcad1c2b5a89b8f827568574d42362a1e12050000000000000c1825323f4b5865727e8b98aab4bfcad4c8bbafa49a877b7d8a96a3b0bdd2cfc3b6a99c908376665c5145382c1f13060000000000000000000000000000000000000000000000000000000c18232e394653606c7884919eabb7c3cdd9d9cec4b8ab9f9285796d60534646464646464646464646464646464646464646464646464646464646464646464646464754616e7b87939facb9c6d1dcd7cbc0b5ab9d908376695f53463a2d211403000000000000000000121f2b3845515d6a7479797979797979797d8996a3afa79a8d8074675a4d4134271a0e000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181817f7165584b3e3225180b00000000000000000000000000000000000000000000000000000000000000000000020e1a26313d495663707c8997a2adaa9e938e9299a1a8aea59e9691877f756d6860585049413a3227221b140b050b141b2227323a4149505860686d757f8791969ea5aea7a098928f939eaaada297897c706356493d31261a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b101416171a1a1a1a1a1a1a1a1a1a1a1a1a1a1e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000007121d27303b454e58606b707e869298a1a9b1bbc0c7d0d7d5d0c7c0bbb4aeaca49f9d9997928f8d8b8a8a898a8a8b8d8f9197989c9fa4abaeb4babfc6cfd7d7cfc7c0bbb0a8a09792867d706a5f574d443a2f261c100700000000000000000000000000000000000000020507080c0c0c0c0c0c0c0c0c0c0c0b0b0905010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507070a080d11131416171718181918181717161413110d080a07070401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86939facb9c6d2d3c7baaea298877a7a8798a2aebac6d1c4b8ab9e918578695e53463a2d211407000000000005111e2a36414c566875818e9ba8b4c1d0d2c6b9ac9f9386797c8995acb6c0ccd2c5b9ac9f9286796d6053463a2d20130700000000000000000000000000000000000000000000000000000007121f2b3744505b6573808d99a7b1bcc8d4dfd3c6baada2978a7d716456535353535353535353535353535353535353535353535353535353535353535353535353535865727f8c99a4afbbc7d4e0d3c7bbafa3998b7f7265574d42372b1e1205000000000000000000131f2c3946525f6c798586868686868686898f99a5b4a79b8e8174685b4e4135281b0e000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4855616b70757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575716d62564a3d3124170b00000000000000000000000000000000000000000000000000000000000000000000000913202d3a4653606d7985929faba89b8e818791969ea6aea8a199928c827a6f6a605b534c443d332d261d160e161d262d333d444c535b606a6f7a828c9299a1a8aea59d959086828f9ba8ab9f9285796d6053463a2d2013090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c2023242727272727272727272727272727272b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000b151e29333c464f59616c707d869197a0a7afb6bec4cbd1d9d2ccc6bfbab6afaca9a9a19e9c9a989796969697989a9c9ea1a9a9acafb5babec5cbd1d8d1cbc4bdb5afa69f9691857c706b60584e453b32281d140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306080d1113141719191d2021222424252525252524242221201d1919171413110d080503000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8999a4afbbc7d4d2c5b8ac9f9285797985929facb8c5d2c6b9ada197877b6e6154483b2e21150700000000000713202d3946525e687784919eaab7c4d1d1c4b8ab9e9185787b879aa4afbbc8d3c7baaea398897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000030f1b27333f4953626e7b8895a0abb8c7d2ddd6cabeb3a99b8f8275686060606060606060606060606060606060606060606060606060606060606060606060606060606a7783909dabb5c0ccd7dfd2c5b9ac9f92867a6d6154473c31261a0e02000000000000000000131f2c3946525f6c7985929393939393939699a1abb4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202c38444f59616368686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686865625a50453a2e211509000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c6675818e9baba6998c7f7c848f949fa3ababa39f938f847c726c655d564f443f382f28201720282f383f444f565e656c727c848f939fa3abaaa29f938e837b818e9ba7ab9b8e8175665c5044382c1f1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a22282d3031343434343434343434343434343434343845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000030c17212a343d47505a616b707c8590959fa4acb3bbc0c7cfd4d8d1cbc7c0bbb9b6b3adaba9a6a5a4a3a3a3a4a5a6a9abadb3b6b9bbc0c7cad0d7d4cfc6bfbab2aba39f9490847b6f6a60594f463c332920160b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607080808080808080808080808080808080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b101213191e20212426252a2d2e2f3031313232323131302f2e2d2a25262321201d1913120f0b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546673808c99abb5c0ccd7d0c4b7aa9d9184777784919daab7c4d0c9beb2a9978a7d7164574a3e2e23180c00000000000714212e3a4754616d7a8796a0acb9c5d2d0c3b6a99d9083767986939facb9c6d2cbbfb4aa988c7f7265594c3f30251a0e020000000000000000000000000000000000000000000000000000000b17222d3847535f6a7783909dabb5c0ccd7dbcfc5b9ac9f92867a6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6e7b8895a0acbdc7d2ddd6cabfb4aa9c8f8275685e5246392a1f140900000000000000000000131f2c3946525f6c7985929f9f9f9f9f9fa3a5abb3b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c28333e474f55575b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b585650483f34291d1105000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a5464717e8a99a4a99d9083767a828b9299a0a8aea69e9691877f776d6860595049413a32272227323a4149505960686d777f8791969ea6aea7a098928a81797985929eaba3998a7e7164544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101a232c33393c3d414141414141414141414141414141414145515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000050f18222b353e485059606a6f7b838d939aa1a9afb5bdc1c8ccd2d6d2ccc8c6c3beb9b8b6b3b1b1b0afb0b1b1b3b5b8b9bec3c6c7ccd2d5d1cbc7c1bcb4aea8a199928c827a6e6960584f473d342a21170e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c1013141515151515151515151515151515151414110e080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090f11171c1f20252a2d2e30333036393a3c3d3e3e3e3f3f3e3e3d3c3a39363033302d2c2924201f1b17110e09020000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c6676828f9ca9b5c2d2ddcfc2b5a99c8f827676828f9ca9b5c2cfcfc0b3a79a8d807467554b4034281c1004000000000a1724313d4a5764707d8a97a8b2bdc9d5cec1b5a89b8e82757885929eabb8c5d1d1c1b5a89b8e827568574d42362a1e120500000000000000000000000000000000000000000000000000000006111b2b37434e5865727f8c99a4afbbc7d4e0d3c7bbaea3998b7f7979797979797979797979797979797979797979797979797979797979797979797979797979797979808d99a7b1bcd0d9dfd3c6baaea2988a7e7164564c41362a180e0300000000000000000000131f2c3946525f6c7985929facacacacacafb1b6bdb4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b16212c353e44484a4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4b4a453f362d22180c010000000000000000000000000000000000000000000000000000000000000000000000000c17232e3a4754616d7a86939fac9f93877a6e757f8791969ea5aea8a199928c827a6f6b605b534c443d332d333d444c535b606b6f7a828c9299a1a8ada49d9590867e746f7c8997a1ac9f92867a6d6154473a2e23170c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222c363e44494a4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000061019232c363e474f585f696e79808891979fa3abb0b9bbc0c7cacfd2d4d2cfc9c6c5c2c0bebdbdbcbdbdbec0c2c4c6c9cfd2d4d2cfc9c7c0bbb9afaaa39f96918780786e685f574e463d352b22190f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f2022222222222222222222222222222221201e19140d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10151a1c23282b2d3036393a3d4042414647494a4a4b4b4c4b4b4a4a49474641423f3d3a3935302d2b27221b1a140f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929fabb8c5d2dacdc1b4a79a8e817474818e9aa7b4c1cdd0c3b6a99d908376675c5145382c1f130600000003101c28343f4a546673808d99a6b3c0ced9cdc0b3a69a8d80737784909daab7c3d0d1c4b8ab9e918478695e52463a2d201407000000000000000000000000000000000000000000000000000000000f1a26313c4754616e7b87939facb9c6d0dbd7cbbfb5ab9b918b86868686868686868686868686868686868686868686868686868686868686868686868686868686868d929ca8b9c3cde2dfd2c5b8ac9f9285796d6053473a3025190d0100000000000000000000131f2c3946525f6c7985929facb8b9b9b9bcbdc1c1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101a232c33383c3d4242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242423e3d3a342d241b1106000000000000000000000000000000000000000000000000000000000000000000000000000613202d3946525e687683909ca9a49a8b7e716d727c848e939fa2aaaba39f948f847d726c655e564f443f383f444f565e656c727d848f949fa3aba9a29f928d837b716c73808c99a9a99c908376685e5246392d1c11060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c28333e485055575a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000007111a242c353d464e575f676d747d858d92999ea6acafb6b9bec4c6c9cfd1d2d2d1cfcdcbcac9c9c9cacbcdcfd1d2d2d0cfc9c5c4beb9b5afaca59e98928d847d736d665e564d453c342b231910070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d151d23292c2d2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2d2a251e170e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10171c20262b2e34383a3c4146474a4c4f4c5254555757585858585857575554524c4f4c4a4745413c3937332d2a251f1b160f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7c8898a2aebac6d3d8cbbfb2a5988c7f72727f8c99a5b2bfcfd2c5b9ac9f9286796d6053463a2d20130700000006121f2c3844505c667683909ca9b6c3cfd8cbbeb1a5988b7e7275828f9ca8b5c2cfd2c5b9ada196877b6e6154483b2e211507000000000000000000000000000000000000000000000000000000000915202d3946525e6876828f9caab4bfcad6dcd1c6bdada39b989393939393939393939393939393939393939393939393939393939393939393939393939393939393999ca4aeb9cbd5dfd5c9beb3a99b8e8174675d514539291e13080000000000000000000000131f2c3946525f6c7985929facb8c5c6c6c9cacec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a21282c2f3035353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353532312e29221b1209000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5666727f8c99a8ac9c8f8275676a6f7a818b9298a0a7aea69e9691877f776d68605950494149505960686d777f8791969ea6aea79f97928a80796e69697783909daaa8998c7f7266564c4135291d0a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202d3944505a616467676767676767676767676767676767676767676b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000008111a232b343c454d555c606b707a81878f949c9fa4acadb3b8b9bec2c4c6c7ccd2cccdcececfcececdccd1cbc7c5c4c2bdb9b7b3adaba39f9b938e86807a6f6b605c544c443c332b221911070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f272f34383a3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3936302920170d0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e161c22282d3137383f4446494c525457595c565e616263646465656564646362615e565b595654524c4946443f3836302c27211b150d0802000000000000000000000000000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98aab4becad6d6cabeb3a9968a7d70707d8a97a9b3becad3c7baaea399897c6f6256493c2f2316090000000713202d3a4653606d7985929facb8c5d2d5c9bdb2a896897c7074818d9aa7b4c0cdd5c9bdb2a8978a7e7164574a3e2f24180c0000000000000000000000000000000000000000000000000000000005111e2a36414d5664717e8b98a2aebac7d3e0d8cfbfb5ada7a5a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a6a8aeb6c0cadddfd2c6b9ada197897d7063554b403529170c020000000000000000000000131f2c3946525f6c7985929facb8c5d2d2d6dbcec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810161c2023242828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282524211d181109000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303c4855626f7b8896a1ac9f9286796d60676d757e8691959da5aea8a199928c827a6f6b605b534c535b606b6f7a828c9299a1a8aca49f9590857e746d67616e7b8795a0aca196887b6f6255483c3025190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303c4955616c707474747474747474747474747474747474747474747884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000081119222a333b434b515960686d747c82898f939a9ea1a9abadb3b5b7b9bbc0bfc0c0c1c2c2c2c1c0bfbfc0bbb9b7b5b2adaba9a19e99928f89817b736d676059504a423b322a2119100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2731394045474848484848484848484848484848484746413b32291e14080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141a21282c33393c43474a505356565e616366686a686d6f7071717172727171706f6d686a686663605d565553504946423b38322b272019130c04000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414d566875818e9ba8b4c1d0dbd3c6baada297877b6e6e7b8797a2adbac6d3cbbfb4ab988b7f7265584c3f3025190e0200000916222f3c4955626f7c8898a2aebac6d3d2c5b9aca196877a6d727f8c98a5b2bfced9cfc0b3a79a8d807467554b4035291d1004000000000000000000000000000000000000000000000000000000020e1925303b4754606d7a86929facb8c5cfdae1d0c7bfb8b3b2acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacb3b4b9c0c8d1dcded1c4b8ab9e9185796d6053463a2f241807000000000000000000000000131f2c3946525f6c7985929facb8c5d2dfe2dbcec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b101416171b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b181715110c0600000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3a47535f6a7884919eaba2988a7d70635d606c717c838e939fa2aaaba39f948f847d726c655e565e656c727d848f949fa3aba9a19a938d837b716c605c65727e8b98a7ab9e9184786a5f53473a2e1e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8080808080808080808080808080808080808080808086929facb8c5d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000710182129303940454f565e616a6e757d82878d92979b9ea1a9a8aaacafb5b2b3b3b4b5b5b5b4b3b3b2b5afacaaa8a8a19e9a97918c87827c756e69605d554f443f38302920180f07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232f39434b515355555555555555555555555555555554524c443b3025190e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f262b33383e44494e53545c606366686d70737577797a7c7d7d7e7e7f7e7e7d7d7c7a79777572706d686662605b53524d48433d373229241e160e07000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e687884919eabb7c4d1ded2c5b8ab9f9285796c697885929fabb8c5d2d1c1b5a89b8e827568564d42362a1e110500000c1925323f4c5865727f8b98aab4bfcad6d1c4b7ab9e91847868707d8a96a8b2bdc9d5d0c3b6a99d908376675d5145382c1f1306000000000000000000000000000000000000000000000000000000000814202c3945515d6775818e9ba9b3becad6e2d9d0c9c3c0beb9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9c0c1c5cad1dae1d4c8bdb2a89a8d8074665c5044382b1d1207000000000000000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0b0b09050100000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e586774808d9aaaaa9a8e8174655b5a626a6f79818a9298a0a7afa69e9691877f776d6860686d777f8791969ea6afa69f97928880786e69615a5d6775828f9ca8aa9a8d807467584e43372b1f0c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d9298a2aebac6d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000060f171e272e343d444c52585f626b70767b80858a8e9197999c9e9fa4aba5a6a7a7a8a9a8a7a7a6a5aba39f9d9b9896918e8a85807b756f6a615f57514c433d342e261e170e060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2934404b555c60616161616161616161616161616161615e564c41362a1e110500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c141c232831373e44485055585f62666d6f73777a7d7f82848587888a8a8b8b8b8b8b8a8a88878584827f7d7a76736f6c65615e57544e47433c3530282018120b0300000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8796a1acb9c5d2dccfc2b5a99c8f8276656976828f9ca9b5c2cfd1c4b7ab9e918478695e52463a2d2014070005111e2a36414c566875818e9ba8b4c1d0dbcec1b5a89b8e8175686d7a8796a0acb9c5d2d2c5b9ac9f92867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000004111d2935414b5563707d8a97a1adb9c6d2dfe2dbd4cfcccbc6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6cccdd0d5dce3ded1c5b8aca096887c6f62544a3f34281c1003000000000000000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26313d4a5663707d8998a2ab9e9184786c6053585f676d747e8690959da4ada8a199928c827a706b707a828c9299a1a8aca49f9490857d736d665f5753606d7a86929faca298897d7063564a3d31261a0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9fa2aab4bfcad0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000060c151d2328323a41464e53596063696e73797d8185888c8f9193999799999a9b9b9c9b9b9a9999979992918f8c8884817d79736e69626058534d45413a3128231c140c05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c676d6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e685e5246392d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e171e262e343c42464f555a61646a6e73797c8084878a8c8f91929895969797989898979796959892918e8c8986837f7c78736e69626058544e45413a3228231d150c05000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a8b2bdc9d5d9ccbfb3a6998c8073666673808c99a6b3bfced2c5b9aca196877a6e6154473b2e211407000714202d3946525e687784919eaab7c4d1d6cbbfb4aa988b7f7265687784919eaab7c4d1d3c7bbaea399897c6f6356493c3023160900000000000000000000000000000000000000000000000000000000010d18242f3a4653606d7985929eabb8c4ced9e5e6e0dcd9d8d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d9dadde1e7eaddd0c4b7aa9d9184776a605442382e23170b00000000000000000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a13202d3a4653606d7985929faca197887c6f62554e555d606c717b838d929fa2a9aba39f948f847d757d848f949fa3aba9a19a938d827b706b605c544d5364707d8a98a3ac9f9285796d6053463a2d20130a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7acaeb4bcc5d0d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000030b1218202930363c43474f54575f61676d7174787c7f828486888a8c8d8d8e8f8f8f8e8d8c8c8a888684827f7b7874706d66615e57544e46423b352f281f17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d797b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081019202930383f444d535961636c70767b8085898d909596999b9d9fa2aaa3a4a4a4a5a5a4a4a3aaa29f9d9b999a93908c88847f7b756f6a626058524c443e342e271e170e06000000000000000000000000000000000000000000000000000000000004101d2935404b556773808d9aa6b3c0cedad5c9bdb2a8968a7d706363707d8a96a8b2bdc9d5c9bdb2a8978a7d7064574a3d2e23180c000814212e3b4754616e7a8796a0acb9c5d2d3c7baaea398897c6f626875818e9ba8b4c1d1d7cbbfb5ab998c7f7266594c3f31261a0e020000000000000000000000000000000000000000000000000000000007131f2c3844515c6674818d9aa8b2bdc9d5e1edece8ebe3ddd7d4d2c9c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8cacbced3dae1e7e9edece0d3c7bcb0a6998c7f7366584e4330261c110600000000000000000000000000131f2c3946525f6c7985929facb8c5d2dadadacec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6775828f9baca9998c807366574d4b515a61696e79808a92979fa6afa69f969187828791969fa6afa69f97928880786e696159514a505b6574818e9aaaac9b8f8275675c5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b8babfc5ced7d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000070e171e252a31373d44484d53555c6064656c6f7275777a7c7e7f8080818282828180807f7d7b797775726e6a6764605c54524d47433d363129241e160d0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8888888888888888888888888888888275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a222a323a424a50575f616b70777d83888d9297999da0a7a6a8aaacaeb4b0b0b1b1b2b1b1b0b0b4aeacaaa8aca49f9d9996918c86827c756f6a605d5650454039302920180f060000000000000000000000000000000000000000000000000000000006131f2c3845515d677683909da9b6c3d0dcd2c5b9aca096877a6d61616d7a8796a1acb9c5d2cec0b3a69a8d807367544a4034281c10040a1724313d4a5764707d8a97a8b2bdc9d5d2c5b8ac9f9286796d6065727f8c98abb5c0cbd7d1c2b5a89b8f827568574d42362a1e12050000000000000000000000000000000000000000000000000000000004101c2834404a54636f7c8996a0acb9c5d2deeaf5ebe2d9d2ccc7c6bcbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbdbec2c8cfd8e1ebf6eaddd0c4b7ab9f94887b6e6155483c3222140a0000000000000000000000000000131f2c3946525f6c7985929facb8c5cececececec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b5565717e8b9aa4aa9d908377695e52464550575f666d747d8590949fa4aca9a199928e9299a1a9aba39f948f857d736d665e574f444653606c7884919eaba49a8b7e7165554b4034281c10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c5c6cad0d7d3d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000050c131920262b33383c42464b5153535b60626669676d6f717273747475767574747372716f6d676865625f585753514a46423b37322a261f19130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7b88949494949494949494949494948f8376695c504336291d1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a232c343c444c545c60696e767d838a90949a9ea1a9aaacb1b2b5b7b8babfbdbdbebebebebebdbdbfbab8b7b5b6afaca9a8a19e99928f89827c746d68615a514b423b322a21180f060000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5d2ddd1c4b7aa9e918477685e5e687884919eabb7c4d1cfc3b6a99c908376665c5144382c1f1206101c28343f4a546673808d99a6b3c0ced9cfc3b6a99c908376665c636f7c8999a3afbbc7d4d1c5b8ab9e928578695f53463a2d21140700000000000000000000000000000000000000000000000000000000000c18232e394854606b7784919eaab7c3cdd8e4eee3d9d0c7c0bbb9afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafb0b2b6bdc6cfdae4efe3d7cbbfb5ab9c908376695f53463a2d2114020000000000000000000000000000131f2c3946525f6c7985929facb8c1c1c1c1c1c1c1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3b4754616e7a87939faca095877b6e6154483e454d545c606c707b838d939aa1a9aba39f9b9fa3aba9a199928c827a706b605c544d453e4955626f7c8896a1ac9f93877a6e6154473b2e23180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000002080d151a21272c3137394045464950535559555d60626466666768686968686766666462605c555955534e4a4644403936302b27201a140d0801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8894a1a1a1a1a1a1a1a1a1a1a19d9083766a5d5043372a1d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a232c353e464e565e666d727b828a90959c9fa6abadb3b7b8bcbfc2c4c5c7cad0cacacbcbcbcacad0cac7c5c4c1c0bbb9b6b2acaba39f9c948f88817a716c605c544d443c332a21180f060000000000000000000000000000000000000000000000000000091623303c4956636f7c8999a3aebbc7d3dbcec1b4a89b8e81756856566875818e9ba8b5c1d1d2c5b8ac9f9286796d6053463a2d201307121f2c3844505c667683909ca9b6c3cfd9cdc0b3a69a8d80736754606d7a86929facb9c5d2d2c6b9ada197887b6e6155483b2e221507000000000000000000000000000000000000000000000000000000000007121c2c38434f596673808c99a7b1bcc8d4e3e8ddd2c7bdb5afaca3a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a3a6acb4bdc8d3deede0d3c7bbaea3998b7e7265574d42362a1e12050000000000000000000000000000131f2c3946525f6c7985929facb4b4b4b4b4b4b4b4b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e687783909daaa7988b7e7265554b403c424b515a61696e78808891979fa6afaca8acafa69e9691877f786e686059504a423b414d5666737f8c99a9a99d908376685e5246392d1d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000030a0f161c1f262b2e34383a3f4446484c4b51535557595a5a5b5c5c5c5b5a5959575553514b4c4847433d3a38342e2a251f1b160e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adaeaeaeaeaeaeaeaeaa9d9083776a5d5044372a1d0800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a232c353e474f585f686d787f868f949da0a7abb0b8b9bec3c5c8ceced0d2d3d6dbdbd6d3d2d2d4d8dbd6d3d2d0d2ccc8c6c3bdb9b5afaca69e9c938e857e746d665e564e453c332a21180d04000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99abb5bfcbd7d7cbbfb4aa988b7f7265585965727f8c98abb5c0cbd3c7baaea398887c6f6255493c2f22160813202d3a4653606d7985929facb8c5d2d5c9bdb2a8978a7d7064575d677783909daab7c3d0d5c9beb3a9978a7e7164574b3e2f24180d0100000000000000000000000000000000000000000000000000000000000f1b27323d4855626e7b88959fabb8c7d1dce3d7ccc0b5aba49f9695959595959595959595959595959595959595959595959595959595959595979aa2acb6c2cedaecdfd2c5b9ac9f92867a6d6154473b31261a0e020000000000000000000000000000131f2c3946525f6c7985929fa7a7a7a7a7a7a7a7a7a7a79b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c5666737f8c99a9a99c8f8276675d51453939404550575e666d737d858f949fa3abb2aba39f948f847d736c665e564f443f383946525e687783909daaa9998c7f7366564c41362a1e0b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7adadadadadadadadadadadadadadadadadadadadadadadadadadadadaa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000050b10141a1d23282c2d3337393c3f404547484b4c4d4d4e4f4f4f4e4d4d4c4a484645403f3b3a37312d2c28231c1a140f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793aab4bfbbbbbbbbbbbbb7aa9d9184776a5e51442f24190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18222c353e474f59616a6f7a828c92989fa6abb1b7bcc2c6c9cfd1d4d7d4d2d0cccac9d0cac6c5c6c8ccd2cacccfd2d3d7d4d2cec9c7c0bbb9b0aaa59d97918a81786e685f574e453c332a1f160b02000000000000000000000000000000000000000000000006121e2b37424d576975828f9ca8b5c2d1dcd3c7baaea398897c6f625656636f7c8999a3afbbc7d3cbbfb4aa988b7f7265584c3f3025190d16222f3c4955626f7c8898a2aebac6d3d2c5b9aca196877a6e6154556774818e9aa7b4c1d0dacfc0b4a79a8d817467554b4035291d110400000000000000000000000000000000000000000000000000000000000a16212e3a47535f697783909dabb5c0cbd7e0d4c7bbafa4999389888888888888888888888888888888888888888888888888888888888888888a909aa6b2becbd7e2d6cabeb4aa9c8f8275685e524639291f1409000000000000000000000000000000131f2c3946525f6c7986929b9b9b9b9b9b9b9b9b9b9b9b9b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1925303c4955626f7c8896a1ac9f92867a6d6053473a2e343e454d545c606b707a828c9299a1a8a199928c827a706b605b544c443d342e3b4754616e7a87939faca196887c6f6255493c3025190e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000000003090e12181c1f22272b2d2f2f35383a3c3e3f4041414243424141403f3e3c3a38342e2f2e2b26201f1c18120e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798698a2aebac6c7c7c7c7c4b8ab9e9185786b564c4135291d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a343d474f59616b707c8490949fa2aab0b8bcc3c7cdd2d5d6d3d1cbc7c5c3c0bdbcbbbfbab8b9bbc0bcbdbfc2c5c7cbd1d2d5d5d1cbc7c1bbb7afa9a19e938e837a6e6a5f574e453c31281d140a00000000000000000000000000000000000000000000000814212e3a47535f697885929eabb8c5d1ded2c5b9ac9f9286796d605353606d7a86929facb9c5d2d0c1b4a89b8e817568564c41362a1e111925323f4c5865727f8b98aab4bfcad6d1c4b7ab9e918478685e525865717e8b98aab4bfcad6d0c3b6aa9d908377675d5145392c201306000000000000000000000000000000000000000000000000000000000006121e2b37424d5765727f8b99a3afbbc7d4dfd2c6b9ac9f93877d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7e8a97a3b0bdcad6dfd3c6baaea2988a7e7164564c413529180d03000000000000000000000000000000131f2c3946525f6c79868e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000813202d394653606c7884919eaba3988a7d7064544a3f3328333b424a505960686e787f8791969e9691877f776d686059504a423b322834404b5565717e8b9aa4ab9e9184786a5f53473b2e1e140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d93939393939393939393939393939393939393939393939393939393939393939083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000070c1013171b1f202224292c2d2f313333343535363535343333312f2d2c282322211f1a1312100c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667985929facb8c5d2d4d4d2c5b9ac9f928679685d5245392c2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313c464f59616b707d8691969fa6aeb4bcc2c8cdd3d8d6d0cac6c5c0bbb9b6b3b0afaeb4aeacacafb6afb0b2b6b9babfc5c6c9cfd5d7d4ccc7c1bbb3ada59d9590847c6e6a5f574d433a2f261b1106000000000000000000000000000000000000000000000815222f3b4855626e7b8897a1adb9c6d2dcd0c3b6a99d908376665c51515d677783909daab6c3d0d1c4b7aa9e918477685e5246392d20131e2a36414c566875818e9ba8b4c1d0dbcec1b4a89b8e817568564c55626f7c8898a2aebac6d3d2c5b9ac9f92867a6d6053473a2d2014060000000000000000000000000000000000000000000000000000000000020e1a26313c4754616e7a86929facb9c5d0dbd4c7bbafa4998a7e716f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f727f8c98a5b2bfcbd8ded2c5b8ab9f9285796d6053473a3025190d010000000000000000000000000000000e1b2834414e5b6774818181818181818181818181818181817e7165584b3e3225180b000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6574818e9aaaaa9b8e8174665b5044382b2930383f444f565e666c727d848f938f847c726c655e564f443f382f292c3845515c6775828f9bacaa9a8e817467584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808686868686868686868686868686868686868686868686868686868686868686868683776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000000004060b0f121315181d1f20222426272728292929282726262422201f1c181514120f0a060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546b7784919eaab7c4d1dde0d3c7baaea399877a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d19242f3a434e58616b707d869298a1a8b0babfc6ced4d9d7d0cac6bfbab8b5afaca9a6a4a2a1aaa29f9fa4aca2a3a6a9acaeb4b8b9bec5c9cfd6d7d3cdc4beb9afa79f9691857c6e695f564c41382d22170b020000000000000000000000000000000000000000000b1825313e4b5864717e8b97a9b3becad6dacdc0b3a79a8d807467544b4b556774818d9aa7b4c0d0d2c5b9aca096877a6d6154473a2e2114202d3946525e687784919eaab7c4d1d6cabfb4aa988b7f7265584c53606d7985929facb8c5d2d4c7bbafa399897c706356493d2d22170b0000000000000000000000000000000000000000000000000000000000000915202d3946525e6876828f9caab4bfcad6d7ccc0b5ab9c8f827568626262626262626262626262626262626262626262626262626262697683909da9b6c3d0dcd5c9beb2a99b8e8174675d514538281e1308000000000000000000000000000000000d1a2733404c58646e74747474747474747474747474747474716d62564a3d3124170b000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495364707d8a98a3ab9e9285796c605346392d20262e343d444c545b606b6f7a8289827a6f6a605b534c443d332d26202d3a4653606d7985929faca3988a7d7063574a3d32261b0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d797a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000030506070c1013141518191a1a1b1c1c1c1b1a1a1917151313100c07080602000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e43505d697683909ca9b6c3cfdce3d7cbbfb4ab94887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2935414c555f6a707d869298a2aab2bac2cad0d8d9d1cbc5bebab4aeacaba39f9d99979695949892939a959697999c9fa3aaabadb3b9bdc4cad0d7d6cfc9c0b9b1a9a19791857b6e685d53493f33271d140a000000000000000000000000000000000000000005111d2935414c566774818e9aa7b4c1cfdad5c9beb3a9978a7e7164574b4b5865717e8b98aab4becad5c9bdb2a8978a7d7064574a3d2e2317212e3b4754616e7a8796a0acb9c5d2d3c7baaea298887c6f625549505c667683909ca9b6c3cfd7cbc0b5ab998c7f736653493f33271b0f03000000000000000000000000000000000000000000000000000000000005111e2a36414c5664717e8b98a2aebac6d3ddd2c5b9ac9f92867a6d6155555555555555555555555555555555555555555555555555616e7b88959fabb8c4d1ddd2c6b9ada197897d7063554b403529160c02000000000000000000000000000000000b1824303c48535c646768686868686868686868686868686865625a50453a2e211509000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3a4753606d7a86929faca197897c6f6256493c31261c2328323b424a505960686d757c756d6860585049413a3228221c23303d4a5663707d8998a2ac9f92867a6d6053473a2d20140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c666d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d675d5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090b0c0d0e0e0f100f0e0e0d0c0b09070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061c2835424f5b6875828e9ba8b5c1cedbe7dcd1bcafa296897c6f6356493c30231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313a45515d676e7c869298a3aab4bcc4ccd6dbd7cfc7c0bbb3aeaaa29f9a9992908d8a8988878685868788898a8c8f9298999ea1a9adb2babec5ced5dad5cbc2bbb2a9a19791847a6d655b50443c2f261b1106000000000000000000000000000000000000000713202d3946525d687784919daab7c4d0ddd2c6b9ada197877b6e6154484855626f7b8898a2aebac6d3cec0b3a6998d807366544a3f34281c24313d4a5764707d8a97a8b2bdc9d5d2c5b8ac9f9285796d6053464a546773808d9aa6b3c0cfdad1c2b5a89c8f8275655b5044372b1f12050000000000000000000000000000000000000000000000000000000000020e1925303b4753606d7a86929facb8c5cfdad3c7bbafa3998b7e7265574d4949494949494949494949494949494949494949494e5866737f8c99a7b1bcc8d4ded1c4b8ab9e9184786c605346392f24180600000000000000000000000000000000000814202b36414a53585b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b585650483f34291d1105000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d6775828f9ca8a9998d807366574d42362a1e1720292f383f444f565d616b706b605d564e443f382f2920171f2b37434e586774808d9aaaa89c8f8275675d5145392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b545c6060606060606060606060606060606060606060606060606060606060606060606060605d554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0cdd9e3d6cabdb0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a43505a606d79849198a2aab4bcc6ced6ddd5cdc5bdb5afaaa29f98928d8a8683807d7c7b7a7979797a7b7c7d7f8386898d92979ea1a8adb3bcc3cbd3dbd4cdc4bbb3a9a0968f82776c60584e41382d22170b000000000000000000000000000000000000000714212e3a4754616d7a86939facb9c6d2ded1c5b8ab9e928578695e53464653606c7985929fabb8c5d2cfc2b6a99c8f8376665c5044382b1f2834404a546673808d99a6b3c0ced9cfc3b6a99c908376665c50444b5764717e8a97a9b3becad6d1c5b8ab9e9285796c605346392d2013060000000000000000000000000000000000000000000000000000000000000814202c3945515d6775818e9ba9b3bec9d5d7cbc0b5ab9c908376695e53463c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c47535f6a7784919daab7c2cdd8d4c8bcb1a79a8d8073665b5044382b1d12070000000000000000000000000000000000030f1a252f3841484c4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4b4a453f362d22180c01000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b5565727e8b98a7aa9d908477695f53463a2d2114171d262d333d444c525960636059524c443d332d261d1715212e3a47535f6a7884919eaba7988b7e7265554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e39424b51535353535353535353535353535353535353535353535353535353535353535353535353514b43392f24180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c56616c75818f96a0aab4bcc6cfd8ddd4cbc3bbb3aba39f98928c86807d7a7673716f6e6e6d666d6d6e6f707376797c80858b91969fa2a9b1b9c1c9d2dad6cdc4bbb2a89e948c7f736a5f53493f33271c12070000000000000000000000000000000000000a1724303d4a5763707d8a9aa4afbbc8d4dbcec2b5a89b8f827568574d4244505b6676838f9ca9b6c2cfd2c5b8ac9f9285796d6053463a2d202c3844515c667683909ca9b6c3cfd9ccc0b3a6998d807366544a3f4855616e7b8897a1adb9c6d2d2c6b9ada297887b6e6255483b2f22150800000000000000000000000000000000000000000000000000000000000004111d2935404b5563707d8a97a1adb9c6d2dcd1c6b9ac9f93877b6e6154483c322f2f2f2f2f2f2f2f2f2f2f2f2f2f2f333f4953626f7c8895a0acb8c5d4ded1c5b8aca095887c6f62544a3f33281c0f0300000000000000000000000000000000000008131d262f363c40414141414141414141414141414141413e3d3a342d241b110600000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3b4854616e7b8795a0aca095887b6e6155483b2f24190b141c2228323a41464f5456544f45413a3227221b140b15222f3c4855626f7b8896a1aca095877b6e6154483b2f24180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d273039404546474747474747474747474747474747474747474747474747474747474747474747474745403931271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c10131413100c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcfdae6d9cdc0b3a69a8d8073675a4d4034271a08000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c17202c3945525d68717e8a939ea8b2bcc5cfd8dfd4cbc2b9b1a9a299928c85807a74706d676664636261605c606162636466676d7073797f848b9297a0a7afb7c0c8d2dcd6cdc3bab0a69f92877c6e655b5044392e23180c000000000000000000000000000000000003101c28343f4a546673808d99acb6c0ccd8d7ccc0b5ab998c7f7266594c3f3f4a546673808d99a6b3c0cfd3c6baaea298887c6f6255493c2f222d3a4653606d7985929facb8c5d2d5c9bdb2a8978a7d7064574a3d46535f697885929eabb8c5d1d6cabeb3a9978b7e7164584b3e2f24190d010000000000000000000000000000000000000000000000000000000000010d18242f3a4653606d7985929eabb8c3ced9d4c8bbafa49a8c7f7266584e43372b222222222222222222222222222b3744505b6573808d9aa7b1bcc8d4d8ccc0b6ac9d9184776a5f5342382d22170b00000000000000000000000000000000000000010b141d252b30333435353535353535353535353535353532312e29221b12090000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535e697783909daaa7988b7f7265564c4135291d110a1117202830353d44484948443d3530282017110a111d2a36414c5666727f8c99a8aa9d908377695e52463a2d1d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e272e34383a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a38352f271f150b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f201f1c18120f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a9b3bec9d5e1dbcec2b5a89b8f8275685c4f423024190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e2a36424d57606d7a85919ea5afbac3ced7e1d6cdc2b9b1a7a0979287807a736d6863605d555756555453515354555657555c6063676d72797e8590959ea5aeb6c0cad4ded5ccc1bbaea3999083776c60544a4034281c11060000000000000000000000000000000006121f2c3844505c6676838f9ca9b6c2d2ddd4c7bbafa499897c706356493d3d4a5764707d8a97a8b2bdc9d5cabfb4aa988b7e7265584b3f30252f3c4955626f7c8898a2aebac7d3d2c5b9aca096877a6d6154473a424d576976828f9ca9b5c2cfdbcfc1b4a79a8e817467564c4135291d110400000000000000000000000000000000000000000000000000000000000007131f2c3844505c6674808d9aa8b2bdc8d4d8ccc0b6ac9d9184776a5f5347382d221716161616161616161616202d394653606c7884919eabb7c3ced9d4c8bbafa49a8c7f7266584e432f261c11060000000000000000000000000000000000000000020b131a202427282828282828282828282828282828282524211d181109000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576673808d99a9a99c8f8276685d5245392c201306060e161e242932383b3d3b383229241e160e060713202d3946525e687683909ca9a9998c807366574d42362a1e0b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151d23282c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c29241d150d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d151d23292c2d2c29231d1b150e0902000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8797a1adb9c6d2dfddd0c3b6aa9d9083776a564c4135291d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a46525e6974808d97a1adb7c1ccd5e0d9cfc5bbb1a79f9590857d736d68615e5654514c4a4948474644464748494a4b5153555d60666d717b838e939da4aeb8c2ccd6ded7cbbfb5ab9f948b7e71665c5144382e23170b000000000000000000000000000000000713202d3a4653606d7985929facb8c5d2dfd2c6b9ac9f93867a6d6054473a3b4754616e7b8796a1adb9c5d2d0c1b4a79b8e817468564c413529323f4c5865727f8b98aab4bfcad6d1c4b7aa9e918477685e524639404d596673808c99a6b3bfcedad0c3b7aa9d908477685d5245392c20130600000000000000000000000000000000000000000000000000000000000003101c28343f4a54626f7c8996a0acb9c5d2ddd2c7b8aca095887c6f62544a3f33281c0f09090909090909101c2834404b5563707c8996a1adb9c5d5dfd2c6b9ac9f93877b6e6154483c3221140a0000000000000000000000000000000000000000000001080f14181a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b181715110c0600000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a25313c4956626f7c8997a1ac9f92867a6d6054473a2e23170b00040c131921272c2f302f2c272119130c04000714212e3a4754616d7a86939faca197897c6f6256493c30251a0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f2020202020202020202020202020202020202020202020202020202020202020202020201f1d18120b03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f272f34383a38342f2b26201a140d070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d687885919eabb8c4d1deded2c5b8ab9f928578685d5245392c2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c56616e7b86929fa9b3bec9d3dedcd1c7bdb3a99f9590837b706b605d56524c4745413e3c3b3b3a383a3a3b3c3d4045474b51545c60696e79818d929da6b0bac4ced8dcd1c6bdb0a69e9184796d60544a3f34281c10030000000000000000000000000000000916232f3c4956626f7c8998a2aebac6d3ddd0c3b7aa9d908477675d5145393a46525e697884919eabb8c4d1d0c4b7aa9d918477685e5246392d36414c566875818e9ba8b4c1d0dbcec1b4a89b8e817568564c41363d4a5763707d8a96a8b2bdc9d5d2c6b9ac9f93867a6d6054473a2d211406000000000000000000000000000000000000000000000000000000000000000c17232e384754606a7784919eaab7c2cdd8d4c8bcb1a79a8d8073665b5044382b1f1207000000000006131f2c3845515c6774818e9aa8b2bdc9d5d7cbbfb5ab9c908376695e53463a2d21140200000000000000000000000000000000000000000000000003080b0d0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0b0b0905010000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a1117202d394653606c7985929eaba3998a7d7164544a3f34281c10030002080d161b20222322201b160d08020004101c2834404a5464717e8b99a4ab9e9285796c605346392d2017110a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c101313141414141414141414141414141414141414141414141414141414141414141414141413100c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313940454745403937322a251f18130b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c566976838f9ca9b6c2cfdcdfd3c6baada297877a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e6874808d99a3aebbc4cfdbe3d7cbc0b5aba1979083796e696059524c46413a39352f302f2e2d2c2d2e2f302f34383a40454b51575f676d75808d949fa8b2bcc6d0dbd8cfc2b9aca1968b7e71665c5044382b1f12070000000000000000000000000000000c1925323f4c5865727f8b98aab4bfcad6dacdc1b4a79a8e817467554c413536424d576875828f9ba8b5c2d2d1c5b8aca096877a6d6154473a2e3946525e687884919eabb7c4d1d6cabfb4aa988b7e7265584b3f303a4754616d7a8796a1acb9c5d2d4c8bbafa49a897d7063564a3d2d22170b0000000000000000000000000000000000000000000000000000000000000006111c2b37434e586673808c99a7b1bcc8d4d9cec3b8ab9e9184786c605346392f23180c00000000000713202d3a4653606d7985929fabb8c4cfdad3c7bbaea3998b7e7265574d42362a1e1205000000000000000000000000000000000000000000000000000000010102020202020202020202020202020200000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c151c2328323a44505b6674818e9ba7ab9b8e8175665c5044382b1f1206000000040b101316161613100b0400000006121f2c3844515c6675828e9baba79b8e8174665b50443a3128231c150c0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004060707070707070707070707070707070707070707070707070707070707070707070707070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232f39434b5153514b47433c363029241d17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f414e5a6774818d9aa7b4c0cddae2d6cabeb3a995897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929fabb4bfcdd6e1dfd4c7bbafa39992857b6e675f574f45413a36302c2924232221201f2021222323292c2f353940454d555d606d78828f96a0aab4bfcad6e1d5c9bdb2a89e9184786d6053463a2f24180d010000000000000000000000000005121e2a36424d576875828e9ba8b5c1d0dbd6cabfb4aa988b7e7165584b3e2f303f4c5966727f8c99abb5c0ccd4c8bdb2a8968a7d7063574a3d2d3b4754616e7a8796a1acb9c5d2d3c6baaea298887c6f6255493c2f3946525e687884919eabb7c4d1d8ccc0b6ac998c807366544a3f33281c0f03000000000000000000000000000000000000000000000000000000000000000f1b27323d4855616e7b88959fabb8c7d1dcd2c5b9ada196897c7063554b4034291c100400000004111d2935414c5664717d8a97a2adbac6d6dfd2c5b9ac9f92867a6d6154473b31251a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080f171e262e343d444c525a64717d8a97a4ab9e9285796d6053463a2d20130600000000000407090a09070400000000000713202d3a4653606d7985929faba4978a7d71645a524c433d342e261e170f0801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2934404b555c605c55534e46423b352f28231c140c0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081926323f4c5965727f8c98a5b2bfced9e5dbd0beb1a4988b7e7165584b3e3225180900000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e5865727f8c98a2aebdc6d1dfe1d5c9bdb2a89f92877d70695e554d453d352f2a25201d19161514131213141516181c1f24292e343c434b515c666d7a849198a2aebac6d1dcdacec4b9aca096897d7063554b4035291d1004000000000000000000000000000714212d3a46535e697884919eabb8c4d1ded3c6baaea298887b6f6255483c2f303d495663707c8999a4afbbc7d4cebfb3a6998c807366544a3f333d4a5764707d8a97a8b2bdc9d5d2c5b8ac9f9285796d6053463a2d36414c566875828e9ba8b5c1d2ddd2c2b5a99c8f8276665b5044382b1f1206000000000000000000000000000000000000000000000000000000000000000a16212d3a47535f697683909dabb5c0cbd7d5c9bdb2a89a8e8174675c5145382c1f13080000000713202c3945525d6875828f9ba9b3becad6d6cabeb3aa9b8f8275685d524639291f140900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdbd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c1319212930383f444f565d606c717c8895a2ada297897c6f6356493c2e23170b00000000000000000000000000000000000a1623303d495663707d8998a2aea295887c716c605d564f443f3830292119130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003061313131313131313131313131313130f0f0c09040000000000000000000000000000000000000106090b0c13131313131313131313131313130808060200000000000000000000000000000000000000000306080913131313131313131313131313130f0e0c090400000000000006131f2c3845515c676d67625f58524d45403a342e261e1b150e090200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a8b2bdc9d5e1dacdc0b3a79a8d8074675a4d413025190e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3a47535f6a7783909daab4bfcfd8e2dacfc5b9aca0968c7f726b60574d433b3329241e1913110d0808080706070708070c1013181d23283139404a545d686f7c86929faab4bfcbd7e0d5c9bdb2a89b8e8174675d5145392c201306000000000000000000000000000815212e3b4854616e7b8796a1adb9c5d2dfd2c5b8ac9f9285796c605346392d2d3a4754606d7a86939facb9c6d2cfc2b5a99c8f8276665b504438404a546773808d9aa6b3c0cedacfc2b6a99c8f8376665c5044382b303f4c5965727f8c98abb5c0ccd7d2c5b8ab9f9285796c605346392d2013060000000000000000000000000000000000000000000000000000000000000006121e2b37424d5765727f8b99a3afbbc7d3dacfc4b8ab9f9285796d6053473a3024190d0100000714212d3a4754606d7a86929facb9c5d0dbd3c6baaea2988a7d7164564c413529170d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cececec9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d161e2429333b424a505960686d757e86929facb3a99a8d807367544a3f34281c100300000000000000000000000000000003101c28343f4a546773808d9aaab3ac9f92867e756d686059504a423b3329241e160d06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b10122020202020202020202020202020201c1b1915100902000000000000000000000000000000070d1216181920202020202020202020202020201514120e090300000000000000000000000000000000030a0f12151520202020202020202020202020201c1b18150f0902000000000714202d3a4753606d79766f6a615e57514b443f38302b262019140d07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8796a0acb9c5d2dedccfc2b6a99c8f837669564d42362a1e110500000000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a0acbcc6d0e1e1d5c9beb3a99e9184786d60594f453b31292119130d0804010000000000000000000004070c12181f282f38424c565f6a74808d98a3aebac7d1dcd9cec4b8ac9f92857a6d6053473a2d201408000000000000000000000000000b1824313e4b5764717e8a97a8b2bdc9d5dccfc2b6a99c8f8376665b5044382b2c3945515d677784909daab7c3d0d2c5b8ab9f9285796c6053463944515c667683909ca9b6c3cfd9ccc0b3a6998d807366544a3f3428303d495663707c8999a4afbbc7d4d3c6baaea298887b6f6255483c2f22150800000000000000000000000000000000000000000000000000000000000000020e1a26313c4754616d7a86929facb9c5d0dbd3c6baada2978a7d7164564c4135291d11040005121e2a36424d5765717e8b98a3aebac7d7ded2c5b8ab9f9285796d6053473a3024190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c1c1c1c1c1bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f282f353e454d545c606b6f7a818b9298a2aeaaa29d918477665c5044382b1f120600000000000000000000000000000006121f2b3844505c667784919ea2aaaea298928b817a6f6b605c544d453e352f281f17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c03000000000000000000000000010911181e2225252d2d2d2d2d2d2d2d2d2d2d2d2d2d22211e1a150e060000000000000000000000000000060e151a1f21222d2d2d2d2d2d2d2d2d2d2d2d2d2d282725201b140c030000000a1724313d4a5764707d827c746e69605d55504a423e37312a251f18120b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d687784919eaab7c4d1ddded1c5b8ab9e928578695e52463a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b5566737f8c99a7b1bcced8e2dfd2c6b9ada1978b7e72665c50473d33291f180f080100000000000000000000000000000000070d161d26303a444e58616e7b86929fabb5c0cbd7dfd3c6baaea2988a7d7164574a3e3025190d01000000000000000000000004111d2935404b556774808d9aa7b3c0cfdad9ccc0b3a6998d807366544a3f33282935414b556874818e9ba7b4c1d0d3c6baaea298887b6f6255483c4653606d7985929facb8c5d2d4c8bdb2a8968a7d7063574a3d2e232d3a4753606d7a86939facb9c6d2d6cabeb3aa988b7e7165584b3e3025190d01000000000000000000000000000000000000000000000000000000000000000915202d3946525e6875828f9caab4bfcad6d6cabeb3a99b8f8275685d5245392c201409000714202d3a46525e6976838f9caab4bfcbd7d5c9bdb2a89a8e8174675c514538281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b4b4b4b4b4b4b4afa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c141c2328313a414550575f666d737d848e939fa2aaa69f98928b81786d6053463a2d2013070000000000000000000000000000000713202d3a4653606d78818b92989fa7aaa29f938e847d736d665f575045413a3128231c140c05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c141c23282b3939393939393939393939393939393634312c261e150c02000000000000000000000009131b23292e313239393939393939393939393939392f2e2b2620180f0600000000000000000000000006101820262b2e2f39393939393939393939393939393534312c251e150c0200000a1724313d4a5764707d8a87817b736d67605c544f47433c363029241d17110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c566875818e9ba8b4c1d1dcdfd2c6b9ada297877a6e6154473b2e2114060000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6776838f9ca9b6c2cddceaded1c5b8ab9e9285796d60544a3f352b20170d0600000000000000000000000000000000000000040c141e28323c46525e6974818d99a3afbbc7d3e0d6cabfb4aa9a8d817467564c41362a1d110500000000000000000000000613202c3945515d677783909daab6c3d0ddd5c9bdb2a8978a7d7064574a3d2d22242f3f4b5865727e8b98aab4bfcad6cabeb3aa988b7e7165584b3e4956626f7c8998a2aebac7d3d2c5b8aca096877a6d6154473a2e212c3945515d677784909daab7c3d0dbd0c1b4a79b8e817468564c4135291d11050000000000000000000000000000000000000000000000000000000000000005111e2a36414c5664717e8a98a2aebac6d3dbd0c5b9ac9f92867a6d6054473b30251a0e020815212e3b4854616e7b87939facb9c6d1dcd2c5b9ada196897d7063554b403429160c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca8a8a8a8a8a8a8a8a8a396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070f171e262e343d434c515a61696e78808791969ea5aba39f9490857e756d665c5044382b1f120600000000000000000000000000000006121f2b3844505c666d757e8690959fa3aba59e96918780786e69615a514c433d342e261e170f0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e262e343846464646464646464646464646464642413d3730271e14090000000000000000000007111b252d343a3e3f46464646464646464646464646463b3a37312a21180e0300000000000000000000030e18222a31373a3c464646464646464646464646464642413d3730271e140900000a1724313d4a5764707d8a938e868079716d666159534e46423b352f28221c140b0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1924303f4c5965727f8c98abb5c0cbd7e2d6cabeb3a9968a7d7063574a3d2d22170b000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb8c5d2dfe1d4c8bdb2a8998c7f72675c5142382e23190e05000000000000000000000000000000000000000000020c16202a36424d56616e7b86929facb9c5d2dfdbd0c3b7aa9d908477685e5246392d20130700000000000000000000000714202d3a4753606d7a86929facb9c5d2dfd2c5b9aca196877a6e6154473b2e21222f3c4955626f7c8898a2aebac7d3d0c1b4a79a8e817467564c414c5865727f8b98aab4bfcad6d1c4b7aa9e918477685e5246392d202935404b556774818e9aa7b4c1d0dcd0c4b7aa9d918477685e5246392d20130700000000000000000000000000000000000000000000000000000000000000010d1925303a4753606d7a85929facb8c4cfdad3c7baaea3998b7e7165574d42362a1e1206121f2b37434e5865727f8c99a4afbbc7d4ded1c4b8ab9e9184786c605346392f231806000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9b9b9b9b9b9b9b9b9b9b9b96897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c1318212930383f444e555d606c717b838c9299a1a8a8a099928c827b716c605c544a3f34281c100300000000000000000000000000000003101c28343f4a545c606c717b838c9299a1a8a8a199928c837b716c605d554e443f3830292118130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2630383f445353535353535353535353535353534f4d49423930261b10040000000000000000010d18232d373f464a4c53535353535353535353535353534847423c332a201509000000000000000000000a15202a343c43474853535353535353535353535353534f4d48423930251b0f04000a1724313d4a5764707d8a9798928c857e78706b625f58524d454039332d261d1b150e0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081623303c4956636f7c8999a3afbbc7d4e0dbcfbfb3a6998c807366544a3f33281c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8998a3aebac7d3e0ded1c5b8aca096877b6e61554b4030261c11070000000000000000000000000000000000000000000000040e1925303b46535e6976828f9ca9b5c2d0dbdfd2c6b9ac9f93867a6d6154473a2e21140700000000000000000000000a1623303d495663707c8999a3afbbc7d4ded1c4b7ab9e918478685e5246392d20202d3a4653606d7985929facb8c5d2d0c4b7aa9d918477685d52454d566875818e9ba8b4c1d0dbcec1b4a79b8e817468564c41362a1d242f3f4b5865727e8b98aab4bfcbd6d1c5b8aca096877a6d6154473a2e21140600000000000000000000000000000000000000000000000000000000000000000813202c3945515d6775818e9ba9b3bec9d5d7cbbfb4ab9c8f8376695e52463a2d20150a15212e3a47535f6a7783909dabb5c0ccd7d4c8bcb1a79a8d8073665b5044382b1f1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828e8e8e8e8e8e8e8e8e8e8e8e8e897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d161d2429333b424a505860676d757e8590959fa3aba59d9691877f786e69615a504a42382e23170b00000000000000000000000000000000000b17232e38424a505a61696e78808791969ea5aba39f9590857e756d676058504a423b3329241d160d06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e38424a505f60606060606060606060606060605c5a544b42372c211509000000000000000006121e29343f49515658606060606060606060606060606055534d453c31261a0e020000000000000000030f1a26313c464e535560606060606060606060606060605b59534b42372c201509000a1724313d4a5764707d8a97a29f97918b837d766f6a615e56514b443f382f2b262019140c0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5d2dfdccfc2b6a99c8f8276665b5044382b1f12060000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98aab4bfcbd6e3ddd0c4b7aa9d918477685e5243392f1e140a0000000000000000000000000000000000000000000000000009141f2a36424d5766727f8c99aab4becad6e0d4c8bbafa49a897d7063564a3d3023170a00000000000000000000030f1c28333f4a5466737f8c99abb5c0cbd7dbcec1b5a89b8e827568564c41362a1e1f2c3844505c667683909ca9b6c3cfd2c6b9ac9f93867a6d605447525e687884919eabb7c4d1d6cabeb4aa988b7e7265584b3f302519222f3c4955626f7c8898a3aebac7d3d4c8bdb2a8968a7d7063574a3d2e23170b000000000000000000000000000000000000000000000000000000000000000004101d2935404b5563707d8997a1adb9c6d2dcd1c6b9ac9f93877b6e6154483c31261a0f1b27333f4953626f7b8895a0acbdc7d2ddd1c5b8aca095887c6f62544a3f33281c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d192633404c5966737f81818181818181818181818181817c6e6255483b2f2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f282f353e454d545c606a6f7a818a92989fa7a9a19e938e847c736d665e5750443f3830261c1106000000000000000000000000000000000006111c2630383f4450575f666d737d848e939fa2a9a79f98928a817a6f6a605c544d453e352f281f17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69655d54493d3125190c00000000000000000916222e3a46515b62656c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5f574d42372b1e1206000000000000000006121f2b37434e585f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c68655d53483d3125180c000a1724313d4a5764707d8a97a3a9a19e95908a827c746e69605d55504a423d37312a251f18120b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d677783909daab6c3d1dcded2c5b8ab9f9285796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4c0d0dce7dacdc1b4a79a8e817467564d4131271d0c0200000000000000000000000000000000000000000000000000020e1a25313c4956626f7c8998a2aebac6d3dfd8ccc0b6ac988b7e7265584b3f3225180c0000000000000000000006121f2b3844505b6676828f9ca9b5c2d1dcd7cbbfb5ab988c7f7265594c3f3025191c28343f4a546773808d9aa6b3c0cfd4c8bbafa49a897d7063564a54616e7a8796a1acb9c5d2d3c6baaea298887b6f6255483c2f2215202d3a4653606d7986929facb8c5d2d9cec0b3a6998d807366544a3f34281c100300000000000000000000000000000000000000000000000000000000000000010d18242f3a4653606d7985919eabb8c3ced9d4c8bbafa49a8c7f7265584e43372b1f121f2b3744505b6573808d99a7b1bcd0d9d8ccc0b6ac9d9084776a5f5342382d22170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1825323e4b57636d7375757575757575757575757575756e6a5f53473a2e21140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b141c2228313a414550575e666d737c848e939fa2aaa69f97928a81796f6a605c544d453e342e261e140a000000000000000000000000000000000000000a141e262e343e454d545c606b6f7a818a92979fa6aaa29f938e847c736d665e575045403a3128221c140b0500000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667679797979797979797979797979797570655a4d4134281b0f02000000000000000b1825313e4a56626d72797979797979797979797979797976695f53473a2e21140800000000000000000815212e3a47535f6a767979797979797979797979797979756f65594d4134271b0e000a1724313d4a5764707d8a97a3b3ada7a09d948f87817b736d67605b544f47433c363029241d17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556673808d99abb5bfcbd7dfd3c6baaea298887b6f6255483c2f221509000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdce2d6cabeb3a9978a7e7164574b3e3024150b0000000000000000000000000000000000000000000000000000000913202d3a4653606d7985929fabb8c5d2deddd2c0b3a79a8d8074675a4d4134271a0e000000000000000000000613202d394653606c7985929fabb8c5d2ded3c7bbaea399897c6f6356493c30231617232e3e4a5764717e8a97a9b3bec9d5ccc0b6ac998c7f736653495764707d8a97a8b2bdc9d5d2c5b8ab9f9285796c605346392d20131f2c3844515c667683909da9b6c3d0dccfc2b6a99c8f8376665c5044382b1f1206000000000000000000000000000000000000000000000000000000000000000007121f2b3844505c6674808d9aa8b2bdc8d4d8ccc0b6ac9d9083776a5f53473a2e2113202d394653606c7884919eabb7c3cdded4c8bbafa49a8c7f7266584e432f261c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a16222f3b46515b63666868686868686868686868686868625f584e43372b1f1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070f171d262d333d434b515a61696e787f8791969ea5aaa39f948f857e746d676058504a423b3328231c140c0200000000000000000000000000000000000000020c141c2328333b424a505960676d747e8590949fa3aba59e9691877f786e69615a514b433d332d261d170f0701000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986868686868686868686868686868275695c4f4236291c0f03000000000000000c1925323f4c5865727f86868686868686868686868686867b6e6255483b2f22150800000000000000000915222f3c4855626f7c86868686868686868686868686868175685b4f4235281c0f000a1724313d4a5764707d8a97a3b0b9b1aca69f99938e868079716c666059534e46413b352f28221c140b0a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3d4a5663707d8999a3aebbc7d3e0d6cabeb4aa988b7e7165584b3e31261a0e020000000000000000000000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1dddfd3c6baada297877b6e6154473b2e21140800000000000000000000000000000000000000000000000000000006121f2b3844505c6675828f9ca8b5c2cfdbdbcfc2b5a89c8f8275695c4f4236291c0f000000000000000000000915222f3c4855626f7b8897a2adbac6d3dfd2c5b9ac9f9286796d6053473a2d201415222e3b4855616e7b8897a1adb9c6d2d2c2b5a89c8f8275655b50546773808d9aa6b3c0cedacfc2b6a99c8f8276665b5044382b1f121c2834404a546774808d9aa7b3c0cfdbd2c5b8ac9f9285796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54626f7c8996a0acb8c5d1ddd2c7b8aca095887b6f6255483d32271c2834404a54636f7c8996a1acb9c5d2dfd2c6b9ac9f93877b6e6154483c3221140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161e2a3540495157595b5b5b5b5b5b5b5b5b5b5b5b5b5b55534e463c31261a0f0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c121821292f383f444e555d606c717b828c9299a0a8a7a098928b827a706c605d554e443f3830292117110a02000000000000000000000000000000000000000000020a1117212930383f444f555d606c717b828c9299a0a8a8a099928c827b716c605d554e443f382f292118120c040000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d79869393939393939393939393938f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b939393939393939393939393887b6e6255483b2f22150800000000000000000915222f3c4855626f7b889393939393939393939393938e8275685b4f4235281c0f000a1724313d4a5764707d8a97a3b0bdbcb8b0aba49f98928c847e78706b625f58524d454039332d261d1a150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5d2dfdbd0c1b4a79b8e817468574d42372b1e12060000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b657985929facb8c5d2dfded2c5b8ab9f928578695e52463a2d20140700000000000000000000000000000000000000000000000000000003101c28343f4a546673808d99a6b3c0ccd9ddd0c3b6aa9d9083776a5d5044372a1d11000000000000000000000c1825323f4b5865727e8b98a9b3becad6ddd0c3b6aa9d908377675c5145382c1f1314212d3a46535f697885929eabb8c5d1d2c5b8ab9f9285796c60535c667683909ca9b6c3cfd8ccc0b6ac998c807366544a3f33281c0f18232e3e4b5764717e8a97a9b3becad6d3c6baaea298887c6f6255493c2f2216080000000000000000000000000000000000000000000000000000000000000000000b17232e384754606a7784919daab7c2cdd8d4c8bcb1a7998d807366584e43382c1f2c3844515c6674818d9aa8b2bdc9d5d7cbbfb4ab9c8f8376695e53463a2d21140200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101920272b2e3740464b4c4e4e4e4e4e4e4e4e4e4e4e4e4e4e4847433c332a20150900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d161d2429333b424a505860676d747e8590949fa3aba49f9590867f776e68615a514b433d342e261e170f0600000000000000000000000000000000000000000000000000060f181e262e343d434c515a61696e787f8791969da5aba39f9490857e746d676058504a423b3329241d160d0600000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939f9f9f9f9f9f9f9f9f9f9c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b989f9f9f9f9f9f9f9f9f9f95887b6e6255483b2f22150800000000000000000915222f3c4855626f7b88959f9f9f9f9f9f9f9f9f9f9b8e8275685b4f4235281c0f000a1724313d4a5764707d8a97a3b0bdc8c2bdb5afaaa29f97918b837d766f6a615e56514b443f382f2b262019140c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d677683909ca9b6c3cfdbded1c4b7ab9e918478695f53473a2e211406000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c778698a2aebac6d3e0ddd1c4b7aa9e9184776b574d42362a1e1105000000000000000000000000000000000000000000000000000000000b17232e3f4c5965727f8c98a5b2bfcbd8ddd0c4b7aa9d9184776a5e5144372b1e1100000000000000000005111e2a36414c566874818e9ba7b4c1d0dbdacdc0b3a79a8d807467554b4034291c10121e2a36424d576975828f9ca8b5c2cfd3c6baada297887b6e6255606d7986929facb8c5d2d4c8bbafa49a8a7d7063574a3d2d22170b15222e3b4855616e7b8897a2adbac6d3d6cabfb4aa988b7e7265584b3f3025190d01000000000000000000000000000000000000000000000000000000000000000006111c2b37434e5866737f8c99a7b1bcc7d4d9cdc3b7ab9e9184786a605448382e232d3a4653606d7985929eabb8c4cedad3c7baaea3998b7e7165574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f19222b32383b3c3f393e4042424242424242424242424242423b3a37312a21180e030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f282f353e454d545b606a6f79818a92979fa6a9a19a938d837c726c655e56504540393128231c140c05000000000000000000000000000000000000000000000000000000060c151c2328313a414550575e666c727c848e939ea2a9a69f97928a81796f6a605b544d453e352f281f17110a020000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acacacacacacacaca89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5acacacacacacacaca195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2acacacacacacacaca89b8e8275685b4f4235281c0f000a1724313d4a5764707d8a97a3b0bdd0d0c7c0bbb4aea9a19e959089827c746e68605d55504a423d37312a251e18120b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556673808c99a9b3becad6dfd2c5b9ada196887b6e6255483b2e23170b000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d798693aab4bfcad6e2dcd0c3b6a99d9083766a5d504330251a0e0200000000000000000000000000000000000000000000000000000000061825313e4b5864717e8b97a4b1becad7ded1c4b8ab9e9185786b5e5245382b1f120000000000000000000713202d3946525e687784919eaab7c4d1ddd6cabeb3a9978a7e7164574b3e2f23180c0e1a2631404c5966737f8c99a6b2bfced6cabeb3a9978b7e716458626f7c8998a3aebac7d3d2c6b9ac9f93867a6d6154473a2e21140613202d394653606c7985929fabb8c5d2dbd0c1b4a89b8e817568564c41362a1e11050000000000000000000000000000000000000000000000000000000000000000000f1b27323d4855616e7b88959fabb8c7d1dcd2c5b9aca196897c6f62544a3f342935404b5563707d8a97a1adb9c6d6dfd2c5b9ac9f92867a6d6054473b31251a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a16202b343d4347494b46443f382f3535353535353535353535352f2e2b2620180f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b141c22283139404550575e666c727c848e939fa2a9a59e97918880796f6a605b534d443e352f281f17110a090909090908060300000000000000000000000000000104060709090909090a11171f282f353e454d545b606a6f79818a92979fa6a9a29f938e847c726c665e57504540393127221b140b0500000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9b9b9b9b9b9b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2b9b9b9b9b9b9aea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aeb9b9b9b9b9b9b5a89b8e8275685b4f4235281c0f000a1724313d4a5764707d8a97a3b0bfc6ccd2ccc6bfbab2ada7a09d948f87817b736d67605b544f47433c363029241d17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3c4956636f7c8997a2adb9c6d2dfd5c9bdb2a8988b7e7265544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbad0dbe7dbcfc2b5a89c8f8275695c4f4236291c0900000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdc9d6ded2c5b8ab9f9285786c5f5245392c1f120000000000000000000714212e3a4754616d7a8796a0acb9c5d2ded2c6b9ada297887b6e6155483b2e221507091723303d4a5663707d8996a8b2bdc8d4cfc0b4a79a8d8174675565727f8b98aab4bfcbd6d0c4b7aa9d918477685d5246392d201307121f2b3744505b6576828f9ca9b5c2cfdcd1c4b7aa9e918477685e5246392d2014070000000000000000000000000000000000000000000000000000000000000000000a15212d3a46535f697683909dabb5c0cbd7d5c9bdb2a89a8d8074665c5044382c3945515d6775818e9ba9b3becad6d6cabeb3a99b8f8275685d524539291f14090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323d464e54565853504a423d36302823282828282828282822211f1a150e060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070e171d262d333c434b515a61696e787f8791969da5aaa29f938f857d746d675f585049413b3229241d16151515151515151515120f0a030000000000000000000001070d1013141515151515151515161e2429333b424a505860676d747e858f949fa3aba59d9691877f786e69615a514b433c332d261d170e07010000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6c6c6c6c2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2bec6c6c6c6bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc6c6c6c6c1b5a89b8e8275685b4f4235281c0f000a1724313d4a5764707d8a97a9aeb4bbc0c7d0d0cac4beb9b1aca69f99928e867f79716c666059534e46413b352f28221c140b0a03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929eabb8c5d1dcdacfc2b5a89b8f8275665c5044382b1f12060000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1dbcec1b4a89b8e8175685b4e4235281b0f02000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcc8d5dfd2c5b9ac9f9286796c5f5346392c20130000000000000000000a1724313d4a5764707d8a97a8b2bdc8d4ded1c5b8ab9e928578695f53463a2d2114070714212e3a4754616d7a8796a0acb8c5d2d0c3b7aa9d908477675d6875818e9ba8b5c1d0dccec1b4a79b8e817468564c4135291d11050f1b27333f49536673808c99a6b3bfcfdad2c5b9aca096877a6e6154473b2e21140700000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727f8b99a3afbbc7d3dacec4b8ab9e9285796d6053463a2f3a4753606d7a85929facb8c5cfdad3c6baada2978a7d7064564c413529170d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b38434e58606265605b544f46423b342e271e1a1b1b1b1b1b1514120f090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121820292f383f444e555d606c717b828c9299a0a8a79f98928b827a706b605c554e443f382f29222222222222222222222222211f1a150e060000000000000000040c12181d2020222222222222222222222222292f383f444e555d606c717b828c9299a0a8a8a099928c827b716c605d554e443f382f292018120b0300000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d2d2cfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd2d2c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d2d2cec1b5a89b8e8275685b4f4235281c0f000a1724313d4a5764707d8a979fa2aaafb5bdc2c8cecfc9c3bcb8b0aba39f98928c847e78706b625f58524c454039332d261d1a150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c6675818e9babb5bfcbd7ded2c5b8ab9f9285796d6053463a2d2013090000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1dacdc0b3a79a8d8074675a4d4134271a0e01000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a1aebbc8d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000004101c2834404b556773808d9aa6b3c0ced9dbcfc2b5a89c8f827569574d42372b1e12050713202d3946525d687784919eaab7c4d1d2c6b9ac9f93867a6d60697884919eabb7c4d1d6cabeb3a9988b7e7165584b3e3024190d010b17222d3d4a5764707d8a97a8b2bdc9d5d5c9bdb2a8978a7d7064574a3d2e23180c000000000000000000000000000000000000000000000000000000000000000000020e1a26313b4754616d7a86929facb9c5d0dbd2c6b9ada197897d7063554b4035414c5664717e8a98a2aebac6d7ded2c5b8ab9f9285796d6053463a3024190d0100000000000000000000000000000000000000000000000000000000000000000103040404040404040404040404040404040100000000000000000000000000000815222e3b4754606a6f726c666059524d454039302b261f18130b06080806020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d151d2429333b424a505860676d747e858f949fa3aba39f9590867e756d686059514b433c332d2f2f2f2f2f2f2f2f2f2f2f2f2f2f2e2b2620181006000000000000040d161d24292c2d2f2f2f2f2f2f2f2f2f2f2f2f2f2f2d333d434b515a61696e787f8791969da4aba39f948f857e746d6760585049413b3229241d150d06000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000916222f3c4955626f7c858d92989fa4abb0b8bcc3c9cfcec8c2bdb5afaaa29f96918b837d756f6a615e56514b443f382f2b262019130c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a5464717d8a99a3aebbc7d3dfd3c6baada297897c6f6256493c31261a0e0200000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000006131f2c3845515c677683909ca9b6c3cfdcd8ccc0b6ac998c7f7366594c4031261a0e0205111d2935414c566875818e9ba8b4c1d1d4c7bbafa499897c70636e7b8796a1acb9c5d2d3c6baada297887b6f6255483c2f221508000614212e3b4754616e7a8796a1adb9c5d2d9cec0b3a69a8d807367544a4034281c10040000000000000000000000000000000000000000000000000000000000000000000914202d3946525e6875828f9caab4bfcad6d5c9beb3a99b8e8174675d51453946525e6875828f9caab4bfcad6d5c9bdb2a89a8e8174675c514538281e130800000000000000000000000000000000000000000000000000000000000000060a0e10111111111111111111111111111111110d0d0a070200000000000000000006131f2b37434e58626f7c7e786f6b615e57514b433e373129241d17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f272f353e454d545b606a6f79818a92979fa6a8a199928c837b716c615e564f45403c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3a37312a2218100600000000010c161f282f35393a3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c404550575e666c727c848d929ea1a9a69f97928a81796f6a605b534d443e352f271f17110a0200000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000815212e3b47535f6a6f7a80868e93999fa6acb1b9bdc4cad0cfc7c0bbb4aea9a19e959089827c746e68605d55504a423d37312a251e18120b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3a4754606d7a86929facb9c5d1dcd6cabeb3a9998c807366574d42372b1e120600000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000713202d3a4653606d7986929facb9c5d2dfd4c8bbafa49a897d7063564a3d3023170900010d1924303f4c5865727f8b98abb4bfcbd7ccc0b5ab998c7f7266717d8a97a8b2bdc9d5d2c5b8ab9f9285796c605346392d201306000714202d3946525e687884919eabb7c4d1dccfc3b6a99c908376665c5144382c1f120600000000000000000000000000000000000000000000000000000000000000000005111d2a36414c5664717e8a98a2aebac6d3dacfc5b8ab9f9285796d6053473a4754616d7a86929facb9c5d0dbd2c5b9ada196897c7063554b403428160c020000000000000000000000000000000000000000000000000000000000040b11161a1d1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1a1917130e0800000000000000030d15212e3b47535f6a75828b837d756e69605c554f47423c352f27221b140b08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b141b22273139404550575e666c727c848e939fa2a9a59e96918780786e69625a524c48484848484848484848484848484848484848484847433c342a22180e0400000007121d2831394045474848484848484848484848484848484848484848484d545b606a6f79818a92979fa6a9a29f938e847c726c655e56504540393127221b140b05000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0006131f2b37434e585f676d737b81878f949da0a7adb2babec5cbd1cbc6bfbab2ada7a09d948f87817a736d67605b544f47433c363029241d17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6776828f9cabb5bfcbd7dbd0c3b7aa9d908477695f53473a2d21140800000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000000091623303c4956636f7c8998a3aebac7d3dfd2c6b9ac9f93867a6d6054473a2d21140700000816232f3c4956626f7c8999a3aebac7d3d2c2b5a89b8f82756873808d99a6b3c0cedacfc2b5a99c8f8276665b5044382b1f12060005111e2a36414c566875828f9ba8b5c2d2ddd2c5b8ac9f9286796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000010d1925303a4753606d7985929facb8c4cfdad3c6baaea2988a7d7164554c424d5765727e8b99a3aebbc7d3ded1c4b7ab9e9184786c605346392e2318060000000000000000000000000000000000000000000000000000000000050e151c2227292a2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2726231f19120a02000000000009141f2b37424e57626f7c88949089817b726d676159534d45413a332d261d19130c06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070e171d262d333c434b515a61696e787f8791969da5a9a29f938e847d736d665f57555555555555555555555555555555555555555555555555534e463c342a20150a0000010d18242f39434b5153555555555555555555555555555555555555555555555555585f676d747d858f949fa3aaa59d9691877f776e69615a514b433c332d261d170e070100000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00030f1b26323c464e555d60696e747c828990959ea1a8aeb3bbc0c7cfd0cac4bdb9b1aca69e99928e867f79716c666059534e46413a352f27221b140b0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5565727f8b99a3aebbc7d3ded1c5b8aca095887b6e6155483b3025190d01000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000c1926323f4c5965727f8c98aab4bfcbd7ddd0c4b7aa9d918477685d5245392c20130700000713202d3a4653606d7986929facb9c5d2d1c4b7ab9e9184786775828f9ca8b5c2cfd8ccc0b6ac998c807366544a3f33281c0f0300020e1925303f4c5966727f8c99acb6c0ccd8d3c7baaea398897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000008131f2c3845515d6774818e9ba9b3bec9d5d6cabeb4aa9b8e8275675d5146525e697683909cabb5bfcbd7d4c8bcb1a7998d8073655b5044372b1f120700000000000000000000000000000000000000000000000000000000040e1720272e33363737373737373737373737373737373734322f2a241c140a00000000020e1a25313a47535f6a75828e9b9d938e867f79706b625f57514b443f382f2a251e17110a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121820292f383f444e555d606c707b828c9299a0a8a8a197928a817a6f6b626262626262626262626262626262626262626262626262626262625f584e463c31261b0f030004101d2935404b555d60626262626262626262626262626262626262626262626262626262626c707a828b9298a2a9a8a099928c827b706c605d554e443f382f292018120b03000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000a15202a343c434c51575e616a6f767d838b91969fa2aaafb5bdc1c7cdcfc9c3bcb8b0aba39f98928c847e78706b625f58524c454039332d261d1a150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a4754616d7a86929facb9c5cfdad4c8bcb1a7988c7f7265564c41362a1e1105000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000005121e2b37424d576875828f9ba8b5c2d1dcdacec1b4a79b8e817468564c4135291d1104000006131f2c3845515c677683909da9b6c3d0d2c6b9ac9f93867a6d7784919eaab7c4d1d4c8bbafa49a897d7063564a3d2d22170b000000081623303d495663707c899aa4afbbc8d4d6cbbfb4aa988b7f7265584c3f30251a0e0200000000000000000000000000000000000000000000000000000000000000000004101d2935404b5563707d8997a1adb9c6d2dbd0c5b8ac9f92867a6d60544854616e7b87939facb9c6d1dcd1c5b8aca095887c6f6253493f33271b0f03000000000000000000000000000000000000000000000000000000000b15202931393f4244444444444444444444444444444444403f3b362e261c120800000005121e2a36424d57626e7b87939fa59e98928c847d756e69605d555049413c363028231c150c09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d151d2429323b414950585f676d747e858f949fa3abaca19691857e756f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6a5f584e43372b1f1206000613202c3945515d676d6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f777f869297a2adaba39f948f857e746d675f585049413b3229241d150d060000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000040e18222a313a41454d52585f626b70787e848c92989fa3abafb8bcc2c8cecec8c1bdb5afaaa29f96918b837d756e6a615e56514b443f382f2b262019130c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000813202d3946525e6875828f9ba9b3bec9d5d9cec3b6a99c908376685e5246392d201409000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000714212d3a46535f697885929eabb8c5d1ded6cabfb4aa988b7e7265584b3f2f24190d01000004101c2834404b556774808d9aa7b3c0d0d4c8bbafa49a887b6f7986929facb9c5d2d2c6b9ac9f93867a6d6054473a2d2114060000000714212d3a4754606d7a86939facb9c6d2dcd0c1b5a89b8e827568574d42362a1e1205000000000000000000000000000000000000000000000000000000000000000000000c18242f3a4653606d7985919eabb8c3ced9d3c7baaea3988b7e7164564d5765727f8c9aa4afbbc8d4d8ccc0b6ac9d9083776a5f5341382d22170b0000000000000000000000000000000000000000000000000000000006111c27313b434a4f515151515151515151515151515151514d4b4740382e24190e0200000714212d3a46535e6974818e99a4afaaa29f96918a827b736d67605b534e46413a342e261e1a140c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f272f353e444d535b606a6f79818a92979fa6aeb5ab9e91847d7c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c766a5f53473a2e211509000714202d3a4753606d797b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c7e85929eabb5aea69f97928a81796f6a605b534c443e352f271f17110a02000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000710181f282f353b42464e535960666c71797f858d92999ea5abb1b9bdc3c9cfcfc7c0bbb4aea8a19e959089827c746d68605d555049413d37312a251e18120b060000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c5664707d8a97a1adb9c6d2dfd2c6b9ac9f93867a6e6154473b31261a0e020000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000815222e3b4855616e7b8897a1adb9c6d2dfd3c6baaea298887c6f6255493c2f221608000000000c18232e3e4b5864717e8b97a9b3becad6ccc0b6ac978a7d707a8799a3aebbc7d3d0c3b7aa9d908477685d5245392c2013070000000613202c3945515d677784919daab7c4d0ddd1c4b7ab9e918478695e52463a2d2014070000000000000000000000000000000000000000000000000000000000000000000007121f2b3844505c6673808d9aa8b1bdc8d4d6cbbfb4aa9c8f8275685d535f697783909dacb6c0ccd8d4c8bbafa49a8c7f7265584e432f261b1106000000000000000000000000000000000000000000000000000000000a16222e39434d555b5d5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5a58524a40362a1f13070005111e2a36414c56616e7b86929fabb5b4aea8a09e948f87807a716c656058524c443f38302a251f18120b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141b2227313940454f565e656c727c838e929ea2a9b0bbb9aca196918a8888888888888888888888888888888888888888888888888888888888888888887c6f6255483c31261a0e05111e2a36414c5665727f8888888888888888888888888888888888888888888888888888888888888888888a9297a2adb9bbb0a9a19e928e837c726c655e564f4540393127221b140b020000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000070d161e242930363c43474f545b60676d727a80878f939d9fa7acb2b9bec5cbd0cbc5bfbab2ada7a09d948f87817a736d67605b534f47423c363029231d17110a020000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a4653606d7985929eabb8c3ced9d4c7bbafa4998b7e7265574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000b1825313e4b5864717e8b97a9b3bec9d5dfd2c5b8ac9f9285796d6053463a2d201307000000000715222f3b4855626e7b8897a2adbac6d3d2beb2a5988b7f727c8895abb5bfcbd7cdc1b4a79a8e817467564c4135291d110400000004111d2935414c556874818e9ba7b4c1d1dcd2c5b9ada196877b6e6154483b2e2115070000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54626f7c8895a0acb8c5d1dcd0c5b9ac9f92867a6d6155616e7b88959fabbec7d2ddd2c6b9ac9f93877b6e6154483c3121140a00000000000000000000000000000000000000000000000000000000000e1a27333f4a555f676a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a67635c52473b2f23170a000714202d3946525e6874808d99a3aebdbfbab2aca69e99928d857e786f6a615e56504a423d363129241d150d08000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262d333c434b515961686e777f8691959da5adb3bbc2bdb2a8a19e9695959595959595959595959595959595959595959595959595959595959595958c7f7366574d42362a1e120714202d3946525e687683909595959595959595959595959595959595959595959595959595959595959595979ea2a9b3bec2bbb3ada59d9591867f776e686159514b433c332d261d140a0000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000040c13191f252a32373d424a50555d60686d747b828990959ea0a8adb3babfc6ccd0cac4bdb9b1aca69e99928d857f79716c656059534e46413a342f27221b140b09030000000000000000000000000000000000000000000000000000000000000000000000000008131f2c3844515c6674808d9aa7b1bcc8d4d7ccc0b5ab9c908376695f53463a2d21160a0000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000004111d2935414c566774818e9aa7b4c1cfdadccfc3b6a99c908376665c5044382c1f1206000000000613202d394653606c7985929fabb8c5d2ccbfb3a6998c80737d8a96a3b0bdd1d6cabeb3a9988b7e7165584b3e2f24190d01000000010d19242f3f4b5865727e8b98abb4bfcbd7d5c9bdb2a8978a7d7164574a3e2f23180c00000000000000000000000000000000000000000000000000000000000000000000000b17232e384754606a7784919daab7c2cdd8d3c7bbaea3998b7e71655766727f8c99a7b1bcd0d9d7cbbfb4aa9c8f8276695e52463a2d2014020000000000000000000000000000000000000000000000000000000000101d2936424f5b677177777777777777777777777777777777736e63584b3f3226190d000814212e3b4754616e7a86929faab2bac2c4bdb9b0aba39f97918b837c746d68605c544f46423b352f271f1a1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f383f444e555d606b707a828c9299a0a8afb9bebcbcbcbab2acaba3a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a29d908377695f53463a2d21140814212e3b4754616e7a86939fa2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a4abadb3bbbcbcbcbeb9afa8a099928c827a706b605d554e443f382f261b110600000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000001080d141a20262b2f383f444b51565e61696e757c838a91969ea1a9aeb4bbc0c7d0cfc9c3bcb8b0aba39f98928c847e78706b625f57524c454039332d261d1a150d0802000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a54626f7c8895a0acb8c7d1dcd2c7b7ab9f94887b6e6155483d32271b0f0100000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000613202c3945525d687784909daab7c3d0ddd9cdc0b3a69a8d807367544a3f34281c10030000000005121f2b3744505b6576828f9ca9b5c2cfcdc1b4a79a8e81747e8b98a4b1becbd3c6baada297887b6e6255483b2f22150800000000000816232f3c4956626f7c8999a3aebac7d3dacfc0b3a79a8d807467554b4034291c10040000000000000000000000000000000000000000000000000000000000000000000006111c2b37434e5866737f8c99a6b0bcc7d3d7cbbfb5ab9c8f8276685f697783909daab7c3cdddd3c7baaea3988b7e7165574d42362a1e12050000000000000000000000000000000000000000000000000000000000111e2a3744515d6a77848484848484848484848484848484848073675a4d4034271a0d000b1825313e4b5864717e8b9298a1a8b0b8c0c9c1bdb5aea9a19e959087817a726d666059534d454039312c241a1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38414950585f676d747d858f949fa3abb1afafafafafafafafafafafaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaca095887b6e6155483b302519111d2935414c5665717e8b99a4afaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeafafafafafafafafafafafb1aba39f948f857d746d675f58504941382d22170b00000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000003090e151b1d262d333940454c52575f626b6f767e848b92979fa3aaafb5bdc2c8cecdc8c1bdb5afaaa29f96918b837d756e6a615e56514b443f382f2b262019130c0701000000000000000000000000000000000000000000000000000000000000000000000c18232e3947545f6a7783909dabb5c0cbd7d3c7bcb0a6998c7f7366584e43382b1d130700000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000714212d3a4754606d7a86939facb9c6d2dfd5c9bdb2a8978a7d7164574a3e2e23170c0000000000030f1b27333f49536673808c99a6b3bfcecfc2b5a89c8f82757f8c99a5b2bfccd2c5b8ab9f9285796c605346392d20130600000000000713202d3a4653606d7986929facb9c5d2dcd0c3b6a99d908376675c5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000f1b27323c4855616e7b88949fabb7c6d1dcd1c5b9ac9f92867a6d626e7b8895a0acb8c4d1dfd2c5b9ac9f92867a6d6054473b30251a0e020000000000000000000000000000000000000000000000000000000000131f2c3946525f6c798691919191919191919191919191918e8175685b4e4235281b0f000a1724303d4956616c717e8691969fa6aebabfc5c6bfbbb3ada79f99938e857f78706b615e57514b433e362c241a10060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f49535b606a6f79808a92979fa6a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3acafb1a7988c7f7265564c41362a1e13202c3945525d6876828f9cabb5afaca3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a69f97928a80796f6a605b53493f33271b0f03000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000040a0b141c22282f353a41464d535960636c71797f858d92989fa4abb0b8bcc3c9cfcfc7c0bbb4aea8a19e959089827b746d68605c555049413d37312a251e18120b0600000000000000000000000000000000000000000000000000000000000000000007121c2b37434e5865727f8c99a3afbbc7d3d8cdc2b7aa9e9184776a6054473a2f24180d01000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000a1723303d4a5663707d899aa4afbbc8d4dfd2c5b9ada196877b6e6154483b2e2115060000000000000b17222d3d4a5763707d8a96a8b2bdc9d0c3b6aa9d908377808d9aa7b3c0cdcfc2b5a89c8f8275655b5044372b1f1205000000000006131f2c3845515c667683909da9b6c3d0dcd2c5b9ac9f9286796d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000a15212d3a46535f697683909cabb5bfcbd7d3c7bbafa3998b7e7166737f8c99a7b1bcc8d4d6cabeb3a99b8e8275685d524539291f1409000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929d9d9d9d9d9d9d9d9d9d9d9d9b8e8175685b4e4235281b0f000815212d3945505a626c717c848f949ca4aeb4bcc3cbc4beb9b1aba49f97928b837d756e69605d5550483e362c22170c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b656c727c838d92969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969fa4aba99c908376685e5246392d2014212d3a4754606d7a86929facaba39f96969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696928d837c726c655b5044372b1f1205000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000020a11171d242930363c42474f545a61666d727a80868e93999fa6acb1b9bdc4cad0cbc5bebab2ada7a09d948f87817a726d67605b534f47423c363029231d17110a0200000000000000000000000000000000000000000000000000000000000000000f1b26323c4754616e7a86929facb9c5cfdbd2c5b9aca096897c6f62554b4035291d1104000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000003101c28343f4a546673808c99acb6c0ccd8ded1c4b8ab9e918478695e52463a2d2014070000000000000614212e3a4754616d7a8796a1acb9c5d1c4b8ab9e918578818e9ba7b4c1ceccc0b5ab998c7f736653493f33271b0f03000000000004101c2834404b546774808d9aa7b3c0d0dbd3c7baaea399897c6f6356493c30231609000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727e8b99a3aebbc7d3d7cbc0b5ab9c8f8276697783909daab7c3cdd9d3c6baada2978a7d7064564c413529170d02000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929faaaaaaaaaaaaaaaaaaaaa89b8e8175685b4e4235281b0f0005111d28343e48505a626a6f7a828d929fa2aab2bac1ccc9c2bdb5afa9a29f959089817b736d67615a50483e34281d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c787f868989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898a9399a4ac9f93867a6e6154473b2f241c2934404b5564717e8a99a3aea399928a898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989867f786c605346392d201306000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000060b12181e252a31373d434850545c60686d737b81878f949da0a7adb2babec5cbd0cac4bdb9b1aca69e99928d857f79716c656059534d46413a342f27221b140b03000000000000000000000000000000000000000000000000000000000000000a15202d3946525e6875828f9ca9b3becad6d4c8bdb2a89a8d8174675d5145392c20160a000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000006121f2b3844505c6676838f9ca9b6c2d2dddbcec2b5a89b8f827568574d42362a1e12050000000000000713202d3946525e687884919eabb7c4d1c5b9ac9f928679828f9ca8b5c2cfc7bbafa499897d7063564a3d2d22170b000000000000000c18232e3e4b5864717e8b97a9b3becad6d7cbbfb4ab988c7f7265594c3f31261a0e0200000000000000000000000000000000000000000000000000000000000000000000020e1a26313b4754616d7a86929facb9c5d0dbd1c5b9ac9f92867a6e7b8895a0acb8c5d5ded2c5b8ab9f9285796d6053463a2f24190d01000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb7b7b7b7b7b7b7b7b4a89b8e8175685b4e4235281b0f00000c17222d363f48505860686d78808a9298a0a8afbbc0c7d0c7c0bbb3ada7a09d938e868079716c615a5045392d211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a7d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d87939faca4998b7e7165554c4135291f2c3845515c6775828e9babac9f92877d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d7a6d6054473a2d211407000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000000000000001070c13191f262b32383e424a51565d60696e747c828990959ea1a8aeb4bbc0c7cfcfc9c3bcb8b0aba39f98928c847e78706b625f57524c454039332d261d150d0300000000000000000000000000000000000000000000000000000000000005111e2a36414c5664717d8a97a2adb9c6d1d9cec3b8ab9f92857a6d6053473d32271b0f020000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000713202d3a4653606d7985929facb8c5d2dfd7cbc0b5ab988c7f7265594c3f30251a0e0200000000000005111e2a36414c566875828e9ba8b5c1d1c7baaea399867983909ca9b6c3cfc6b9ac9f93867a6d6054473a2d211406000000000000000715222f3b4855626e7b8897a2adbac6d3dcd1c2b5a89b8f827568574d42362a1e120500000000000000000000000000000000000000000000000000000000000000000000000914202d3946525e6875828f9caab4becad6d3c7bbaea3998a7e727f8c98a7b1bcc8d4d5c9bdb2a89a8e8174665c514538281e130800000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c4c4c4c4c4c4c1b4a89b8e8175685b4e4235281b0f000006101b242d363f464e565e666d737e8691969ea5afb5bdc5cdccc5bebab1aca59e98928c847e716c6155493d3024170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d686d707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707076838f9cacab9c8f8275675d5145392c202d3a4753606d7985929facac9c8f837670707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706d685d5245392c201307000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000002080d151a21272c303940444c52575e616a6f767d838b91969fa2aaafb5bdc1c7cdcdc8c1bdb5afaaa29f96918a837d756e69615e56514b443f382f271f150b010000000000000000000000000000000000000000000000000000000000010d1925303b4653606d7985929eabb4bfcbd7d3c6baaea2988b7e7265594f43382c1e14080000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000916222f3c4955626f7c8898a2aebac6d3dfd4c7bbafa399897c6f6356493c3023160900000000000000010d1925303f4c5965727f8c98abb5c0cbcbbfb4ab94877b84919daab7c4d0c3b7aa9d908477675d5145392c201306000000000000000613202d394653606c7985929fabb8c5d2ded1c4b8ab9e918578695f53463a2d211407000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5664717e8a98a2aebac6d3d7cbbfb5ab9b8e817683909ca9b6c3ced9d2c5b9aca196897c6f63544b403428160c0100000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c5d0d0d0d0cec1b4a89b8e8175685b4e4235281b0f00000009121b242d343d444c545c606c717c848f939fa4abb3bbc3cbd0cac3bcb8afaaa29f96918a7e7164574b3e3124180b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c565d606363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636365727f8b9aa4ac9f92867a6d6054473a2e28343f4a5463707d8a98a2aea49a8b7f726563636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363605d564c4135291d1104000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000003090e161b1e272e343a41454d52585f626b70787e848c92989fa3abafb8bcc2c9cecfc7c0bbb3aea8a19e959089827b746d68605c555049413931271d120700000000000000000000000000000000000000000000000000000000000008141f2c3845515c6773808d99a3aebac7d2d6cabeb3aa9d9083776b6054483b3025190d0100000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000c1925323f4c5865727f8b98aab4bfcad6dfd2c5b9ac9f92867a6d6053473a2d2014070000000000000000081623303c4956636f7c8999a3afbbc7d1bbafa295887c85919eabb8c4cdc1b4a79a8e817467554c4135291d11040000000000000005121f2b3744505b6576828f9ca9b6c2cfdcd2c6b9ada197887b6e6155483b2e2215070000000000000000000000000000000000000000000000000000000000000000000000010d1925303a4753606d7985929fabb8c4cfdad1c5b8ab9f92857a87929facb9c5d2ded1c4b7ab9e9184786c605346392e2318060000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c5d2dddddbcec1b4a89b8e8175685b4e4235281b0f0000000009121b222b323a424a505a616a6e79818c9399a1a9b1b9c0cbd1cec8c0b6aea49d928d80736c6155493d3024170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1924303a444c525456565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656616e7b87939faca3998a7e7164554b40342b3844505c6674818e9baaac9f93877b6e615656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565654524c443a3024190d01000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000040a0c151c23282f353b42464e535960666c71797f858d92999ea5abb1b9bdc4cacfcbc5bebab2aca79f9d938f87807a726d67605b534b43392f23180c00000000000000000000000000000000000000000000000000000000000004101c2834404b55616e7b86929fabb5c0ccd7d0c5b8aca095897c6f63564c41362a1d130700000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000005111e2a36424d576875818e9ba8b4c1d0dbddd0c3b6aa9d908377675d5145392c20130600000000000000000714202d3a4753606d7a86929facb9c5c9bcafa396897d85929facb8c5cabeb3a9978b7e7164584b3e2f24190d0100000000000000030f1b27333f49536673808d99a6b3c0cfdad5c9beb3a9978a7e7164574b3e2f24180d01000000000000000000000000000000000000000000000000000000000000000000000008131f2c3845515d6774818e9ba9b2bdc9d5d3c6baada2978d818d99a3afbbc7d4d4c8bcb1a7998d8073655b5044372b1f12070000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f0000000000091019202930383f4450585f676d777f8792979fa7afbabfc6c9c0b7aea49d928d80746e645a5045392d211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323a414547494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949525e697683909da9ab9b8e8275675c5145382d3a4653606d7985929eaba99d908376695e524949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494745413a32281e130800000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000000030b12181e242930363c43474f545b60676d737a80878f939d9fa7acb2b9bec5cbd0cac4bdb9b1aba69e99928d857f79716c655c554b4034291c10040000000000000000000000000000000000000000000000000000000000000c18232e3946525e6874818e99a4afbbc7d4d4c8bcb1a79b8e8175685e52463a2f24180d00000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000714202d3a46525e697884919eabb7c4d1dedacdc0b4a79a8d817467554b4035291d1004000000000000000006131f2c3945515d677783909daab7c3cabdb0a4978a7d86939facb9c6c6b9ada197887b6e6255483b2f2215080000000000000000000b17222d3d4a5764707d8a97a9b2bdc9d5dacfc0b3a79a8d807467554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b5563707d8996a1adb9c5d2d6cabeb3a99d928d929dabb5c0cbd7d1c4b8aca095887b6f6253493f33271b0f030000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f000000000000070e171e262e343e464e555d656c727d8590959da5aeb4bdc0b7aea49d928d80746e645c52483e34281d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c1620283035393a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d424d5766727f8c99a7ac9f9285796d6053463a2e3d495663707c8997a1ada7988c7f7265574d423d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a3935302820160c0200000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000000000000000000000000000000000070c13191f252a32373d424a50555d60686d747b828990959ea0a8adb3babfc6cccec9c3bcb8b0aba39f98928c847e776d675c5145382c1f130600000000000000000000000000000000000000000000000000000000000007121d2a36414d56626e7b87939facb9c2cdd8cec3b9ac9f92867a6e61554b4135291d1207000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000814212e3b4754616e7b8796a1acb9c5d2ded6cabeb3a9978b7e7164584b3e2f24180d01000000000000000004101d2935404b556774818e9aa7b4c1d0bfb2a6998c7f8c9aa4afbbc8c5b8ab9e928578695f53473a2e2114080000000000000000000614212e3b4754616e7b8796a1adb9c5d2ddd0c3b6aa9d908377675d5145392c2013060000000000000000000000000000000000000000000000000000000000000000000000000c18242f394653606c7884919eabb8c3ced9d0c5bcaea49d9a9da4aebdc7d1d7ccc0b5ab9d9083776a5f5341382d22170b000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f00000000000000050c141c2328343c434c535b606b707b838e939fa3abb2b7afa59d928d80746e645c524a40362c22170c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e161e24292c2d30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303b4855616e7b8895a0aca2988a7d7063544a3f37434e586774808d9aa9aca095887b6e6155483b30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302d2c29241e160e040000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000000001080d141a20262b2f383f444b51565e61696e757c838a91969ea1a9aeb4bbc0c7d0cdc8c1bdb5afaaa29f96918a83796d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000e1925303b47535f6975828f9ba6b0bbc7d3d3c7bbaea3998c8073675d5145392e23180c000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000b1724313e4a5764717d8a97a8b2bdc9d5dfd3c6baada297887b6e6255483b2f221507000000000000000000000c18242f3e4b5865717e8b98aab4bfcac5b8ab9f9285929facb6c0ccc2b5a89c8f827569574d42372b1e12060000000000000000000714202d3a46525e697885919eabb8c4d1ded2c5b9ac9f92867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000007121f2b3844505b6673808d9aa7b1bcc8d4d7cec0b6aea9a7a9aeb6c0cfd9d4c7bbafa4998c7f7265584e432f261b1106000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c5d2dbdbdbcec1b4a89b8e8175685b4e4235281b0f0000000000000000020a1117222a313a4149505960696e79818b9299a1a8afa59d938d80776c605c524a40382e241a10060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13191d2021232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232d3a46535f697783909daaaa9a8e8174665c50443b4754606a7884919eabaa9d908377695f53463a2d2323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232321201d19130c04000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000000000000000003090e151b1d262d333940454c52575f626b6f767e848b92979fa3aaafb6bec2c8cecfc7c0bbb3aea8a19e95877a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000008141f2b37424d57626f7c89949fabb7c3cdd7cbbfb5ab9f92857a6d60554b4034281c11060000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000004101d2935404b556774808d9aa7b3c0cedaded2c5b8ab9f9285796c605346392d201306000000000000000000000715222f3c4855626f7b8898a2aebac6c6baaea2989298a2aebec7cbc0b5ab998c7f7366594c4031261a0e0200000000000000000005111e2a36424d576875828f9ba8b5c2d2ddd3c7bbafa399897c706356493d30231609000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54626f7c8895a0acb8c7d2ddd2c8c0b9b5b4b5b9c0c8d2dfd2c6b9ac9f93877b6e6154473c3121140a00000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c5cececececec1b4a89b8e8175685b4e4235281b0f00000000000000000000060f181f282f383f444f575e676d747e8791969fa59d938e81776c655b504a40382e261c12090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1113141616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161e2a36424d5766737f8c99a8ab9e9285796d6053463c4955626f7c8896a1ada8998c7f7366574d42362a1e1616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161413110d080200000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000000000000000040a0b141c22282f353a41464d535960636c71797f858d92989fa4acb0b8bcc3cbd1cbc5bebab2aca793877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000020e1a26313c4754606a76828f9ca7b1bcc8d4d1c6baada2978c7f72675c5145382e23170b0000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000006131f2c3945515d677683909da9b6c3d0dcdccfc2b5a99c8f8276655b5044372b1f1205000000000000000000000613202d394653606c7985929facb8c5cabeb4aaa29fa2aab4bed0c7bbafa399897c706356493d3023160900000000000000000000020e1a25303f4c5966727f8c99acb6c0ccd8d7cbc0b5ab998c7f7266594c3f31261a0e020000000000000000000000000000000000000000000000000000000000000000000000000b17222d3847535f6a7784919dacb6c0ccd8dad2cbc5c2c0c2c5cbd2dad6cbbfb4aa9c8f8276695e52463a2d20140200000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c1c1c1c1c1c1c1b4a89b8e8175685b4e4235281b0f0000000000000000000000060d161d262d333d454d555c606d727c848f949d938e81776c655b53493f382f261d140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010407070a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0e1a26313c4855626f7b8896a0aca197897c6f635649424e576673808d99a8aca096887b6e6255483b31261a0e0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a07070401000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000000000000000000000000020a11171d242930363c42474f545a61666d727a80868e939a9fa6acb1b9c3ced7d0cac4bdada093877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000915202b37434e5863707d8995a0acb8c4ced6cabeb3a99e9185796d60544a3f34281d120700000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000714202d3a4753606d7a86929facb9c5d2dfd9ccbfb3a6998c80736653493f33271b0f030000000000000000000006121f2b3844505b6676838f9ca9b6c2d0c5bcb4aeabaeb4bcc5d0c5b9ac9f92867a6d6053473a2d2014070000000000000000000000091723303d4a5663707d899aa4afbbc8d4dcd1c2b5a89c8f827569574d42372b1e120600000000000000000000000000000000000000000000000000000000000000000000000006111c2b37434e5866727f8c9aa4afbbc8d4e0dcd6d1cecdced1d6dce0d3c7baaea3988b7e7164564d42362a1e110500000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb4b4b4b4b4b4b4b4b4a89b8e8175685b4e4235281b0f000000000000000000000000040b141b2227333b434b515b626a6f7a828d928e81786c655b534941382d261d140b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915212e3a47535f6a7784919daaa99a8d807467584e47535f6a7784919daaaa9d9184776a5f53473a2e1f1409000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000000000000000000000000000000000000000000000000000060b12181e252a31373d434850545c60686d737b81878f949da0a7b1bcc6d0dbd6cebaada093877a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000000030f1b27323d4855616b7783909da8b2bdc9d5cfc5b9ada1978b7e72665c5044392e23180c01000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000a1623303d495663707c8999a3afbbc7d3e0d4c8bdb2a8968a7d7063574a3d2d22170b0000000000000000000000030f1c28333f4a546673808d99a6b3c0cfcec5bebab8babec5ced0c3b6aa9d908377675d5145392c20130600000000000000000000000714212d3a4754606d7a86939facb9c6d2ded1c5b8ab9e928578695f53473a2e211408000000000000000000000000000000000000000000000000000000000000000000000000000f1b26323c4854616e7b87939facb9c6d1dce7e2dddbdadbdde2e3dfd2c5b8ac9f92867a6d6054473b3025190e0200000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929fa8a8a8a8a8a8a8a8a8a8a89b8e8175685b4e4235281b0f00000000000000000000000000020a1117212931394045515860686d78808981786c665b534941382f261b140b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e586673808d99a8ab9e9184786a5f544855626e7b8895a0aca8998d807366584e43372b1f0e03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000000000000000000000000001070c13191f262b32383e424a51565d60696e747c82899095a0aab4bfcad6d3c6baada093877a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000000000a15202c38444f5964717e8a96a0acb9c4ced5c9beb3a99e9184786d60554b4034281e1308000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000030f1b27333f495366727f8c99abb5c0cbd7ded2c5b9aca096877a6d6154473a2e2114060000000000000000000000000b17222d3e4a5764717d8a97a9b2bec9d5d0cac6c5c6cad0d7cdc0b4a79a8d817467554b4035291d110400000000000000000000000713202c3945525d687784919daab7c4d0ddd2c6b9ada197887b6e6255483b2f221508000000000000000000000000000000000000000000000000000000000000000000000000000a15212d3a46535e697683909cabb4bfcbd7d6d6d6d6d6d6d6d6d6d6cabeb3a99b8e8175675d514539291f14090000000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7986929b9b9b9b9b9b9b9b9b9b9b9b9b8e8175685b4e4235281b0f000000000000000000000000000000060f171f272f343f464e565e666d737c786d665b544a41382f261d140a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1a26313c4955626f7c8896a1aca196887c6f62554d5766727f8c99a8aca196887c6f6255493c31261a0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000000000000000000000000000000000002080d151a21272c303940444c52575e616a6f767d839098a2aebac6d3d3c6baada093877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000004101c27333d4653606d7884919ea8b2bdc9d5cfc4b9aca0968b7e71675c51453a2f24190d020000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000005121f2b3744505b6575828f9ca8b5c2d1dcddd1c4b7aa9e918477685e5246392d2013070000000000000000000000000615212e3b4854616e7b8797a1adb9c6d2dbd6d3d2d3d6dbd5c9beb3a9978b7e7164584b3e2f24180d01000000000000000000000004111d2935414c566875818e9ba8b4c1d1dcd6cabeb3a9978b7e7164584b3e2f24190d0100000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727e8b99a3aebac7c9c9c9c9c9c9c9c9c9c9c9c6b9ada2978a7d7064554c413529170d020000000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c79868e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8175685b4e4235281b0f00000000000000000000000000000000050d151d2329343d444c545c606b706d665c544a42382f261d140b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15222e3b4754606a7884919eaba8998c80736657525e697683909da9ab9e9184786a5f54473b2a20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000000000000000000000000000000001070d141a20262b30383f444b51575e616a6f767d85929facb8c5d2d3c6baada093877a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000b161f2b3844505c66727f8b96a1acb9c3cdd5c9bdb2a89e9184796d60554c4135291e14080000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000613202d394653606c7985929eabb8c5d1d6d6cec1b4a89b8e817568564c41362a1d11050000000000000000000000000714202d3a46525e697885919eabb8c4d1d6d6d6d6d6d6d6d2c6b9ada197887b6e6155483b2e221507000000000000000000000000010d19242f3f4c5865727f8b98abb5bfcbd7dacfc0b4a79a8d817467554c4135291d1104000000000000000000000000000000000000000000000000000000000000000000000000020e1a25313b4754616d7a86929facb9bdbdbdbdbdbdbdbdbdbdbdbdbdb8ab9e9285796d6053463a2f24190d0100000000000000000000000000000000000000000000000000000000000000000000000e1b2835414e5b6874818181818181818181818181818181817f7265584b3f3225180c0000000000000000000000000000000000030b1218222b323a424a50596063605c544a42382f261d140b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e586773808d9aa9aa9d908477695f54616e7b87939faca99a8d807367584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000000000000000000000000000000000000000000000000000000000060c13181f252a32373e424a50555d60696e747c828a9298a2aebac6d3d3c6baada093877a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54606d7984919ea7b1bcc8d4cec4b9aca1968b7f72675d51453b3025190b0200000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000815222f3b4855626e7b8897a2adb9c6c9c9c9cbbfb4aa988b7f7265584c3f3025190d0100000000000000000000000005121e2a36424d576875828f9ba8b5c2d2c9c9c9c9c9c9c9c9c5b8ab9e928578695f53463a2d211407000000000000000000000000000816232f3c4956626f7c8999a3aebbc7c9c9c9c3b7aa9d908477675d5145392c201306000000000000000000000000000000000000000000000000000000000000000000000000000914202d3946525d6875828f9ba9b3b0b0b0b0b0b0b0b0b0b0b0b0b0b2a89a8d8174665c514438281e13080000000000000000000000000000000000000000000000000000000000000000000000000e1a2734404d59656f74757575757575757575757575757575726d62564a3d3124180b00000000000000000000000000000000000001071019202930383f444f545653504a42382f261d140b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323c4956636f7c8997a1aca095887b6e615665727f8b9aa4ada196897c6f6356493c32261b0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000000000000000000000000000000030a11171d242930363c43474f545c60676d737b81878f949fa2aab4bfcad6dbc6baada093877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000000000b17232e3845515c66717e8a95a0acb8c2d0d5c9bdb2a89e92857a6d60564c41362a1d140a00000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000b1825323e4b5865717e8b98a9b3bebdbdbdbdbdbaaea398897c6f6256493c2f23160800000000000000000000000000020e1a25303f4c5966727f8c99acb6c0bdbdbdbdbdbdbdbdbdbdb5a89b8f827568574d42372b1e1205000000000000000000000000000713202d3a4653606d7986929facb9bdbdbdbdbdb9ac9f93867a6d6054473a2d2114060000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5664717d8a97a2a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a196897c6f63544a403428160c010000000000000000000000000000000000000000000000000000000000000000000000000c1824303c48535d656868686868686868686868686868686865625b51463a2e2215090000000000000000000000000000000000000000070e171e262e343d44484946443f3830261d140b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a13202d394653606c7884919eaba7998c7f72665e6876838f9cacab9e9184786c605346392d20130a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000000000000000000000040a0c151c23282f353b42464e545961666d727a80868e939a9fa6aeb4bcc6d0d7cfcabaada093877a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000006111c2834404b54606c7883909da6b0bec7d2cec4b9ada1978c8073685e52463d2f261c1106000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130005111d2a36414c566874818e9ba7b0b0b0b0b0b0b0b0ac9f9286796d6053463a2d2013070000000000000000000000000000091623303d495663707c899aa4afb0b0b0b0b0b0b0b0b0b0b0b5ab998c7f7266594c3f31261a0e020000000000000000000000000006131f2c3845515c677783909daab0b0b0b0b0b0b0afa499897d7063564a3d2d22170b00000000000000000000000000000000000000000000000000000000000000000000000000010d1924303a4753606d79859296969696969696969696969696969696969184786c605346392e231806000000000000000000000000000000000000000000000000000000000000000000000000000814202c37414b53595b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b585651493f34291d1206000000000000000000000000000000000000000000050c151c232832383b3d3a38342e261e140b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6574818d9aa9a99d90837669616d7a86929faca99a8d8074655b5044372b1f12050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000000000000000000000003090e151b1e262e343a41454d52585f626b70787e858d92989fa4acb0babfc6ced1cbc5beb9b2a093877a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000000000000000c18232e3944505b66707d8a949facb6c0ccd6cabeb3a99f92867a6e61584e42382d22170b020000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000713202d3946525e687784919da3a3a3a3a3a3a3a3a3a39d908376665c5145382c1f130600000000000000000000000000000714212d3a4754606d7a86939fa3a3a3a3a3a3a3a3a3a3a3a3a3a399897c706356493d30231609000000000000000000000000000004101c2834404b556774818d9aa3a3a3a3a3a3a3a3a3ab998c7f736653493f33271b0f030000000000000000000000000000000000000000000000000000000000000000000000000008131f2c3845515c6774818a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8073655b5044372b1f120700000000000000000000000000000000000000000000000000000000000000000000000000040f1a252f3941484d4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4b4a463f372d23180d0100000000000000000000000000000000000000000000030a111721272c2f302d2b28231c140c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495363707d8997a1ac9f93877b6e64717e8b99a3ada197897d706353493f33271b0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000000000000001070d141a20262b30383f444b51575e616a6f767d848b92979fa2aaafb6bec2cad0cfc6bfbab3ada8a093877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000000000007121d28333f4a54616b76828f9aa4afbbc5d0cfc5baaea2988e81746a60544a3f33281e14080000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000714212e3a4754616d7a87969696969696969696969696968d807367544b4034281c100400000000000000000000000000000613202c3945515d6777849196969696969696969696969696969692867a6d6053473a2d2014070000000000000000000000000000000c18232e3e4b5864717e8b9696969696969696969696968f8276655b5044372b1f12050000000000000000000000000000000000000000000000000000000000000000000000000004101c2934404b55616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7a6d6153493f33271b0f03000000000000000000000000000000000000000000000000000000000000000000000000000009131d272f373c40414242424242424242424242424242423f3d3a342d251b110600000000000000000000000000000000000000000000000000060c161b202223201f1c17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3a4653606d7985929eaba49a8b7e726775828f9babab9e9285796d6053463a2d22170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000000000000000000000000000000000000000060c13181f252a32373e424a50555d60696e747c828a91959ea1a9aeb4bbc0c7d0cdc7c1bdb4aea9a29e9691877a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424f59626f7c87939fa9b3becad6cabfb4aa9f93877c6f665b50443b3025190d0400000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000a1724303d4a5763707d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a7e7164574a3e2e23180c00000000000000000000000000000004111d2935414c556874818a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8377675d5145392c1f13060000000000000000000000000000000715222f3b4855626e7c888a8a8a8a8a8a8a8a8a8a8a8a8a85796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000c18232f3946525e696e707070707070707070707070707070707070706d685e5241382d22170b000000000000000000000000000000000000000000000000000000000000000000000000000000010b151d252c30343535353535353535353535353535353532312e29231b1309000000000000000000000000000000000000000000000000000000040b101316161312100b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c6674818e9aaaac9c8f82766d7a86929facaa9a8e8174665c5044382b1b1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000000000000030a11171d242930363c43474f545c60676d737b81878f949da0a8adb3babfc6cccec9c2bcb7afaba39f97928b847e71685d5245392c2013060000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3e4754606a74818e97a2adbac3d0d0c6bbafa4999083786c60564c41362a20160c01000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000815222e3b4855616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7a6d6054473a2d211407000000000000000000000000000000010d19242f3b4855616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f62554b4035291d10040000000000000000000000000000000613202d394653606c787d7d7d7d7d7d7d7d7d7d7d7d7d7d7d786d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000007121d2a36424d575e6163636363636363636363636363636363636363615e564c412f261b110600000000000000000000000000000000000000000000000000000000000000000000000000000000030b131a202427282828282828282828282828282828282524221d1811090100000000000000000000000000000000000000000000000000000000000407090a070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a5463707d8a98a2ac9f92867a717d8a98a3aea2988a7d7063544a3f34281c0a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000040a0c151c23282f353b42464e545961666d727a80868e939a9fa6acb1b9bec5cacfcac4bdb9b0aba59e99928d857f79716c61564c4135291d110400000000000000000000000000000000000000000000000000000000000000000000000000000a141d2b37434e58616d7a85929fa7b1bec7d2ccc0b5aba0958b7f72685e52463d32281e1308000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000714212d3a46535f696e7070707070707070707070707070706d685d5245392c201306000000000000000000000000000000000814212d3a46535f696e70707070707070707070707070707070706f6a5f5343392f24180c0000000000000000000000000000000006121f2b3844505b666c7070707070707070707070707070706d665c5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000010e1a25303b454d52545757575757575757575757575757575757575754524c443a301d140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000001090f14181a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b181815120d0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3a4653606d7985929faba3998a7e75818e9baaab9f9285796d6053463a2e23170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000002090e151b1e262e343a41454d52585f626b70787e858d92989fa4acb0b8bdc3c9cfcbc5bebab2aca69f9c938e86807a726d66615a50433a2f24190d010000000000000000000000000000000000000000000000000000000000000000000000000000020b1b27323c46525e68727f8b95a0acb6c0ccd2c7bdb1a79f92857a6e61594f443a2f24190e050000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130005121e2a36424d575f61636363636363636363636363636363605d564c4135291d11040000000000000000000000000000000005121e2b37424d575f616363636363636363636363636363636363625f584e4331271d120700000000000000000000000000000000030f1c28333f4a545b60636363636363636363636363636363605c544b4034281c100400000000000000000000000000000000000000000000000000000000000000000000000000000009141f29333b4246484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4746413a32291e0b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080c0e0e0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0c0b09060100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6675818e9baaab9b8f827985929fabaa9b8e8175665c5145382c1c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000001070d141a20262b30383f444b51575e616a6f767d848b92979fa2aaafb6bec2c8cecfc6bfbab3ada8a09e949089817b736d68605c5450483e31281e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a36414c56606d7883909aa4afbbc4cfd0c3baada2978e81746b60564c41352920170d0200000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300020e1a26313b454d535557575757575757575757575757575754524c433a2f24190d0100000000000000000000000000000000020e1a26313c454d5355575757575757575757575757575757575755534e463c321f150b0100000000000000000000000000000000000b17222d38424a505357575757575757575757575757575753514b42392e23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000030d17212930363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a3936302920170c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b5464717d8a98a2ac9f92867d8a97a2ada2988a7d7064544b4034281c0a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000000000000000000000060c13181f252a32373e424a50555d60696e747c828a91959ea1a9aeb4bbc0c7d0cdc7c1bdb4aea9a29f96918a837c756e69605d56514a423e362c1f160c0100000000000000000000000000000000000000000000000000000000000000000000000000000000040d1925303a44505c666f7d88939fa9b2bec9d5cabeb3a99e93897d70685d52453e32291f140800000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000009141f29333b4246484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4745413a31281e130800000000000000000000000000000000000009141f2a333c4246484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4947433c342a200d0300000000000000000000000000000000000006111c262f383f44464a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4645403930271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000050f171f252a2d2e303030303030303030303030303030303030302e2d2a251e170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3a4753606d7986929faca2989184919ea9ac9f9286796d6053473a2e23180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000030a11171d242930363c43474f545c60676d737b81878f949da0a8adb3babfc6cccec9c2bcb8afaba39f97928c847e766f6a615f57524c444039302c241a0d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28343f4a54606b74818e97a1adb9c1cdd0c5bcafa59e91847a6d605a50443b3025191107000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000030d18212931363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a39352f281f160c01000000000000000000000000000000000000030e18212a31373a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b37322a22180e00000000000000000000000000000000000000000a141d262d3338393d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a38342e271e150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d141a1e20212424242424242424242424242424242424242421201d19130c0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2c3945515d6775828f9babaaa0969196a0acab9b8e8275675d5145392c1d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000040a0c151c23282f353b42464e545961666d727a80868e939a9fa6acb1b9bec5cacfcac4bdb9b1aba59e99928d857f79716c626058534d45413a342e271e1a120800000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17232e38424f59606d7a84919ea5afbbc5cfcec1b9ada1968e81756c61564d41362a23190e050000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000060f181f262a2d2e3030303030303030303030303030302d2c29241e160d040000000000000000000000000000000000000000060f181f262b2d2e30303030303030303030303030303030302f2e2b26201810070000000000000000000000000000000000000000020b141c22282b2d3030303030303030303030303030302d2c28231d150c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415171717171717171717171717171717171717171413110d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b5564717e8a99a3aea8a09ea0a8aea3998a7e7164554b4035291d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1926323f4c5965727f8c98a5b2bfcbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000002090e151b1e262e343a41454d52585f626b70787e858d92989fa4acb0b8bdc3c9cfcbc5bebab2aca79f9d938e86807a726d66615a544e46423b353028231c150c0800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303d45525d68707d8a939ea9b3becad5c9bdb2a89e938a7e71685e52463f352b20170c0300000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000060d141a1e212224242424242424242424242424242421201d19130c0400000000000000000000000000000000000000000000060e141a1e2122242424242424242424242424242424242422211f1b150e0700000000000000000000000000000000000000000000020a11171c1f20242424242424242424242424242424201f1c18120b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a07070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3a4754606d7a86929facb2acaaacb2ac9f92867a6d6054473a2f24180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0a00000000000000000d192633404c5966737f8c99a6b2bfccd9d5c8bbaea295887b6f6255483c2f2215060000000000000000091623303c4956636f7c8996a2afbcc9d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000001070d141a20262b30383f444b51575e616a6f767d838b92979fa2aaafb6bec2c8cecfc6bfbbb3ada8a09e959089817b736d68605c545047433d363129241e18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e2935414c56616c75818e97a1adb9c0cccfc4baafa59e92857a6e615b51473d33291e150b00000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000003090e1214151717171717171717171717171717171413110d080100000000000000000000000000000000000000000000000003090e12141517171717171717171717171717171717171615130f0a0400000000000000000000000000000000000000000000000000060b0f12131717171717171717171717171717171313100c0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945515d6775828f9cabb5b9b7b9b5ab9c8f8275675d5145392c1d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4232261b0f03000000000000010d1a2734404d5a6773808d9aa6b3c0cdd9d6c9bdb0a3968a7d7063574a3d2d22170b00000000000000000a1724303d4a5763707d8a96a3b0bdc9d6dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000060c13181f252a32373e424a50555d60696e747c828a91959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea9a29f96918a837c756e69605d56514b423e38322a261f19130c0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c19242f3a43505a616e7a85929ea5afbac3cfccc1b9ada1978f82756d62594f453b30271d1207000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0706040100000000000000000000000000000000000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0908060300000000000000000000000000000000000000000000000000000000000306060a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5565717e8b99a3afbbc4bbafa3998b7e7164554c4135291d0b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569584e43372b1f1409000000000000010e1b2834414e5b6774818e9aa7b4c1cddad8cbbeb2a5988b7f726553493f33271b0f03000000000000000b1824313e4b5764717e8a97a4b1bdcad7dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000030a11171d242930363c43474f545c60676d737b81878f949da0a7adb3babfc6cccec9c2bcb8afaba39f97928c847e766f6b615f57524c454039302b27201a140d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313e46525e68707e8a939da8b2bdc7d1cabeb3a99e948c7f726b60574d42392e231811080000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a4754616d7a86929facb9c5b9ac9f92867a6d6154473a2f24190d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ddd0c3b7aa9d9083776a5f54473b31251a0e04000000000005111e2a36414c566976828f9ca9b5c2cfdcdacdc1b4a79a8e8174655b5044372b1f150a000000000000000c1926333f4c5966727f8c99a5b2bfccd8dacdc1b4a79a8e8174675b4e4134281b0e000000000000040a0c151c23282f353b42464e535961666d727a80868e939a9fa6acb1b9bec5cad0cac4bdb9b1aba59e99928d857f79716c636059534d45413a342e271e1b160e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a36414c56616c74818e96a0abb5c0cbcfc5bbb0a69f92877d70695e544b403428231a100700000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000813202d3946525e6876828f9cacb6c0b6ac9c8f8276685e5246392d1e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ded1c4b8aca095887c6f62574d42362a20160d03000000000713202d3946525e687885919eabb8c4d1deded1c4b8ab9e9184786c6053463c31261a1107010000000006121e2a36424d576875828e9ba8b5c1cedbd9ccc0b3a6998d8073665a4d4033271a0d0000000000070e151b1e262e343a41454d52585f626b70787e858d92989fa4acb0b8bcc3c9cfcbc5bebab2aca79f9d938e86807a726d66615a544f46423b353028231d150c0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d1925303b44505a606d79849199a3afbbc1cccdc1bbafa39992857b6e665c51453f352c22190f06000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c5665727e8b9aa4afbbafa49a8b7e7265564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e0d4c8bcb1a79a8e8174695e53463d32281f150c070506080f17212e3a4754616d7a8797a1adb9c6d2dfdfd2c6b9ada197897c6f62584e43372b2318120b060606070e18212d3a46535f697884919eabb7c4d1ded8cbbfb2a5988c7f7265594c3f3226190c0000000007101820262b30383f444b51575e616a6f767d838b92979fa2aaafb6bec2c8cecfc6bfbbb3ada8a09e959089827b746d68605c545048433d363129241e18120b030000000000000000000000000000000000000000000407090a0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b08141e29323e45515d676f7c87929fa6b0bac4cecbc0b5aba1979083786d605a50473e342b21180e050000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303b4754616e7b87939facb9ac9f93877b6e6154473b3025190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e4d9cdc3b9ac9f92867b6e61594f443a31271e181311131419212a36414c5664717d8a97a9b2bec9d5e1e1d5c9beb2a99b8e81746a5f53473f3529231d1713121313182028343f4a54616e7b8896a1acb9c5d2ded7cabeb1a4978b7e7164584b3e3125180b000000071119222a32373e424a50555d60696e747c828a91959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea9a29f96918a837c756e69615d56514b423e38322a261f19130c07000000000000000000000000000000000000000000050b1013161617171717171717171717171717171717171717171717171717171717171717171717171717202935404b55606a727f8c939ea8b2bcc6d0c7bdb3a99f958d80746c62594f463d332a20170d0500000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202d3946525e687683909ca9b6a99c908376685e5246392d1e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe0d3c7baaea3988e81746b60564c4339302924201d1f202429333b46525e6875828f9ca8b5c2cfdae6e6dacfc4b9ac9f93877c6f625b51473e342f2722201f1f202429323b44505c6673808c99a8b2bdc9d5e1d5c9bdb2a8968a7d7063574a3d3024170a0000050f19232b343c43474f545c60676d737b81878f949da0a7adb3babfc6cccec9c2bcb8afaba39f97928c847e766f6b615f57524c454039302c27211a140d0802000000000000000000000000000000000000000000070f161c2022232424242424242424242424242424242424242424242424242424242424242424242424242424242f3a434e58606c77828f96a0aab4bfcacfc5bbb1a79d928b7e716b61584e453c322920160e05000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414d5665727f8c98a7b1a7988c7f7265564d41362a1e0c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe3d7cbbfb4aa9f93877d70685d554b423b352f2d292c2d2f353c454e58616d7a86929facb9c5d2dfece7e0d4c7bbafa4998f82756d635950454039332d2d2b2c2d2f353b444d57606d7884919eabb8c4cedadfd2c5b9ada196887b6e6155483b2e22150800000b16212b353d464e535961666d727a80868e939a9fa6acb1b9bec5cad0cac4bdb9b1aba59e99928d857f79716c636059534d46413a342e271e1b160e09030000000000000000000000000000000000000000000007111921272c2f3031313131313131313131313131313131313131313131313131313131313131313131313131313131313d44505b656d7a849198a2aebabfc9cdc2b9aea49f92877d706a60574d443b322820170e050000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1925303b4854616e7b8795a0ab9f95877b6e6154483b3025190e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe7dcd1c6bbafa49991847a6d675c544d45403a3935383a3b41454e57606a74808d99a3afbbc7d3e0e3dcd5d1ccc0b5ab9e948c7f726b615a514b443f3b3a38383a3b40454d565f69727f8c96a1adb9c5d6e0ded1c4b7ab9e918478695f53463a2d2114070004101c27323d474f585f626b70787e858d92989fa4acb0b8bcc3c9cfcbc5bebab2aca79f9d938f86807a726d67615a544f46423b353028231d150c0a040000000000000000000000000000000000000000000000050f19232b33383b3d3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3f49535d686f7c86929fa4aeb7c1cbcbc0bbafa39992867c6f695f564d443a322920170f0600000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212d3a46535e697783909daa9d908377695e53463a2d1f1408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfebe2d7ccc0b5aba1968f82796d665f57514b4746414547484c52585f696f7c88939fabb5c0cbd7e3dad2cac5c1c0bdb0a69f93877d716c605c5550494746444546484b51575f686e7b86929fa9b2bdc9d5e8dacec1b4a79b8e817468574d42372b1e1205000713202c38444f59606a6f767d838b92979fa2aaafb6bec2c8cecfc6bfbbb3ada8a19e959089827b746d68605c555048433d363129241e18120b03000000000000000000000000000000000000000000000000000b16212b353d4448494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4c565f6a717e8b929ca5afb9c2cfcbc0b5aba29892857b6e685e564c443b322921180f06000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5766727f8c99a7998c7f7266574d42362a1e0d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ebe2d9d2ccc7bdb2a89f948f82786e69605d5554524c515354565d606a6e7b84919aa4afbdc7d1dcdfd2c8c0b9b5b3b8baafa49992877e736d67605b53545350515354555d60696e7a839098a2aebbc4cfdadfd3c7bbb0a6978b7e7164584b3e31261a0e02000916222f3b4854606b707c828a91959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea9a29f96918a837c756e69615e56514b433e38322a261f19130c07000000000000000000000000000000000000000000000000000004101c27333d474f54565757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575758616c73808d939ea6b0bdc6d1c7bdb4aaa19791847a6e685e564c443b332921180c030000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a25313b4855626e7b8895a095887b6e6255483b31251a0e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e4d9d0c7c0bbb9bbb0a69e948f837b726d6763615d565c606164686d737c849196a1acb6c0cfd9e1d7cdc0b6aea8a6abaeb3aba399928b8079716c656361605c5c606164676d737b849095a0aab4bfcdd6e0dcd0c3b7ab9f94877b6e6154483b2e21150900000a1623303d495663707d888f949da0a7adb3babfc6cccec9c2bcb8afaba39f97928c847e786f6b615f57524c454039302c27211a140d08020000000000000000000000000000000000000000000000000000000713202c38444f596063646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646c77818e949fabb4bfcbcfc6bcb3a9a19690837a6d685e564d453b33291e150b0000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000914212e3a47535f697784919d908477695f53473a2e1f140900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ddd2c7beb6afacafb6b0a69e9590857f7a74706d686b676d6e71757a80869196a1a8b2bec7d2e1dbcfc5bbaea49c999fa2aab3aba39f928d847e7874706e6d66676d6e71747a80869196a0a7b1bcc6d0dfdfd4c8bcb1a79c8f8276695e53463a2d21140700000a1724313d4a5764707d8a9a9fa6acb1b9bec5cad0cac4bdb9b1aba59e99928d857f79716c656059534d46413a342e271e1b160e090300000000000000000000000000000000000000000000000000000000000916222f3b4854606b7071717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717179839099a3aebac7d3cec5bbb2a8a09590837a6e685e574d453b30271d120700000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121e2b37424d576673808c998c807366574d42372b1e120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8ccc0b6aca49fa4acb4b0a79f98928c85817d7a7978797a7b7e81858d9298a1a8b2bac4d0d9e0d6cabeb3a99c928d9298a2aeb4aea49c96918a84817d7a797878797b7e81858c9298a0a8b1b9c3ced8e1d6cdc4b8aba095897d7063574d42362a1e120500000a1724313d4a5764707d8a97acb0b8bcc3c9cfcbc5bebab2aca79f9d938f86807a726d67605b534f46423c353028231d150c0a04000000000000000000000000000000000000000000000000000000000000000a1623303d495663707d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7f86929facb9c5d2d7cdc4bab1a7a09590837a6e695f574d42392e23180c00000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313c4855626f7c8896887c6f6255483c31261a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c8bbafa49a939aa2aab4b1aaa29f97928d8a8786858586878a8e92979fa3aab2bac4ccd6e1d8cec6b9ada2978d8086929fa9b2baaea8a19e96918d898786858586878a8e92979fa2aab2bac3cbd5e0d9cfc4bbb0a69d9083776b6054453b31251a0e0200000a1724313d4a5764707d8a97a3b0bdc8cecfc7c0bbb3ada8a19e959089827b746d68605c555049413d373129251e18120b03000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a77838a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8b9299a3aebac7d3dfd6ccc3b9b1a7a09590847b6e695f544b4034281c1004000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915212e3b47535f6a77849184776a5f53473a2a2015090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d2c6b9ac9f93869298a2aebab3aea9a19e9a96999291929894979b9fa2a9aeb4bcc4ccd6ded9cfc6bcb1a79e92857a7f8c96a1abb5bab2aca9a19e9a96999391929794979b9ea2a9aeb4bcc4ccd5ddd8d1c7bdb3a99f948a7e7164594f4433291f14090000000a1724313d4a5764707d8a97a3b0bdcdc8c1bdb5afa9a29f96918a837c756e69615e56514b443f382f2b261f19130c070000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a778390979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797989fa3abb4bfcbd7e3ded5cbc3b9b1a7a09691847b6e665c5145382c1f1306000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e586773808d807366584e43372b180e030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3cec1b4a79b8e8186929fa5afb9bab3adaba7aba39f9e9fa2aaa4a8abadb3babfc6cfd6dfd7d0c7bdb4aaa0958c7f7379849199a3afbbbdb9b2adaba7aba49f9e9fa2a9a4a7abadb3babfc6ced5ded7cfc6bfb5aba1978f82786c6053463d3320170d030000000a1724313d4a5764707d8a97a3b0bdc3bcb8afaba39f97928c847e786f6b615f57524c454039332d261d1a140d0802000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909da4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a5acaeb4bdc6d1dce7e7ddd5cbc3b9b1a8a0969184796d6053463a2d201307000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26323c4956626f7c897c6f6256493c31261b09000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ccbfb2a6998c7f7f8c939ea7b0b8beb9b8b4b4aeacabacaeb4b1b4b8babec5cbd1d8d9d5cdc5bdb5aba3989083796d6f7d87929fa3afb6bebdb9b8b4b5afacababadb3b1b4b8b9bec5cad0d8d9d4cdc5bdb5aea39991857a6e665b5044382b1f1205000000000a1724313d4a5764707d8a97a3b0bdb9b1aba59e99928d857f79716c656059534d46413a342e27221b140b09030000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909daab0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b1b9babfc6cfd8e2edefe7ddd5cbc3bab2a8a196867a6d6053473a2d201407000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a13202d394653606c7883786c605346392d20130a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6ceccbfb2a6998c7f79818f959fa6afb9bec5c0bfbab9b8b8babfbdc1c5c6cacfd7d7d4cec9c2bbb3aba39992867c6f666b727f8c919fa4acb2bbc0c4c0c0bbb9b8b8babebdc1c5c6cacfd6d7d3cec8c2bbb3aba39f92877d70685e544a3f33281c0f03000000000a1724313d4a5764707d8a97a3b0b2aca79f9d938f87807a726d67605b534f47423c353028231d17110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909daab6bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbec5c7cbd1d8e1eaf4f0efe7ddd5ccc3bab2a893867a6d6053473a2d201407000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b656e7b6e655b5044372b1f1205000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c1c1c1bfb2a6998c7f73798390949ea5adb3babfc5c7c5c4c5c6cad0ced2d3d3d2d1cbc7c4bdb9b1a9a29992877e716a5f626d737f8b939aa1a8afb5bbc0c7c7c6c4c5c6cad0ced1d2d3d2d1cbc7c3bcb8b0a9a299928b7f726b60564c42382d22170b00000000000a1724313d4a5764707d8a97a3aea8a19e959089827b746d68605c555049413d373129251e18120b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909daab6c3cacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacbd2d3d7dce2eae3e3e3e3e3e7ded5ccb9ada093867a6d6053473a2d201407000815212e3b4854616e7b8794a1aebac7d4d6d6cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4d6d2c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f49535f6a6e6a5f53493f33271b0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb4b4b4b4b4b2a6998c7f736d7a828e939ea1a9aeb4b8bcc1c3c5c7cbd1c9d1cbc7c5c3c0bbb9b2aca79f9792877e716c61585b636d737f8891969fa4abafb5b8bcc1c3c5c7cbd0c9d0cac6c5c4bfbab9b1aca69f9792877e726d63594f443b2f261c110600000000000a1724313d4a5764707d8a97aaa29f96918a837d756e69615e56514b443f382f2b261f19130c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909daab6c3d0d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d3c6b9ada093867a6d6053473a2d201407000815212e3b4854616e7b8794a1aebac7c9c9c9c9c0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7c9c9c9c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38414e585f625f584e41382d22170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0a8a8a8a8a8a8a8a6998c7f73686d79818a92979fa2aaacb1b4b7b9bbc0bcbcbcbfbab9b6b5afaca8a09e9590857e716c615a50515b636d727d848e93999fa3abacb1b4b6b8babfbbbcbcbebab8b7b4aeaca7a09d9490857d716c635b51473d32291d140a0000000000000a1724313d4a5764707d8a979f98928c847e78706b625f57524c454039332d261d1a150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909daab6c3c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c6b9ada093867a6d6053473a2d201407000815212e3b4854616e7b8794a1aebabdbdbdbdbdbdb3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebabdbdbdbdbdb9ac9f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3c464e5355534e463c2f261b110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939b9b9b9b9b9b9b9b9b998c7f7366676d757e858d92989da0a7a8aaacafb5afafafb4aeacaaaba39f9c96918b837b706c615a504849515b626b707981878e92999da0a7a7a9acaeb4afafafb3adabaaaba39f9c95908a837c706b625a51493f352b20170b020000000000000a1724313d4a5764707d8a99928d857f79716c656059534d46413a342f27221b140b09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909daab6bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdb9ada093867a6d6053473a2d201407000815212e3b4854616e7b8794a1aeb0b0b0b0b0b0b0b0a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aeb0b0b0b0b0b0b0ac9f9286796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2a343c43474847433c342a1d140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d79868e8e8e8e8e8e8e8e8e8e8e8c7f73665c606c717a80858c9095989b9d9fa3aba2a3a2aaa39f9d9a99928f8b847e786e69615a50483e4049515960676d747b81868c9095989a9d9fa3aaa2a3a2a9a29f9d9a99928f8b837d766e6a605950483f372d23190e05000000000000000a1724313d4a5764707d8a8f87807a726d67605b534f47423c363029231d17110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909daab0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0ada093867a6d6053473a2d201407000815212e3b4854616e7b8794a1a3a3a3a3a3a3a3a3a3a39a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1a3a3a3a3a3a3a3a3a39f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b18222a31373a3b3a37312a22180b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c78818181818181818181818181817e7064575a61686d737a7f83888c8e90929995959695959892908e8b86827e79716d665e5750483e36373f474f555d60696e747b7f83888b8e90929894959695949792918e8a86827e78706b625f584f473f362d251c110700000000000000000a1724313d4a5764707d89827b746d68605c555049413d37312a251e18120b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909da3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a093867a6d6053473a2d201407000815212e3b4854616e7b87949696969696969696969696968d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b879496969696969696969696969286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1820262b2e2f2e2b2620180f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b666c75757575757575757575757575706c615550565e61686d72777b7f818486878889898988878683817e7a76716d66605c544d453e362c2d353d434b51575f62696e73777b7e818385878888898987868584817d7a76716c666159534e463d352d241c130a0000000000000000000916222f3c4955626f7c7c756e69615e56514b443f382f2b261f19130c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969693867a6d6053473a2d201407000815212e3b4854616e7b878a8a8a8a8a8a8a8a8a8a8a8a8a8a8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b878a8a8a8a8a8a8a8a8a8a8a8a8a87796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e151a1f2122211f1a150e060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a545b606868686868686868686868686864615a50444c52565d6066696e727577797a7b7c7c7c7b7a797774716d6864605c54504a423b332c23232b313a41454d53575e6166696e727476797a7b7c7c7c7b7a787774706d6764605b544f47433c332b231b120a010000000000000000000815212e3b47535f6a6f706b625f57524c454039332d261d1a150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a77838a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a867a6d6053473a2d201407000714202d3a4753606d797d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6e6255483b2f22150800000000000000000000000000000000000000000000000000000000000714202d3a4753606d797d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7063574a3d3024170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f12141514120f0a03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424a50535b5b5b5b5b5b5b5b5b5b5b5b5b575550483e41464c5254575f616568666d6e6e6f706f6e6e6d666765615e5653514a443f383029211a191f282f353c42474d5354575f616567666d6d6e6f706f6e6d676a6764605d5553504a423e37312a21191109000000000000000000000006131f2b37434e585f62636059534d46413a342f27221b140b09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d786d6053463a2d2013070006131f2c3845515d676d7070707070707070707070707070706e6a5f53473a2e211408000000000000000000000000000000000000000000000000000000000006131f2c3845515d676d7070707070707070707070707070706b6155483c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000206080808060200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f383f44464e4e4e4e4e4e4e4e4e4e4e4e4e4a49443e36363a4145474d535559545c6061626263626261605c545854524c46444039342e261e170f0d161d242931373b4246484d535558545c60616162636261605c555b5754514b46443f382f2b2620180f07000000000000000000000000030f1b26323c464e535556544f47423c363029231d17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3b4854606b6f707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706d665c5044382b1f12060004101d2935404b555d60636363636363636363636363636363625f584e43372b1f1206000000000000000000000000000000000000000000000000000000000004101d2935404b555d6063636363636363636363636363636361594f44382c20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262d333839424242424242424242424242423d3c39332c2a3035393c4246484c4b51535455565656555453504a4b4746413a38342e28231c140c05040c13181f262b31363a3c4246484b4a505354555556565453514b4e4a4745413a38332d261d1a150e0600000000000000000000000000000a15202a343c4347494948443d37312a251e18120b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2c38434f59606363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363605c544a3f34281c100300000c18242f39434b515357575757575757575757575757575755534e463c31261a0f020000000000000000000000000000000000000000000000000000000000000c18242f39434b5153575757575757575757575757575757554f473e33281c10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141c22282b2d3535353535353535353535353531302d28221e24292c31373a3b3f4045464748494949484746443f3e3a3936302c28231c17110a02000001070d151a1f252a2d31373a3b3f3f4446474849494948474540413d3a39352f2b28221c140b0903000000000000000000000000000000040e18222a32373b3c3d3b38322b262019130c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323d474f54565757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575753504a42382e23170b00000007121d2731394045474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4847433c332a2015090000000000000000000000000000000000000000000000000000000000000007121d2731394045474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a48443e352c21160b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f20282828282828282828282828282423201c1713191d20262b2d2e2e34383a3b3b3c3d3c3b3b3a38342e2e2d2a251f1c18120b0600000000000003090e141a1e21262b2d2e2e34383a3a3b3c3d3c3b3a38342f312d2c29241f1c17110a0200000000000000000000000000000000000007101820262b2e2f302f2c27211a150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a16212b353d4348494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a46443f3830261c1106000000010b151f272f35383a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a37312a21180e0300000000000000000000000000000000000000000000000000000000000000010b151f272f35383a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332c231a1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131b1b1b1b1b1b1b1b1b1b1b1b1b171614100b080d11141a1e212223282c2d2e2f2f302f2f2e2d2c282321201e1913100c070000000000000000000003090e12141a1e212223282b2d2e2e2f302f2e2d2c29232421201d18130f0b06000000000000000000000000000000000000000000070e151b1f21222322201b160e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f19232b32383b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a38342e261e140a0000000000030d151d24292c2d3030303030303030303030303030302f2e2b2620180f06000000000000000000000000000000000000000000000000000000000000000000030d151d24292c2d3030303030303030303030303030302f2c28211a11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060f0f0f0f0f0f0f0f0f0f0f0f0f0a0a080400000104090e121415181c1f2021222323232221201f1c171413110d080400000000000000000000000000000205090e121415171c1f20212222232321201f1c18171413110d0703000000000000000000000000000000000000000000000000040a0f131516161613100b0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101921272c2f30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302d2b28231c140c02000000000000030b12181d1f2024242424242424242424242424242422211f1a150e060000000000000000000000000000000000000000000000000000000000000000000000030b12181d1f2024242424242424242424242424242423201c1610080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002020202020202020202020202000000000000000000020507070c101313141516161615141312100c0607050100000000000000000000000000000000000000020507060b1012131415161616151413100c070706040100000000000000000000000000000000000000000000000000000000030608090a090704000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161b1f222324242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424201f1c17110a02000000000000000001070c1013141717171717171717171717171717171514120f09030000000000000000000000000000000000000000000000000000000000000000000000000001070c1013141717171717171717171717171717171614100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070808090a09080807060300000000000000000000000000000000000000000000000000000000000306070708090a090807060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f131516171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171312100b06000000000000000000000000000406070a0a0a0a0a0a0a0a0a0a0a0a0a0a0a080806020000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09070400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030709090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a07060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + _typelessdata: 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090f080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020304000004060706050300000404040201000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060608090a0a0b0c0c0b0a0a09080707040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070809090a0b0c0c0b0b0a0908060603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080c0e0f13131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131312100d080300000000000000000000000000000000000000000000000000000000000000000000000000050a0e101113131313131313131313131313131313120f0a0500000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a13131313131313131313131313131313131313131313131313131313131313131313131313121111100f0d0c0a080605030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a1313131313131313131313131313130b0a080500000000000000000000000000000000000000000000000000000000000000000000000000000000060b0e1111131313131313131313131313131312120f0c0802000000000000000000000004080a0a13131313131313131313131313131309080603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003080d101213131313131313131313131313131311100e0b0600000000000000000000000005080a0b1313131313131313131313131313130e0d0b070300000000000000000000000005090d0f1013131313131313131313131313130a09070300000000000000000000000002060a0c0c131313131313131313131313131310100d0a0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f1215151c1514120e0902000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003050608090b0d0e1011070c10121313120f0b061111100f0e0c0b0a080706040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708060b0f12131516161718181818171616151413110d080907060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708070d10131415151617181818181717161513120f0b060706040100000000000000000000000000000000000000000000000000000000000000000000000000000002090f14181b1b20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020201f1f1d19140e0700000000000000000000000000000000000000000000000000000000000000000000030b11161a1c1d202020202020202020202020202020201e1b161009010000000000000000000000000000000000000000000000000000000000000000000000050b101416172020202020202020202020202020202020202020202020202020202020202020202020201f1f1e1e1d1c1a18161513120f0b06060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10141617202020202020202020202020202020171714110c05000000000000000000000000000000000000000000000000000000000000000000000000040b12171b1d1e20202020202020202020202020201f1e1c18130d060000000000000000050b101416172020202020202020202020202020201615130f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e14191d1f1f20202020202020202020202020201e1d1a16110b040000000000000000060c111517182020202020202020202020202020201a1917130e08010000000000000000020a1015191c1c2020202020202020202020202020161613100b04000000000000000000070d1216181920202020202020202020202020201d1c1a16110a0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e151a1f21222821201e1a140d050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406060b0f12131516181a1b1d1e1e181c1f20201f1b171e1e1e1d1c1b191816151413110d0708070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406090e11141418171c1f2021232324242525252423222221201d1918161313100c07050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306090e12141517181d2020212223242425252524242321201f1c17161413100d0705020000000000000000000000000000000000000000000000000000000000000000000000030b131a202427282d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2b29251f1911080000000000000000000000000000000000000000000000000000000000000000050d151c2226292a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a010000000000000000000000000000000000000000000000000000000000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2b2a2a2927252321201f1b171312100c06040000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2423211d17100800000000000000000000000000000000000000000000000000000000000000000000060e161d23272a2b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2b28241e1810070000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d23221f1b160f070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000811191f25292b2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2a2927221c160e050000000000000910171d2124242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2726231f19120b02000000000000040c141b212628292d2d2d2d2d2d2d2d2d2d2d2d2d2d2322201b160f07000000000000010a11181e2225262d2d2d2d2d2d2d2d2d2d2d2d2d2d2a2926221c150d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008101820262b2e2f352e2d2a251f170f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000206080d111314171b1f2021232526282a2a2b23282c2d2d2b27222b2b2a2a29272625232220201d18171414110e0907050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003080d111314191e20212422282b2d2e2f30313132323131302f2e2d2c29242522201f1c1814110e090502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131a1e20212424292c2d2e2f3030313232313130302e2d2b28222320201d1814110e09030000000000000000000000000000000000000000000000000000000000000000020b151d252c3134353939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393835312a231a1107000000000000000000000000000000000000000000000000000000000000030d171f272d3236373939393939393939393939393939393937332c251c1309000000000000000000000000000000000000000000000000000000000000000008111a22282d30313939393939393939393939393939393939393939393939393939393939393939393939393938383736353432302e2d2b2722201f1c1713100c0703000000000000000000000000000000000000000000000000000000000000000000000000000008111a22282d303139393939393939393939393939393931302d28221a12080000000000000000000000000000000000000000000000000000000000000000040e1820282e33363839393939393939393939393939393937343029221910060000000008111a22282d30313939393939393939393939393939392f2e2b27201910070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007111a232a3135383939393939393939393939393939393736332e2720170e040000000009121a22282d30313939393939393939393939393939393433302b241d140b0100000000020c161e262d3235363939393939393939393939393939302f2c272119110700000000000a131c232a2e323339393939393939393939393939393735322d271f160d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000091119222a31373a3c423b3a3630292117110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060a0f1214191d202122272b2d2e303133353637382e34383a3937332d3837373735343331302f2d2c29242421201e1a1514120e09060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b1013191d2021252a2d2e312d3338393b3c3d3d3e3f3f3e3d3d3c3b3a393530312f2d2c2823201e1914120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f11171c1f20252a2d2e302f35393a3b3c3c3d3e3f3f3e3e3d3c3b3938332d302d2c2924201e1a14100c0600000000000000000000000000000000000000000000000000000000000009131d272f373d404246464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464645413c352c23190e0300000000000000000000000000000000000000000000000000000000000b151f2931383e424446464646464646464646464646464646433e372e251b100500000000000000000000000000000000000000000000000000000000000005101a232c33393c3d464646464646464646464646464646464646464646464646464646464646464646464646464544444342403f3d3b3937332d2d2c28231f1d18120f0b06000000000000000000000000000000000000000000000000000000000000000000000005101a232c33393c3d4646464646464646464646464646463e3d39332c241a1005000000000000000000000000000000000000000000000000000000000000000b16202a32393f434446464646464646464646464646464544403b342b22180d02000005101a232c33393c3d4646464646464646464646464646463c3b37322b22190f040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e19232c353c414546464646464646464646464646464644433f39322920160b00000006101a242c34393d3e464646464646464646464646464646413f3c362e261d1208000000000a141e2830383e414346464646464646464646464646463d3b38322b23190f0400000007111c252e353a3e3f464646464646464646464646464643423e3831281f150a000000000000000000000000000000000000000000000000000000000000000000000000000000000006121b232b343c4347484f4846423b3328221c140b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f12151a1f2124292c2d2d3337393b3c3e40414344444540444646443f454544444342413f3e3d3b3a39352f302e2d2a2521211e1a15130f0a05020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d11171c1f24292c2d30363a3b3e403f44464849494a4b4b4b4b4a494948474541413e3c3a38342e2d2a25211e1a140f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10161b1c22282b2d30363a3b3d404045474848494a4b4b4b4b4a4a494846443f403d3a39352f2d2a251f1c17110c06000000000000000000000000000000000000000000000000000000040f1a252f3941484d4e535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535352514d463e352a1f14080000000000000000000000000000000000000000000000000000000005111c27313b434a4f50535353535353535353535353535353534f4940372c21160a0000000000000000000000000000000000000000000000000000000000000b17222c353e44494a53535353535353535353535353535353535353535353535353535353535353535353535352525151504f4d4b494846443f3c3a38342e2c29241f1b17110b060000000000000000000000000000000000000000000000000000000000000000000b17222c353e44494a5353535353535353535353535353534a49453e362c22170c00000000000000000000000000000000000000000000000000000000000006121d28323c444b4f51535353535353535353535353535352504c463d34291e130800000b17222c353e44494a5353535353535353535353535353534947433d342b20160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141f2a353e464d51525353535353535353535353535353514f4a433b32271c110600000c17222c363e45494b5353535353535353535353535353534d4c4740382e24190e03000005101b26303a42494e4f53535353535353535353535353534948443d352b21160b0000020d18232e373f464b4c5353535353535353535353535353504e4a433a31271c11050000000000000000000000000000000000000000000000000000000000000000000000000000020a1117242d353d464e53555b54524d453d332d261d170e060000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f151a1f21262b2e2f35393a3d3f444648494b4d4e505151524a515353504952515151504f4e4c4b4948474540403d3b3a36302e2d2a25221f1b15110e080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d13191c23282b2f35393a3e4246474b4d4a505354565657575858585756555554524c4d4b494645403b3a36302d2a261f1b150f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f161c21272c2d3338393c4246484a4c4b515354555657575858585757565453504a4d494745403b3a36302c28231c17110a03000000000000000000000000000000000000000000000000000814202c37414b53595b60606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605f5d5850463c3125190d000000000000000000000000000000000000000000000000000000000a16222d38434d555b5d6060606060606060606060606060605f5a52493e33271b0f020000000000000000000000000000000000000000000000000000000004101c28333e475055576060606060606060606060606060606060606060606060606060606060606060606060605f5f5e5d5d5c5a5856545350494946443f3a38352f2b27221b17110b0600000000000000000000000000000000000000000000000000000000000004101c28333e47505557606060606060606060606060606060575550483e33281d110500000000000000000000000000000000000000000000000000000000000b17232e39444e565c5e60606060606060606060606060605f5d574f463b3024180c0004101c28333e4750555760606060606060606060606060606056544e463d32271b0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925313c4650585d5f60606060606060606060606060605d5b554d43392e22160b0005111d28343e485055576060606060606060606060606060605a58524a40362b1f130700000915212d38424c545a5c606060606060606060606060606056544f473d32271b10030006121e2a353f4951575960606060606060606060606060605d5b554c43382d22160a00000000000000000000000000000000000000000000000000000000000000000000000000020b141b2227363f474f585f6268615e574f443f382f292017110a0200000000000000000000000000000000000000000000000000000000000000000000000001070d11171c1f262b2e31373a3b4145474a495053545658595b5d5d5e5e5f5c60605b5f5e5e5e5d5d5c5a5958565553514b4d4a4746423f3b3a36312e2b26201e19140f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c13191e25292e34383a4145474b4d5254575a545b60616263646465656464636261605d565a585553514b4746423b3a36312b26201b160e09030000000000000000000000000000000000000000000000000000000000000000000000000002090e161b21272c3238383f4446494d52545759555d60616263636465656464636361605b54595653514b4746423b38342e28231c150c080200000000000000000000000000000000000000000000000c1824313d48535d65686c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a62584d4135291d10000000000000000000000000000000000000000000000000000000010e1a26323e4a555f666a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e1205000000000000000000000000000000000000000000000000000000000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6b6a696867656361605b535653504a4745403937332d28221c17110a02000000000000000000000000000000000000000000000000000000000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5045392d21140800000000000000000000000000000000000000000000000000000000020e1b27333f4b5660676b6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6961574c4034281c0f000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6260584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935414d58626a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a675f554a3f33271a0e000815212d3945505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645c52473c3023170b00000d1926323e49545e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6360594f44382c201307000a16222e3a46515b63666c6c6c6c6c6c6c6c6c6c6c6c6c6c6a665e554a3e32261a0d000000000000000000000000000000000000000000000000000000000000000000000000030b141d262d3340485059606a6f756e696059504a423a3227221b140b0400000000000000000000000000000000000000000000000000000000000000000000060b13181c22282b31373a3c4347484c525456535b606163646668696a6b6b6c666d6c656c6b6b6a6a6a686766646362605d55595754524d4c4846423c3b37322d2a251e1b15100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181e252a3035383f44464c515457565e61646768666c6e6f70707172727170706f6e6d6869676462605c5454524d4846423b37322c27211a150b060000000000000000000000000000000000000000000000000000000000000000000000050d141a21272c33383d43484a505356575e61636668676d6e6f6f707172727171706f6e6c66696663605d5554524d46443f38342e261e19130c04000000000000000000000000000000000000000000000e1b2734404d59656f75797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746a5d5145382b1f1200000000000000000000000000000000000000000000000000000003101c2936424f5b667177797979797979797979797979797979766c5f5346392d201306000000000000000000000000000000000000000000000000000000000a1623303c4955616c707979797979797979797979797979797979797979797979797979797979797979797979797978777776757372706e6c656662605c5453514b46443f38332d28221c140b070100000000000000000000000000000000000000000000000000000a1623303c4955616c70797979797979797979797979797979716c6155493d3023170a0000000000000000000000000000000000000000000000000000000004111d2a36434f5c67727779797979797979797979797979797873695d5044372b1e12000a1623303c4955616c707979797979797979797979797979796f6a6054473b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845515d6a747979797979797979797979797979797771675b4f4336291d10000a1724303d4955616c71797979797979797979797979797979746e64584c3f3326190d00020f1c2835414e5a6670767979797979797979797979797979706b6054483b2f221609000c1825323e4b57636d7279797979797979797979797979797671665b4e4235291c100000000000000000000000000000000000000000000000000000000000000000000000030c151d262f383f44525a626b707c827b706b605b544c443d332d261d160d0400000000000000000000000000000000000000000000000000000000000000020a11171d24292d33383c4347484e5355565d606366656c6e6f71737476777778787979797978787877777675747271706e6d67696663615e575854534d4947433c3936302b26201c160f09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d151d242930363a41464a5053555d606467696e71737577797b7c7c7d7e7e7e7e7d7c7c7b7a787674716f6d6665615e5655534d47433c38322b261f17110a020000000000000000000000000000000000000000000000000000000000000000070f171f252a32383d44484f54545b606367696e707375777a7b7b7c7d7e7e7e7e7d7d7c7b79777573706d6765615e5753504a443f383029241e160e080000000000000000000000000000000000000000000f1b2835424e5b687581868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783868686868686868686868686868686796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d868686868686868686868686868686868686868686868686868686868686868686868686858584848382807e7c7b7976726f6d6664605d55535049443f38332d261d18130c04000000000000000000000000000000000000000000000000000a1724313d4a5764707d8686868686868686868686868686867e7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784868686868686868686868686868685786c5f5245392c1f12000a1724313d4a5764707d8686868686868686868686868686867c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7986868686868686868686868686868683776a5d5144372a1e11000b1824313e4b5764717e8686868686868686868686868686868074675a4d4134271a0e0003101c2936434f5c69768286868686868686868686868686867d706356493d3023160a000c1926333f4c5966727f868686868686868686868686868683766a5d5043372a1d1000000000000000000000000000000000000000000000000000000000000000000000020b151e262f384149505c636c717d858e857d736c665e564f443f382f2820160c010000000000000000000000000000000000000000000000000000000002080b141c22282f35383f44464e5355585f6266686d707376797b7c7e808183848485858686868685858484848382817f7e7c7b7a787573706e696965615e5755544e4746413b37322c28211a150d070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13191f272f353a41464c52545c6063676d7174777b7e808284868789898a8a8b8b8b8a898888878583807e7c7976726e6965615f57534e48433d373128231c140c060000000000000000000000000000000000000000000000000000000000030b1218212930363d43484f54596063666c6f74787b7d7f8284868788898a8a8b8b8b8a8a8987868482807d7a76726e6964605c54504a423e353028201a110600000000000000000000000000000000000000000e1b2835414e5b6874818e9393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939286796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909393939393939393939393939386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a939393939393939393939393939393939393939393939393939393939393939393939892929190908f8d8b898785827f7c7975716d6763605b53504a443f382f29241d160d060000000000000000000000000000000000000000000000000a1724313d4a5764707d8a939393939393939393939393938a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919393939393939393939393939285786c5f5245392c1f12000a1724313d4a5764707d8a93939393939393939393939393897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929393939393939393939393939084776a5d5144372a1e11000b1824313e4b5764717e8a939393939393939393939393938d8074675a4d4134271a0e0003101c2936434f5c6976828f939393939393939393939393897c706356493d3023160a000c1926333f4c5966727f8c9393939393939393939393939083766a5d5043372a1d10000000000000000000000000000000000000000000000000000000000000000000000a141d263038424a535b606e737e879297928780786d6860595049413a32281e1308000000000000000000000000000000000000000000000000000000050d13191d262d333a40454a5053585f62666a6e73777a7d7f828587898b8c8e9090919192929999929291919190908f8d8c8b8988868582807d7b7875726e6966625f5854524c47433c38332b262018130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000060d161e2429313940454c52565e61666d70757a7e8184878a8d8f919298959697979898979796959497928f8d8b8886827f7b76726e69625f58544f47423c342e261e181009000000000000000000000000000000000000000000000000000000050c151d2328333b42464f545960636b6f74787c8084878a8c8f91939a959696979898979796969992918f8c8986837f7b76716d66605c545046413a322c2317110a020000000000000000000000000000000000000e1b2834414e5b6774818e9a9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909d9f9f9f9f9f9f9f9f9f9f9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa29f9e9e9d9c9b9a989698928f8c8985827e79746f6c65605b54504a423d352f281f17110a02000000000000000000000000000000000000000000000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919e9f9f9f9f9f9f9f9f9f9f9f9285786c5f5245392c1f12000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f95897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929f9f9f9f9f9f9f9f9f9f9f9d9084776a5d5144372a1e11000b1824313e4b5764717e8a979f9f9f9f9f9f9f9f9f9f9f9a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9c9f9f9f9f9f9f9f9f9f9f96897c706356493d3023160a000c1926333f4c5966727f8c999f9f9f9f9f9f9f9f9f9f9d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000000000000000000006111c262f38424a545b656c74808b9299a199938c827a6f6b605b534c443a2f24190d0100000000000000000000000000000000000000000000000000070e171e252a2f383f444b51545b60646a6f73777b7f8386898c8f92979697999b9c9d9e9e9f9fa3a39f9f9e9e9d9d9d9b9a9997969597918f8c8a8785827f7b77736f6a66615e56534e48443e373129241d160d0701000000000000000000000000000000000000000000000000000000000000000000000000000006101820282f353d434b51565e61686d73797d81868a8e9196979a9b9d9fa3aaa3a3a4a5a5a4a3a3a2a9a19e9c9a9799928f8b87837f7b756f6a636059534d443f38302a221b120600000000000000000000000000000000000000000000000000050e171e272e343e454d525960636b70767c8084898d919696999b9e9fa4aca2a3a4a5a5a4a4a3aba39f9d9c999992908c87827e78716d66615a524c443e3527221b140b0200000000000000000000000000000000000e1b2734414e5a6774818d9aa7acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacac9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daaacacacacacacacacac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacb4aeacabaaaaa9a8a6a5aaa29f9c9998928f8a85817c78716c66605b544f45403a3127221b140b040000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3acacacacacacacacaca4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaaacacacacacacacacab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3acacacacacacacacaca295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facacacacacacacacacaa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4acacacacacacacacaca79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9acacacacacacacaca396897c706356493d3023160a000c1926333f4c5966727f8c99a5acacacacacacacaca99d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000000000000000000a1317222d38424a545c666c77808c929fa3aba49f948f847d726c655d564c4135291d11040000000000000000000000000000000000000000000000030b1218202930363d424a50555d60666c70767b8084888c909399999c9fa2a9a4a6a7a9aaaaababacafaeacabababaaaaa9a8a7a5a4a3a9a19e9c999697918f8b8783807c78736e68625f58554f47433c352f281f18120b030000000000000000000000000000000000000000000000000000000000000000000000020a1117222a323a41454f555d60686d737a8085898e92989a9ea0a8a6a8aaacaeb4afb0b1b1b1b1b0afafb3adaba9a7aba39f9c9a93908c87817c756f6b625f57504a423c342d2417110a0300000000000000000000000000000000000000000000050e172029303940454f575e616b6f767d83898d91969a9ea1a9a6a8aaacafb6afb0b1b1b1b1b0b0b4aeacaaa8aba39f9d99938f8b847e78706c615d564f473f332d261d140b02000000000000000000000000000000000e1b2734414e5a6774808d9aa7b4b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b8ac9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6b9b9b9b9b9b9b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9bfbab8b8b7b7b6b5b3b1b4aeaca9aaa29f9c98928e89837e78716c666059514b433d332d261d160d0500000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9b0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7b9b9b9b9b9b9b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9afa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8b9b9b9b9b9b9b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1b9b9b9b9b9b9b9b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5b9b9b9b9b9b9afa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2b9b9b9b9b9b9b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000000000000000008121c2528333f4a545c666d78818d929ca4afb5afa69f9691877f776d685d5245392c20130700000000000000000000000000000000000000000000050c151d2328323a41464f545b60676d72787d82888c9195999d9fa4aba9abadb3b1b3b4b6b7b7b8b8b9bbbab9b8b8b7b7b7b6b5b4b2b1afb2adaba8a6a9a19e9c9895908c8884807a746f6a636159534e45403a3129241d150d06000000000000000000000000000000000000000000000000000000000000000000020b141b2227343c444c525960676d737a80868c91979b9fa2aaaaacb2b3b5b7b9babfbcbdbdbebebebdbcbbbeb9b8b6b3b5aeacaca49f9d99938e88827c766e69605c544e463f3628231c150c040000000000000000000000000000000000000000050e172029333b424b515961696e757c828990959a9ea1a9abadb2b2b5b7b9bbc0bcbdbdbebebebdbdbfbab9b7b5b5afacaba49f9c96918b847d756d68615951443f382f261d140a000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5b8ac9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3c6c6c6c6c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d0cac6c5c5c4c3c3c2c0bebfbab8b5b4aeacaaa29f9a95908a837e786f6b605d554f443f382f281f170f06000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6bdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4c6c6c6c6c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5c6c6c6c6c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdc6c6c6c6c6c0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2c6c6c6c6bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfc6c6c6c6c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000000000000007101a242d373f44505b666d78818e939da4aebbc0bbb0a9a199928c827a6d6054473a2d211407000000000000000000000000000000000000000000060f171e272e343d444c525960666c71797f848a8f94999da0a7aaacafb5b5b8bab9b8b5b4b2b0afaeaeadacadadaeaeafafb0b1b3b4b6b7b9bbb9b8b5b3b3adaba8a7a09d9996918c86817c76706b625f58514b433e352f271f180f0800000000000000000000000000000000000000000000000000000000000000020b141d262d333e464e565d606b707980868d92989ea1a9acaeb4b7b8bdc0c2c4c5c7cbd1cacacbcbcacac9cfcac6c5c2c0bfbbb9b6afacaba49f9b948f89827b726d665f58504840342e261e160d04000000000000000000000000000000000000050e172029323b454d545c606b707b82898f949d9fa7abadb2b8b9bdbfc2c4c6c8ccd2c9cacbcbcacad1cbc7c5c4c2c0bbb9b5afaca8a09e96918a817a706b625b504941382f261b11060000000000000000000000000000000d1a2734404d5a6773808d9aa6b3c0cdd2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c5b8ac9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0d2d2d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2dbd6d3d2d1d1d0cfcecdd0cac6c5c2bfbab8b3aeaba7a09d95918a837c746d6761595049413a312921180f060000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad2d2d2cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1d2d2d2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad2d2d2c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5d2d2d2d0c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad2d2d2cdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfd2d2c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd2d2d0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000000000000050e18222c363f49525c606c78818e939da5aeb6bfcbc0b7afa69e9490837a6e6154473b2e2114080000000000000000000000000000000000000000070f182129303940454f565e616b70787e858b91969c9fa6aaacb1b6b9bbb8b7b3b2adaba9a7a5a3a2a1a1a0a0a0a0a1a1a2a2a3a4a6a7a9abacafb5b4b7b9bbb9b8b5b1acaaa8a19e99928e88827d766e6a605d55504540393129211a110a0100000000000000000000000000000000000000000000000000000000020b141d262f383f4450585f686d747d848d92989fa2aaadb3b8babfc4c5c8ceced0d2d3d7dcd6d7d8d8d7d6d6dad6d2d1cfd1cbc7c5c0bbb9b5afaca69e9c948f867f786f6a625a52443f3830281f160b0200000000000000000000000000000000030c162029323b444d575e666d747d858f949c9fa6abb1b8b9bdc4c5c9cfced1d2d0cecccbcac9c9cacaccced0d2d0d1cbc7c5c0bbb9b2aca8a09e938e857d726d605b534941382d2217120800000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9dfdfdfdfe6ded8d3d0cfcececececececececececececececececececececececececececececececececececececececececececececececececec5b8ac9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0dddfd2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6dfdfdfe2dad4cfcccbc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9cacacbcdcfd1d2d4d7d6d3d2d0cac6c5bebab8b1aca7a09d9590878079706b605b534b433b332921180f0500000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6dfd7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6dfd5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5d2dfddd0c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7dfdacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000000000030c17202a343e48515b636e74808e939ea5afb7c0c8c0b6aea59d948f827a6e685e5246392d20140700000000000000000000000000000000000000081019222a333b424b515960686d757d838b91979ea0a8abb0b7b8bcb8b7b1acaaa7a9a19e9c9a989795959493939394949595969697999b9c9e9fa4aba7aaacafb5b6b8bcb8b7b2adaba39f9b948f8a827c736d67615a514b433b332c231c130b020000000000000000000000000000000000000000000000000000000a141d262f384149505a616a6f7a818991969fa2aaaeb4b9bec4c7cad0d2d4d9dbdcd7d4d2d1cfcdcdcccccdcdcecfd2d3d6dbd7d3d2ccc8c6c0bbb9b0aaa69f98928c837c716c635c504a423931281d140a000000000000000000000000000000000b151e28323a444d565e696e78808a92979ea6abb0b8bcc2c5c9cfd2d2d1cbc7c5c3c1bfbebdbdbdbdbebfc1c3c6c7ccd2d3d2ccc7c4bdb9b2aca59e9791877f736c655b53493f3327241a0e05000000000000000000000000000c1925323f4c5865727f8b98a5b2becbd8e5ecf0e6ddd4cdc7c4c3c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1b8ac9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0dddfd2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3ece2d9d0c9c3bfbebcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbdbebec0c2c4c6c7ccd2d2d4d7d6d3d0cac6c3bcb8b1aca7a099938d847d736c655d554d453b332921170f05000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5d2dfddd0c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000000000000000000000000000b151e29323c46505a636d73808d929da5afb7c0c9c0b6aea49d938e82796d685e564c41362a1e110500000000000000000000000000000000000008111a222b343c454d545c606b707a818990959ea1a9acb2b7bbbab9b1acaaa7a09d9a9796918f8d8c8a8888878786868787888889898b8c8e90919399979a9d9fa4abaaacb1b6b8bcb9b4aeaca69f9c948f878079716c605d554d453e352e251d140b020000000000000000000000000000000000000000000000000006111b262f384149535b606c717c848e939ea0a8aeb4babfc5c9cfd3d6dbdcd6d3d2d1cbc7c5c4c2c1c0bfbfc0c1c2c3c5c6cad0d1d2d5d8d4d2ccc7c1bbb7b0aaa29f9590867e736e605c544b43392f261c1106000000000000000000000000000007121d27303a444c565e686e7b838d929ea1a9b0b7bbc2c7cdd2d3cec9c5c4c0bbb9b7b4b2b2b1b0b0b0b1b2b4b6b9bbc0c5c7cbd1d4cec9c4bdb9afa9a199938b80776c655b50443f362c20170d020000000000000000000000000b1824313e4b5764717e8a97a4b1bdd0dce7f3e9ded4cbc2bcb7b6b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4ac9f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0dddfd2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e5dad0c7beb7b3b1afafafafafafafafafafafafafafafafafafb0b0b1b2b3b5b7b9bbc0c3c6c7ccd2d4d9d6d3cec8c3bcb8b1aba49f9691887f776d675e574d453b332921170d040000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5d2dfddd0c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000000007121c27303b444e58616c727f8c929ca5afb7c1c9c1b7aea49d928d81786d675d564c443b3025190e02000000000000000000000000000000000007111a232c343d464e575e666d737d858e939da0a7adb3b9bdb9b4aeaca7a09d9995918d8a878582817f7d7c7b7b7a797a7a7b7b7c7c7d7e8081838486888b8d909399999da0a7aaabb1b8b9bab9b0aba69f99928d847e756d675f574f4740372e261d140b020000000000000000000000000000000000000000000000081217222d384149535b656c737e8691969da5acb2babfc6cad0d5dae0d8d3d0cbc7c5c2c0bbb9b7b5b4b3b3b2b3b4b5b6b8babec0c4c5c9cfd2d6d7d4ccc7c2bcb4aea79f99928b80746d665d554b42382d22171107000000000000000000000000040d18232e39424c565e686e7a8490959da4adb3bbc1c7cdd4d1cbc7c4bdb9b7b5afacaaa7a6a5a4a3a3a4a4a6a8aaacafb5b9babfc6cacfd5cec9c1bbb3aba49f928d81776c605b51483e32291f14090000000000000000000000000a1723303d4a5663707d8996aab4bfcbd6e3efe4d8cdc2b9b0aba9a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a89f9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0dddfd2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3dfd4c9beb5aca7a4a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a3a4a4a5a7a8aaacafb5b6b9bbc0c7c8ced3d8d9d4cec8c3bdb5afa8a19a938c81796e695f574d453b332920160b0200000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5d2dfddd0c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000000050e18232e39424c565f6a717e88939fa4aeb7c0c9c2b8afa59d928d80776d665d554c433b32291e14080000000000000000000000000000000000061019232c353e474f585f696e78808891979ea5acb1b9bebbb3adaaa39f9b95908c8884807e7b78767472706f6e6e6d6d6d6d6e6e6f6f707173747678797b7e818486898c9095999d9fa7abadb3b8bbb7b0aba39f96918a81796e696159514940382e261d140b02000000000000000000000000000000000000000000060f1a2427333f49535b656c77808a9298a1a8afb9bdc4cad0d6dbded7d3cdc7c6bfbab8b5b5afacaaa8a7a6a6a6a6a7a8a9abaeb3b4b7b9bdc4c6cacfd5d7d3cec6bfbab1aba39f928c81786d675d544a3f332823190d0300000000000000000000010c16202834404b545e686d7a839196a0a7aeb9bec5cdd3d2ccc7c0bbb9b2acababa39f9d9b99989796969797999b9d9fa4abacaeb4babec5ccd2d5cdc4bdb5afa49d938d80746d625a50443b3025190e0500000000000000000000000815222e3b4855616e7b8898a3aebac7d3e0ece0d3c7bcb0a69f9c9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9285796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0d2d2d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3dbcfc3b7aca39b98969696969696969696969696969696969696969797989a9c9e9fa4abaaacafb5b8bdc3c7ccd3d8d9d4d0c7c0bbb2aca49f938f837b6e695f574d453b32281d140a00000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5d2d2d2d0c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000020d17202834404a545e686f7c86929aa4afb6c0c9c3b9b0a69e938d80736c655c544b433a312920170d0200000000000000000000000000000000050f18222b353e474f59606a6e7b838d939aa1a9afb8bcbdb5aea9a29e98928e88847f7b7774716e696967656462626160606061616262636364666869666d6e7174777a7c7f83888c9095999ea1a9acb2b7bdb5aea8a19e938e837b706b635b524a40382e261d140b0000000000000000000000000000000000000000040d18212c363e44505b656c77818c929fa2aab2bac0c9ced6dbdfd8d4ccc7c2bcb7b4aeaca9aba39f9e9c9a9a99999a9a9b9c9fa2aaa7abadb2b8b9bec5c9cfd5d8d0cac2bdb4aea49c938e82796d665b50443f352b1f150b0100000000000000000008131e28323a45515c666d7a839095a0a8b1b9c0cacfd5d0c7c0bbb5afaca8a19e999992908e8c8b8a8a8a8a8b8c8e9093999b9fa3aaadb3bbc0c7d0d6d0c7c0bbaea59d928c7f726c61564d42362a20170d02000000000000000000000613202d394653606c7885929facb8c5d2dfebddd0c4b7ab9f94908e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e86796c5f5246392c1f1300000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3c5c5c5c5c5b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d8ccbfb3a79b918b898989898989898989898989898989898989898a8b8b8d8f919399999d9fa4abacb2b7bbc2c7cdd6dbd9d2ccc4beb6afa59e9590847b6e695e574d443a2f261c1106000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8c5c5c5c5c5c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000008141e29323b44515c666e7a849198a2acb6c0c8c4bbb1a79f948e81776c605b534a423931281f170e0500000000000000000000000000000000040d17212a343d474f59616b6f7c8490959fa4acb3bbbebab0aba39f97928c86817c77736e6a6764615e575a595755555454535354545555565658595b545c60626467676d7073777b7f83888c92979da0a8abb0b9bbb2ada59e9590857d736d645c524a40382e261d0e05000000000000000000000000000000000000010c161f2a333e48525c606c77808d939ca4aeb4bcc4ccd5d9e0dbd6cdc8c1bbb7b0abaaa39f9c999992918f8e8d8c8c8d8e8f909298979a9ea1a8abadb3b9bec4c9cfd7d6cfc6bfbaaea59d948f81786c605a50473d31271d12070000000000000000010d19242f3a444f59606d78839095a0a7b1bac3cbd6d7cbc3beb6afaba39f9a96918d898684817f7f7e7d7d7d7e7f8183868a8e92989fa2a9afb5bdc4cdd4d2ccc0b7aea49f93887e70695e52463f32291f14090000000000000000000006121f2b3844505b667784909daab7c3d0dde9dccfc3b6a99c90828181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818174685b4e4135281b0e00000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6b8b8b8b8b8b8b8ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cbbeb1a4988b7f7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d7d7e7f80828486898d9093999ea0a8abb0b7bcc2cad0d7ddd7d0c7c0bbafa7a09691847b6e695e564c42382d22170e050000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facb8b8b8b8b8b8b8b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000000000000000000050e1925303b444f59606d78839096a1aab4bec7c5bcb2a9a0959082796d655b5049413830271f160d0500000000000000000000000000000000010c161f29333c464f59616c707d859196a0a7afb6bebcb3aea69e99928d85807a746f6a66625f585754534d4e4c4a49484847464747484849494a4b4d4e4b51535558555d606366696e72777b80858b91969c9fa6adb2bbb9afa7a09792887f746e645c524a40382e20170d02000000000000000000000000000000000007131d28313c46505a636e74808d929da5aebabfc6ced6dee0d8d0cac2bcb8b0aaa69f9c98928f8c898684828180807f8081828385888b8d91969a9ea2a9adb2b9bec5cdd6d8d1cbbfb7afa69e938d80736c62594f43392f24180c030000000000000004111d2935414c56606b73808d959fa7b1b9c3ccd5d1cbc0b9b1aca49f99928e8984807c7a7774737271707071717375777a7d81868c92979fa4abb3bbc3cbd4d7c9c0bbafa49a92857b6e615b51443b3025190e03000000000000000000030f1c28333f4a546875818e9ba8b4c1d0dbe6d8ccbfb2a5998c7f757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575746f64594c4033271a0e00000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daaacacacacacacacacac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f707171727475777a7d8083878c91969c9fa6abb1babec5ced4dcd9d2ccc1b9b1a8a19691847b6e685d544a3f332820170d0200000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facacacacacacacacacaa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000000000000020c17202a36414c56606b73808d959fa8b2bcc6cabfb4aaa19791837a6d675c53493f382f261e150d04000000000000000000000000000000000008131e28313b454e58606b707e869297a1a8b1bbc0b9b0aaa29f948f86807a736e68625f5855534e4b484642413f3d3c3b3b3a3a3a3a3b3b3c3c3d3e4041404546484b4b515456575f6166696e73797e848a90949ea1a9aeb5b9b1a9a29a938c80746e645c524a4032291e130800000000000000000000000000000000030d18242f3a434e58616c73808c929da4aeb7bfcad0d8e0ded5cec6bfbab1aba69e9c94908b86827f7c7977757473737373747576797b7e8184898d92979ea1a9adb3bbc1cad0d7d7c9c1b8b0a69c928b7e716b60554b40352920150a000000000000030e18222c3945525d68707d87939fa7b1b9c3ccd5cfc6bfbaafa7a09a938e87817c78736f6d6768666564636364646668686d71757a7f858d9399a1a9b1b9c2cbd4d8ccc0b6aca2978f82766d62564d42362a201509000000000000000000000b17222d3f4c5865727f8b98a9b3becad6e2dacdc1b4a79a8e8174686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868645d53483c3024180b00000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909d9f9f9f9f9f9f9f9f9f9f9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6363636363636363636363636363636363636464656769676d7073777b7f84898f949d9fa7aeb3bcc2cad7dcddd8cbc3bab2a8a19691847a6d665b50443e32291e140800000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929f9f9f9f9f9f9f9f9f9f9f9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000000000000000008131e29323a46525e68707d88939fa7b1bac4ccc4baaea29891857b6e685d554b41382d261d150c030000000000000000000000000000000000060f19242f3a434d575f6a707d879298a2a9b2bac0bbaea69f98928b827b736d68615e56534e4847433e3b3a363132312f2f2e2d2d2d2e2e2f2f303031332e34383a3b3e414547494d5355575f61676d71787d838a91969fa3abb0bbb3aca49f928d80746e645c52443a3025190d010000000000000000000000000000010b151f2935414b555f6a707e8a929ca4aeb7c0c9d6dbe2dcd3ccc3bcb4aea79f9d948f88837e7a76726f6d666967676666676768656c6e7174787c81858b91979ea1a9afbabec5ced5d2cac1b8aea49f92877d70675d51453c31261a0f0100000000000a15202b37434e58606d7a849199a4afb9c3cbd5cfc6bdb4aea59d959087817b746f6c6563605d555958575757575859565d6164686d727a808791979fa7b1b9c2cbd5d2c7beb3a99f948b7f72695e52463c31261a0e040000000000000000000615222f3c4855626f7c8897a2adbac6d3dfdccfc3b6a99c90837669585b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b59534b41362b20140800000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909292929292929292929292929286796c605346392d201306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256565656565656565656565656565656565758585a555d606366686e72777c828990959fa2aab0b8c0cbd1d8ddd5ccc4bab2a8a0968f82786c605a50443b3025190d04000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929292929292929292929292929084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000000000000020b1925303a44505a616e7a85929aa4afb9c2ccc4baafa59f92867c6f695e564c43392f261b140b030000000000000000000000000000000000020b18212935414c565e696f7c869299a3aab3bbbdb5afa49d9490857e756e69605d56524c47433c3a37312e2d2a252624222221212020212122222323252623282c2d2f2f35393a3d4246484d53555c60656c70767e848d92999fa6afb6b6afa49d928d80746e64564c41362a1e1105000000000000000000000000000007121d27313945515d676e7c86929fa4aeb6c0c9d2dbe7dbd2cac1bab1aaa29f959089827c76716d686662605c545b5a59595a5b535b606264656c6f74797f848c92979ea5aeb3bcc3cbd4d3cac0bbaea3999184796d60584e43372b1d130700000000020f1a26313a47535f6a74818e96a1abb5c0cbd4d0c7bdb4aba39f938e837c756e6963605b5353514b4c4c4b4a4a4a4b4c4c5254565e61686d747d8590959fa7b1b9c3cdd7d0c5bbb0a69f92867b6e61574d42372b20150a0000000000000000000613202d394653606c7985929fabb8c5d0dcded1c5b8ab9e9285786a5f534e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4c4841392f251a0f0300000000000000000000000000000000000000000000000000000003101d2a3643505d697682858585858585858585858585858586796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f62564949494949494949494949494949494a4a4b4c4d4b515356565e61666b6f767d838b92989fa6aebbbfc6cfd8ded6ccc4bab2a89e948d80736c61564c41362a1f160c010000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2c3845525f6b7885858585858585858585858585858583766a5d5043372a1d10000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000000000000000a141d2a36414c56616c76828f97a1acb6c0cbc7beb2a89e938b7e716a5f574d443a30271d140a020000000000000000000000000000000000000a141d2a333b45525d686e7b859198a2abb4bcbcb4aba49f928d837b716c615f57524c46413b37322e2b26272828292827252423201f1c181515161617181a181c1f202224292c2d31373a3b42464b51535b60636c7179808790949fa4acb3bbaea49d928d8074685e5246392d20130700000000000000000000000000000c18232f39434f59606d79849198a2aeb6bfc8d2dbe4dbd2c9c0b8b0a8a098928c837c756f6a65605d565653514b4e4d4d4c4d4e49505355535b6063676d72797f858e939fa2aab1b9c2cbd4d7cbbfb5aba1968d80736a5f53473a2f24180d0100000006121f2b37434e58626f7c87939fa8b2bdc7d2d2c7bdb5aba399928b81796f6a615f57535049474540403f3e3d3d3e3e404146474c52565e616b707a8390959fa7b1bbc5d0d7cdc2baaea2988e8174695f53473c32261b0f01000000000000000005121f2b3744505b6575828e9baab4bfcbd6dfd2c6b9ada197887b6f6255484242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424241403c362f261d130900000000000000000000000000000000000000000000000000000000030f1c2935424e5a66707679797979797979797979797979797974695d5144382b1e1205000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3c3c3c3c3c3c3c3c3c3c3c3c3c3d3e3e3f414045474a4d52545960636b70767e858f949ca4aeb5bdc6cfd8ded6ccc3bab0a69c928a7e71685e52463e31281e13080000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2b3744505d68737879797979797979797979797979797671665b4f4236291c10000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000000000006111c262f3846525e68717e8b949fa9b3bec7ccc0b6aca1968e81756c61584e453b32281e150b0200000000000000000000000000000000000006111c262f3b45505a606d7a849197a1aab3bdbdb4aaa399938b80786e69615a534d45413a36302b2d2e30323435353635333231302d2c2923201d19130e09070c10131315181d2021262b2d31363940454950535a61676d737b828c939aa1a9b1b6aea49f92857a6d6154473a2e2114070000000000000000000000000004101c2934404b55606b74818e96a0aab4bec8d1dae4dbd2c9c0b7afa69e9591867f786f6a62605854524c494645404140404040413f444648495053555c60676d727a818a9298a0a7b1b9c2cad4d1c6bdb2a89f92877c6e62554b4035291d11040000000814212e3a47535f6a75818e9aa4afbac4d0d7ccc0b5aba39992877e746d675f58534d46443f3a39352f3231303031313035393a41464c525960686e7a839095a0a9b3bec7d2d6cabfb4aa9f92877b6e62584e43372b1e13080000000000000000030f1b27333f495364717e8a98a3aebac7d3e0d5c9beb3a9998d807366584e433735353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353533302b251d140b0100000000000000000000000000000000000000000000000000000000010d1a26323e49545e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6962584d4135291c1003000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c30303030303030303030303030303131322f35393a3d4146474f545960636c717b828d929fa3abb4bdc6cfd9ded5ccc1b8aea49f92857a6e615a50433a2f24190d0200000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c2834404c5761686b6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a665f554a3e32261a0e000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000000000b17222d38424f59616d7a85929ea6b0bbc5d0c7bbafa49a91847a6d605a50463c332920160c03000000000000000000000000000000000000000b17222d38424d57616c75818e96a0a9b3bcbdb5aba39892877f736d665f575047423c352f2e3036393b3d3f4141424241403f3e3c3a38342f2c29241e1a140c070c141a1e20262b2e2f32362e34383a393f444650555d60696e78808892979fa7b0ab9f958b7f72685e5246392d201307000000000000000000000000030d17212c3845515c67707d89939da8b2bcc5d0dae3ddd3c9c1b7afa59d948f837b726c666058544e4745413c3a38342e343333342d3337393b3f44464b51555d60686d757e8590959fa7b0b8c2cbd4ccc4bbaea399908376675d5145392c201306000004101d2935404b55626e7c87939facb6c0c8cecdc5bbafa49992877e716c605d554e46423c37332d2c292425242424242524292d30363a41464f565e686d79839097a2acb6c0ccd8d0c6bbafa3998e81756a5f53473a2f24190d0100000000000000000b17222d3a4753606d7a86929facb8c2cdd8dacfc4b7aa9e9184776a6054473c3226282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282724201a130b020000000000000000000000000000000000000000000000000000000000000a16212d38434c545a5d5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5d5850463b3024190c00000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2323232323232323232323232324252524292c2d3036393d44484f545a62696e77808b9299a3abb4bdc7d1dcded3cabfbaada2978e81756c61554c4135291e130800000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3b454f575d5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5d5b554d43382d22160a000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000000030f1c28333f4a54606b75818e97a1adb8c2cdc7bdb1a79f93887d70685d52483e342a21170e0400000000000000000000000000000000000000030f1c28333f4a545f69717e8b939ea8b2bbc0b5aba39992867e726d605c544d453e373131373a3b4146474a4c4d4e4f4f4e4d4c4a494745403a39352f2b261f1812181f252a2d31373a3b3f424340454646443f43434b51575f666d737d8590959ea6a3999083786c60564c41362a1e110500000000000000000000000009141f2a36424d57606d7984919ea5afbac3ced7e2dfd5cbc1b7afa59d938e827a6e69605b544e47433c39352f2d2c28232726262722272b2d2d33373940454b51565d616c717b8390959fa6b0b9c2cdc4bab2a8a09691847a6d6053473a2d201407000006131f2c3845515d6775818e99a3abafb8bcc3c5bbb0a69f93877e716c615a514b433c37312b27221f1d18191817171718191d20252a30353d444c565d676e7b85929aa4afbbc5cfd7cbc0b5ab9e93887c6f62564c4135291d110400000000000000000613202c3945515d6775828f9ba7b1bcc8d4ded2c5b9aca096897c6f62584e43372b1f161b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1a18140f09010000000000000000000000000000000000000000000000000000000000000005101c26313a43494e50525252525252525252525252525252514d463e342a1f140800000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23161616161616161616161617171819181d1f20252a2d32383d444850575e656c737e879299a3abb5c0cbd7dddcd6cabeb3a99e938a7d70675d51453a3025190d02000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131e29333d454c50525252525252525252525252525252504f4a433b31271c1105000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000000000006121f2b3844505b66707d89939ea9b3becaccc0b5aba0958d80736b60564c41362d22180f0500000000000000000000000000000000000000030d17212b3844505b666e7b86929fa5afbac3bbafa49992877d706c625b504a423b3334383c4347484c525457585a5b5b5c5b5a58575653514b4745413a373129241d232830363a3c4247484c4f504b5153535049504e4b494d545c606b707b838f949e9f92877c6f665b50443a3025190d010000000000000000000000020e1a26313a46535f6973808c96a0acb7c1ccd5e0e1d7cdc3b9afa59e938e81786d685f57504a423d37322c2924201f1c181a1a191a171b1f2022272b2e343940454c525a61696e7a838f949fa6b0bbc4bbb2a8a09691847a6e675d5145392c20130600000714202d3a4753606d79848d92999ea5acb1b9beb3a99f948b7f726c615a50454039312b261f1b1713100c070b0a0a0b080d1113191e2529323b434c555f69707d88939fa9b3bec9d5d1c7bdafa59a8e8174685d5245392c20150a000000000000000004111d2935404b55636f7c89959fabb8c4cedad5c9bdb2a89b8e81746a5f53473d31281d12070f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0e0e0b0803000000000000000000000000000000000000000000000000000000000000000000000a151f2831383e424346464646464646464646464646464644413b342c22180d0200000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090909090909090909090a0b0b070c101314191e20272c32383f454d535b606c717d879299a3afbbc0cbd4e0dbcfc5bbafa59e91847a6d60564c41362a1e1408000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d17212b333b404445464646464646464646464646464643423e3831291f150a00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000004101d2935404b55606c7883909da5afbbc5cfc7bbafa4999083796d60594f443a30241b1006000000000000000000000000000000000000000009141f2935414b55606c78839098a2aeb7c1b9aea49f93877e716b615a51443f3830383f44464e5355565e616365676868696866656463605c5554524c46423c352f272e343b4246474d5355595c5d545c60605b5e5d5a58555350505961696e79828e93968d80736a5f544a3f32291e130800000000000000000000000005121e2a36424d57616e7b86929fa8b2bdc9d2dee6dbd0c5bbb1a79e938e81786c665d564d443f382f2b27201d191313100c070d0d060b0f1213171b1f23282f353a414650575e686d79828f949fa9b2bbb2a9a19691847b6e685e554b4035291d1104000006131f2c3845515d676d7a80868f939da0a7adb3ada2978f82766d625a50483e352f271f1a140f0b0604000000000000000105080d13192029313a434d57606b74818e97a1adb9c4cfd9cfc1b8ac9f92867a6d6054473c32271b0f0300000000000000010d18242f3a4854606b7683909da8b2bdc9d5d9cec4b9ac9f93877c6f62594f43392f241810060002020202020202020202020202020202020202020202020202020202020202020202020202020202010000000000000000000000000000000000000000000000000000000000000000000000000006111c262f383f4446474747474747474747474747474746443f382f261c11060000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000406080e11161b21272c333b4149505a626b707e87929fa4aeb9c2ced7e1d7cdc1b9ada1968c8073685e52463b3025190d000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1921292f34373839393939393939393939393939393736322d271f170d0300000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000000000a131f2c3845515d67717e8b95a0acb7c1cdcabfb4aa9f93877c6f665c51473d32281e12090000000000000000000000000000000000000000020e1a26313945515d67717e8b959faab4bebcb1a79d928b7f726c615950483f34363d424a5053585f6266686e707274747575747372716f6d6764605d56534d454039313940454d5254575f6265696a6b666d6c656b6a676562605b5454575e676d78818e9184796d60584e42382d20170d020000000000000000000000000714212d3a46535f6974818e99a3aebac3cedbe4e0d6cabeb3a9a0958e81786d665b544c433c332d261d1b15110d0806040000000000000305060b0f12181d242930353e454d565d676d79829097a1abb3a9a19691847b6e695e564d433a2f24180d01000004101d2935404b555d676d737b828990959ea1a9a89f92857b6e615b51483e3629241d150d09030000000000000000000000000002080e171f28313b454f59616d7a85929ea8b2bdc9d5d3c6baaea2988b7f7265584e43372b1f1306000000000000000007131d2c38444f5964717e8a96a1acb9c5d0dbd4c8bbafa49a8f82766b60554b40352922180f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424a5053545454545454545454545454545453504a42382d22170b0000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000002050b0f161b21292f383f445059616c717e8b929da7b1bcc5d0dbdfd5c9bdb2a89f92867a6d61564c41362a1c12070000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f121b22292d30313636363636363636363636362d2c29241e160d0d040000000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000006111c2935404b55606d7984919ea7b1bcc9d3c7baaea2988e81746a5f544b40352b20160c00000000000000000000000000000000000000000005121e2a36424d57606d7a85919ea7b1bcbeb3aa9f958d80746d625a50473e363b42464f545c60656a6e72767a7d7f8081828281807f7d7c7975716d68615f57514b433d424b51575e6167696e7275767879797978777674716f6c66626058555c666d7881897d70675d51463c2f261c0e0500000000000000000000000005121e2a36424d57616e7b87929fabb5bfccd5e0e2d7cec5baada2979083796d665c544a423a3128221c140b0a04010000000000000000000000000003070c12181e2429333b444c555d676e7a859199a3a9a19791847b6e695e574d443b31281d1307000000000c18242f39434c555d60696e757d838b92979fa0968b7e71695e52493f362c2318120b030000000000000000000000000000000000050d161f29333d46525d68727e8b96a1adb9c5d0d6cabfb4aa9d9184776a6054473b2e2215090000000000000000010f1b27323d4653606d7884919ea9b3becad6d8ccc0b6ac9f94897d70675d51453f342a21170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a545b606060606060606060606060606060605b544a3f33281c0f0300000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000040b0f171d262d333f47505a626c74808d959fa9b3becad6dfdacfc4baaea2988d8073685e5246392e23180c0000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b242d34393d3e4343434343434343434343433a39352f2820160c010000000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000000000c17232e3845515d67727f8c96a1adb9c3cec9beb3a99f92867b6e61584e42392e23190e040000000000000000000000000000000000000000000714212d3a46535f6973808d97a1adb9c2baaea2989083786d605b51483e353c454d535960666d72777b7f83878a8b8d8e8e8f8e8d8b8a8985827e7a756e69605d554f474d545c60696e73777b7f828384858686858483817e7c79736f6a6360595c666d777d706b60554b40342a1d140a000000000000000000000000000714212d3a46535e6974818e99a3afbdc6d1dee7dbd0c5bcafa59f92857b6e675d544a42382f281f17110a0200000000000000000000000000000000000001070c13192129323a434b555e686f7c87929fa19792857c6e695f574d453b32291f160c010000000007121d27313a434c51575f616b70787e858d92999184786c60574d42372d241a11070100000000000000000000000000000000000000040d17212935414c56606d7984919ea9b3becad6d0c6b8aca095887c6f6255493c31261a0e0200000000000000000a161f2b3844505c66727f8b97a2adbac3cfd9d2c7beb0a69d9184796d605a50463c332920170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b666c6d6d6d6d6d6d6d6d6d6d6d6d6d6d6c665b5044382b1f120600000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000050b141b2227353e48505a606d78839097a2adbac3cdd9e0d6cabfb4aa9f92867a6e61544a4034281c100400000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17222d363e45494b5050505050505050505050504745413a32281e13080000000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000003101c28343f4a54606d7985929ea8b2bdcbd2c6b9ada1978d8073695e52463c30271d110700000000000000000000000000000000000000000005111e2a36414c56616e7b86929fa9b3bebdb0a69f92857b6e665c51493f363d464e575e616b70787f84888c90939a989a9b9b9c9b99989798928e8a86827b736d6760594f575f666d737b8084888c8f90919298939291908d8b8884807c76706b615f5c656c706c61594f43392f22180b0200000000000000000000000003101c28343f4a54616e7b86929fabb5c0cfd8e3e2d6cabfb4aa9e938a7e70695f554b42382f261d160d060000000000000000000000000000000000000000000002080f172028313a434d56606a727f8b959792857c6f6a5f574d453b332920170d040000000000010b151f28313a41454d535960666d727a80868f8b7e72665b50453b30251b120800000000000000000000000000000000000000000000060f1924303a45515c66727f8b97a2adbac6d3d4c8bcb1a7998c807366574d42362a1e1205000000000000000003101c28343f4a54606d7985929fa7b1bdc7d1d9d0c2b8aca0968e81756c62584e453b332920170e0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c787a7a7a7a7a7a7a7a7a7a7a7a7a7a786c605346392d20130600000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000020a1117232c363e44515c666e7b85929fa7b1bcc8d4dedbd0c5baaea2988d8073665c5144382c1f140900000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09090807060400000000000000000000000000000000000000000000000000000000000000000000000000000005111d29343e485056585d5d5d5d5d5d5d5d5d5d5d5d54524c443a2f24190d0100000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000006121f2c3844505c66727f8b97a1adbac4cfc9bdb2a89e92857a6d60574d42342a1e150b000000000000000000000000000000000000000000000714202d3946525e6874818e98a3aebbc0b5ab9f948a7e71695f544b40373d464e585f696e757d838b9196999d9fa4aca7a7a8a8a7a6a5aaa29f9b99928f868079706b61595f696e7980868d9196989c9d9e9fa29f9f9e9d9a9896918d89837d766e69625b6064615a50473d31271d10060000000000000000000000000006121f2b3844505c6673808d99a3aebdc7d1e1e9dfd3c6baaea2988f82756c61574d433930261d140b0400000000000000000000000000000000000000000000000000050e161f28303b444e58606d78839092857c6f6a5f574e453c332921170e0500000000000000030d161f282f353b42464f545c60686d737b8285796d60544a3f33291f130900000000000000000000000000000000000000000000000008131e2834404b54606d7985929fabb8c3ced9cec3b7aa9d908377695f53463a2d2114060000000000000000000b17232e3845515d67727f8c95a0abb5c0cbd7d4c8bdb2a89e938b7e716a5f574d453b322920191006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7c87878787878787878787878787877b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000006111a242834404a545e69727f8b95a0acb8c1ccd7e2d6cabfb4aa9e9185796d6053463b31261a0e02000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23171717171717171717171717171717171717161615151312100c07080705020000000000000000000000000000000000000000000000000000000000000000000815212d3945505a6264696969696969696969696969605d564c4135291d110400000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000000000713202d3a4653606d7984919ea9b3beccd2c5b9aca0968b7f72685d52453b3022180c0300000000000000000000000000000000000000000004101c2834404b55616e7a86929faab4bfbbafa3998f82766c61574d42393d474f58606a6f7b828991959ea0a8a9acafb6b3b4b5b5b4b3b2b4aeacaba39f98928c847d706b61696e7b838d92989ea0a8a8a9abacaeacabaaa9a7a8a19e9a949089827b716c605c545550483e352b1f150b00000000000000000000000000000713202d3a4653606d7984919eabb5bfcfd9e3e1d5c9beb3a99f92867b6e615a50453b31271e140b02000000000000000000000000000000000000000000000000000000040d161e29323d44505c66707d89867c6f6a5f584e453c332a21170f05000000000000000000040d161e242931363d424a50565d60696e757b6e675d5142382d20170d01000000000000000000000102020201000000000000000000020c18232e3945515c6774818d9aa8b1bdc8d4d1c5b8aca095887b6e6155483b2d22170b00000000000000000006111c2935404b55606d78839099a3afbbc4ced9cec3baafa59f92867c6f695e574d443b322b2217110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c89939393939393939393939399867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000081218232e39424d57606d7883909da6b0bbc7d3dedbd0c6b9ada1978a7d7164574d42362a1e1205000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2323232323232323232323232323232323232323232221201f1c18181514120e0906030000000000000000000000000000000000000000000000000000000000000a1724303d4956626c717676767676767676767676766d685d5245392c20130700000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000006121f2b37434e5864717e8a96a1acbbc5cfc9beb3a99e9184796d60564c4133291f10060000000000000000000000000000000000000000000006131f2c3845515c67737f8c98a3aebcbeb3aa9f92877c6e625a50453b3b454f59606a6f7c848f949da0a7acb2b6b9bbc0c0c1c1c2c1c0bebfbab8b5aeaaa39f9691877d706b6e7b8490959fa3aaacb2b5b6b7b8bab9b8b7b6b4b2adaba69f9c948f867e746d665d554b42392e231810070000000000000000000000000005111d2a36414c5663707d8a97a1adbdc6d1e1e6dacfc6b9ada1978c7f72695e52483e332a1f150c020000000000000000000000000000000000000000000000000000000000040c172028343f4a54606b75817d6f6a60584e463c332a21180f050000000000000000000000040c13191f262a30383f444c52575f62696e695e554b402f261c0e05000000030607080a0b0c0c0d0e0f0e0e0d0c0b0807060300000007121d2934404b55626f7c8995a0acb8c5d1d4c8bcb1a7988b7f726553493f33271b0f030000000000000000000d18242f3a44505c666f7c87929fa8b2bdc9d5d5ccc1baaea39891847b6e695e564d443d3428231c140c07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a0a0a0a0a0a0a0a0a09f928679675d5145392c1f130600000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000007121c27303b44505c666f7c89949eaab7c2cdd8e2d5c9beb3a99c8f8276695f53463a2d211408000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3030303030303030303030303030303030303030302f2f2e2d2c28232421211e1a15130f0a04010000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8383838383838383838383827a6d6054473a2d21140700000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000000000815212e3a47535f6a7683909da8b2bdcdd2c6b9ada1978a7e71665c51433a2f20170d00000000000000000000000000000000000000000000000713202d3a4653606d7985919eaab4bfbaaea2988d80736a5f53483e38414d57606b707c8591969ea6acb1b8bdc3c6c8ccd2cecccbcacad0cac6c5bfbbb4aea8a09992867d707a849196a0a7aeb4b8bdc2c3c4c5c6c6c5c4c3c0bdb9b8b0aba69f98928b81786d675d544b40342822190c030000000000000000000000000713202d3946525e6875828f9ba9b2becfd8e3e2d5c9beb3a99e9285796d60574d42362c21180d0300000000000000000000000000000000000000000000000000000000000000050e17232e38424f59606c796f6b60584e463c342a21180f060000000000000000000000000001080d141a1e262e343a41454d53575e615e574d43392f1d140a0507060c10121315161718191a1b1c1b1a1a1917151312100b0606040c18232f394754606a7784919daab7c4d0d9cec2b5a99c8f8276655b5044372b1f120500000000000000000007131d28343f4a545f6a73808d96a0acb9c0cad3d6cbbfb4aaa19691847b6e685e564e463e342e261e18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4adadadadadadadac9f9285796c554b4035291d100400000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000b151e28343f4a54606a75828f9ca6b0bbc7d3e1dacfc4b9ac9f93877b6e6155483b2f24190d010000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3c3b3a38342e312e2d2a25221f1b15110d0701000000000000000000000000000000000000000000000000000d1a2633404d596673808c90909090909090909090877b6e6154473b2e21140800000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000004101d2935404b55626f7c88959fabbac4ceccc0b6ac9e9285796d60544b4031281e0e050000000000000000000000000000000000000000000005111e2a36414c5664717e8b97a1adbcbfb5ab9f92857a6d60584e43333f49535e69707d869297a1a9b0b8bcc3c8ced2ccc7c6c3c0bebdbdbec0c3c5c7c6bfbab2aba39892867c828f96a1a9b1babfc6c8ccc7c6c2bfbcbbbdbec1c5c5c2bcb7b0aaa29f938e82796d665c51453f342a1e150b0000000000000000000000000714212e3a4754616d7a86929facb9c4cfdfeadfd2c6b9ada1978c7f72675d51453b30241a0f0600000000000000000000000000000000000000000000000000000000000000000006111c26303d44505b656c6560594f463d342a22180f060000000000000000000000000000000003090c141c23282f353c42474d5354534d453b31271d0b0e111414171c1f202223242526272828282726262422201f1c171313100c121d2b37434e586773808d9aaab4becad6d2c5b8ab9f9285796c605346392d201306000000000000000000010b17232e38424e58606d7984919ea4aeb8c1cbd5d0c6bcb2a8a09691847a6e68605850443f383028231c150c09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1bababababab8ab9f9285786c5f52452f24180c0000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000030c17232e38424e58636f7c89949fabb7c5cfdae0d4c8bbafa49a8c7f7265564c4135291d11040000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f62564a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a49494848464440413e3b3a36312e2b27201d18130d080100000000000000000000000000000000000000000000000d1a2733404d5a6673808d999c9c9c9c9c9c9c9c94887b6e6155483b2e22150800000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000006131f2c3945515d6774818d9aa7b1bcccd4c8bbafa49a8d8073665c5142392e1f160c00000000000000000000000000000000000000000000000714202d3946525e687683909ca9b3bebbaea3998d8073685d52463c3744505b656e7b859298a2a9b2bbc1c8ced0cac7c0bbb9b6b3b1b0b1b1b3b6b9babfc6c4bdb4aaa29892868f949fa9b2bbc3cbd0c7c0bbb9b5b2afaeb0b1b4b8babec5c2bcb4aea59d948f82786d605b51463c30271d120700000000000000000000030f1c28333f4a5464717e8b99a3aebbc7d3e0ebded1c5b8ab9e9285796d60554b4033291f120800000000000000000000000000000000000000000000000000000000000000000000000a141e27333f49535b605b534f473d342b2218100600000000000000000000000000000000000000020a11171e242931373b42464846423b33291f1514191e202123282c2d2f3031323334353535343332312f2d2b2823201f1c18121b27323d495663707c8998a2aebac6d3d3c6baada297887b6e6255483b2f2215070000000000000000000006111c26303c45515d67707d89929da6b0b9c3cdd6cec4bab2a8a09691837a6f6a615a504a423c342e271e1a140e0902000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1bec6c6c6c5b8ab9e9285786b5f52452f24180d0100000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000006111c26303d4854606b76828f9ca9b3becad6e2d8ccc0b6ac9c8f8376685d5245392c2013070000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256565656565656565656565656565656565656565656565656555453514a4e4b4846423c3b37322c29241d19130c04000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7a9a9a9a9a9a9a195887b6e6255483b2f22150800000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000000000714202d3a4753606d7985929fabb8c2cdd2c6b9ac9f93877b6e61544b4030271d0d0400000000000000000000000000000000000000000000000814212e3b4754616e7a86939facb9c4b9ac9f92867b6e61564c4137434e58606c77828f97a2aab3bbc4cdd4cec6bfbab5afaca9a6a4a3a4a5a6a9acaeb4b9bdc4bcb4aaa29993999fa6b0bbc4cdccc3bdb5afaca8a5a3a2a3a5a7abadb3b8bdc3bebaafa69e948e81746d63584e43392e23180c0100000000000000000006121f2b3844505b6675818e9babb5bfcbd7e3e0d4c8bcb1a79a8d8073675d5143392f21170d000000000000000000000000000000000000000000000000000000000000000000000000020c17222d38414950535049413d342b2219100700000000000000000000000000000000000000000000060b131920262b31363a3b3a363129211a1e21252a2d2e2e34383a3b3d3e3f3f4041424141403f3e3b3a38342e2d2c28231f1c202d3a4653606d7985929fabb8c5d2d6cabeb3a9978b7e7164584b3e2e23180c00000000000000000000000a141e2935404b55606b74808d949ea7b1bbc4ced6ccc4bab2a8a09591847c716c605c544e444039302a261f1a140e080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd3d1c5b8ab9e9285786b554b4035291d100400000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000a141e2c38434f5964717d8a97a1adb9c6d2dfddd2c5b9ac9f92867a6d6054473a2d2114080000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f63636363636363636363636363636363636363636363636363626261605c545a5754534d4947433d39352f29241e160d090200000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4b6b6b6b6aea295887b6f6255483c2f22150900000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000004101d2935404b5564717e8a98a2aebac6d5c9bdb2a89c8f8276695f5342392e1e150b000000000000000000000000000000000000000000000005111d2935414c5665727e8b99a4afbbbdb2a89b8e8174695e52433a3a47535f6a727f8c949fa9b3bcc5cdd3cbc3bcb4aeaba49f9d9998979798999c9fa3abadb2bbc1bcb4aba49fa4abb0b8c2cdcbc2bab1aba49f9b99969596989a9fa2a9acb1bac0c1b8b0a69d938c7f726a5f554b4034281d12070000000000000000000613202d394653606c7985929eabb8c5d1dce7ddd1c4b8ab9f95887b6f62554b4031271d0f050000000000000000000000000000000000000000000000000000000000000000000000000006111b262f383f4446443f382f2b2219100700000000000000000000000000000000000000000000000001080d151a1f252a2d2e2d2a251f1f262b2e30363a3b3e3f444648494a4b4c4d4e4f4e4d4d4c4a4846443f3d3a38342e2b28232c3844515c6675828f9ca8b5c2cfdbd0c1b4a79a8e817467544b4034281c100400000000000000000000020c18242f39434f59606c78828f95a0a9b3bcc6d0d5ccc3bab1a7a09691867e746d665f58514a423c36312a251f19140e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7d2c5b9ac9f928679675d5145392c20130600000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000020c1b27323d4653606d7985929eabb8c5cfdae0d3c7bbafa3998a7d7164574a3e3024190d0100000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c70707070707070707070707070707070707070707070707070706f6f6e6d66696764615e5756544e4745413a352f281f19140d05000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7b4c1c3c3bcafa295897c6f6256493c2f23160900000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000006131f2c3945515d6775828e9baab3becad2c5b9ada1968a7d7064574d4230271d0c0300000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0b8aca096887c6f62574d4236414c56626e7c86929fa6b0bcc5ced3c9c1b9b1aaa29f9993908d8b8a8a8b8d9092999ea1a9afb7c1bdb5afacafb5bdc2cad0c2b9b1a8a099938f8c89888a8b8e92979da0a8aebbbfc1b8afa59f92877c6f675c5145392f24180d0100000000000000000916232f3c4956626f7c8997a2adb9c6d2e3e9dcd0c3b6a99d9083766a5f5343392f1f150b0000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262d33373937332d261d19100700000000000000000000000000000000000000000000000000000003090e141a1e2121211d23282c31373a3b4246474b4a505355565758595a5b5b5b5a5959575553504a4a4645403a38342e2934404a5466737f8c99a6b2bfcfdad0c3b7aa9d908477665c5145382c1f1306000000000000000000000007121d27313d44505b666d79839097a1aab4bdc6cfd5ccc3b9b1a8a198928b80786e6a605c544e46423b36302a251f1a140e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d3c7baaea398867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000a161f2c3845515c6674808d9aa9b3becad6e2d7cbc0b5ab9b8e817468564c4135291d110500000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3d8cbbeb2a5988b7f7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c7c7b7b79787674716e696762605854514b45413a312a251f170e080000000000000000000000000000000000020e1b2835414e5b6874818e9ba7b4c1cec9bcafa296897c6f6356493c3023160900000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000714202d3a4753606d7986929facb8c5d0d1c4b8ab9e9184786d6053463b3120150b0000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c4b7aa9e9184776a6054453b3946525e6874818e98a3aeb8c2ced5cbc1b7afa79f98928d8783807e7d7e7e8083868c91969ea5afb7c1c0bbb9bbc0c7d0d2c7bdb1a79f959187827f7c7b7d7e81858a91959da4aeb5bdc1bbafa3999083796d60554b4035291d120700000000000000030f1b27333f49536673808c99a9b3becad6e2e1d4c8bdb1a8988b7f7265584e4331281d0d03000000000000000000000000000000000000000000000000000000000000000000000000000000020b141b22272b2d2b27221b140b0700000000000000000000000000000000000000000000000000000000000003090e11171d24292e34383c4247484d525458545c606263646566676868686766656462605c545753514b46443f38352f3d4a5763707d8a96a8b2bdc9d5d2c5b9ac9f9286796d6053463a2d2013070000000000000000000000010b151f28333f4a545d676e7b859198a3abb4bcc5ced5ccc3bab2aaa39f928d837c736d666058534d46423b36302a251f1a140e08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbccfdad7cbbfb4aa94877b6e6154483b2e21150900000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000004101c2834404b54626f7c8997a1adb9c6d2dfdcd1c4b7aa9e918477685d5246392d20130700000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3d9ccc0b3a79b918b8989898989898989898989898989898989898989898989898989898887868483817e7b78736f6a65605d55524c433e3630292019110900000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cec9bcafa396897c706356493d3023160a00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000b1724313e4a5764717d8a98a2aebac6d3c8bcb1a7998c7f73665c5044382b1f12030000000000000000000000000000000000000000000000000b1724313e4a5764717e8a99a3afbbbcb1a7998c807366584e4334404a54616d7a86929faab4bfcad4cec3b9afa59e959086807a76737170717273767a7f848e939ea5afb9c3c7c6c7ccd2d7ccc0b5ab9f9590837c7572706f707274797e848d929fa3abb5bfc0b5aba0958c7f72675d5145392f24180c0000000000000005121f2b3744505b6576838f9ca9b6c2cfdbe6ded1c5b8aca095877b6e6154483c3121160c0000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171b1f201f1b17110a0200000000000000000000000000000000000000000000000000000000000000060b141b22272f35394045464d5355565e616468666d6e7071727273747574747372716e6d666763605c5453504a4540393a4754616d7a8796a1adb9c5d2d4c7bbafa399887b6e6255483b2f221508000000000000000000000000030d17222d38424b555e696f7c869299a3aab4bcc5cdd5ccc4bcb4aea49d9590867f786f6a615f57524d46413b36312a261f19140d07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a9b3bec9d5dcd1bcafa396897c706356493d31261a0d04000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000c18232e394653606c7985929eabb8c5d1deded2c5b9aca096877a6d6154473a2e21140700000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0707070707070707070707070707070707070707070707070707070707111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3dccfc3b8ada39b98969696969696969696969696969696969696969696969696969695959992918f8d8a8784807c77726d67605d565046423b322b231b130a010000000000000000000000000000020f1c2935424f5c6875828f9ba8b5c2cec9bcb0a396897d7063564a3d3023170a00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000005121e2a36424d576874818e9baab4bfcad1c5b8aca095877b6e61544a3f34281c1003000000000000000000000000000000000000000000000004101c2934404b556774808d9aabb5c0b8aca095887b6f6255483c3844515c66737f8c98a3aebcc6d1d0c6bcb1a79e938f837b736e68666564646566676d727a818e939ea7b1bcc8d2d4d7ddd4c7bbafa4999083796f6a6663626365676d7179808a9299a3aebbbfbdb1a79e9285796d60554b4035291d12070000000000000613202d394653606c7985929fabb8c5d2deeaddd0c4b7aa9d918477695e53463a2d21140400000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f1213120f0b0600000000000000000000000000000000000000000000000000000000000000010710181d262d333a41454b5153575f6266696e717477797b7c7d7e7f8081828180807f7d7b797674706d6664605c54514b443f46525e687884919eabb7c4d1d7cbc0b5ab968a7d7063574a3d3024170a0000000000000000000000000006111c262f3a434d57606a717e879298a2aab3bbc4ccd5cec6bfbaaea79f99928c837c746e69615e57524d46423b36312a251f18130b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8797a1adb9c6d2d9ccbfb3a6998c807366574d42372b1f160b020000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000007121f2b3844505b6675818e9ba8b5c1d0dbe1d5c9bdb2a896897d7063564a3d3023170a00000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e312417141414141414141414141414141414141414141414141414141414141414141e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3e0d4c9bfb5ada7a5a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a2aba39f9e9c9a9796918d89847f7a736d68615a524d443d352d251c130a0100000000000000000000000000030f1c2936424f5c6975828f9ca8b5c2cfcabdb0a3978a7d7064574a3d3124170a00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000714202d3a46525e697884919eabb7c4d0d0c3b7aa9d908477695e5342382e23170b00000000000000000000000000000000000000000000000006131f2c3845515c677683909da9b6c3b7aa9d9184776a5f53473a3a4653606d7985919eaab4bfcfd6cabfb4aaa0958f81796e69615e5658575758555d60686d77818e95a0abb8c3cdd9e3dfd2c6b9ac9f93877b6e676058565557555d60676d747e87929fa3adb8c2b9ada1978c7f72675d5145392e23180c0000000000000815222e3b4855616e7b8898a2aebac6d3dfe6dacdc0b3a79a8d807467574d42362a1e120500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003050605030000000000000000000000000000000000000000000000000000000000000000030b1218222a2f383f444b51555c6065696e73777b7e81838688898a8b8c8d8e8e8e8d8c8c8a888583817d7975716d66605d55504a424c566976838f9ca9b6c2cfdcd1bfb2a5988c7f7265594c3f3226190c00000000000000000000000000000a141d28313b454e58616c717e869298a1a9b2bac3cbd5d0cbc0b9b1aba39f959087817b746e69615e56534d46423b363029241d17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e687885929eabb8c5d1dcd0c3b6a99d908376695f53473c31281d140c0300000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a5464717e8b97aab4becad6e2d9cebfb2a5998c7f7266594c3f3326190800000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e31242121212121212121212121212121212121212121212121212121212121212121212b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3e6dbd1c7bfb8b3b2b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0afafb5afacaba9a7a8a19e9a96918c85807a716c615e564f473f372e251c13090000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfcabdb0a4978a7d7164574a3e3124170b00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000815212e3b4854616e7b8796a1acb9c5d2cbbfb4aa9a8d807367574d4230261c11060000000000000000000000000000000000000000000000000714202d3a4753606d7986929facb9c0b4a79a8d817467584e43373d495663707d8997a1adbcc6d1d3c6baaea2989083796d675e57524c4b4a4b4b4b51565d656d7883909da7b1bcc8d4e4dbcfc2b5a89c8f8275695f554e49484a4b51555d606c717e8b919ca6b0bdbeb3a99e9185796d60554b4034281c100400000000000b1724313e4a5764717d8a97aab3becad6e2e1d5c9bdb2a8968a7d7063574a3d31251a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d151d2329343c414950555d60676d71767b8084878b8e909298969798999a9b9b9b9a9998979892908d8a85817d78726d67605b544e4e5b6774818e9aa7b4c1cddacdc0b4a79a8d8174675a4e4134271b070000000000000000000000000000020b161f29333d46505a616c717d869297a1a8b1b9c0c9cfd6cbc2bdb4aea7a099928e86817b746e68615e57534d46413b352f27221b140b07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c566875828f9ba8b5c2cfdad2c6b9ac9f93877b6e62584e433a2f261e150d05000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000b17222d3b4855616e7b8898a2aebac6d3dfdbcec2b5a89b8f8275685c4f422f24190d01000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e312e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3ede2d9d1c9c3c0bebcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcc0bbb9b7b6b4b2acaba8a09e97928d857e766e69605951493f372e251b110700000000000000000000000003101d293643505c6976838f9ca9b6c2cfcabdb1a4978a7e7164574b3e3124180b00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000b1824313e4b5764717e8a97a8b2bdc9d3c7baaea398897d7063564a3d3123140a00000000000000000000000000000000000000000000000000091623303c4956636f7c8999a3aebabdb2a8978a7e7164574b3e343f4a546673808c99a9b3becfd6cbbfb4aa9f92867b6e675d554d46413e3d3e3f41454c535c666f7c8995a0acb8c7d2ddd8cbbeb2a5988b7f7265574d433d3c3d40454b515a616c727f8c949fabb5c0b9ada1978b7f72675c5145382c1f130600000000000d1a2733404d5a6673808d99a6b3c0d0dbe6dfd2c5b9ada196877a6d6154473a2e211409000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d161f272f343f464e535b60676d72797e83888c9095979b9d9fa3aaa4a5a5a6a7a8a7a7a6a5aaa29f9d9a98928e8a847e79726c665f58515965727f8c98a5b2bfcbd8cfc2b6a99c8f8376695c50432f24180d010000000000000000000000000000040d17212b343e48505a616b707c859196a0a7aeb9bec5cdd7cfc6bfbab1aba39f99928d86807b746e69615f57524d45413a332d261d18120b03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303f4c5966727f8c99a8b2bdc9d5d4c7bbafa4998e81746a5f554b423830271f170f070000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7985929fabb8c5d2deddd0c3b7aa9d9084776a564c4135291d1104000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a44515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3f0ebe2dbd4cfcccbc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9d1cbc7c5c4c2c0bdb9b7b2aca9a29f97918b827b706b625b51493f372d23190e05000000000000000000000003101d2a3643505d697683909ca9b6c3cfcbbeb1a4988b7e7165584b3e3225180b00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000005111d2935414c566774818d9aa7b4c0ced2c5b8ac9f9286796d6053473a2d201407000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98abb4bfb9aca196877b6e6154483b3844505c6676838f9ca9b6c2cfd3c7baaea3988d8073695f554b433b363031312f353a414a54606a7783909dacb6c0ccd8d5c9bcafa296897c6f6356493c312f2f35394045505a636d76828f99a3afbbbeb3a99e9184796d6053463a2d22170b00000000030f1c2936424f5c6975828f9ca8b5c2cfdbe8ded1c4b7ab9e918478685e5246392d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e1720283139404550585f656c717a7f848b9095999da0a7a7aaacaeb4b0b1b2b3b4b5b4b3b3b2b4aeaca9aaa29f9b96918b857f786f6a635b5764707d8a97a3b0bdcad6d1c4b7ab9e9184786b554b4035291d1104000000000000000000000000000000050f19222c363e485059606a6f7b8490959da4adb3bbc2cbd1d1cbc3bdb5afaba39f98928d86817b746e69615e56514b443f382f28231d150c06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081623303c4956636f7c8996a1adb9c7d2d7ccc0b5ab9f92877c6f675d544a423931292118120b03000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b657683909ca9b6c3cfdcdfd2c5b8ac9f928579685d5245392c201307000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a474747474747474747474747474747474747474747474747474747474747474747474747474747515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3f3ebe3dcd7d4d2d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d1d2d3d7dcd7d4d2d1cfcec9c5c4bdb9b3ada9a19e948f857d726d635b51493f352b20170b020000000000000000000004111d2a3744505d6a7783909daab6c3d0cbbeb1a5988b7e7265584b3f3225180c00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000713202d3946525e687784919daab7c4d0cfc2b5a99c8f8276675d5145382c1f1306000000000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4c0b7ab9e918478695e52463a3a4653606d7985929facb8c5d2d2c5b8ac9f92867a6e61574d4339312a25242424292f38424e5865727f8b9aa4afbbc8d4d4c8bbaea195887b6e6255483b2f2224292f353e48515b626f7c87929faab4bfb9ada1968a7d706353493f33271b0f0300000004111d2935414c566a7784919daab7c4d0dde8dbcfc2b5a89c8f827569564c41362a1d110500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d172029323a434b515a626a6f787e858c91979d9fa7aaacb1b4b6b9babfbdbebfc0c1c1c1c0bfbfbfbab8b6b4aeaba8a09e97928b837c726d605c626f7c8995a2afbcd0dbd2c5b8ac9f928579675d5145392c2013060000000000000000000000000000000007101a242c363e474f5860696e7b838d929ea1a9b0babfc6cfd4cfc7c0bbb5aeaaa39f98928d87817b746e68605d555049413c342e271e18100801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7984919eabb5c0ccd7d2c7bbafa3999184796d665c544b433b3328231d150c060000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000030f1b27333f49536774808d9aa7b3c0cddadfd3c6baaea298877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d71645754545454545454545454545454545454545454545454545454545454545454545454545454545454545e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3ebe1d9d1cbc7c5c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c4c5c7cbd1cdd1d2d5dadad5d2cec9c5bebab3ada69f9792877f726d635b51473d32291d140a0000000000000000000004111e2a3744515d6a7784909daab7c3d0cbbeb2a5988b7f7265584c3f3225190c00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000714212e3a4754616d7a86939facb9c6d2c9bdb2a9988c7f7265554b4035291d1004000000000000000000000000000000000000000000000000030f1b27333f49536976828f9ca9b5c1b5a89b8e827568574d42363c4956626f7c8998a2aebac6d3cec1b5a89b8e8275685e52453b31271f191718181d26303d4754616e7a87939facb9c6d2d4c7baaea194877b6e6154483b2e21181d2429364047535f6a74818d98a2aebabdb2a89a8e8174655b5044372b1f12050000000713202c3945525d687985929facb8c5d2dfe6d9ccbfb3a6998c807366594d403025190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c161f29323b444c555c606c717c838b91979ea1a9abb1b7b8bcc1c3c5c7cbd1cbcccdcecececdccd0cac7c5c3bebab8b2aca9a19e9590867f746d66616e7b8794aab4bfcad6d3c7baaea398867a6d6053473a2d201407000000000000000000000000000000000008121a242c353d464e575f696e79808a92979fa6aeb4bcc1c7cdd1cbc6bfbbb4aeaaa39f99928e86817b736d67605b534e454039302a2219130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c6673808c99a4afbbc6d0d7cbc0b5aba0968e81786d665d554d453e342e271e180f0701000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000b17222d3f4c5865727f8b98a5b2becbd8e2d6cabfb4aa95887c6f6255483c2f221509000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164616161616161616161616161616161616161616161616161616161616161616161616161616161616161616b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3e3d9cfc7c0bbb9b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b7b8b9babfbdc1c4c5c9ced3d6dbd9d5d0cac4beb9b0a9a199938b7f726d62594f443a2f261c110600000000000000000004111e2b3744515e6a7784919daab7c4d0cbbfb2a5988c7f7265594c3f3226190c00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000a1724313d4a5764707d8a9aa4afbbc8d2c5b9ada196887b6f6255483c2f24180c0000000000000000000000000000000000000000000000000005121f2b3744505b657784919daab7c0b3a6998d8073665a4d40303e4a5764717d8a97aab4bfcad6cbbfb4aa988b7e7265564c4133291f150d08070b15202d3946525e687784919daab7c4d0d4c8bbaea195887b6e6255483b2f22151218242b37434e58616d7a86929facb8c4b8ab9e9185786c605346392d2013080000000714212d3a4754606d7a8798a2aebac6d3dfe4d7cabdb1a4978a7e7164574b3e31241808000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e28313b444c565d676d757e8690959ea1a9adb2b8bcc2c5c8ced0d2d2d1cecbd0cac6c5c4c5c6cad0caced0cac6c4bdb9b3ada79f99928c81786d676d7a8698a2aebac6d3d6cbbfb4aa94887b6e6155483b2e22150800000000000000000000000000000000000008121a232b343c454d575e676d747d858f949fa3aaafb8bcc2c9ced1cbc6bfbab4aeaba39f99928d86807a716c655f58514b423c3429241e160d06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616e7b87939faab4bfcbd6d1c7bdb2a89e938e81786d675e574f454039302a2118130c040000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000061724313d4a5764707d8a97a3b0bdcad6e7dbd0bdb0a3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d716d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e8dcd1c7bdb5afacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacaeb4b1b4b7b9bdc4c6cad0d6dbdbd6cfc9c2bbb3aba49f918c7f726b60564c42382d22170b04000000000000000005111e2b3844515e6b7784919eaab7c4d1ccbfb2a6998c7f7366594c403326190d00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000010d1a2734404d5a6773808d9aacb6c0ccd1c4b8ab9e9184786a5f53473a2e1d1207000000000000000000000000000000000000000000000000000613202d394653606c7986929facb9beb1a4988b7e7165584b3e323f4b5865727e8b98a5b1bed0d3c7baaea398887b6e6255483b3022170d03000005111e2a36414c566774818e9aa7b4c1cfdbc8bcafa295897c6f6256493c2f231607121b26313c46525e6875818e9ba9b3beb9ada197897c6f6256493c3025190d0100000915222f3c4855626f7b8895aab4bfcad6e2e2d5c9bcafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303a434c565e686d79818b92989fa7adb3b9bec4c8cdd1d4d2cfc9c5c4c1bebbbfbab8b8b8babfbbbec1c4c5c9cec9c5beb9b1aba39f938e82796d677985929facb8c5d2dcd0bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000081119222b333c454d555c606b707a828b92989ea5abb1b9bdc4cacfd0cbc6bfbab5afaba39f98928d847e786f6a605c544e463f352f281f180f0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3846535e6975828f98a3aebac3ced7cfc3baafa59e938e81796e696159514b423c3329241d160d0600000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcc8d5e2d7cbbeb1a4988b7e7165584b3e3225180b000a1724313d4a5764707d8a97a3b0bdcad6e3d7cbbeb1a4988b7e7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a84919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3d7cbc0b5aba39f9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9e9fa3aba4a7abacb2b8babfc6cacfd7dfdad5cdc5bdb5afa39f92877d6f685e544a3f332821160a000000000000000005121e2b3845515e6b7884919eabb7c4d1ccbfb3a6998c807366594d4033261a0d00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000004101c2934404b55697683909ca9b6c3d2cec1b5a89b8e827568584e43372b1f0b01000000000000000000000000000000000000000000000000000814212e3b4754616e7a8798a3aebabcafa396897c706356493d33404c5966737f8c99a6b2bfccd2c5b8ac9f928579695f53473a2e211406000000010d1925303e4b5864717e8b97a9b3becad6cabdb0a4978a7d7164574a3e312417060a15202a36414c5664707d8a97a2adbabeb3a9998d807366564c41362a1e110500000a1724303d4a5763707d8a96a3b0bdd0dbe7e2d5c9beb3a994887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e17232e38424b555e686e7a828e939fa2aab1b9bec4c9cfd4d4cfc9c6c4bdb9b7b4b1afb4aeacabacaeb4afb1b4b7b9bdc4c5c9c9c2bdb4aea59d948f82786d7884919eabb7c4d1d6c9bdb0a3968a7d7063574a3d3024170a0000000000000000000000000000000000000000071019212a333b434b515961686e777f868e939d9fa7acb2b9bec5cacfd1cbc7c0bbb5aeaaa29f97918b837c736d665f585145413a312a211910080000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2a36424d57616e7b86929fa8b2bcc5d0d5ccc1b7afa59e938f837b706b605c544d453f352f281f181009000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbad1dce7d8cbbeb2a5988b7f7265584c3f3225190c000a1724313d4a5764707d8a97a3b0bdcad6e3d8ccbfb3a79b918b87878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787879196a0acb9c5d2deded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e0d4c7bbafa39992909090909090909090909090909090909090909090909091929994979a9ea1a8acaeb4b9bec5cdd7dddfd6d0c7c0bbafa39991847a6d665b50443d32271b0f050000000000000005121f2c3845525f6b7885929eabb8c5d1ccc0b3a6998d8073665a4d4033271a0d00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000006131f2c3845515c677885919eabb8c4d1ccbfb3a6998c807366594d4031261b0f00000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995aab4bfbfb4aa94877b6e6154483b34404d5a6773808d9aa6b3c0cdd1c4b7ab9e9184786b574d42372b1e1206000000000815222f3b4855626e7b8897a2adbac6d3cbbfb2a5988c7f7265594c3f2e23170b030d1925303a4653606d7985929fabb8c3b7aa9d908477685e5246392d20130700000b1825323e4b5865717e8b98a4b1becbd7e4dfd2c6b9ada19786796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c162028343f4a545d676e7a8390949ea5aeb4bcc2c9cfd5d7cec8c5beb9b8b2adaba8a4a2aaa29f9e9fa2aaa2a4a7abadb2b8b9bdc4c8c6bfbaafa69f948d80747784909daab7c3d0d7cabeb1a4978b7e7164584b3e3125180b000000000000000000000000000000000000000000070f182129313940454f565e656c727b828990959ea0a8adb3babec5cad0d1cbc6bfbbb4aea9a19e95908780796f6a625b514c433c332b231a1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a25313b46535f6973808c96a0aab4bec7d2d3c9c1b7afa59e9590857d746d665f575045403a312a221b12060000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693aab4bfcbd7e3d8ccbfb2a5998c7f7266594c3f3326190c000a1724313d4a5764707d8a97a3b0bdcad6e3dbcfc3b7aca39b9894949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949ea0a8b2bdc9d5e1ded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6dfd2c5b9ac9f92878383838383838383838383838383838383838383838384858687888a8e91969a9fa2aaadb3bbc2ccd2d9e2d9d2cbc0b5aba1968f82786c60594f43382c21170b0000000000000006121f2c3945525f6c7885929fabb8c5d2cdc0b3a79a8d8074675a4d4134271a0e01000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000714202d3a4753606d7a86939facb9c6d2ccc0b6ac978a7e7164574b3e3124180a00000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcbaaea39886796d6053463a35414e5b6874818e9ba7b4c1ced0c3b6aa9d9083776a5d504431261a0e02000000000613202d394653606c7985929fabb8c5d2cdc1b4a79a8e817467544a3f34281c100308131f2c3845515c6674818e9aa7b4c1b8aca095877a6d6154473a2e21140700000c1926323f4c5965727f8c98a5b2bfcbd8e5ded1c5b8ab9e928578675c5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323a44505c666d798390959fa6afbabfc6ced5d8d1cbc3bcb8b3adaba8a19e9b98959498929192989495979b9ea1a8abadb2b8bcc3cac1b8b0a69d928b7e7783909daab6c3d0d8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000000000000000060f171f272f343e444c535b60696e757c838a91969ea1a9adb3babec5cbd0d1cbc6bfbab2ada79f99928c837c726d605d554d453d352b231a110800000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2a36424d57606d79849198a2acb6c0ccd2d3c9c1b7afa7a097928880796e69625a514b433c342d2417110a02000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c798698a3aebac7d3e0d9ccbfb3a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6e3dfd4c9beb5aca7a4a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0aaacb2bac4ced9e5ded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285787777777777777777777777777777777777777777777778797a7b7e8184888d92989ea2a9b0bbc0c7d0d9e1dcd1c7bdb2a99f948c80736b6054483e33281c100400000000000006131f2c3946525f6c7985929facb8c5d2cdc0b4a79a8d8174675a4e4134271b0e01000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000815222f3b4855626e7b889aa4afbbc8d4c8bbafa49a887c6f6255493c2f22160900000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdb8ac9f928579665c50443835424e5b6875818e9ba8b4c1cecfc2b6a99c8f8376695c504336291d09000000000005121f2b3744505b6576828f9ca9b5c2cfd0c3b6a99d908376665c5044382b1f120604101c2834404b5464717e8a97aab4bfbcb1a796897c706356493d3023160a00000d192633404c5966737f8c99a6b2bfccd9e5ddd0c4b7aa9d9184776a554b4034281c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1924303a444f59606d78828f95a0a7b0b8c1cad0d8d5cfc6bfbab1aca9a19e9996918e8b8887868585858687888b8e9196999ea1a9abb1babec5c2b8aea49f92867a83909ca9b6c3cfd8ccbfb2a5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000000050d151d2329323b414950575f616b6f767e848c92979fa2a9aeb3babfc6ced5d0cac4beb9b1aba39f9591867f756d675f574f473d352c231a10070000000000000000000000000000000000000000000000000000000000000000000000000000000000030e1a26313b45515d676e7c86929aa4afbbc0c7d0d3c9c1b9b1a9a19a938d837b716c605d554e463e3628221c140b020000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b667986929facb9c5d2dfd9cdc0b3a69a8d8073675a4d4034271a0d000a1724313d4a5764707d8a97a3b0bdcad6e3e5dad0c7beb7b3b1adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadb7b9bdc4ccd6e0ebded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6b676d6e7174787b80868c92979fa6afb5bdc7cfd9e3d9cfc4bbb0a69f93887c6f63594f44382c20160a00000000000005121f2b3744505b657986929facb9c5d2cdc1b4a79a8e8174675b4e4134281b0e01000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000a1724303d4a5763707d8a96acb6c0ccd2c6b9ac9f93867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdb8ab9e9285786b5f4a3f3434414e5b6774818e9aa7b4c1cdcfc3b6a99c908376695d5043362a1d060000000000030f1b27333f49536673808c99a6b3bfced2c5b8ac9f9285796d6053463a2d201307000c18232e3b4855626e7b8898a2aebabeb2a5988b7f7265584c3f3225190800000d1a2733404d5a6673808d99a6b3c0ccd9e6ddd0c3b6aa9d9083776a5d50442e23180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c56606b74808d949fa7b1b9c2cad6dbd3cbc3bcb4aea7a09d97928c8884817e7c7b7a7978797a7b7c7e8184888c91969d9fa7adb3bcc1c0baaea2988e81828f9ca9b5c2cfd9ccbfb2a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000030b121820292f383f444d535960636c71797f858c92979fa2aaaeb4bcc1c9ced6cfc9c2bdb5aea7a098928b82796e6960594f473e352c23190f06000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2935404b555f6a707e88939fa3afb6bec5ced3cbc3bbb3aca49f9590867e756d675f58504840332d261d140b0200000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a5f6c7885929fabb8c5d2dedacdc0b4a79a8d8174675a4e4134271b0e000a1724313d4a5764707d8a97a3b0bdcad6e3ece2d9d0c9c3bfbebababababababababababababababababababababababababababababababababababababababababababababababac4c5c9ced6dee8ebded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d555d60616467696e737a7f858f949fa4abb5bdc7d1dce1d6cdc2bbafa49a9083766b6155483d32271b0f0100000000000613202d394653606c798699a3aebbc7d3cec1b4a79b8e8174685b4e4135281b0e02000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000c1825323f4b5865727e8b98a5b1bed2d1c4b7ab9e918478675d5145382c1f130600000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1beb7ab9e9184786b5e51452e34414d5a6774808d9aa7b3c0cdd0c3b7aa9d9084776a5d51442e23170b0000000000000b17222d3d4a5763707d8a96a8b2bdc9d3c6baaea298887b6f6255483c2f221507000713202d394653606c7985929facb8c0b4a79a8d8174675a4e413025190d01000e1a2734414d5a6774808d9aa7b3c0cddae6dcd0c3b6a99d9083766a5d5043372a1d07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d18212c3945525d68707d88939fa6b0b9c3cbd4dbd3c9c1b9b1aaa39f95908b85807b7875716f6e6d676b676d6e6f7174787b7f848a90959fa2a9b0bbc0beb4aa9f938784919eaab7c4d1d9ccc0b3a6998d8073665a4d4033271a0d0000000000000000000000000000000000000000000000000001070e171d262d333c42464f545a61666d727a7f858c92989fa3aab0b9bdc4cbd1d5cfc6bfbbb1aaa39f948f837b6f6b60594f473e352b22180c0300000000000000000000000000000000000000000000000000000000000000000000000000000000030c18242f39434e58616c727f8b919fa4acb3bcc3ccd6cdc5beb6afa7a098928b81796f6a615a51443f382f261d140a00000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000b17222d46525f6c7985929facb8c5d2dfdacdc0b3a79a8d8074675a4d4134271a0e000a1724313d4a5764707d8a97a3b0bdcad6e3f0ebe2dad4cfcccbc7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d1d2d5d9e0e8f0ebded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f52505050505050505050505050505050505050514b51545557575f61686d737b828c9399a3abb5c0cbd7dcdfd8ccc0b6ac9f948a7d7063584e43372b1d130700000000000713202d3a4653606d798693a0b5bfcbd7cec1b5a89b8e8275685b4f4235281c0f02000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000010d1a2734404d5a6773808d9aa6b3c0cdcfc2b5a89c8f827569554b4035291d100400000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2beb7aa9d9184776a5e51443734404d5a6773808d9aa6b3c0cdd1c4b7ab9e9184786b544a3f34281c100300000000000614212e3a4754616d7a8796a1acb9c5d2cabfb4aa978b7e7164584b3e2e23180c0006121f2b3844505b667683909da9b6c3b6a99c90837669564c41362a1d1105000e1b2834414e5b6774818e9aa7b4c1cddae7dccfc2b6a99c8f8376695c504336291d1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2a36424d57606d7a84919aa4afb8c2cbd5dcd3c9c1b7afa7a098928c837e79736e6968656261605d555c6061626468696e73797e838b92979ea6afb6bebbafa499939196a0acb9c5d2d9cdc0b3a69a8d8073675a4d4034271a0d000000000000000000000000000000000000000000000000000000050b141b222731373d434850545c60676d737a80858d92989ea6acb2bbc0c7cfd6d1cbc3bcb4aea69e9591857d706b61594f473d342a1e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c46505a626d727f8b939aa2aab2bac1cad0d0c7c0bbb1aaa29f938e837c716c635b504a42382f261c1106000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c667986929facb9c5d2dfd9cdc0b3a69a8d8073675a4d4034271a0d000a1724313d4a5764707d8a97a3b0bdcad6e3f0f4ece5dfdbd8d7d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3dddee1e5ebf2f8ebded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245444444444444444444444444444444444444414547484b4d53565d61686e787f879299a3afbbc0cad4e2ddd2c7beb0a69d9083776a6054473a2f24180d01000000000714202d3a4753606d7a8693a0adb9d1dccec2b5a89b8f8275685c4f4235291c0f02000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000020f1c2935424f5c6875828f9ba8b5c2cecdc0b3a69a8d8073675a4d402f24180c0000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfb6aa9d9083776a5d504437333f4c5966727f8c99a5b2bfccd2c5b8ab9f928578665c5044382b1f120600000000000713202d3946525e687884919eabb7c4d1d0c0b4a79a8d817467544b4034281c1004030f1c28333f4a546774818e9aa7b4c1b8ab9e928578685e5246392d201307000e1b2835414e5b6874818e9ba7b4c1cedae7dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313a46535f6974808d96a1acb6c0cad3ddd4cac1b7afa59e9590867f78716d67615f5758555453514b5153545558575f61666d71777e858f949fa4acb5bdb5aba49f9ea0a8b2bdc8d4dacdc0b3a79a8d8074675a4d4134271a0e00000000000000000000000000000000000000000000000000000000020a11171f262b32383e424b51555d60686d737a80868f949ea1a8afb5bdc4ccd7d7cfc6bfbab0a7a09792867d706b61594f463c30271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a343e47515b626d727f889298a0a8afbabec5ced2ccc3bcb4aea59e9591867e736d605b544a42382d221711080000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798699a3afbbc7d4e0d9ccbfb3a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6e3f0ebe3dbd4cfcccbc8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8d1d2d5dae0e8f0ebded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f524539373737373737373737373737373737372f35393a3b3e42464c52565e666c737e87929fa4aeb8c2d0d9e4d9d0c2b8aba095897c6f62554b4035291d1104000000000714212e3a4754616d7a8794a0adbac7d3cfc2b5a89c8f8275695c4f4236291c0f03000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000003101c28343f4a546a7784909daab7c3d0cbbeb1a4988b7e7165584b3e322518070000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2beb7aa9d9184776a5e514437313e4b5764717e8a97a4b1bdd0d2c6b9ac9f9386796d6053463a2d201307000000000005111d2a36414c566875828f9ba8b5c2ced0c3b6a99d908376665c5145382c1f1306000b17222d3f4c5865727f8b98a5b2beb9ada297877a6d6154473a2e211407000f1b2835424e5b6875818e9ba8b4c1cedbe7dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d57616e7b86929fa8b2bec7d2dcd5cbc2b8afa59e938e837c726c66605c55534d4b4948474540454748494b4d53545c60646c717b828b939aa4abb5bdb5afacaaacb2bac3ced9dacdc1b4a79a8e8174675b4e4134281b0e000000000000000000000000000000000000000000000000000000000000060b141a21272c303940454b51565d60686d737b828a91969fa3abb2bac1cbd1d8d1cbc1b9b1a9a29892867d706b60584e43392e23180e0400000000000000000000000000000000000000000000000000000000000000000000000000000000030d18222c353f49515b626d727d8691969ea5aeb3bcc2cbd1cec6bfbaafa8a098928b7f746c665b544a3f3328231a0e0500000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0b5c0cbd7e3d8ccbfb2a5998c7f7266594c3f3326190c000a1724313d4a5764707d8a97a3b0bdcad6e3ede3d9d1c9c4c0bfbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbc4c5c9ced6dee8ebded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a24292c2d2e31363a41464d545b606c727f8b929ca6b0bec7d2dde2d4c8bcb1a79b8e8174675d5145392c201306000000000814212e3b4754616e7a8794a1adbac7d4cfc2b6a99c8f8376695c504336291d1003000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000006121f2b3844505c667885929fabb8c5d2c9bcafa296897c6f6356493c302316090000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1beb7ab9e9184786b5e51452e303d495663707c8996aab4bfcad4c8bbafa49a877a6d6154473a2e2114070000000000010d192530404c5966737f8c99a6b2bfcfd2c5b9ac9f9286796d6053463a2d20130700061724313e4a5764717d8a97a4b0bdbeb3a995887b6e6255483b2f221508000e1b2834414e5b6774818e9aa7b4c1cddae7dccfc2b5a99c8f8276695c4f4336291c1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f6975818e99a3aebac4d0d9d9cec3b9b0a69e938e81796f6a605b54514b46423e3c3b3a3835383a3b3c3e42464a51535a62696e757f889399a3abb5c0bbb9b7b9bdc3ccd5e0dacec1b4a79b8e8174685b4e4135281b0e0000000000000000000000000000000000000000000000000000000000000003090e161b1e272e343a41454c52565d60696e757d848d9299a1a8b0bbc0c7cfd8d7ccc3bbb3aaa29892867d6f6a5f554b40342820160c0200000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a232d373f49515b626b707c848e939fa2aab0bbc0c7cfd0cac1bab1aaa29f918c80786c665b50443f352c20170c02000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebad1dce8d8cbbeb2a5988b7f7265584c3f3225190c000a1724313d4a5764707d8a97a3b0bdcad6e3e6dbd1c7bfb8b3b2aeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeb7b9bdc4ccd6e0ebded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1d1d1d1d1d1d1d1d1d1d1d1d1d1d181d202122262a30353b424a5059626d73808d949facb6c0ccd8e2d9cdc3b8ac9f92867a6d6053473a2d201409000000000815212e3b4854616e7b8794a1aebac7d4cfc3b6a99c908376695d5043362a1d1003000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000713202d3a4653606d798698a2aebac6d3ccc0b5ab95887b6e6255483b2f2215080000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdb8ab9e9285786b544b40342f3b4855626e7b8898a2aebac6d3ccc0b6ac96897c6f6356493c30231608000000000000081724303d4a5763707d8a96a8b2bdc9d3c7baaea399887c6f6255493c2f221608000a1623303d495663707c8996a3afbcbcafa295897c6f6256493c2f231609000e1a2734414d5a6774808d9aa7b3c0cddae6dccfc3b6a99c908376695d5043362a1d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616e7b87939fabb5bfccd6e0d4c8bcb1a79f948f81786d675f58504a45403936312f2e2d2c292c2d2e2f31363940444650575e616d727e879299a3afbbc1c6c4c5c8ced5dee7dacec1b4a79b8e8174685b4e4135281b0e000000000000000000000000000000000000000000000000000000000000000000040a0c151d23282f353a41454c52575f616c7079808791969ea6afb5bdc6cfd8d5cdc5bcb4aaa29892857c6e675c51453d32281e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000008111b252d373f495159616a6e7a818a92989fa6afb5bdc5cdd6ccc3bcb4aea49c928d81786c605b51473e32291e1308000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5e2d7cabeb1a4978b7e7164584b3e3125180b000a1724313d4a5764707d8a97a3b0bdcad6e3e0d4c9bfb5ada7a5a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1abacb2bac4cedae5ded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f12111111111111111111111111070d111314151a1e24292f383f44515b606c77828f9aa4afbbc6d1dce0d3c7baaea3988a7d7064574a3d31261a0e020000000815222e3b4855616e7b8894a1aebbc7d4d0c3b6a99d9083766a5d5043372a1d1004000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000714212d3a4754606d7a8793aab3becad4c7bbafa499877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdb9ac9f928679665c5145382d394653606c7985929facb8c5d2d2bfb2a5988c7f7265594c3f3024190d0100000000000714212e3a4754616d7a8796a1adb9c5d2cbbfb4ab988b7e7265584b3f2f24190d010915222f3c4855626f7b8895a2aebbbcafa396897c706356493d3023160a000d1a2733404d5a6673808d99a6b3c0ccd9e6ddd0c3b6aa9d9083776a5d50442f24180d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c6673808d9aa4afbdc6d1dfd7cec6b8aca0958f82786d665c554e443f38342e2a262221201f1d1f202122262a2e34383e454d525b626c717e87929fa5afbac4ced2d4d9e0e7e7dacdc0b4a79a8d8174675a4e4134271b0e0000000000000000000000000000000000000000000000000000000000000000000000030b12181d24292f353a41454d535961676d737d848f949fa3abb4bdc6ced7d7cec6bcb4aaa2979083796d60594f443a3024190d02000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b252d373f474f575f686d757e8590949fa3abb3bbc3ccd4cec6bfbaada49d938d80746d635a50443a3025190b020000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad7e3d6c9bcb0a396897d7063564a3d3023170a000a1724313d4a5764707d8a97a3b0bdcad6e3dccfc4b8ada39b9895959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959ea1a8b2bdc9d5e1ded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120604040404040404040404040001040607090e13191d262d333f44505b656f7c87939fabb4bfcbd7e3d6cbbfb4aa9b8e817468574d42362a1e12050000000815222f3b4855626e7b8895a1aebbc8d4d0c3b6aa9d9083776a5d5044372a1d1104000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000814212e3b4754616e7a8794a1adbad0d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcbaaea39886796d6053463a2d3844505b6676838f9ca9b6c2cfcec1b4a89b8e817568564c4135291d110500000000000713202d3946525e687884919eabb8c4d1d1c1b4a79b8e817468564c4135291d11040815222e3b4855616e7b8894a1aebbbdb0a3978a7d7064574a3d3124170a000d192633404c5966737f8c99a6b2bfccd9e5ddd0c4b7aa9d9184776a554b4035291d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7984919eacb6c0cfd8dbd0c6bcafa59d9083796d665c544b433c332d28231d1a1615141310131415161a1c23282c333b4246515a626c717e8b939ea8b2bdc9d5dee5ebf1e6dacdc0b3a79a8d8074675a4d4134271a0e00000000000000000000000000000000000000000000000000000000000000000000000000070c13181e242930353b42464f555d606b6f7a828c9299a3abb4bcc5ced7d8cfc6bcb3a9a0958d80736b60564c4135291e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000109131b242d353e454e565d606c717b828c9299a1a9b1b9c2cbd4d0cabfb6aea59d928c7f726c61564c41362a1d140a0000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5b2bfccd8e1d5c9beb3a995887b6e6255483b2f221508000a1724313d4a5764707d8a97a3b0bdcad6e3d9ccc0b3a79b918c88888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888889196a1acb9c5d2deded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000002080b141c2228333f4953606a75818e99a3aebac7d3e0dcd0c5b8ab9e928578695f53463a2d2114070000000916222f3c4955626f7c8895a2afbbc8d5d0c4b7aa9d9184776a5e5144372b1e1104000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000815222e3b4855616e7b8894a1aebbc7d1c5b8ab9e928578665b5044382b1f12060000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a9b3bebfb4aa94887b6e6155483b2e333f4a546673808d99a6b3c0ced1c4b7aa9e918477685d5246392d201509000000000005111e2a36414c566975828f9ca8b5c2cfd0c4b7aa9d918477685d5245392c2013070815212e3b4854616e7b8794a1aebabeb1a4978b7e7164584b3e3125180b000c1926333f4c5966727f8c99a5b2bfccd8e5ded1c5b8ab9e928578675d5145392c2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a97a1adbec7d2e1d6cabfb4aa9e93897c6f675d544b42393028221c18120e0908070604060708090e12181c202930363f48505a626c75818e96a1acb9c2ccd8e3eff3e6d9ccc0b3a6998d8073665a4d4033271a0d000000000000000000000000000000000000000000000000000000000000000000000000000001070d13191e242931363e434b515960686d757f879299a2aab4bcc5d0dbd8cec5bbb1a79f93887d70685d52463a3025190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000109121b232c333c434c525a61696e7880879297a0a7b1b9c2cbd5d6c8c0b7aea49f93887d70685e52463e2f261b110600000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000004101c2834404a546774818e9aa7b4c1cddadfd2c6b9ada19786796d6053473a2d201407000a1724313d4a5764707d8a97a3b0bdcad6e3d8cbbfb2a5988c7f7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b84919eabb7c4d1deded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000020a1117222d38414e58616e7b86929facb9c5d2dfdfd2c6b9ada197887b6e6155483b2e2215080000000916232f3c4956626f7c8995a2afbcc8d5d1c4b7aa9e9184776b5e5144382b1e1105000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000915222f3c4855626f7b8895a2aebbc8d0c4b7aa9d9184776a544a3f33281c0f030000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8797a1adb9bcb0a396897d7063564a3d302d3d4a5764707d8a97a8b2bdc9d2c5b9aca096877a6d6154473c31261a0e0200000000010d192530404d5a6673808d99a6b3c0ccd2c6b9ac9f93867a6d6054473a2d2114070714212e3a4754616d7a8794a0adbabeb2a5988b7f7265584c3f3225190c000b1825323e4b5865717e8b98a4b1becbd7e4dfd2c6b9ada297867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576774808d9aa9b2bed0d9dfd3c6baaea2988e81756b60554b423930271e17110c070000000000000000000000070c10171f252a363f48505a606d7a84919ea6b0bbc7d3dfeaf5e6d9ccbfb3a6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000200000000000000000000000000000001080d13191f262a313940454f565d616d727e879298a2aab4bfcad6dcd7cdc3bbafa49a91847a6d61564c41362a1d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000009111a212a313a414550575e666d737d8591959fa7b1b9c3ccd6d2c9c0bbafa49a92857a6d615a5041382d22170b00000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000006121f2c3844515c667783909daab6c3d0ddded1c5b8ab9e928578675c5145382c1f1306000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d716e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000006111b262f3c46535f6975828f9ca8b5c2ced9e2d5c9beb3a9978a7e7164574b3e3124180b000000091623303c4956636f7c8996a2afbcc9d5d1c4b7ab9e9184786b5e5145382b1e1205000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000916232f3c4956626f7c8995a2afbcc8d0c3b6aa9d9083776a5d50442d22170b000000000000000000000000000000000000000000000000000000000613202c3945515d677885929eabb8beb2a5988b7f7265584c3f2d2e3b4754616e7a8796a1acb9c5d2c8bdb2a8988b7e7165574e42372b1f14080000000000081824313e4b5764717e8a97a4b1bdcad4c8bbafa49a897d7063564a3d302317090814212e3b4754616e7a8794a1adbabeb2a5988b7f7265584c3f3225190c000a1723303d4a5663707d8996a3b0bcd0dbe6e2d6cabeb3a995887b6e6255483b2f22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a46525e697784919daab7c4cfdddfd2c5b8ac9f92867b6e61594f433930271e150c06000000000000000000000000000000050d141a242d363f45525d68707d89949fabb7c3cdd8e4f0e5d8ccbfb2a5998c7f7266594c3f3326190c00000000000000000000000000000000000000030607090c0f0c0b09060100000000000000000000000002080d141a1f272f353d444c525b626c707d869298a2aebac0cad4dfd8ccc0b6aca1968d8074685e5246392f24180d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f181f282f353e454d545c606b6f7b8390959fa7b1bac4cfd9d8ccc0b6aca1978f81756c6153493f33271b0f03000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb9c5d2dfdcd0c3b6a99d9083766a554b4034291c1004000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164626262626262626262626262626262626262626262626262626262626262626262626262626262626262626b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000000a141d2a36424d5765727e8b98a7b1bcc8d4e0dacfc0b3a79a8d8074675a4d4134271a080000000a1623303d495663707c8996a3afbcc9d6d1c5b8ab9e9285786b5f5245382c1f0600000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000a1623303d495663707c8996a3afbcc9d0c3b6a99d9083766a5d5043372a1d060000000000000000000000000000000000000000000000000000000004111d2935414c556a7683909da9b6c0b3a79a8d807467544a3f332d3946525e687884919eabb7c4cfcec3b6a99d9083766a5f53473b3025190e05000000000916222f3c4955626f7c8895a2afbbc8d8ccc0b6ac998c7f7366594c4031261a0e0815222e3b4855616e7b8894a1aebbbeb1a4988b7e7165584b3e3225180b000815222f3b4855626e7b8895a9b3becad6e2e6dbcfbcafa396897c706356493d3023160600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8795a0acb8c5d1ded5c9bdb2a8998d8073695e52473d31281e150c0300000000000000000000000000000000000209121b242935414c56606b76828f9ca7b1bcc8d4e3eee5d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000406060b10121316191c191816120d070000000000000000000000000003090d151d2429323a4146515a616b707d86929fa4aeb8c2cfd9ddd2c7beb2a99f92867a6d61554b4035291d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d161e2429333b424a505960696e7a839095a0a8b2bdc7d1dcd2c7beb3a99e938a7d71655b5044372b1f150a000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8898a3aebac7d3e0dacec1b4a79b8e8174685b4e412f23180c00000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d71645755555555555555555555555555555555555555555555555555555555555555555555555555555555555e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000020b1a26313b4854616e7b8795a0acb8c5d1dedbcfc2b5a89c8f8275695c4f422f24190d0100000a1723303d4a5663707d8996a3b0bcc9d6d2c5b8ab9f9285786c5f52452e23170b00000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000a1724303d4a5763707d8a96a3b0bdc9cfc3b6a99c908376695d5043362a1d1003000000000000000000000000000000000000000000000000000000010d19242f424e5b6875818e9ba8b4c1b5a99c8f8276665b5044382b36414c566875818e9ba9b3bec9d1c4b7ab9f95887b6e62564d41362a20170d04000000091623303c4956636f7c8996a2afbcc9ddd2c2b5a89c8f827569574d42362a1e120915222f3c4855626f7b8895a2aebbbdb1a4978a7e7164574b3e3124180b000714212d3a4754606d7a8797a2adbac6d3dfe4d8cbbeb1a5988b7e7265584b3f2e23170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a8b1bdc8d4ded2c5b9aca196887c6f62574d42352b1f160c030000000000000000000000000000000000000000091219242f3a444f5963707d89959fabb8c7d2dde8e4d7cabdb1a4978a7e7164574b3e3124180b00000000000000000000010407070c101314171c1f202226292525221e1811090100000000000000000000000000030b1218202830353f485059606b717e8a929ca6b0bdc7d1dcd9d0c4baaea2988c8073675d5145392c201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c1319212930383f444f575f686d7a839096a1abb5c0cbd7d9d0c5bbafa59d9083786c6053463c31261b0f030000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000004101c2934404b5565727e8b98aab4bfcbd7e3d7cbbfb5ab988b7f7265584c3f3225190700000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a484848484848484848484848484848484848484848484848484848484848484848484848484848515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000914212d3a46535e697783909daab7c3d0ddddd0c3b7aa9d9084776a554c4135291d110400000a1724313d4a5764707d8a97a3b0bdcad6d2c5b8ac9f9285796c5f4a3f34281c1003000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000b1724313e4a5764717d8a97a4b0bdcacfc2b5a99c8f8276695c4f4336291c10030000000000000000000000000000000000000000000000000000000008192633404c5966737f8c99a6b2bfb8ab9f9285796c605346392d303d4a5764707d8a97a1adb9c7d2c7bcb1a7998d8073685e52463d32291f160d0806080e1724313e4a5764717d8a97a4b0bdcad7d1c5b8ab9e928578695f53463a2d21140916232f3c4956626f7c8995a2afbcbdb0a3968a7d7063574a3d3024170a000613202c3945515d677885929fabb8c5d2dee7dacdc0b4a79a8d817467544a3f34281c1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d192633404c5966737f8c99a6b2bfced9ded1c4b7ab9e9184786a5f54453b3023190d040000000000000000000000000000000000000000000008131e28323d4854606b7783909dabb5c0ccd7e3e3d6c9bcb0a396897d7063564a3d3023170a000000000000000102080d111314181d1f2023282b2d2f323532312e29231b1309000000000000000000000000000001070e161e2429363e474f59616c73808d949fabb5c0cbd7e2d6cabfb4aa9e9285796d6053473a2f24180c0000000000000000000000000000000000000000000001040607080806020000000000000000000000000000000001080f171e262e343d454d565d686e7a849199a3afbbc4ced9d6cdc1b8aca0958a7d7064584e43372b1f12060000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6775828f9ca8b5c2d1dce0d3c7bbaea399897c6f6256493c2f23160900000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b44515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000000005121e2a36424d576774818e9aa7b4c1cddadfd2c5b8ac9f928579675d5145392c20130600000b1724313e4a5764717d8a97a4b0bdcad7d2c6b9ac9f938679665c5044382b1f1206000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000b1825313e4b5864717e8b97a4b1becacfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a8b2bdbaada297887b6f6255483c2e2d3a4653606d7985919eacb6c0cccdc2b8ab9f92857b6e61594f443a31281f1914131419202a36424d5766737f8c99a6b2bfccd9d2c6b9ada197887b6e6155483b2e2215071724313d4a5764707d8a97a3b0bdbcafa396897c706356493d3023160a0004111d2935414b556a7784909daab7c3d0dde9dcd0c3b6a99d908376665c5044382b1f1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd7ccc0b5ab9a8d807467584e4333291f10070000000000000000000000000000000000000000000000010c16202c38444f5964717e8a99a4afbbc7d4e0e3d7cbc0b5ab95887b6f6255483c2f221509000000000000060d1213191d202124292c2d2e34383a3c3f423f3e3a342d251b1107000000000000000000000000000000040c1319242c353d47505a606d78828f99a3afbbc6d0dbdbd0c6b9ada2978b7f7265554b4035291d1004000000000000000000000000000000010507070a080d1113141514120f090300000000000000000000000000000000050c141c2328333b444c565e686f7d87929fa8b2bdc9d5dfd4c8bcb1a79d9083776a5f53473a2e2115090000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929facb8c5d2dfdfd2c5b9ac9f9286796d6053463a2d20130700000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e312f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000000000000000020e1a2531404d596673808c99a6b3bfccd9dfd3c6baaea298877a6d6054473a2d21140700000b1824313e4b5764717e8a97a4b1bdcad7d4c7bbafa49986796d6053463a2d201307000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cfdbd6c9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000b1825313e4b5864717e8b97a4b1becacfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8796a0acb8beb3a9988b7e7265544a3f342c3844505c6673808d9aa4afbbc8d3c6baaea2988e81756b60564c433a312a252120212429323b46525e697683909da9b6c3d0dcd5c9beb3a9978a7e7164574b3e2f23180c1925323f4c5865727f8b98a5b2bebeb3a995887b6f6255483c2f22150900010d18242f424e5b6875818e9ba8b4c1d2dde8dfd2c5b8ac9f9285796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0ddd4c7bbafa499897c6f6356493c3223170d00000000000000000000000000000000000000000000000000040d1c27333d4754606d7a86939facb9c6d2dfe0d3c7bbafa399877a6d6154473a2e21140700000000010911181e1e24292c2d2f35383a3d3f4446494c4f4c4a463f372d23180d010000000000000000000000000000000208121a232c353e44505c666e7b87929faab4bfcad6e2d6cabeb3a99c908376675d5145392c1f1306000000000000000000020507080a080d1113141618191d202122211f1a150e0600000000000000000000000000000000020a11172129323a444c56606b737f8c96a0acb9c4cfdad9cec3b8aca095887c6f6255483c31261a0e0200000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000004111d2935414c5663707d8998a2aebac6d3e0ddd0c3b6aa9d908377675c5145382c1f130600000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e31242222222222222222222222222222222222222222222222222222222222222222222b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000000000091825323f4b5865727e8b98a5b1becbd8e2d6cabfb4aa94877a6e6154473b2e21140800000b1825313e4b5864717e8b97a4b1becad7d7ccc0b5a093867a6d6053473a2d201407000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c2cececec9bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000b1724313e4a5764717d8a97a4b0bdcacfc2b6a99c8f8376695c504336291d1003000000000000000000000000000000000000000000000000000000000713202d3946525e687784919daab7c1b4a89b8e8175665c5044382c343f4a54616e7b87939facb9c3d0cabeb3aa9e93897d70685e554c433d36302d2d2d2f353c444e58616e7b87939facb9c6d2dfdacfc0b3a79a8d807467554b4034291c101a2734404d5a6773808d9aa6b3c0b9ada197867a6d6053473a2d2014070000071926323f4c5965727f8c98acb6c0ccd8e4e0d3c7baaea298887c6f6255493c2f24180d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2c3845525f6b7885929eabb8c5d1ded2c6b9ac9f9386796d6053463a2d20130700000000000000000000000000000000000000000000000000000b16202c3945525d687783909daab6c3d0dddfd2c5b9ac9f9286796c605346392d2013060000000009131b23292e3035393a3d404547494a505355595c585651493f34291e1206000000000000000000000000000000000008111a2328343f4a545f6974818e98a2aebac7d3e0dbcfc5b9ac9f92867a6d6053473a2d2014070000000000000003090e1214151719191e2021232524292c2d2f2e2b2620180f060000000000000000000000000000000000060f172028323b444f59606d7984919ea8b2bdc9d5dfd4c8bcb1a7998c807366574d42362a1e120500000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000a13202c3945525d6874818e9baab4bfcad6e2d6cabeb3aa9a8d807467554b4034281c100400000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e312417151515151515151515151515151515151515151515151515151515151515151e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdcad7e7dbd0bbaea194887b6e6155483b2e22150800000b1825323e4b5865717e8b98a4b1becbd7ddd2baada093877a6d6054473a2d211407000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b5c1c1c1c1c1bcafa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000a1724303d4a5763707d8a96a3b0bdc9d0c3b6aa9d9083776a5d5044372a1d06000000000000000000000000000000000000000000000000000000000005111e2a36414c566774818e9aa7b4c1b8ab9e9285796d6053463a2e2e3846535f6976828f9ca7b1bec7d0c5bcafa59e91847a6d675d554e46413c3a393a3b41454e565f6a74818d99a4afbbc7d4e0dcd0c3b6a99d908376675c5145382c1f131d2935414c566875828e9ba8b5c1b8ab9e928578675d5145392c20130600000a1623303d495663707c899aa4afbbc8d4e0e2d6cabfb4aa998c7f7266554b4035291d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667985929facb8c5d2ddd1c4b7aa9e918477675c5145382c1f1306000000000000000000000000000000000000000000000000000004111d2935414c566773808d9aa6b3c0cdd9ded1c4b8ab9e918578655b5044372b1f120500000006111b252d343a3a4145474a4b515356545c6062656865625b51463a2e221609000000000000000000000000000000000000081117232e38424d57616e7b86929facb8c5d1dce0d3c7baaea399897d7063564a3d30231706000000000000050d141a1e20212325252a2d2e30322f35393a3b3a37312a21180e030000000000000000000000000000000000060d162029323d45515c67717e8a96a1adb9c5d2dfd9cdc3b7aa9d908377695f53463a2d21140700000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000006111c27333f4953606d7a86929facb8c5d0dbdfd3c6baaea298897d7063564a3d2e23180c0000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0808080808080808080808080808080808080808080808080808080808111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5e1d5c8bbaea295887b6f6255483c2f22150900000c1925323f4c5865727f8b98a5b2becbd8d3c7baada094877a6d6154473a2e211407000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca9b4b4b4b4b4b4b4afa396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000a1623303d495663707c8996a3afbcc9d1c4b7aa9e9184776b5e51442d22170b0000000000000000000000000000000000000000000000000000000000010d1925303e4b5864717e8b97a7b1bcb9ada197897d7063554b40342a36424d5764717e8a95a0acb6c0cccec1b9aca0969083796d676058524c48474647484c52585f686f7c87929fabb5c0ccd7e3dfd2c5b9ac9f9286796d6053473a2d2014202c3945525d687784919eaab7c3b6aa9d9083776a554b4035291d110400000714212d3a4754606d7a86939facb9c6d2dfe7dbd0c2b6a99c8f8376675d5145392c20140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000713202d3a4653606d798698a3aebac7d3dccfc2b6a99c8f837669554b4034281c10040000000000000000000000000000000000000000000000000000010d1924303d4a5663707d8996a3b0bcc9d6dccfc3b6a99c9083766953493f33271b0f030000010d18232d373f464a4c525457555d606366666d6f7275726d62564a3e3125180b0000000000000000000000000000000000000006111c26303c46525e6975818e9babb5c0cbd7e3d7cbbfb4ab998d8073665a4d402d22170b0000000000080f171f252a2d2e30323036393a3d3f414145474847433c332a201509000000000000000000000000000000000000040e17202834404b55606c7884919eabb7c4d0dbded1c5b8aca095887b6e6155483b2e22150800000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000b17222d3744505b65727e8b98a2aebac7d3e2ded2c5b8ab9f9285796d6053463a2d2013070000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5e1d5c8bbaea295887b6f6255483c2f22150900000c1926323f4c5965727f8c98a5b2bfcbd8d4c7baaea194877b6e6154483b2e211508000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9ca8a8a8a8a8a8a8a8a8a396897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000916232f3c4956626f7c8995a2afbcc8d1c4b8ab9e9185786b5e4a3f33281c0f0300000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b87959fabb8beb3a99b8e8174675c5145382c313b4653606d7983909aa4afbbc5cfc8bdb2a8a0959082796f6a615e565554535455565d606a6f7a849199a3aebdc7d2dce2e0d3c7bbaea399897c6f6256493c2f2316212d3a4754606d7a86939facb9c1b5a89b8e8275685b4f422f24180d0100000613202c3945515d677784919eaab7c4d1dce8dfd2c5b9ac9f92867a6d6053473b3025190e000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507070f0706040000000000000000000000000000000000000714212d3a4754606d7a8793aab4bfcbd6dbcec1b5a89b8e8275685b4f422e23180c00000000000000000000000000000000000000000000000000000000081623303d495663707c8996a3afbcc9d6dacdc0b4a79a8d8174675a4e412d22170b00000006121e29343f495156565d606366676d707376797c7f827f7265584c3f3225190600000000000000000000000000000000000000000a141e2a36424d5764717e8a99a3afbbc7d3e0dcd1c3b6a99d9083766a544a3f33281c0f0300000008121a212930363a3b3d3f41414647494b4d4c525455534e463c31261a0f01000000000000000000000000000000000000050e18232e3944505b6673808d99a9b3becad6e0d4c8bcb1a7978a7d7164574a3e3124170b00000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000060f1c28333f4a54606c7883909daab4bfcad6e2d6cabfb4aa9b8e8275665c5144382c1f12060000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e1d4c7bbaea194887b6e6155483b2e22150800000c1926333f4c5966727f8c99a5b2bfccd8d4c7bbaea194887b6e6155483b2e221508000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828f9b9b9b9b9b9b9b9b9b9b9b96897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000815222f3b4855626e7b8895a1aebbc8d2c5b8ac9f928579665b5044382b1f120600000000000000000000000000000000000000000000000000000000000714212d3a46535e697683909dabb5c0b8ab9f9285796d6053463d322c3844515c666f7c88939fa9b3bec9cec3bab1a79f9490847c736d6864626060606264686d737c849196a1abb5bfc7cbd1d8e1d7cbbfb5ab988c7f7265594c3f30251a23303d495663707c899aa4afbbc0b5ab998c7f7266594c3f3326190700000004111d2935414c556874818e9babb5c0cbd7e3e0d3c7bbaea3998a7e7164564d41362a1c120700000000000000000000000000000000000000000000000000000000000000000000000000000002080d1113141b1413100c07010000000000000000000000000000000814212e3b4754616e7a8794a1adbad0dcdacec1b4a79b8e8174685b4e4135281b07000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbd8d8cbbeb2a5988b7f7265584c3f322519060000000916222e3a46515b6265686d7073767a7c7f8285888c8e8174685b4e412d22170b0000000000000000000000000000000000000000020c1a25303b4754606d7a86929facb9c5d2dfded1c5b8ab9e928578665b5044382b1f1206000005101a242c333b4246484a4c4e4c525456585a565d60625f584e43372b1d13070000000000000000000000000000000000000007121d28333f4a54626f7b8897a2adbac6d3dfd9cebfb3a6998c807366594d4033261a0d00000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000060f1a232b3844505b66717e8a95a0acbcc6d0dbe0d3c7baaea2988a7e7164544a4034281c10040000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1becbd8e2d6cabeb3a994877a6e6154473b2e21140800000d192633404c5966737f8c99a6b2bfccd9d4c8bbaea195887b6e6255483b2f221508000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0003101c2936434f5c6976828e8e8e8e8e8e8e8e8e8e8e8e8e897c706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000815212e3b4854616e7b8794a1aebac7d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727f8c99a4afbbbaada2978a7d7164594f44382c34404a54606b74818e97a1adb9c1cbccc3b9b0a69f969187807a75716f6d6c6d6e71747a7f869196a0a8b2bab9babfc6cfd6dcd1c1b5a89b8e827568574d42362a1e2935414c5666727f8c99acb6c0bbafa399897c706356493d3023160a000000010d19242f3e4a5764717e8a99a3afbbc7d4e0e3d7cbbfb5ab9c8f8275685e5246392e23180c0000000000000000000000000000000000000000000000000000000000000000000000000000040c13191d202128201f1d18120b0300000000000000000000000000000714212d3a4754606d7a8793a0b5c0cbd7dacdc1b4a79a8e8174675b4e4134281b0e01000000000000000000000000000000000000000000000000000003101c28343f4a546774818e9aa7b4c1cddad6cabeb3a996897c706356493d3023160a0000000b1824313e4a56626d72777a7d808386898c8f9298988f83766953493f33271b0f0300000000000000000000000000000000000000000914202c3945525d687783909daab6c3d0dddfd2c6b9ac9f9386796c605346392d20130600000c17222c363e454d525456585b565e6163656769686d6e6a5f53473a2f24180d01000000000000000000000000000000000000000b17222d394653606c7985929fabb8c5d2dedbcec2b5a89b8f8275685c4f4235291c0700000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000040d18212935414c56606c7883919da7b1bcced8e2dfd2c5b8ac9f92867a6d6054473a2e23180c000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000000000000000000d192633404c5966737f8c99a6b2bfccd9dfd3c6baada297867a6d6053473a2d20140700000d1a2633404d596673808c99a6b3bfccd9d5c8bbafa295887c6f6255493c2f221609000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e00000d192633404c5966737f81818181818181818181818181817c6e6255483b2f221508000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000714212e3a4754616d7a8794a0adbacfd4c8bbafa49a877a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000020e1a25313b4754616e7b87939facb9beb3a99d9083766b6054483c312e39424f59606d7a85929ea5afb9c3cccbc2b8b0a8a099928d86827d7c7a797a7b7e81858c9298a0a8b2b4aeacaeb4bdc4ccd6d1c4b7ab9e918478695e52463a2d202d3946525e687683909ca9b6c3b9ac9f92867a6d6053473a2d201407000000000814212d3a4754606d7a86929facb9c5d2dfe7dcd1c5b9ac9f92867b6e61544a4034281c1106000000000000000000000000000000000000000000000000000000000000000000000000040e161e24292d2e352d2c29241d150d04000000000000000000000000000713202d3a4653606d798699a3afbbc7d4dbcec1b4a89b8e8175685b4e4235281b0700000000000000000000000000000000000000000000000000000006121f2b3844505c667783909daab6c3d0ddd2c6b9ada197877a6e6154473b2e2114080000000c1925323f4c5865727f83868a8d909299999c9fa29e918477655b5044372b1f1205000000000000000000000000000000000000000004111d2935414c566975828f9ca8b5c2cfdbe0d4c7bbafa499877a6d6154473a2e2114070005111c28333e4850575e6163656769686d70727476787a7c6e62554b4135291d11040000000000000000000000000000000000000006121f2b3744505b6576828f9ca9b5c2cfdcddd1c4b7aa9e9184776b5e51442f24180c00000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000030d161f2a333c46525e68717e8b95a0acb9c3cee0e0d4c8bcb1a79a8e8174685d5245392c1c1207000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000000005121e2a36424d576774818d9aa7b4c0cddaded2c5b8ab9f928578675d5145392c20130600010d1a2734404d5a6773808d9aa6b3c0cdd9d5c8bcafa295897c6f6256493c2f231609000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e00000c1825323e4b57636d7375757575757575757575757575756e6a5f53473a2e211408000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000714202d3a4753606d7a8693a9b3bec9d5ccc0b6a194877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000914202d3a46525e6976838f9ca9b3beb8ab9f95897c6f63584e43372b303d45525d68717e8a939ea7b1bac3cccac2bab2aba39f99928f8a88878687888b8e92989fa2aab2b4aba39fa3abb2bac4cfd2c5b9ada196877b6e6154473b2e212e3a4754616d7a86929facb9c3b7aa9d908377675d5145392c201306000000000713202c3945525d687683909ca9b6c2cdd8e4e0d4c7bbafa3998c7f72665c5144382d22170b0200000000000000000000000000000000000000000000000000000000000000000000020c1620283035393a423a39352f271f160d0400000000000000000000000006131f2c3845515c677986929facb9c5d2dbcec2b5a89b8f8275685c4f422e23180c0000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929facb8c5d2ded1c5b8ab9e928578685e5246392d2014070000020e1b2835414e5b6874818e939a999d9fa3aba9acac9f9286796c605346392d2013080000000000000000000000000000000000000000010d19242f414e5b6774818e9aa7b4c1cddae3d7ccc0b5ab95887b6e6255483b2f221508000814212d3945505a61696e70727476787a7c7e808285878478675d5145392c20130600000000000000000000000000000000000000030f1b27333f49536774808d9aa7b3c0cddaded2c5b8ab9f9285786c554b4035291d1004000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000040d151f28313c454f59616d7a85929ea7b1bccbd5dfddd1c4b8ab9f95887c6f62564c4135291d0b00000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000714202d3a46525e697783909daab7c3d0ddddd0c3b6aa9d9083776a554b4035291d100400010e1a2734414d5a6774808d9aa7b3c0cddad5c9bcafa296897c6f6356493c30231609000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e00000a16222f3b46515b63666868686868686868686868686868625f584e43372b1f1206000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000613202d394653606c798697a1adb9c6d2d2bbaea195887b6e6255483b2f22150800000000000000000000000000000000000000000000000000000000000005111e2a36424d5665717e8b97a1adb9bcb1a79b8f82756a5f53473e312935414c56616c75818f95a0a8b2bac3cbccc3bdb5afaba39f9b979599939995979b9fa2aaaeb4baaea3999299a1a8b2bdc9d5c9bdb2a8978a7d7164574a3e2e2a36424d5764717e8a99a3afbbbeb3a99a8d807467554b4035291d11040000000004111d2935414c5666727f8c99a7b1bcc8d4e2e3d7cbc0b5ab9e9184796d60544a3f33281e13080000000000000000000000000000000000000000000000000000000000000000000008131e28323a4146474e4745403931281f160e05000000000000000000000004101c2834404b556c7885929fabb8c5d2dccfc2b6a99c8f837669554b4034281c100400000000000000000000000000000000000000000000000000000815222f3b4855626e7b8898a2aebac7d3dbcec2b5a89b8f827568564c41362a1e11050000000d1a2733404d5a6673808d99a4aca9acaeb4b5b8aea399887c6f6255493c3025190d000000000000000000000000000000000000000000081a2733404d5a6673808d99a6b3c0ccd9e8ddd2bcafa296897c6f6356493c30231609000a1723303c4955616c717b7d7f81838587898b8d8f9196877a6d6054473a2d21140700000000000000000000000000000000000000000b17222d404d596673808c99a6b3bfccd9dfd2c5b9ac9f928679675d5145392c1f1306000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000060d161f27313a434d57616b75818e97a1adb9c3cedddfd5c9bdb2a89d9083776a6054443a2f24190d00000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000020b14212e3b4854616e7b8795a0acb8c4d1dedbcec1b5a89b8e8275685b4f422f24180d0100010e1b2734414e5a6774818d9aa7b4c0cddad6c9bcafa396897c706356493d3023160a000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000006121e2a3540495157595b5b5b5b5b5b5b5b5b5b5b5b5b5b55534e463c31261a0f02000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000006121f2b3844505b667885929eabb8c5d1c9bcafa296897c6f6356493c30231609000000000000000000000000000000000000000000000000000000000000020e1925303b4753606d7985929eaab4bfb9ac9f93877c6f625a5043392f303a44505a606d79839096a0a8b1b9c0c9cfc7c0bbb5aeaca8a4aba49fa4aba4a7abaeb3babfb4aa9f92869196a1adb9c5d1cbc0b3a69a8d807367544a40342d3a46535e6975828f9cabb5c0baada297897d7063564a3d2f24180d0100000000010d1924303b4855626e7b88959fabb8c6d0dbe7dcd1c7b9ada1968b7e71665b50443a3024190e040000000000000000000000000000000000000000000000000000000000000000020b1924303a444c52545b53514b433a312820170e0500000000000000000000000c18232e44515e6b7784919eaab7c4d1ddd1c4b7ab9e918478675c5145382c1f13060000000000000000000000000000000000000000000000000005121e2a36424d5765727e8b98aab4bfcad6d6cabeb3a9988c7f7265594c3f3025190d010000000c1925323f4c5865727f8b98a5b6b6b9babfc2bfb4ab998c7f7366564c41362a1d120700000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4c0cddae3d6c9bcb0a396897d7063564a3d3023170a000b1724313e4a5764717e87898b8e90929796989a9c9e95887c6f6255493c2e23180c0000000000000000000000000000000000000000061925323f4c5865727f8b98a5b2becbd8e0d4c7bbafa399867a6d6053473a2d201407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000002090f181f283139434c555f69707d8a939ea9b3becbd5dfd9cec5b9aca0968b7e7165584e4332281e130800000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000000a141d2a36424d5765717e8b98a7b1bcc8d4e0d8ccc0b6ac998c807366594d4033261a070000010e1b2834414e5b6774818e9aa7b4c1cddad6c9bdb0a3968a7d7063574a3d3024170a000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0000020d19232e3740464b4c4e4e4e4e4e4e4e4e4e4e4e4e4e4e4847433c332a20150900000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000030f1c28333f4a546a7683909da9b6c3d0cabeb1a4978b7e7164584b3e312518070000000000000000000000000000000000000000000000000000000000000009141f2c3945515d6773808c98a2aebabbafa49a8f82766c61554b403529323e45515d676e7b849196a0a7afb9bec5cbcbc6bfbbb9b5b0b5afacafb5b1b4b8babec1baaea3988d8084919eabb7c4c1bfbbb6a99c908376665c51443835404b55616e7b87939facb9c5b8ab9f9285796d6053463a2d2013070000000000000814212e3a47535f6a7683909daab4bfcad6e2e3d5c9bdb2a89d9184786c60564c41352920160c02000000000000000000000000000000000000000000000000000000000000000a141d2935414c565d6168605d554c433a322920170f0600000000000000000000071c2936434f5c6976828f9ca9b5c2cfdcd2c6b9ac9f9386796d6053463a2d201308000000000000000000000000000000000000000000000000000714202d3a46525e697683909ca9b6c3d0dbd3c6baada297887c6f6255493c2f221608000000000a1724303d4a5763707d8a96a9b3bec5c7cbd1c3b6a99d908376685e5246392e23180c01000000000000000000000000000000000000030f1c28333f4a546875828e9ba8b5c1cedbe2d5c9bcafa296897c6f6356493c3023160900091623303c4956636f7c8996989a9c9ea1a9a5a7a9a4978a7e7164544a4034281c1004000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbd8e3d7cbc0b5a194877a6e6154473b2e211408000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000001070c141a222a313a434b555d676e7b85929fa5afbbc5cfdde0d4c8bcb1a79e9184796d6053463c3220160c0100000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000006111b262f3846535e6975828f9ba8b5c2cdd9e0d4c8bbafa49a8a7d7063574a3d3024170a0000020e1b2835414e5b6874818e9ba7b4c1cedad6cabdb0a3978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e00000007121c252e353b3e4042424242424242424242424242423b3a37312a21180e0300000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000b17222d424f5b6875828e9ba8b5c1ceccc0b3a6998d8073665a4d402e23180c0000000000000000000000000000000000000000000000000000000000000004101d2935404b55616d7a86929fabb5bfb6ac9f948a7d70675d51453d322935404b555e696e7b8490959da5adb3bbbfc6cacbc7c5c2bdc0bbb9bbc0bec1c5c6bfbbafa59f92867b828e9ba8b5b7b4b5aeaca99f9286796d6053463a3845515d6773808c99a4afbbbeb2a99b8e8174665c5144382c1f120600000000000006121f2b37434e5865717e8b98a2aebac6d3dfe5dacfc4b8aca0968b7e71685d52453d32281e130800000000000000000000000000000000000000000000000000000000000006111b262f3846525d686d756d675d554c443b322921180f070000000000000000010e1b2834414e5b6774818e9aa7b4c1cddad4c7bbafa499897c6f6256493c3025190e020000000000000000000000000000000000000000000000020b14212e3b4854616e7b87939facb9c6d2ded2c5b8ab9f9285796c605346392d201306000000000814212e3b4754616e7b8797a1adb9c6d2d7d2c6b9ac9f93877a6e61554b4034281d120700000000000000000000000000000000000006121f2b3844505b667683909ca9b6c3cfdce3d7cbbfb4ab95887b6f6255483c2f221509000815212e3b4854616e7b8799a3a7a9abadb3b1b3b4a79a8e8174665c5144382c1f1509000000000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3c0cdd9e8dcd1baaea194877b6e6154483b2e211508000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000003070d12181f252a343c434c555d676d79839197a2adb7c1cdd6e1d7cec5b8aca0958a7e71665c5145382c1f13040000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000020a1117222d38414e58616e7b86929facb9c5d2dfdfd2c6b9ac9f93867a6d6054473a2d2114070000020f1c2835424f5b6875828e9ba8b5c1cedbd7cabdb0a4978a7d7164574a3e3124170b000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000000000a131c232a2f323335353535353535353535353535352f2e2b2620180f060000000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000061a2733404d5a6673808d99a6b3c0cccec2b5a89b8f827568544a4034281c1004000000000000000000000000000000000000000000000000000000000000000c18242f3946525e6874808d99a3aebbbeb0a69e9184796d60594f443a2f2f39434d575e696e7a838e939ea1a9aeb5b9bec4c5c9cfd2ccc7c6c7ccc8c7c0bbb5aea59e938b7f727f8c99abacaaa8aba39f9d9a98897c6f6256493c414b55606d7985919eabb5c0b9ada1978a7d7064544a4034281c1004000000000000020f1a26313c4754606d7a85929facb8c1ccd7e3e0d4c8bdb2a89e92857a6d60594f443a302519130900000000000000000000000000000000000000000000000000000000060f17222d38414d57616d7a81796d675e564d443b332a2118100700000000000000000c1926333f4c5966727f8c99a5b2bfced9d7ccc0b5ab998c807366564c41362a1e110500000000000000000000000000000000000000000000000a141d2b37434e5865727f8c9aa4afbbc8d4d7cbc0b5ab9c8f8275665b5044382b1f1206000000000714202d3a46525e697885929eabb8c5d1ded4c8bbafa49a8b7f72675c5145392f24180f0600000000000000000000000000000000000613202d394653606c7985929eabb8c5d1dee0d3c7baaea399877b6e6154483b2e211508000713202d3a4653606d7986929facb6b8b9bebec0b8ab9e9285796d6053463c31261a0e05000000000000000000000000000000000007121e2b37424d576875828e9ba8b5c1cedbe0d4c8bbafa49a877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000105060b0f13181d232930363e464e555d676d79828f95a0a9b3bec9d3dfdbd0c5bcb0a69d9083786c60544b4034281c10040000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000002080b141c2228333f49535f6a74818e98a3aebac7d3e0ddd0c3b7aa9d908477685d5245392c2013070000020f1c2935424f5c6875828f9ba8b5c2cedbd7cabeb1a4978b7e7164584b3e3125180b000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000000020b141b22272b2d323232323232323232323232323232302f2c27211911070000000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000b1825323e4b5865717e8b98a4b1bed1d0c4b7aa9d918477665c5144382c1f12060000000000000000000000000000000000000000000000000000000000000007121d2a36414c56616e7b86929fa9b2bdb9aca1968d80736b60564c41382d313b454d575e686e79818a92979fa3abadb3b8b9bdbebfc0c1c0c0bfbdb8b6afaba39f938e8175707c8999a4a09e9b989992908d8a887f7265584b3f45515d67727f8c97a1adbdbfb4aa9e9184796d6053463a2e23180c00000000000000000a15202c3945515d6774818e9ba6b0bbc6d2e2e5d9cec3b9ada1978d80746b60564c413529251b12060000000000000000000000000000000000000000000000000000060f182127333f49535f6974808d82796d685e564d453c332a22191008000000000000000a1724303d4a5763707d8a96a8b2bdc8d4ddd2c3b6aa9d908377685e5246392d20150b0000000000000000000000000000000000000000000006111c262f3847535f6a7783909dacb6c0ccd8d3c7bbafa3998b7e7265544a3f33281c0f030000000005111e2a36424d576975828f9ca8b5c2ced9d8ccc0b6ac9e9184796d60554b40352921180e0600000000000000000000000000000208101c28343f4a54626f7c8997a1adb9c6d2dfdfd2c5b9ac9f9286796d6053463a2d2013070006121f2c3844515c667683909da9b6c3c6cacfc6b9ada2978a7d7063574e42372b20170d04000000000000000000000000000000050e19222e3a47535f697784909daab7c3d0dddfd2c6b9ac9f9386796d6053463a2d201307000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160906060606060000040607070809080d1113171b1f24292f343b424650585f676d79828f949fa8b1bcc5d0dbded6cabeb3aa9f948a7d70665b5042392e23180c000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f120604040404040404040404040001040707090e13191d262d333d44505b656f7c87939faab4bfcbd7e1d5c9bdb2a8998c807366564c4135291d11040000030f1c2936424f5c6975828f9ca8b5c2cfdbd7cbbeb1a4988b7e7165584b3e3225180b000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0000000a141d262d3337393e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3d3b38322b23190f0500000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000a1623303d495663707c8996abb5c0cbd2c5b9ac9f9286796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000010d1925303a46535f6973808d96a1adb9bdb2a89f93877d70685e53493f3327333b454d565e676d747e858d92999ea1a9abadb2b2b3b3b4b4b3b2b2acaca49f99928c81786d6d7a86939696918e8b898683807e7b726d62564a424e58606d7a85929ea9b3bebaaea3988c7f73665c5144382c1c1207000000000000000004111d2935414b55626f7c88939eaab6c1d0d9e3e0d5c9beb3a99f93877d6f685e524640372d2417110a030000000000000000000000000000000000000000000000071018212a333c44505b656e7b879290837a6e695e574e453c342b221911080000000000000714212e3a4754616d7a8796a0acb8c5d1dfd2c6b9ac9f93877a6e6154473e30271c12070000000000000000000000000000000000000000040e17222d38424f59626f7c88959fabbec7d2ddd2c5b9ac9f92867a6d6154473a2d22170b0000000000020e1a25303f4c5865727f8b98a7b1bcc8d4ddd2c7b9ada1968b7f72675d51453e332a20181008020000000000000000000001040c1319262b3844505c6673808d99a9b3bec9d5e2ddd0c4b7aa9d918477665c5044382b1f12060004101c2834404a546774808d9aabb5bfcbd6d6cabeb3a99b8e81756a5f53473d32291f160c0500000000000000000000000000060e17202834404b54626e7b8895a0acb8c5d1deded1c4b8ab9e918578665c5044382b1f1206000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316121212121212070c10121314151618191d2022272b2f353940454d525a616a6e79828f949fa6b0bac3ced7e0d6ccc4baaea2988f82766b61544a3f30271d1207000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f12111111111111111111111111080d111314151a1e24292f383f44505a606c77828f99a4afbcc6d1dcded2c5b9aca096887c6f6255493c2f24190d01000003101c2936434f5c6976828f9ca9b5c2cfdcd8cbbeb1a5988b7e7265584b3f3225180c000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000006111b262f383f44464b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4948443d352b21160b00000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000815222e3b4855616e7b8899a3afbbc7d3c7bbafa399887b6e6255483b2f221508000000000000000000000000000000000000000000000000000000000000000008131e2a36424d57606d7984919ea6b0bcbbafa49991857a6d655b50443f362d333b444c555d606c717a80868d92979a9ea1a9a5a6a7a7a7a6a5a8a09e9a938f877f786d666777838c8a8784817f7c797674716e69625b51464a545f6a73808c97a1adbbbfb5ab9f92867a6d61544a4034281c0b000000000000000000010d18242f3a47545f6a75828f9ba6b0bdc7d2dde6dacfc5bbafa49991847a6d615c52493f3628231c150c060000000000000000000000000000000000000000030b1218222a333c454f59606c77828f999590837b6e695f574e463d342b23190e0500000000000713202d3946525e687784919daab7c4d0dcd4c8bbafa49a8b7e71645a5042392e23180e05000000000000000000000000000000000000030c162028333f4a54606b76828f9ca7b1bcd0d9d6cbbfb4aa9c8f8275685e5246392d1c11060000000000000915212e3b4854616e7b8795a0acb8c6d0dcd5c9bdb2a89e9184796d605a50453c322a2219140d070501000000000306070d11161e252935414c56606d7884919eaab7c4cfdae6dbcec1b5a89b8e827568544a3f34281c100300000c18232e3e4b5764717e8a99a3aebbc7d3dbcfc5b9ac9f92877b6e62594f443b31281e170e0903000000000000000000040a11172029323a45515c6673808d99a7b1bcc8d4e0dccfc2b5a99c8f827669544a3f34281c1003000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231f1f1f1f1f1f1f1f181c1f202121232424292d2d33373a41454b51575e616c717c848f949fa6b0b8c2ccd5e0d7cec4bab0a69f92857b6e61594f42382d1e150b00000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c1f1d1d1d1d1d1d1d1d1d1d1d1d1d1d191d202122262b30353a424a5059626c73808c949fabb5c0cfd8e2d6cabfb4aa9e9184776a5f53473b2e1e130800000003101d293643505c6976838f9ca9b6c2cfdcd8cbbfb2a5988c7f7265594c3f3226190c000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e00000b17222d384149505358585858585858585858585858585856544f473d32271c1004000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000713202d3a4653606d7986929facb9c5d2cbc0b5ab978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000000000020e1a26313b45515d67717e8a949faab4bfb5aba1978f82776c605b51483e3627323b434b515a61686d737b80858a8e91969698999a9b9a99989696918d87827c726d665c65727f807d7a7775726f6d676764615f57514944505c666f7c86929fa9b3bebbaea3998e8174685e5242392e23180c0000000000000000000007131d2b37434e58626f7c88939eabb5c0ccd7e0e1d7ccc0b5aba1968f82756e635b51483f342e261e17110a030000000000000000000000000000000003090c151d2328343c464e57606b737f8c949f9f9591847b6e6a5f584f463d352b20170d020000000005111d2a36414c566874818e9baab4bfcbd6d8ccc0b6ac9d9083766c61544a40342820170d0400000000000000000000000000000000050c151e28323a44505b66707d89949fabb9c3cde0d3c7baaea3988b7e7164564c41362a1d0a000000000000000714212d3a46535e697784909daab4bfcbd6dacfc4b9ada1978d80736c61574d443c342a251f1813110d080d060c101213181d202830353f45525d68727e8b96a0acb9c5d2e1e1d5c9bdb2a8988b7f7265584c3f2e23170b0000000714212d3a4754606d7a86929facb9c5cfdad3c7bbafa3998f82756b61564c43393029201a140e09070604040607070c10141b2227323a444e58606d7984919eabb7c3ced9e2d6cabeb4aa9a8d8073675a4d402e23170b00000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2c2c2c2c2c2c2c2c2c23282c2d2d2e2f313035393a3f44464b51555c60696e757e8691969fa6b0b8c2cad4ded9d0c6bcb2a89e948b7e71695e52473e2f261c0c0300000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245392c2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a24292c2d2f31373a41464c545b606b717e8b929ca6b0bdc7d2e1ded3c6baaea2988c7f7265584e43372b1f0c0100000003101d2a3643505d697683909ca9b6c3cfdcd8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e00030f1b27333f49535b606565656565656565656565656565656360594f44382c201307000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000006121f2c3844505c667884919eabb7c4d1d1bfb2a5998c7f7266594c3f31261a0f02000000000000000000000000000000000000000000000000000000000000000009141f2935404b55616c76829098a2aebabdb2a99e948d80746d635a50483f332d3139404550565d60696e73797d818487898b8c8d8e8d8d8c8a8784807c756f6a605c54626d7273706d68686562605c555755534d4546505a606d78839099a3aebbbeb3a99f92867b6e61564c4130271c120700000000000000000000010f1b26323c47545f6a75828f99a4afbbc4cfdae6ddd2c7bdb2a89e948d80736d625a51443f383027221b140f0b06000000000000000000000002050a0f151a1e272e343e464e585f69707d87939fa6a7a09691847c6f6a60594f473d32291e140800000000010d1925303e4b5764717e8a98a3aebac7d3ddd2c7b8ab9f958a7e71665c51443c32291f160e060000000000000000000000000001070e161e27303a444e58606c7883909da6b0bbcbd4d7ccc0b5ab9f92867a6d6054473a3025190d0000000000000005121e2a36424d5765727f8c98a3aebac7d1dcd5c9beb2a99f93887d70695f564e463d36302924201e191a1a1b171c1f2024292c323a4146525c606d7a85929ea8b2bdc8d4e1dfd2c5b9ada196887b6f6255483c2f2215060000000713202c3945525d6876828f9ca9b3bec9d5d7cbc0b5ab9e94897d70685e554b423b322a251f1a1514131110121314181c1f262d333b444c565f6a73808c96a1adb9c5d5dfdfd3c6baaea298897d7063564a3d3023170600000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c393939393939393939392e34383a3a3b3c3e40414647495053555d60676d727b818a9298a0a8b0b8c2cad4dcddd2c7beb4aaa1968f82756c62574d42352c1d140a0000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f524539373737373737373737373737373737372f35393a3b3e42474c52565e666c737d87929fa4aeb8c2d0d9e1d6cabfb4aa9f92867a6d6054473c32261b0f0000000004111d2a3744505d6a7783909daab6c3d0ddd9ccbfb2a6998c7f7366594c403326190d000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e0005121f2b3744505b656c717171717171717171717171717171706b6054483b2f221609000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000003101c28343f4a546976828f9ca9b5c2d1cec1b4a89b8e817568584e43372b1f12060000000000000000000000000000000000000000000000000000000000000000030d18242f3a43505a626e7c86929fa5afbabbb0a69d928c7f726c625a51443f382f2f353e434c52575e61676d7074787a7d7f80808181807f7d7b77736f6a625f5850515b62656663615e56585653514b4b484642454e58616c737f8c95a0abb4bfb9ada2978d8074695f53443a301e150b0000000000000000000000000a15202b37434e58626f7c87939fa9b2bdc9d5dee3d9d0c4bab0a69c928b7f726c635b504a423b332d261f1c17110f0a0807060406070708090e12151b1f262b303940454f585f6a6e7b859299a4afb1a8a09691857c6f6b60594f443b3025190d01000000000814202d3a4753606d7a86929facb8c4cfdad4c8bcb1a79e9184796d60574e443b31282017110d0703000000000000000000060c121820283039424c565f6a717e8b95a0acb8c2ccddd4c7bbafa4998e8174675d514539281e130800000000000000020e1a25313b4754616d7a86929fabb5c0cbd7dacfc4bbafa49a92857b6e685f584f46413b352f2d2a2527272723282c2d2f35393e444c525b636e74818e97a1adbac3ced9e5ded1c4b7ab9e9184786a5f53473a2e21150800000004111d2935414c5664717e8b97a1adb9c5d0dbd1c7bdb0a69e91847a6e675d544c443d36312b262220201d1c1f202123292c2f383f444d565e686f7c87929fa8b2bdc9d5e7ded2c5b8ab9f9285796d6053463a2d20130700000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256494545454545454545454545454044464748494b4c4c5254535b6063676d72797f868e939fa2aab2bac2cad4dcddd8ccc0b6aca29891847a6e615a50453b30231a0b020000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5245444444444444444444444444444444444444414547484b4d53565d61686d787f879299a3aeb6bfcad3e2d8cfc6baaea2988d8074685d5245392a20150a0000000004111e2a3744515d6a7784909daab7c3d0ddd9ccbfb3a6998c807366594d4033261a0d000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000613202d394653606c787e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7d706356493d3023160a000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000c17232e404d596673808c99abb5c0cbd1c4b8ab9e9184786a5f53473a2e21140700000000000000000000000000000000000000000000000000000000000000000007131d28313e47535f6a717e8b939ea8b2bcb8aea49f93887e716c635b5049413a3229313a41454d52555d606367686e7072737474747372706e6966625f58534e4449515759595754524c4c494645403e3b3c454d575f6a707e88939fa7b1bdbcb1a79e92857a6d60574d4232291e0c03000000000000000000000000040f1b26323c47535f6a74808d96a1adb9c1ccd6e1e2d6ccc1b8aea49f93887e726d605c544d443f382f2b28221c1b171514131012131415161a1e21272b31373c434b5159616a6f7c859197a1abb5bab2a8a19792857d706b60564c41362a1e1105000000000613202c3945515d6775828f9ba8b2bdc9d5d8cdc2b9aca0968b7f726a5f564c433a3228231c18120f0b0608070707080a0f11171d2329323a424a545e686f7c86929fa7b1bccad4d8cfc6b9ac9f93877b6e62554c4135291d110400000000000000000914202d3946525d6874818e99a3afbbc5d0dbd8ccc0b6aca29790837a6f6a6059524d45403a3936303433342e34383a3c41454750565e616d73808c939da9b3beccd5e0e0d3c7bbb0a6998d807366584e43372b1f1206000000010d19242f3a4753606d7985929eaab3becad6d9cfc1b9aca1969083796d665e564f46423b37312e2d2c29282c2d2e2f34383d414950575e686d7a839199a3afbac4cfdae0d4c8bcb1a79b8e8175665c5145382c1f130600000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256525252525252525252525252524a51535454565759565d6163656c6f747a7f858c92989ea5aeb4bcc3ccd4dcd9d2ccbfbbafa49a92867c6f685e52483f33291f1108000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f52505050505050505050505050505050505050514c52545558575f61686d737a828c9299a3abb5bfc8d1dcdcd1c6bdb2a89f92867b6e61564c4135291d11040000000004111e2b3744515e6a7784919daab7c4d0ddd9cdc0b3a69a8d8073675a4d4034271a0d000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d78868b8b8b8b8b8b8b8b8b8b8b8b8b8b8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000061723303d4a5663707d8999a3afbbc7d2c5b9ada196887b6e6255483b2e23180c000000000000000000000000000000000000000000000000000000000000000000010c161f2b37424e57626c75818e96a0aab3bcbbafa49a92877e726d605b534c443d352f2f353b42464b515357565e61636566676867666563615e5755534e47433c3f464a4c4d4a4746413f3c3a3834343e464e575f696f7c86929aa4afb9beb3aa9f958b7f72685d52453c3120170c00000000000000000000000000000a15202b37434e58606d7a84919ea6b0bac4cfd8e2ded3cac0bbafa49a93887f746d665f575049413d38332d2b26232120201d1f20212223252a2d32373c42474e555c606b707c859197a1a9b3bdc4bab2a9a19792867d70685e5246392d2014070000000004111d2935404b5564717e8a96a1adb9c5d0dbd4c8bdb2a89f92857c6e685e554c443d342e29241f1b17151413131415161a1c23282f343c444c545c666d7a849198a2aeb9c3cedcd1c6bdb0a69b8f8275695f53433a2f24190d01000000000000000005111d2935414c56626e7b87929faab4bfcad6ddd2c7beb3a9a09590847c706b615e56514b47464142414041423f4446494b51545a61686d757f8c929ca5afbbc5cfdee2d7cec5b7aa9f94887b6e6255483c31261a0f030000000008131f2c3845515c67737f8c98a2aebac3cfd9d5c9bdb2a89f958f82786e686059534d47423d3b3a393534383a3b3d4045474e535b60696e7a839095a0abb5c0ccd6e0d7cec5b8ab9f95897c6f62544b4034281c100400000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5c60606162646668686d7073787c80858c91979fa2aaafbabfc5ced5ded7d0c7c0bbada39f93887e706a5f564c41362d21170d00000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c5f5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d565d60626468696e737a7f858f949fa3abb5bdc6d1daddd7cbbfb4aba1968c7f73695e52443a2f24190d010000000005111e2b3844515e6b7784919eaab7c4d1dddacdc0b3a79a8d8074675a4d4134271a0e000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d7986939898989898989898989898988e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000714202d3a4753606d7a86929facb9c5d2c9bdb2a9988b7f7265544a4034281c1004000000000000000000000000000000000000000000000000000000000000000000040d1a26313c45505a606d79849198a2aab4bdb6aca399928b7f746c655e564f454039312b3036394045474a4c52545658595a5b5a5a595754524d4847433c3732353a3e3f403d3a3936302f2d3039404550585f696e7b849198a2acb6c0baaea2989083786d60564c41332a1f0e050000000000000000000000000000040f1b26323c45515d67717e8a939ea8b2bcc6d1dce7dcd8ccc0b6aca49a938c80786e69605b534f46443f383732302e2d2c292c2d2e2f3031363a3c43474d53585f676d747d859297a1a9b2bbc5ccc4bbb3a9a29892867a6e6154473b2e21140800000000010d18242f3a4653606d7984919eaab3becad6d9cec3baada29791847a6e675e564f443f38352f2b272222212020212223262b2e343940454e565e666d78828f96a0aab4becbd5d7cbbfb4ab9e94897c6f62574d4231281e1308000000000000000000010d1924303a47535f6974818d98a2aebac2ccd6d9d0c5bcb1a7a09691867d746e68605d5554524c4f4d4d4e4f4a505355555d60656c707a818c919ba4aeb7c0cdd6e1dbd0c5bcb0a69c8f8276695f53473a2a20150a000000000004101c2934404b55616d7a85929fa8b2bdc7d1dacec4bab1a79e948f827a6f6b615e57534d4a4847454040444647494b51535860656c727b839095a0a7b1bdc7d1dedbd0c5bcb0a69d9083766a605442392e23180c0000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c666d6d6e6f717374777a7d8084898d92979ea1a9aeb4bcc1cad0d7ddd5cdc5beb6afa39b918c7f726c61584e443b30241b0f0500000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285786c6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6b686d6e7174787b80858c92979fa6afb5bdc6cfd8dfd4cbc3baaea3999184796d60564d4232281e1308000000000005121e2b3845515e6b7884919eabb7c4d1dedacdc0b4a79a8d8174675a4e4134271b0e000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0a4a4a4a4a4a4a4a4a4a49b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000613202c3945515d677683909da9b6c3d2cfc2b5a89c8f8275665c5144382c1f1206000000000000000000000000000000000000000000000000000000000000000000000915202a333f45515d676f7c869298a3abb5beb5aba39f918c80776d686059514b433e37322c2f35383a3d4146474a4c4d4d4e4e4d4c4a4846423c3a37312b26292e313233302e2d2a2a30363d434b515a616a6f7b849196a1aab4beb8afa59f92857b6e665c50443a3021180e000000000000000000000000000000000a15202935414c55616c75828f96a1aab4bfcbd7dbe8ddd2c7beb6aca49f928d837b716c65605953504a47433f3d3b3a3935383a3a3b3d3f4246484e54575f616a6f79808a9297a1a9b2bbc4cdd6cdc5baaea2988e8175685e5246392d201407000000000007131f2c3844515c66727f8c98a2aebac3ced9d6cabeb3a9a1969083796d686059504a45403937332d2f2e2d2c2d2f303137383f444b51585f686d78818e949fa8b2bcc5d0d9d0c7baaea3998f82766a6054453c311f160c010000000000000000000008131e2b37424d57616e7a86929fa6b0bac4cdd7d7cec3b9b1a8a1989287817b736d6765615e565b5a5a5a5b545c606265676d72777d858e939ba3adb6bfc9d2dfddd6cabfb4aa9e94897c6f62574d42372b180e030000000000000c18232f3946525e68727f8c96a0abb5c0cbd7d6ccc3b9b0a69e948f847d746e69625f57575553514b4a51535456555c60646a6f787f869195a0a7b1b9c3cfd9dbd6cabfb4aa9e94897d7063584e4330271d12070000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c787878787878787878787878787878787879797a7b7c7e7f8184868a8d91969a9fa2a9adb3babec5ced6dbd9d4cbc3bbb3aca49f918c7f736d635a50463c32291e12090000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6ded2c5b8ab9f9285787777777777777777777777777777777777777777777778797a7b7e8184888d92989ea1a9b0bbc0c7cfd8ded6cdc3b9afa59f92877c6f675d51443b3020160c01000000000005121f2c3845525f6b7885929eabb8c5d1dedacec1b4a79b8e8174685b4e4135281b0e000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb1b1b1b1b1b1b1b1a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000004111d2935404b556773808d9aacb6c0ccd2c5b8ac9f9285796d6053463a2d20130900000000000000000000000000000000000000000000000000000000000000000000030e18212935404b555f6a707d869299a4afb5bdb5afa39c928d827a706b605d555047433c38332c2c2d3036393b3d3f40414141403f3d3b3a36302e2b26201b1e2225262624262b30363b41464f555c606c717c859196a1a8b2bcb9b0a69e938a7e71695f544a3f32281e0f0600000000000000000000000000000000040d19242f3a43505a616d7a849198a3aebac0c9d3dce4d9d0c7beb6afa49d9590867e78706b63605b54534e4c4a4847454044464748494c4d5354586062696e757c838d929fa2a9b3bbc4cdd6d0c5bcb2a89f92867b6e61564c41362a1e1105000000000004101c2834404a54606d7a85929fa8b2bdc8d4dbcfc5bbb2a8a0958f827a706b605c54514b46443f3d3c3b3a393a3b3d3e43474a50555c606a6f7a828e939da6b0bac4ced7d2c7beb2a99f92867b6e62584e43332a1f0d040000000000000000000000020e1a26313c46525e68727e8b949fa8b2bbc5ced7d5cbc3bab2aaa299928e86807a75716d6869686766676869666d6f72757a7e838a91979ea5adb5bfc8d1dbded5cbc3baaea2988f82756a6054453c31261a060000000000000007121d2a36414c56606d78849199a3afbbc1cad3d4cbc1b8b0a69f969187817b746e69676461605d55545c60616366676d71777c838b9298a0a8b1b9c3cbd5dbd3c9c1baaea2988f82756b6055463d321e150b000000000a1724313d4a5764707d8a97a3b0bdcad6e3dfd2c5b8ac9f9286858585858585858585858585858585858586868787898a8c8e90939a9a9ea1a8abadb3b9bec4cad0d7dcd6cec8c0b9b1a9a29a938b7f736d635b51483e342a20170d000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6dfd2c5b9ac9f92878383838383838383838383838383838383838383838384858687888b8e91969a9fa2aaadb3bbc2cbd1d9ddd5ccc4bbb1a79d938b7e716a60554b4032291f0d0400000000000006121f2c3945525f6c7885929fabb8c5d2dedbcec1b4a89b8e8175685b4e4235281b0f000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9bebebebebebeb4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000010d18242f3d4a5764707d8a9aa4afbbc8d3c6baaea298897c6f6356493c31251a0e0000000000000000000000000000000000000000000000000000000000000000000000060f18242f3a434e58606b707e87939fa4abb4bcbbada49d948f857d736d67615a534e48443d39352f2c2a2d2e3032333435343332302e2d2a25211f1b171b1f2022262b2e32373b42464c525960676d747e869197a1a8b2babab1a79f948e81746c61574d42382e20160c00000000000000000000000000000000000008131e28313e46525e686f7c86929fa5afb7c1c9d3dce2d9d0c7c0bbaea79f98928b837d76706c66625f5859565453514b505354555659575e61666a6f747b818790959da4adb3bbc5cdd6d2c7beb4aaa0968c7f73695e53443b3025190d010000000000000c18232e3945515d67727f8c96a0acb8c1cbd5d7cdc4bab1a79f948f847d736d66605d5553504949484746454748494b4e53545c60676d727c848f949da5afb8c2ccd6d8ccc0b6aca1968d8073695f53463d3221180e0000000000000000000000000009151f2a36414c56626d76828f96a1a9b3bcc5ced8d5ccc4bcb3aba39f98928c86827e7a777675747374757677797c7f81858b90959ea1a9afb7bfc7d1daded5ccc3b9b0a69f92867b6e61584e43332a1f150900000000000000010d1925303a44515c666f7c87929fa5afb8c1c9d3d3cac1b8b0a9a199928d86817b7774706e6d676b6b666d6e707376797e838990949fa2aab1bac3cbd5dbd3c9c1b7afa59f92867b6e61594f44342b200c03000000000a1724313d4a5764707d8a97a3b0bdcad6e3dfd3c6baaea298929292929292929292929292929292929292929993949597999b9d9fa4acabacb2b8babec5c9cfd6dbd7d0cbc3bdb9afa7a09792887f726d635b51493f362c22180e05000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e0d4c7bbafa39992909090909090909090909090909090909090909090909091929995979b9ea1a8acaeb4b9bec5cdd7dcdbd6cbc3bab2a99f958e81746d62584e43392f20170d0000000000000006131f2c3946525f6c7985929facb8c5d2dfdbcec1b5a89b8e8275685b4f4235281c0f000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9c6cbcbcbcbc1b4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000714212e3a4754616d7a86939facb9c6d2cabfb4aa998c807366574d42362a1c1106000000000000000000000000000000000000000000000000000000000000000000000007131d28313c464f59616c717f8b9399a3aab3bbb6aea69f9791878079716c625f58544f4745413a38342f2d2c29242728272726242121222223232522272b2d2f31373a3c43474d52565e616b6f79808a9298a1a9b2babab2a8a0958f82796d605a50453b30261c0e04000000000000000000000000000000000000010c161f2a36414c56606a717e8b939da5afb7c1cad7dde2d9d2ccc0b9b1aaa29f959089827d78736f6a68656361605d555c606162636668696e72777c81878e939aa0a7aebabec5cdd6d8ccc0b6aca2989184796d60574d4232291e14080000000000000007121c2935414c55606d7984919ea5afb9c3ced7d6ccc3b9b0a69f9691878078726d6762605b53565554535254555657585f62666d71797f8691969fa6afb7c1cad4d6ccc4bbafa49a9184796d60574d42342b210f0600000000000000000000000000030e1925303b44515b616e7b849197a1aab4bcc6cfd6d6cec5bdb5afaaa29f98928f8b8684838280808182828385888b8e92989da0a7adb3bbc1c9d1d9ddd4ccc4bab1a79e938b7f72695e53463d3221180e03000000000000000008131e2834404a54606b727f8c939ea5afb7c1c9d6d3cac2bbb2aba39f99928e8884817d7b7a79787778797a7d7f82858b90959c9fa6aeb4bcc3ccd5dbd6c9c1b7afa59d938b7e71695f53473d3322190f00000000000a1724313d4a5764707d8a97a3b0bdcad6e3e2d6cabfb4aaa29f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa3a0a1a2a4a6a7aaacafb6b7b9bdc4c6cacfd5dad6d1cbc6bfbab2aca59d9590857d726d625b514940372e241a100600000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3d7cbc0b5aba39f9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9e9fa3aba4a7abadb2b8babfc5cacfd7dfd8d0cac1b9b1a8a1979083796d605a50463d31271d0e050000000000000005121f2b3744505b657986929facb9c5d2dfdbcec2b5a89b8f8275685c4f4235291c0f000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9c6d3d7d7cec1b4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000713202d3946525e687784919daab7c4cfd0c3b6a99d908376695e5346382e23170b0000000000000000000000000000000000000000000000000000000000000000000000010c161f2a343d47505a626d727f879298a2a9b2bab8b0a9a199938d847e766f6a63605954514b4745403d3a39352f32302f2f2e2e2d2e2e2f2f30322d3337393c3e4347484e53565e61686e747c838d929fa2aab3bbb9b1a8a09690837a6d675c51483e33291e150a0000000000000000000000000000000000000000040d1925303a444e58626d74818e939ea5afb8c1ccd2d9e2ddd8cbc2bcb4aea79f9d948f8a847f7c787472706e6d676c666d6d6e707275787b7f84888e92999fa4acb1b9c0cacfd7d7c8c0bbafa49a92867c6f675c51453b3120170d0200000000000000000d19242f3a45515c66707d8a939da7b1bcc5ced8d5cbc2b8b0a8a199938c847f79736f6c6565636261605d60626364676a6f72797e848c9298a1a8b0b8c1c9d2d6cdc4bab0a69f93887d70675d51453c3122190f00000000000000000000000000000008141e29323f46525e696e7c859298a2aab4bdc4ccd6d7cfc7c0bbb4aeaaa29f9b999391908e8d8d8d8e8f909298989b9fa2aaacb1b9bec4cdd3dbdad5cbc3bab2a8a0958f82776c60574d42342b200f06000000000000000000020c18232e39424f59606c77818f939ea5afb7c1cacfd4cdc4bdb5afaba39f9a96918d8a8886858484858687898c8f92989d9fa7abb0babec5ced5d7cfcac1b7afa59e938e81746c61574d42352c21100700000000000a1724313d4a5764707d8a97a3b0bdcad6e3e7dbd0c5bcb4aeacabababababababababababababababababacaeb5aeafb1b2b4b7b9bbc0c4c5c9ced3d6d9d4d0cac7c0bbb4aea8a09e938e837b706c625b514940372e251c11080000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e8dcd1c7bdb5afacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacaeb5b1b4b7b9bdc4c6cad0d6dad8d3cec6bfbaafa7a09691857b6e675c51483f342b1f150b00000000000000000613202d394653606c798699a3afbbc7d3e0dccfc2b5a99c8f8276695c4f4336291c10000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9c6d3dfdbcec1b4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d100000000000000000000000000005111d2a36414c566774818d9aa9b3becad2c6b9ac9f93877b6e61544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000000040d18222b353e48505a626d727e869297a1a8afbabbb3aba49f96918a827c76706b64605d5553514b49474540403f3d3c3c3b3a3a3b3b3c3c3d3e403f4446484b4e5355585f62696e737a818790959da4aeb4bcbbb0a79f9691847b6e685d554b40362c21170c0300000000000000000000000000000000000000000008131e28323d46505a606d78818e939ea6afbbc0c7d0d7e0ddd4cec5bebab1aba69f9c96918c8884817f7d7b7a797878797a7b7c7f8284878c91959a9fa3abafb6bec3cbd6d9d2ccbfb6aea59f93887e706a5f554b4033291f0e0500000000000000000008131e2834404b54616b74818e95a0aab4bcc6cfd8d4cac2bab2aba49f96918b85807b797572706f6e6d686d6e707174787b7f848b91969fa2aab2bac2cad2d6cdc4bbb2a89f948c80736b60554b40332a1f1007000000000000000000000000000000020d17202a36424d565f6a6f7c869298a3abb2bac1cad0d7d1cbc6bfbab4aeacaba49f9e9c9b9a999a9b9c9d9fa2aaa8abaeb4b8bcc3c9cfd6ddd7cfc9c0b9b1a8a0969083796d655b50453b3122190f000000000000000000000007121c27303d44505b656d78818f939ea5afb9bec5cdd5cfc7c0bbb4aeaca8a09e9a97949892919192989496999c9fa2aaabb1b7bcc2cad0d7d6cdc5beb9afa59e938e81786d605a50453b31231a0f0000000000000a1724313d4a5764707d8a97a3b0bdcad6e3ece2d7cec5bfbab8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b9bbbfbabcbdbfc1c3c6c8ccd2d2d5dad5d2cec8c6bfbab5afaaa39f96918981796e69615951493f372e251c130a000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3e3d9cfc7c0bbb9b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b7b8b9bbbfbec1c4c5c9cfd3d6dbd7d4cdc7c1bcb4aea59e9591847b6e695e554b40362d22190d0300000000000000000713202d3a4653606d798693a0b5c0cbd7e3dccfc2b6a99c8f8376695c504336291d10000b1824313e4b5764717e8a97a4b1bdcad7e4dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9c6d3dfdbcec1b4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000010d1925303d4a5663707d8997a2adb9c6d2c8bbafa49a8c8073665c5044382b1f1409000000000000000000000000000000000000000000000000000000000000000000000000061019232c363f48515b626c717d8591969ea5aeb4bcb5afa8a19e948f88827d77716d6764605c555653514b4d4b4a4948484747474848494a4b4d4950535558585f62666a6f747b80858e939aa0a7aebabdb5afa69e9590847b6e695e564c43392e241b0f0600000000000000000000000000000000000000000000020c16202b343f44505c666d78818f949da5afb5bdc5ced6dbe0d7d0cac3bcb8b0aaa8a09e9996918e8c898786868585868788898c8f9196999da0a8acafb5bbc0c7d0d5d8d0c7c0bbada49d938c7f736c61584e43392f21170d00000000000000000000010c18232e39424f59606d79839098a2aab4bdc6ced6d4ccc4bdb5afa8a19e97928d8885827f7c7b7a79797a7b7c7e8184888c91969ea1a8aeb4bcc4ccd4d4ccc4bbb2a9a1968f82786d60594f433a2f21180e0000000000000000000000000000000000050e1925303b444e58606a707d869299a1a8afbabfc6ced4d7d0cac6bfbab8b5afacaaa9a8a7a6a7a8a9aaacaeb4b4b8babec5c8ced5dad7d2ccc5beb9afa79f9691847b6e675d53493f33291f10070000000000000000000000000b151e27333f49535c666d78818e939ea5adb3bbc1c9cfd1cbc6bfbab9b2acaaa7a3aaa29f9e9e9fa2aaa3a6a9acaeb4b8bcc3c7cdd6d5d0cac1bbb3ada59e938e81786d665c50483e332a1f11080000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e3e9e0d7d0cac6c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c7cbd1c8caccced0d2d4d8d5d2d1cfc9c5c3bdb9b4aeaba39f98928c847d746d675f574f473f372d251c130a01000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1ddded2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6e3ebe1d9d1cbc7c5c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c4c5c7cbd1ced1d2d5dad7d4d1cbc7c2bcb7afaaa29f938e837b6e695f574d43392f241b10070000000000000000000714212d3a4754606d7a8793a0adbad1dce8dccfc3b6a99c908376695d5043362a1d10000b1824313e4b5764717e8a97a4b1bdcad7e3dacdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9c6d3dfdbcec1b4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd8dcd0c3b6a99d9083766a5d5043372a1d1000000000000000000000000000000813202d3a4653606d7985929eabb8c4cfccc0b6ac9e9184796d6053463b30251a0e0000000000000000000000000000000000000000000000000000000000000000000000000007111a242d363f49515a616b707c848e939fa2aab1b9bbb2ada69f9c948f89837e7a75716d676663605d555a585756555554545455555656585a535b606265686a6f73777c81868d92989fa4acb1b9bab2aba39f948f837a6e695f564d433a30271d1209000000000000000000000000000000000000000000000000050e192228343f4a545c666d78828e939fa4abb4bcc2cad0d7e0dbd6cdc8c2bbb7b2acaaa9a19e9b9896949992929298949596999b9ea1a8aaacb1b9bbc0c7ccd2d9d2ccc3bdb5afa39c928d81776c605a50463c31271d0f05000000000000000000000007121d27303e45515d676e7c869298a3abb4bcc4cdd6d6d0c7c0bbb2aca9a29f9997928f8b89888786868788898a8d9196989ea0a8adb2babfc6ced6d5cbc2bab2a9a19691847a6e665c50473d31281d0f0600000000000000000000000000000000000009141f29323c464e58606b707d8791969ea5aeb4bcc2c8ced4d6d0cac7c5c0bbb9b7b6b5b3b3b4b5b5b6b8babfc1c5c6cad0d4d9d5d1cbc7c0bbb3ada59d9590847b6e695e554b41382d21170d00000000000000000000000000030c17222d38414b545c666d78818e939ea2a9afb9bec5c9cfd1cbc7c4bdb9b7b4b0b4aeacabaaabaeb3afb2b6b8babfc6c8cdd3d4cfc9c5bebab0a9a29e938e81786d665c544a3f362d21180e000000000000000a1724313d4a5764707d8a97a3b0bdcad6d6d6d6d6d6dbd6d3d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3d7dcd5dad5d2d1cfcecfc9c6c5c2bdb9b7b2acaaa29f99928e867f79706b605c554d453e352d241b130a0100000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d6d6cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1d6d6d2c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdcad6d6d6d6d6dcd7d4d2d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d1d2d3d7dcd7d3d2d1d1cbc7c5c0bbb9b0aba59e98928b81796e695f574d453b31271d1209000000000000000000000714212e3a4754616d7a8794a0adbac7d3d6d6d0c3b6aa9d9083776a5d5044372a1d11000b1824313e4b5764717e8a97a4b1bdcad6d6d6cdc0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9c6d3d6d6cec1b4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfccd6d6d0c3b6a99d9083766a5d5043372a1d10000000000000000000000000000006121f2c3844505c6674818e9ba9b3bec9d2c7b9ada1968a7d7063574d42362a1c11060000000000000000000000000000000000000000000000000000000000000000000000000008121b242d373f485059606a6f7a818b92989fa7adb3bbb9b0aba69f9c95908b86827d797673706d676867656362626161606161626263656668656c6f7174777c8084888e92999fa2aaafb6beb7afa8a099928c82796d685f574d443b31281e150b0000000000000000000000000000000000000000000000000000071017232e38424a545c666d78818c9399a2aab0babfc6ced3d8ded8d4ccc7c4bdb9b7b2adaba7a5a3aba39f9f9fa2aaa1a3a5a8abadb2b7b8bdc3c7cbd1d8d5d0c7c0bbb2aba49f918c80786c655b50483e342a1f150b000000000000000000000000000b151e2935404b555f6a707d869299a2aab2bbc2cbd0d8d2ccc4bdb9b3adaba9a19e9b989695949992999596979a9ea1a8aaacb2b9bdc4cad0d7cfc9c0b8b0a8a19791847b6e685e544a3f352b1f160c00000000000000000000000000000000000000020d17202a333c464f59616b707d848e939fa2aab1b8bcc3c8ccd2d4d3d2ccc7c6c4c3c1c0c0c0c1c2c3c5c7cad0d2d3d6d6d2cfc9c7c0bbb5afa9a19e938e837b6e695e574d433a2f261b0f05000000000000000000000000000006111b262f39424b545c666d78818a92979ea5adb3b9bdc4c7cdd2cec9c5c4c0bdbfbab8b7b7b8babebcbfc2c5c6cad0d4d2cdc8c4beb9b3ada69e97928a81786d665c544a42382e241b0f06000000000000000a1724313d4a5764707d8a97a3b0bdc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c8c8cfc9c6c4c3c1bfbeb9b8b5b2adaba8a09e98928d87817b736d676159514b433b332c231b1209010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdc9c9c9c9c9bdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4c9c9c9c9c5b8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9d1cbc7c5c4c2c0bbb9b5afaca69f9c938e867e756d675e574d453c33291f150b00000000000000000000000814212e3b4754616e7a8794a1adbac7c9c9c9c9c3b7aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdc9c9c9c9c9c0b3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9c6c9c9c9c9c1b4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bfc9c9c9c9c3b6a99d9083766a5d5043372a1d10000000000000000000000000000003101c28343f4a5463707d8a97a1adb9c7d2c9bdb2a99c8f8275695e5246382d22170b000000000000000000000000000000000000000000000000000000000000000000000000000009121b252d363e474f585f686d757e8690959ea1a9aeb5bbb7b0aaa79f9d98928e8a8583807c7a77757372706f6f6e6d6d6e6e6f6f7071737576797b7e8184888c91959b9fa3abaeb3bbb9b0aba59d9691877f786d675e564d453b32291f160c0300000000000000000000000000000000000000000000000000000006111c263038424b545c666d747f8792989fa6aeb4bcc2c7cdd3d8dfd8d3cec9c5c4bdb9b8b4b2b0b5afacababaeb4aeafb2b5b8b9bdc4c5c8ced3d7d4cec9c4beb6afa8a099938b7f746c665b53493f362c22180d0300000000000000000000000000030c18242f39434e57606b707d879298a1a9b0babfc6ced3d7cec9c5bebab8b3adaba8a5a3a2aba39fa3aba3a4a7abacb2b7b8bdc3c9cfd6d2ccc4bdb9afa69f9691857c6e695f564d42382e231a0d040000000000000000000000000000000000000000050e18212b343d474f59616b707a818b92989fa7acb1b9bbc0c7c8ced1d2d4d2d1cfcecdcccdcecfd0d2d3d6d4d2d1cfcac6c5beb9b5afaba49f97928a81796e695e574d453b31281d140a000000000000000000000000000000000a141d273039424a545c666d757e858f939ea1a9adb2b7bbc2c5c9cfd1d1cdd0cac7c5c4c4c5c6cad0cccfd2d2d1cec9c5c3bcb8b2ada9a29f948f857e756d665c544a423830261c120900000000000000000a1724313d4a5764707d8a97a3b0bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbcbcbbbbbeb9b8b6b4b2b3adaba8a8a19e9a96918c86807b756e69605c554f4540393129211a110900000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdbdbdbdbdbdbdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7bdbdbdbdbdbdb8ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbcbcc0bbb9b7b5b5afacaba39f9c949089817b726d605d554d453c332a21170d0300000000000000000000000815212e3b4854616e7b8794a1aebabdbdbdbdbdbdb7aa9d9184776a5e5144372b1e11000b1824313e4b5764717e8a97a4b1bdbdbdbdbdbdbdb3a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb9bdbdbdbdbdbdb4a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b2bdbdbdbdbdbdb6a99d9083766a5d5043372a1d100000000000000000000000000000000c17232e3a4653606d7985919eabb5c0cccfc4b9ac9f92867b6e61544a3f33281d1207000000000000000000000000000000000000000000000000000000000000000000000000000009131b242c353d464e565d606c717b838b92979fa3abafb5bab7b1abaaa39f9b98928f8c89868482807e7d7c7b7b7a7a7a7b7b7c7d7e80818385888b8e9196999da0a7acaeb4bab8b2aca69f9c938e847c736d665d554c443b332920170d0400000000000000000000000000000000000000000000000000000000000a141e263039424b545c606d727d8690949fa2aab0b7bbc2c7cdd2d5dad9d5d2cfc9c5c4c1bfbcc0bbb9b8b8babebbbcbfc2c4c5c9cfd1d4d6d3cec8c4bdb9b2aca49f9691877f736d605b544a41382d241a100600000000000000000000000000000007121d27313c454f59616b707e8691969fa6aeb4bcc1c7cdd3d5cfcac6c5beb9b8b5b2afaeb5aeacaeb5afb1b4b7b9bdc4c5c8ced5d2ccc7c0bbb2ada59d9490847c6f6a5f574d443b30261c110800000000000000000000000000000000000000000000060f19222b353e474f5960686d757e8690959da0a7acafb6b8bcc1c4c5c9cecccdcececfcfcececdccd2ccc8c6c4c1beb9b8b3adaba39f99938e857e746d675e574d453b33291f160b0200000000000000000000000000000000020b151e273039424a545c606c717a828a92979ea1a8abb0b8b9bdc2c4c5c9cecccdcececfcfcececdcccec9c5c4c1bdb9b7b1aba9a19e97928b827b716c605c544a423830261e140a0000000000000000000a1724313d4a5764707d8a97a3b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0afafaeaeb2adaba9a7a6a9a19e9b9896918d8884807a746e69615f57514b433d342f271f180f080000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0b0b0b0b0b0b0b0b0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab0b0b0b0b0b0b0b0ab9f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0afb5afacaaa8aba39f9c99928f89837d756e69625b514b433b332a21180f050000000000000000000000000815222e3b4855616e7b8894a1aeb0b0b0b0b0b0b0b0aa9e9184776b5e5144382b1e11000b1824313e4b5764717e8a97a4b0b0b0b0b0b0b0b0b0a79a8d8074675a4d4134271a0e000713202d3a4653606d798693a0acb0b0b0b0b0b0b0b0a89b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a5b0b0b0b0b0b0b0b0a99d9083766a5d5043372a1d1000000000000000000000000000000006121f2c3844505c6673808d99a4afbbc7d4c7bbafa3998c7f73665b5044392e23180c01000000000000000000000000000000000000000000000000000000000000000000000000000109121a232b343c444c525a62696e787e858d92999fa3abaeb3b8b8b4aeacaaa29f9c999992918f8d8b8a898888878787888889898b8d8e909297989b9ea0a8aaacb1b9bab9b1aba8a09e94908981796f6a605c544b433a322921170e05000000000000000000000000000000000000000000000000000000000000020c151e273039424b515b636b707b828b92989ea6abb0b7bbc2c6c9cfd2d5dadad5d2d1cecbd1cbc7c5c5c5c6cad0c9ccced1d2d5d6d3d0cac6c3bcb8b2aca8a09a938d847d726d635b504a42382f261b110800000000000000000000000000000000010b151f2a333d474f59616c707c8490949fa3aab0b7bcc2c7cbd1d3d3cfcac6c5c2bebcbbbfbbb9bbbfbcbdc0c4c5c9ced2d3d0cac7c0bbb5afa8a19e938e827a6f6a5f574e453b32291e140a000000000000000000000000000000000000000000000000071019232c353e474f565d606c717b838a90959c9fa4acacb1b4b7b9bdbdbfc0c1c1c2c2c2c1c1c0bec0bbb9b7b5b3adaba9a19e99928e87817a716c605c554d453b332921170d04000000000000000000000000000000000000030c151e273038424a505a61686e757e858c91969c9fa6abadb2b5b7b9bdbdbfc0c1c1c2c2c2c1c1bfbebdb9b7b4b2acaba7a09d97918c857e756e68615a504a423830261e140c020000000000000000000a1724313d4a5764707d8a97a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a2a2a1a9a19e9c9b999797928f8b8884807c77736d68615f57534d4540393129231d150d06000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3a3a3a3a3a3a3a3a3a3a3978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919ea3a3a3a3a3a3a3a3a3a39f9285786c5f5245392c1f12000a1724313d4a5764707d8a97a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a2aba39f9e9c999992908b86827c76706b615e575145403a312920180f06000000000000000000000000000915222f3c4855626f7c8895a2a3a3a3a3a3a3a3a3a3a39e9185786b5e5245382b1f12000b1824313e4b5764717e8a97a3a3a3a3a3a3a3a3a3a3a39a8d8074675a4d4134271a0e000713202d3a4653606d798693a0a3a3a3a3a3a3a3a3a3a39b8e8175685b4e4235281b0f000c1926333f4c5966727f8c99a3a3a3a3a3a3a3a3a3a39d9083766a5d5043372a1d1000000000000000000000000000000003101c28343f4a54616e7b87939facb9c3cecbc0b5ab9e9184786c60544b4034281d1307000000000000000000000000000000000000000000000000000000000000000000000000000000081119222a323a414550575f666c717a80868e92999fa2aaacb1b7b8b8b4aeaca9aba39f9d9b9a98969595949493949495959698999b9d9fa2a9a7aaacb2b7b8b9b5afaca7a09d96918a837c746d676058504a4239312820170f060000000000000000000000000000000000000000000000000000000000000000030c151e2730394045515961696e777f868f949c9fa6abb0b8b9bec4c5c9ced0d2d3d7dcd8dcd7d4d2d2d2d3d6dbdcd6d3d2d0d0cac6c5bfbab8b1aca8a09e96918880796f6b625b51443f382f261d140a000000000000000000000000000000000000030d18212b353e47505a616a6f7b828c92989ea6abb0b9babfc5c7cbd1d2d2d1cecbc9d1cbc7c5c7cbd1cacdd1d2d2d1cbc7c5bfbab5afaba49f96918a81786d685f584e453c332a20170c020000000000000000000000000000000000000000000000000007111a232c353d444c525a62696e767d838a8f939a9da0a7a8aaacb2b1b2b4b4b5b5b5b5b4b4b3b2b6afacaaa8a9a19e9b97928d87817c746d68615a514b433b332921170f050000000000000000000000000000000000000000030c151e2630383f4450565e616c717a7f848a8f949a9ea1a9a8abacb2b1b2b3b4b5b5b5b5b4b4b3b1b2acaba7a8a19e9b95908a847f7a716c615e5650443f3830261e140c02000000000000000000000a1724313d4a5764707d8a9696969696969696969696969696969696969696969696969696969696969696969696959594949791908e8c8a8885827f7c78736f6a66615e56534d46423b342f271f18120b0300000000000000000000000000000000000000000000000a1724313d4a5764707e8a969696969696969696969696968a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919696969696969696969696969285786c5f5245392c1f12000a1724313d4a5764707d8a969696969696969696969696969696969696969696969696969696969696969696969696969696969695959992918f8d8986837f7a756f6b636059524d453f352f281f170e0600000000000000000000000000000916222f3c4955626f7c88959696969696969696969696969285786b5f5245382c1f12000b1824313e4b5764717e8a969696969696969696969696968d8074675a4d4134271a0e000713202d3a4653606d7986939696969696969696969696968e8175685b4e4235281b0f000c1926333f4c5966727f8c9696969696969696969696969083766a5d5043372a1d10000000000000000000000000000000000c17232e3846535f6976828f9ca7b1bcc8d1c7b9aca1968b7e71665c51453a2f24180d0200000000000000000000000000000000000000000000000000000000000000000000000000000007101820282f353f454d545b60686d737b81868d92989da0a7aaacb2b5b8b8b6b5aeacaaa8a6a5a3a2a2a1a0a0a1a1a2a2a3a4a6a8a9abadb3b4b7b9b7b4aeacaba39f9b95908b847e766f6a605d554e443f3830271f160e0600000000000000000000000000000000000000000000000000000000000000000000030c151e272e343f474f575f656c727b82898f949c9fa6abadb3b7b9bdc1c4c5c7cbd1cccdcdcecfcececdcccbd0cbc7c5c3c1bebab8b4aeaca7a09d96918b847d746d676059514840332d261d140b0200000000000000000000000000000000000000060f19232c353e47505860696e787f868f949c9fa6acaeb4b9bbbfc3c5c6cad0cccdcececfcfcececdccd0cbc7c5c3bfbbb9b4aeaba49f99938d847d746d665e564e463c332a21180e0500000000000000000000000000000000000000000000000000000008111a232b323a414550575f616c70787d82878d9095989b9ea0a8a4a5a7a7a8a9a8a8a8a7a6a5aca49f9e9b9997928e8a85807b756e6a605d5650454039302920170f0500000000000000000000000000000000000000000000030c151e262e343e444c525a61686d73797d82888d9196989b9ea1a8a4a5a7a7a8a8a9a8a8a7a6a4a8a19e9b9796918e89837e79736d68625a524d443e342e261e140c0200000000000000000000000a1724313d4a5764707d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8989888887868583817f7e7b7875726f6c6562605854524c46423b363129231d150d07010000000000000000000000000000000000000000000000000a1724313d4a5764707e8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a7e7164574a3e3124170b0000000000000000000000000000000000000000000000000000000005111e2b3844515e6b77848a8a8a8a8a8a8a8a8a8a8a8a8a8a85786c5f5245392c1f12000a1724313d4a5764707d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a89898887868482807d7a76726d68636059544f46423b3329241d160d050000000000000000000000000000000916232f3c4956626f7c898a8a8a8a8a8a8a8a8a8a8a8a8a8a86786c5f5245392c1f12000b1824313e4b5764717e8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8074675a4d4134271a0e000713202d3a4653606d78868a8a8a8a8a8a8a8a8a8a8a8a8a8a8175685b4e4235281b0f000c1926333f4c5966727f8a8a8a8a8a8a8a8a8a8a8a8a8a8a83766a5d5043372a1d100000000000000000000000000000000006111c2a36424d5763707d8a95a0acb8c4cec9bdb2a89e9184796d60554b4035291e130800000000000000000000000000000000000000000000000000000000000000000000000000000000060d161e2429333c424a50565d60696e757b80858c9195999ea0a8a9abaeb4b4b6b8b7b5b3b1b0afaeaeadadadaeaeafb0b1b3b4b6b8b7b5b3b2acaaaba39f9c99928e89837e79716c626058514b433d342e261e150d05000000000000000000000000000000000000000000000000000000000000000000000000030c151d2328353e454d535b60696e767c82899094999ea1a9abacb2b5b7b9bbbfbfbfc0c1c1c2c2c1c0bfbfbebfbab8b6b4b3adabaaa29f9b95918b847e796f6b605d554f473f3628221c140b0200000000000000000000000000000000000000000007111a232c353e464e575e666c727b828990949b9fa3aaacaeb5b6b8babfbebfc0c1c1c2c2c1c1c0c0bebfbab8b6b5aeacaaa29f99938e87807a706c605c544c443c342a21180f060000000000000000000000000000000000000000000000000000000000081119202830353f454d535a61666c70767b8084888b8e91969697999a9b9b9c9c9b9b9a9998979a93918e8c8985817d79746e69625f58524c443e342e271e170e05000000000000000000000000000000000000000000000000030c151c2328323b414650565e61666d71767c8184888c8f91969697999a9b9b9c9c9b9b9a99989696918e8b8784817c77716d66615e565046413b3228231c140c020000000000000000000000000814212e3b4754616e7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c7c7b7b7a7a78767473716e69686562605b53544e4746413a36312a261f18120b0300000000000000000000000000000000000000000000000000000814212e3b4754616e7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e6154473b2e21140800000000000000000000000000000000000000000000000000000000000a1623303d495663707d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7063564a3d3023170a000814212e3b4754616e7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c7b7b79777573706d6765615e56544f48443d3630292118130c04000000000000000000000000000000000714212d3a4754606d7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7063574a3d3024170a000814212e3b4754616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e6255483b2f221508000613202d394653606c777d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f6255493c2f221609000815222e3b4855616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f6356493c3023160900000000000000000000000000000000000e1a26313b4653606c7883909da8b2bdc9cec4b9aca1968b7f72675d51453a3025190c0300000000000000000000000000000000000000000000000000000000000000000000000000000000040c1319212a2f383f444c52575f62696e737a7f84888c9196999c9fa2aaa8aaabaeb3b1b2b3b3b4b4b5b5b5b4b4b3b3b2b1b5afacaba9a6a8a09e9b99928f8b86817c77716d66615a544e45413a3128231c140c030000000000000000000000000000000000000000000000000000000000000000000000000000030b1218232c333c414950575f616b6f767d83888d91979a9ea1a8a8aaacaeb5b2b3b3b4b5b5b5b4b3b3b2b1b4aeacaaa7a9a29f9b98928e8a847e78726d676059514b433d352d2417110a02000000000000000000000000000000000000000000000008111a232c343c454d545b60696e757c83898e92989c9fa3aba9acaeb4b1b3b4b4b5b5b5b5b4b4b3b1b4aeaca9aba39f9c98928e87817c746d67615a514b423a322a22180f0600000000000000000000000000000000000000000000000000000000000000070e161e2429333c424750545b6064696e73777b7f818487898a8c8d8e8e8f8f8f8e8e8d8b8a898684827f7c7975706d66625f57534e45413a3228231d150c050000000000000000000000000000000000000000000000000000030a1117202930363e444c52545c60646a6f74787b7f828487898a8c8d8e8e8f8f8f8e8e8c8b898784817e7b78746f6b64605c54524c443e3630292017110a02000000000000000000000000000714202d3946525e686e7070707070707070707070707070707070707070707070707070707070707070707070706f6f6e6d6d6769686664625f57585553504947433c3936302a261f1a140c07010000000000000000000000000000000000000000000000000000000714202d3946525e686e7070707070707070707070707070706e695e52463a2d20140700000000000000000000000000000000000000000000000000000000000916222f3b4854606b707070707070707070707070707070706b6055483c2f231609000714202d3946525e686e7070707070707070707070707070707070707070707070707070707070707070707070707070707070706f6f6e6d66696663605d5554524c48443d38332a251f170f070100000000000000000000000000000000000713202c3945525d686d707070707070707070707070707070706b6155483c2f231609000714202d3a46525e696e7070707070707070707070707070706e6a5f53473a2e2114080005121f2b3744505b656c7070707070707070707070707070706f6a5f53473b2e211508000714212d3a46535f696e70707070707070707070707070706f6b6054483b2f221509000000000000000000000000000000000009141f2b3744505b65717e8a96a0acb9c3cec9bdb2a89e9285796d60564c41362a1e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000001080f181d262d333a41454d53575e61676d72777b8084888c8f9298989b9d9fa2aaa4a5a6a7a7a8a8a9a8a8a7a7a6a5a4aba39f9e9c999696918e8a86827e7a756f6b64605c545047433d352f281f17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000007111a212a2f383f444d535960636b70767b80858a8e9196989b9d9fa3aba5a6a7a7a8a9a8a7a7a6a5a4aaa39f9d9a9897928e8a85827d78716d66605c554f454039312b231b1206000000000000000000000000000000000000000000000000000008111a222b333b424a50575f626b6f767c81868b8f92999a9c9fa2aaa4a6a7a7a8a8a8a8a7a7a6a4aaa39f9c9999928f8a86817b756f6a605d5550454039302920181006000000000000000000000000000000000000000000000000000000000000000000040c1319212a31373e424a5053575f6166696e7275777a7c7e7f8181828282828181807f7d7c7a7775726f6c6664605c54534d47433c3530282018120b030000000000000000000000000000000000000000000000000000000000060e171e252a323a41464a5053585f62676a6f7275787a7c7e7f8081828282828181807e7d7b7874716e696863605953514b46413a322a251f170e0600000000000000000000000000000005111e2a36414c565e6163636363636363636363636363636363636363636363636363636363636363636363636362626161605c555b595755534d4c4946443f3837322d2a251e1a140e0903000000000000000000000000000000000000000000000000000000000005111e2a36414c565e61636363636363636363636363636363615e564d42362a1e110500000000000000000000000000000000000000000000000000000000000713202c38444f59606363636363636363636363636363636360594f44382c2014070005111e2a36414c565e61636363636363636363636363636363636363636363636363636363636363636363636363636363636363626261605c545a5654514b4746413a38322c27211a140d050000000000000000000000000000000000000004111d2935414c565d606363636363636363636363636363636361594f44382c2014070005111e2a36424d575e61636363636363636363636363636363625f584e43372b1f120600030f1b27333f49535b60636363636363636363636363636363625f584e43372b1f13060005121e2a36424d575f6163636363636363636363636363636360594f43382c1f13070000000000000000000000000000000000030f1b27333f4953606d7984919ea8b1bdc8cec4b9ada1978c7f73685e52463c30271c1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141c22282f353c42474d52555d60656a6f73777c7f8285888b8e909298959799999a9a9b9c9c9b9b9a9a999997969992918f8c8a8784817e7a75716e6863605953514b423e373229241d160d060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f181d262d333b42464f545960636a6e73797d8184888b8e9192999698999a9a9b9c9b9b9a999898979892908e8b8985817d7975706c66605c54514b433d352f271f1910090000000000000000000000000000000000000000000000000000000008101920292f383f444d535960636b6f757a7f82868a8d9092989698999a9b9b9c9c9b9b9a9998969892908d8a86827e7a746e69625f58514c433e342e271e170e06000000000000000000000000000000000000000000000000000000000000000000000002080f181f262b2f383f44464d5355575f616568686d6f717274747576757575747372706f6d67686662605b5453514a47423c373129241e160e070000000000000000000000000000000000000000000000000000000000000000050d141920283035383f44464e5355585f626568686d6f717274747575767575747371706e696864615e5756544f464540393630282019140d0500000000000000000000000000000000010d1925303b444c52545757575757575757575757575757575757575757575757575757575757575757575757565655555453514b4e4c4b4847423f3c3937332d2b27201e19130e090300000000000000000000000000000000000000000000000000000000000000010d1925303b444c525457575757575757575757575757575754524d443b3025190e02000000000000000000000000000000000000000000000000000000000004101c27323d474f5456575757575757575757575757575756554f473d33271c100400010d1925303b444c525457575757575757575757575757575757575757575757575757575757575757575757575757575757575656555453504a4d4a4745413a3936302c27211c160e09030000000000000000000000000000000000000000010d1924303a444c525457575757575757575757575757575757554f473e33281c100400020e1a25303b454d525457575757575757575757575757575755534e463c31261a0f0200000b17222d384149505357575757575757575757575757575755534e463c32261b0f0300020e1a26313b454d5355575757575757575757575757575756544f473d32271b0f030000000000000000000000000000000000000b17222d3844505c66727e8b95a0acb8c2d0c9beb3a99f92857a6d61584e42392e23180d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171e242931373b42464c5154585f62666a6f7376797c7f81838587898a8c8c8d8e8e8f8f8f8e8e8d8d8c8a8987868482807d7a7775716d6765615e56544f46454039302b272018130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141b222731363d43484f54575f62666d7074787b7e828486888a8c8c8d8e8e8f8f8e8d8c8c8b8a888683817f7c7975706d6764605b54504a4540393029241d150d07000000000000000000000000000000000000000000000000000000000000070e171d262d333c42474f54596063686d72767a7d80838588898b8c8d8e8e8f8f8e8e8d8d8b89878683807d7a75716d67625f57534e45413a3128231d150c050000000000000000000000000000000000000000000000000000000000000000000000000000060e151a1d262d33383c4246484d535558565e61636466676868696968686766656462605d55595653504a4644403937312b262019130c040000000000000000000000000000000000000000000000000000000000000000000002080e161e25292e34383c4347484e535559565d616364666768686969686867666563615e575854534d4948443d38342e2a251e160e080200000000000000000000000000000000000008141e29323b4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a494948484747454041403e3b3a37312f2d2b27221b1b15110d08020000000000000000000000000000000000000000000000000000000000000000000008141e29323b4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4746423b32291f1409000000000000000000000000000000000000000000000000000000000000000b16212b353d4448494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a48443d352c21160b00000008141e29323b4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a49484846443f403d3a39352f2d2a251e1b16100b05000000000000000000000000000000000000000000000008131e28323a4145474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a48443e352c21160b00000009141f29333b4246474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4847433c342a20150a00000006111b262f383f44464a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4947433c342a20150a00000009141f2a333b4246484a4a4a4a4a4a4a4a4a4a4a4a4a4a4948433d342b21160a0000000000000000000000000000000000000006111b28343f4a54606d7884919da6b0bdc7cfc5baaea2988d80746a5f544a4034281f150b0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b131920262b30363a4145474e5355585f6266666d6f727577787a7c7e7f80808181828282818180807f7e7c7b79787673706d686864605d5554524c48433d38342e271e1b160d0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f262a32383d44484e53545c606367696e727577797b7d7f8080818282828180807f7e7d7b797774726f6d6664605d5553504a443f38342e271e18120b030000000000000000000000000000000000000000000000000000000000000000050b141c222831373d44484f54565e6165676d717376797b7d7e808181828282828181807e7c7b797673706d6864605d55534d47433c352f281f18120b030000000000000000000000000000000000000000000000000000000000000000000000000000000003090b141c22282b31373a3b4246484c4c52545657595a5b5b5c5c5c5b5b5a58575654514c4c4946443f3a38342e2b261f1a150d080200000000000000000000000000000000000000000000000000000000000000000000000000040c13191c23282c31373a3c4347484c4c52545657595a5b5b5c5c5c5b5b59585654524d4b4846423c3b38322c28231d19130c050000000000000000000000000000000000000000020d1720293036393b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3c3b3a3a38342f33312f2e2b2622201f1b17110f0a0501000000000000000000000000000000000000000000000000000000000000000000000000020d1720293036393b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a36302920170d0200000000000000000000000000000000000000000000000000000000000000050f19232b32383b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332c231a0f05000000020d1720293036393b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3c3b3a38342e302d2c2924201e19130f0a0400000000000000000000000000000000000000000000000000020c1620283035393a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332c231a1005000000020d17202930363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a37312a22180e03000000000a141d262d3337393d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b37322a22180e04000000030e18212a31363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b38322b22190f0400000000000000000000000000000000000000000c17232e3844505c66707d8a949fabb5c0cccabeb4aa9f92867c6f665c51443d31271d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d151a1f252a2f35393c4347484e5355545c606265686a686d6f7172737474757576757574747372716f6e6d66696663615e565754514c4746413b38322c28231d150c0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141a21272c33383c42474a505357575f616568666d6e70727374747576757474737271716e6d66676563605c5453514b46443f38342e28231d150c070100000000000000000000000000000000000000000000000000000000000000000000020a111720262b32383d44484c5254555d606467666d6e70717374747575757574747371706e6d666663605d5653514b47423c373129241e160d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f262b2d31363a3b3f414647494b4c4e4e4f4f4f4f4e4e4d4c4a494745413f3c3938332d2c28231c1a150f0a030000000000000000000000000000000000000000000000000000000000000000000000000000000002080d11171c1f262b2e31373a3c3f414647494b4c4d4e4f4f4f4f4e4e4d4b4a4846423e3b3a36312f2c271f1c18120d080200000000000000000000000000000000000000000000050e171e252a2d2e3030303030303030303030303030303030303030303030303030303030303030303030302f2f2e2e2d2c2923262422211e1a1613120f0b060000000000000000000000000000000000000000000000000000000000000000000000000000000000050e171e252a2d2e3030303030303030303030303030302e2d2a251f170e0500000000000000000000000000000000000000000000000000000000000000000007111921272c2f303030303030303030303030303030302f2c27211a11080000000000050e171e252a2d2e3030303030303030303030303030303030303030303030303030303030303030303030303030303030302f2f2e2d2c28232321201d1813110d080200000000000000000000000000000000000000000000000000000000040e161e24292c2d303030303030303030303030303030302f2c28211a11080000000000050e171f252a2d2e3030303030303030303030303030302f2e2b2620180f060000000000020b141b22272b2d3030303030303030303030303030302f2e2b26201810070000000000060f181f262a2d2e3030303030303030303030303030302f2c272119100700000000000000000000000000000000000000000006111c28343f4a54616c76829099a4afbbc4cfc5baaea3999083786d60584e43392f24180f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e141a1e24292c31373a3c4347494a505355585b565e61626466666767686969686867676666646361605c54595754524c4a4745413b3936302c271f1c18120b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e161b21272c3137383f44464a4d535558545c6061636566676768696868676665656462605c54585653514a4745403938332d28231c18120b030000000000000000000000000000000000000000000000000000000000000000000000000000060b151a21272c32383a4146474c515457545c6062636566676868696968686766656361605c545754524c4745403a37312b262019130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f141a1e21262a2d2e3036393a3c3e3f4141424342424241403f3d3c3a39352f2f2d2b28221f1c18120e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c10151b1f21262b2e2f3035393a3c3e3f4141424243424241403e3d3b3a36302e2d2a25221f1b16100c070000000000000000000000000000000000000000000000000000050d14191e202124242424242424242424242424242424242424242424242424242424242424242424242323222221201f1c1819181514120e090605030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d14191e202124242424242424242424242424242421201e19140d050000000000000000000000000000000000000000000000000000000000000000000000070f161c20222324242424242424242424242424242323201c160f0800000000000000050d14191e2021242424242424242424242424242424242424242424242424242424242424242424242424242424242423232221201f1c17171413110d07050100000000000000000000000000000000000000000000000000000000000000040c13191d20212424242424242424242424242424242423201c16100800000000000000050d141a1e202124242424242424242424242424242422211f1a150e0600000000000000020a11171b1f2024242424242424242424242424242422211f1b150e0700000000000000060e141a1e2122242424242424242424242424242423221f1b160f0700000000000000000000000000000000000000000000000c17232e38424f59626f7c87939fa8b2bdc9cbbfb4aba0958c80736a60554b40352921180e040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e13191d20262b2e32373b3c3f4446494c4e4c5254565759595a5b5b5c5c5c5b5b5a5a5957565453504a4d4a4746413e3a39352f2d2a251e1b16100c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f161c20262b2e34383a3d4246484b4a5053555759595a5b5b5c5c5b5a595958575553504a4c494644403a38352f2b28221c17110c07000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e161b21272c3036393a4145474a4a5053555658595a5b5b5c5c5b5b5a5a58565453504a4a4745413a39352f2b261f1b150d0801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12141a1e2122252a2d2e30313334353536363535343332312f2d2c292423201f1c1712100c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f12151b1f212224292d2e30313334353536363535343332302e2d2a2521211e1a15130f0a04000000000000000000000000000000000000000000000000000000000002080d111414171717171717171717171717171717171717171717171717171717171717171717171716161515141413100c070b080806020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1114141717171717171717171717171717171414110e090200000000000000000000000000000000000000000000000000000000000000000000000000050b101316161717171717171717171717171717171614100b0500000000000000000002080d1114141717171717171717171717171717171717171717171717171717171717171717171717171717171717171615151312100c0607060401000000000000000000000000000000000000000000000000000000000000000000000002080d111314171717171717171717171717171717171614100b0500000000000000000002090e1114141717171717171717171717171717171514120f0a0300000000000000000000060b0f12131717171717171717171717171717171615130f0a0400000000000000000003090e12141517171717171717171717171717171615130f0a0400000000000000000000000000000000000000000000000006111c26303e4754606a74808d96a1adb9c1ccc6bdb1a79f92877c6f675d51453d332a20160c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d11151b1f21262b2e2e34383a3c3f42414647494b4c4d4d4e4e4f4f4f4e4e4d4d4c4b494846443f403d3a3936302d2c2924201e19140f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10151a1c23282c2d31373a3b3f3f4446484a4c4d4d4e4f4f4f4e4d4d4c4b4a4846443f3f3c3a38342e2c29241f1c17110c06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f161b1e252a2d2f35393a3e3f4446484a4b4d4e4e4f4f4f4f4e4e4d4b494846443f3d3a39352f2c29241d1a150f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205090e121415191d202123242627282829292928282725242321201d191613120f0b060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060a0f121515191d2021232426272828292929282826252321201e1a1514120e090703000000000000000000000000000000000000000000000000000000000000000000010507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0909080707060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09070400000000000000000000000000010507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09090807060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000010407070a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09070400000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0808060200000000000000000000000000000305060a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0908060300000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a090907030000000000000000000000000000000000000000000000000000000a151e2b37434e58606d7984919ea5afbac4cfc3bbafa3999184796d60594f453c32281e150b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001040a0f12151b1f2123282b2d2f323035393a3c3e3f40414142424342424141403f3e3c3b3a38342e302e2d2a2521201d1914110e08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e11171c1f20262b2d2e2e34383a3b3d3f4041414243424141403f3e3e3b3a38342e302d2c28231f1d18120f0b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13191d2024292c2d2e34383a3b3d3e404141424242424141403e3d3b3a38342e2d2c2924201d18130e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080d1113141618191b1b1c1c1c1c1b1b1a1917161413110d08060603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608080d1113141618191a1b1c1c1c1c1b1b1a18171514120e09070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c1b27323c45515d67707d8a939ea8b2bdc7cbc0b5aba0968d80746b60574d443a30271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060a0f1315171c1f20222525292d2e2f313333343435363635353434333331302e2d2b28232421201d191413110d080502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c1012131a1e212223282c2d2e30323334343536353534333232312f2d2b282323201f1c1813100c0703000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1113191d202123282b2d2f30323334353536363535343332302e2d2b282321201d1913110d0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707090b0c0e0e0f100f0f0f0e0d0c0a0907060401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707090b0c0e0e0f0f100f0f0e0d0b0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080c0e0f13131313131313131313131313130c0b09060100000000000000000000000000000000000000000000000000000000000000000000000000000003060809131313131313131313131313131313131312070604000000000000000000000000000004080a0a13131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313060400000000000000000000000000000000000000000000000000000000000000000000000002070a0c0d13131313131313131313131313131313120f0a050000000000000000000000000000000000000000000000000000000000000002070b0d0d131313131313131313131313131313130e0d0b08030000000000000000000000000000000000000003070b0d0e13131313131313131313131313131312110f0b07010000000000000000000000000000000000000000000000000000000000000000000000000000000a15202935404b55616b75818e96a0abb5c0cbc7bdb2a89f93887d70695f564c42392e2318120900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060b1012131619191d2021232426262728282929292828272726242321201f1c17171413110d0806040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306090e121415171c1f2022242626272828292928272626252422201f1c17161312100c0704000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105080d111314171c1f2022232526272828292928282727252321201f1c171413110d0804010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090f14181b1b2020202020202020202020202020191816120d07000000000000000000000000000000000000000000000000000000000000000000000000030a0f12151520202020202020202020202020202020201e1413100c0701000000000000000000050b101416172020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202013100c07000000000000000000000000000000000000000000000000000000000000000000080e1317191a202020202020202020202020202020201e1b1610090100000000000000000000000000000000000000000000000000000000080e1317191a202020202020202020202020202020201b1a18140f080100000000000000000000000000000001080e1317191a2020202020202020202020202020201e1e1b17120c050000000000000000000000000000000000000000000000000000000000000000000000000000040d18242f3a434f59606d7a849199a3afbbc1ccc3bbafa49a92857b6e685d544b403428241b1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060709080d1113141618191a1a1b1b1c1c1c1b1b1a1a191816151312100b0607070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507060c1012131517191a1a1b1c1c1c1b1a1a191817151312100b0607060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406060b1012131517181a1b1b1c1c1c1c1b1b1a1816151312100b0606040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708090b0c0d0e0e0e0d0d0c0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507081313131313131313131313131313130c0b09050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b131a202527282d2d2d2d2d2d2d2d2d2d2d2d2d2d2625221e18110901000000000000000000000000000000000000000000000000000000000000000000060e151a1f21222d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b201f1d18120b03000000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d1f1c18120b030000000000000000000000000000000000000000000000000000000000020a12191f2326272d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a0100000000000000000000000000000000000000000000000000020a12191f2326272d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2727241f1a130b0200000000000000000000000000020b12191f2326272d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b2a27231d170f06000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313e45515d676f7c87929fa6b0bac3ccc0b6aca19791847a6d665c514540362c241b120a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707090b0c0d0e0e0f0f100f0f0e0e0d0c0b09080706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030607080a0c0d0e0e0f100f0e0e0d0c0b0b080706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030607080a0b0d0e0e0f0f0f0f0e0e0d0b0a0807060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030506080e1114141618191a1a1b1b1a1918161414110e080806020000000000000000000000060606060606060606060606000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e111414202020202020202020202020202020181715110c060000000000000000000000000000000000000000000000000000000000000000000000000000000000020b151d252c313435393939393939393939393939393932312e29231b1309000000000000000000000000000000000000000000000000000000000000000006101820262b2e2f3939393939393939393939393939393939382d2c29241d150d03000000000008111a22282d3031393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939392c28231d150c03000000000000000000000000000000000000000000000000000000000a141c242a2f32333939393939393939393939393939393937332c251c1309000000000000000000000000000000000000000000000000000a141c242a2f3334393939393939393939393939393939393433302b251d140b010000000000000000000000010b141d242b3033343939393939393939393939393939393837342f2821180f0000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2935414c55606a727f8c949ea8b1bbc5c7beb3a9a0969082786d605b51483e362d241b13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f121316191e2021232526272728272726252321201e191514120f0905010000000106090b0c13131313131313131313131308070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d141a1e20212d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2524221d1811090000000000000000000000000000000000000000000000000000000000000000000000000000000009131d272f373d404246464646464646464646464646463f3e3a352d251b1107000000000000000000000000000000000000000000000000000000000000030e18222a31373a3c4646464646464646464646464646464646453a38352f271f150b0100000005101a232c33393c3d4646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464638342e271e150b00000000000000000000000000000000000000000000000000000008121c262e353b3f4046464646464646464646464646464646433e372e251b1005000000000000000000000000000000000000000000000008121c262e363b3f404646464646464646464646464646464641403c362f261d1308000000000000000000000008121d262e363c3f414646464646464646464646464646464543403a332a2110060000000000000000000000000000000000000000000000000000000000000000000000000000040d19242f3a434e58606c78828f95a0a9b3bdc7c5bbb2a89f948e81746d635a50483f362d2517110a020000000000000000000000000000000000000000000000000000000000000000000000000000000004060708090a0b0b0c0c0b0a0a0908070502000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707090a0a0b0b0c0b0b0a0a09090806060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090a0a0b0b0c0b0b0b0a080706040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060608090a0a0b0b0c0b0a0a0908070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f11171b1f2023252a2d2e30313333343434333332302e2d2a2522211f1a15110d0802060d121518182020202020202020202020201514120e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e171f252a2d2e39393939393939393939393939393932312e29231b12090000000000000000000000000000000000000000000000000000000000000000000000000000040f1a252f3941484d4e53535353535353535353535353534c4a463f372d23180d0100000000000000000000000000000000000000000000000000000000000a15202a343c4347485353535353535353535353535353535353514745403931271d12070000000b17222c353e44494a5353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535345403930271d120700000000000000000000000000000000000000000000000000020e19242e3840474b4d535353535353535353535353535353534f4940372c21160a00000000000000000000000000000000000000000000020e19242e3840474b4d535353535353535353535353535353534e4c4841382f251a0f03000000000000000000030e19242e3840474c4d53535353535353535353535353535351504b453c3322180e03000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313d44505b666d7a839197a2abb5c0cbc3bab0a69e938c7f736c615a51483f3727221b140b0200000000000000000000000000000000000000000000000000000000000000000003050609070c10131315161718181818181716161414110e090807050200000000000000000000000000000000000000000000000000000000000000010406070d110707050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507070a080d1113141616171718191818171616151513120f0b06090706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708070c10131415171718181918181717151413100d07080806020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003050608060b0f12131416171718181918171615151413100d070706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10151b1b22272b2d2f3036393b3c3e3f4041414140403f3d3b3936302f2e2b26201e19130e11181d2224252d2d2d2d2d2d2d2d2d2d2d2d22211e1a140e0600000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202930363a3b4646464646464646464646464646463f3d3a342d241b1106000000000000000000000000000000000000000000000000000000000000000000000000000814202c37414b53595b6060606060606060606060606060595751493f35291e120600000000000000000000000000000000000000000000000000000000030f1a26313c464e535560606060606060606060606060606060605e53514b43392f24180c000004101c28333e475055576060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605f514b43392e23180c0000000000000000000000000000000000000000000000000007131f2a35404a52585a6060606060606060606060606060605f5a52493e33271b0f0000000000000000000000000000000000000000000007131f2a36404a52585a606060606060606060606060606060605a58534a41362b1f140200000000000000000007131f2b36404a52585a6060606060606060606060606060605e5c564e45342a20150a0000000000000000000000000000000000000000000000000000000000000000000000000000010c161f28333f4a545d686e7b859299a3afbbbfc8c2b8afa59c918a7e716c625b514940332d261d140a00000000000000000000000000000000000000000000000000000000000104060b0f12131518181c1f20222324242525252524232221201e19181514120e090603000000000000000000000000000000000000000000000000000001070d1113141a1d1413110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406080d111314171a191d202122232424252525242423232221201f1c1718161413100c0706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306090e11141417181d1f20222324242525252524232220201d18181514120e0906040000000000000000000000000000000000000000000000000000000000000000000000000000010407060b0f12131518171c1f2021232324242525252423222120201d18151312100b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b0f161c20262b2d3337393c3f414647494b4c4d4d4e4e4d4c4b494746413f3b3a37312d2a251e1a1b23292e31323939393939393939393939392e2d2a261f180f0600000000000000000000000000000000000000000000000000000000000000000000000000000009141f29333b4246535353535353535353535353535353534b4a453f362d23180c010000000000000000000000000000000000000000000000000000000000000000000000000c1825313d48535d65686c6c6c6c6c6c6c6c6c6c6c6c6c6c65625b51463a2e2216090000000000000000000000000000000000000000000000000000000006121f2b37434e585f626c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b605d554b4035291d1004000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5c554b4034281c10040000000000000000000000000000000000000000000000000a17232f3b47525c63666c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e12000000000000000000000000000000000000000000000b17232f3b47525c64676c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645c53483c301f14090000000000000000000b1723303c47525c64676c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b686056463c31261b0f030000000000000000000000000000000000000000000000000000000000000000000000000000040d17222d38424c565f69707d87929fa3adb6c0c8c1b7ada49f92877e726d625b52443f382f261b1106000000000000000000000000000000000000000000000000000001080d1113171b1f20222523282c2d2e3031313132323131302f2e2d2a252521211e1a15130f0a040000000000000000000000000000000000000000000000060b13181d2020262a21201d19130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004070d101314191d20212427252a2d2e2f3030313232323131302f2f2e2d2b28222523201f1d1815120f0a070300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050a0f13151a1e20212424292c2d2f3031313232323131302f2d2c29242522211e1a1313100c070000000000000000000000000000000000000000000000000000000000000000000002080d111314171b1f20222522282b2d2e2f30313132323231302f2e2d2c292422201f1c17110f0a04000000000000000000000000000000000000000000000000000000000000000000000000000002080d161b21282c3237383f4446494c4d52545658595a5a5b5a5a59585654524c4c4847433c3936302b26252d343a3d3f4646464646464646464646463b3a36312a21180e0300000000000000000000000000000000000000000000000000000000000000000000000000020e1a25303b454d525f606060606060606060606060606060585651483f34291d11050000000000000000000000000000000000000000000000000000000000000000000000000e1b2734404d59656f757979797979797979797979797979726d62574a3e3125180b000000000000000000000000000000000000000000000000000000020b1a232e3a47535f6a6f7979797979797979797979797979797979786d675d5145382c1f1306000a1623303c4955616c7079797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797976675c5145382c1f13060000000000000000000000000000000000000000000000000c1926323f4b58636e73797979797979797979797979797979766c5f5346392d2013000000000000000000000000000000000000000000000d1926333f4b58646e7379797979797979797979797979797979746e64584c3b3025190e0200000000000000000d1926333f4c58646e74797979797979797979797979797979787268584e43372b1f120600000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3a434d57606b717e8b919ba4aeb6c0c8bfbbafa39992877f726d635c504941382d22170b000000000000000000000000000000000000000000000000040a0f13191d2022272b2d2f312e34383a3b3c3d3e3e3f3f3e3d3d3c3b3a3630322e2d2a25221f1b15100c0701000000000000000000000000000000000000020a11171d24292c2d33372e2d29251e160e0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c1013181d202024292d2e30333036393a3c3d3d3e3e3f3e3e3d3d3c3c3b3938332d31302d2c2924211f1b15130f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d11161b1f22252a2d2e312f35393a3c3d3d3e3e3f3e3e3e3d3b3a39352f312f2e2b26201f1c18120e0903000000000000000000000000000000000000000000000000000000000000040c13191d202122272b2d2f312d3338393b3c3d3d3e3e3f3e3d3d3c3b3a39352f2f2d2b28231c1b15100c070000000000000000000000000000000000000000000000000000000000000000000000050c131921272c33383c43474950535659565e616364666667676766666563615e565855534e4746413a373129373f464a4b5353535353535353535353534846423b332a1f14090000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36424d575e6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c65625b51453a2e2215090000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b68758186868686868686868686868686867f7265594c3f3226190c0000000000000000000000000000000000000000000000000000000a141d2c38434e58626f7c878686868686868686868686868686868684796d6053473a2d201407000a1724313d4a5764707d868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a667380868686868686868686868686868686796c605346392d201300000000000000000000000000000000000000000005121e2a36424d5767738086868686868686868686868686868686807467564d42362a1e11050000000000000004111d2935414c5667748086868686868686868686868686868684786a5f53473a2e211507000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d28313c454f59626c727f8c929ca4aeb6c0cbc0b5aba399938b7f736e605b53493f33271b0f03000000000000000000000000000000000000000000050b10161b1e24292c2d3337393c3e4140454648494a4b4b4b4b4b4a4949474642413e3b3a36312e2b271f1c18120d0801000000000000000000000000000003090c141c23282f35393a40443a3935302820160d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12181c1f24292c2d3035393a3d404241464749494a4a4b4c4b4b4a4949484846443f403e3c3a38352f2e2b26221f1b16100c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e14191e20272b2e30363a3b3e41404547484a4a4b4b4c4b4b4a4a48474540413e3b3a37312d2c28231d1a140f0a04000000000000000000000000000000000000000000000000000001090e161e24292c2d2d3337393b3e413f444647494a4a4b4b4c4b4a4948484745403f3c3a38342e2b271f1c18120b030000000000000000000000000000000000000000000000000000000000000000060e171e252a32383e44484e54535b60626669686e6f717273747474737372706e686965625f5854524c47423c353f4951565860606060606060606060606055534d453b31261a0e020000000000000000000000000000000000000000000000000000000000000000000000000714202d3a46525e6976797979797979797979797979797979726d62564a3d3124170b0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9393939393939393939393938c7f7265594c3f3226190c000000000000000000000000000000000000000000000000000006111b262f384854606a75828f9993939393939393939393939393948a7e71675d5145382c1f1306000a1724313d4a5764707d8a9393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d9393939393939393939393939386796c605346392d20130000000000000000000000000000000000000000000714202d3a46525e697784909393939393939393939393939393918477695e52463a2d201407000000000000000713202c3945525d687783909393939393939393939393939396887b6f6255483c2f24180d01000000000000000000000000000000000000000000000000000000000000000000000000000000020b161f2a333d47505a626d73808d929da4aeb6bfc7bdb5aba49f918c80746c655b5044372b1f120500000000000000000000000000000000000000040b10171c21272c2f35393a3f4446484b4d4b5153555657575858585857565554524d4d4b4846423c3b37322c29231d19130b06000000000000000000000000060c141a1e262e343a4045474d504746413a32281f150c0200000000000000000000000000000000000000000000000000000000000000000000000000000003090f141a1d23282c2f35393a3e4146474a4d4f4c52545556575758585857575656555453504a4d4b494745403c3a37312f2c271f1c18120d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d141a1e252a2d32373b3c4246474a4e4b5153555657575858585857565553514b4d4b4847423d3a38342e2b261f1b150e090300000000000000000000000000000000000000000000000009131b20283035393a3d3f4446484b4e4a505354565657575858585756555453514b4b4846443f3837322c28231d150c070100000000000000000000000000000000000000000000000000000000020a1117202930363d44484f55585f62656c6f7275787a7c7e7f80808181807f7e7c7a7876726e6a66615e56534e454146515b62656c6c6c6c6c6c6c6c6c6c6c6c6c5f574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7b8686868686868686868686868686867e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9b9f9f9f9f9f9f9f9f9f9f988c7f7265594c3f3226190c00000000000000000000000000000000000000000000000000000b17222d38414f59626f7c89939e9f9f9f9f9f9f9f9f9f9f9fa4999083766c61554b4035291d1004000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d999f9f9f9f9f9f9f9f9f9f9f9386796c605346392d20130000000000000000000000000000000000000000000815212e3b4854616e7b8795a09f9f9f9f9f9f9f9f9f9f9f9fa096877b6e6154473b2e211409000000000000000714212d3a4754606d7a86939f9f9f9f9f9f9f9f9f9f9f9fa8988c7f7265554b4035291d110400000000000000000000000000000000000000000000000000000000000000000000000000000000040d18212b353f48515b636e74808d929ca4adbbc0c7bdb5afa39b928c80776c605346392d201306000000000000000000000000000000000001080d161b22282d32383a41454749505355585a545c606163646464656564646362615e565a5854534d4947433d38342f29241e17110a020000000000000000030a11171f252a30383f444b5153595d54524c443a31271e140a0000000000000000000000000000000000000000000000000000000000000000000000000002090e151a1f252a2e34383a4045474a4c5254575a5b565e6162636364656565646463626261605b545a585653514b4847433c3b38322c29231d19130b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13181f252a3036393d4347494d5254575a555d606263646465656564646362605d555a5855534d4a4645403937312b27201a150b060000000000000000000000000000000000000000000006111b252d323a4145474a49505355585a545b60616263646465656564636261605d55585553504a47433c38342e271e18120b030000000000000000000000000000000000000000000000000000020b141b2227323a41464f545961636a6f73787c7f828587898b8c8d8d8e8d8d8c8b898785827f7b77726d68625f57514c4a56626d7279797979797979797979797976695f53463a2d2114070000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a87939393939393939393939393938b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8acacacacacacacaca5988c7f7265594c3f3226190c00000000000000000000000000000000000000000000000000030f1b27333f4953616b7682909ca5afacacacacacacacacb4aa9f93877c6f625a5043392f24180c00000a1724313d4a5764707d8a97a3acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6acacacacacacacacac9f9386796c605346392d2013000000000000000000000000000000000000000003101c28343f4a5465717e8b98a7b1acacacacacacacacacacb2a8978a7e7164574b3e30251a0e020000000000000a1724303d4a5763707d8a99a4afacacacacacacacacacaca99c8f8276675d5145392c2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000060f19232d363f49525c606c77808d929ca4afb5bdb9b1aaa39f948f857b6e6255483b2f22150800000000000000000000000000000000040c131921272c33393d43484c5154535b6062646769666d6e6f70717172727170706f6e69696765615e5756544e47454039352f27221b140b07000000000001070c151c232831363e424a50555d60666a615e564c433930261c11060000000000000000000000000000000000000000000000000000000000000000000000060c141a20262b3036394045464b515357565d616366686a686d6f7070717172717170706f6f6e6c6668666463605d5555534e4948433d38342f29241e17110a02000000000000000000000000000000000000000000000000000000000000000000000000000001070d161d242930363b4146474e5456575e61646769676d6f7070717172717171706e6d676a6764625f575653514b46423c37322b261f17110a0200000000000000000000000000000000000000010d18232d373f444c525456535b6062646769666c6e6f70707171727170706f6e6d67686562605c54544e464540393029231d150d06000000000000000000000000000000000000000000000000020b141d262d333d444c525960636b70767c8084898c8f9297969799999a9a9a9999989697928f8b88847f7a756e6a605d554f5865727f8686868686868686868686867b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a87949f9f9f9f9f9f9f9f9f9f9f988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4b9b9b9b9b9b9b2a5988c7f7265594c3f3226190c000000000000000000000000000000000000000000000000010b151f2b3744505b65707d8a949fabb8b9b9b9b9b9b9b9baaea2988e81746a5f54483e31271d120700000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3b9b9b9b9b9b9b9ac9f9386796c605346392d2013000000000000000000000000000000000000000006121f2b3844505c6675828e9ba8b5b9b9b9b9b9b9b9b9b9b9b4a79a8e817467574d42362a1e1205000000000004111d2935414c566773808d9aabb5c0b9b9b9b9b9b9b9b9b9ac9f92867a6d6053473a2d20140900000000000000000000000000000000000000000000000000000000000000000000000000000000000008111b242d374044505b656c74808c929fa4abb4aea7a098928b827a6e695f53473a2e211408000000000000000000000000000000070d161e242932383e44494f54555d6064656c6f71747678797b7c7d7e7e7e7e7e7d7c7c7a787674716e696662605853514b45413a332d261d181008020000040c13181e262e343b42464f545c60676d73776d685e554b42382e231712090000000000000000000000000000000000000000000000000000000000000000030a11171f252a31373b42464b5153555d606467686d70737577787a7c7c7d7d7e7f7e7e7d7c7c7b7b79777573716f6d6765625f5856544f47454039353027221b140b06000000000000000000000000000000000000000000000000000000000000000000000000040c12181f282f353b42464c525458606267696e717476787a7b7d7d7e7e7f7e7e7d7d7b7a787674716e696763605c54534d47433c373128231c140c0600000000000000000000000000000000000006121e29343f4951565d606366656c6e71747678797a7c7d7d7e7e7f7e7d7c7b7b7a7774726f6d6662605853514b423d342f271f18100600000000000000000000000000000000000000000000020c141d262f383f444f565e616b6f777d83888d9196999c9fa2a9a4a5a6a7a7a7a6a6a5a9a29f9c9896918c86817b736d6760595865727e8b93939393939393939393887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1acacacacacacacacaca5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1c6c6c6c6bfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000000000000000000007121d2834404a54606c7883909da6b0bbcac6c6c6c6c9bdb2a89f92857a6e61584e43362c1f150b0100000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0c6c6c6c6c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000713202d3a4653606d7985929fabb8c5c6cec9c5c4c5c9cec4b7aa9e918477695e52463a2d20140700000000000613202c3945525d687783909daab6c3d2cec9c5c4c5c9c7bbaea3998a7d7064574a3d31261a0f0200000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b2527333f49535b606e737f8c9399a2aaa49d9590867f756d685f574d42372b1e120600000000000000000000000000000910191f282f353d44485055596063676d7174787b7e8083858688898a8a8b8b8b8b8a8988878583807e7b77736f6a65605c55514c443f382f2a2219130c04070d161d242930383f444d535961666d717980837a6d675d544a3f3428241b1108000000000000000000000000000000000000000000000000000000000000060c151c232830363c43474d52555c6064676d7174777a7d808283858788898a8a8b8b8b8a8a89898887868482807e7c7976726f6a6863605953514b46413a332d261d17110a02000000000000000000000000000000000000000000000000000000000000000000050d161d2429313a41454d52565e61666a6f74787b7e8183858688898a8a8b8b8b8b8a8988868583807e7b7874706d66615f57544e47423c342e261e180f0800000000000000000000000000000000000915222e3a46515b62686d707376797b7e818384868789898a8a8b8b8b8a8988878684817e7c79746f6a64605c544f454039312a221810060000000000000000000000000000000000000000000a141e262f384149505960686d747d838a90949a9ea1a8a8abadb3b1b2b3b3b4b4b3b2b1b3adaba9a8a09e99928e86807a706b635b65727e8b989f9f9f9f9f9f9f9f94887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adb9b9b9b9b9b9b9b1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1ced2d2cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000000000000000000000c18242f3844515c66717e8a95a0acb8c2cdd2d2d9d0c7b9aca0968c7f72685e52463c32241a0d030000000a1724313d4a5764707d8a97a3b0bdcad2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd2d2d2c6b9ac9f9386796c605346392d20130000000000000000000000000000000000000000091623303c4956636f7c8997a2adbac6ccc4bdb9b7b9bdc4c5b9aca096877b6e6154483b2e21150900000000000714212d3a4754606d7a86929facb9c5ccc4bdb9b7b9bdc4bfb5ab9a8d817467584e43372b1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000091317222d384149505c636d737f879298a19e928d837c726d615e564d453c31261a0e02000000000000000000000000010a121a222b313a41454f545a61646b6f747a7d8185888b8d9091939a9697979798989797969597928f8d8b8783807c77716d67605d555049413c3429251e160e13181f282f353d424a50575e616b70787e858c9083796d665c504440362d231a1007000000000000000000000000000000000000000000000000000000020a11171e262e343b42464e53575e61676d70757a7e8184868a8d8e9092989596969798989897979695959892908f8d8b8986827f7c78746f6b64605c55524c443f382f28231c140c0400000000000000000000000000000000000000000000000000000000000000070f171f282f353e434b51575e61686e73777c8084878a8d90919795969797989898979796959792908d8b8884817d79736e69626058534d443f38302a211a1109000000000000000000000000000000000b1824313e4a56626d727a7d7f8285888b8d90919299959697979898989796959496918e8b8885817c76716d666059514b433c342a22180f050000000000000000000000000000000000000006111c263038424a535b606b707a818990959c9fa6abadb2b5b8babebebfc0c0c1c0c0bfbebebab8b5b2acaba39f99928d857d726d6065727e8b98a5acacacacacaca194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac6c6c6c6c6beb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000000000000000000000000000004101d2935404b55606d7984919ea7b1bccad4deddd2c7bdb0a69e9184796d60564c41342a201208000000000a1724313d4a5764707d8a97a3b0bdcad6dfdfdfdfdfdfe3dbd5d0cdccc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000000000005111d2a36414c566673808c99a9b3becac4bab2acaaacb2bac4bdb2a8978b7e7164584b3e31261a0e02000000000a1724303d4a5763707d8a99a3afbbc7c4bab2acaaacb2bac4b7ab9e9184786a5f53473a2e211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f383f44525b636d727e869297928a80796f6a625b524c443c332a201509000000000000000000000000010a131c242c343d434c515960636c70777c81868a8e9197979a9c9e9fa4aca3a4a4a5a5a4a3a3a9a29e9c9a9895908c89837e79736d67605b534e463f35302820181d2429313a41454f545c60696e757d838b9197958f81786d605b51483f352c22190f0600000000000000000000000000000000000000000000000000040b141b222730383f444d52585f62696e74797d81868a8d91939a999b9d9fa2aaa3a3a4a4a5a4a4a3a3a2aaa39f9d9b999798928f8c8885817c77716d67615d565049413c342e261e160d0500000000000000000000000000000000000000000000000000000000000710192129313940454f555d60696e747a8084898d9196979a9c9ea1a9a3a3a4a4a5a4a4a4a3a9a19e9d9a9796918d8985807b766f6a625f57504a423c332b231b130a0100000000000000000000000000000c1925323f4c5865727f88898c8f9297979a9c9e9fa3aba3a3a4a4a5a4a3a3a2a8a09d9b9898928e88837e79706b605c554e463c342a21170e040000000000000000000000000000000000081117232e38424a545b656c727d858e939da0a7abb0b7b9bdc2c5c6cacfcccccdcdcbcac9cfcac6c5c2bdb9b4aeaba39f9792877f746c65727e8b98a5b1b9b9b9b9aea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d2d2d2cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000000000000000020d17202c3945515d67727e8b96a0acb9c3cddce3d7ccc0b5ab9f948a7d70675c51443b3022190e00000000000a1724313d4a5764707d8a97a3b0bdcad6e3ecececede3dad1cac4c0bfbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcb9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000713202d3946525e687683909da9b6c3c9bdb2a8a09ea0a8b2bdc1b4a79b8e817468574d42362a1e120500000004111d2935414b556773808d9aabb5c0c9bdb2a8a09ea0a8b2bdb9aca196887b6e6255483b2f24180d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262d334049525b626c707c858e857d746d675f585146413a322a21180e0300000000000000000000000009131c252d363e464e555d606b70777d83898e92989b9ea1a9a7a9abacafb6b0b1b1b1b1b1b0afb3adaba9a7a7a09d9995908b85807a716c655f585146413a322a21282f353d434b515960666d727b828a91959ea19e938e80746d635a50473e342b21180e050000000000000000000000000000000000000000000000060d161d262d333d424a50575e616a6e747b80858a8e92989a9d9fa4aca8aaabaeb3afb0b0b1b2b1b1b0afafb4aeacaaa8a6aaa39f9c9897918e89837e79736d68605b534e443f3830281f170f07000000000000000000000000000000000000000000000000000000071119222b333b434b515961676d747b80868c91969a9ea1a8a7a9abadb2b0b0b1b1b2b1b1b0b0b3adaba9a7a8a19e9a97928d87827c756e69605c544d453d352d251c130a00000000000000000000000000000d1a2733404d5a6673808d9a999c9fa2a9a7a9abacafb5b0b0b1b1b2b1b0afaeb2acaaa7aaa29f9b95908a847d746d675f584e463c332920160c02000000000000000000000000000000050e1a2328343f4a545c666c777f8792979ea5acb1b7bbc2c5c9cfd2d2cec8c5c4c1c0bfbdbdbdbfc0c2c5c6c6bfbab5aea9a199938c81776c727e8b98a5b1bec6c6bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4dfd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000000000000000009141f2935414c56606d7985919ea8b2bdcbd5dfded4c7bbafa4998f82766c61554b4032291e100700000000000a1724313d4a5764707d8a97a3b0bdcad6e8f3fdf1e6dbd1c8bfb8b4b2afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000714212e3a4754616d7a86939facb9c6c5b9aca0969196a0acb9c4b7ab9e918478695f53463a2d2114070000000613202c3945515d677683909da9b6c3c5b9aca0969196a0acb9bdb2a8988c7f7265554b4035291d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141b2227374049515a616a6f7b817b706b605c554e463f36302920180f0600000000000000000000000009121b252d373f48505860676d747d838a90959b9fa2aaabadb3b3b6b8b9bbc0bdbdbebebebebdbcbeb9b8b6b3b1acaaa7a09d97928c857e786f6a625b524c443c3328313a40454f555d606b6f787f868f939da0a7ada69d928c7f736c62594f463c332a20170c0200000000000000000000000000000000000000000007101820282f383f444f545c60696e757b81868d92979b9fa2aaaaacafb6b5b6b8babebcbdbdbebebebdbdbcbcbfbab9b7b5b3b4aeaca9a9a19e9b95908b85807a716c655f58504a423a31292119100700000000000000000000000000000000000000000000000000071019232b343d454d555d606b707980868d92989ea0a8abacb2b4b6b8b9bebcbdbdbebebebebdbcbeb9b8b6b3b2acaba9a19e9a938f87817b726d665f574f473f372e251c1309000000000000000000000000010e1b2734414e5a6774818d9aaca9abadb3b4b6b7b9bbc0bcbdbdbebebebdbcbbbdb8b7b4b4aeaba79f9d96918880796f6a5f584e453b32281e13080000000000000000000000000000020c16202c353e44505c666d78818c9299a1a9afb8bcc3c7cdd2d2ccc8c6c3bdb9b7b4b3b2b1b0b1b2b3b5b8babfc5c6bfbbb3aba49f938d8073727e8b98a5b1becbc7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000000000000000000000000020e1a25303946525d68727f8c97a1adbac4cedde0d6cabeb3a99f93877c6f625a5043392e20170d0000000000000a1724313d4a5764707d8a97a3b0bdccd6e1ebf5ece0d5cabfb6ada8a6a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a09386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000030f1b27333f495364717e8a99a4afbbc7c4b7aa9e9184919eaab7c4b9aca196887b6e6155483b2e2215090000000714212d3a4754606d7a86929facb9c5c4b7aa9e9184919eaab7c2b5a99c8f8276675d5145392c201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1117252e373f48505860696e746e686159514b433c342a251e170e0600000000000000000000000006101b242d373f49515a616a6f7a818790959da0a7acaeb4b8b9bec0c3c4c6c8ccd2cacacbcbcacacfcac6c5c2c0bcb8b7b1aca9a19e97918b837c726d615e564d453d343d434b515960676d747d838c92989ea6acb1b9afa59c918b7e716b61584e453b32291e13080000000000000000000000000000000000000000071019222a323a4149505960666d727b81878e92999fa2a9acaeb4b7b9bbc0c1c3c5c6cad0c9cacbcbcbcacac9d1cbc7c5c3c2c0bfbab8b5b2adaba7a09d97928d857e776f6a605c544b433b332b221910070000000000000000000000000000000000000000000000061019222b353d464f575e676d757d848d92999fa3aaacb2b7b9bdc0c3c4c6c9cfcacacbcbcbcacacfcac6c5c3c0bdb9b7b3adaca49f9a938e867f786e69605951493f372e251b12080000000000000000000000020f1c2835424f5b6875828e9ba8b5b8babec0c3c4c5c7cbd1cacacbcbcbcac9cec8c5c4c1bebab8b1aba8a19a938d837c6f6a5f574d443a3024190b020000000000000000000000000008131e28323e47515b606d78818e939fa3abb3bbc1c8cdd3d5d0c7c0bbb9b6b2acaaa8a6a5a4a3a4a5a6a8acaeb4b8babfc5bdb5afa59c928b7f727e8b98a5b1becbc7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000000000000005111e2a36424d57616d7a85929fa9b3beccd5e0d9cec6baada2978d81746a5f53483e30271d0e050000000000000a1724313d4a5764707d8a97a5afbac4cfd9e3eee9dcd0c4b8ada39c999696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969386796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000005121f2b3744505b6574818e9babb5c0ccc0b3a69a8d808d9aa6b3c0bdb2a8988b7e7165584b3e31261a0e0200000a1723303d4a5663707d8999a3afbbc7c0b3a69a8d808d9aa6b3c0b9ac9f92867a6d6053473a2d201409000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131c252d363e464e575f6167615e564f454039312a2219130d05000000000000000000000000040d18222d363f49515b636c717c848d939a9fa7acb1b8babfc4c6c9cfcfd1cbc7c5c4c3c3c2c1c1c1c2c4c6c8cccec8c5c3bcb8b3ada9a19e9590867f756d685f574e4640444f555d606b7079818890959fa2aab0b8bcc0b7ada39f92877d706a60574d443a3025190d01000000000000000000000000000000000000071019222b343c444c535b606b6f787f868e939a9fa3abadb3b8babfc4c6c8ccd2d0d2d3d3d2d0d0cfcecfcfd0d0d2d3d3d2d0ced0cbc7c5c2beb9b8b1aca9a19e97928b837c736d665d554d453d342b22190f05000000000000000000000000000000000000000000050e18222b343d474f5960696e79818a91969fa3abaeb4b9bdc4c5c9cecfd1d2cfcdcccbcac9cacbccced1d2d1d0cec9c5c4beb9b6afaca49f98928c837b706b625b51493f372d241a0f060000000000000000000003101c2936434f5c6976828f9ca9b5c2c6cacfcfd1d2d3d7dcd4d4d4d5d7d6d6d9d4d1d0d0cac6c2bcb8b2aca49f9591857c6f695e564c4135291d140a000000000000000000000000020c1925303a444f59626d74818e939da5afb5bdc5cdd4d5cec9c2beb6afaca9a8a09e9b9a98979697989a9c9fa2aaacaeb4babfc0bbaea49f92877c7f8b98a5b1becbc7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000000000000040f19222d3a46525e6973808d97a2adbbc4cfdee1d4c8bdb2a89f92857a6d61584e43362c1e150b00000000000000091623303c4956636f7c89939ea8b2bdc7d1dce8e6dacdc0b4a89c918c8989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898986796d6053463a2d2013070000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000000000613202d394653606c7885919eabb8c4d2bfb2a5998c7f8c99a5b2bfc1b4a89b8e817568574d42372b1e12060004101d2935404b556673808d99abb5c0cbc0b5ab998c7f8c99a5b2bfbaaea3988a7d7063574a3d31261a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a131b242c343d454d53555b54524d443e342f271f18100802000000000000000000000000010c161f2a343e48515b636d727e8691969fa4acb1b8bcc3c6cad0d0cac6c5c2c0bbb9b8b7b6b5b4b4b5b5b7b9bbc0c4c5c8cec8c5beb9b3ada79f99928b827a6e6960584f4a515960676d747d848e939aa0a7aeb4bcc1c8c9bfbbafa39992867c6f695f564c41362a1d11050000000000000000000000000000000000071119222b343c464e565d656c727d838c92989fa4acaeb5babec5c6cad0d2d4d3d2cfd0cac6c5c4c3c2c2c2c2c3c4c5c6cacfcdd0d1d4d3d2cfc9c6c3bcb8b3ada9a19e94908780786d675e574e463d342b21170d0400000000000000000000000000000000000000020b17202a343d464f59606b6f7b838e939ea1a8aeb4babfc6c9ced2d2d1cbc7c5c2c1bfbebdbdbebfc0c1c4c6c9cfd0d3d2cfcac7c0bbb6afaaa39f9590857d726d635b51493f362c21180d0300000000000000000004111d2a3744505d6a7783909daab6c3d0d2d0cecccac9c8c7c7c7c8c8cacdd0d1d4d9dddbd6d3cdc8c4beb6afa7a09791847b6e685d52453d2f261b110600000000000000000000000a141e2a36414c56616b727f8c939da5afbbc0c7cfd6d3ccc4bdb9b0aca49f9c9996918e8d8c8a8a8a8c8d8f92989a9fa2aaaeb4bcc0bbafa3998f827f8b98a5b1becbc7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000000000000a15202b37424d57616e7b86929fa9b3becdd6e1d9cfc7b8aca0968c7f72685e52463c31241a0c03000000000000000915222f3b4854606b75818e96a1abb5c0cbd7e0e9d9ccbfb2a6998c7f7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c786c605346392d2013060000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000000000916222f3c4955626f7c8897a1adb9c6cabfb4aa978a7e8a97a4b1bdc4b8ab9e918478695f53473a2d211408000613202c3945515d677683909da9b6c3c7bbafa3998b7e8b98a4b1bebfb4aa9a8d807467574d42372b1e120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000109121a222b333b4246484e4746413b3229231d150d06000000000000000000000000000008131e28313c46505a626d727f8a9298a1a8afb6bec3c8cdd3cdc7c6bfbab8b5b5afacabaaa9a8a7a7a8a9aaacafb6b7b8bcc3c7cbc9c4beb9b1aba39f948f847b6f6a6059545c606b7079818991969fa4acb1babfc6ced1cbc5beb5aba29892857b6e685e5246392d20130700000000000000000000000000000000061019232b343d464e585f686d777f8790959fa2aaafb6bbbfc6cad0d3d6d3d0cbc7c5c2bfbfbab8b7b6b5b5b5b6b6b7b8babebec0c3c5c8ced2d3d5d2cdc8c5beb9b3ada69f99928d82796e6960584e463c33291f160c030000000000000000000000000000000000000a141d29323c464e58606b707d8590959ea5adb2babfc6cbd0d5cfc9c6c4bfbab9b6b4b3b1b0b0b1b2b3b5b8b9bec2c3c7ccd3d6d2ccc7c0bbb4aea79f9792877f726d635b51483e332a1f150b01000000000000000005111e2b3844515e6b7784919eaab7c4c7c5c3c2c0bebcbbbbbababbbcbec1c4c5c8ced3d7dcdfd8d4d0c7c0bbb1a9a19691837a6d60594f41382d22170b0000000000000000000006111c26303846525e68707d87939fa5afb7c0cbd1d9d2cac1bab2aca69f9a93908c888481807f7e7d7e7f8082858a8e92989fa3aab0bbc0b5ab9e948f828f9ba8b5c2cec7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000000000020b1b27323a47535f6974818e98a3aebcc5d0dfdcd1c7bdb0a69e9184796d60564c41342a20110800000000000000000713202c38444f59606d7a849199a3afbbc2ced7e2ded1c4b7ab9e91847a6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6c655b5044372b1f12050000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000004111d2935414b5566727f8c99a9b3bec9c6baaea298897c8995a2afbcc5b9ada196887b6e6155483b2e221509000714202d3a4753606d7a86929facb9c5c5b9ac9f92867d8a96a3b0bdc4b7aa9e918477695f53473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081019212931363a3b413b393630292018120b030000000000000000000000000000010d19242f3a434e58626c727f8b919fa3aab2bbc0c7d0d2ccc7c2bbb7b4aeaca9aba39f9e9d9c9b9a9a9b9c9e9fa4acaaacb1b9bbc0c7cfc9c2bdb4aea69e9691857c706b605f666d737d848d929ea1a8afb6bec3cad0cfc7c0bbb3ada8a19e9691847a6d6154473a2e211407000000000000000000000000000000050e18222b353d464f58606a6f7a828c9299a0a7aeb4bbc0c7cbd1d6d6d1cbc7c5bfbab8b6b2b4aeacaaa9a9a8a8a9aaaaabadb3b1b3b7b8bcc2c5c7cbd1d5d4cfc9c5beb9b0aba39f948f837b6f6a60584e453b31281e150b000000000000000000000000000000000006111b262f3a444e58606a707d869197a0a7afb9bdc4cbd1d6cfc9c4beb9b8b4aeaca9a7a6a5a4a3a4a5a6a8abadb3b5b7bbc2c7cbd1d8d2ccc6bfbab1a9a299928b7f726d625a50463c31271d1207000000000000000005121f2b3744505b657885929eabb8c0bbb9b7b5b3b1afafaeadadaeafb1b4b7b8bcc3c7cbd1d9e1e2d9d2ccc3bbb2a8a0958f82756b6053493f33271b0f030000000000000000000b17232e38424f59616d7a859299a4afb7c0c9d7dcd2c9c1b8b0a8a09e949087837f7b77757372717071727375797d81858d92989ea6afb6bdb0a69e938f939eaab6c3cfc7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000000000000000000000a141d2b37434e58626e7b87929faab4bfced7e1d7cbc0b5ab9f948a7d70665c51443a3022180e000000000000000000030f1b27323d45515d676f7d87929fa7b1bcc5d0dbdfd2c5b9ada1968e81756c6363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363605b53493f33271b0f030000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000613202c3945515d6776838f9ca9b6c2cfc5b8ac9f92857b8794aab4bfc9bdb2a8988b7e7165584b3e31261a0e020a1723303d4a5663707d8999a3aebbc7c5b8ab9e92857d8996a2afbcc5b9aca096887b6e6255483b2f24180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f171f262a2d2e342e2d2a251f170e070100000000000000000000000000000004111d2935414c555f6a717e8b919ba3aeb4bcc4ccd2d0c7c0bbb9b0abaaa29f9c9999929190908f8e8e8e8f91939a999da0a7acafb5bdc1cbcfc6bfbab0a8a09792867d706b696e78808891969da4acb2bbc0c7d0cec9c2bdb5afa9a19e96918b847f786d6053463a2d2013070000000000000000000000000000030c17202a343d474f59606a6f7c848f949fa3abb1babfc5ccd2d7d6d0cac6bfbbb9b4aeaca9a6aaa29f9d9d9c9b9c9c9d9d9fa2a9a4a7aaacb1b5b9bbc0c7c9cfd6d5cfc9c2bdb5afa69e9590857c6f6a60574d433a30271c1207000000000000000000000000000000020b17222d38414c565f6a6f7c869298a1a9b1b9c1c9cfd7d0cac4beb9b3adabaaa39f9c9a999897969798999b9ea1a9a9abb0b9bbbfc6cfd6d8d1cbc2bcb3aba39f918b7f726c61584e43392f24180b02000000000000000613202d394653606c7986929facb6b5afacaaa8a6a4a3a2a1a1a1a1a2a4a7aaacb1b9bbc0c7cfd5dee4ddd8cdc4bab1a79e94897d70655b5044372b1f150a000000000000000003101c28343f4a54616c75818e97a1abb5c0c9d2dbd2c8c0b7afa69e96918a837c76726e6a6867656463646567676d70747a80868f949fa4acb4b8afa59e9b9ea5afbbc6d2c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000000006111b262f384754606a75818e99a3afbcc6d0e0ded3c7bbafa3998f82766b61544a4032291e1006000000000000000000000b16212935414c55606b73808c959faab4becad6ded5c9bdb2a89e938b7e71695f54565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565653504941382d22170b000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000714212d3a4754606d7a86929facb9c5d1c4b7ab9e9184798798a3aebac7c1b4a89b8e817568574e42372b1e1206101d2935404b556673808d99abb5bfcbc4b7aa9e91847c8895acb6c0c9bdb2a8988b7f7265554b4035291d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d141a1e21222821201e19140d0500000000000000000000000000000000040e19222c3945515d676f7c86929fa3adbabfc6ced8cdc4bdb5afaca69f9c98928f8c898685848382818182828486898c91959b9fa3abb0babfc6cecbc1bab2a9a19892867d6f717b838d939aa1a8aeb9bdc4ccd1cbc4bdb9b0aba39f97928b847f79716d665c5144382c1f120600000000000000000000000000000b151e29323c464f59606b6f7c8591969ea6afb5bdc3cad0d8d7d0cac5bebab5aeacaaa39f9c9996989291908f8f8f8f9091929796989a9da0a7a8acafb5b9bec4cad0d7d5cfc7c0bbb0a7a09791867c6f695e564c42392e23180c0300000000000000000000000000000a141d27333f49535e686f7c859298a2aab3bbc3cbd5d4cec5bebab3ada9a19e9a98928f8e8c8b8a8a8b8c8d8e9197989c9fa6acaeb5bdc1cad0d7d7cec5bdb5afa39f93887e716a5f554b4035291d140a000000000000000714212d3a4754606d7a8799a3aca9aba39f9d9b999796959494949595979a9da0a7acafb5bdc3ccd3dce8dfd6ccc3b9b0a69d9083786c6053463c31261b0f030000000000000006121f2b3844505c66707d8a939ea9b3bdc7d2dbd3cac0b6aea59e948f847d766f6a66625f575a5957575759555c6063686d747b828c939aa2aab4b7afaaa8aaafb7c1ccd7c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000000000b17222d38414f59626f7c88939eabb5c0ced8dfd6cabeb3a99f92877c6e62594f42392e20170c0000000000000000000000040d19242f3a434f59606d78839098a2aebac1ccd6dacfc4baafa59f92867b6e665c504949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494946443f382f261b1106000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000a1724313d4a5764707d8a99a3aebbc7d0c3b6aa9d90837986929facb9c5c4b8ab9e9185786a5f53473a2e211406131f2c3945515d677683909ca9b6c3d1c3b6a99d90837b879aa4afbbc8c2b5a99c8f8276675d5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e1214151b1414110e080200000000000000000000000000000000000a15202b37434e58606d7a849198a3aeb5bfcbd0d2cac2bbb3aba49f9b94908a85827f7c797877767574747576777a7c8084888e92999ea6aeb4bcc3cbccc4bbb3aaa29892857c7e8590959fa4acb2bac0c9cecfc7c0bbb2aca69f99928d857f79726d66605c544a4034281c10040000000000000000000000000007121d27303b444e58606b707d869297a0a8b0bbc0c7cfd6dbd6cec5bfbab3adaba39f9b98928f8c89878584838282828383848587898b8d9095979b9fa3abadb2babec5ced6d9d1cbc1b9b1a9a19891857b6e685d544a4034281e150a0000000000000000000000000006111c262f3844505b656d7a849197a2aab4bcc4cdd5d8cbc3bcb3ada9a19e97918e8a868281807e7d7d7e7f808285888b8f949b9fa3abafbabec5ced4d7cfc7c0bbafa49a92867c6e675d51453c2f261b11060000000000000815212e3b4854616e7b8794a39f9c999992908f8d8b898888878788898b8e91959b9fa3abb2bac1cad3dde6ded5cbc1b8aba0958a7e7164584e43372b1f120600000000000004101c2834404a54606d7884919da5afbbc5d0d9d6cdc1b8aea49d938e8279706c62605855534e4d4c4b4a4b4c4b5153565e61696e777f889298a2abb5bbb6b5b6bbc1c9d3d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000000030f1b27333f4953606b76828f9ca5afbdc7d1e0d9cec6baada2978d80746a5f53473e30271c0e0500000000000000000000000008131e28313d44505c666e7b86929fa5afbac4d0d9d6ccc1baaea2989083786d60584e433c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3937332d261d140a00000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000006121e2b37424d576774818d9aabb5bfcbcec2b5a89b8f827884919eabb7c4c6b9ada197887b6e6255483b2d22170b14202d3a4753606d7a86929facb9c5cec2b5a89b8f827986939facb9c6c5b8ac9f9286796d6053473a2d2014090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080e08070502000000000000000000000000000000000000030f1b27323a47535f6a74808d96a0aab4bfc7d6d2c8c0b8b0a9a199938f89837d7976736f6d666a696867676869676d6f73777c81878f949fa3aab1b9c1c9cdc5bcb4aaa29792868a92989fa7afb6bec4ccd1cbc3bdb5afa8a19e948f87807a726d67605c54514a42392e23180c00000000000000000000000000050e18232e39434c565f6a707d869298a2a9b2bac1cbd1d9d7d0cac2bcb4aea9a29f99928f8a86837f7d7b797776767575767777787a7c7e8084878b8f92999ea1a9aeb4bcc1cad0d8d7cbc3bbb3aaa19790837a6d665c51443c30261c11060000000000000000000000000b17222d38424e58606c77828f96a1a9b3bcc5ced6d2ccc1b9b1a9a29f97918b85817d7a76747372717071727375787b7e82888e92999ea5aeb4bcc2cbd4d9d1cbc0b6aca2989083796d60584e41382d22170b0000000000000916222f3c4955626f7c889598928f8c89868482807e7c7c7b7a7a7b7c7e8184898e9299a0a8b0b8c1cbd4dfe7ddd4c8bcb1a79e9184776a5f53473a2e21150800000000000006121f2c3844515c66717e8b96a0acb7c1cdd7dacfc4bbafa59d928d81786d67615a544e484742403f3e3d3e3f4045474c52575e656c737d869299a3afbbc0c2c3c6ccd3dcd4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000000010b151f2b3744505b65707d89949fabb7c1cfd9e1d4c8bcb1a79f92857a6d61584e43352c1e150b00000000000000000000000000010c161f28343f4a545f69717e8b939ea8b2bdc7d2ddd6cabeb4aa9f958c7f736a60554b41353030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302d2b27221b140b0200000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000814212e3a47535f697884919eabb7c4d1cdc0b4a79a8d817683909da9b6c3c9beb3a9988b7e726553493f33271b0f1623303d495663707d8999a3aebac7cdc0b4a79a8d817885929eabb8c5c7baaea3988a7d7063574a3d31261a0e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e58626f7c87929fa8b2bcc6d0d3c9c0b6aea69f979187827c76706d666663605c545d5c5b5b5b555d6063666a6f747b828b9298a0a7afb7c1c9cec6bcb3a9a29892989fa2aab1bbc0c7d0cfc6bfbbb1aba39f96918a827c736d68605c55514b44403930271c1207000000000000000000000000020d17202834404b555e686f7c869298a2aab3bbc4ccd7dcd6cec6bfbab0aaa29f97928c86827d797673706e6c656a696869696a6a686d6f7174777b7e82868c91979fa2aaafbabfc6ced6d5cdc4bcb3a9a0958f82786d60584e42382e23170c0300000000000000000000030f1c28333f4a54606a727f8c949fa8b2bbc5ced7d0c7c0bbafa79f97928c857e7974706d676766656463646566686a6e72767c81868e939fa2aab1b9c2cbd4dcd2c7beb4aaa0958d80746a5f53493f33271b0f0300000000000a1623303d495663707c898f8a8683807d7a77757371706f6e6e6e6e6f7174777c818791969ea6b0b9c2cdd7e1e4d9cdc3b9aca096887c6f6255483c2f24190d0100000000000713202d3a4653606d7984919ea8b2bdc9d3dfd5c9beb3a99e938d80776d665d555047433c3a3731323130312f34383a41464d535b606b707d87929fa4aebbc5cfd2d7dde5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000007121d28343f4a54606c7883909da6b0bbc9d3e1d8cfc6b8aca0958b7f72685d52463c31231a0c030000000000000000000000000000040d17232e38424d57626c75818e96a1abb5c0ccd7dbd0c5bcb1a79f92877c6f675d51453e332923232323232323232323232323232323232323232323232323232323232323232323232323232323232323201f1b17110a020000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000815222f3b4855626e7b8896a1acb9c5d2ccbfb2a5998c7f75828f9ba8b5c2cfc1b5a89b8e8275655b5044372b1f121c2934404b556673808c99abb4bfcbccbfb2a5998c7f7784909daab7c3cbbfb4aa9a8d807467574d42362a1e1205000000000000000000000000000000000000000000000000000000000000020507080f08080602000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4754606a76828f99a3afbac4ced4cac1b7aea49d948f857d756f6a63605c545653514b504f4e4e4f4b515456585f62696e757f8690959ea5afb7c1cacec5bcb3aaa29fa2aaaeb3bcc3ccd2ccc3bdb5aea7a099928d847d766e6a605d56514b454039342e271e150b0000000000000000000000000008131e29323a45515c676e7a849198a2aab3bcc5cdd6dcd4ccc4bcb4aea69e98928c857f7a75706d67666361605b535c5c5c5c5d565e61636567696e71757b80848c92989ea5aeb4bcc4ccd6d6cec4bbb1a79f948d80736a60544a3f34281f1409000000000000000000010c161f2b3844505b666f7c87929fa6b0bac4cdd7d2c7beb6afa59e9590857f79726d6664605d555958575758595a585f62656a6f747b818a92989fa7b1b9c2ccd5d9d0c6bcb1a79f92877c6f655b5044372b1f160b00000000000a1724313d4a5764707d86827e7a7673706d676866646362616161626264676a6f757c848f949ea7b1bbc5cfdbe6dfd5c9bdb2a8998c7f7266554c4135291d11040000000005121e2b37424d5764717e8a96a1acbac3cedbd9cfc7b9ada1978f81756c655c544b433e37322e2b262624242423292c30363b41495059616b727f8b929da9b3bec9d5dfe8e1d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000000000000000c18242f3844505c66717e8a959fabb8c2ccdbdcd1c6bdb0a69d9183786d60564c41342a2011080000000000000000000000000000000006111c26303b45505a606d7a849199a4afbbc3ced7d7cec2bbafa3999184796d605a50453b2f261b161616161616161616161616161616161616161616161616161616161616161616161616161616161613120f0b0600000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000004101c2934404b5565727f8b98a8b2bdc9d5ccc0b5ab978a7e74818d9aa7b4c0d1c5b8ab9e9285796c605346392d20131f2c3845515c677683909ca9b6c3d1cabeb3a9978a7d75828e9ba8b5c1d0c4b7aa9e918477695f53463a2d2114070000000000000000000000000000000000000000000000000000000002090e1214151c1514120f0a030000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c56626f7c88949fabb5c0ccd5cdc2b8afa59d928d827a706b62605853514a494645404342414142414547494e53575e616d727c838e939ea5afb8c2cbcec5bcb4aeacaeb4babec5ced0c7c0bbb1aba39f9590878079706c625f58524c454039342e28231c150c03000000000000000000000000030d1925303a44505a606d79839096a1aab4bcc5ced7dcd4cac2bab2aaa29f948f867f7a736d6864605c5556545350494f4f4f50504c52545658565e6164696e73797f868e939fa2aab2bac4cdd6d6cdc3b9b0a69f92877c6f665c50443b31261a0e02000000000000000008131e2935414c56606c78839099a3afb8c2ccd6d8ccc0b6aca49f938e837b726d67605c5453514b4d4b4a4a4b4c4d4e5355585f62696e757e8690959fa7b1bac3cdd6d7cec3bbafa3999083786c6053463d32271b1002000000000814212e3b4754616e7a7a75716d676663605d555a5856555554545556585860626a6f79828f959fa9b3becad6e0e5d9cec2b6a99c8f8376675d5145392c201306000000000714212d3a46535f6976828f9ca8b2bdccd5dcd1c7bdafa59e91857a6d615b534a4239312b27211e1a19181718181c1f252a2f383f444f59626d74818d97a1adb9c3ced9e5e1d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000000004101d2935404b55606d7884919da7b1bccad4ded7cbbfb5ab9e94897d70665c50443a3022180e0000000000000000000000000000000000000a151e29333e45525d68707d87939fa7b1bcc6d0dbd7cbc0b5aba0968e81746c61574d41382d22170d090909090909090909090909090909090909090909090909090909090909090909090909090909060503000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000006131f2c3845515c6775828f9ca8b5c2ced4c7bbafa499897c727f8c98abb5c0cbc6b9ada197887b6f6255483c2d2217202d3a4753606d7986929facb9c5d2c6baada297887b737f8c99abb5bfcbc5b8aca096887b6e6155483b2f23180c000000000000000000000000000000000000000000000000000000050d141a1e20212822211f1a150e060000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e6875818e9ba6b0bdc7d1cfc5bbb0a69e938d80776d686059544e4644403c3a38342e3534342f35393a3c43474d535b626a6f79818e939ea6b0b9c2cdcec6bfbab8babfc6cad0cdc4beb6afa79f99928c837c736d67615a534e45413a342f28231d18120b03000000000000000000000000010b151f2a36414c56616c74818e959fa8b2bcc5ced7ddd4cac2b8b0a8a198928b827b736d68615e5653514b4a4846443f4342424344414647494b4d5254575e61666d727a818a9298a1a8b2bbc4ced7d5cbc2bbafa3999083786d60574d42362a1e120500000000000000010d19242f3945525d68717e8b959fabb5c0cad3d5ccc3bbafa49a938c81796e69605d55514a474540403f3e3d3e3f404347484e53575e616c717b8390959fa8b2bbc4cfdad7cbc0b5ab9f948a7d7164594f44382c1e1308000000000714202d3946525e686e6d6764605d555653514b4d4b494948474748494b4e545860676d79839097a2adb9c4cfdae6dfd2c5b9ac9f92867a6d6054473a2d211407000000000815222e3b4855616e7b87939facb9c4cedfd7cbc0b5ab9d928a7d70685e5249413830271f1b15120e090b0a070c1013191d262d333e47515b606d7a85929ea8b1bdc8d4e1e1d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000020d17202c3845515d67717e8b96a0acb9c3cddcddd3c7bbaea3998f82756b60544a3f32281e0f06000000000000000000000000000000000000030c18212935414c56606b73808d959faab4bfcad6dcd1c7bdb2a89d938a7e71695e53493f33271f150b0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000714202d3a4753606d7986929facb8c5d2d2c6b9ac9f93867a707d8999a3afbbc7c9beb3a9988b7f7265544a3f33281c23303d495663707c8998a3aebac7d2c5b8ab9f928579707d8999a3aebbc7c8bdb2a8988b7f7265554b4034291c100400000000000000000000000000000000000000000000000000060f171f252a2d2e352f2e2b2620180f0700000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c2cfd5c9beb3a99f948e81776c655e564f47433d38342e2d2c282329282824292c2d32373b424651585f676d78818f949fa7b1bcc7d3d0cac6c5c6cad0d6cac2bbb3aca49f9590877f786f6a605c555047433c352f29231d18120c07000000000000000000000000000007121d27313946525e68717e8a939ea7b1bac4ced7ded4cbc2b8b0a69f9691867e766e69605d56524c4745403d3b3937332d3536363036393a3c3e4246474d52545c60686e747e869196a1a9b2bcc5d0d9d7cbc0b5aba0958c7f72695f53463a2d2114070000000000000004111d2935414c56606d7a85929ea7b1bdc7d1d7cec3b9b0a69f93887f756d675e56514b44403a39352f323130313231373a3c43474d525a61696e79839096a0a9b3bec9d5dcd1c7bdb0a69d9083776b6054483a3025190d0100000005111e2a36414c565e61605d5553514b4a474540403e3d3c3b3b3b3b3c3e43474e555d676d7a85929ea9b2bdc9d5e1e0d3c7bbafa3998a7d7063574a3d3024170a00000005121e2a36424d576673808c9aa4afbbc8d4e0d4c7bbafa3998e81746b61564c41382f261e150d0a0602000000000004080b141b2227353f45525d68727f8b95a0acb8c5d1dee1d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000000000008141e2935414c56606d7984919ea8b2bdcbd4dfd5c9beb3a99f92867b6e62594f42382e20160c0000000000000000000000000000000000000000060f19242f3a444f59606d78839098a2aebac1ccd6d9cfc4baafa59f92857b6e655b50443c31271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000a1723303d4a5663707d8998a2aebac7d3d0c3b6aa9d9083776d7a86929facb9c5cfc2b5a89b8f8275665b5044382b1f2834404b5566737f8c99aab4bfcbcec2b5a89b8f82756d7a86929facb9c5cec2b5a89c8f8275675c5145382c1f13060000000000000000000000000000000000000000000000020a1117212930363a3b423b3a37312a2219110900000000000000000000000000000000000000000000000000000000000000000004101d2935404b5565727e8b99a3afbbc7d4d2c6b9ada1978f82786d655b534c443d38322c2823201f1c181c1b1b181d2021262b31363f464e555c666d78828f959fabb7c4d1dbd6d3d2d3d6d3cac1b8b0a9a19a938d837c736d666058514b433e373129241e18120c07000000000000000000000000000000000c18232f3943505a616d7a85929ea5afb9c2ccd6e0d5ccc2b9b0a69f9490847c716c615e57524c46413a38342f2e2d2b2722292929252a2d2e3030363a3b42464a51565e616c717c849196a1aab3bec7d2dcd1c7bdb1a79f92867b6e6155483b2e221508000000000000000613202c3945525d6873808d97a1adb9c3cfd9d0c5bcb1a79e938c80736d605d554d454039342e2c29242524242526262b2e31373b424650575f676d7a849197a1adb9c1cfd8d9cfc2b8ab9f95897c7063564c4135291d1105000000010d1925303b444c525454514b4745403d3a39352f31302f2e2e2e2f2f32373c434b555e68727f8c96a1adb9c5d2dfe3d7cbc0b5ab988b7e7165584b3e3225180b0000000714202d3a46525e697784909dacb6c0ccd8dfd2c5b9ac9f92877b6e61594f443a30261d150c0300000000000000000000020a1117232935414c56606d7884919daab7c3ced9e4d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000000000020e1925303945525d68727f8c96a1adbac3cedddcd2c6b9ada1978d8073695f53473d30261c0e0400000000000000000000000000000000000000000008131e28323d44515c666e7b86929fa5afbac4d0d9d6ccc0baada2978f82776c60584e43392f24180e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000005121e2a36424d576773808d9aaab4bfcad6cbbfb4aa998d8073677683909da9b6c3d2c5b8ab9e9285796c605346392d202c3845515c6776838f9ca9b6c2d1c9beb3a9988b7f72677683909ca9b6c3d0c5b8ac9f9285796d6053473a2d20140900000000000000000000000000000000000000000000050b141c2228333b4246484f4847433c342b231b1206000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d6776838f9cabb5c0cbd4c8bdb2a89e92857a6d665c5349413a322b271f1c181313100c070e070d1113141b1f252a343c434b545c666d7983909da9b6c3d0dce2dfdfdfd7ccc1b8b0a69f97918880786f6a605c544e454039312b262019130c07010000000000000000000000000000000004101c2934404b55616c75818f97a1adb7c1cbd4ded7cec3bab0a69f9490827a6f6a625a534d45413a36302c292321201f1b171c1c1d191d202123252a2d30363940444c525a616a6f7b849198a2acb6c0ccd8d9cfc3baaea2988b7e7165584b3e3225180b00000000000004101c2834404b54606d7a85929fa9b3becbd4d6cabfb4aaa0958f82776c605b514b433b352f2823201d1818171718191a1f21262b30363e454d555e686e7b85919ea6b0bdc6d1dcd4c8bcb1a79c8f8275685e5246392d2013070000000008141e29323b4146474745413a39352f2d2c29242523222221212223272b3139434c56606d7984919eabb8c4d1dee8dcd1bfb2a6998c7f7366594c403326190d0000000815212e3b4854616e7b8795a0acbec7d2ddd4c8bcb1a79b8f8275695e53473e32291e140b0300000000000000000000000000061119242f3a44505c66727f8c99a7b1bcc8d4e0d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000005111e2a36414c56606d7a85929ea8b2bdccd5e1d4c8bcb1a79e92857a6d60574d42352c1e150a00000000000000000000000000000000000000000000010c16202834404a545f69717e8b939ea8b2bec7d2ddd6cabeb3a99f948c7f726a5f554b40352920170d020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000714202d3a46525e697784919daab7c4d0d3c7baaea398897d706773808d9aabb5c0ccc6b9ada297887c6f6255493c2e232d3a4653606d7986929facb8c5d2c6b9ada197887c6f6673808c99aab4bfcbc6baaea298897d7063564a3d31251a0e020000000000000000000000000000000000000000060e171d262d333d454d52545b55534e463d352d2417110a020000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5d1d2c5b9aca0968b7f72685d544b41382f29201b16100c070604000001000104060a0b141d262d334049515a626c717e8a97a4b1bdcad7e4ecebdfd2c6bbb0a69e948f857d736d665f58514a423c342f271f1a150d08010000000000000000000000000000000000010c161f2c3845515c67717e8a939ea9b3bec9d2ddd9d0c5bcb1a89f949082796d685f585046423b352f2a251f1c181513120f0b060f080d11131416191e20252a2e343b4146505860696f7c86929aa4afbbc5cfdad6cabfb4aa988b7e7165584b3e3225180b00000000000006131f2c3845515c66727f8c98a2aebbc5cfddd3c6baaea2989183796d655b504540393129241d1813110d070b0a0b090f12151b1f252a333b434c565f69707d89939eabb5bfcbd7d8cdc3b9ac9f92867a6d6154473a2f24180d01000000020d1720293036393b3a39352f2c292420201d1818161615141415161b1f28313a45515c6774818d9aa7b4c0d0dbe6dacdc0b3a79a8d8074675a4d4134271a0e0000000b1825323e4b5865717e8b98a7b1bcd0d9ded1c5b8aca095897c7063574d42352c20170c0200000000000000000000000000000008131e28343f4a54616e7b8895a0acb8c5d1ded4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000000040e18222d3946525e6873808d97a2adbac4cfded8cfc6b8aca0958b7e72685d52453c31231a0c030000000000000000000000000000000000000000000000040d18232e39424d57626c75818f96a1acb6c0ccd8dbcfc5bbb0a69f92867c6f675d51453e32291e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000815212e3b4854616e7b8795a0acb8c5d1d2c5b9ac9f9286796d63707d8a99a4afbbc7cabeb3a9988c7f7265544a3f3428303c4956636f7c8998a3aebac7d1c5b8ab9e9285796c63707c8998a3aebac7cabfb4aa9a8d807367574d42362a1e1205000000000000000000000000000000000000020a111720292f383f444f575e6168625f584f473f3627221b140b0200000000000000000000000000000000000000000000000000000000000a1623303d495663707c8999a3afbbc7d3cabfb4aa9e9184796d60564c42392f261d170e0a0400000000000000000000030c151d262f383f44525b626c717e87929facb9c5d2dfecede9dccfc3b6aa9e938f827a706b605c544e4440393029231d150d09030000000000000000000000000000000000000008131e2935414b55606d7984919ea5afbbc5cfdbddd2c7beb4aaa0959082796d675e564e463e363129241e1913100c070605030000030001050707090e11141a1c232830363e464e575f6a707d88939fa9b3bec9d5dbd0beb1a4988b7e7165584b3e3225180b0000000000000713202d3a4653606d7984919eaab4becdd7d5c9beb3a99f92867b6e675d53493f352f271f18120c070401000000000002060a0f141a2129313a444d57606b75828f99a3aebbc7d2ddd3c7bbafa3998b7e7165554b4035291d110400000000050e171e252a2d2e2d2c2924201d181413110d070a09080808080a0d161f2934404b5564707d8a97a9b3becad6e2dbcec1b4a89b8e8175685b4e4235281b0f000004111d2935414c566875828e9ba8b5c1cedbddd0c3b7aa9d9083776b6054453b31231a0e0500000000000000000000000000000000010b17232e3847535f697783909daab7c3d0ddd4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000a15202a36424d57616e7a86929fa9b3beccd6dcd1c6bdafa59d9083786d60564c41332a2011080000000000000000000000000000000000000000000000000007121c27303c45505a616d7a84919aa4afbbc3ced8d7cdc2baaea3999183796d60594f443a3025190f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000003101c28343f4a5465717e8b98a7b1bcc8d4cfc2b6a99c8f827667606d7a86939facb9c6cfc2b5a89c8f8275665c5044382b34404b5466737f8c99aab4bfcbcec1b5a89b8e827565606d7986929facb8c5d0c4b7aa9d918477695e53463a2d2114070000000000000000000000000000000000040b141b2227323a424a505960696e756e6a6059504840332d261d140b03000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99abb5c0cbd3c7baaea2988a7e71665c51443a30271d140b050000000000000000000000030c151e272f384149505b636d727f879299a3aebbc7d3e0dfe0e3dbcec2b5a89b8f82786d686059514a423c342e271e18120b030000000000000000000000000000000000000000010d19242f3945515d67727f8c96a1adb7c1cdd7e1d8ccc0b6aca2989183796d675d554c443c342a251f19130d080400000000000000000000000000000205090e12181e252a343c454e58606b74818e97a1adb9c6d2d7cbbeb1a4988b7e7165584b3e3225180b000000000005111e2a36414c5664717e8b96a1adbcc5d0dfd2c6b9ada1978c7f73695f554b41382d241d150d0701000000000000000000000002090f181f29323b454f59626e7b86929fabb5c0ccd7d7cbc0b5ab9c8f8276675d5145392c2013060000000000050d14191e202121201d1813110d070604010000000000000000040d18232f3a4753606d7a8697a2adbac6d3dfdccfc2b6a99c8f8376695c504336291d1000000613202c3945525d687784919eaab7c4d1ddd6cabfb4aa988b7f7265594f4433291f110800000000000000000000000000000000000006111c2b37424d576773808d9aa6b3c0cdd9d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000030f1b26323a46535f6974818d98a2aebbc5cfdfd7cbbfb4ab9e93897d70665c50443a2f21180e0000000000000000000000000000000000000000000000000000000b151e2a333f46525d68707d88939fa7b1bcc6d0dbd7cbbfb4aba0958d80746b61564c41362a21180c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000006121f2c3844505c6675828e9ba8b5c1ced6cabeb3a9998c7f72665d687783909daab6c3d2c5b8ab9f9285796d6053463a2d3845515c6676828f9ca9b6c2d0c9beb3a9988b7e72655c6776838f9ca9b6c2d0c5b8aca095877b6e6154483b2e23180c00000000000000000000000000000000040e161d262d333d444c545b606b707b827c706b625a52443f382f261d150c030000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1d1d2c5b8ac9f9286796d60544a4032281e150b020000000000000000000000030c151e273039424a535b606d737f8b9399a3abb5bfcbd7d4d2d4d7ddd1c5b8ab9e9285796d60564f4440393028231c150c070100000000000000000000000000000000000000000004111d2935414c56606d7a85929ea8b2bdc9d3dfdcd4c8bbafa49a92867c6e675d554b433a322a221a140d08010000000000000000000000000000000000000000070c1419222b333c464f59606d7a85929eabb8c5d1d7cbbeb1a4988b7e7165584b3e3225180b00000000000714202d3946525e6876828f9ca9b2bdced7d5c9bdb2a89e9285796d60574d433a2f261b120b03000000000000000000000000000000060d172029333d47535f6974808d99a4afbbc7d4dcd1c5b9ac9f92867a6d6053473a2d20140700000000000002080d1114141413110d070401000000000000000000000000000713202c3945515d677885929fabb8c5d2deddd0c3b6aa9d9083776a5d5044372a1d1100000714212d3a4754606d7a86939facb9c6d2dfd3c6baaea298887c6f6255493d3222170d00000000000000000000000000000000000000000e1a26313f4c5965727f8c98a5b2bfcbd8d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000006131f2b37434e58616e7b86929faab4bfcdd7ddd3c7baaea3998f82756b60544a3f32281e0f06000000000000000000000000000000000000000000000000000000030c18212935414c56606b73808d95a0aab4bfcad6dcd1c6bdb1a79d928a7d70685e52463f332a1e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000713202d3a4653606d7985929fabb8c5d2d3c6baada297897c6f62566774808d9aacb6c0ccc6baada297887c6f6255493c2e3a4653606d7985929facb8c5d2c6b9ada197887b6e625566737f8c99aab4bfcac8bdb1a8988b7e7265544b4034281c10040000000000000000000000000000020c1620282f383f444f565e666c737d858e857d716c635c504941382f261e150b020000000000000000000000000000000000000000000000000003101c28343f4a546a7683909da9b6c3d0cfc2b5a89c8f8275675d5142392e20160c030000000000000000000000030c151e273039424a545b656c73808c919fa4abb5bdc6d1ccc7c6c7ccd2d2c6b9ada1978b7e71655b5044372e271e18120b0300000000000000000000000000000000000000000000000613202c3945525d68737f8c97a1adbac4cfdbded5c9beb3a99f93887e706a5f554c433a31282018100903000000000000000000000000000000000000000000000002081019212a343d45525d68727f8c98a5b2bfcbd7cbbeb1a4988b7e7165584b3e3225180b00000000000814212e3b4754616e7a86929facb9c4cfdfd2c5b9aca0968b7f72675d51453c31281d140a010000000000000000000000000000000000050e17212b37424d57616e7a87939facb9c6d2dfd3c7bbafa399897c706356493d30231607000000000000000001050708070604010000000000000000000000000000000004111d2935404b556a7784919daab7c4d0ddddd0c3b6aa9d9083776a5d5044372a1d1100000a1623303d495663707c899aa4afbbc8d4dfd2c5b8ac9f9285796d6053463a2d2013070000000000000000000000000000000000000000091724313e4a5764717d8a97a4b0bdcad7d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000000020b1a232e3b47535f6a75818e99a3aebcc6d0dfd5c9beb3a99f92867b6e61594f42382e20160c0000000000000000000000000000000000000000000000000000000000060f1924303a444f59606d79839098a2aebac1cdd6d8cfc3b9aea49e91857a6d615b51453c30271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000091623303c4956636f7c8997a2adbac6d3d2c5b8ab9f9285796d605764707d8a9aa4afbbc8cabeb3a9988c7f7265544a3f343c4956636f7c8998a2aebac6d1c4b8ab9e9185786a5f56636f7c8998a2aebac6cec2b5a89b8f8275665c5145382c1f1306000000000000000000000000000008131e28323a4149505960686d788087929792877e736e605b534a423830261d140a0000000000000000000000000000000000000000000000000006121f2c3844505c667885929eabb8c5d1cbbeb1a4988b7e7165554b4030271c0e040000000000000000000000030c151e273039424b545c666c77808c929ba3afb5bdc6cfc7c0bbb9bbc0c7d0c9beb3a99d9184786c6053463d32271b0c07000000000000000000000000000000000000000000000000000714212d3a4754606d7a85929fa9b3beccd6e0d8cdc6b9ada1978e81746c61574e433a31281f160e06000000000000000000000000000000000000000000000000000000070f18222935414c5664717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0000000005111e2a36424d5665727f8b99a3afbbc7d4d7cbc0b5ab9e9184796d60554b40332a1f160b0200000000000000000000000000000000000000060f1a26313c46525e687683909da9b6c3ced9d7cbc0b5ab998c7f7366594c402f24180c0000000000000000000000000000000000000000000000000000000000000000010d18242f43505d697683909ca9b6c3cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000c1925323f4c5865727f8b98acb6c0ccd8dccfc2b6a99c8f8376665c5044382c1f12060000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000a141d2c38444f59626f7c87939fabb5bfced8dbd2c6b9ada1978d8073695f53473d30261c0d0400000000000000000000000000000000000000000000000000000000000008131e28323d45515c666e7c86929fa6b0bbc4d0d9d5cbc0b9ada1978f82756d62574e42392e23180e0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000005111d2a36414c566673808c99a9b3becad6cec2b5a89b8f8275665c54616d7a86939facb9c6d0c2b5a89c8f8275665c5044383f4a5466727f8c99aab4bfcacec1b4a89b8e8175685753606d7985929facb8c5d2c5b8ac9f9285796d6053463a2d20130900000000000000000000000000010d1924303a444c535b606b6f7a828c9399a199928b80746c655b544a42382f261c11060000000000000000000000000000000000000000000000000713202d3a4653606d798697a1adb9c6d2cabfb4aa95887b6e6255483b2f22150b0000000000000000000000030c151e273039424b545c666d78818d929ca4adbbc0c7ccc3bdb5afacafb5bdc7d0c5b8aca0968a7d7063584e43372b1c110600000000000000000000000000000000000000000000000007131f2c38434e5865727f8b98a2aebbc5cfdedfd3c7bbb0a69e91857a6d605a50453c31281f160d05000000000000000000000000000000000000000000000000000000000006101924303e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b000000000714202d3a46525e697683909cabb5c0cbd7d3c7bbafa3998b7e72665c51433a2f21180d0400000000000000000000000000000000000000000009151f2a36414c5666727f8c99a8b2bdc9d5dcd1c2b5a89c8f827569554b4035291d10040000000000000000000000000000000000000000000000000000000000000000071c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100010d1a2734404d5a6773808d9aa6b3c0d2ddd9ccbfb3a6998c807366544a3f34281c100300000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c00000000000000000006111c262f384854606b75828f9aa4afbdc6d1e0d4c8bcb1a79e91857a6d60574d42352b1e140a00000000000000000000000000000000000000000000000000000000000000020c16202834404b545f6a727e8b939ea9b2bec7d2ddd5c9beb3a99e948b7e726a5f544b40342820160c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000713202d3946525e687783909daab6c3d0d5c9bdb2a8988b7e726554525d687784909daab7c3d0c5b8ab9f9285796d6053463a44505c6676828f9ca9b5c2d0c9bdb2a8988b7e716558515c6676828f9ca9b5c2d0c6baaea298897d706356493d31251a0e0200000000000000000000000004111d2935414c565d656c727d848f949fa4aba39f928c80776c665c544a42382d2217130a00000000000000000000000000000000000000000000000714212d3a4754606d7a8793a9b3bec9d3c7baaea298877a6d6054473a2d21140700000000000000000000030c151e273039424a545c666d78818e939da4adb6bfcccbc3bab2aba49fa4abb5bdc7c8bdb2a89c9083766a605447382e23170b0000000000000000000000000000000000000000000000000915222e3b4854606a7783909daab4becdd7e1ddd0c4b7ab9f948a7e71685d52483e332a1f160d0400000000000000000000000000000000000000000000000000000000000000081825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b000000000814212e3b4754616e7b87939facb9c6d1dcd2c5b9ac9f92867a6d61544a4031281d0f0600000000000000000000000000000000000000000000030d1925303c4855626f7b8896a0acb9c5d2ded1c4b8ab9e918578675d5145392c1f13060000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100020f1c2835424f5b6875828e9ba8b5c1cedbd6c9bdb0a3968a7d7063574a3d2e23170c0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226190c0808080808080808080b17222d3842505a63707d89949eacb6c0cfd8d8cec6b8aca0958b7e71675d51453b3123190c020000000000000000000000000000000000000000000000000000000000000000040e18232e39424e57626d75828f97a1acb6c0ccd8dacfc4bbb0a69f92867c6e665c51453d32281e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000000714212e3a4754616d7a87939facb9c6d2d2c5b9ada196887b6e62554c566774818d9aa7b4c0cec6baaea298897c6f6256493c4653606d7985929facb8c5d2c5b9ada196887b6e61554a5466727f8c99aab3becacabfb4aa9a8d807367574d42362a1e12050000000000000000000000000713202c3945525d686d777f8791969fa6afb5aea49c928d81786d665c544a3f3328251b1208000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbacfd2c5b8ac9f928579675d5145392c201306000000000000000000030c151e273039424a545c666d78818e939da5aeb6bfc8cbc2b9b1a8a0999399a4abb5c0ccc3b7ab9f94897c6f62544a3f34281c10030000000000000000000000000000000000000000000004111d2935404b55626f7c8995a0acbcc5d0dfdfd3c7bbb0a69c8f82766c61564c41362c21180d0400000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b000000000b1824313e4b5764717e8a9aa4afbbc8d4d7cbbfb5ab9c8f8276685e5242392e1f160c0000000000000000000000000000000000000000000000000815212e3a47535f6a7784919eaab7c4d1ddd2c6b9ada197867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110003101d2a3643505d697683909ca9b6c3cfdcd5c8bbaea295887b6f6255483c2f2215060000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f32261915151515151515151515151c28333f4a54616c7683909da6b0bec7d2dcd0c6bcafa59d9083786c60554c41332a1f11070000000000000000000000000000000000000000000000000000000000000000000007121d27303c45515b616d7a85919aa4afbbc3ced8d6cdc1baaea2989083796d60594f443a3024190f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000000030f1b27333f495364717e8a9aa4afbbc8d4d1c4b7ab9e918478695f534a5764717d8a97a8b1bdc8cabeb4aa998c7f7266544a404956626f7c8998a2aebac6d1c4b7ab9e918478695f534956626f7c8998a2aebac6d0c3b7aa9d908477695e53463a2d2114070000000000000000000000000714212d3a4754606d7a828c9299a1a9b0bbbfbbaea49d938e81786d665b504440372d241a10060000000000000000000000000000000000000000000815212e3b4854616e7b8794abb4bfcbd1c4b7aa9e9184776b554c4135291d11040000000000000000030c151e273039424a545c666d78818f939ea5afb7c0c8cac2b9b1a7a09691869399a4afbbc7c7bbb0a69a8e8174665c5044382b1f1206000000000000000000000000000000000000000000000613202c3945515d6774818e9ba7b1bcced7e2ddd0c4b7ab9f94897d70635a50443a2f231a0f060000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00000005111e2a36424d576774818e9aacb6c0ccd8d3c7bbaea3998b7e7165564c4130271c0d0400000000000000000000000000000000000000000000000006121f2b37434e586874818e9ba7b4c1cedad5c9beb3a995887b6e6255483b2f2215080000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110005121e2b3845515e6b7884919eabb7c4d1ded7cbbfb4ab94877b6e6154483b2e2115080000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3226212121212121212121212121212b3844505b66707d8a959fabb8c1d0d9d6cbbfb4aa9e93897d6f665b50433a2f21180e0000000000000000000000000000000000000000000000000000000000000000000000000b151e2a333f46525e68707d88939fa7b1bcc6d0dcd6cabfb4aaa0958d80736b60564c41352921170c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000005121f2b3744505b6574818e9bacb6c0ccd8cec1b4a79b8e817468574d4754616d7a8795a0acb8c5d0c2b5a99c8f8276665c51444a5466727f8c99aab4bfcacec1b4a79b8e817468574d4653606d7985929fabb8c5d2c5b8aca095877b6e6154483b2e23180c0000000000000000000000000814212e3b4754616e7a8390949ea6afb7c0cbbfb6aea59d938e81786c605c52493f362c22180e0500000000000000000000000000000000000000000714212d3a4754606d7a8799a3aebac7d0c4b7aa9d9184776a544a3f33281c0f0300000000000000020b151e273039424a545c666d78818f939ea6afb7c0c9c9c1b8b0a79f9590847c87939facb9c4cdc2b8ab9e9285796d6053463a2d20130a000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb8c3cedfe1d4c8bdb2a89c8f82766b6054483e32281e1108000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0000000714202d3a46525e697784919eaab7c4d2ddd2c5b9ac9f92867a6d6054473a3021150b00000000000000000000000000000000000000000000000000030f1a26313f4c5966727f8c99a5b2bfccd8dacfbdb0a3968a7d7063574a3d3024170a0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110006121f2c3945525f6c7885929fabb8c5d2ded3c7baaea399867a6d6053473a2d2014070000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f322518090000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f322e2e2e2e2e2e2e2e2e2e2e2e2e2e34404b55606c7883919da7b1bccad3ddd3c7baaea3988e81756b60544a3f31281e0f06000000000000000000000000000000000000000000000000000000000000000000000000030c18212a36414c56606b73808d95a0aab4bfcbd6dbd0c6bcb1a79f93877d70685d52453e33291e140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000613202d394653606c7885929eabb8c5d2d4c8bcb1a7978a7e7164574b46525e687784919daab7c4d0c5b8ac9f9285796d605346505c6675828f9ca8b5c2d0c9bdb2a8978b7e7164584b44505c6675828f9ca8b5c2cfc8bcb1a7988b7e7165544a4034281c100400000000000000000000000714202d3946525e686e7a828f949ea5aeb6c0c8c0b7afa59e938d80746e635b51483e342a20170c03000000000000000000000000000000000000000613202c3945525d687986929facb9c5d1c5b8ab9e928578665b5044382b1f1206000000000000000a141d263039424a545c666d78818f939ea6b0b8c1c9c9c0b7afa69f9590837a75828f9ca8b2bdc9c6b9ada197897c706356493d32261b0f030000000000000000000000000000000000000000030f1b27333f495364707d8a98a2aebac7d3e0ded1c5b8aca096897d7063594f44362c20160c00000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0000000814212e3b4754616e7b8796a0acb9c5d2dccfc2b5a99c8f8276685d5245392c20130300000000000000000000000000000000000000000000000000000a1724313e4a5764717d8a97a4b0bdcad7d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110005121f2b3744505b657985929facb8c5d2dfd2c5b9ac9f928679675d5145392c1f13060000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265584b3f30251a0e0300000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c3f3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b45515c67717e8b95a0acb9c2cddcd5c9bdb2a99f92867b6e61594f42382d1f160c0000000000000000000000000000000000000000000000000000000000000000000000000000060f1925303a444f59606d79839098a3aebac1cdd6d8cec3bbafa49991847a6d605a50453b30261c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000000000916222f3c4955626f7c8897a1adb9c6d2d1c5b8aca095877a6e615447414c566774818d9aa7b4c0cec6baaea298897c6f63564953606d7985929fabb8c5d2c5b9aca096877b6e6154483f4a5465727f8c98a9b3becacec2b5a89b8f8275665c5144382c1f1206000000000000000000000005111e2a36414c565e686d79828e939da4aeb6c0c9c0b7afa59d928d80736d625a50463c32291e150b0000000000000000000000000000000000000004111d2935414c566b7885919eabb8c4d1c6b9ac9f9386796c605346392d20130700000000000006111c262f38424a545c666d78818f939ea5afb8c1cac8c0b7afa59e948f827a6e707d8a96a0acb9c6c9beb3a99a8d807467584e43372b1f1306000000000000000000000000000000000000000005121f2b3744505b6574818e9aaab4bfcad6e2d7cbc0b5ab9d9184776b6054473d32241a0d0400000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0000000b1824313e4b5764717e8a97a8b2bdc8d4d9ccc0b3a6998d807366564c4135291d11040000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5d8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000613202d394653606c7986939facb9c6d2ded1c4b8ab9e9185786b554b4035291d10040000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b4754616e7a8794a1adbac7d4e0d8cbbeb1a5988b7e7265574d42362a1f140900000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f7265594c48484848484848484848484848484848484b55606d7984919ea7b1bccbd4dbd2c5b9ada1968c8073695e53473d2f261c0d0400000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d45515c676f7c86929fa6b0bbc5cfdad7ccc0b5aba1968e81756c61574d42382e23170d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000004111d2935414c5566727f8c99a9b3bec9d5d0c3b7aa9d908477685e52463e4b5764717e8a97a8b2bdc9cabfb4aa998c7f7366554b56626f7c8998a2aebac6d1c4b7aa9e918477695e53463c4955626f7c8897a2adbac6d2c5b8ab9f9285796d6053463a2d2013090000000000000000000000020e1925303b444c565d676d78818d929da4aeb7c1c9c1b7aea49c928c7f726c61584e443a30271c1207000000000000000000000000000000000000010d19242f44515d6a7783909daab7c3d0c7bbafa499887b6e6155483b2e23180c00000000000a1317222d38424a545c666d78818f939ea5afb8c1cac8c0b6aea59d938f82796d686c7884919eabb4bfcbc4b7ab9e9184786a5f53473b2e21150600000000000000000000000000000000000000000613202d394653606c7885919eabb8c4d0dbe0d4c7bbafa3998c7f7266594f44352b2112080000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0000010d1a2734404d5a6773808d9aa6b3c0ced9d7cbbfb4ab978a7e7164574b3e3024190d0100000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbc8d5d9ccbfb2a6998c7f7366594c403326190d0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000714202d3a4753606d7a869aa4afbbc8d4ddd0c4b7aa9d9184776a5e51442f24180c000000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000b17222d38414f5963707d8996a3b0bcc9d6e3dacdc0b3a79a8d8074695e52463b31261a0e03000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f726559545454545454545454545454545454545454545d67727f8b96a1acb9c3ceddd4c8bcb1a79e9184796d60574d42352b1d140a00000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202834404b555f6a727f8b949ea9b3bec9d5ddd2c7bdb2a89e938b7e71695f544a3f34281f160c0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000613202c3945515d677683909ca9b6c3cfd7cbc0b5ab9a8d807467564d413b4754616e7b8796a0acb9c5d0c2b6a99c8f8376675c515465727f8c98aab4becacdc1b4a79a8e817467574d42394653606c7985929fabb8c5d2c6baaea298897c706356493d30251a0e02000000000000000000000008141e29323b434c555d666d77808d929da5afb8c2c9c0b6aea49f93887e706a5f564c42392e23180e05000000000000000000000000000000000000081b2835414e5b6874818e9ba7b4c1cfccc0b5ab978b7e7164554b4034281c100400000009121c2528333f4a545c666d78818f939ea5afb8c1cac8bfb6aea49d938e81786d675d66727f8c99a3aebac7c5b9aca196887c6f6255493c2e23170c00000000000000000000000000000000000000000916232f3c4956626f7c8997a1adb9c6d2e2dfd2c5b9ac9f92867b6e6154473d3321190f000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b000004111d2935404b556975828f9ca8b5c2cfdbd3c7baaea399887b6f6255483c2f2215080000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a1aebbc8d4d9ccc0b3a6998d8073665a4d4033271a0d0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000714212d3a4754606d7a8793a0b5c0cbd7ddd0c3b7aa9d9084776a5d51442e23180c000000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000060f1b27333f4953616c7683909da9b6c3d0dce9dfd2c5b8ac9f92867b6e61574d42362a201509000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f72656161616161616161616161616161616161616161616d7a85929ea8b2bdcbd5d8cec6b8ab9f958b7e71675d51453b3123190b020000000000000000000000000000000000000000000000000000000000000000000000000000000000050e18232e39434e58626d75828f97a1adb9c0cbd5d9d0c4baafa59f92867b6e665c50443d31281d130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000714212d3a4754606d7a86929facb9c5d2d3c7bbafa3998a7d7063574a3d3a46525e697784919eaab7c4d1c5b8ac9f9286796d60535b6675828f9ca8b5c2d0c8bdb1a8978a7e7164574b3e3844505b6675828f9ba8b5c2cfcabeb4aa998d807366574d42362a1e11050000000000000000000000020d172029313a434b545c656c74808d939ea6b0b9c3c8bfbbafa49a92867c6f685e544a40342820170d0200000000000000000000000000000000000b1825313e4b5864717e8b97a8b2bdc9d2c1b4a79b8e8174675c5145382c1f150b010008121b242e373f44505b666d78818f939ea5afb7c1cac8bfb6aea49c928d81786d665d55616d7a86929facb9c5c9bdb2a8998c807366544a3f34281c1003000000000000000000000000000000000000030f1b27333f49536673808c99a9b3bec9d5e1dccfc2b5a99c8f8276685e5246392d201407000000000000000000000000000000000000000505050505050505050505050505050505050b1825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00000613202c3945515d677884919eabb7c4d1ded2c5b9ac9f9286796d6053463a2d2013070000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8894a1aebbc7d4dacdc0b4a79a8d8174675a4e4134271b0e0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000713202d3a4653606d798699a3afbbc7d3ded1c4b7ab9e9184786b554b4034281c10040000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000c171f2b3744505b65707d8a959fabb8c4d1ddeae0d3c7baaea3988d8174695f53463c31261a0e040000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd8cbbfb2a5988c7f726e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e73808c97a1adbac4cedbd0c6bcafa59d9083786c60554b4033291f140d0600000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303c46515b616d7a85929ea4aeb9c3cfd8d6ccc1baaea2989083786d60584e433a2f24180e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000a1724313d4a5764707d8a99a3afbbc7d3d2c5b9ac9f92867a6d6054473a36424d576774818e9aa7b4c1cec7baaea398897c706356606c7985929fabb8c5d2c5b8aca095877a6e6154473b333f4a5465727f8b98a9b3bec9d0c3b7aa9d908377695e52463a2d201406000000000000000000000000050e171f283139424a535b606c77818e949fa7b1bbc4ccc0b6aca29891847a6d665c51443d32291e130800000000000000000000000000000000000815222e3b4855616e7b8896a1adb9c5d1c5b8ab9e9285796d6053463e31271d120708111a242d363f49525c606c78818e939ea5afb7c1c9c8bfb6ada49c928d80776d665c54525e6875828f9ba8b5c2cec3b6a99d908376665c5044382c1f120600000000000000000000000000000000000005121f2b3744505b6576828f9ca9b6c2cfdae1d4c8bdb2a8988b7f7265564d41362a1e110500000000000000000000000000000105090b0b111111111111111111111111111111111111111825313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00000714202d3a4753606d7a86939facb9c6d2ddd0c3b7aa9d908377665c5044382c1f12060000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbc8d5d9cdc0b3a69a8d8073675a4d4034271a0d0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110006121f2c3844505c667986929facb9c5d2dfd2c5b8ac9f928579675c5145382c1f13060000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54606c7883909da7b1bcc8d4e0ece3d6cbbfb4aa9f92867b6e61574e42372b20150a0000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd9ccc0b3a6998d807b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c86929fa9b3beccd6d6cabfb4aa9e93897c6f655b504339322a261f170f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e2a343f46525e68707d8a929da7b1bcc6d1dcd6cabeb4aa9f948c7f736a60554b40352920170b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000006121e2b37424e576774818d9aabb5c0cbd7cfc3b6a99c908376675d514539303e4b5864717e8b97a8b2bdc9cbbfb4aa998c80736655626f7c8897a2adbac6d0c4b7aa9d918477685e5246392d3c4855626f7b8897a1adb9c6d1c5b8aca095877b6e6154473b2e23170c00000000000000000000000000050d161f2730384149505b656d79829095a0a9b2bcc5c7beb4aaa1969082786d60594f443a3025190e04000000000000000000000000000000000714212d3a46535f697884919eabb7c2cdc6b9ada1978a7e71645a5043392f241810101a232c363f48515b636e74808d939ea5afb7c1c9c7bfb6ada49c928c80736c655c544b4c5665727f8b98a8b2bdc9c5b9ac9f9286796d6053463a2d2013070000000000000000000000000000000000000613202d394653606c7985929fabb8c5d2deded2c5b8aca096887b6e6155483b3025190e0200000000000000000000000000060c111517181e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e25313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00000916232f3c4956626f7c899aa4afbbc8d4dbcec2b5a89b8f827568574d42362a1e1205000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5d9ccbfb3a6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110003101c28343f4a5f6c7885929fabb8c5d2ded3c6baaea29886796d6053463a2d2013070000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c66717e8a95a0acb9c2cdd8e4f0e7dcd0c6bbaea3998e81746a5f53473c32261b0f0400000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc1b4a89c928d8787878787878787878787878787878787878787878787889298a2aebbc5cfded3c6baaea2988e81756a60534f47433d3631292117110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000030c18222a36414c56616b74808d95a0aab4bfcbd7dbd0c5bcb0a69f92877c6f675d51453e33291d140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000814212e3a47535f6a7884919eabb7c4d1d6cabfb4aa998c807366554b41352e3b4854616e7b8796a1acb9c5d0c3b6a99c908376675d65727f8c98a9b3becaccc0b6ac9a8d817467564d41362d394653606c7985929eabb8c5d1c8bcb1a7988b7e7165544a3f34281c100300000000000000000000000000040d151e262f383f49535c676d7a839197a1aab4bfcac6bcb2a89f948d80736b60564c41362a20160c0200000000000000000000000000000005121e2a36424d576774808d9aa6b0bbc7cabeb3a99d9083766c61554b403529221819222c353e48515b636d73808d929da5afb7c1c9c7bfb5ada39c928c80736e605b534a424855626e7b8896a1adb9c5c7baaea398887b6f6255483c2f2215060000000000000000000000000000000000000815222e3b4855616e7b8897a2adbac6d3dfddd1c4b7aa9e918477695f53463a2d1f1408000000000000000000000000000911171d2124252b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b313e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00000b1825313e4b5864717e8b97acb6c0ccd8ddd1c4b7aa9e918477695e52463a2d2014070000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad7d8ccbfb2a5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000c17232e45525e6b7885919eabb8c4d1ded6cabfb4aa94877a6e6154473b2e2114080000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000004101c2834404b55606d7884919ea7b1bccbd4dfe9f5ede2d7cbbfb5ab9f92877b6e62584e43372b20160a00000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbddd0c4b9aea49c999494949494949494949494949494949494949494949494959fa2aab4bfcdd7dfd2c5b8ac9f92857b6e67636059544e46423b3328231c140c030000000000000000000000000000000000000000000000000000000000000000000000000000000006101925303a444f59606d79839098a3aebac2cdd6d7cec2bbafa3999184796d605a50453b2f261b110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000000000815222f3b4855626e7b8896a1acb9c5d2d3c6baaea298897c6f6356493c2f2d3a46535e697884919eabb7c4d1c5b9ac9f9286796d606675828f9ba8b5c2d0c8bbafa49a8a7d7164574a3e302b3744505b6575828e9ba8b5c1cfcec1b5a89b8e8275665c5044382c1f12060000000000000000000000000000030c151d262d38414b555d686e7b859198a2aebac1ccc4bab0a69f93887d70685e52463e32281e1308000000000000000000000000000000020e1a26313b4855626e7b88949fabb7c3cec5b8ab9f958a7e71675d51453e342a21212b343e47505a626d727f8c929ca4aeb7c1c9c7bfb5ada39c918c80736e635c5049413847535f6a7884919eabb8c4cbbfb4aa978b7e7164584b3e2d22170b0000000000000000000000000000000000000b1724313e4a5764717e8a97a9b3becad6e2dacdc0b3a79a8d807467574d42362a1e0d0200000000000000000000000009121b22292e3132383838383838383838383838383838383838383838383e4b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00000c1926333f4c5966727f8c99a5b2bfd2ddded2c5b9aca096877b6e6154483b2f24180d000000000000000000000000000000000000000000000000000004101c2834404b546673808c99a6b3bfccd9d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000061e2a3744515d6a7784909daab7c3d0dddbd0bbaea195887b6e6255483b2f2215080000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000010c16202c3845515c67717e8b96a0acb9c3cedde6f0f7f3e7dcd1c6bbafa3998e81756a5f53473d32271b0f04000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe1d5cabfb6aea8a6a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a2acaeb4bcc5d0dfded1c4b7ab9e91847e7974706b626058534d453e342e261e150c030000000000000000000000000000000000000000000000000000000000000000000000000000000008131e29323e45515c676f7c86929fa6b0bbc5cfdad7cbc0b5aba0968e81746c61574d41382d22170d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000004101c2934404b5565727f8b98a8b2bdc9d5d2c5b8ac9f9285796d6053463a2d2a36424d576874818e9ba7b4c1cfc7baaea399897d70636c7985929fabb8c5d2c6b9ac9f93867a6d6154473a2e27333f495365727e8b98a9b2bdc9d2c5b8ab9f9285796d6053463a2d201308000000000000000000000000000000030b141b262f39434c565e696f7c86929fa5afbac4ccc2bbafa49a91857a6d615a50443a3025190b020000000000000000000000000000000914212e3a47535f6976828f9ca7b1bcc8c8bcb1a79e9184796d605a50463c332a2a333d474f59616c727f8b919ca4aeb6c0c9c7bfb5ada39c918c7f736d635c52443f3837424e576874818e9ba7b4c1cfc0b3a79a8d807467544a3f33281c0f0300000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0d0dbe3d6cbbfb4aa978b7e7164584b3e31261a0e02000000000000000000000006111b242d343a3d3e44444444444444444444444444444444444444444444444b5864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00010e1a2734414d5a6774808d9aa7b3c0cddae1d4c8bdb2a8978b7e7164554b4035291c11060000000000000000000000000000000000000000000000000006131f2c3845515c6675828f9ba8b5c2cedbd8ccc0b6ac978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100030f1c2936424f5c6975828f9ca8b5c2cfdbd6c9bcafa396897c706356493d302316090000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000008131e2935404b55606d7984919ea8b2bdcbd5dfedebeaecede3d7cbc0b5ab9f93877c6f62584e43372b21160b000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe7dcd1c8bfb9b4b3aeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeb8babfc5ced7e2ded2c5b9aca196918b85817d766f6a615f5750443f3830271e150b02000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202934404b555f6a727f8b949fa9b3bec9d5dcd1c7bdb2a89d938a7e71695e53493f33271f150b010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000006131f2c3845515c6776828f9ca9b5c2cedacfc2b5a89c8f8275665c5144382c25313e4b5865717e8b98a8b2bdc9cbbfb4ab998c8073666f7c8897a2adbac6d0c3b7aa9d908377685e5246392d222d3b4855626e7b8896a1adb9c5d2c6baada297897c6f6356493c3025190e02000000000000000000000000000000020a141d27303a444d575f6a717e8b939ea8b2bec7ccc0b6aca1978f82756c61564c4135291d140a00000000000000000000000000000006121e2b37424d5764717e8a95a0acb8c1cec2b9aca1968d80746c61584e453c33323c454f59616b717e87939fa3adb6c0c8c8bfb5ada39b918c7f736d635b524a40332d313e4b5764717e8a97a8b2bdc9c3b6a99c908376665b5044382b1f120600000000000000000000000000000000030f1b27333f49536976828f9ca9b6c2cfdce0d3c7baaea398887b6f6255483c2f2215090000000000000000000000010c17222d363f454a4b5151515151515151515151515151515151515151515151515864717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b00020f1c2835424f5b6875828e9ba8b5c1cedbe5d9cec1b4a79b8e8174675d5145382e23170c010000000000000000000000000000000000000000000000000713202d3a4653606d7985929fabb8c5d2ded4c8bbafa49a887b6f6255483c2f2215090000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100010e1b2734414e5a6774818d9aa7b4c0cddad8cbbfb2a5988c7f7265594c3f31261a0e0200000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000010d19242f3945515d67727f8b96a1adbac3cedde5e1dedddfe0e3dcd1c7bbafa49a8f82756a6054473d32271b10050000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe7e3dad1cac4c1c0babababababababababababababababababababababababbc5c6cad0d7e0e9e1d5c9bdb2a8a19e98928e89827c756e69615a504a423930271d140a00000000000000000000000000000000000000000000000000000000000000000000000000000000050e18232f39434e58606c77828f97a1adb9c0ccd5d9cfc4baafa59e92857b6e655b50443c31271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000714202d3a4753606d7986929facb8c5d2d5c9beb3a9988c7f7265544a403428222e3b4855616e7b8896a1adb9c5d1c3b6a99c90837667727f8b98a9b3becaccc0b5ab9a8d807467564c41362a212e3a47535f697884919eabb8c4d1cabeb3a9998d807366564c41362a1e110500000000000000000000000000000000020b151e28323b454e58626c75818e96a1acb6c0ccc7beb3a99e948a7e71685e52463d2f261b11060000000000000000000000000000020e1a26313c4653606d7883909da5afbcc6c9bdb2a89d928a7e716a5f574d453d3b444e57606b707d879299a4afb5bfc8c8bfb6ada39b918c7f726d635b5249403727222e3b4754616e7a8796a1adb9c5c5b8ac9f9285796c605346392d2013060000000000000000000000000000000005121f2b3744505b657784919eaab7c4d1dddfd2c5b8ac9f9286796d6053463a2d201307000000000000000000000005111d29343f485056585e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e64717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0003101d2a3643505d697683909ca9b6c3cfdce9ded1c5b8ab9e9285796d60544a3f34281e13080000000000000000000000000000000000000000000000050f1b27333f495363707d8998a2aebac6d3dfd2c6b9ac9f93867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000c1926333f4c5966727f8c99a5b2bfcfdbdbcec2b5a89b8f827568574d42372b1e120500000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000004111d2935414c56606d7985929ea8b2bdccd5e0d9d5d2d1d2d4d7dcd8ccc0b6ac9e93897c6f62594f44382c21160b0000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe7ece3dcd5d0cdccc7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c8d2d3d6dbdddfe0e4dacec4bab2acaaa29f9b948f87817b706c605c544b43392f261c11060000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c44505b656e7a85929ea4aeb9c3cfd8d5ccc0b9ada2978f82776c60584e43392f23180e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000000000a1723303d4a5663707d8998a2aebac7d3d2c6b9ada197887c6f6255483c2e23212d3a46535f697884919eabb8c4d1c5b9ac9f92867a6d75828f9ba8b5c2cfc7bbafa4998a7d7064574a3d30251e2b37424d576875818e9ba8b4c1ced0c3b6aa9d908377685e5246392d2014060000000000000000000000000000000000030c162029333c46505a616d7a84919aa4afbbc3d0c4bbb0a69e92857a6d61594f41382d22170b01000000000000000000000000000009151f2b3844505c66707d89939eaab4bfcbc4baaea49f92867c6f695f574e46434d565f6a6f7d869299a3abb5c0c7c8bfb6ada49c918c7f726d635b514940372e25202d3946525e687884919eabb7c4c6baaea298887b6e6255483b2f221508000000000000000000000000000000000613202d394653606c7986929facb9c5d2dfdcd0c3b6a99d908376665c5044382c1f120600000000000000000000000915212e3a45505a62656b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b717e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0004111e2b3744515e6a7784919daab7c4d0ddeadfd2c6b9ada2978b7f72665c50443a2f24190f06000000000000000000000000000000000000000000030c17202b3744505b6574818d9aaab3becad6ded1c4b7ab9e918478675d5145382c1f13060000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000b1724313e4a5764717d8a97a9b3becad6ded1c5b8ab9e928578695f53463a2d21140900000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000030d17212c3945525d68727f8c97a1adbac4cfded5cec9c5c4c5c7cbd1d9d2c7beb0a69c8f82766b6054483d33271c0b0200000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe7ede5ddd7d2cfcec8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c9c9cacbcdd0d2d4d8ddd6ccc4bdb9b4aeaca69f9a938e857d736d665c554b42382d22170f06000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f27333f49535e68707d8a929da7b1bdc6d1dcd6cabeb3a99f948c7f726a5f554b40342920170c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000005121e2a36424d576774808d9aaab4bfcad6d1c5b8ab9e9285786c605346392d201e2b37424d576875818e9ba8b4c1cfc7bbaea399897c6f7885919eabb8c4d1c6b9ac9f93867a6d6054473a2d211a26313e4b5865717e8b98a8b2bdc9d2c6b9ac9f93877a6e6154473b2e23170b000000000000000000000000000000000000040e17212a343e46525d68707d88939fa7b1bdc7cdc1b9ada1978e81746b6053493f33271d1207000000000000000000000000000003101c28343f4a54606b75828f98a3aebac1cbc0baaea29891857b6e696058504b555e686e7c859298a2abb5bdc7c9c0b6aea49c918c7f726d635b514940372e251c1e2a36414d566976828f9ca9b5c2cabfb4aa968a7d7063574a3d3024170a000000000000000000000000000000000814212e3b4754616e7a8799a3aebac7d3e0dacec1b4a79b8e817468544a3f34281c100300000000000000000000000b1724313d4a56626c717777777777777777777777777777777777777777777777777777777e8b97a4b1becad7cbbeb1a4988b7e7165584b3e3225180b0006121f2c3945525f6c7885929fabb8c5d2deebe2d6cabeb3a99e9184796d60564c4135292118100700000000000000000000000000000000000000020b151e2834404a54606c7884919eabb8c4d0dbdbcfc2b5a89c8f827569554b4035291d10040000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000815222e3b4855616e7b8897a2adb9c6d2dfd2c6b9ada197887b6e6155483b31251a0e01000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000009141f2a36414c56606d7a85929fa9b3beccd6d5ccc4bdb9b7b9bbc0c7cfd9d0c1b7ab9f94897d7063594f44382c1d140a00000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe7e5dbd3ccc6c2c1bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbcbdbdbec1c4c6c8ccd2d4d7cec9c6bfbab8b0aca49f97928880786d675c544a3f332821180e03000000000000000000000000000000000000000000000000000000000000000000000000000000030d17222d38414c56616b74808d95a0abb4bfcbd7dbcfc5bbb0a69f92867c6f675c51453e32291e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000714212d3a46535e697784919daab7c4d0dbcec1b4a89b8e8175655b5044372b1f1a26313f4b5865727e8b98a9b3bec9cbbfb5ab988b7e727a8797a1adb9c6d0c3b6aa9d908377685d5245392c2015222e3b4855616e7b8896a1acb9c5d2c8bbafa49a8b7e7164544a3f34281c1003000000000000000000000000000000000000050f18222935414c56606b73808d95a0abb5c0ccc9beb3a99e93897d70655b5044392f23180c0100000000000000000000000000000b17232e38424f59616e7b86929fa5afb9c3cabfb4aaa19791847b6f6a625a545d676e7a849197a2aab4bdc6c9c0b7aea49c928c7f736d635b51493f372e251c13192530414d5a6774808d9aa7b3c0d0beb1a4988b7e7165584b3e3225180b000000000000000000000000000000000916232f3c4956626f7c8995abb4bfcbd7e3d9ccbfb3a6998c807366594d402e23170c0000000000000000000000000b1825323e4b5865717e84848484848484848484848484848484848484848484848484848485929eabb8c5d1d7cbbeb1a4988b7e7165584b3e3225180b0006121f2c3844515c667986939facb9c6d2dfece6dbcfc5b9aca1968a7e71685d52453e332a221810070100000000000000000000000000000000030b141d26303844515c66707d8a96a1adb9c5d2e1d5c9beb3a9988b7f7265584c3f2f24180c000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000714212d3a46535f697885929eabb8c5d1ded5c9beb3a9978b7e7164574d42362a1d1207000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000020e1a25303946525e6873808d97a2adbbc5cfd9cec4bab2acaaacafb5bdc7d1d3c7bbb0a69c9083766b6055483e2f261c1106000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe7ddd3c9c1bab6b5aeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeafb0b1b2b4b7b9bbc0c5c7cbd1d5d0cac6c2beb6afa9a29a938d82796d665b50443f332a2015090000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b444f59606d79839199a3aebac2cdd7d7cdc2baaea3999183796d60594f443a3025190f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000000815212e3b4854616e7b8795a0acb8c5d1d5c9bdb2a8988b7e716553493f33271b15222f3b4855626e7b8897a1adb9c6d1c0b4a79a8d81747c8996a9b3bec9cbc0b5ab9a8d807367564c4135291d14212d3a46535f697884919eabb7c4d1ccc0b6ac9b8e8175665c5044382b1f12060000000000000000000000000000000000000007101924303a444f59606d79839099a4afbbc6cfc5bbafa59d9083786c60554b4034291d1207000000000000000000000000000006111c26303d46535e69727e8b939ea7b1bbc5c5bcb3a9a19691857c716c605d666d79839096a1a9b3bcc6cac1b7afa59d928c80736d635b51493f372e251c13081825323f4b5865727e8b98a5b1becfbfb2a6998c7f7366594c403326190d000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdd1dce7d8cbbeb1a5988b7e7265584b3f322518060000000000000000000000000c1926323f4c5965727f8c91919191919191919191919191919191919191919191919191919297a1adb9c6d2d7cbbeb1a4988b7e7165584b3e3225180b000713202d3a4653606d79869aa4afbbc8d4e0edece1d5c9bdb2a89e91847a6d605a50463c342a2218130c040000000000000000000000000000060c151d262f38424c56606d7984919da8b2bdc9d5dfd2c6b9ada197887b6f6255483c2f221507000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000005121e2a36424d576976828f9ca9b5c2cfdadacfc2b5a89b8f8275695e5346392f24180b020000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000005121e2a36424d57616d7a86929fa9b3becdd6d5c9bdb2a8a09e9fa3abb5c0cbd7ccc2b7ab9f94897d70635a5042382d22170b000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe2d7ccc1b7afaaa8a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a2a3a4a5a7aaacafb6b9bbc0c7cad0d6d3d0c7c0bbb3aca49f948e81786c605b51453c31261a0d03000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29323e45515d676f7c86929fa6b0bbc5cfdad7cbbfb4aba0958d80746b61564c41362a21180c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000003101c28343f4a5465717e8b98a7b1bcc8d4d2c5b9aca096877b6e6154483b2d221714212e3a47535f6a7885929eabb8c5cfc2b5a99c8f82767e8a97a4b1bdcfc7bbafa3998a7d7063574a3d2f2419121e2a36424d576874818e9ba7b4c1ced2c5b8ab9f9285796d6053463a2d201308000000000000000000000000000000000000000008131e28323d45515c676f7c87939faab4bfcbcdc1b8aca0958b7e71675c5145392f23180c0000000000000000000000000000000a141e2a36424d57626d75818e95a0a9b3bcc5c4bbb2a9a19791867e746d676d78828f95a0a8b2bbc5cbc2b8afa59d938d80746e635b51493f372d251c130a0a1623303d495663707c8996a9b3becac0b4a79a8d8174675a4e4134271b06000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8e3d6c9bdb0a3968a7d7063574a3d3024170a0000000000000000000000000c1926323f4c5965727f8c989e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9ea1a9b3bec9d5d7cbbeb1a4988b7e7165584b3e3225180b000714212d3a4754606d7a8793a0b6c0ccd8e4f0f1e5dacec4b9aca1968e81756c61584e463c3429241d16100b0603000000000000000003070c11171e272e38414a545e68727f8c96a0acbac4cfdaded1c4b8ab9e9185786a5f53473a2e211508000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000020e1a2631404d596673808c99a9b3bec9d5dfd2c6b9ac9f93877b6e61554b4035291d140a0000000000000000000000000000000000060f18222f3c4855626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000040e18222d3a46525e6974808d98a2aebbc5d0dcd2c5b9aca096919299a3afbbc6d1d3c7bcb0a69d9083776c61544a3f33281c11060000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbded2c6baafa59e9b9595959595959595959595959595959595959595959595969697989a9d9fa4acacafb5babec5cdd7d9d2ccc5beb6afa69e938d80746d62574d42372b1f150b01000000000000000000000000000000000000000000000000000000000000000000000000000000020b17202935404b555f6a727f8c949fa9b3becad6dcd1c6bdb1a79d928a7d70685e52463f332a1e150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000006121f2c3844505c6675828f9ba8b5c2ced9d1c4b7aa9e918477695e53463a2d1b11121e2b37424e576875828e9ba8b5c1cfc4b7aa9d9184777f8c98a5b2bfcbc5b9ac9f92867a6d6054473a2d21140e1a26313e4b5864717e8b97a8b2bdc8d3c6baada297897c6f6256493c3025190d0100000000000000000000000000000000000000020c16202834404b555f6a74818e98a3aebac5cfc8bcb1a79e9184796d60554b4034291c11060000000000000000000000000000020c1a25313b45515b606d79839097a2aab3bcc6c4bbb2a9a198928b81796f74808d949ea7b1bac4ccc2b9b0a69e938e81776c605c524940372e251c130a010714212e3a4754616d7a8797a2adb9c6c2b5a89b8f8275685c4f422d22170b000000000000000000000000000000000d192633404c5966737f8c99a6b2bfccd9e1d5c8bbaea295887b6f6255483c2f2215090000000000000000000000000c1926323f4c5965727f8c98a5aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabadb3bbc5cfdad7cbbeb1a4988b7e7165584b3e3225180b000714212e3a4754616d7a8794a0adbad2dde8f4f6ebe0d5c9bdb2a89e938a7e716a5f584e463d352f281f1c17120f0b0608070708060c1012181c222830394049535c666d7a85929fa8b2bdccd6e0d4c8bcb1a79a8d807467584e43372b1f1206000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000916232f3c4956626f7c8997a1adb9c6d2dfd4c7bbafa4998d8073675d51453b2f261b1106000000000000000000000000000000050e18212a36424d57626f7b8895a2aebbc8d5d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000a15202b37424d57616e7b86929faab4bfcdd7d4c8bcb1a79e918487929fabb4bfcbd7cdc2b8ab9f958a7d70665b5044382e23170b0000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdccfc2b6aa9e938e8888888888888888888888888888888888888888888888898a8a8b8e91939a9b9fa3abadb3bbc2cbd1d8d8d0c7c0bbafa59d928c7f72695f53473e31271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000050e18242f39434e58606c77828f97a1adb9c0ccd5d8cfc3b9aea49e91857a6d615b51453c30271c1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000000000713202d3a4653606d7985929fabb8c5d2d8ccc0b6ac9a8d817467574d42362a1e0a0e1a26313f4c5865727f8b98a9b3becac5b8ab9f928578808d9aa6b3c0cdc3b6a99d908376675d5145392c20130915212e3b4854616e7b8796a0acb8c5d2cabeb3a9998c807366564c41362a1d11050000000000000000000000000000000000000000040e18232e39434e58616e7b86929fa9b3becacdc3b9ada1968c7f72675c5145382e23170c00000000000000000000000000000009141f29333f45515d676e7b859298a2aab4bcc5c4bbb3aaa39f938e847c7f8b929da6b0b9c3ccc3bab1a79f948e81786d655b504a40372e251c130a01000713202d3946525e687885929eabb8bab8b4a99d9083766a53493f33271b0f030000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9e1d4c7baaea194877b6e6154483b2e2115080000000000000000000000000c1926323f4c5965727f8c98a5b2b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b8b9bec5cdd6e1d7cbbeb1a4988b7e7165584b3e3225180b000815212e3b4854616e7b8794a1aebac7d4e1edfbf1e5dacec4baafa59f92867c6f6a5f584f45403a312b28231f1b17161514141516171c1f24292d333c424b515b656d78828f97a2adbac3cedfddd1c4b8aca095887c6f6255493c31261b0f03000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000613202d394653606c7885919eabb8c4ced9d7ccc0b5ab9f9285796d60564d41382d2217110600000000000000000000000000060e17202a333c46535f6973808d9aa6b3c0cdd9d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000030f1b26313a46535f6974818e98a3aebcc6d0dcd1c4b8ab9f958a7d818e99a3aebac6d0d4c8bcb1a79d9083786c60544a3f34281d120700000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdbcec1b5a89b8e817b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c7d7e7f8184868a8e92999fa2a9b0babfc6cfd8d9d2ccc1b7aea49f92867b6e625a5043392f24180c000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c44505b656e7b85929ea5afbac3cfd8d5cbc0b9ada1978f82756d62574d42392e23180d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000000091623303c4956636f7c8998a2aebac6d3d4c8bbafa49a8a7d7164574a3e31251a0e0915222f3c4855626f7b8897a1adb9c6c6baada297867a818e9ba7b4c1cbbfb4ab998d807366554b4135291d110714202d3a46525e697784919eaab7c4d1cfc3b6aa9d908377685e5246392d20130600000000000000000000000000000000000000000007121d27303c46525e6973808d97a1adb9c4cec9bdb2a89e9185796d60544a3f34281c10030000000000000000000000000000030d17212935404b555f696f7c869298a2aab3bbc3c4bcb4aea59d96918787929fa4aeb8c1cbc4bbb1a89f958f82786d665c53493f382e251c130a01000005111e2a36414c566a7784919daab4aeacaaa29e918478655b5044372b1f12050000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0cddae0d3c7baada094877a6d6154473a2e2114070000000000000000000000000c1926323f4c5965727f8c98a5b2bfc4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c5c6c9cfd6dfe8d7cbbeb1a4988b7e7165584b3e3225180b000815222e3b4855616e7b8894a1aebbc7d4e1eef0e9e4e0d6ccc1baaea29892857c6f6a6059514b433d38342e2b272223222121222323282c2f35383f444d545c606c77818e949ea9b3beccd5e0d4c8bdb2a89d9083776a5f53473b2a20150a00000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000005121f2b3744505b6574818e9aa8b2bdc9d5ddd2c7baada2978b7e72695e53493f33272317110a03000000000000000000030a10182029323c46505a616e7b86929facb9c5d2dfd4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000006121f2b37434e58616e7b87929faab4bfced7d3c7bcb0a69d9083767b86929faab4bfcad6cdc3b8aca0958a7e71665c5044392e23180c01000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d81746e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6f70717274777a7d82878d92979fa6aeb4bdc6d0d9ddd8c9c0baaea3998f82766c61554b4035291d100400000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f27333f49535e69707e8a939da8b2bdc6d1dcd5c9beb3a99e948b7e72695f544a40342820160c0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000005111e2a36414c566673808d99aab3becad6d2c6b9ac9f93877a6d6154473a2e2114090613202d394653606c7985929eabb8c5cabeb3a994887b828f9ca8b5c2c7baaea399897d7063564a3d2f24180d05121e2a36424d576774818e9aa7b4c1ced2c6b9ac9f93877a6d6154473a2d22170b000000000000000000000000000000000000000000000b151e2a36424d57606d7a85929ea8b2bdc9cfc4b9ada1978b7e72665c5044382c1f150a000000000000000000000000000000050f18242f39434d57606a6f7d869298a1a9b1b9c1c6bfbaafa8a099939299a3afb6c0cac5bcb2a9a0959083796d665c544a41382d261c130a01000000010d19253043505d697683909ca9aaa29f9b98928f86786c605346392d2013060000000000000000000000000000000e1b2834414e5b6774818e9aa7b4c1cddae0d3c6b9ada093867a6d6053473a2d2014070000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d2d5dad7d7d7d7cbbeb1a4988b7e7165584b3e3225180b000815222f3b4855626e7b8895a1aebbc8d4e1efe6dfd8d4d1d0cabeb3aaa19792857c706b605d554f46443f3937332d302f2d2e2f302e34383a40454a50575f666d73808d939ea6b0bcc5d0ded8cec6b9aca0968b7e7165584e43372b180e0300000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000030f1b27333f495363707d8996a0acb9c6d0dcd6cabeb3a99e92857b6e655b50443d3528231c15100c060604000205060b0f151b222a323b444e58626c75818e98a3aebac7d3e0d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000040f19232e3a47535f6a75818e99a3afbcc6d1dcd0c4b7ab9f94897d7074808d98a2aebac5d0d4c8bcb1a79e9184786d60544b4034281d1207000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174676262626262626262626262626262626262626262626363646567686d70757b80858f949fa3abb4bdc7d2dddbd7cbbfb4ab9f948a7e71675d5145382c1f14090000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17222d38414d56616c74818e96a0abb5bfcbd7dacfc4bbb0a69f92867b6e665c51443d32281e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000713202d3946525e687783909daab6c3d0dbd0c3b6aa9d908377685e5246392d20130705121f2b3744505b6575828f9ba8b5c2d0bbafa295887c83909da9b6c3c5b9ac9f9286796d6053473a2d201407020e1a25303e4b5764717e8a97a7b1bcc8d4c8bbafa49a8a7e7164544a3f33281c0f03000000000000000000000000000000000000000000030c1a25303b45525d68727f8b96a0acb9c5cfc9beb3a99e9184796d6053463c31261b0f0100000000000000000000000000000007121d27313c454e58606b707d869297a0a7b0bbc0c7c0bab2aba49f9fa3abb5c0c8cabfb4aaa19791837a6d675d544b42382f261b130a010000000000081c2935424f5c6875828f9b9f9b98928e8a86827e776c605346392d2013060000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe0d3c7baaea39986796c605346392d2013060000000000000000000000000c1926323f4c5965727f8c98a5b2bfcacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabeb1a4988b7e7165584b3e3225180b000815222f3b4855626e7b8895a1aebbc8d4e1e6ddd4cdc8c4c3c4c5bcb3a9a19792857d746d67605953504a46443f3d3c3b3a3a3b3c3e3f44464b51545b60696e79808d929da5afb8c1ced7dcd0c6bcb1a79e9184786d6053463c32261b070000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000b17222d394653606c7884919eaab4bfcbd6dbcfc5b9ada2978f82776c60584f473e342e261f1c171312100c0e1214171b1f262b343c444d565f6a717e8b939eaab4bfcbd7e3d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000b16212b37434e58626f7c87939fabb5c0cfd8d3c7bbb0a69c9083766b6e7a86929faab4becad6cec3b8aca0968b7e71665c5145392f24180c010000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a555555555555555555555555555555555555555556575758565d6163696e737b828c9299a3abb5c0ccd7dfdcd1c6bdb0a69e9184796d6053473b31261a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b44505a606d79849199a3aebbc2cdd7d6cdc1baaea2989083786d60594f443a2f24190f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000000714212e3a4754616d7a87939facb9c6d2d7cbbfb4aa998d807366564c4135291d1105030f1b27333f495365727f8b98a9b3becabcb0a396897d84919eaab7c4c3b6a99c908376675d5145382c1f1306000914212e3b4754616e7a8795a0acb8c5d1ccc0b6ac9b8e8175665b5044382b1f12060000000000000000000000000000000000000000000009141f2935414c56606d7984919ea9b3bec9cfc4b9aca1968a7e7164584e43372b1d1207000000000000000000000000000000010b151f2a333d464f59606b707d8590959ea6afb5bdc3c4bdb5afacacafb5bdc7d1c6baaea29891857b6e685e554b423930261d140a010000000000010e1b2834414e5b6774818e98928e8a85827d7a75716c655b5044372b1f12050000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c2cedbdfd2c5b9ac9f928679665b5044382b1f12060000000000000000000000000c1926323f4c5965727f8c98a5b2bebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebeb1a4988b7e7165584b3e3225180b000815212e3b4854616e7b8794a1aebac7d4e1dfd4cbc2bcb8b6b8bcc2bbb3a9a19792898179706b64605c545350494a4948474748494a4a5053555d60666c727b838d929da4aeb7c1cad3ddd6cbbfb4aa9f958a7e71665c5044382a20150a0000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000006121f2b3744505b65727f8c98a3aebac5d0dbd6cabeb3a99f948b7f726a605950443f38302c2823201f1c181a1e2122272b32373e464e565e696e7c86929fa5afbcc6d1dce7d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000020b1b27323b4754606a75828f99a4afbdc7d1dcd0c4b7ab9f94897d70636873808d98a2aebac5cfd4c8bdb2a89e9184796d60554b4035291d13070000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e48484848484848484848484848484848484848494a4b4c4c5254575e61696e777f879299a4afbbc0cdd6e1d8cfc2b9ada1978a7e7164574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29323e45515d676f7c87929fa6b0bbc5cfdbd6cabfb4aaa0958d80736b60564c41352921170c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000030f1b27333f495364717e8a9aa4afbbc8d4d3c7baaea398897d7063564a3d3025190d01000b17222d3c4955626f7c8897a2adbac6bdb1a4978a7e85929fabb8c5bfb4aa998c807366554b4035291d1004000714202d3946525e687784919daab7c4d2d2c5b8ab9e9285796c605346392d20130800000000000000000000000000000000000000000000030d19242f3a45515c66717e8a97a1adb9c7d2c9bdb2a89c9083766a5f5347392f24180c00000000000000000000000000000000030d18212b343d474f59606b6f7b838f949fa3abb1bbc0c7c0bbb9b9bbc0c7cfd2c5b8ac9f92867c6f695e564c433c332d261d170e080000000000000d1a2733404d5a6673808d8a85817d7975716d6764605b53493f33271b0f030000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c2cedbdfd2c5b8ac9f9285796c5f4b4034281c10040000000000000000000000000c1926323f4c5965727f8c98a5b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1a4988b7e7165584b3e3225180b000814212e3b4754616e7a8794a1adbac7d4e4d8cdc2b9b1aba9abb1b9c2bbb3a9a29f928d847d76716d6662605b535756555454555657545c6062676d72787e8690959da4aeb6c0c9d2dcd5cbc3baaea3989083786c60544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000030f1b27333f4953616d7a86929faab3becad6dbcfc5bbb0a69f92867c706b615a504a423d38342e2d2c2823262a2d2d33373c434750585f686e7b849198a2aeb7c1cfd8e2e1d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000a141d2c38444f59626f7c89939eabb5c0cfd9d3c7bbb0a69c8f82766b60616d7a85929fa9b3becad6cec3b9aca1968b7f72675d51453a2f24180d0200000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e413b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3c3d3e3f4146474d53575e656c727e87939fa4aebbc4cfdae1d5c9beb2a99c8f8276695f53463a2d211408000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17202935404b55606a727f8c949fa9b3becad6dbd0c6bcb1a79f93877d70685d52453e33291e140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000005121f2b3744505b6575818e9bacb6c0ccd8d2c5b9ac9f9286796d6053473a2d20140800000613202d394653606c7985929fabb8c5beb1a4988b7e86929facb9c5baaea298897c706356493d2f24180c000005111e2a36414c566774818d9aacb6c0ccd2c6b9ada197897c6f6256493c3025190d010000000000000000000000000000000000000000000008131e2834404b54606d7985929eacb6c0cccec4b7ab9f94887c6f62554b4035291d100400000000000000000000000000000000060f19222b343d474f5960696e79828c9299a0a7afb5bdc7c7c6c5c7cbd1d9cbbeb1a5988b7e736d67605b534e443f382f29201a110900000000000b1825323e4b5865717f817d7975706d6764605d5553504941382d22170b000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cedbdfd2c6b9ac9f938679675c5145382c1f13060000000000000000000000000c1926323f4c5965727f8c98a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4988b7e7165584b3e3225180b000714212d3a4754606d7a8793a0adbad1dce0d4c8bcb1a79f9d9fa7b1b9c3bbb3ada49d969189837d78726f6c6565646362606162636466666d6f73797e848b9298a0a7aeb6c0c8d2dbd5ccc3b9b0a69f92867c6e655b5042382e23170c000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000b17222d3846525e6873808d98a2aebac3cfd9d7cdc2baaea39892867d706c605c544f46443f3b3a38342e31363a3b3f44464e535a616a6f7a849196a0aab4bfc9d3e1eae1d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000006111b262f384854606b76828f9ca5afbdc7d2d9d0c7b7aa9e94897c6f63595e6873808c97a2adb9c4cfd5c9bdb2a89e9184796d60554b4135291e130800000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e41342f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f3030313035393b42464d535b606c727f8b929da9b3bec9d5e0dacfc4b9ac9f93877b6e6155483b3024190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e18242f39434e58606c78828f97a2adbac1ccd5d8cec3bbafa49991847a6d605a50453b30261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000613202d394653606c7885929eabb8c5d2ddcfc2b6a99c8f8376675d5145382c1f1306000006121f2b3844505b6675828f9ca8b5c2bfb2a5998c7f8c99a3aebbc5b8ac9f9286796d6053463a2d2013070000010d1925303d4a5764707d8a9aa4afbbc8d4cabeb3a9998c7f7366564c4135291d110500000000000000000000000000000000000000000000010c18232e3945515c6673808d9aa4afbbc8d4c7bcb0a69a8d8074675d5145382c1f13070000000000000000000000000000000000071019222b353d474f575e676d787f8790959fa4abb5c0ccd2d2d4d7dcdfd2c5b9ac9f92868079716c655f585049413b322c231b1306000000000b1724313d4a56626d7174706d6764605d5553514b46443f382f261b1106000000000000000000000000000000000e1b2835414e5b6874818e9ba7b4c1cedae0d4c8bbafa49a86796d6053463a2d2013070000000000000000000000000c1926323f4c5965727f8c9797979797979797979797979797979797979797979797979797979797979797979797979797978b7e7165584b3e3225180b000714202d3a4753606d7a8693a0b5bfcbd7ddd1c4b8ab9f9590959fa7b1bcc5bebaaea8a19e95908a847f7c797572706f6e6d6d6e6f717275797c80858b91969fa2aab1b9c0c8d2dad5ccc4bab1a79e948c7f726a5f53493f30261c1106000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000006111b2a36414c56616d7a85929fa7b1bdc7d1dcd6cbbfb4aaa29892867e726d66615953504a484644404344424648495053585f626c717c849196a0a8b2bcc6d0dbe5f3e1d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000b17222d38414f5963707d89949fabb8c1d0d9d2c7beafa59c8f82756b605456606d7a85929ea9b3bec9d5cec4b9ada1978c7f72675d51453a3024190d02000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134272222222222222222222222222222222223242424292d31363b4149505a626d74808d97a1adb9c3ced9e0d4c8bbafa49a8d807366564c4135291d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d28313c44505b666e7b85929fa5afbac4cfd9d7ccc0b5aba1968e81756c61574d42382e23170d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000000916222f3c4955626f7c8897a1adb9c6d2d6cabeb3a9998c7f7266554b4035291d10040000030f1c28333f4a5465727f8c98aab4bfc1b4a79b8e818e9babb5bfc2b6a99c8f8276675c5145382c1f13060000000814212e3a4754616d7a86939facb9c6d2cfc3b6a99d908376685e5246392d201306000000000000000000000000000000000000000000000007121d2834404b54616e7b87939facb9c4cfcdc2b8ab9f9285796d6053473a2f24180c000000000000000000000000000000000000071019232b343d454d555d666c737c838d9399a4afbbc7d4dfe0e3e0dfd3c7baaea398928d847e786f6a605b534d443e352d2517110a0300000915212e3a45505a62656863605c5553514b4745403937332d261d140a00000000000000000000000000000000000e1b2734414e5a6774818d9aa7b4c0cddae4d8ccc0b6a093877a6d6054473a2d2114070000000000000000000000000c1926323f4c5965727f8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b7e7165584b3e3225180b000613202d394653606c798699a3aebbc7d3dcd0c3b6a99d90839095a0aab4bdc7c0bab2aca79f9d96918c8885827f7d7c7b7a7a7b7c7d7f8285898c92979ea0a8aeb4bcc3cbd2dbd6cbc3bab2a8a0958f82786c60584e41382d1e150a00000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000d1925303a46525e68737f8c95a0abb5c0cbd7dcd0c6bcb3aaa29892877f78706b63605c545453514a50504d5355535b60636a6f767e869196a0a8b2bac3ced8e2edeee1d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000030f1b27333f4953616b7683909da6b0bbcad3d8ccc0b6ac9e93887c6f62594f515d67727f8c97a1adb9c4cfd5c9beb2a99e92857a6d60564c4135291e1308000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b151515151515151515151515151515161718191d20252a2f383f44515b606d7985919ea8b2bdc8d4e1d8ccc0b6ac9d918477685d5245392c20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f28333f4a545e69717e8a939da8b2bdc7d1dcd2c7bdb2a89e938a7e71695e544a3f34281f160c010000000000000000000000000000000000000000000000000000000000000000010100000000000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000004111d2935414c5666737f8c99a9b3bec9d5d3c6baada297897c6f6256493c2f24180c000000000b17222d3c4956626f7c8998a2aebac2b6a99d938e939da9bdc6bfb4aa998c7f7266554b4034281c10040000000713202d3946525d687783909daab6c3d1d2c6b9ac9f93867a6d6154473a2d22170b0000000000000000000000000000000000000000000000000c18232e3946535f6976828f9ca9b2bec9d3c6baada2978a7d7164554b4035291d1004000000000000000000000000000000000000071119222b333b434b545b606a6f798087939facb9c6d2dfdcd7d3d2d3cbbfb4aaa39f97918b837c726c655e564f473f3728231c150c030005111d29343f485056585b5753514b4745403a39352f2b27221b140b0200000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3c0cdd9e8ddd2baada194877a6e6154473b2e2114080000000000000000000000000915222f3c4855626f7c7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7b6e6155483b2e2215080006121f2b3844505b667986929facb9c5d2d7cabdb0a4978a7e839098a3abb5bdc5c4bdb9b1aba8a09e9997928e8b8a8988878788898a8c8f9298999ea1a9acb2babfc6ced5d8d0cac1b9b1a8a0969083796d665b50463c2f261b0c0300000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000008131e2935414c56606d79839199a3afbbc2ccd5d8cec5bcb3aaa399928c837d75706d666461605c545d5d575f6164656c70757c828b9298a0a8b2bac3ccd2d7dde5ede1d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000005121f2b3744505b65707d8a959fabb8c2ccdcd4c8bbafa49a8f82756a6054464c55606d7985919ea8b2bdc9d5cfc4b9ada1978c7f73685d52453a3025190d020000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0808080808080808080808080808090a080d11141a1d262d333f45515d67727f8b96a0acb9c5d2deddd2c6b9ac9f93867a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d17222d38424d57616c74818e96a0abb5c0cbd7d9d0c4baafa59f92857b6e665c50443d31281d1307000000000000000000000000000000000000000000000000000000000003080b0d0e0b070603000000000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000613202c3945525d687683909ca9b6c3cfdad2c5b8ab9f9285796d6053463a2d201307000000000613202d3a4653606d7985929facb8c5baafa59d9b9da5afbac6baaea298897c6f6256493c2e23180c0000000005111d2935414c566773808d9aabb5c0cbd4c7bbafa4998a7e716453493f33271b0f03000000000000000000000000000000000000000000000007121d2a36424d5764707d8a97a1adb9c6d2cabeb3a99b8e8175675d5145382c1f1306000000000000000000000000000000000000000710192129313a424a50585f676d7983909daab6c3d0d8d1cbc7c5c7cbc6bcb4aea9a19e9590877f776e696159514940342e261e150b02010c18222d363f454a4b4e4a4645403a38352f2c29241f1b17110a020000000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9e1d5c8bbaea295887b6f6255483c2f2215090000000000000000000000000815212e3a47535f6a6f71717171717171717171717171717171717171717171717171717171717171717171717171717171716e695f53473a2d21140800030f1c28333f4a5f6b7885929eabb8c5d1d7cabdb1a4978a7e7c869299a3abb3bbc3c9c2bcb7b2acaaa9a19e9b989796959394959697999c9fa2aaabadb3b9bdc4cad0d8d5cec6bfbaafa7a09691847b6e675d544a3f342a1d140a0000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000000020d1925303a45515c676f7c87929fa6b0b9c3ccd6d7cec5bcb4aba39f959189827d7975716e6d666a696a6b696e7173787d81878f949fa2aab2bac3c1c3c6ccd3dbe5e1d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000003101c28343f4a54606c7883909da7b1bccad4d7ccc0b5ab9f93877c6f62584e4345515d67727f8b96a1adb9c3ced5c9beb3a99f92857a6d60564c41362a1f14090000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e01000000000000000000000000000000000105090b141b222935404b55606d7984919eaab7c4cfdae0d4c8bbafa49a897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3b45505a606d79849199a3afbbc2ced7d6ccc1baaea2989082786d60584e433a2f24180e05000000000000000000000000000000000000000000000000000001080f14181a1b181312100b0600000d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000714212d3a4754606d7a86929facb9c5d2dbcec2b5a89b8f8275665c5044382b1f12060000000006121f2c3844505c6676828f9ca9b5c2c0b7afa9a7a9afb7c0c5b8ac9f9285796d6053463a2d20130700000000010d1924303d4a5763707d8a99a3afbbc7d4ccc0b5ab9b8e8174655b5044372b1f12050000000000000000000000000000000000000000000000000e1a26313b4653606d7984919eabb8c3ced0c5b8ac9f9285796d6053473a2d2014090000000000000000000000000000000000000000070f171f282f38404a545f6a727f8c95a0abb8c4d1cfc6bfbab9babfc6c6bfbab2ada79f99928c827b706c625b52443f3830261d140a0006111b242d343a3d3e413d3a38342e2c2924201d18120f0b0600000000000000000000000000000000000000000c1926333f4c5966727f8c99a5b2bfccd8e3d6c9bcb0a396897d7063564a3d3023170a00000000000000000000000006121f2b37434e585f626464646464646464646464646464646464646464646464646464646464646464646464646464646464615f574d42372b1e120600000b17222d44515d6a7784909daab7c3d0d7cabeb1a4978b7e717d879299a2a9b1bbc0c7c7c4bdb9b7b3adaba8a5a3a2a1a0a0a1a2a4a5a8abaeb4b8b9bec5c9ced6d4cec9c2bcb4aea59e9590847b6e695e554b42382d22180b020000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000008131e2934404b55606a73808d949fa7b1bac4ccd5d7cfc6bdb5afa7a09d948f8985817d7b797877767778797b7e8084898e93999fa6aeb4bcb9b7b5b6bac1c9d3dde1d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000010b151f2b3844505c66717e8a95a0acb9c2cddcd4c7bbafa4998e81756a5f53463c404b55606d7984919ea8b2bdc8d4cfc5baada2978d8073685e52463b30251a0e0300000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000020a1118242f3a44515c66737f8c99a9b3bec9d5e2d8ccc0b6ac998c7f7366594c4033261907000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29333e45515d676f7c87929fa6b0bcc5d0dbd6cabeb3aa9f948c7f736a60554b40352920170b02000000000000000000000000000000000000000000000000020b131a2024272824201f1c17110c070d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000000a1724313d4a5764707d8a99a3afbbc7d3d5c9bdb2a8988b7e7265544a3f34281c10030000000003101c28343f4a5466727f8c99aab4bfcac0bab6b4b6bac0c9c2b5a89c8f8275665c5044382c1f120600000000000814212d3a4754606d7a86929facb9c5d2d2c5b8ab9e9285786c605346392d20130800000000000000000000000000000000000000000000000009141f2c3844505c6673808c99a8b1bdc8d3c6baaea2988a7d7064574a3d30251a0e02000000000000000000000000000000000000000007121d27303944515c666f7c86929fa7b1bcc8ccc3bdb4aeacaeb4babfc6c4beb9b1aba39f948f857d726d635c504a42382f261b11060009121b22292e313235302d2c28231f1d1813100d0703000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdd2dde8d7cbbeb1a4988b7e7165584b3e32251807000000000000000000000000030f1a26313c464e5355585858585858585858585858585858585858585858585858585858585858585858585858585858585855534d453c31261a0e020000061c2936434f5c6976828f9ca9b5c2cfd8cbbeb1a5988b7e72717e879297a0a7afb5bdc2c7c9c5c4beb9b8b5b2b0afaeadadaeafb0b2b5b8babec5c6c9cfd5d3cec8c4bdb9b0aaa29f938e837a6e695f574d433a2f261c0f06000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000020c18232f39434e58606d78828f95a0a8b2bac3cbd6d8cfc7c0bbb1aca69e9c97928e8a8786858483838485888a8d91969b9fa4abb0babab2acaba8aaafb7c1ccd7e3d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000007121d2834404b54606d7884919da7b1bccbd4d7cbc0b5ab9f93877b6e62584e43343945515c67717e8b96a0acb9c3ced6cabeb3a99f92867a6d61574d42362a1f140900000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000007131d2834404a54626f7c8997a1adb9c6d2dfddd2c2b5a89b8f8275685c4f422f24180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17212935404b55606a737f8c949fa9b3becad6dbd0c5bcb0a69f92877c6f675d51453e32291d140a0000000000000000000000000000000000000000000000000b141d252b303334312d2b28231c18120d1a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000006121f2b37434e586774818e9aabb5c0cbcecec5b9ada196887b6e6255483b2e23170b0000000000000c17232e3c4956636f7c8998a2aebac7cbc6c2c1c2c6cbcabeb3a9988c7f7265544a3f34281c100300000000000613202c3945525d687683909da9b6c3d1cec6b9ada197887c6f6255493c3024190d01000000000000000000000000000000000000000000000003101c28343f4a54616e7b8795a0acb8c5d1cabfb4aa9b8e817468574d42362a1e110500000000000000000000000000000000000000000c18232e39434e58606d78839098a3aeb9c3cfc3bab2aba39fa3abaeb4bcc1c9c2bdb5aea69f9792887f736e605c544a41382d22171007000911181d2124252824201f1c1813100c070401000000000000000000000000000000000000000000000000091623303c4956636f7c8996abb5c0ccd7e3d9ccbfb3a6998c807366594d402e23180c000000000000000000000000000a15202a343c4347484b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4847423c332a1f15090000020f1b2835424e5b6875818e9ba8b4c1ced8ccbfb2a5998c7f726c717d8590959fa3abb0b8bcc2c7cbcac6c5c1bebdbcbbbababbbcbdbfc2c5c6cad0d2d2d0cac6c3bcb8b2aca69f98928b81796e685f574d453b31281d140a00000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000000000007121d27313d44505c666d7a839196a0a8b1b9c1cad0d8d1cbc3bcb8b0aaa9a29f9b979a9392909090919298979a9ea1a8acafb5bdbcb2a8a19e9b9ea5afbac6d2ded4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000c18242f3845515c66717e8b96a0acb9c3cdddd3c7bbafa3998e81746a5f53463c3134404b55606d7884919ea7b1bcc8d4d0c5baaea2988d8073695e52463b31261a0e03000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e01000000000000000000000000000000000000000000010c18232e394653606c7985929eabb8c5d1deded1c4b7ab9e9184786b554b4035291d100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f18242f3a434e58606d78829097a2adbac1ccd6d7cec2bbafa3999184796d605a50443b2f261b110600000000000000000000000000000000000000000000060f1d262f363c40413e3a38342e28231d181a2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000814212e3a47535f6a7884919eabb7c1c1c1c1c1b8ab9e9184786a5f53473a2e1c11060000000000000613202d3a4653606d7986929facb8c1c1c1c1c1c1c1c1c1baada297887c6f6255493c2e23170c00000000000004111d2935414c566673808d99abb5bfc1c1c1beb3a9998c7f7366564c4135291d11040000000000000000000000000000000000000000000000000c17232e3846535e697784919daab7c4d1d0c4b7aa9e918477695e52463a2d2014070000000000000000000000000000000000000004101c2834404b55606a73808c95a0aab4bfcbc6bdb2a8a09992999fa3aaafb9bec4c6bfbbb0a9a19a938c80746d665c53493f332722190d0300060c111517181b171313100c0704000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8799a4afbbc7d4e0dacec1b4a79b8e817468544a4034281c1004000000000000000000000000030e18222a31373a3c3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3b3a37312a21180e030000010d1a2734404d5a6773808d9aa6b3c0cdd9cdc0b3a69a8d8073676b707b838d92999fa6abb1b9bbc0c5c7cbd1cbcac9c8c6c7c8c9cacccfd2d1cfcfc9c6c4bfbab8b1aca8a09e948f867e756d675e564d453b33291f160b0200000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000010b151f28343f4a545d686e7b849196a0a7afbabfc6ced4d7cec8c1bbb7b3adaba8aca49f9e9d9c9d9e9fa2aaa6abacb2b9bbc0bbb3aaa196918e939eaab6c3cfdcd4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000004101d2935404b55606d7984919ea8b2bdcbd5d7cbbfb4ab9f92877b6e61584e43342a2e3944505c66717e8a95a0acb8c3cdd6cabfb4aa9f92867b6e61574d42362a201509000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000007121f2b3844505b6675818e9ba8b4c1cedbdfd2c5b9ac9f928679675d5145382c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313d44505c666e7b85929fa5afbac4cfd9d7cbc0b5aba0968e81746c61564d41382d22170d030000000000000000000000000000000000000000030d17212f3841484c4e4b46443f38342e29241d2733404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000815222f3b4855626e7b8896a1adb4b4b4b4b4b4b4a79b8e817468574e42372b1e0a0000000000000006131f2c3845515c6676838f9ca9b4b4b4b4b4b4b4b4b4b4b4ab9f9285796d6053463a2d201306000000000000010d19242f3d4a5663707d8999a3aeb4b4b4b4b4b4a99c908376685d5245392c20130700000000000000000000000000000000000000000000000006111c2a36424d576774808d9aaab4bfcbd2c5b9aca096877b6e6154473b2e211408000000000000000000000000000000000000040f19232c3845515c676f7c87929fa7b1bcc6cbbfb5aba09691868c92989ea5adb2bbc1cac2bbb3aca49f928d81786d655b50443e342b1f150b01000105090b0b0e0a070604000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939facb9c6d2dfddd0c3b6aa9d908377665c5144382c1f12060000000000000000000000000006101820262b2e2f31313131313131313131313131313131313131313131313131313131313131313131313131313131312e2d2b261f180f06000000000c1926333f4c5966727f8c99a5b2bfccd8cec1b4a89b8e81756860696e79808790949d9fa7acafb5b9bbc0c2c4c6c9cfc9cacacac9cfcac6c5c3c0beb9b8b4aeaca7a09d96918a827b716c605d554c443b332920170d040000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000000000000030d17232e38424c565f696e7b8490959ea5aeb4bcc1c8cdd4d4ccc7c5bebab8b4b6afacabaaa9aaabacaeb4b3b7b9bdc4c1bab2a9a1989184818e9ba8b5c1cedbd4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000020c16202c3945515d67727f8b96a1acbac3ceddd3c7baaea3998e8174695f53463c312228343f4a54606c7883909da7b1bcc8d4d0c6baaea3988d8174695f53463c31261a0e040000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000030f1c28333f4a546673808c99a6b3bfccd9e0d3c7bbaea399867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f28343f4a545e69717e8a939ea8b2bdc7d1dcd1c7bdb2a89d938a7e70695e53493f33271f150b010000000000000000000000000000000000000009141f2933414a53585b5753504a454039352f292433404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130004101d2935404b5565727f8c98a8a8a8a8a8a8a8a8a8a7978a7e7164574b3e31261a0e0000000000000004101c2834404b5466737f8c99aaa8a8a8a8a8a8a8a8a8a8a8a89b8f8275665c5044382b1f1206000000000000000814202d3a4753606d7a86929fa8a8a8a8a8a8a8a89f92867a6d6054473a2d211407000000000000000000000000000000000000000000000000000e1a25313d4a5763707d8a98a3aebac7d3c9bdb2a8978a7e7164574b3e3024190d0100000000000000000000000000000000000b16212a36424d57606d79849199a3afb9c3cdc5bbaea39991847a80868f939ea1a9afbabfc6c5beb6afa49c938e81776c605a50473d31271d120700000000000002000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c667884919eabb8c4d1dedfd2c5b9ac9f9286796d6053463a2d2013060000000000000000000000000000060e151a1f2122252525252525252525252525252525252525252525252525252525252525252525252525252525252522211e1a150e0600000000000b1825313e4b5864717e8b97a4b1becfdacfc2b6a99c8f837669575f676d737c838a90959c9fa3abacafb5b5b8b9bebcbdbdbebdbdbcbeb9b8b6b4b3adabaaa29f9b95908a847d766e69625a514c433b322921170e05000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000006111c26303a434d575f696e7b838e939fa2aaafb8bcc2c7ccd2d4cfcac6c5c1c0bbb9b8b7b6b6b7b8babfc0c4c5c3bcb8afa8a09792867b808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000008131e2935414c55606d7985919ea8b2bdccd5d6cbbfb4aa9f92867b6e61574d42332a20232e3844505b66707d8a959fabb8c2cdd6cbbfb4aa9f92867b6e61574e42372b20150a0000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000b17222d3f4c5865727f8b98a5b2becbd8e3d7cbbfb5ab94877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d17232e38424d57616c75818e96a0abb5c0cbd7d9cfc3baafa59e92857b6e655b50443c31271d1207000000000000000000000000000000000000020e1a26313b45535c646764605c54514b454039352f33404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130006131f2c3845515d6776828f9b9b9b9b9b9b9b9b9b9b9b95877b6e6154473b2e21140900000000000000000c18232e3d495663707c89989b9b9b9b9b9b9b9b9b9b9b9b9b988b7f7265544a3f34281c1003000000000000000613202c3945515d677683909b9b9b9b9b9b9b9b9b9b998a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000914202d3a4753606d7a86929facb9c5d2cec0b4a79a8d817467564c4135291d11050000000000000000000000000000000004101b27323a46535f69737f8c95a0abb5c0cbc5bbb0a69f92877c6f737b828a91979ea5aeb4bcc4c7c0bbaea59d938c80736c61594f43392f24180c03000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54697683909ca9b6c3cfdce0d3c7baaea399887c6f6255483c2d22170b000000000000000000000000000000030a0f12151518181818181818181818181818181818181818181818181818181818181818181818181818181818181514120e09030000000000000916232f3c4956626f7c8995a9b3bec9d5d0c4b7aa9d918477665c555d606a6f787d83898f92999c9fa3aba8abadb3afb0b1b1b0b0afb3adaba9a7a9a19e9b98928e89837e78706c625f575045413a312920170f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000a141e28313b454d575e696e79818b92989ea5abb1b9bbc0c6c8ccd2d1d2d2ccc8c6c5c3c3c3c4c5c6c9c6c3bcb8b1aca59d9691857c74808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000010d1925303945515d67727f8c97a1adbac4ceded3c7baaea3988d8074695e53453b3121181c28333f4a54616c7783909da6b0bcc7d3d0c6bbaea3998e81746a5f53473c32261b0f0400000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000000061824313e4b5764717e8a97a4b1bdcad7e7dcd1bbaea195887b6e6255483b2f2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d7a849199a3afbbc2ced7d5ccc0b9ada1978f82776c60584e43392f23180e05000000000000000000000000000000000005121e2a36424d57646f74716d66605c54514b45413a36404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000714202d3a4753606d79858e8e8e8e8e8e8e8e8e8e8e8e8e8377695e52463a2d20140700000000000000000714202d3a4753606d79868e8e8e8e8e8e8e8e8e8e8e8e8e8e8e887c6f6255483c2e23170b000000000000000004101d2935404b556673808c8e8e8e8e8e8e8e8e8e8e8e8e8174685b4e4135281b0e0000000000000000000000000000000000000000000000000006131f2c3945515d6776828f9ca9b6c2cfd0c3b7aa9d908477685d5246392d201307000000000000000000000000000000000713202c38444f59616e7b86929fa8b1bdc7c9beb3a99f948c7f726a696e757d848e939fa2aab2bac3ccc0b7afa59c928b7e716b60554b4035292015090000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e414d5a6774808d9aa7b3c0d0dbe3d7cbbfb4ab978b7e716453493f33271b0f0300000000000000000000000000000000030608090b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0808060200000000000000000714212d3a4754606d7a8797a1adb9c6d2d2c5b9ac9f9286796d605351585f656c70767c82868b8f9299999c9ea1a9a2a3a4a4a4a3a3a9a29e9c9a9897918e8a86817d77716d66615a534d453f352f281f170e060000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000020c161f29333b454d575e676d757f868f939d9fa7acafb5b9bbc0c2c4c5c7cbd1c9c9d0cac6c5c3c1beb9b8b1aca7a09d938e847c6f74808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000005111d2a36414c56606d7a85929ea9b3beccd6d6cabfb4aa9f92867b6e61574d42332a1f0f17222d3842505a63707d89949fabb7c2ccd7cbbfb5ab9f92877b6e62584e43372b20160a00000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6e2d5c9bcafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e29333e45515d676f7c87929fa7b1bcc5d0dbd6cabeb3a99f948c7f726a5f554b40342920160c02000000000000000000000000000000000714212d3a46535f6974817e78716d66605d55524c4641404d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000815222f3b4855626e7b81818181818181818181818181817f7265564d42362a1e1105000000000000000006131f2c3845515c67738081818181818181818181818181818181776c605346392d2013060000000000000000010d18242f3c4955626f7c818181818181818181818181818074675a4d4134271a0e0000000000000000000000000000000000000000000000000004101d2935404b5565727f8c98a9b2bec9d2c6b9ac9f93867a6d6154473a2e211407000000000000000000000000000000040f19222f3b4854606b75828f98a3aebac3cfc6b9ada1978f82776c605f616b707a818a9298a1a8b1b9c3c9c1b7aea49f92877d6f675d51453c31261a0f040000000000000000000000000000000000000000000000000000000000000000000000000000000000061825313e4b5864717e8b97aab4bfcad6e2dcd1c1b4a79b8e8174655b5044372b1f1205000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d687885919eabb8c4d1d3c7baaea398887b6e6155484e535b60646b6f757a7e82868a8c8f91979595969797979696949792908d8b8885817e7a75706b64605c545047423c3329241e160d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000040d182129333b454d555d606d727b828a90959c9fa4abacafb6b5b7b9bbc0bcbcbcbbbfbab8b6b4b3adaba7a09d95918a817a6e6a74808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000030d18212d3946525e6873808c97a2adbbc4cfded3c6baaea2988d8073695e52453b3121180e111c262f3e4855616b7683909ca6b0bbc7d3d1c6bbafa3998e81756a5f53473d32271b0f04000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5e2d6c9bdb0a3968a7d7063574a3d3024170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c17212935414c55606b73808c959faab3becad6dacfc5bbb0a69f92867c6f675c51453d32281e1308000000000000000000000000000000000815222e3b4855616e7b888a847e79726d67605d56524c464d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000814212e3a47535f696e7575757575757575757575757575726d6256443b3025190e02000000000000000004101c2934404b55636e73757575757575757575757575757575746c655b5044372b1f12050000000000000000000715222e3b47545f6a6f75757575757575757575757575746e64584c3f33261a0d00000000000000000000000000000000000000000000000000000c18242f3c4855626f7c8897a1adb9c6d2c8bbafa49a8a7d7063574a3d302417070000000000000000000000000000000a16212d39444f5963707d89949eaab4bfccc6bcb0a69e92857a6e655b535961686d757e869196a0a7b1b9c3c9bfbaaea3999184796d60584e43372b20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7b8898a2aebac6d3e0ded1c4b8ab9e9185786c605346392d20130a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060809080603000000000000000000000000000000000000000004111d2935414c566976838f9ca9b6c2cfd7cbbfb4aa978a7d7064574a41495053596063686d71767a7d8082858788898a8a8b8a8a8988868583817e7b7875716d6763605953504a423e37312a2119130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000060f182129333b434b515b62696e757d83898f93999d9fa4aca9aaacafb5afafafafb4aeacaaa8a9a19e9a95918b837d746d676774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000009141f2a36424d57616d7a85929fa9b3becdd6d6cabeb3aa9f92867a6d61564d4233291f0f060a141d2c38444f5963707d89949fabb7c1d0d7cbc0b5ab9f93877c6f62584e43372b21160b000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdcad7e3d6c9bcb0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f19242f3a434f59606d78839098a2aebac1ccd6d7cdc2baaea3989083796d60594f443a3025190f06000000000000000000000000000006131f2b37434e5866737f8c96918b847f79736d68615e56534d5a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130006121e2b37424d575f62686868686868686868686868686865625b514532291f1409000000000000000000000c18232f3943525c636668686868686868686868686868686868605b53493f33271b0f0300000000000000000006131f2b37434e585f626868686868686868686868686867645c52473c3023170b00000000000000000000000000000000000000000000000000000715212e3a47535f6a7885919eabb8c4d1ccc0b6ac9a8d8073675a4d402e23180c0000000000000000000000000000030f1b27323c4955616c7683909da6b0bcc6cbbfb4aa9f948a7e71685e53494f565d616c717c849095a0a7b1bac4cbbfb4aba0968c80736a5f53473c32271b0f02000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929facb8c5d2dfdfd2c6b9ada197887c6f6255493c32261b0f0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13151615130f0a04000000000000000000000000000000000000010d19242f414e5a6774818d9aa7b4c0d0dbd1bfb2a5998c7f726653493f3f44464f54565e6165686d707375787a7b7c7d7e7e7d7d7c7b7a787674716f6c6564605d55544f46443f38302b261f180f08010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000060f1720293139404551575e616b70767d82878c90939a9a9c9e9fa3aba2a3a2a2aaa29f9d9b9897928e89847e78706b605d6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000020e1a26313a46525e6973808d98a2aebbc5cfdfd3c6baaea2988d8073685e52443b3021170d00020b1c27333d4854606b76828f9ca6b0bec7d2d1c7bbafa49a8f82756a6054473d32271b10050000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313d44505c666e7b85929fa5afbac4d0d9d7cbbfb4aaa0958d80746b61564c41362a21180c03000000000000000000000000000815222e3b4754606a7784919d9e96918c857f7a736e68615e575a6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300020e1a26313c454d53555b5b5b5b5b5b5b5b5b5b5b5b5b5b585651483f3420170d020000000000000000000007121d2731404a52575a5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b53504941382d22170b00000000000000000000030f1b26323c464e54555b5b5b5b5b5b5b5b5b5b5b5b5b5a58524a40362b1f1307000000000000000000000000000000000000000000000000000006121f2b37434e586875828f9ba8b5c2ced2c3b6a99c90837669554b4034281c10040000000000000000000000000007131f2c38434f5964707d8a959fabb8c1cec7baaea3988f82766c61564d41444c525a616a6f7b839095a0a8b2bdc6c6bdb2a89f92867c6e62584e43372b1e13080000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667683909ca9b6c3cfdae1d5c9beb3a9998c7f7266584e43372b1d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161b1f2223221f1b160f07000000000000000000000000000000000000081925323f4c5865727f8b98aab4bfcad6cec2b5a89b8f8275655b504437373d44484c5254565e61646669686d6e6f7071717170706e6d6769676562605b5353514b48443d38342e261e1a150e0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000050e171f282f353f454d535961636b70767b7f83868a8d8f9192999595969695959892908e8c8885817c77716d6661595a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000005121e2a36424d57616e7b86929faab4becdd7d6cabeb3a99f92857a6d61564c4132291f0f0500000b16212c38444f59626f7c89939eacb6c0ccd8ccc0b6ac9e93897c6f62594f44382c21160b0000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000005111d2a36414c566773808d9aa6b3c0cdd9e2d6cabfb4aa95887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f28343f4a545f69717e8b939ea8b2bdc7d2dcd1c6bcb1a79f93887d70685e52463f332a1e150b00000000000000000000000003101c28343f4a54626f7c8895a0a8a19e97928c85807a746e69625f6673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000915202a333c4247484e4e4e4e4e4e4e4e4e4e4e4e4e4e4b4a453f362d230e050000000000000000000000010b151f2e3840474b4d4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e46443f382f261b110600000000000000000000000a15202a343c4347494e4e4e4e4e4e4e4e4e4e4e4e4e4d4c4740382f24190e030000000000000000000000000000000000000000000000000000030f1b2631404d596673808c99a6b3bfd2d1c4b7ab9e918478675c5145382c1f1306000000000000000000000000000915222f3b4854606b7683909da7b1bccac9bdb2a89f92867b6e625a50443b3a414650585f696e7a839096a0abb4bfcbc4baaea3998f82766a6054473a3024190d0100000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546673808c99a9b3becad6e2dacfc3b7aa9d9084776a5f5447392f24180d010000000000000000000000000000000000000000000000000000000000000000000000000000000007101920272b2e2f2e2b272019100a00000000000000000000000000000000000916232f3c4956626f7c8998a2aebac6d3d1c5b8ab9e9285796c605346392d32383a4146474c52545759565e61626263646464636361605d555a58555350494745403a38332b28231c140c09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000050d161d2429333b42464f55596063696e72767a7d8082848687888989898888878583817f7c78746f6a64605c544f5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000040e19222d3a46535f6974818d98a3aebcc5d0dfd3c6baada2978c8073685e52443a3020170d00000005101b27323d4754606a75828f9aa4afbbc7d1d2c7beb0a69c8f82766b6054483d33271c0b0200000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e01000000000000000000000000000000000000000000020c13202d3946525e6876828f9ca9b5c2cfdcdfd3c6baaea298877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d17232e38424d57616c75818e96a1abb5c0ccd7d8cfc3bbafa49a91857a6d615a50453c30271c1207000000000000000000000006121f2b3844505c6673808d9aa8b1ada9a19e98928d86807b746e696673808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d20130000030e18212a31373a3b42424242424242424242424242423f3d3a342d241b1100000000000000000000000000030d1c262e353b3f40424242424242424242424242424242413937332d261d140a000000000000000000000000040e19222a32373b3c42424242424242424242424242413f3c362f261d1208000000000000000000000000000000000000000000000000000000000a1824313e4b5764717e8a97acb6c0ccd2c6b9ac9f9386796d6053463a2d20130700000000000000000000000005111d2a36414c56636f7c89959fabb9c2cdc5b9aca0968c8073695f53483e3230353e464e565e686e7b849199a3aebac3cbbfb4ab9f94887c6f62564c4135291d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3c4956626f7c8997a1adb9c6d2dfded1c5b8aca095887c6f62554b4035291d1207000000000000000000000000000000000000000000000000000000000000000000000000000000071019222b32383b3c3b38322b221c1306000000000000000000000000000000000713202d3a4653606d7985929facb8c5d2d2c6b9ada197887b6e6255483b30272c3036393a4146474a4d4c525455565757585757565553514b4e4b4846443f3a39352f2c271f1c17171614100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000040c1218212931363e44484f54575e6165686d70737677797b7b7c7c7c7c7b7a797775726f6c6562605853504a4d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000a15202b37434e58616e7b86929faab4bfced7d5c9beb3a99f92857a6d60564c4132291e0e05000000000b16212b37434e58626f7c87939fabb5c0cbd7d0c1b7ab9f94897d7063594f44382c1d140a00000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000020b141e28323a4754616d7a86929facb9c5d2dfdfd2c5b8ac9f928579695e52463a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d7a849199a4afbbc2ced7d8ccc0b6aca1978f82756d62574d42392e23180d04000000000000000000000713202d3a4653606d7985919eabb8b9b3adaaa29f98928d86817b756f73808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d2013000000060f1820262b2e2f353535353535353535353535353532312e29231b120900000000000000000000000000000a141c242a2f3233353535353535353535353535353535352d2b27221b140b020000000000000000000000000007101920262b2e2f353535353535353535353535353433302b241d140b01000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c889aa4afbbc8d4c8bbafa49a887b6e6255483b2f2215080000000000000000000000000713202d3946525e6875828e9ba7b1bccbc8bdb2a89e9184796d60574d42362c2429343c444d565e696f7c86929fa7b1bcc8c6bdb0a69a8e8174685d5245392c201306000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7985929eabb8c5d0dbe0d4c8bcb1a79a8d8074675d5145392f23180c0200000000000000000000000000000000000000000000000000000000000000000000000000020c19232b343d43474947433d342e2517110a02000000000000000000000000000006121f2c3844515c6676838f9ca9b6c2d1d6cabeb3a9988b7e7265564c4135291e252a2d3035393a3d4041464748494a4b4b4a4a4948474540413e3c3937332d2c29241d1c1f22232323201c160e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000001070f171f252a33383d44484d5254565d60636769666d6e6f6f706f6f6e6e686a686562605b53544e46443f4d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000000000000030f1b27323a47535f6a74818e99a3aebcc6d0ded2c6b9ada1978c7f72685d52443a3020170d0000000000040f1b27323d47535f6a75818e99a3afbbc6d1d3c7bbb0a69c9083766b6055483e2f261c1106000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000001070b141d26303a44505a65727e8b99a3afbbc7d4e0ddd0c3b7aa9d9083776a564d42362a1e1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e29333e45525d686f7d87939fa7b1bcc5d0dbd2c7beb3a99e938b7e71695f544a4034281f160c01000000000000000004101d2935404b5563707d8997a1adb9c5beb9b4aeaaa39f99928e87827c75808d99a6b3c0ccd9dfd2c6b9ac9f9386796c605346392d201300000000060e151a1e212228282828282828282828282828282524221d181109000000000000000000000000000000020a12191f23262728282828282828282828282828282828201f1b17110a02000000000000000000000000000000070e151b1f2222282828282828282828282828282726231f19120b0200000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6d2ccc0b6ac96897d7063564a3d3023170a0000000000000000000000000714212e3a4754616d7a86929facb9c2cdc5b9aca0968a7e71675c51453c312419222a323b444d565f6a727f8c95a0acb8c4cfc2b8ac9f92867a6d6054473a2d22170b0000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b6675818e9baab4bfcad6e2d9cec3b8ab9e9285796d60554b4034291e1308000000000000000000000000000000000000000000000000000000000000000000000000000a141e2b353d464e5456544e463f3728221c140b030000000000000000000000000004101c2834404a546673808c99abb4bfcbd7cfc2b5a99c8f8276685d5245392c20191e2025292d2e313035393a3b3c3d3e3e3e3d3d3b3a38352f322f2d2b2722201d1821272c2e2f302f2c27211a150d0801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000050d141a21282c33383b4246474c5254575a545c6061626263636262615e565b595553504948433d38414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000000000000000006131f2b37434e58626e7c87939fabb5bfced8d5c9beb3a99e9285796d60564c4132281e0e050000000000000a15202b37434e58626e7b87929fabb4bfcbd7ccc2b7ab9f94897d70635a5042382d22170b000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0e0202020202020202020202020200000305060a0f12181d262f38414c56616c7683909cabb5c0cbd7e3dbcec1b4a89b8e8175685b4e423025190e0200000000000000000000000000000000000000000000040404040404040404040404040404040404040404040404040404040404040404020c17212935414c56606b73808c959faab4bfcad6d9d0c4bbafa59f92867b6e665c51443d31281e1308000000000000000006131f2c3945515d6774818e9ba9b3bec9cac5bebab4aeaba39f99938e8882828f9ca8b5c2cfdbdfd2c6b9ac9f9386796c605346392d2013000000000003090e1214151b1b1b1b1b1b1b1b1b1b1b1b1b1b181715110c06000000000000000000000000000000000000070e1317191a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b13120f0b06000000000000000000000000000000000000040a0f1315161b1b1b1b1b1b1b1b1b1b1b1b1b1a1a17130e08010000000000000000000000000000000000000000000000000000000000000613202c3945515d677884919eabb7c4d1d2beb1a5988b7e7265584b3f3225180c000000000000000000000004111d2935414c5565727e8b99a3afbbc7cbbfb4aa9e9184786d60554b40332a1f12192029323b444e58606d7883909da8b2bdc9c7baaea2988b7f7265544a3f33281c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a5464717e8a98a2aebac6d3e0dfd2c6b9ada2978c7f72675c51453a3025190d04000000000000000000000000000000000000000000000000000000000000000000000006111c26303d474f5860626058514940332d261d150c03000000000000000000000000000c18232e3d495663707d8999a3aebac7d3d2c5b9ac9f92867a6d6054473c31261a1113191d20212425292d2e2f2f3031313130302e2d2c29242522201f1b171319222b32383b3c3d3c38332b261f19130b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000003090e161c21272c30363a3b4145474a4d4a50535455565656555554524c4e4c4846443f38383234414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000000000000000000020b1a232e3b4754606a75828f99a4afbdc6d1ded2c6b9ada1978c7f72675d51433a2f20160c00000000000000040f1b26313c47535f6974818e99a3aebac6d0d3c7bcb0a69d9083776c61544a3f33281c11060000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b0f0f0f0f0f0f0f0f0f0f0f0f0f0f060b0f1213151b1d24292f384149525d68717e8a949fabbdc7d1dce1d5c9bdb2a8988b7e7265584b3f322518090000000000000000000000000000000000000004080a0a11111111111111111111111111111111111111111111111111111111111111111111110f19242f3a444f59606d78839098a2aebac1ccd6d6cdc1baaea2989083786d60594f433a2f24190f05000000000000000714202d3a4753606d7985929facb8c4cacfd0cac6bfbab5aeaba49f9b948f8f949eaab7c3d0dcdfd2c6b9ac9f9386796c605346392d201300000000000000020608080f0f0f0f0f0f0f0f0f0f0f0f0f0f0c0b090501000000000000000000000000000000000000000002070a0c0d0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0e06050300000000000000000000000000000000000000000000030608090f0f0f0f0f0f0f0f0f0f0f0f0f0e0d0b0703000000000000000000000000000000000000000000000000000000000000000004101d2935404b556976828f9ca9b5c2cfcdc0b3a69a8d8073675a4d4034271a0600000000000000000000000613202c3945515d6776828f9cabb5c0cbc7baaea3988b7e72665c5043392f21180e0e172029323c44505c66717e8a96a1acb9c5cabfb4aa9c8f8276665b5044382b1f1206000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3a4754606d7a86929facb8c3ced9e2d6cabeb3a99e9185796d60564c41352920160b02000000000000000000000000000000000000000000000000000000000000000000030d17232e38424f59606a6f6a635b52443f382f271e150d040000000000000000000000000714202d3a4753606d7a86929facb9c5d1d3c7bbaea3998b7e7164584e43372b1e13080d11131417191d2021222324242524242322201f1d18181513120f0b16212b343d4348494a48443d373129241e17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000050b10161c1f252a2d3035393a3d403f444648484949494948474641423f3c3937332d2c2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000000000000000a141d2c38444f59626f7c88939eabb5c0cfd8d5c9bdb2a89e9185796d60554b4031281e0e0400000000000000000a15202b37424d57616e7b86929faab4bfcad6cdc2b8ab9f958a7d70665b5044382e23170b0000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134271b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1c171b1f2022272b2f353c424a535b606d7a85919ea6b0bccfd9e3dfd2c5b9ada196887b6e6255483b2f2215080000000000000000000000000000000000050b101416171d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1e28323d44505c666e7b86929fa5afbac4d0d9d6cabfb4aa9f958d80736b60564c41352921170b020000000000030f1c28333f4a5464717e8a98a2aeb5b9bec5c8ced0cbc6bfbbb5afaca69e9c9c9ea6b0bbc7d3dfdfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f414d5a6774808d9aa7b3c0cdcec1b5a89b8e8275685b4f422e23170b00000000000000000000000714212d3a4754606d7a86929facb9c5d1c5b8ac9f92867a6d60544a3f31271d0f06050e172028343f4a54606d7984919eabb7c4d0c5b8ab9f9285796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6774818e9ba7b1bcc8d4e1dbcfc5b9ada1978b7f72685e52463d32281d140a0000000000000000000000000000000000000000000000000000000000000000010b151f28343f4a54606b6f7c726d635c504a423930271f160d0500000000000000000000000613202c3945515d6775828f9cabb5bfcbd7cbbfb5ab9c8f82766a5f53473a3025190d03050707080d1113141516171818171716151413100c07090605030f1b27323d464e545656554f47423c352f28231c140c090300000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000050b10141a1e2024292c2d302e34383a3b3c3c3d3c3c3b3b393630322f2d2b27221b2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000000000000000006111b262f384854606b76828f9ca5afbdc7d2ded2c5b9ada1968b7f72675d51433a2f1f160c000000000000000000040e1a26313c46535e6974808d98a2aebac5d0d4c8bcb1a79d9083786c60544a3f34281d120700000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4134282828282828282828282828282828282822272b2d2f32373940454e545b656c75818e97a1adb8c2cde1eaded1c4b7ab9e9184786a5f53473a2e211408000000000000000000000000000000000810171c2023242a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a28343f4a545f69717e8b939ea8b2bdc7d2dbd0c6bcb1a79f93877d6f685d52453e33291d140a000000000006121f2b3844505b6675828f9b9fa3abadb3b8bcc3c9cfd1cbc7c0bbb9b0aaa8a8aab0b8c1ccd7e3dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0b0c0d0d0e0e0d0d0c0b0b0a08060603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071825323f4b5865727e8b98a5b1becbd0c3b6aa9d9083776a544a3f34281c1003000000000000000000000a1623303d495663707c8999a3afbbc7cec1b5a89b8e8275685d5242382e1f150b0000050e17232e3844505c6673808d99abb5c0cbc6baaea298887c6f6255493c2f2216090000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c55636f7c8995a0acb8c5cfdbe1d5c9beb3a99e92857a6d61594f443a2f261b11060000000000000000000000000000000000000000000000000000000000000007121d27313944505c666f7d867f736e605b544a423931281f170e050000000000000000000004101d2935404b5564717e8b99a3aebbc7d3d1c6b7ab9f94887c6f62564c41362a1f1509000000000105070708090a0b0b0b0a0a08070604000000000007131f2c38434e586062636059534d45413a342e261e1a140d07010000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000002090e1114191d20212423282c2d2e2f2f30302f2f2e2d2a252622201f1b171a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000000000b17222d38414f59636f7c89949faab7c1d0d9d5c9bdb2a89e9184796d60554b4031281d0d040000000000000000000009151f2a36424d57616e7b86929faab4becad6cdc3b8aca0958a7e71665c5044392e23180c01000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e413535353535353535353535353535353535352d3337393b3e43474b51585f666c77808d939ea9b3becad4dee1d3c7bcb0a6998d807366574e42372b1e120600000000000000000000000000000008111a22282d3031373737373737373737373737373737373737373737373737373737373737373737373737373737372e38424d57626c75818e96a1abb5c0ccd7d8cec3bbafa49991847a6d605a50453b2f261c1106000000000613202d394653606c7882898e92999ea1a9acb1b9bec4cbd0d2ccc7c1bbb7b5b5b7bbc1cad3dee9dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050708090e121415171819191a1b1b1a19191817171513120f0b06070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcd2d2c5b8ab9f928578665c5044382b1f1206000000000000000000000c1926333f4c5966727f8c99abb5c0cbcabfb4aa988b7e7165564c4130261c0d0300000006111c28343f4a5463707d8999a3afbbc7cabeb3aa988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a4854606b7784909da9b3becad6e1dacfc4b9ada1978e81746b60564c41382d221712060000000000000000000000000000000000000000000000000000000000071318242f39434d57606d7883908c80746c665c544b433a312920170f05000000000000000000010d18242f3a4754606d7a86929facb9c5d0d3c7bbb0a69a8d8174685e52463c31261a0f060000000000000000000000000000000000000000000000040e1a232e3b4854606a6f706b625f57524c443f38302a261f18130c0400000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000205080d11131417171c1f202122232323222221201e19191513120f0b1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000000030f1b27333f4953616b7683909ca6b0bbc9d3ddd2c5b9aca0968b7e72675c5143392f1f160c0000000000000000000000030e1a25313b46525e6873808d98a2aebac5cfd4c8bcb1a79e9184786d60544b4034281d1207000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e42424242424242424242424242424242424242433f4446484b4e54555d606a6f78818d929da5afbbc4cfdce3d9cfc7b7ab9f94887b6e6255483c31261a0e02000000000000000000000000000005101a232c33393c3d4444444444444444444444444444444444444444444444444444444444444444444444444444444444444445505a606d7a849199a4afbbc3ced8d7ccc0b5aba1968e81756c61574d42382d22170b0200000006121f2b3844505b666c767c81868d92979da0a7adb2babfc6ced7d4ccc7c3c2c2c3c7ccd3dce5efdfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306080d111414181a1e21212425262627282727262525242322201f1c17171413110d0804010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895acb6c0ccd3c6baada29786796d6053463a2d201307000000000000000000020f1c2835424f5b6875828e9ba8b5c1d1c6baaea298887b6e6255483b2f22140a00000000000c17232e3a4754606d7a86929facb9c5d0c0b3a79a8d8074675a4d4134271a0e010000000000000000000000000000000000000000000000000000000000000000000000000000000008131e2c38434f5965727f8b97a2adb9c5cfdae1d6cabeb3a99f93887c6f685d53493f33272417110a0200000000000000000000000000000000000000000000000000030b1218252935404b555f69727f8b95928d80786d665d554c433a322921170f050000000000000000000713202c3945525d6876828f9ca9b3becad6ccc2b8ac9f92867a6d61574d42372b21180d04000000000000000000000000000000000000000000020c16202c38434e58626f7c7d756e69605d56504a423d363129241d160d04000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000001040707060c101213151516161616151414110d08090605030e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000000000005121f2b3744505b65707d89949fabb8c2ccdbd4c8bdb2a89e9184796d60554b4031271d0d0400000000000000000000000009141f2a36414d56616d7a85929fa9b3becad6cec3b8aca0968b7e71665c5145392f24180c010000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675a4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4f504950535557586062676d737c828e939da4aeb7c1cdd6e1dcd1c7bdb0a69c9083766a5f53473a2a2015090000000000000000000000000000000b17222c353e44494a505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050525d68707d87939fa7b1bcc6d0dbd2c7bdb2a89e938a7e71695e544a3f33281d140a000000030f1c28333f4a545b606a6f757b80858b91959ea1a9aeb4bcc2cbd1d8d3d0cfcfd0d3d7dee5eeecdfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001040a0f1315191e202125252a2d2e303232333434343333323131302f2d2b28222321201d1913100d0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a879aa4afbbc8d4cabeb3a993867a6d6053473a2d20140700000000000000000003101d293643505c6976838f9ca9b6c2cfc5b8ac9f928579695f53473a2e21140200000000000613202c3945515d677884919eabb7c4cec1b4a89b8e8175685b4e4235281b0f0200000000000000000000000000000000000000000000000000000000000000000000000000000000010f1b27323d4754606d7a85929ea9b3bec9d5e0dacfc5bbafa49a91847a6d655b50443f3627221b140b050000000000000000000000000000000000000000000000050c151c2328373f45515d676e7b86929f9c928d81786d675d554c443b332921170d03000000000000000004111d2935414c5665717e8b97a2adbac7d2d3c6baaea2988d8074695f53473f33291f160c03000000000000000000000000000000000000000008131e28323a4854606a768289827b736d68605c544f46423b352f281f160c010000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000000000000000000306070809090a0909080807050100000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000000000000030f1c28333f4a54606c7883909da6b0bbcad3ddd1c5b8aca0968b7e71665c5143392e1f150b00000000000000000000000000030e1925303b46525e6873808c97a2adb9c4cfd4c8bdb2a89e9184796d60554b4035291d13070000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d8174675b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5c535b606264676a6f7479808790949da5aeb7c0c9d3dfddd7cbc0b5ab9f94897d7063584e43372b180e03000000000000000000000000000004101c28333e475055575d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d56606b73808d959faab4bfcad6d9d0c4baafa59f92857b6e665b50443d2f261c11060000000b17222d38424a50586062696e73797e838b91979fa3aab1bbbfc6cfd6dcdbdbdcdfe3e9eff7ecdfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d11151b1f22252a2d2e3131363a3b3d3e3f4040414140403f3e3e3d3b3938332d302d2c2924201d1812100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939facb9c6d2d0baada094877a6d6154473a2e21140700000000000000000004111e2a3744515d6a7784909daab7c3d0c4b7ab9e9184786b574d42372b1e1206000000000004111d2935414b556a7784909daab7c3cfc2b5a99c8f8276695c4f4336291c100300000000000000000000000000000000000000000000000000000000000000000000000000000000000a16202c3945515d67727f8c97a1adb9c4cedae1d8ccc0b6aca0968f82776c605a50483e332d261d160e090300000000000000000000000000000000000000040a0f171e272e343f49515b606d79839098a2a49d938e82796d675e564d453b33291f14090000000000000000010d1924303a4753606d7a85929fabb5c0ccd6cabfb4aa9f92867b6e615a50453b31281e150c0400000000000000000000000000000000000108131924303a444f59626f7c89948f86807a726d666059534d45413a31281d13070000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000000010b151f2b3844505b66717d8a959fabb8c2cddcd4c8bcb1a79d9184786d60544a4030271d0d03000000000000000000000000000008141f2935414c56606d7a85929ea9b3bec9d5cec3b9aca1968b7f72675d51453a2f24180d0200000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d817468686868686868686868686868686868686868686868696a656c6e7174777c81858d92999fa6afb7c0c9d2dbded5cbc3bbafa3998f82766b6054463c31261a060000000000000000000000000000000814202d3944505a61646a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6d78839098a2aebac6d3e0d6ccc1baada2979082786c60584e42382d22170b00000006111c262f383f444e54575e61676d71787e848c92989fa7aeb5bdc4ccd4dde5e9ebeff4faf9ecdfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e13181d20272b2e3036393b3e414246484a4b4c4c4d4e4e4d4c4c4b4a4a4846443f3f3d3a39352f2c29241d1c160f0a0300000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667885929eabb8c5d1c7bbaea194887b6e6155483b2e22150800000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d504431261a0e020000000000010d18242f43505c6976838f9ca9b6c2cfc3b6a99d9083766a5d5043372a1d1004000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c55606d7985929ea8b2bdc9d5dfddd2c7beb2a89e938c7f726c625a50443f382f28201a150e0904000000000000000000000000000001050a0f151b212930394044515b636d75818e95a0aaaea59e948f82796d685e574d453b30251a0e0200000000000000000813202c3945515d6773808d99a4afbbc7d4d0c6bbaea3998f82756c62574d433a30271e160d07000000000000000000000000000000040c1319252935414c56616b75828f9c99928d857e78706b615f57514b433a2f24180d0100000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000000000007121d2834404a54606c7883919da7b1bccad4ddd1c5b8aca0958a7e71665c5042392e1e150b000000000000000000000000000000020d1925303a45525d68727f8c97a1adb9c4cfd5c9bdb2a89e9184796d60554b4135291e130800000000000000000f1b2835424e5b6875818e9ba8b4c1cedbdacdc0b4a79a8d817575757575757575757575757575757575757575757575767777797b7e8083888d92979fa3abb0b8c0c9d2dbded5ccc3b9b1a79f92877c6f62594f44332a2015090000000000000000000000000000000a1623303c4955616c707777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777b85929facb8c5d2dfded6cabeb3a99f948c7f726a60544a3f33281c0f030000000a141d262d333d43474d52555d60656c7179808690959fa3abb2bac2cbd3dbe5edf6fffff9ecdfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d141a1d24292c32373b3c4146474b4e4d5354575859595a5b5a5a59585857565553504a4c4a4745413a39352f2c27211a150d08020000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546b7784919eaab7c4d1c8bbaea295887b6f6255483c2f22150900000000000000000004111e2b3744515e6a7784919daab7c4d0c4b7aa9e9184776b564c41362a1e1105000000000000071d293643505c6976838f9ca9b6c2cfc4b7aa9d9184776a5e5144372b1e11040000000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a45515d67727f8c96a1acb9c1cdd6e1d9d0c4bab0a69f93887e716c615a5049413a322b26201a15100c070604010001000100020507080d11151a20272b333b424a515b636d727f8c939ea7b1b7afa69e9490837a6e695e574d42362a1e1205000000000000000004111d2935404b55616e7b87939facb9c1cfd7cbbfb5ab9e948b7e71695f564c423930281f18120b060000000000000000000003060b0d161e2429373f45525d68707d8a949ea39f97928b837d756e69605d554b4135291d110400000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000000000c18232f3844515c66717e8b95a0acb9c3cddcd4c8bcb1a79d9083786c60544a3f30271c0c030000000000000000000000000000000008131e2935414c56606d7985919ea8b2bdc9d5cec4b9ada1978c7f72675d51453a3024190d02000000000000000f1b2835424e5b6875818e9ba8b4c1cedbddd1c4b7aa9e9184818181818181818181818181818181818181818181818283838485888a8d90959a9fa2a9aeb5bdc2cad2dbded6ccc3bab1a79f958c80736a5f53473d3321180e030000000000000000000000000000000a1724313d4a5764707e8383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838385929fabb8c5d2dee6dbd0c5bcb0a69f92877c6f665b5044382b1f1206000000020b141c222832373b42464b51535b60676d737b838c9299a1a8b1b9c1c9d3dbe5edf7fff9ecdfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b13191f252a2f35393d4347494c5254585b575e616365656667676766666564646362605b54595654514c4745403938332b262019130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e44515d6a7784909daab7c3d0c8bcafa295897c6f6256493c2f23160900000000000000000003101d293643505c6976838f9ca9b6c2cfc5b8ac9f928579685e5246392d20150a000000000006121e2b37424e576a7784909daab7c3cfc3b6a99c908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e2935404b55606d7984919ea5afbbc4cfdae2d6ccc1bbafa49a92877e716c605b534c443e37312b261f1d181413100d070d0d0e080e111414191d20262b32373e454d545c606d727f8c919ca5afb9c1b8b0a69f9590837b6e695e52463a2d2014070000000000000000010d18242f3a46535f6975828f9ba5afbdc6d1d1c6bdb0a69f92867b6e685d544b433a3128231c17110d08070706060708090a0f12161c1f282f353f49515b606d7a84919ea6aea9a19e959089827b736d675d5145392c20130600000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000000004101c2934404b55606d7984919ea7b1bccbd4dcd1c4b8aca0958a7d71665b5042382e1e150b0000000000000000000000000000000000020d19242f3a45515d67727f8b96a1adb9c4ced5c9beb2a99e92857a6d60564c4135291e1308000000000000000f1b2835424e5b6875818e9ba8b4c1cedbded2c5b9aca096918e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8f90919298979a9da0a7abadb3bbbfc6cfd4dcdad5ccc4bab2a8a0959083786d60584e43352b210f06000000000000000000000000000000000b1825323e4b5865717e8b9090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909297a2adbac6d3dfece1d7cec2bbafa3999184786c605346392d20130600000000020a111720272b30363940454950555d60696e787f8791969fa7afb7c1c9d3dbe5eef7ffecdfd2c6b9ac9f9386796c605346392d20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171e242931363a4045474e5456565e6164676a696e707172737374747373727171706e6c66686563605d5553514b48443d373129241e160e07000000000000000000000000000000000000000000000000000000000000000000000000000000061d2a3743505d6a7683909da9b6c3d0c9bcafa396897c706356493d3023160a000000000000000000020f1b2835424e5b6875818e9ba8b4c1cec6baaea298877a6e6154473c31261b1108020000020a14212e3a47535f6a7885929eabb8c5cec1b5a89b8e8275685b4f4235281c0f02000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3945515c67707d89939da9b3bec9d5dcded8ccc0b6aca39992877e736c655e565047433c37312c292420201d181b1a1a1b1b191e2021252a2d31373d434750575e666d737f8c919ca3adb7c1cac1b8b0a7a09591847b6e6154483b2e21150800000000000000000007131d2a36424d57636f7c89939eabb5bfcbd7cfc1baaea29891837a6d665c554b433c342e27221b191514131213141415171a1f21272c313a4145515b636d75818e97a1adbbb3ada7a09d938f8680796d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000000020c16202c3845515c67727e8b96a0acb9c3ceddd4c8bcb1a79d9083786c60544a3f30261c0c0300000000000000000000000000000000000008131e2935404b55606d7984919ea8b2bdc9d5cfc4b9ada1978c7f73685d52453a3025190d020000000000000f1b2835424e5b6875818e9ba8b4c1cedbe1d5c9bdb2a8a09e9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9c9d9e9fa2aaa7aaacb1b8babec5cbd1d8dfd6cfc9c0bab2a8a09690837a6d665c51463c3223190f00000000000000000000000000000000000b1825323e4b5865717e8b989d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9fa2a9b3becad6e2eee9e0d7cbc0b5aba09686796d6053463a2d201307000000000000060b161b1f252a2f35383f444b51575f666d737c8490959ea5afb7c1c9d3dce5f0f9ecdfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c141c23282f353b42464b515358606266686e717476787b7d7e7f7f808181807f7f7e7d7d7b79777472706d6764605d55554f47433c353028201910070000000000000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683909ca9b6c3cfc9bdb0a3968a7d7063574a3d3024170a000000000000000000010e1a2734414d5a6774808d9aa7b3c0cfcabfb4aa988b7e7165584e43372b2319130e09090b141d27303b4855626e7b8897a2adb9c6cdc0b4a79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2934404b55606b74818e97a1adb9c0cad3deddd2c7beb5aba399928b80776d68615a534e47423c38352f2d2c29242727272728252a2d2e3036393c43474e545a61696e78808c919ca3adb5bfc9d3cac2b9b0a69e91847a6d6053473a2d201407000000000000000000010e1a26313b4854606b75828f99a3aebbc5cfd6cabfb4aaa0958f82786d675d554e444039332d2a252221201f2021212224262b2e33383d434c515b626d727f8c939ea9b2bebeb9b1aca59e98928a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000000008131e2935414b55606d7984919ea8b2bdcbd5dcd1c4b8ab9f958a7d70655b5042382d1e140a00000000000000000000000000000000000000010c18242f3945515c67717e8b96a0acb9c3ced5c9beb3a99f92857a6d60564c41362a1f14090000000000000f1b2835424e5b6875818e9ba8b4c1cedbe5d9cec4bab2acaaa8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a9aaaaacaeb4b3b7b8bcc3c6cad0d7dbd6d3cdc4bdb9afa8a19691847a6e685d544b40342a20110700000000000000000000000000000000000b1825323e4b5865717e8b98a4aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabadb3bbc5d0dbe6f2f2e8dcd1c7bdb2a89386796d6053463a2d20130700000000000000040a0f141a1d24292d333a40454d545c606a6f7a838e939ea5afb7c1cad3dee8f2ecdfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f171e262e343a41454d53555d60656a6f73777a7e818385878a8b8c8c8d8e8d8d8c8b8b8a89888583817f7d7a75716d67636059534e46413a322b2219110800000000000000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfcabdb0a4978a7d7164574a3e3124170b000000000000000000000c1926323f4c5965727f8c98a8b2bdc9d0c2b5a89c8f82756a5f53473f352a251e1a1818191d262e39434f5965727f8b98a9b3becaccc0b6ac998c7f7366594c403326190d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c18232f39434f59616d7a85919ea4aeb8c1ccd5dfd9d0c7bdb5aba39f928c817a706c625f58534d4745403c3a39352f34343334353036393b3d4146474e535860626c707b838d929ca3adb5bfc7d1d7cbbfb4ab9f948a7e71675d5145392c2013060000000000000000000009141f2c38434f59626e7b86929fa9b3becad6d0c5bcb1a79f948f81796d675f58514a443f3836302f2d2d2c2d2d2e2f3131373a3d44484f555d606d727f8b919ca5afbbc4c9c3bcb8afa79d9083786c605346392d20130600000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000000010d1924303945515d67727f8c96a1adbac4ceddd3c7bbb0a69d9083766b6153493f2f261c0c02000000000000000000000000000000000000000007121d2834404b55606d7884919ea7b1bcc8d4cfc5baada2978d8073685e52463b30251a0e0300000000000f1b2835424e5b6875818e9ba8b4c1cedbe7e0d5ccc4bdb9b7b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b5b6b6b7b8babfc0c3c5c8ced3d6d9d4d0cac6c1bbb2ada59d9691847b6e685e564c42392e22180e0000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b8babec5cdd7e1ecf7f9eee3d9cfb9aca09386796d6053463a2d20130700000000000000000002090e12181b22272f353c424a505860686e79818e939ea5afb8c1ccd6e0eaf4dfd2c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1117212930383f444c52575e61676d72777c8083878b8e909298969898999a9a9a9999989797969892908e8c8986827e7a75706b625f58524c443c342b231a1108000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfcabeb1a4978b7e7164584b3e3125180b000000000000000000000915222f3c4855626f7c8896a1adb9c5d2c5b9ac9f92877c6f625a50473e36302b262525252a2f38404b55606b7683909da9b6c3cfc8bbafa49a8a7e7164574b3e3124180b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313d46525d68707e8a929ca6b0bac3cdd6dfd9cfc6bdb5aea49c938f857d756e6a625f5753514b49474540424140404142434146474a4c5254585f626a6f767e8590959da4adb5bfc7d1d4cbc2baaea3998f82766c61554b4035291d110400000000000000000000030f1b27323d47535f6974808d97a2adb9c0ccd5cec3b9b0a69e938f82796f6a605c54504946413e3c3a3a38393a3b3c3d404347484f545960676d757f88939fa3adb7c1cdd5ccc3b8ab9f958a7d70655b5044372b1f120500000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000000005111d2935414c56606d7a85929ea9b2bdccd6dcd0c4b7ab9f94897d7063594f41382d1d140a000000000000000000000000000000000000000000010c18232e3944505c66717e8a95a0acb8c3cdd6cabeb3a99f92867a6d61574d42362a1f140900000000000f1b2835424e5b6875818e9ba8b4c1cedbe3e7ded5cec9c5c4c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c2c3c4c5c6cad0d0d1d4d6d3d2cec8c6bfbab8afa9a19e938e847b6e695e564c443a30271d10060000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1bec3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c5c6cad0d7dfe9e3e3e3e3ead3c6b9aca09386796d6053463a2d201307000000000000000000000001070c11171d242930383f444e565e676d78818e939ea6b0bac4ced8e2e3dfd2c6b9ac9f9386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141b2227333b424a50565d60696e747a7e83898c90939a9a9d9fa2aaa4a5a6a6a7a7a6a6a5a4a4aaa29f9d9b9898928f8a86817d766e6a615d564e463d352c231a110700000000000000000000000000000000000000000000000000000000000000000000030f1c2936424f5c6975828f9ca8b5c2cfcabeb1a4978b7e7164584b3e3125180b000000000000000000000815212e3b47535f6a7884919eabb8c4cfc7bbafa3998f82756c62595046413a3731323130363a4149515c67707d89959fabb8c4d2c6b9ac9f93877a6d6154473a2e211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2935414c56616c73808d949ea8b2bbc4cdd6dfd8cfc6bfbbaea59e97928a827b746e6964605d555653514b4e4e4d4d4e4e4f4d525457565e61656a6f757c828a92979fa7aeb6bfc7d1d6ccc2b9afa59f92867b6e625a50433a2f24180d0100000000000000000000000a16212b37424d57616d7a85929ea5afbac3ced5cbc2b8afa59e948f847c726d66605b53524c4b48474644464747484a4c4e53555960636b707a818b939aa4afb5bfc9d3cfc3baafa59d9083766b6153493f33271b0f0300000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000000030d17212d3946525d68737f8c97a1adbbc4cfded3c7bbb0a69c9083766b6054473e2f261b0b020000000000000000000000000000000000000000000007121d28343f4a54606c7883919da7b1bcc8d4d0c5baaea2988d8073695e52463b31261a0e03000000000f1b2835424e5b6875818e9ba8b4c1ced6d6d6d6d6d9d5d2d1cecececececececececececececececececececececececfd0d1d2d3d3d2d1d0d0cbc7c5c3bdb8b4aeaca59e96918a817a6e695f574d443b32281e150b000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d2d3d6dbd6d6d6d6d6d6d6d6d3c6b9aca09386796d6053463a2d2013070000000000000000000000000000060b13181e262e343d444d555c666d78818e949ea8b2bcc6d0dcd6d6d2c6b9ac9f9386796c605346392d20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c141d262d333e454d545c60686d737b80858b9095999d9fa4aca9abaeb4b1b2b2b3b4b4b3b2b2b1b0b4aeacaaa7aaa39f9b98928e89827c746d6860584f473e352c23190c0300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683909ca9b6c3cfcabdb0a3978a7d7064574a3d3124170a0000000000000000000006121f2b37434e586774818e9aa8b2bdc9cbc0b5ab9e948b7e716b615a524c4742403f3e3f42464c535b606d7983909da7b1bcc8d0c3b6aa9d908377685e5246392d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d1924303a44505a606c78828f96a0a9b2bbc4cdd6ded8d1cbbfb7afa9a19e938f87817b76716d676662605d555b5a5a5a5a5b5c565e616466686d72777c81878f949ea2a9b1b9c0c8d1d5ccc4bab1a79d938b7f72695f53483e31281d1307000000000000000000000000040e1a26313c46525e68717e8a939da8b2bcc6cfd4cac1b8afa69f9691867f79706c65615e565755545350535454555759585f62666b70767d848e939fa4acb6c0c7d1d1c6bcb2a89d93897d7063594f41382d22170b0000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e2215080000000009141f2a36414c56616d7a85929fa9b3becdd6dbd0c3b7ab9f94897d7063594f44352c1d140a0000000000000000000000000000000000000000000000000c17232e3844505b66717d8a95a0abb8c2cdd6cabfb4aa9f92867b6e61574d42362a201509000000000f1b2835424e5b6875818e9ba8b4c1c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9d1cbc7c5c4c3c1bfbab8b6b2acaaa29f9a938e847d746d675f574d453b322920160c03000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1bec9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c6b9aca09386796d6053463a2d20130700000000000000000000000000000001070c141c2328323b434b545c666d78828f96a0aab4bfcbc9c9c9c9c6b9ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151e262f383f4450575e666d727a80868d92989da0a7aaacafb6b6b8babebebfbfc0c1c0c0bfbebebdbfbab8b6b4b4aeacaaa29f9b948f87807a6f6a60594f473e352b1e150b00000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0c9bcb0a396897d7063564a3d3023170a00000000000000000000030f1b26323d4a5764707d8a96a1adb9c3cec7bdb0a69f92877d716c615e56534d4c4b4b4c4d52565e656c74808d95a0abb9c2cdc7bcb1a7998c807366564c41362a1e1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323e44505b666d7a849197a1a9b2bbc4ccd4dcdcd7c9c1bbb3ada59e99928e88837e7976726f6d6769686767666768696a686e7073767a7f83888e939a9fa6adb3bbc2cbd2d4cbc3bab2a89f958e81746d62574d42362c1f160c010000000000000000000000000009151f2935414c56616c74818e96a0aab4bdc7d1d3cac1b8b0a8a098928c847d78726e6866646260605c606061626466686a6f73777d838991969ea5afb6bec7d2d7cbbfb4aaa0968e81746b6054473e2f261b11060000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e221508000000020e1a25313946525e6873808d98a2aebbc5cfd6d3c7bbb0a69c8f82766b6054473d33231a0b0200000000000000000000000000000000000000000000000006111c28333f4a54606c7883909da6b0bcc7d3d0c6baaea3988d8174695f53463c31261a0e040000000f1b2835424e5b6875818e9ba8b4bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbcbbbfbab9b8b7b5b4aeaca9a8a09e98928e88817a706b605d554d453c332920170e0400000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdb9aca09386796d6053463a2d2013070000000000000000000000000000000000020a111720293139424a545c666d7a849198a3aebabdbdbdbdbdbdb9ac9f9386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e2730384149505a61696e787f858d92989fa2aaacb1b6b9bbc0c3c5c6cad0cbcccdcdcdcccccbcad0cac7c5c3c1bfbab9b4aeaca69f99928d857c706b61594f473d30271d1207000000000000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1c9bcafa296897c6f6356493c3023160900000000000000000000000a13202d3a4653606d7984919ea8b2bdc8cfc1bbaea39992867e746d68615f5759585859565e61686d77808c929da7b1bccbd0c7b7ab9f95897c6f6356493c3025190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c162028333f4a545d686e7b859197a1a9b2bac2cad5dadbd3cdc5beb9afaba39f9b948f8a86827f7c7a78767574737374757676787a7d8082868b90959b9fa4acb0b9bec5cdd4d6cbc2b9b1a8a1969083786d605b51453c31241a0d040000000000000000000000000000030d1925303a44505a606d79849198a2abb5c0cbd1d3cac2bab2aaa39f96918a847f7a7773716f6d6d666c6d6e6f707375777b7f838990949ea0a8afbbc0c7d0d8c8c0baaea3989184796d60594f44352c1d140a000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddad4c7bbaea194887b6e6155483b2e22150800000005121e2a36424d57616e7a86929faab3becdc9c9d0c7b7aa9e94897c6f62594f44352b21110800000000000000000000000000000000000000000000000000000b17222d3844505b65707d8a949fabb7c2ccc9cbbfb4aa9f92867b6e61574e42372b20150a0000000f1b2835424e5b6875818e9ba8b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0afaeb4aeacabaaa8aaa39f9c9996918b86817c756d686159514c433c332a21170e050000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0aca09386796d6053463a2d20130700000000000000000000000000000000000000060e171f272f38424a545d686f7c86929fa7b1b0b0b0b0b0b0b0ac9f9386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121c273039424a535b606c707b828b92979fa3aaaeb4b8bcc3c6c8ccd2d0cfcac6c5c4c3c2c2c2c3c4c5c6cad0d0d0d1cbc7c5bfbab8b0aba39f9792867d706c61594f43392e23180c040000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1c8bbafa295887c6f6255493c2f221609000000000000000000000006131f2c3845515c67717e8b96a0acb9c1cccbbfb5aba298928a807a736e69676665646667696e727a818c929ca4aeb9c3cdc7bdb0a69d9083766b6054483b2f1e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e17222d38424c565f696e7b859196a1a8b0b8c0c9cfd6dfd6cfc9c1bdb5afaca69f9c98928f8c89868482818180808181828384878a8c8f92999d9fa7acafb6bec2cacfd7d0cac1b9b1a7a09691847a6e665c51493f332a2012080000000000000000000000000000000008131e28323e45515d676f7c869299a3afbbc0c7cfd4ccc3bcb4aea8a09e96918c8783807e7b7a7979797a7a7b7d7f8284888c90959c9fa6acb2bac1ccd2d2ccc0b6aea49f92867c6f675d51473d33231a0b02000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cdd6d4c7bbaea194887b6e6155483b2e2215080000000714212d3a46535e6974808d98a2aebcbdbdbdbdbdbeafa59c8f82756a6054473d32231a0f00000000000000000000000000000000000000000000000000000006111c27333f4953616b7683909ca6b0bbbdbdbdbdbbaea3998e81746a5f53473c32261b0f0000000f1b2835424e5b6875818e9ba3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a2aaa39f9e9d9b989892908d89847f7a746f6a605d564f45413a312a21180f05000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a09386796d6053463a2d2013070000000000000000000000000000000000000000050d151d263038424c565f6a727f8b95a0a3a3a3a3a3a3a3a3a39f9386796c605346392d20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071118232e39424a545c656c747e8590949ea1a9aeb4babec5c8ced2cdc8c4c3c0bebab8b7b6b5b5b6b6b7b8babfbfc3c6c8ccd2d0cac6c2bdb5afa9a19892867e706b60554b40342820150a0000000000000000000000000000000000000000000000000000000000000006121f2b3844505b667985929facb8c5d2c8bbaea195887b6e6255483b2f221508000000000000000000000004101c2834404b55606d7884919ea6b0b9c3cdc6bdb4aaa29f928d85807b77747372717274777b7f858e939ca4aeb6c0cbccc0b5ab9f94897d7063594f43382c1f0d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3a444d575f696e7b8491969fa6aeb9bec5cdd4d9dad5cfc7c0bbb9b0abaaa39f9c999a93918f8e8d8d8d8d8e8f90919697999c9fa3ababb1b9bbc0c7d0d6d5cdc5bebaafa79f9591847b6e685e544b40372d21180e0000000000000000000000000000000000020c16202935404b55606a707d87929fa3afb5bdc5ced8cfc6bfbab2aca8a09e9a93908d8a88878685868787888a8c8e9196999da0a7abb0b9bdc4ccd8d0c7c0bbaea49d928b7f726a5f554b40352b21110800000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0c9c9c9c7bbaea194887b6e6155483b2e221508000006121e2b37424d57616e7b86929faab4b0b0b0b0b0b0b6ac9e93887c6f62584e43352b211108000000000000000000000000000000000000000000000000000000000b17222d38414f5963707d89949fabb0b0b0b0b0b0b5ab9f92877b6e62584e43372b1c110600000f1b2835424e5b6875818e969696969696969696969696969696969696969696969696969696969696969696969696969696969594989291908e8b898683807d78726d68625f58524c443e352f281f180f0600000000000000000000000000000000000000000000000b1825323e4b5865717e8b96969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969386796d6053463a2d201307000000000000000000000000000000000000000000030b141e26303a444e58606d78839096969696969696969696969386796c605346392d201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f19232834404a545c666d77808a92979fa6adb3babfc6cad0cdc8c4c2bcb8b6b3b3adabaaa9a8a8a9a9aaacaeb4b3b6b9bbc0c7cbd1d3cfc7c0bbb3aaa29892877d6f675c51453c31261b0f000000000000000000000000000000000000000000000000000000000000000613202d394653606c798698a2aebac6d3c7baaea194877b6e6154483b2e2115080000000000000000000000000c18232e3944505c66717e8a949ea7b1bbc5cec6bcb4aea49d98928c8884817f7e7e7f8083878c92989ea5aeb6bfc8cac2bbafa4998f82766b6054463d32271b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d28323c454d575f696e7b848f949ca4adb3bbc1c8ced5d9d9d1cbc7c2bbb7b4aeaca9aca49f9e9c9b9a9a999a9b9c9d9ea1a8a6a9acaeb5b8bcc3c8ccd2d5cfc9c2bbb3ada59e9590837b6e695f564c42392e251b0f06000000000000000000000000000000000000040e18242f3a434e58616b717e8b919fa3abb4bcc3ccd2d1cbc3bdb9b2acaca49f9d999795939892939a949597999b9ea0a8aaacb1b7bcc2c9ced5cdc4beb6afa49d928d80746d62584e43392f23190f0000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3bdbdbdbdbdbbaea194887b6e6155483b2e22150800000814212e3a47535f6974818e99a3a3a3a3a3a3a3a3a3a3a49a8f82756a6054463d3223190f000000000000000000000000000000000000000000000000000000000006111b262f3e4854606b76828f9ca6a3a3a3a3a3a3a3a3a3998e81756a5f5347382e23170b00000f1b2835424e5b6875818a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a89888786868584827f7c797673706c65605d56534e45413a3229241e160d060000000000000000000000000000000000000000000000000b1825323e4b5865717e8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a86796d6053463a2d20130700000000000000000000000000000000000000000000020c151e28323c44505c66707d898a8a8a8a8a8a8a8a8a8a8a8a86796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b16212b353d44515c666d78818d929fa2a9b0b9bec5cbd0ccc7c3bcb8b6b1aba9a6a9a29f9d9d9c9b9c9d9d9fa2aaa6aaacafb6babfc6cfd5d1cbc5bcb4aaa3999184796d60584e43372b1d12070000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793aab4bfcad6c7baada094877a6d6154473a2e21140700000000000000000000000007121d28343f4a54606c77828f95a0a9b3bcc4ccc6bfbaaeaaa29f9996918e8c8b8b8c8d90939a9fa2aaafb7bfc8ccc2b8afa59f93877c6f62594f44342b21160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b16202a333c454d575f696e7a828d929ea1a9afb8bdc3c9ced4d9d7d4cdc7c6bfbab8b6b6afacaba9a8a7a6a6a7a8a9a9abadb2b3b6b9bbbfc6c8cdd4d5cfc9c5beb9b0a9a29f938e827a6e695f574d443b30271d1309000000000000000000000000000000000000000007131d28313c464f59626c727f8b9299a2aab1bbc0c7d0d5cec8c4bdb9b6afacaaa6a4a2aaa39f9fa4a1a2a3a6a8aaacb2b7b8bcc3c7cdd5cfc9c1bbb2aca49f928d80746e645b51463c31281d11070000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcddd0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b0b0b0b0b0b0b0aea194887b6e6155483b2e22150800030f1b27333f4953626e7b879296969696969696969696969693877c6f62584e43342b2011070000000000000000000000000000000000000000000000000000000000000a141d2c38444f59626f7c8994969696969696969696969693877c6f62544a3f34281c1003000916222f3c4955626f7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c7b7a7a79787775726f6d666663605b53524c47433c3530282019130c04000000000000000000000000000000000000000000000000000815212e3b4854616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d786c605346392d2013060000000000000000000000000000000000000000000000030c162028343f4a54606b707d7d7d7d7d7d7d7d7d7d7d7d7d7d7063574a3d3024170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323d47515b606d78818e939da4adb3bbc2cacfccc7c2bbb7b1acaaa79f9d9997979291908f8f8f9091929896999d9fa4acaeb4bdc3cbd4d7cec5bcb4aba0968c80736a5f5347392e23180c0000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbad0d5c9beb3a993867a6d6053473a2d201407000000000000000000000000000c17232e3844505b656d79839197a2aab2bac2cbcac0bcb4aeaba8a09e9a999897999a9d9fa4acaeb3bcc1c9c7c0bbb0a69d938c7f726a6054473d3222190f040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18212a333c454d575f686d78808a92979da5acb2b9bdc4c8ced3d6d8d3d0cbc7c5c2c0bbb9b7b5b4b4b3b3b4b4b5b6b8b9bdbfc2c5c7cbd1d4d3cec9c4beb9b3ada69f97928b81796d685e574d453c32291e150b010000000000000000000000000000000000000000010c161f2b343e47505a636d727e879298a0a7afb6bec3c9ced4cec9c7c0bbb9b6b3b1aeb4aeacacafb6aeb0b2b5b7b9bdc3c5c8ced3cec9c4bdb9afa9a19a938c80746e645c52493f342a1f160c000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfd6d6d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa3a3a3a3a3a3a3a3a3a194887b6e6155483b2e2215080005121f2b3744505b6575828a8a8a8a8a8a8a8a8a8a8a8a8a8a8a81756a5f53463c3222190f00000000000000000000000000000000000000000000000000000000000000020b1b27323d4754606a75828a8a8a8a8a8a8a8a8a8a8a8a8a8a8275665c5044382b1f1206000815212e3b47535f6a6f70707070707070707070707070707070707070707070707070707070707070707070707070707070706f6e6d676b6a686562605c545653504945413a373129241e160e080100000000000000000000000000000000000000000000000000000714202d3a46525e696e70707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706c665b5044382b1f1206000000000000000000000000000000000000000000000000040e17232e38424f59606b70707070707070707070707070706b6155483c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c38444f59626d75818e939da5aebabec5cdcfc9c2bbb7b0aaa7a09d9995908d8a8785848382828383848587898c90939a9fa3abb1b9c2cad4d7cec6bdb2a89f92867c6f62544b4034281c100400000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a1aebbc8d2c6b9ada19786796c605346392d2013060000000000000000000000000006111c27333f49535d676e7b859298a1a8b0babfc6cbc5bebab8b2acaaa7a6a5a4a5a7aaacafb6babec5c9c5bdb5afa69e948e81746d62584e43352b21100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f18212a333c454d565d666d737e858e939ea0a8acb2b8bdc3c6cad0d2d5d6d3d2d2ccc8c6c4c2c1c0c0c0c0c1c2c3c4c5c9cfcfd2d3d2d0cac6c4bdb9b2ada9a19e948f857e756d675d564d453c332a20170c0300000000000000000000000000000000000000000000040d19222c353f48515b636c717d8691959fa4acb2b9bdc4c8ced3d2ccc8c6c3c0bdbbbfbab8b9bbc0bbbdbfc1c4c5c9ced1d2cec8c4bdb9b2ada59e96918880736e645c524a41372d22180d04000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2c9c9c9c9c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d969696969696969696969694887b6e6155483b2e221508000613202d394653606c777d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7a6e61584e43342b20100700000000000000000000000000000000000000000000000000000000000000000b16212b37434e58616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d786d6053463a2d2013070006131f2b37434e585f6263636363636363636363636363636363636363636363636363636363636363636363636363636363636261605d555d5b585653514a4a46443f38352f2b262019130c040000000000000000000000000000000000000000000000000000000005121e2a36424d575e616363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363605b544a3f33281c0f030000000000000000000000000000000000000000000000000006111c26303d474f5960636363636363636363636363636361594f44382c2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3b4854606b727f8c939ea5afb7c0cacfcdc4beb9b0aaa69f9c95908c8783807d7b7877767575767677797b7c8083878e9299a0a7b0b8c2cdd6d8cfc3bbaea3998e8174665c5145382c1f13060000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d1c5b8ab9e928578655b5044372b1f120500000000000000000000000000000b17222d38414c555f69707d8691969fa6aeb4babfc6cac6c4bdb9b7b4b2b1b1b2b3b6b9bbc0c7c9c5beb9b3aba49f948f82786d605b51463d3223190f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f18212a333c444c545c606c717a818991969ea0a8acb2b8babec5c6c9cfd1d2d3d7d4d2d1cfcecdcdcccdcecfd0d1d2d2d1cfcfcac6c5bebab8b2aca9a19e97928b827b716c605d554c443b332a21180e0500000000000000000000000000000000000000000000000007101a232d363f49515a626b707c838d939aa0a8acb2b8bcc3c6cacfd2d2d0cccad0cbc7c5c6c8ccd2caccced1d2d2ccc8c6c3bcb8b2aca8a19e938e847d736e645c524a41382f251b100600000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5bdbdbdbdbdbdb6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808a8a8a8a8a8a8a8a8a8a8a8a8a887b6e6155483b2e2215080005121f2b3744505b656c707070707070707070707070707070706e685e52463c3122190e000000000000000000000000000000000000000000000000000000000000000000040f1b27323d46525e696e7070707070707070707070707070706d665c5044382b1f120600030f1b26323c464e53555757575757575757575757575757575757575757575757575757575757575757575757575757575756555453514b514f4c494644403d3937332d29241e1b150d08020000000000000000000000000000000000000000000000000000000000020e1a25303b454d5254575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575753504a42382d22170b0000000000000000000000000000000000000000000000000000000a141e2b353d474f545657575757575757575757575757554f473e33281c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7d87929fa5afb7c1c9d1cbc0bbb2ada69e9c948f89837f7b7673706e696a6a6968696a656c6e7073777b818690959fa6b0bbc4cfdad7cbbfb5ab9f9285796d6053463a2d20130600000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd0c3b6a99d9083766a53493f33271b0f03000000000000000000000000000006111b262f3a434d57606b707c848f949fa3abaeb4babfc3c4c8c5c4c1bfbebebfc0c3c6c7c5c2bdb9b3ada9a199938c827a6d665c51493f342b20110700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f18212a323a424a505a61686d747d848b91969da0a8abaeb3b8b9bec1c4c5c7cbd1cccdcdcecfcfcecdcccccbcfcac6c5c2c0beb9b8b3aeaba8a19e97918c857e766e69615a514b433a322920180f06000000000000000000000000000000000000000000000000000008111b242d373f485059606a6f79808891969ea1a8acb1b8babec2c5c6cad0cccdcececfcececdccccd0cac6c5c3c0bbb9b6b1aca8a09e96918b817a706b635c524a40382f261d13090000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b0b0b0b0b0b0b0b0aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d796d6053473a2d20140700030f1b27333f49535b6063636363636363636363636363636363615e564c41342a201007000000000000000000000000000000000000000000000000000000000000000000000a16202a36424d575e61636363636363636363636363636363605c544a3f34281c100300000a15202a343c4347494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a49484747454044423f3c3a38342e2d2b27221b19130f0a04000000000000000000000000000000000000000000000000000000000000000009141f29333b4246484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a46443f382f261c1106000000000000000000000000000000000000000000000000000000020c19232b353d4448494a4a4a4a4a4a4a4a4a4a4a4a4a48443e352c21160b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000111e2a3744515d6a77849099a3afb7c1c9cfc6bfbaafa9a19e948f88827c77726e696664615e575d5c5c5c535b60616366696e747b838f949fa9b2bdc9d5dcd1c6baada2978a7d7063574a3d2e23170b00000000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0cdcec1b4a89b8e8175685b4e422d22170b000000000000000000000000000000000a141d28313c454f59606a6f7a828d92999fa3abaeb4b7b8bcbebfc0c1c2c1c0bfbebfbab8b5b2ada9a19e9792877f786d685d544b40372d22190f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f18202830383f4450565e616b70797e848b91969a9fa2aaabadb3b5b7b9bbc0bebfc0c1c1c2c2c1c0c0bfbebdbeb9b8b6b3b3adabaaa29f9b96918b847f79726d615e5750454039312820170e060000000000000000000000000000000000000000000000000000000009121c252d363f474f585f676d737d848b91969da0a7abadb3b5b8babfbec0c0c1c2c2c2c1c0c0bfbebebab8b6b6afaca9a7a09d96918b847e756d686059524a40382f261d140b010000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca3a3a3a3a3a3a3a3a3a39d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3a47535f6a6f70707070707070707070707070706d675d5145392c1f130600000b17222d38414950535757575757575757575757575757575754524c443b3022180e0000000000000000000000000000000000000000000000000000000000000000000000040e1a25303b454d525457575757575757575757575757575753504a42382e23170b000000040e18222a32373b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b3a38352f35322f2d2c2823201f1b17110d080100000000000000000000000000000000000000000000000000000000000000000000030d17212930363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3938332d261d140a0000000000000000000000000000000000000000000000000000000000071119232b33383b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332c231a1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b95a0acb8c1ccc4bcb4aea59d97918a827c766f6b66615e575754524d504f4f504950535456575f61696e79828f96a1adb9c6d0dbd6cabeb3a99b8e817468544a3f34281c100300000000000000000000000000000000000000000000000000000004101c2834404b546975828f9ca8b5c2cfccbfb3a6998c807366594d4033261a0600000000000000000000000000000000020b161f2a333d474f585f686d7880868d92999fa2aaaaacb1b1b2b3b4b5b5b4b3b2b4aeaca9a8a19e97928c857d736c665d564c42392e251b100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e161e262e343e444c525960666d71787e84898e92989b9ea1a9a8aaacafb5b2b3b3b4b5b5b5b4b4b3b2b1b1b3adaba9a7a9a29e9b98928e8a847f79726d67625b524d453e352f271f160e050000000000000000000000000000000000000000000000000000000000000a131c242d353d464e555c606b70787e848b90959a9fa2a9a9acaeb4b1b3b4b4b5b5b5b4b3b3b2b1b3adaba9aca49f9d9995908b847e79716c615e564f4740372e261d140b02000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9696969696969696969696969083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e585f626363636363636363636363636363605d554b4035291d1004000006111b262f383f44464a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4746413b32291e100600000000000000000000000000000000000000000000000000000000000000000000000009141f29333b4246474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a46443f3830261c11060000000007101820262b2e2f30303030303030303030303030303030303030303030303030303030303030303030303030303030302f2e2d2c2924282523201f1c1813120f0b060000000000000000000000000000000000000000000000000000000000000000000000000000050f171f252a2d2e30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302d2b28221c140b0200000000000000000000000000000000000000000000000000000000000007111921272c2f30303030303030303030303030302f2c28211a110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7883909da5afbcc4bab2aaa39f938e847e766f6a63605954534d4a484642434242433f444647494d53575f676d7a84919eaab4bfcad6dbd0c4b8ab9e918578665c5044382b1f120600000000000000000000000000000000000000000000000000000006131f2c3845515c667784919eaab7c4d1cbbeb1a4988b7e7165584b3e3225180b0000000000000000000000000000000000040d18212b353d464e565e666d737b81868e9298999da0a7a4a5a6a7a8a8a7a6a5aaa29f9c9996918b857f7a706b605b544c443a30271d130a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c141c2328323a41464f545c60666d71787c81858a8e9297989b9e9fa3aba5a6a7a7a8a8a8a8a7a6a5a5a4a9a19e9c9a9797928e8a85817d79726d67605d555146423b3329241d150d0400000000000000000000000000000000000000000000000000000000000000010a121b232b343c434b515960666d71797e83888d9297999c9fa2aaa4a6a7a7a8a9a8a7a7a6a5a5a9a29f9c9a9a93908c88847e78716d66615a524c443d352e251c140b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828a8a8a8a8a8a8a8a8a8a8a8a8a8a83776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1a26313c464e5355575757575757575757575757575753514b43392f24180c000000000a141d262d3337393d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3936302920170d00000000000000000000000000000000000000000000000000000000000000000000000000020d17202930363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a38342e261e140a000000000000070e151b1f212224242424242424242424242424242424242424242424242424242424242424242424242424242424232221201f1d181c19161312100c0705030000000000000000000000000000000000000000000000000000000000000000000000000000000000050d141a1e20212424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424201f1c17110a020000000000000000000000000000000000000000000000000000000000000000070f161c2022232424242424242424242424242423201c16100800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b666f7c89939eaab4bab2a8a198928b817a716c626058544f4846423d3b3a363036352d3337393b3d42464d555e68727e8b98a2aebac6d3dfd2c6b9ac9f9386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb9c5d2cbc0b5ab96897c706356493d3023160a000000000000000000000000000000000000060f19232b343c444c545c60696e747b8186898d9095969798999b9c9b9a99989798928f8c89847f79726d676059504a423a32281e150b0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1117202830353d424a51545c60656c7074797d8285888b8e9192999698999a9a9b9c9c9b9a999998979697928f8d8b8885817d7975706d66605c55514b433f3630292118120b030000000000000000000000000000000000000000000000000000000000000000000009111a222a313940454f545c60666d72777c8185898c8f92989698999a9b9b9c9b9b9a999998969792908d8b87837f7b77716d66605c545046413a322b231c130a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d6f6356493c30231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343c4347484a4a4a4a4a4a4a4a4a4a4a4a4a4a4745403931271d120700000000020b141b22272b2d303030303030303030303030303030302e2d2a251e170e050000000000000000000000000000000000000000000000000000000000000000000000000000050e171f252a2d2e3030303030303030303030303030302d2b28231c140c0200000000000000040a0f131516171717171717171717171717171717171717171717171717171717171717171717171717171717171615141413100c070c090706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171713120f0b060000000000000000000000000000000000000000000000000000000000000000000000050b10131616171717171717171717171717171614100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54606b75818e98a2aeb2a8a19691867e746d68615a544e48443d3a36312e2d2a25292922272b2d2e31363c434c56606d7a85929facb8c5d2dfd4c7bbafa499877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8899a3afbbc7d3c7bbafa399877b6e6154483b2e21150800000000000000000000000000000000000000071119222a323a424a50575e61696e74797d808387898b8c8d8e8f8e8d8c8b8a8986827f7c79726d67605d554f443f382f2820160c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e161e2529303940444a50535b6063676d7175797b7e828486888a8b8c8d8e8e8f8f8e8d8d8c8b8a89878583807e7c7974706d6664605c54514b454039312a251f170f07010000000000000000000000000000000000000000000000000000000000000000000000000810181f272f343d424a50545c60656a6f74797c7f828587898b8d8d8e8f8f8f8e8d8d8c8b89878583817e7b76726e6964605c54514b423e353028201a110a010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4754606a6f70707070707070707070707070706f6b6054483b2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e18222a31373a3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a39352f271f150b010000000000020a11171b1f202424242424242424242424242424242421201e19140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000050d141a1e2021242424242424242424242424242424201f1c17110a0200000000000000000000030608090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a090807060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0606030000000000000000000000000000000000000000000000000000000000000000000000000000000407090a0a0a0a0a0a0a0a0a0a0a0a0a0a090704000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424f59616e7b86929fa8a8a19691847c716c605d565047433c38322d2a2521201e1a1c1c171b1f2021262a313a45515d677783909daab6c3d0ddd7ccc0b5ab95887c6f6255493c2f2216090000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97abb5c0cbd2c5b9ac9f9286796d6053463a2d2013070000000000000000000000000000000000000000071019202830383f444d52575e61676d7073777a7d7e7f8081828281807f7e7c7976726f6d66605d55514c433d332d261d160e04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13191e272e34383f44495053555c6064656c6e727577797b7d7f8080818282828181807f7e7e7d7b787674716f6d6663605c5453514a454039352f271f1a140d05000000000000000000000000000000000000000000000000000000000000000000000000000000060d151d232930383f444b5153586062666d6f7276797b7c7e8081818282828180807f7e7d7a787674716e6866625f5753504a4540393029251e160e08000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e58606263636363636363636363636363636360594f43382c1f1307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101820262b2e2f30303030303030303030303030302d2c29241d150d030000000000000000060b0f1213171717171717171717171717171717171414110e080200000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e1114141717171717171717171717171717171312100b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3d46525e68727f8c96a0a19691847b6f6a625a524c433e37322c27211e1a1514120e09060b0f1213141a1f2935414c556875828f9ba8b5c2cedbddd2bdb0a3968a7d7063574a3d3024170a0000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5b2bfd1d1c4b7aa9e918477665c5044382b1f1206000000000000000000000000000000000000000000070e161e262e343b42464d53555c606366686e70717273747575747372716f6d676662605c54514b45413a3128221c140b04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080c151c23282e34383f44464b5153535b60626568666d6e7072737474757575757473727271706e6969676462605c5453514b46444039342e29241d150d09020000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181e262e34394045464e54545c606266656c6e70717374747576757474737272706e69696765615e5655534d46443f38342e271e19130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323d464e5456575757575757575757575757575756544f473d32271b0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e151a1f21222424242424242424242424242424201f1d18120b0300000000000000000000000305060a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105090b0b1313131313131313131313131313130c0b090501000000000000000000000000000000000000000000000000000000000000000000000000000000000000050a0d0f10131313131313131313131313130c0b090501000000000000000000000000000000000000000000000000000002050708121313131313131313131313131313131006060300000000000000000000000000000000000000000000010406070b0b0a0a090908070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2a36414d56606d7884919d9791847b6e6960585045413a312b27201b16120e0907050200000003050609101c28343f4a546875828f9ba8b5c2cedbd6cabdb0a3978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000006121f2b37434e586875818e9ba8b4c1cecfc2b5a99c8f827669544a3f34281c100300000000000000000000000000000000000000000000050c151c232830363b42464b515356565e61636465666869686766656463605c555653504a454039352f281f17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c23282d3337394045474950535558545c6061636566676768696968676666656463615e575a585553504a4645403a38342e28231d18120b03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c141c23282e34383c43474a505356535b60616365666768686968686766666563615e565a5854524d4847423c38342e28231d150c080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a16202b343d4347494a4a4a4a4a4a4a4a4a4a4a4a4a4a4948433d352b21160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f12151517171717171717171717171717171413100c0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c11151718202020202020202020202020202020181715110c06000000000000000000000000000000000000000000000000000000000000000000000000000000030a10161a1c1d20202020202020202020202020181715110c06000000000000000000000000000000000000000000000002090e1114141f2020202020202020202020202020201c13120f0b0600000000000000000000000000000000000001070d111314181817171615151413110d080b08070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b1925303b44515c66707d899391857b6e695f574e463f352f281f1b150f0a05020000000000000000060b1218222b3844505c667783909daab6c3d0ddd5c9bcafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000000000815212e3a47535f6a7885919eabb8c4d1cbbfb5ab998c7f7366594c402e23170b000000000000000000000000000000000000000000000000030a11171f252a313639404546494c52545658595a5b5c5b5a5958575653514b4946443f38352f29241e160d06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c11171b22272b2f34383a3f4446484b4a5153555758595a5b5b5c5c5b5a5a5958575654524d4d4b4946443f3a38342e2c28231c18120c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171d23282c3237383f4446494950535456585a5a5b5c5c5c5b5a5a59585654524d4e4b4746413b3a37312c28231c18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f19222b32373b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b38322b23190f0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090a0a0a0a0a0a0a0a0a0a0a0a0a0a070604000000000000000000000000000000000000000000000000000000000000000000000000000000060b0e101113131313131313131313131313130c0b09050100000000000000000000000000000000000000000000000000000000000000000000000000000003080c0e0e1313131313131313131313131313131313100605030000000000000000000000000000000000000000000000000000000000000000000000000000000000000911171d2124252d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2524221d18110900000000000000000000000000000000000000000000000000000000000000000000000000040d151c2226292a2d2d2d2d2d2d2d2d2d2d2d2d2d2524221d181109000000000000000000000000000000000000000000050d14191e20212b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d29201f1c17110a02000000000000000000000000000000040c13181d20202524242323222221201d1919171514120e0906040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141f2834404a54606b75828f877d70695f574d453d3429241e160d0a04000000000000000104080d11171d2329343c4653606d7985929fabb8c5d2ded6cabfb4aa94887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000915222f3c4855626f7b8897a1adb9c6d2c7bbaea399897c706356493d302316060000000000000000000000000000000000000000000000000000060c141a1f252a2e34383a3d4146474a4b4c4d4e4f4f4e4d4c4b494645403c3a38342e29241d19130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b11171b1f23292c2d3337393b3f404446484a4c4d4d4e4f4f4f4e4e4d4c4b4b4a474642413e3c3a38342e2c28231f1c18120c0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b12181c1f272b2e34383a3c3f444647494b4d4e4e4f4f4f4e4d4d4c4b4a474642413e3b3936302e2b261f1c17110c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101920272b2e2f3030303030303030303030303030302f2c2721191007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b11171b1d1e2020202020202020202020202020181715110c0600000000000000000000000000000000000000000000000000000000000000000000000001090f14181a1b20202020202020202020202020202020201c13120f0b0600000000000000000000000000000000000000000000000000000000000000000000000000000009121b22292e313239393939393939393939393939393932312e29231b12090000000000000000000000000000000000000000000000000000000000000000000000030d161f262d3235363939393939393939393939393932312e29231b120900000000000000000000000000000000000000050e171f252a2d2e38393939393939393939393939393939362d2b28221c140b0200000000000000000000000000040d161d24292c2d32313130302f2e2d2c2924262422211e1a1313100c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c18232e39424f59616e7b8680736b60574d453b332b2219130c040000000000000305070d1113191b22272f343d46505a63707d8a97a2adbac6d3dfd3c6baaea298867a6d6053473a2d2014070000000000000000000000000000000000000000000000000004101c2834404b5465727f8c98a9b2bec9d2c5b9ac9f92867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000003090e141a1d23282c2d3036393b3d3e3f4041424241403f3e3c3a38342e2d2b28231c18120d0801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12181c1f22272b2d2f2e34383a3b3d3f4041414242424241403f3f3e3d3b3a3630312f2d2c28231f1c1812100c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c10151b1c23282b2d2d3337393b3d3e4041414243424141403f3f3d3b3a3630322e2d2a25211e1a15100c0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161b1f2223242424242424242424242424242423221f1b160f070000000000000000000000000000000000000000000000000000000000000306080913131313131313131313130b0b09050100000000000000000000000206080813131313131313131313130c0b090601000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e161d22272a2b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2524221d18110900000000000000000000000000000000000000000000000000000000000000000000030b131a202427282d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d29201f1b17110a0200000000000000000000000000000000000000000000000000000000000000000000000006111b242d343a3d3e4646464646464646464646464646463f3d3a342d241b1106000000000000000000000000000000000000000000000000000000000000000000000a151f2831383e4243464646464646464646464646463f3d3a342d241b11060000000000000000000000000000000000030c17202930363a3b45464646464646464646464646464646433938332d261d140a000000000000000000000000010c161f282f35393a3e3e3d3d3c3c3b3a39352f33312e2d2a26201f1c18120f0a0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121c27303d46535f69707d786c60594f453c332921191008010000000306060b0f1213181d2024292d333940454f58616c75828f9ca9b3becad6dfd2c5b8ac9f928579675d5145392c2013060000000000000000000000000000000000000000000000000006131f2c3845515c6676828f9ca9b5c2cfd0c3b6a99d908376675d5145392c1f1306000000000000000000000000000000000000000000000000000000000003090e12181c1f20252a2d2e3031323335363534333231302d2c2823201f1c17110c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003070c1013171b1f202223282c2d2e3032333434353636353433333231302e2d2a252522201f1c1713100c0704000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f11171c1f2022272b2d2e30323334353536353534333332302e2d2a252521201e1914120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13151617171717171717171717171717171615130f0a040000000000000000000000000000000000000000000000000000000000040a0f1315162020202020202020202020181715110c06000000000000000003090e1214152020202020202020202020191816120d0700000000000000000000000000000000000000000000000000000000000000000000000000000000040e1720282e333637393939393939393939393939393932312e29231b12090000000000000000000000000000000000000000000000000000000000000000000b151d252b3034353939393939393939393939393939393939362d2b27221b140b0200000000000000000000000000000000000000000000000000000000000000000000010c17222d363f454a4b5353535353535353535353535353534b4a453f362d23180c01000000000000000000000000000000000000000000000000000000000000000005101c26313a434a4e50535353535353535353535353534b4a453f362d23180c01000000000000000000000000000000000b151e29323b424647525353535353535353535353535353534f46443f382f261c1106000000000000000000000007131d28313a4045474b4b4a4a49484847454141403e3b3a36312d2c28231d1a150f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e2a36424d57616c706c665b50473d332a21170f07000305060b101213171b1f2024292c3035383f444b5159606a717e8a949eaabbc5cfdbdccfc2b5a99c8f827669554b4035291d1104000000000000000000000000000000000000000000000000000713202d3a4653606d7985929facb8c5d2ccc0b6ac9a8d807367554b4035291d10040000000000000000000000000000000000000000000000000000000000000000070c101313191e2021232526272829282726252423201f1c181312100b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004060b0f121315181c1f202224252627282829292827272625242321201e1a18161312100c0604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b101213171b1f2021232527272829292928272726252321201e19181414110e0806020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090a0a0a0a0a0a0a0a0a0a0a0a0a0a09090703000000000000000000000000000000000000000000000000000000000000070f151b1f22222d2d2d2d2d2d2d2d2d2d2d2524211d181109000000000000060e151a1e21222d2d2d2d2d2d2d2d2d2d2d2625221e1811090100000000000000000000000000000000000000000000000000000000000000000000000000000b16202932393f434446464646464646464646464646463f3d3a342d241b11060000000000000000000000000000000000000000000000000000000000000008121d272f373c40414646464646464646464646464646464646433937332d261d140a0000000000000000000000000000000000000000000000000000000000000000000005111d29343f48505658606060606060606060606060606060585651483f34291d110500000000000000000000000000000000000000000000000000000000000000000a16222d38434c545a5d60606060606060606060606060585651483f34291d110500000000000000000000000000000007121c27303b444d52545e6060606060606060606060606060605c53504a42382d22170b00000000000000000000010d18242f3a434b51535857575656555554514c4e4c4a4846423d3a38342e2b26201b150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c1a26313b45505a6164605b544a3f352b21180f06060b0f1213171c1f2022272b2d2f35393a41454950555c606b707c86929fa6b0bbcdd7e1d4c8bcb1a7988b7f7265584c3f2f24180d01000000000000000000000000000000000000000000000000000a1623303d495663707c8998a2aebac6d3c8bbafa49a8a7d7063574a3d2f24180c00000000000000000000000000000000000000000000000000000000000000000000000406080e1114141718191a1b1c1c1b1a1918161313100c070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030506070c1012131517191a1a1b1c1c1c1b1b1a191818171414110e090907060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060b0f12131416181a1b1b1c1c1c1b1a1a1918171414110e0908070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101920272b2e2f393939393939393939393932312e29221b120900000000060f1820262b2e2f393939393939393939393932312e29231b13090000000000000000000000000000000000000000000000000000000000000000000000000006111d28323b444b4f5153535353535353535353535353534b4a453f362d23180c010000000000000000000000000000000000000000000000000000000000060f1a242f3941484d4e53535353535353535353535353535353534f46443f382f261b11060000000000000000000000000000000000000000000000000000000000000000000915212e3a45505a62656c6c6c6c6c6c6c6c6c6c6c6c6c6c6c65625b51453a2e22150900000000000000000000000000000000000000000000000000000000000000000d1a26323e4a545e66696c6c6c6c6c6c6c6c6c6c6c6c6c65625b51453a2e2215090000000000000000000000000000060f18232e39424d565e616b6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69605b544a3f33281c0f0300000000000000000004111d2935404b555d6065646463636261605d555b595755534d4a4645403937312b262019130d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f29333e4850555753504a42382d23190f0c1012171b1f2023282b2d2d3337393b4045474c52535b60676d737d859298a2aeb8c1ccdfdbd1c4b8aca095877b6e6154483b2e2115070000000000000000000000000000000000000000000000000005121e2a36424d576673808d99aab4bfcad2c6b9ac9f93867a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0b0c0d0e0f0f0e0d0c0b09070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607080a0c0d0e0e0f0f0f0f0e0d0c0c0b0a080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030506080a0b0d0e0e0f100f0e0e0d0c0c0a08070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f19222b32373b3c46464646464646464646463e3d3a342d241b11060000030e18212a31373a3b46464646464646464646463f3e3a352d251b11070000000000000000000000000000000000000000000000000000000000000000000000000b17222e39444d565b5e6060606060606060606060606060585651483f34291d110500000000000000000000000000000000000000000000000000000000030c17212c36414b53595b60606060606060606060606060606060605c53504941382d22170b0000000000000000000000000000000000000000000000000000000000000000000b1724313d4a56626c71797979797979797979797979797979726d62564a3d3124170b00000000000000000000000000000000000000000000000000000000000000000f1c2935424e5a66707679797979797979797979797979726d62564a3d3124170b00000000000000000000000000040d18222834404a545e696e78797979797979797979797979797979766c665b5044382b1f12060000000000000000000613202c3945515d676d717170706f6f6e6d6769686664615f575653514b47433c37312a251e170e070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d18212c363e44494a46443f382f261c1112181c1f22272b2d2e34383a3c3f4446484b5153565d60656c71797f879297a2aab4bfcad3ddd4c8bcb1a79d908377695e53463a2d211407000000000000000000000000000000000000000000000000000714212d3a46535f697783909daab6c3d0d0c3b7aa9d908477685d5246392d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202b343c43474953535353535353535353534b4a453f362d22180c01000915202a333c42474853535353535353535353534c4a463f372d23180d0100000000000000000000000000000000000000000000000000000000000000000000000e1b27333f4b565f676a6c6c6c6c6c6c6c6c6c6c6c6c6c6c65625b51453a2e221509000000000000000000000000000000000000000000000000000000000a151e29333e48535d64686c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69605b53493f33271b0f0300000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8686868686868686868686868686867e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697682868686868686868686868686867e7265584b3f3225180c000000000000000000000000010c161f2a343c44515c666e7b8586868686868686868686868686868682786c605346392d2013060000000000000000000714202d3a4753606d797e7e7d7d7c7b7b7a78767473716e696763605c54534e47433c363029201910090100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a242c33393c3d3938332d261d141b1c23282c2d3337393c3f44464949505355555d6064686d72787e848c9299a2a9b3bcc5d0dcd4cbc3b8aca0958b7e7265574d42362a1e120500000000000000000000000000000000000000000000000003101c28343f4a54616e7b87939facb9c6d2cabeb3a99a8d807467564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000000010507070f0a0a080400000000000000000000000000000000000000000306131313131313131313131313131313131311110e0b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104060709090a0b0b0c0b0b0a09090706040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060608090a0b0b0c0b0b0a090806060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070808090a0b0c0c0b0b0a090806050300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323c464e54556060606060606060606060585650483f34291d1105020e1a26313c454e53556060606060606060606060595751493f35291e12060000000000000000000000000000000000000000000000000000000000000000000000101d2a36434f5b6771777979797979797979797979797979726d62564a3d3124170b00000000000000000000000000000000000000000000000000000006111c26303b45505a646f747979797979797979797979797979797979766c655b5044372b1f120500000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b939393939393939393939393938b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d6976839093939393939393939393938b7e7265584b3f3225180c00000000000000000000000007131d28313c46505a606d7882909793939393939393939393939991847a6d665b5044382b1f1206000000000000000003101c28343f4a5464717e8a8a8a89898888878583817f7d7b7773706d66625f58534e46413a322b221b130b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a22282d30312d2b28221c1c1f272b2e34383a3f4446484a505355535b606265676d71757a7f848a91969fa3abb3bcc5ced7d5cbc3b9afa59d9083786c6053463b31251a0e0200000000000000000000000000000000000000000000000006121f2c3844505c6673808d9aa4afbbc8d2c6b9ada197897d7063564a3d3024190d01000000000000000000000000000000000000000000000000000000000000000000000002080d1113141b171614100b0500000000000000000000000000000000060b101220202020202020202020202020202020201e1d1b17120b0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060809080d11131415161717181918171716151413110d07080806020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608060b0f1213151617171819181717161513120f0b0608060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708070c10131414151617181818181717161413120f0b06070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5860626c6c6c6c6c6c6c6c6c6c6c65625a50453a2e21150906121e2b37424e575f6c6c6c6c6c6c6c6c6c6c6c6c65625b51463a2e2216090000000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a778386868686868686868686868686867e7265584b3f3225180c0000000000000000000000000000000000000000000000000000040e17232e38424d57616c7481868686868686868686868686868686868682786c605346392d20130600000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b989f9f9f9f9f9f9f9f9f9f9f988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909c9f9f9f9f9f9f9f9f9f988b7e7265584b3f3225180c0000000000000000000000071118242f3a434e58616c74808d949fa99f9f9f9f9f9f9f9fa69f92877d6f685e544a3f33281c0f03000000000000000006121f2c3844505c6675818e9797969695949792908e8c8a8884807d79756e6a625f58524c443d342d251d140b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c202324201f1c1c22282b32373940444649505355545c606265656c6e72757a7d81868c91969ea1a8afb5bdc5ced7d7ccc3b9b1a79e93897c6f665b504438291f1409000000000000000000000000000000000000000000000000000713202d3a4653606d7984919eacb6c0ccd1c5b8ab9e9285796d6053463a2d2013080000000000000000000000000000000000000000000000000000000000000000000000040c13191d2021282423201c17100800000000000000000000000000020a11171c1f2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b2a27231d160e06000000000000000000000000000000000000000000000000000000000000000000000000000000000104060a0f12151518191d2021222323242525252423232220201d18181514120e090604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060a0f121515171c1f202223232425252524232322201f1c171515120f0a05030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406090e12141517181c1f20212223242425252524242321201f1b17171413110d080602000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4754606a767979797979797979797979716c62564a3d312417070814212e3a47535f6a767979797979797979797979726d62574a3e312518080000000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919393939393939393939393938b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000020c162028343f4a545f69717e8a93939393939393939393939393939392857a6e655b5044372b1f120500000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4acacacacacacacacaca5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9acacacacacacaca5988b7e7265584b3f3225180c00000000000000000000050e19232935414b555f6a717e8a929da6b0acacacacacacb2a89e948c7f726b60564c42382d22170b0000000000000000000713202d3a4653606d7985929fa3a3a2a2a9a19e9c9b999796918d8985817c756f6a615e564e463f372f261d130a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10141617131b1d262d33383c43474a5153535b606265666d6f7275797b7e82868a8e92989da0a8acb2bbc0c7cfd7d1cbc2bab1a79f958e81756b60544a3f3328170d0300000000000000000000000000000000000000000000000005121e2a36424d5764707d8a97a1adbec7d2c9bdb2a99a8e8174665c5044382c1f120600000000000000000000000000000000000000000000000000000000000000000003090e161e25292d2e3531302d28221a12080000000000000000000000020c141c23282b39393939393939393939393939393939393836332e2820180e040000000000000000000000000000000000000000000000000000000000000000000000000001080d1113141a1f21222524292c2d2f3030313232323130302f2d2c29242522211e1a1413110d0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131b1f212222282b2d2e2f303131323231302f2e2d2b282222211f1b13120f0b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080d1113141a1e21212423292c2d2e2f2f303132323131302f2e2d2b27222321201d1914120f090401000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c86868686868686868686867e7165584b3e2f24180c0815222f3b4855626e7b86868686868686868686867f7265594c3f3024190d0100000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919d9f9f9f9f9f9f9f9f9f9f988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000008131e28323a44505c666e7b85929fa59f9f9f9f9f9f9f9f9f9fa79d928a7d70685e53493f33271b0f0300000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1b9b9b9b9b9b9b9b1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6b9b9b9b9b9b1a5988b7e7265584b3f3225180c000000000000000000030c17202b353d45515d676e7c86929fa4aeb9b9b9b9b9bfb5aba1968f82776c60594f443a2f261c11060000000000000000000a1623303d495663707c8997a2adb0afaeb3adaba9a7a6a8a09d9a98928e87817c756d686058514941382f251c12090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000108101920272b2f383f44464e54545c6064656c6f7275797c7f8285888b8f92989b9fa2aaacb2b9bdc4cbd1d5cfc6bfbbb0a8a0959083796d60594f42382d221705000000000000000000000000000000000000000000000000000b14202d3a46525e6975828f9ca9b2bed0d2c5b9ada196897d7063544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000060b141a20283035393a423d3c39332c241a0e04000000000000000000000a141e262e3438464646464646464646464646464646464644433f39322a20160b0000000000000000000000000000000000000000000000000000000000000000000000040a0f13191d2021262b2e2f322f35393a3c3c3d3e3e3f3e3e3d3c3c3a39352f322f2e2b2621201d18130f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d11171c1f20262b2e2f2d3338393b3c3d3e3e3f3e3e3d3c3b3938332d2f2e2b26201f1b17110c07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c1013191d2021252a2d2e312f34383a3b3b3c3d3e3f3f3e3e3d3c3b3937332d302d2c2924211f1a15110d070100000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d79869293939393939393938e817467554b4035291d100613202d394653606c79859293939393939393938e817568564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daaacacacacacacacaca5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000006101925303a444f59606d78839098a2aeacacacacacacacacb4aaa0958d80746b61564c41382d22170b0000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1bec6c6c6c6c6beb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3c6c6c6beb1a5988b7e7265584b3f3225180c0000000000000000000a151e29323d47515b606d79849198a2aeb6c0cbc6ccc4bbaea39991847a6d655b50473d32281d140a00000000000000000006121f2b37434e586774808d9aa9b3bebcbbbeb9b8b6b4b2b2acaaaaa29f9a938e87817a6f6a625b534a41372e241a100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c1319222b32373e424a5053586062666d7075787c7f8285888c8f9297989c9fa3aaacaeb4b8bdc3c9ced5cfc9c3bdb5aea69f9690837a6d675d51473d2f261c110600000000000000000000000000000000000000000000000007121d28333f4a54616e7b87939facb9c4cfccc0b5ab9e9184796d6053463a2e23170c00000000000000000000000000000000000000000000000000000000000000020a11171f252a323a4146474e4a49443e362c20160c02000000000000000006111c2630383f445353535353535353535353535353535353514f4b443c32281d12060000000000000000000000000000000000000000000000000000000000000001070c10161b1e24292c2d31373a3c3f4141454748494a4a4b4c4b4a4a4948474540413e3b3a37312d2c29241d1b16100c0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c12181c22282b2d31373a3c3f3f444648494a4a4b4c4b4a4a494846443f3f3c3a37312d2b27221b18120c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12181c1f24292c2d31363a3b3d404045474748494a4b4b4b4b4a4a494746443f3f3d3a39352f2e2b26201d18130d080200000000000000000000000000000000000000000000000000000000000000000006121f2c3844515c667683909c9f9f9f9f9f9f9d908377675d5145382c1f1306121f2b3744505b6576828f9c9f9f9f9f9f9f9e918477685d5246392d20130700000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7b9b9b9b9b9b9b1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000030d18222935414c56606b73808d959faab3beb9b9b9b9b9b9baaea2989083796d60594f443b2f261b11060000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd2d2d2cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd2cbbeb1a5988b7e7265584b3f3225180c000000000000000006111c26303b444f59626d75818e96a0aab4bfc8d2cfc4baafa59f92877c6f685d53493f342b20160b020000000000000000000815212e3a47535f6a7784919eaab7c4d0cfc9c6c5c3c1bfbdb8b7b4aeaca49f9a938e847c726d645d534940362c22190d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d161e2429343d434750545b60646a6f74797d8285888b8f9297989b9ea1a9a8acaeb4b8babfc6c8ced4cfc9c4beb9b2aba39f9490847a6e685e554c41352b1d140a000000000000000000000000000000000000000000000000000c18232e3844505b66737f8c99a4afbbc7d4c7bbafa4998c8073665c5044382c1c1106000000000000000000000000000000000000000000000000000000000000070b141b222730363e444c52545b575550483e32281e130800000000000000000b17232e38424a505f606060606060606060606060606060605e5c564e44392e23170b000000000000000000000000000000000000000000000000000000000000060b12181d1f272c2f35393a3e4347484b4d4c5254555656575858585756565553514b4d4b4847423d3a39352f2b271f1c18120b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181d24292d3338393d4347484c4a5053555656575858585756565553504a4c4847433c3937332d28231c18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d141a1d23282c2f35393a3e4246484a4d4b51535455565757585858575756545350494c4a4745413b3a37312c29241d19140d08020000000000000000000000000000000000000000000000000000000000000004101c2834404a546773808d9aa6acacacacac9f92867a6d6053473a2d2014070f1b27333f49536673808d99a6acacacacaca096877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4c6c6c6c6beb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000010b151f2a343c46525e68707d87939fa7b1bcc5d0c6c6d0c4bbafa59f92867c6f675c51473e32291d140a000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7dfd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c00000000000000060f17232e38424d56606b727f8c939ea8b2bcc6d0d1c6bcb2a89e938b7f726a60564c41382d22190e05000000000000000000000915222f3c4855626f7b8896a0acb9c5ced0d2d2d1cfcecec8c5c4bfbab6afaca49f9691877f746f645b52483e342b1f160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e1720282f353f464e545a61666c71777c80858a8e9297989b9fa2a9a8abadb3b5b9babfc5c7cad0d2cec8c4bdb9b3ada8a099928c827b6e685e564c433a2f23190b0200000000000000000000000000000000000000000000000004101c2834404b54606c7884919eabb5c0ccd2c6b9ac9f93877b6e61544a3f34281c0a0000000000000000000000000000000000000000000000000000000000030b12181d262d333b424650565e616864615a50443a3024190d0400000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6760564b3f33271b0e00000000000000000000000000000000000000000000000000000000020a11171d24292c32383a4145474a4e5355585a565d606263636465656564636362605d555a5855534e4a4745413a37322c29231d17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d151d24292f35383f44464a4e535559545b606162636464656564636261605b545855534e4946443f38342e28231c150c0701000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c13191f252a2e34383a4145474b4d5354575a555c60616262636465656464636261605b53595654524c4847433c39352f2a251e19130c04000000000000000000000000000000000000000000000000000000000000000c18232e3e4a5764717e8a97a9b3beb9bbafa399897c6f6256493c2f2316080b17222d3d4a5764707d8a97a8b2bdb9bdb2a896897d7063564a3d3023170900000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0d2d2cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000007121d27313c46515b616d7a849199a4afb9c2ced7ddd2c7bdb2a99e938b7f726a5f554b40352c20170b02000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c000000000000040d182128343f4a545e686f7d87929fa5afbac3ced7cbbfb4aaa0968f81756d62584e443a2f261b10070000000000000000000005111e2a36414d5666727f8c99a8b2bdc0c2c3c5c6cad0d1d2d4d1d0cac7c0bbb6afa8a199928b81746d635a50473d31281d13070000000000000000000000000000000000000000000000000000000000000000000000000000000000040d172029323a4145515860626c70787e83888d92979b9ea1a9a8abadb3b5b8b9bec2c5c7cbd1d2cec9c5c3bcb8b2ada9a19e9691877f786e695e564d443a31281e1007000000000000000000000000000000000000000000000000020c17202c3845515c66717e8b96a1acbdc7d2c8bcb1a79c8f8275695e5342382e23170c00000000000000000000000000000000000000000000000000000001070c151c23282f383f444d525a61686d75706c61564c4135291f160c01000000000006121f2b3844505c6676797979797979797979797979797979797772675c4f43362a1d11000000000000000000000000000000000000000000000000000001080b141c22282f35393d43484c525457585f62656769686d6f6f707171727171706f6f6d67696765625f575754514b47433d38342f27221b140b07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d14191f272f353940454a505356585f626568666c6e6f707171727171706f6e6c666865625f5856535049444039342e271e18130c04000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181e25293136394045464c525458575e61646669676d6e6e6f707172727171706f6e6c65686663605d5655534e4745413a363029241e160e080200000000000000000000000000000000000000000000000000000000000715212e3b4854616e7b8797a1adb9c6c0b5ab988b7f7265584c3f2f24190d0614212e3b4754616e7a8796a1adb9c5bfb2a6998c7f7366594c403025190e02000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000050f18242f39434e58626d75828f96a1abb5c0cbd4e0d7ccc0b5aba1968f82756d62584e43392e231a0e0500000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c0000000000010c161f2a333c44505c666e7a859199a3afb7c1ccd5ccc3baaea39891847a6d605b51463d32281d140a00000000000000000000000714202d3946525e687683909da9b2b3b4b5b7b8babec0c4c5c9ced3d6d2ccc7c0bbb2aba39f938c7f736c61594f433a2f24180d03000000000000000000000000000000000000000000000000000000000000000000000000000000030c161f29323b444c525b626a6f767d838a90959a9ea1a9abadb3b5b8babec2c5c6cacfd2d1cec9c5c4bdb9b7b1aca9a19e97918c847c726c665e574d443b32281f160c0000000000000000000000000000000000000000000000000008131e2935414b55606d7984919ea8b2bdd0d1c5b8aca0958a7d7063574d4230261c11060000000000000000000000000000000000000000000000000000030b12181e272e343c414950575e616c717a817e70685d52453e31281d130700000000000713202d3a4653606d788686868686868686868686868686868684776b5e5144382b1e1100000000000000000000000000000000000000000000000000040c13191d262d33394045474f54565d6064676a6f727476787a7b7c7d7d7e7f7e7d7d7c7b7a787674716e6a6764605d55544e47454039332d261d18130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e171e252a313940454b51545b6063676a6f727477797b7c7d7d7e7f7e7d7d7c7b797774726f6a6763605b53514a4440393029241d160d0500000000000000000000000000000000000000000000000000000000000000000000000000060d151d242930353b42464b5153565d606569696e707376787a7a7b7c7d7e7e7e7e7d7d7c7a79777572706d6865625f5854514b46413b3530282019140d05000000000000000000000000000000000000000000000000000000000714212d3a46535e697885919eabb8c4c1b4a89b8e817568554c4135291d110714202d3a46525e697884919eabb8c4c2b5a89b8f827568564d42362a1e1105000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000020b17212935404b555f6a727f8b939ea9b2bdc7d2ddd7cec5bbafa49991847a6d615b51463c30271d11080000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c000000000007131d28313c46505a606d78829097a1abb5c0c9d3cec3baafa59f92867c6f685d52493f342b20160b0200000000000000000000000814212e3b4754616e7b87939fa5a5a6a7a8aaabadb3b3b7b9bdc4c7cdd5d8d2ccc4bdb5aea59c928a7e716b60554b4135291f14090000000000000000000000000000000000000000000000000000000000000000000000000000000b151e28313b444c565d606d727c838a90959da0a7abadb3b8b9bec2c5c6cad0d1d1cfcac6c5c2bdb9b7b2acaba7a09d96918b857f796f6a605b544d453b322920160d04000000000000000000000000000000000000000000000000030c1925303945515d67727f8b96a1acbac4cec9bdb2a89d9083786c6053463b3120150a0000000000000000000000000000000000000000000000000002080d151d2429303940444e535b60696e757e858e857a6d60594f433a2f24180d03000000000713202d3a4653606d798693939393939393939393939393939184776b5e5144382b1e11000000000000000000000000000000000000000000000000060d161e24292f383f444b5153596063686d7174787b7e808285878889898a8b8b8b8a898988868482807e7b7874706d6762605853514b443f382f29241d160d0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000081019202930363e434b51555d60666c7074787c7f8183858889898a8b8b8b8a8989888583817f7b77736f6c65605c54514a423d352f281f170f0700000000000000000000000000000000000000000000000000000000000000000000020a11171f272f353a41464d53555c6064686d7175787b7d808285868788898a8a8b8b8b8a8a89878684827f7d7a76726e6a65605d55524c46413a322a251e170e0700000000000000000000000000000000000000000000000000000005121e2a36424d576875828f9ba8b5c2c4b7aa9d918477675d5145392c201306111e2a36424d566875828f9ba8b5c2c4b8ab9e918578695e52463a2d201407000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000a141d29333b45515d676f7c86929fa6b0bbc4d0d9dbd0c5bcb1a79f93877d70685e52493f342a1e150b000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c00000000071118242f3a434e58616c74808d949fa9b3bdc7d1d0c6bcb2a89e938b7f726a5f564c41372d22190e040000000000000000000000000b1825323e4b5865717e8b9a989899999a9b9d9fa2a9a7aaacb2b7bbc2c9cfd6d8cfc6bfbbada49f92867d6f675d51453c31261a0e050000000000000000000000000000000000000000000000000000000000000000000000000007121d27303a434c565e686d757f8790959da0a7acb1b8b9bec5c6c9cfd2d2cfc9c5c4c1beb9b8b5b2acaba8a19e9995908b847f79726d676058504a423b332920170e04000000000000000000000000000000000000000000000000000b151e2a36414c56606d7a85929ea8b2bdccd2c5b9aca0968a7e71655b5044372b1f1203000000000000000000000000000000000000000000000000040c13191f272f353d424a51575f656c727b828a92978e81746b61554b4135291f150b010000000713202d3a4653606d7986939f9f9f9f9f9f9f9f9f9f9f9f9e9184776b5e5144382b1e1100000000000000000000000000000000000000000000020a11171f282f353d424a50555d60656b6f757a7d8184888b8d8f9196959696979898989796969596918f8d8b8884817d7a746f6a65605c555049413d352f281f17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000109121a222a323b41464f555d60676d72787d8084888c8e9092989596979798989796959892908e8b8884807c78716d66605c544e45403a3129211910080000000000000000000000000000000000000000000000000000000000000000050b141c2228313940454c52575e61676d70757a7e8285878a8d8f929794959596979898979796959992918e8c8986837f7b77716d67615e56524c443e363029201910090000000000000000000000000000000000000000000000000000020e1a25313f4c5966727f8c99abb5c0c6b9ac9f93867a6d6054473a2d2114070e1925303f4c5966727f8c99abb5c0c5b9ada196877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000006111c262f3b45505a606d79839098a3aeb8c1cdd6ded6cabfb4aa9f958d80736b60564c41372d22180c03000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c000000050e19232935404b555f6a717e8a929da6b0bbc4cfd6cabfb4aaa0968e81756d62584e433a2f251b1007000000000000000000000000030f1c2936424f5c6975828b8b8b8c8c8d8d8f909297969a9ea0a8abb0b9bec4cdd6d8d1cbbfbaaea3989185796d60574d42372b21160b000000000000000000000000000000000000000000000000000000000000000000000000000c18232e39424b555e686e7a828c92999fa7acb1b8bcc3c6c9cfd2d0cac6c5c1bdb9b7b4b3adaba8a8a19e9a96918d88837e79726d67605d554e443f382f2921170e050000000000000000000000000000000000000000000000000007121d27303946525e6873808c97a1adbac4cec8bcb1a79e9184786d6053493f33271b0f030000000000000000000000000000000000000000000002090e161e2429313940454e545c606a6e777f868f949e9d938a7d70675d51453d31271d12070000000713202d3a4653606d798693a0acacacacacacacacacacaa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000030b141c2228313a41454f545b60676d72777c81868a8e9196989a9c9ea1a9a2a3a4a4a5a4a4a3a2a8a19e9c9a9896918d8a86817c77716d67605b534f45403a3127221b140b03000000000000000000000000000000000000000000000000000000000000000000000000000009131b242c343c444c525961676d73797f84898d9196989b9d9fa2aaa3a4a4a5a4a4a3aaa29f9d9b9896918d89847e79726d666058514b433b332b221a1208000000000000000000000000000000000000000000000000000000000000070e161d262d333e434b51565e61696e74797d82868b8f929797999c9ea1a9a1a2a3a4a5a5a4a4a3aba39f9e9b9999928f8c88837e7a746e68615d565046413b322b221b12090100000000000000000000000000000000000000000000000000091623303d495663707c8999a4afbbc7bbafa49a897c706356493d30231608091623303d495663707c8999a4afbbc7bdb2a9978a7d7064574a3d31241709000000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000040d17222d38424d57616c74808d95a0aab4bfcad3dfd6ccc4baaea2989083786d60594f443a30241b100600000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c0000030c17202b353d45515d676e7c86929fa4aeb8c2cdd5cbc3baaea2989184796d605b51463c31281e130900000000000000000000000000000b1825323e4b5865717e7e7f7f7f7f8081828485878a8d91969c9fa6adb3bbc4ccd5dcd7cbbfb4aaa1978d8073695f53463d33271c1003000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b545d676e7a848f939fa3abb1b8bcc3c8ced2d0cac6c5bebab8b4b2adaba7a9a19e9b9896918d8984807b77726d67605d55514b433c332d261d170f0500000000000000000000000000000000000000000000000000030d18232e39424e58616d7a86929fa9b3becccfc7b8aca0958b7e71665c5041382d22170b00000000000000000000000000000000000000000000060b141a202830353d434b515860666d737b838b92989ea6a59e9184796d60594f43392f24180c0400000713202d3a4653606d798693a0acb9b9b9b9b9b9b9b9b7aa9e9184776b5e5144382b1e110000000000000000000000000000000000000000040c151d262d333d434c525960666c71797e83898e92999a9ea1a8a7a9abadb2afb0b0b1b2b1b0b0afb2adaba9a7a8a19e9a98928e89837e79716c656059514b433d332d261d150c0300000000000000000000000000000000000000000000000000000000000000000000000009121b252d363e464e565e616b707980858b91969a9ea1a8a7aaacaeb4b0b0b1b2b1b0b0b4aeacaaa7a8a09e9a95918b847f786f6a605d554d453d342c241a11080000000000000000000000000000000000000000000000000000000007101920282f383f444f555d60686d737b81858a8f92989c9ea1a9a6a9abadb3aeafb0b1b1b1b1b0b0b4aeacaaa8aba39f9c9895908b86807a736d68615a524c443d342d241b1309010000000000000000000000000000000000000000000000000714212d3a4754606d7a86939facb9c6c0b6ac998c7f7266594c3f3025190d0714212d3a4754606d7a86939facb9c6bfb3a6998c807366594d4031261a0e020000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000010c161f28333f4a545e69707d8a929da7b1bcc6d0dcd9cfc4baafa59f92867b6e665c51473d32281e12090000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c00000a151e29323d47515b606d79839198a2aeb6c0cad4cec3b9afa59f92867c6f675d51493f342a1f160c0100000000000000000000000000000b1724313d4a56626c71727272727273747577787a7d80848990949ea1a9b2bac4ccd5dcd1c6bcb3a99f92867b6e61594f44382c1f140900000000000000000000000000000000000000000000000000000000000000000000040e18222c3845515c666d798390969ea5aeb5bdc2c8ced4cdc8c5bebab8b3adaba8a8a19e9b9897928f8b8884807c78736f6a65605c55514b4540393128221c140b0500000000000000000000000000000000000000000000000000010b151f2834404b545f6a74808d98a2aebbc5cfc7bdb0a69d9183786d60544a3f2f261b11060000000000000000000000000000000000000000020a11171f252a323a41464f555d606a6f787f8690949fa2aab0ada1968d81746b60554b40352920160a00000713202d3a4653606d798693a0acb9c6c6c6c6c6c6c4b7aa9e9184776b5e5144382b1e1100000000000000000000000000000000000000050d161e272f383f444f565d606b70787e848b90959b9fa3ababadb2b3b5b8b9bdbcbcbdbebebebdbcbcbdb9b7b5b3b2acabaaa39f9b95908b847e786f6b605d554e443f382f261e150d040000000000000000000000000000000000000000000000000000000000000000000008121b242d373f4850585f686e757d848c92979ea0a8abacb2b4b6b8babfbcbdbebebebdbcbfbab8b6b4b2acaaa7a09d96918c837c746d675e574f473e362c231a11070000000000000000000000000000000000000000000000000000071019222b323a424a505961676d727a80868e92979b9fa3aaabadb3b3b5b8b9bebbbcbdbdbebebebdbdbfbab9b7b5b5afaca9a79f9d98928d86807a716c615e564e463f362d251b13090000000000000000000000000000000000000000000000000613202c3945515d677784909daab7c3c1b5a89b8e827568564c41362a1d110613202c3945515d677784919daab7c4c2b5a99c8f827669574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000008131e28313a44505b666e7b85929ea4aeb9c3ced8dcd1c7bdb2a89e938b7e71695f544a40352b20160c000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c0006111c26303b444f59626d75818e95a0aab4bfc8d2d0c6bcb1a79e938b7e716a5f554b41372d22190d040000000000000000000000000000000915212e3a45505a626565656565666667686a686d7074777c838a9197a1a8b2bac4cfd9d8cfc4baaea3998f82756b6054483b31261a0e000000000000000000000000000000000000000000000000000000000000000000000a15202a36424d57606d78828f95a0a8afbbbfc6cfd4cfc9c3bcb8b3adaba9a29f9b9796918e8b8885827f7b78746f6a66625f5853514b454039352f271f17110a02000000000000000000000000000000000000000000000000000007121d27313945515c666f7c86929faab4bfcdcbc0b5ab9f948a7d70665c5042382e1d140a0000000000000000000000000000000000000000060b141b222730363e444c525960676d737c838c92989fa6aeb4bcb2a89f93887d70675d51453d32271b0f03000713202d3a4653606d798693a0acb9c6d2d2d2d2d1c4b7aa9e9184776b5e5144382b1e11000000000000000000000000000000000000050e171f283039424a505960686d757d838b91969da0a7acaeb4b7b9bdc0c2c4c5c9cfc9cacbcbcbcac9cfc9c5c4c2c0bdb9b7b4aeaca7a09d96918a837d746d6760585049413830271f160e04000000000000000000000000000000000000000000000000000000000000000007111a242d373f49515a616a6f7a828a91969ea2a9acb2b7b9bdc1c3c5c6cad0cacacbcbcad0cac7c5c3c1bdb9b7b1aca8a19e95908780796e69605950483e352c23191006000000000000000000000000000000000000000000000000060f19222b343d444c545b606b70797f858d92989fa2a9acaeb4b8b9bec0c2c5c6c9cfc8c9cacbcbcacad1cbc7c5c4c1c0bbb9b6b1abaaa29f98928d857e756e68605850483f372d251b1209000000000000000000000000000000000000000000000004111d2935414b556774818e9aa7b4c1c4b7ab9e918478685e5246392d201307111d2935414b556874818e9ba7b4c1c5b8ab9e928578695f53463a2d2114070000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000060f19242f3a434e58606c78828f97a2adb6c0cbd5dfd7cbc0b5aba1968e81756c61574d42392e23190e04000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c060f17232e38424c56606b727f8c939ea8b1bcc5d0d6cabfb4aaa0958e81746c62584e433a2f251b10070000000000000000000000000000000005111d29343f4850565858585859595a5a5c565d6063676a6f767d859196a0a8b2bdc7d1dcd7cbbfb4ab9e94897d7063574d42362a1d12070000000000000000000000000000000000000000000000000000000000000000030f1b26323a46535f6973808d949fa7b1bac1cbd1d4cdc4beb9b1aca9a29f9a97928e8b8884817e7b7975726e696762605855534e46454039352f29241d150d0b050000000000000000000000000000000000000000000000000000060f18242f39434e58606d79839099a3aebcc5d0c7bbafa3998f82766b61544a3f30261c0b02000000000000000000000000000000000000030a11171d262d333b424650565d616b7079808790959fa3aab0babec4bbafa49a9184796d60584e43382b1f1306000713202d3a4653606d798693a0acb9c6d3dfdfddd1c4b7aa9e9184776b5e5144382b1e110000000000000000000000000000000000040d172029313a424b545b606b6f7a818990959ea1a8acb1b9babfc4c5c9cfcfd1d2d5dad5d5d4d3d4d5d6dad5d2d1cfcec9c5c4bfbab8b1aca8a19e95908981796f6a605b534a4239312820160d04000000000000000000000000000000000000000000000000000000000000050e19232c363f49515b626c717c848f939ea1a8adb3b9bdc4c5c9ced0d2d3d6dbd6d3d2d2d4d7d6d3d2d0cec9c5c3bcb8b2ada7a099938d837b6f6b615a50473e352b22180d0300000000000000000000000000000000000000000000050f18222b343d464e565e666c737d848c92979fa3aaadb3b9babfc5c6c9cfcfd1d2d5d4d2d2d1d0d0d1d2d4d7d3d2d1d1cbc7c5c2bcb8b4aeaaa29f97928a827a6f6a625a51493f372d241b100700000000000000000000000000000000000000000000010d18242f3e4b5865717e8b98aab4bfc5b9aca196877a6d6154473a2e2114070d18242f3f4b5865727e8b98aab4bfc6b9ada297887b6e6155483b2e2215060000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000030c18212935414c56606a737f8c949fa9b3bec8d2ddd7cdc5bbafa39991847a6d605a50453c30271c110700000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c0d182128343f4a545e686f7d87929fa5afbac3ced5cbc3baaea2989183796d605a50463c31281d12090000000000000000000000000000000000010c17222d363f454a4b4b4c4c4c4c4d4e4f4c5254575860626c707b849196a0abb5c0cbd7dcd1c6bdb0a69c8f8276695f5346392e23180c000000000000000000000000000000000000000000000000000000000000000006131f2b37434e58616e7b86929fa6b0b9c3ccd7d4cac2bbb3ada7a09d97928d8985817e7b7874716e6c6565625f5756544e4847433c38342e2924222323201c160f08000000000000000000000000000000000000000000000000040e18212935404b55606a73808d95a0abb4bfcec9bdb2a89f92877c6f62594f42382e1e140a000000000000000000000000000000000001070c151c23282f383f444d525a61686d747d848d9399a0a7aeb4bcc2caccc0b6aca0968d80736a6054473b2e221508000713202d3a4653606d798693a0acb9c6d3dfeaddd1c4b7aa9e9184776b5e5144382b1e1100000000000000000000000000000000030c161f29323a434b545c666c737c848e939da0a7adb2b8bcc3c7cbd1d2d5d6d3d2cfcdcac9c8c7c7c7c8c9cbcdcfd2d3d7d5d2d0cbc7c3bcb8b2aca79f9d938e847c726c655c544b433a32281f160c0300000000000000000000000000000000000000000000000000000000020b17202b353e48515b626d727e8691969ea5acb2b9bec5c9ced2d5d6d3d2cecbd0cac6c5c6c7ccd2ced1d2d5d5d2cec8c4bdb9b1aba49f9590857d716c61594f473d342a1f150b010000000000000000000000000000000000000000040e17212a343d464e5860686d78808891969fa2a9aeb4babec5c7cbd1d2d5d2d1ced2ccc8c6c5c4c3c4c5c6c8ccd2cfd2d3d6d3d2cdc8c6bfbab4aea9a19e948f847c716c625b51493f362d22190e05000000000000000000000000000000000000000000000715222f3c4855626f7b8898a2aebac6bdb2a8968a7d7063574a3d302417090716222f3c4955626f7c8898a3aebac7beb3a9978a7e7164574b3e2e23170b0000000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000b151e2a333c45525d686f7c87929fa6b0bbc5cfdbdbd0c5bbb0a69f92877c6f685d52483e332a1e150b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f3225180c161f2a333c44505c666e7a859199a3afb7c1ccd5cec3b9afa59f92867c6e675d51483f342a1f160c0000000000000000000000000000000000000006111b242d343a3d3e3f3f3f3f3f4041424145474a4e545961696e7b849199a3afbbc3ced9d8cfc1b9ac9f93877b6e61544b4034281c1004000000000000000000000000000000000000000000000000000000000000000815212e3b47535f6a75828f99a3aeb8c2cbd5d4cac2b8b0a9a19e95908b85817d7975716e69686562605b5355534d4948433d3a37312c28262b2e2f302f2c27211a110800000000000000000000000000000000000000000000030c16202a333c45515d676f7c87929fa7b1bdc6ccc4b9aca1968d80736a5f54473e30261c0c0200000000000000000000000000000000030b12181e262e343c414950575e616c717a818991969fa4abb1babfc6cfd0c7c0bbb2a89f93877c6f6256493c2f231609000713202d3a4653606d798693a0acb9c6d3dfeaddd1c4b7aa9e9184776b5e5144382b1e11000000000000000000000000000000020b151e28313a444c555d666d787f8791969ea5acb1b9bdc4c8ced3d7d6d3d0cac6c5c2c0bebcbbbabababbbcbec0c3c5c7cbd1d3d6d6d3cdc8c4bdb9b1aba59d9691877f776d665d554c443a31281e150a000000000000000000000000000000000000000000000000000000000a141d29323d47505a626d727f8a9298a1a8afb9bdc4cacfd5d9d4d0cac6c5c1bebbbfbab8b9bbc0bec1c5c6c9cfd4d8d4cfc9c3bdb5afa7a09792877e716b61594f463c31271d120700000000000000000000000000000000000000020c162029333c464e58606a6f7a828c939aa1a9adb3babfc6cad0d3d5d2cfc9c5c4c1bfc0bbb9b8b7b7b7b8b9bbc0bfc2c5c7cbd0d3d8d4d0cac6bfbab3ada69e9691867e726d625b51483f342b20170d020000000000000000000000000000000000000000000613202d394653606c7985929facb8c5bfb2a6998c7f7366594c4030251a0e0713202d3a4653606d7986929facb8c5c0b3a69a8d807367544a3f34281c100300000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000007121d27303c45505a606d7a849199a3afb8c2cdd7ded6cabeb3a99f948c7f736a60564c41362d21180c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f322518131d28313c45505a606d78829097a1abb5c0c9d3d0c5bcb1a79d938b7e716a5f554b40362d22180d04000000000000000000000000000000000000000009121b22292e3132323232323333342f35393a3d43474f575f696f7c87929fa7b1bcc8d4e0d4c8bbafa49a8d8073665c5145382c1f1308000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c88939eabb4bfcad4d7cec2b8b0a69f97918b837e7974706d6664615f5758555350494847423c3b38322e2b26222a31373a3c3d3c38332c231a0c030000000000000000000000000000000000000000000b151e28323c454f59606d79849199a3afb9c3cfc4baafa59e9184796d60584e43352c1e140a00000000000000000000000000000000070d151d242930383f444d535b60696e757e858e939ea0a8afb5bdc3cbd1ccc4beb6afa8a099928c8275685b4f4235281c0f000713202d3a4653606d798693a0acb9c6d3dfeaddd1c4b7aa9e9184776b5e5144382b1e110000000000000000000000000000000a141d27303a434c565e676d78818c9299a1a8afb8bcc3c9cfd4d9d5d0cac6c5bfbab8b6b3b1afaeaeadaeaeafb1b4b6b9babfc5c7cbd0d6d9d4cec9c2bcb8afa8a099928c81786d675d564c433930261c1106000000000000000000000000000000000000000000000000000006111b262f3a444f59616c727f8b919fa2aab2bac1c9ced6dbd6cec8c5bebab8b4b2afb4aeacacafb5b1b4b8b9bec5c7cdd5dad5d0c7c0bbb1a9a19992877d706b60584e43392f24180e0500000000000000000000000000000000000008131e28323b454e58606a6f7c848f949fa4acb2babec5cbd1d6d4cfc9c5c4bdb9b7b5b2b6afacababaaaaabacafb6b2b6b8babfc6c7cdd4d7d6d0cac5beb9b0a9a198928b7f726d625a50463d32291e140800000000000000000000000000000000000000000006121f2b3844505b6676838f9ca9b6c2c2b5a89c8f827569574d42362a1e1206121f2c3844515c667683909da9b6c3c3b6a99c908376665c5044382b1f120600000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000050e18232e39424d57626c75818e96a1abb5c0cad4dfd5ccc3baada2979082786d60584e433a2f241b0f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f32251818242f3a434e57616c73808d949fa9b2bdc7d1d6cabeb4aaa0958e81746c61584e43392f241b1006000000000000000000000000000000000000000000000911171d2124252525252626272724292c2d32383e454d57606a73808d95a0acb8c3ced9d8ccc0b6ac9e9285796d6053463a3025190d01000000000000000000000000000000000000000000000000000000000005121e2a36424d576673808c99a5afbdc6d1dbd0c5bcb0a69f9490857e78716d6763605c5455534d4b4846443f3b3a37312e2c27211f202a343c4347484a48443d352c1e150b000000000000000000000000000000000000000007121d27303a444d57606b74808d96a0abb5c0cbc6bdb2a89e93897d70675d51463c32231a0c020000000000000000000000000000000711191f272f353c424a50575f656c727b828a91979da5acb2bbc0c7d0cfc9c0bab2aca49f96918780786d6053463a2d201307000713202d3a4653606d798693a0acb9c6d3dededdd1c4b7aa9e9184776b5e5144382b1e11000000000000000000000000000006111b262f39424c565e686d79828e939fa3abb2bac1c8cdd5dad6cfc9c5bebab8b4aeaca9a6a4a2a2a1a0a1a2a3a4a7a9acaeb4b8babfc6cad0d7dad5cdc8c1bab2aba39f938e82796d685d554b42382e23171007000000000000000000000000000000000000000000000000000b17222d38414c56606b717e87939fa3aeb4bcc4ccd5dad7cfcac3bcb8b4aeaba8a5a2aaa29f9fa4aba4a7abadb3b8bcc2c9cfd6d9d2ccc3bbb3aba39992867d6f6a5f554b40352920160c0200000000000000000000000000000000040e1924303a444d575f6a6f7d8691969fa6afb6bec4cad0d7d5cec8c4bdb9b8b2adaba8a5aca49f9f9e9d9d9e9fa4aca5a9acaeb4b7bbc2c7ccd2d9d6cfc9c1bbb2aaa39f918b7f726c62584e443b3025190e040000000000000000000000000000000000000000030f1c28333f4a546673808d99a6b3c0c4b8ab9e918578695e52463a2d201407101c2834404a546774808d9aa7b3c0c5b8ac9f9285796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000020b17202834404b545f69717e8b939ea8b2bdc7d1dcd8cfc3baafa59f92857b6e665c50463d31281e120900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f322519222935404b555f6a717e8a929da6b0bbc4cfd5cbc3baaea2989083796d605a50463c31281d1209000000000000000000000000000000000000000000000000060c1115171818191919191a1b191d2021272b333c454e58606d7983919da8b2bdc8d4ddd2c7b9ada1978a7e7164564c41362a1d110500000000000000000000000000000000000000000000000000000000000714212d3a46535e697784909daab7c1cfd8d6cabeb4aa9f948f827a716c65605d5553514a4846423e3b3937332d2e2b26221f1b151e28323c464e535556554f473d30271c1207000000000000000000000000000000000000091218232e39424c565f69707d88939fa8b2bdc7cbbfb5aba0968e81746b61554b40342a201108000000000000000000000000000000020b19232b313940454e545c60696e777e858f939ea1a9afb9bdc4ccd2cdc4bdb9afa8a19a938d847c736d665c5145382c1f1306000713202d3a4653606d798693a0acb9c6d1d1d1d1d1c4b7aa9e9184776b5e5144382b1e1100000000000000000000000000040e17222d38414b545d686d7a838f949ea5afb5bdc4ccd4d9d7d0cac4bdb9b3adabaaa29f9c9a9796959494949596989a9c9fa3aaacaeb4babec5cbd1d9d8d4ccc3bdb5aea59e948f837a6d675d544a3f342822190d040000000000000000000000000000000000000000000000030f1b27333f49535e68707d879299a4afbabfc6ced6ddd4cdc5bebab1acaaa29f9b9895949892939995989b9ea1a9abb1b9bec4cdd3ddd7cdc5bdb4aba29892857c6f675d51453e32281e1308000000000000000000000000000000020c16202935414c565e696e7c859298a1a8b0bbc0c7d0d6d5cec9c3bcb8b2adaba8a19e9b99969a939291909192939a95999c9fa3aaabb0b9bbc0c7d0d6dad5cdc4bcb4aea39b918b7e716a60564c41362a20160c0200000000000000000000000000000000000000000b17222d3d4a5764707d8a97a8b2bdc6b9ada197877b6e6154483b2e2115060c18232e3e4b5764717e8a97a9b3bec6baaea298887b6f6255483c2f22150700000000000000000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000a141d29323a45515c666e7b86929fa5afbac4cfd9dcd1c6bdb2a89d938a7e71695e544a3f342b1f160c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584b3f342a212b343d45515d676e7c86929fa4aeb8c2cdd6cec3b9aea49f92867b6e675d51483e342a1f160c00000000000000000000000000000000000000000000000000000105090b0b0c0c0c0c0c0d080d1113141b212a333d45515c66717e8a96a0acb8c4cfdad5c9beb3a99c8f8276685e5246392d20130800000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8795a0acb8c5d3dfd3c6baaea2988f82796d68605b53514b4644403b3a36312f2d2b2722211e1a1513151e26303a444e585f626360594f42392e23180c020000000000000000000000000000000009121b242834404b545e686e7b85929aa4afbac3ccc3bbaea3999184796d60594f43392f22190e000000000000000000000000000000000a141d2b353d434b515860666d727b828b92989ea6adb3bbc1c9cecfc9c1bbb2ada59d96918880796f6a605c544b4034281c1004000713202d3a4653606d798693a0acb9c4c4c4c4c4c4c4b7aa9e9184776b5e5144382b1e11000000000000000000000000020c162027333f49535c666d7a8390959fa6afbbc0c7cfd6dcd7cec6bfbab2ada9a29f9a98928f8d8b898887878788898b8d9092989b9fa3aaadb3bbc0c7cfd4ddd5cfc6bfbbafa69e959083796d665c504440342b1f160c01000000000000000000000000000000000000000000020b19232b3744505b656d7a859199a3abb5c0cad0d8dbd2cbc2bbb3ada7a09d98928e8b888786858687888b8e92979d9fa7adb2bbc2cad2dad6cfc6bdb4aaa2979183796d605a50443a3025190d04000000000000000000000000000008131e28323a46525d686e7b849197a2aab2bac2ccd2d9d6ccc4bdb9b1aca8a19e9a96918e8c89878685848484858687898c8f92989c9fa6acafb5bdc4ccd7dcd6cfc6bfbaada39f92877c6f685e52463e32281e130800000000000000000000000000020608080a0a0a0614212e3b4754616e7a8796a1acb9c5beb3a9978a7d7064574a3d2d22170b0715222e3b4855616e7b8897a2adb9c6bfb4aa978b7e7164584b3e2e23180c0a0a0a0a0a0a0a0a0a0a0a0a08080602000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000006111b262f3a444f59606d79839098a2aeb7c1ccd6dfd7cbbfb4aba0968e81746c61574d42382e22190d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e7265584e463c3329323d47515b606d79839198a2aeb6c0cad4d0c5bcb1a79d928a7e71695f554b40362d22180d0400000000000000000000000000000000000000000000000000000000000000000000000000000104070a0f18212834404b54606c7884919ea9b3bec9d5dacfc5b9ac9f92867a6d6154473a3025190d01000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a7b1bcc8d4ded2c5b8ab9f92857b6e675e56504945403a38342e2d2a2622201f1b1714120e0f171e273038424c565f6a6f706b60544a4034281e13080000000000000000000000000000000a121b242d363e45515c666d7a849197a1acb6c0ccc3b9b0a69f92877c6f675d51473d31281d100700000000000000000000000000000006111b262f3d474f555d606a6f787f8690949fa2aab0b9bec4cdd5cdc5beb9afa9a19e938e847d746d676058514b42392e23180c00000713202d3a4653606d798693a0acb8b8b8b8b8b8b8b8b7aa9e9184776b5e5144382b1e1100000000000000000000000008131e28323a44505b656d78828f95a0a7b0b8c1cbd1d9d9d1cbc1bcb4aea8a19e97928e8a8583807e7c7b7b7a7b7b7c7e8183868a8e92989fa2a9afb5bdc3cbd7dcd8d1cbc1b8b0a79f958f82786d605b51463d31281e13080000000000000000000000000000000000000000000a141d2a36424d57606c77828f97a1abb5bdc7d2dbdbd2c9c0b9b1a9a29f95908b85817f7c7a7979797a7b7e81858a90959ea1a9b0b8c0c8d1dad8cfc6bcb3a9a0958e81746c61564c41362a20150a00000000000000000000000000010d1924303a44505a616d7a839196a1a9b3bcc4ccd8d8d0cac0bab2aca7a09d96918d8984827f7d7a797878777778797a7c7f83868a8f949b9fa4abb2bac1cbd1d9d8d1cbbfbaaea39991847a6e615a50443a3024190d020000000000000000000003090e1214151616161616202d3946525e687884919eabb7c4c0b3a6998d80736653493f33271b161616212d3a46535f697885929eabb8c5c0b4a79a8d817467544b4034281c161616161616161616161616161514120f0a0300000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000040d17222d38414c56606b73808d95a0aab4bfc9d3ded6cdc5baaea3999184796d605a50453b30261c1007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbfb2a5988c7f726a60584e453b333b444f59626d75818e95a0aab4bec8d2d6cabeb3a9a0958d80746c61574d43392f241b0f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f18232e3944505b66717e8b97a1adb9c6d2dfd3c7bbafa3998b7e7165564c41362a1d1105000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1beced9dacdc1b4a79a8e8174695e554c443f38352f2c2823211e1a1513120f0b080d141921293039424a545d686f7c7d70665c51443a3025190d030000000000000000000000000006131c242d363e48525b606d78829096a0a9b3bec7c5bbb1a79e948c7f726a60554b41352c1f160c000000000000000000000000000000000b17222d38414f5960676d737c838c92989fa6aeb3bcc1c9cfd0cac1bbb3ada59e96918a8179706b605d554e45403930271d120700000713202d3a4653606d798693a0ababababababababababaa9e9184776b5e5144382b1e110000000000000000000000040d1925303a444f59606c77818e949fa7b1b9c2cad7dcd7cfc7c0bbb0aaa29f96918c85817d797673716f6f6e6d6e6f707174767a7e82868d92979fa3abb1b9c0cbd1d9dcd7cac1b9b1a79e948e81746d63594f433a2f24190d030000000000000000000000000000000000000006111b262f3846535e69727f8c949fa9b3bdc7d0d9dbd2c9c0b7afa79f97928b837e7a75726f6d6d666c6d6f7174797e838a91979fa6aeb6c0c8d1dbd8cec5bcb1a79d938a7e71685e52463c32261b0f0500000000000000000000000005111d2935414c56616c76828f95a0a8b2bbc5ced6d7cec6bfbaafa8a09e95908a84807c787572706e6c666b6a6a666d6d6f7276797d82898f9399a0a8afbbc0c7cfd9dcd7cbbfb4aba1968f82766c61564c4135291e1308000000000000000000060e151a1e21222323232323232a36414c566875828e9ba8b5c1c2b6a99c8f8276655b5044372b23232323232b37424d576976828f9ca9b5c2c3b6aa9d908377665c5145382c232323232323232323232323232322211f1a150e06000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000010c161f27333f49535e68707d88939fa7b1bcc6d0dbdacfc5bbb0a69f92867c6f675d51483e33291e140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f92867c6f6a5f574d453b424c56606b727f8b939ea7b1bcc5d0d4cbc2baada2979083796d605a50453c31271d120900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d28333f4a54606d7985919eabb8c2cdd8d7cbc0b5ab9c8f8276685e5246392d201408000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5b2bfccd8d6cabdb0a3978a7d7064574d433a332d29241f1c1814120e0906060a0f13191f252a333b424b545c666d7a8484786d60564c4135292015090000000000000000000000020a1117252d373f48505a636d75818e949fa8b2bbc5c7bdb3a9a0958f82776c60584e433a2f231a0d04000000000000000000000000000000030f1b27333f4953606b7079808790959fa3aab0babec5ced5cec5bebaafa9a19e938e847d746d676059514b433d342e271e150b0000000713202d3a4653606d7986939e9e9e9e9e9e9e9e9e9e9e9e9e9184776b5e5144382b1e1100000000000000000000010c161f2935414c56606b73808c939ea6b0b9c3cbd4dcd7cdc5bdb5afa69e98928c847f7a74706d676764636261616162636567676d71757a80858d92999fa7afbbc0c7cfd9dcd3cbc2b9b0a69d938c7f726b60554c4135291f150b010000000000000000000000000000000000000b17222d38414f59616e7b86929fa6b0bbc4cfd9ded3c9c0b7afa59d9590857f78716d67656261605c60616265676d71767e848f949da4aeb6c0c8d2ddd7cec3b9afa59f92857a6d61584e43372b21160b0000000000000000000000030e18212d3946525d68717e8b949fa7b1bac4cdd7d7cec5bcb4aea59d96918a837d78746f6a68666361605b5e5d545c60616266676d70767c828791969ea5afb5bdc7d1dcdcd1c6bdb2a99f948a7e71685d52453a3025190d0100000000000000060f1820262b2e2f30303030303030303f4c5965727f8c98abb5bfc5b8ab9f9285796c605346393030303030303031404d596673808c99a6b3bfc5b9ac9f9286796d6053463a3030303030303030303030303030302f2e2b2620180f060000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000007121d28313944505b656d7a85919aa4afb9c3ced7ddd5c9beb3a99f948c7f726a5f554b40362c21170c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd3c6baaea29892857c6f695f574d444a545e686f7d87929fa5afb9c3ced7cdc2b9aea49f92857b6e675c51483e332a1f150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3845515c6673808d9aa7b1bcc7d3dcd1c5b9ac9f92867a6d6154473b3025190d010000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0cdd9d5c8bbafa295887c6f6255493c3027221b1812100c070c070c1013141a1e242930363d454d545c666d78828f8b7f72685e52463c31261a0c03000000000000000000020b141b2227373f49515a616c73808c939ea6b0bac3c7beb5aba2979183796d655b50463d31281d11080000000000000000000000000000000005121f2b3744505b65707d848d9299a0a7aeb4bcc2cad0d0cac2bcb3ada59e97928a817a706b605d554f4540393128231d150c030000000713202d3a4653606d788691919191919191919191919191919184776b5e5144382b1e110000000000000000000008131e28313a46525e68707d88939fa5afb8c2cbd5ddd7cdc5bbb3aba39f938f867f79726d6763605c55585655545454555658555d6064686e737a808790959da5afb5bdc7cfd9ddd4cbc1b8afa59f92877c6f675d51453e31271d12070000000000000000000000000000000000030f1b27333f4953606b75828f98a3aeb8c2cdd6e0d5ccc1b7afa59d938e837a726d66605d5555545350535455555c60646c717a828d929ca4aeb6c0cbd4dfd5ccc0baada2978d81746a5f53473d33271c1004000000000000000000000915202c38434f59616d7a85929ea6b0b9c3ccd6d8cfc5bcb3aaa29f938e847e78706c6562605859565453504a514a50535456555c60636a6f757c848e939fa3abb5c0cbd7dbd8cfc4bbb0a69e91857a6d60564c41362a1d1307000000000000030e18212a31373a3b3d3d3d3d3d3d3d3d3d4956636f7c8999a3aebbc6baada297887b6e6155483d3d3d3d3d3d3d3d3d3d4a5763707d8a96a8b2bdc7baaea399897c6f6256493d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a37312a22180e0300000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000050f18242f39434e58606c77828f97a1acb6c0cbd5e0d5cbc3b9ada1978f82776c60584e43392f241a0f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd6cabeb4aaa29791857b6e695e564c505c666e7a849199a3aeb7c1cbd5d0c5bbb1a79d928a7e70695f554b40362c21180d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2834404b54626e7b88959fabb7c4d1ddd4c7bbafa3998b7e7265564c41362a1e11050000000000000000000000000000000000000000000000000000000d192633404c5966737f8c99a6b2bfccd9d5c8bbaea295887b6f6255483c2f26201e19191818181819181c1f20262b2f353b41464f575e666d78818e9492857a6d61584e43372b1e150a0000000000000000000a141d262d334049515b626c717e8b929ca5afb8c2ccc0b6aca39992857b6e675d53493f342b1f160c00000000000000000000000000000000000613202d394653606c798390969fa3abb1babfc6ced6cec6bfbab0a9a29f938f857e756d686159514b433d352f271f18120b03000000000713202d3a4653606d788585858585858585858585858585858583766a5d5043372a1d10000000000000000000010d19242f3a43505a616d7a84919aa4afb7c1cad4ddd7cdc5bbb3a9a299928c827b726d66605d5553514b4b494848474848494b4b5154565e61676d737c838e939fa3abb5bdc7cfd9ddd3cac0bbafa39991847a6d605a5043392f24180c020000000000000000000000000000000005121f2b3744505b65707d89939eaab4bfcad4dfd8cec3baafa59d938e81786e68605c54514b494746444647484b51535a61686d78808d929ca4aeb9c2cdd7ded6cabeb3a99f93877c6f62594f44382c20150a000000000000000000020e1a26313b4854606b74818e97a1adb8c2ccd5d9d0c6bdb3aaa298928b8179716c66605b53544e4c4a4746443f443f444647494b51535860626a6f7a818b9299a3afbbbfc8d2ded6cdc2b9ada1978d8073685e52463a2f24180d0100000000000915202a333c4247484949494949494949494953606d7986929facb9c5beb3a9978a7e7164574b494949494949494949494954616d7a8796a1acb9c5bfb4ab988b7e7265584b494949494949494949494949494949494847433c342a20150a00000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000030c17212935404b555f6a727f8c949ea9b3bec7d2ddd8cec3b9aea49e92857a6e655b50463c31281d1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcdbd0c5bcb3a9a19791847b6e685e555a606d78828f96a1abb5bfc9d3d2c7beb3a99f958d80746c61574d43392e241a0f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3947535f6a7683909da9b6c3d0dcd7cbc0b5ab9c8f8276685e5246392d2014080000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becfdad6c9bdb0a3968a7d7063554b4038302d2a2526252424252623292c2d31373a41454d525960696e78818e939e978d80746a5f53473d30261c11060000000000000006111b262f383f44525b636d727e87929fa4adb7c1c8c0bbafa49a92877d70695f554c41382d22190d04000000000000000000000000000000000005121f2b3744505b656e7b85929fa5afbac3cbd0d1cbc2bcb4aea69f97928b827a716c605d564f45413a3129241d150d0700000000000006121f2b3844505c666d787878787878787878787878787878787671665b4e4235291c1000000000000000000004111d2935414c55626c75828f96a1acb6c0c9d3dcd8cfc5bbb3a9a19792877f756e69605c54514b4645403e3c3c3b3a3b3c3d3e4145474c52555d606a6f79818b9299a3abb5bdc7d1dcdcd7cbc0b5aba1968e81756c61554b4035291f1409000000000000000000000000000000000613202d394653606c7883909da5afbcc6d0dcdcd0c6bcb1a89e938e81776d665e56504a45403c3a3a38393a3c40454650565d666c73808d929da7b1bbc5cfdbdbcfc5bbafa4998f82766b6054483c31261b0f02000000000000000006121e2b37424e57636f7c87939fa9b3becad4ddd2c7beb4aba29892867e746d67605b54504947433f3d3b3938332e34383a3a3c4045474e545860676d757e87929fa3adb6c0ccd5dfd5c9beb3a99f92867a6d61554b4035291d110400000000020e1a26313c454d535556565656565656565656565c677783909daab6c3c0b3a79a8d80746754565656565656565656565656565e687884919eabb7c4c1b4a79b8e81746855565656565656565656565656565656565655534e463c31261a0f02000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000a151e29333b45515d676f7c86929fa6b0bbc4d0d9dbd0c6bcb1a79d928a7d70685e53493f342a1f160c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce2d7cec5bbb2a9a09691837a6d675d616c73808d949fa9b2bdc6d1d8ccc0b6aca2979083786d605a50453b30271d1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2b37424e5765717e8b98a4b1becbd7dcd1c5b9ac9f92867a6e6154473b3025190e0200000000000000000000000000000000000000000000000000000a1623303d495663707c8996a9b3bec9d5d9cdc0b3a69a8d8073675d514a423c3936303232313132332f34383a3d43474c52565e616b707b828f939ea59f92877c6e62594f42382e23170c010000000000000b17222d384149505c636d727f889299a3afb6bfc8c0b6aea49f93887e716b60574d433a2f261b1007000000000000000000000000000000000000030f1b27333f49535e69717e8a939ea8b2bdc7cfc6bfbab0aaa29f948f857e756e68615a524c443e352f281f18120b030000000000000003101c28343f4a545c606b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6a665e554a3e32261a0d0000000000000000040e18222c3945515d67717e8b939ea9b2bec7d2dbdcd1c6bcb3a9a19792857d726d615e57514a45413a38342e302f2e2e2e2f302f35393b41464c51585f666d747f879299a3abb5c0cbd7dcdcd1c7bdb2a89e938a7e71675d51453b30251a0e03000000000000000000000000000007131f2c38434f5964707d8a95a0acb7c1ced8e2d6cbbfb4aaa0958e81786c655c544d443f38352f2e2d2c2d2e2e34383e444c545b606e74808d959fa9b3becad6dfd7ccc0b5ab9f94897d7063584e43372b1e130800000000000000000814212e3a47535f6a7683909aa4afbbc5cfdcd8ccc0b6aca39992867c716c605d55504a443f383832302e2d2b2823282b2d2e2f34383d43474e555d606c717e8b919ca4aebac3ced9dacfc4baaea2988c8073675d5145392c2013080000000006121e2b37424d575f626363636363636363636363636774818d9aa7b4c0c3b6a99c908376666363636363636363636363636363636875828e9ba8b5c1c3b7aa9d90847767636363636363636363636363636363636363625f584e43372b1f1206000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000006111c26303b45505a606d79849199a3aeb8c2cdd6dfd6cabfb4aaa0958d80746b61564c41382d22190d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9e0d7cdc4bbb2a8a0959083796d6769717e8a929da6b0bbc4cfd7cdc5bbafa49a92857b6e665c51483e33291e150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2c38434f5965717e8b98a4b1becbd7e0d4c7bbafa3998b7e7265564c41362a1e110500000000000000000000000000000000000000000000000000000815222f3b4855626e7b8897a1adb9c6d2ded1c5b8ab9e9285796d605c544e474641403f3e3e3e3f3f40404547494e53565d60686e747d8590949ea5afa3998f82756b61544a3f34281e13080000000000030f1b27333f49535b606e737f8b939aa3abb5c0c8c0b6aea49c928c7f726c62594f453b31281d140a00000000000000000000000000000000000000000b17222d38414d57616c75818e96a0abb5c0c3bcb4aea69f98928b827b716c615e565045413a3229241d160d07010000000000000000000b17232e38424a50535e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5d5b554c43382d22160a00000000000000000a15202b37424d57606d7a85929ea5afbbc4d0d9ded7cbbfb4aaa19792857c706b625b524d444039352f2c28232322212121222324292c30363a41454e545c606d727e879299a3afbbc0cad4e0d9cfc4baafa59e9184796d60574d42362a1f140900000000000000000000000000000915222f3b4854606b7683909ca7b1bcc9d3e0ddd3c7baaea3989183796d665b534b423b342e292421201f202123282c323a424a505c606d78839097a2adbac2cdd8ddd2c7bdb0a69c8f82766a5f53473a3025190d0100000000000003101c28343f4a54626e7b88949facb6c0cdd7dcd4c8bbafa49a92877d706a625a514b443f38332d2b272321201f1c171c1f202123292c32373d434c515a626c737f8c929da8b2bdc8d4e2d6cabfb4aa9f92857a6d6053473a3025190d010000000814212e3a47535f696e70707070707070707070707070717e8b97a4b1bec5b8ac9f9285787070707070707070707070707070707070727f8c98a5b2bfc6b9ac9f93867a707070707070707070707070707070707070706e6a5f53473a2e211408000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000040e17232e38424d57616c74818e96a0abb4bfcad3dfd6ccc4baaea2989083796d60594f443b2f261b10070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9e9dfd6cdc4bab1a7a0959082796d6e7b86929fa4aeb8c2cdd6d0c5bbb0a69f93887d70695e544a40362c21180c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3b4854606b7783909daab6c3d0dde3d7cbc0b5ab9c8f8376685e5246392d20140800000000000000000000000000000000000000000000000000000713202d3a4653606d7985919eabb8c3ced9d2c6b9ada1978e81746d66605854524c4d4c4b4b4b4b4c4d4b515356585f62686d727b818892979fa6afb5ab9e94897d70665c50443a2f24190d010000000005121f2b3744505b656c74808c919fa4acb5bdc7bfb6aea49d928c80736d625a50473d332a1f160b02000000000000000000000000000000000000000006111b262f3b45505a606d79849199a3afbbbbb1aaa39f9490867f776e69615a524c443e3530282018130c04000000000000000000000006111c2630383f444652525252525252525252525252525252504e4a433a31271c110500000000000000030f1b26313a47535f6973808d97a1adb8c1cdd6e2d5ccc3baaea39892857c6f6a60595146423b342e29241f1c1816151514151516181d20252a2f353c424b515b626c717e87929fa4aeb8c2ced8e1d6ccc1b9ada1968c7f73695e52463b31261a0e0200000000000000000000000005111e2a36414c56636f7c89949fabb9c3cedbdfd5c9bdb2a89f92867c6f675d544a41393028231c181413121314181c20282f383f44505c666e7b85929fa7b1bcc8d4ded9d0c2b7aa9e94887c6f62564c4135291d110500000000000006121f2c3844505c6673808d9aa6b0bec5c7cbd1c9beb2a99f93887e716b605850454039332d27221b1b171413120f0b10121314181c1f272b313a4145505a636d74808d96a0acb8c2d0d9dbd0c6baada2978a7e7164564c41362a1d11050000000815222f3b4855626e7b7c7c7c7c7c7c7c7c7c7c7c7c7c7c7e8b97a4b1bec6baaea2988b7e7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7f8c98a5b2bfc7bbafa4998b7f7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c6e6255483b2f221508000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000020c162028343f4a545e69717e8a939da8b2bdc6d1dcd9d0c4baafa59f92867c6e675c51473e32291d140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9f1e8dfd6ccc3b9b1a79f948f827979839098a2aeb6c0cad4d2c7beb3a99f948d80736b61574d42392e241a0f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36424d56636f7c8995a0acb8c4d1dee8dcd1c6b9ac9f93877a6e6154473b3025190e020000000000000000000000000000000000000000000000000006121f2b3844505c6673808d9aa7b1bcc8d4d5c9beb3a99d938d80786f6a64615e565a5958575758595a555c6063676a6f747a7f868e939aa1a9b0b9bdb0a69d9183786d60564c4135291d1104000000000613202d394653606c77808c929ca3afb6bec7c0bbada49c928d80746e635b51483e352b21180d04000000000000000000000000000000000000000000000a141d29333e45515d676f7c87929fa6b0afa7a098928c827b726c655e575046413b3229241e160e0701000000000000000000000000000a141e262e34383a4545454545454545454545454545454543423e3831281f150a000000000000000006121f2b37434e58616e7b86929fa9b3becad3dfd9d0c3baaea49f92867c6f6a5f584f473f363028231c1813100c070908070809070d1114191e242930394045515a616c717e8b929da6b0bcc6d0dbded5c9bdb2a89f92867b6e61574d42362a1e13080000000000000000000000000713202d3946525e6875828f9ba6b0bccbd5dfd9cdc5b9aca0968c7f726a5f554b42382f271e17110d07070606070c10161d262d343f4a545e69717e8b959fabb8c1ccd7e2d3c7bbb0a69b8e8174685e5246392d2014090000000000000713202d3a4653606d7985919eabafb5b9babfc5c6b9ada1978d80736c61594f463f352f28221c17110f0a0806060300030607070c10151b1f282f353f48515b606d7884919da6b0bdc7d2ddd6cabeb3a99c8f8275685e5246392d2013070000000e1b2835414e5b68748189898989898989898989898989898b909ba6b3bfcabfb4aa9a908b8989898989898989898989898989898989898c919ba7b3c0ccc0b5ab9b918b898989898989898989898989898989898989898175685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000008131e28323a44505c666e7b85929fa5afbac3cfd8ddd2c7bdb2a89e938b7f726a5f554b40352c20170b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9f0e9e4ded5ccc3b9b0a69e948e81818e95a0aab4bec8d2d8ccc0b6aca1979082786d60594f453b30271c1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a46525e6975818e9ba7b1bcc8d4e0ede0d4c7bbafa4998b7e7265564d41362a1e11050000000000000000000000000000000000000000000000000003101c28343f4a54626f7c8895a0acb8c1cdd6cfc5bbafa59d928d827c76716d6868666565646465666668676d7073777b81868c92989fa4acb3bbc2c1b8aca0958b7f72685d5245392c201307000000000815222f3b4855626e7b858f949fa3aab1b9bdb5afa49c928d80776c605c52493f362d23190f060000000000000000000000000000000000000000000000020b17212935414b55606a737f8c949fa9a39f9590867f786e69605b534d453e3630292019130c04000000000000000000000000000000020c141c23282b2d383838383838383838383838383838383735322d271f160d0300000000000000000815212e3a47535f6a75828f99a3aebbc5cfdcddd2c7beb2a89d928b7e716a60584e463d352a251f18120d070400000000000000000104080d13191e272e343f48505a626c74808d949faab4bfcad6dfdacfc4baaea2988e8175695f53463a3024190d0000000000000000000000000714212e3a4754616d7a86929facb9c2cddfe0d4c8bcb1a79e9184796d60584e43392f261d150c0600000000000000040b141c232e38424d57606c7883909da6b0bbc7d3ded8ccc2b9ac9f92867a6d6154473b31261a0e0200000000000a1724313d4a5764707d8a979c9fa3abacaeb4b8bab1a79e9184796d605a50473d3429241d17110b06000000000000000000000000040a0d161e2429364044515c66707d8a949fabb5c0ccd7dbd0c5b9ac9f92867a6d6154473a2e2114080000000e1b2835414e5b6874818e96969696969696969696969696979ba2acb7c3d0c6bcaca29a97969696969696969696969696969696969696989ba3adb8c4d2c7bdada39b989696969696969696969696969696969696968e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000060f1924303a444f59606d78839097a2adb7c0ccd5e0d7ccc0b5aba1968f82756d62584e43392e231a0e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9e6ded8d3d1d0cbc2b8b0a69e938e8e939ea7b1bcc5d0d6cdc4bbafa49a92857b6e665c50473e33291e150b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b54616e7b86929facb9c3cdd9e4f0e3d7ccc0b5ab9c8f8376685e5246392d20140900000000000000000000000000000000000000000000000000000b17232e3847545f6a7784919da5afbbc4cfd7cdc1b7aea49d948f88827e7a777573727171717272737577797c8084888d92989fa2aaafb6bec5cdc7bcb1a79e92857a6d6054473a2d211407000000000814212e3a47535f696e7a828b9298a0a7aeb4aba49f918c80746c655b504a40372d241b110700000000000000000000000000000000000000000000000000050f18242f3a434e58606d78829097a099928c837c726c665f575049413b332a251e170e08020000000000000000000000000000000000020a11171c1f202b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2a2926221c150d04000000000000000005121e2a36424d57626f7c88939eabb4bfcdd6e1d8ccc0b6aca0968d80746c62584e463c342b231a140c07000000000000000000000000000001080c151d2328363e48505a606d78829098a2aebac2cdd8e0d6cabfb4aa9f92877b6e61564c4135291c11060000000000000000000005121e2b37424d5765727f8b99a3afbbc7d3e0ded1c4b8aca0958a7d70675c51463c31281d140b03000000000000000000020a111c26303b44505b656f7c89949eaab7c2cdd8e0d3c7bbaea3998b7e7265574d42362a1e120500000000000d1a2733404d5a667380888b8f92999c9fa3abacaeab9f958a7e71675d51483e352b2218120b0600000000000000000000000000000000040c1319242834404a54616c76828f99a4afbbc7d4e0d3c7bbafa3998b7e7164584b3e3025190e0200000e1b2835414e5b6874818e9ba3a3a3a3a3a3a3a3a3a3a3a3a4a6acb4bec9d8cebeb4aca6a4a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a5a7adb5bfc9d9d0beb5ada7a5a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000030d18222935414c56606b73808c949fa9b3bec9d2ded7cec5bbafa49991847a6d615b51463c30271d11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce6ddd4cdc7c4c3c4c7c1b8afa59e9b9b9ea5afb9c3ced7d0c4bbb0a69f93887d70695e544a3f352c21170c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6673808c99a3aebbc7d5dfeaf4e8ddd2c6b9ac9f93877b6e6154473b30251a0e020000000000000000000000000000000000000000000000000006111c2b37434e5864707d8a939ea9b3bdc6ced2c9c0b6aea69f9c948f8b878482807f7e7e7e7e7f80828486898d91959a9fa2aaaeb4bbc0c7cfc6bdb5afa39992857b6e6154483b2e2115080000000006121e2b37424d575f686d777f8690959da4aaa299938b7f736e605b53493f382e251b120900000000000000000000000000000000000000000000000000000007131d28313d44505c666e7b859295918780786f6a605b544d443f382f292119140d05000000000000000000000000000000000000000000060b1012131f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1d1c1a16110a030000000000000000000714202d3a46525e6974818e9ba5afbdc6d1dfdfd4c8bbafa49a9184796d605a50463d342a22191109030000000000000000000000000000000000030b1218242c363f44515c666e7b86929fa7b1bcc8d4dedbd0c6bbafa3998d8074685d5246382e23170b000000000000000000000714212d3a46535f697683909dabb5c0cbd7e1d5c9bdb2a89d9083776c61554b40342a1f160b020000000000000000000000000a151e27333f4953606a75828f9ca7b1bcc7d3e2d7cbbfb5ab9c908376695f53463a2d21140800000000000c1926323f4b58636e737b7e82868b8f92999b9fa2aa9d9083766c61554b41362c231910070100000000000000000000000000000000000001081218232e39424f59626f7c87939facb9c6d2dfd7cbc0b5ab9b8e817468564d41362a1e110500000e1b2835414e5b6874818e9ba7afafafafafafafafafafafb1b3b7bec6d0e0d0c6beb7b2b1afafafafafafafafafafafafafafafafafafb2b3b8bfc7d1e2d0c7beb8b3b1afafafafafafafafafafafafafafafafa89b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00010b151f2a343c46525d68707d87939fa6b0bcc5d0dbdbd0c5bcb1a79f93877d70685e52493f342a1e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcded4cbc2bcb7b6b7bcc2c1b7afaaa8a8aaafb7c1cbd5d2c7bdb3a99f948c80736b60574d42382e231a0f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985919eabb5bfcbd7e7e9e8e9e0d4c7bbafa4998b7f7265574d42362a1e110500000000000000000000000000000000000000000000000000000f1b26323c4955616c75818e97a1abb4bcc5cdd6c8c0b8b0aba69f9c9a93918f8d8c8b8a8a8b8c8d8f9193999a9da0a8acaeb4babfc5ccccc3bdb4aba49f92877d70695e52463a2d20140700000000020e1a26313c454d565e656c727c838d929ea19892877f736d635c504941382d261c130900000000000000000000000000000000000000000000000000000000010c161f28343f4a545e69717e8a8d837c736d665f58504a423b332d261d170f08020000000000000000000000000000000000000000000000000306071212121212121212121212121212121210100d0a050000000000000000000004101c2934404b55616e7b86929facb9c1cfd8e1d6cabeb4aa9f93887d6f675c51483e342b2218100700000000000000000000000000000000000000000007121a242834404a545f69727f8b959fabb8c2ccd8e2d7cbc0b5ab9f92867a6d61544a3f34281c10030000000000000000000815222e3b4855616e7b88959fabbdc7d1dcded2c5b9aca0968a7e7164594f43392e22180d0400000000000000000000000000030c17222d38414e58636f7c89959fabb7c6d0dbdcd1c6b9ac9f93877b6e6155483b2f24190d01000000000a17232f3b47525c63696e72767a7e82868a8f92989b998b7e72655a50433a2f241a11070000000000000000000000000000000000000000000007121c27303e47535f6a76828f9ca9b5c2cdd9dcd1c4b7aa9e918477685e5246392d20140700000e1b2835414e5b6874818e9ba7b4bcbcbcbcbcbcbcbcbcbcbebfc3c9d0d9e2d8d0c8c3bfbebcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbfc0c4c9d1d9e2d9d0c9c3bfbebcbcbcbcbcbcbcbcbcbcbcbcbcbcbcb5a89b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0007121d27313c46515b616d7a849199a4afb9c2ced7ded6cabfb4aa9f958d80736b60564c41372d22180c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd8cdc2b9b1aba9abb1b9c0c1bab6b5b4b6bac1c9d3d7ccc0b5aba1978f82786d60594f453b30261c1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5864717e8a97a1adbdc6d1dcdfdcdbdcdfd7ccc0b5ab9c908376695e52463a2d20140900000000000000000000000000000000000000000000000000000a15202d3944505a616d7a859199a2aab3bbc3cad0cac2bbb7b0aaaca49f9d9b99989897979899999b9e9fa4abaaacb1b8babfc6cad0c7c0bbb1aba399938b7f726b60574d42362a1e120500000000000915202a333c444c535b606a6f79808a929792867e726d635b52443f382f261b130a010000000000000000000000000000000000000000000000000000000000040d17232e38424d57616c748180796f6a605c544e443f382f27221b140b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6773808d99a3aebbc7d3e1dacfc6baaea2988d80746b60554b40362d221910060000000000000000000000000000000000000000000000081218232e39424d57606c7883909da6b0bbc7d3dedcd1c7baaea2988c7f73665c5044382b1f1207000000000000000004101d2935404b5566727f8c99a7b1bccfd9e3d8ccc0b6ac9e9184786c6053463e30271d100600000000000000000000000000000006111b262f3d4854606b7683909daab4bfcad6e0d4c8bbafa49a8c7f7266554c4135291d11040000000007131f2a35404a52565e6165686d71757a7e82868a8e92867a6d6054473e31281d12080000000000000000000000000000000000000000000000000b151e2b37434e5865727e8b98a7b1bcc8d4ded2c5b9aca096877a6e6154473b2e21140800000e1b2835414e5b6874818e9ba7b4c1c9c9c9c9c9c9c9c9c9cacccfd4dfe1e6e2dad3cfcbcac9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9cbccd0d4dee1e5e2dbd4cfcccbc9c9c9c9c9c9c9c9c9c9c9c9c9c9c1b5a89b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225170e050e18232f39434e58626d75818f96a1abb5c0cbd4e0d6ccc4baaea2989083786d60594f443a30241b0f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd3c7bcb1a79f9d9fa7aeb6c0c6c3c1c1c2c6cbd3d6cdc4bbafa49991857a6e665c50473d33291e150a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15222e3b4754606a7683909da9b3becfd8d7d3d0cfd0d3d7d2c6b9ac9f93877b6e6154473b30251a0e020000000000000000000000000000000000000000000000000004101c28333e46525e68707d879298a2a9b1babec5cccdc7c2bbb7b6afacaaa8a6a5a4a4a4a5a5a6a8aaacafb5b7b8bdc3c6caccc8c1bdb5afa7a09992877f726d62594f453b30251a0e020000000000030e18212a323a414950585f676d747d858e857c706c625b514940332d261d140a010000000000000000000000000000000000000000000000000000000000000006111c26303b45505a646f74736d676058504a423c332d261d17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929fabb5bfcbd7e2d6cabeb3a99f92857a6d61594f43392f241b10070000000000000000000000000000000000000000000000000007121c27303b44505b666f7d89949faab7c2cdd8e3d6cabfb4aa9e9184796d6053463a2f23180c000000000000000006131f2c3945515d6776838f9ca9b6c2cddce0d4c8bbafa49a8c7f73665b5044382c1e150b00000000000000000000000000000000000a141d2c38444f5965717e8b98a2aebac6d3e0d8ccc0b6ac9c908376675d5145392c20130600000000020e19242e3840444d5254565e6165686d7175797d81858175685d5245392c1f160c00000000000000000000000000000000000000000000000000030c1b26323c4854616e7b8795a0acb8c4d1ded4c8bdb2a8978a7d7064574a3d3124170a00000e1b2835414e5b6874818e9ba7b4c1ced0d0d0d0d0d0d0d0d0d0d0d1d2d5dae1e8dfdbd8d9d4d2d1d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d1d2d5dae0e8e0dbd9dad5d2d1d0d0d0d0d0d0d0d0d0d0cec1b5a89b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f322920170e17202934404b555f6a727f8b939ea8b2bdc7d2ddd9cfc4baafa59f92867b6e665c51473d32281e12090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c4b7ab9f9590959da4aeb9c3cecececfd2d7dacfc4bbb0a69f93877d70685e544a3f352c20170c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2a36414c56626f7c88959fabbbc4cfd3ccc7c3c2c3c7ccd4c8bbafa49a8b7f7265574d42362a1e120500000000000000000000000000000000000000000000000000000b17222935414c56616b707d869297a0a7aeb3bbc0c7c8ccc7c7c0bbb9b7b5b3b2b1b1b1b1b2b3b5b7b9bbc0c4c5c8cec8c7c0bbb9b0aba49f9591877e726d625b51473d33291f140900000000000000060f1820292f383f444e555d606b707b817b6f6a615a5149403727221b140b020000000000000000000000000000000000000000000000000000000000000000000a141e29333e48535d646867605c554e443f383028221c140b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5664717d8a98a2aebdc6d1dcdfd2c6b9ada1978c7f73685e52473d31271d12090000000000000000000000000000000000000000000000000000000b151e28333f4a54606b76828f9ca6b0bcc7d3e2dbd0c6b9ada197897d7063554b4034291c1004000000000000000714202d3a4753606d7a86929facb9c5d2dfdfd2c6b9ac9f93877b6e61544a3f33281a0c030000000000000000000000000000000000020b1b27323d4754606d7a86929facb8c5d2ddddd2c5b9ac9f92867a6d6054473a2d211408000000000008121c262e323b4246474c5254565d6064676d7175797a6e61564c4135291a0d0400000000000000000000000000000000000000000000000000000a15202d3a46525e697783909daab6c3d0ddd9cebfb2a5988c7f7265594c3f3226190c00000e1b2835414e5b6874818e9ba7b4c1c4c4c4c4c4c4c4c4c4c4c4c4c4c6c9cfd6dfe7ded5cec8c5c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c5c9ced6dee8ded6cfc9c5c4c4c4c4c4c4c4c4c4c4c4c4c1b5a89b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265564d443b322920171d29323b45515c676e7c86929fa5afbac4d0d9dcd1c7bdb2a89e938b7e71695f544a40352b20160c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd0c3b6a99d90838d929da7b1bcc6d0dbdcdee1d5c9bdb2a99f948c7f736b60564c42382e231a0e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3946525e6874818e9ba7b1bccdd3cac1bbb7b5b7bbc1caccc0b6ac9c908376695e52463a2d2014090000000000000000000000000000000000000000000000000000050d1925303a444f59616b707d8591959fa2aaafb6b9bdc3c5c9ccc8c6c4c2c0bfbebdbdbebfc0c2c4c6c7cccac7c5c2bdb8b6afaca69e99938d837c716c625b51493f352b21170d020000000000000000060e171d262d333c434b515961686e746e69605850483f372e2517110a0200000000000000000000000000000000000000000000000000000000000000000000020c17212c36414b53595b5a53514b433c342e261e17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d6875828f9baab3becfd8e3ded1c5b8ab9e92857a6d60564c41352b1f150b00000000000000000000000000000000000000000000000000000000030c17222d38424f59626f7c88949fabb7c6d0dce2d5c9beb2a99b8e8174675c5145382c1f1306000000000000000a1723303d4a5663707d8999a3aebac7d3e0dccfc2b6a99c8f8376695e5342382d221708000000000000000000000000000000000000000a16202c3945515d6775818e9bacb6c0ccd8e0d3c7bbafa3998a7d7064574a3d2f24190d0100000000000a141c202930363a3b4146474c5254555d6064676d6e685e52443a3024190800000000000000000000000000000000000000000000000000000005121e2a36424d576673808c99a6b3bfd1dcdacdc0b4a79a8d8174675a4e4134271b0e01000e1b2835414e5b6874818e9ba7b4b7b7b7b7b7b7b7b7b7b7b7b7b7b8b9bec4cdd6e0d5ccc3bdb9b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b9bdc4ccd6e0d6ccc4bdb9b7b7b7b7b7b7b7b7b7b7b7b7b7b5a89b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e72685e564c443a322920262f3b444f59606d79839098a2aeb7c1ccd6dfd7cbc0b5aba1968e81756c61574d42392e23190e04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbfb2a5988c7f808d95a0aab4bfcad6dfe8dfd2c5b9ada1968f82786c60594f443b30261c110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616d7a86929facb9c2cdccc1b8b0aaa8aab0b8c1ccc6b9ac9f93877b6e6154483b30251a0e02000000000000000000000000000000000000000000000000000008131e28323e474f59616b6f7c838c92989fa4acacb2b7b9bdbfc1c4c5c6c7ccd2c9c9c8d1cbc7c5c4c2c0bfbab8b6b2acaca49f9c948f8780796f6a615a51493f372d23190f0500000000000000000000050b141b2227313940454f565e6167615f574e463e362d251c130600000000000000000000000000000000000000000000000000000000000000000000000000050f1a242f3941484c4e4d464540393028231c150c0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb9c5d0dfe0d4c8bcb1a79a8d8073675d51443a3023190d03000000000000000000000000000000000000000000000000000000000006111c262f3d47545f6a7683909caab4bfcbd6e3dacfc4b8ab9f9285796d6053473a2d20140a00000000000004101c2834404a546773808d9aabb4bfcbd7e2d6cabeb3a9988c7f7265574d422f261c11060000000000000000000000000000000000000004111d2935414b5564717e8a9aa4afbbc8d4e0d7cbc0b5ab9a8d817467564c4135291d11040000000000020a0e171f252a2d3036393a4145474b5153555c60615e564c4132281e1308000000000000000000000000000000000000000000000000000000020e1a25303d4a5663707d8996abb4bfcbd7dccfc2b5a99c8f8276695c4f4336291c1003000e1b2835414e5b6874818e9ba7aaaaaaaaaaaaaaaaaaaaaaaaaaaaabadb3bbc4cfd9cec3bab2acaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacb2bac4cedacfc4bab2adabaaaaaaaaaaaaaaaaaaaaaaaaaaa89b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddddd0c4b7aa9d91847a6e685e564c443a32282d38424d56616c74808d95a0aab4bfc9d3ded7cdc5bbafa39991847a6d605a50453b30271c110700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd9ccbfb2a6998c7f79839098a2aebac1cdd6e2ded1c4b8ab9e91847a6d665b50473d32291e140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c66727f8c98a3aebac7d3c7bbb0a69e9c9ea6b0bbc7c8bbafa49a8b7f7265574d42362a1e12050000000000000000000000000000000000000000000000000000020c16202c353e474f59606a6f787f858e939a9ea0a8aaacb2b2b4b7b8b9bbc0bbbcbcbcbbc0bbb9b7b5b4b4aeaca9a8a09d9a938f89827c736d67605850483f372d251b1107000000000000000000000000020a11171f272f353e444d52545b55534d453d342c241b130a00000000000000000000000000000000000000000000000000000000000000000000000000000008121d262f363c4041403a38342e271e17110a03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b5465717e8b99a3aebac7d3e0ded1c4b8aca095887c6f62554b4132281e1007000000000000000000000000000000000000000000000000000000000000000a141d2b37434e5865717e8b98a3aebac7d3e0dfd3c6baaea2988a7d7164574a3e31261a0f03000000000006121f2c3844515c667783909daab6c3d1dcdfd3c6baada297887c6f6255493c3122140a0000000000000000000000000000000000000000010d18242f3a4754616d7a87939facb9c6d2dfdcd1c4b7aa9d918477685d5245392c20130600000000000000050d14191e20252a2d2f35393a4045474b515354524c443b3020160c02000000000000000000000000000000000000000000000000000000000915222e3b4855616e7b8899a3aebac7d3ddd0c4b7aa9d9184776a5e5144372b1e0700000e1b2835414e5b6874818e9b9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9ea1a9b3bec9d4c8bdb2a8a09e9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9ea1a8b2bdc9d5c9bdb2a8a19e9d9d9d9d9d9d9d9d9d9d9d9d9d9d9b8e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0ddded1c5b8aca09691837a6e685e564c443a32333f4a545e69707d8a929da7b1bcc6d0dbdbcfc5bbb0a69f92877c6f675d51483e332a1e150b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd9cdc0b3a69a8d80737b86929fa5afbbc4d0d9d6c9bcb0a396897d70685e544a41382d22171309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7884919eaab4bfcbd0c3b7aa9e948f949eaab7c7ccc0b6ac9c908376695e52463a2d201409000000000000000000000000000000000000000000000000000000040e1a232c353d464f585f666d727a81878c91969a9ea0a8a5a8aaabacafb5aeafafafaeb5afacaaa9a7aaa29f9c9996918c87827c756f6a605c554e463e362d251b1309000000000000000000000000000000060d151d2429323b4146474e4846423b332b221a110901000000000000000000000000000000000000000000000000000000000000000000000000000000000b141d252b303335342d2c28231d150c060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6675828f9cabb4bfcbd7e3d7cbc0b5ab9d9083776a5f53433a2f20160c0000000000000000000000000000000000000000000000000000000000000000020b1b26323c4754606d7a86929facb8c4cfdae2d6cabeb3aa9b8e817568584e43372b1f120600000000000713202d3a4653606d7986929facb9c5d2dfded2c5b8ab9f9285796c605346392d2013060000000000000000000000000000000000000000000713202d3946525e687784909daab7c3d1dcdfd2c6b9ac9f93867a6d6054473a2d211407000000000000000002090e1114191d2024292c2f35393a4045464746413b32291e0e0400000000000000000000000000000000000000000000000000000000000613202d394653606c7986929facb9c5d2ded1c4b8ab9e9185786b5e52452e23180c00000e1b2835414e5b6874818e919191919191919191919191919191919197a1adb9c7d2c5b9aca096919191919191919191919191919191919191919196a1acb9c4cec5b9ada196919191919191919191919191919191918e8275685b4f4235281c0f020000000000000000111e2b3744515e6a7784919daab7c4d0dde1d4c8bdb2a8a09591837a6d685e564c443a3a44505b666e7b85929ea4aeb9c3ced8ded6cabeb3a99f948c7f736a60554c41362d21180c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdacdc0b4a79a8d8174717e8b939ea9b3bdc7d2ddcfc2b5a99c8f82796d665c53493f3327251b1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e5864707d8a96a1adbcc6d1cabeb3a99c8f828f9cacb6c0ccc6b9ac9f93877b6e6154483b31251a0e0200000000000000000000000000000000000000000000000000000008111a232c343d464e545c60686e747b7f84898d919696989b9d9f9fa4a1a2a2a3a2a2aba39f9e9c9a9898928f8c89847f7b756f6a625f58514b433d342c241b13090100000000000000000000000000000000030b121820293036393b413b3a36312921191008000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b131a2024272827201f1c18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929facb8c5d1dce0d3c7bbafa3998b7f7265584e4331281d0e050000000000000000000000000000000000000000000000000000000000000000000a15202c3945525d6875818e9ba9b2bec9d5e1dbd0c4b8ab9e9185786a5f53473a2e21150800000000000915222f3c4855626f7c8898a3aebac7d3e0dbcec2b5a89b8f8275665b5044382b1f120600000000000000000000000000000000000000000005111e2a36414c566774808d9aabb5c0cbd7e0d4c8bbafa49a897c706356493d30231606000000000000000000000205080d1113191d2024292c2e34383a3b3936302920170d00000000000000000000000000000000000000000000000000000000000006121f2b3844505b667885919eabb8c4d1ded2c5b8ab9f9285786c544b4034281c1004000d1a2733404d5a667380848484848484848484848484848484848485919eacb6c0ccc4b7aa9e918484848484848484848484848484848484848484919ea8b2bdc9c4b7ab9e9184848484848484848484848484848484848074675a4d4134271a0e010000000000000000111e2b3744515e6a7784919daab7c4d0dde5d9cec3bab1a8a09590837a6d685e564c44434e58606c78828f97a1adb6c0cbd5e0d5ccc3baada2979082786c60584e433a2f241b0f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdacec1b4a79b8e81746c75818e97a1abb5c0ccd7d0c3b7ab9f948f81786d655b504440372d241b1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15212e3a47535f6a76828f9ca8b2bdcfd2c6b9ada1978a7d8a9aa4afbbc8c8bbafa49a8c7f7265574d42362a1e12050000000000000000000000000000000000000000000000000000000008111a222b343c424a50565e61696e73777c818487898c8e91929399949596969595949992918f8d8b8986827f7c77736e69626058534e454039312b221a12090100000000000000000000000000000000000001070e171f252a2d2e342e2d2a261f170f07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001090f14181a1b1a1313100c0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8998a2aebac6d3e2dfd2c5b9ac9f92867a6d6154473c3121160c0000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5663707d8a97a1adb9c6d2dfdfd2c6b9ada197887b6f6255483c2f22150900000000000b1825313e4b5864717e8b97aab4bfcbd7e1d5c9beb3a9988b7f7265544a3f33281c0f03000000000000000000000000000000000000000000010d1925303d4a5764707d8a99a3afbbc7d4e0d8ccc0b6ac988c7f7265594c3f2e23170b000000000000000000000000000105080d1113181d1f23282c2d2e2d2a251e170e05000000000000000000000000000000000000000000000000000000000000030f1c28333f4a546b7784919eaab7c4d1ddd2c5b9ac9f928679665c5145382c1f1306000c1926323f4b57636e7377777777777777777777777777777777777d899aa4afbbc8bcafa295897c7777777777777777777777777777777777777a8796a1acb9c5beb1a4988b7e77777777777777777777777777777777746e64584c3f33261a0d000000000000000000111e2b3744515e6a7784919daab7c4d0ddeae0d5ccc3bab1a7a09590837a6d685d564c4c55606a727f8c949fa9b3bec8d2ddd8cfc3baafa59f92857b6e665b50463d31281e120900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdbcec1b5a89b8e8275686d7a859199a4afbbbfc8d3c7bbb0a69e938e81776c605b52493f362d241a1107000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b2935414c56626f7c88949fabbac4cfd1c5b8ab9e92857a86939facb9c6ccc0b6ac9d908376695e53463a2d2114090000000000000000000000000000000000000000000000000000000000081019222a30383f444c52575e61666a6f74777a7c7f81848586878788898989888787868482817f7c7976736f6a66615e57544e47433c342f271f19100800000000000000000000000000000000000000000000050d14191e20212822211e1a140d06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003080b0e0e0d070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b556673808c99aab4bfcad6e2d7cbbfb5ab9b8f8275685e5246392d20130400000000000000000000000000000000000000000000000000000000000000000000010d19242f3a4653606d7984919eabb8c4d1dce1d5c9beb3a9988b7f7265584c3f30251a0e02000000010e1b2734414e5a6774818d9aa7b4c0d1dcdfd2c6b9ada197887b6f6255483c2d22170b00000000000000000000000000000000000000000000000814212d3a4754606d7a86929facb9c5d2dfddd2c1b4a89b8e817568544a3f34281c10030000000000000000000000000000000104070c1013181c1f2021201e19140d0500000000000000000000000000000000000000000000000000000000000000000b17222d44515d6a7784909daab7c3d0ddd3c7bbafa39986796d6053463a2d201307000a17232f3b47525c63666a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6d7a86939facb9c6beb1a5988b7e726a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a687884919eabb7c4c0b4a79a8d81746a6a6a6a6a6a6a6a6a6a6a6a6a6a6a67645c52473c3024170b000000000000000000111e2b3744515e6a7784919daab7c4d0ddeae7ded5ccc3b9b1a7a09590837a6d685d56515d676f7c87929fa6b0bbc5cfdadcd1c6bdb2a89d938a7e71695e544a3f342b1f160c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdbcfc2b5a89c8f82756968707d87939fa3adb6bfc8ccc2b8afa59d938d80746d635b51483e362c23191007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3945525d6874818d9aa6b0bbccd6cfc2b6a99c8f837784919eaab7c4d2c7b8ab9f95877b6e6154483b31251a0e0200000000000000000000000000000000000000000000000000000000000710181e262e343b41464d535458606267686d7072757778797a7b7b7c7c7c7b7b7a79777674726f6d666662605854534d47433d373229231d150d0700000000000000000000000000000000000000000000000002080e1114141b1514120e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010201000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c677683909ca9b6c3d0dbe0d3c7bbaea3998a7d7064564c41362a1d1105000000000000000000000000000000000000000000000000000000000000000000000008131f2b3844505c6673808d9aaab4bfcbd7e3dacfc2b5a89c8f827569574d42362a1e120500000004101c2934404b55697683909ca9b6c3cfdcded1c5b8ab9e9285786a5f53473a2e1c110600000000000000000000000000000000000000000000000613202c3945525d687683909da9b6c3d0dcddd0c4b7aa9d918477665c5044382b1f12060000000000000000000000000000000000000004070c1013131414110d0802000000000000000000000000000000000000000000000000000000000000000000061e2a3744515d6a7784909daab7c3d0ddd3c7baaea39986796d6053463a2d2013070007131f2a35404a52575a5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5d687784919daab7c4c1b4a79b8e817468555e5e5e5e5e5e5e5e5e5e5e5e5e566875828e9ba8b5c1c3b6aa9d908377665c5e5e5e5e5e5e5e5e5e5e5e5e5e5a58524a40362b1f1307000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaf0e7ded5cbc3b9b1a7a09590837a6d685d5a606d7a849199a3afb8c2cdd7dfd7cbbfb4aba0968e81746c61574d42382d22190d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdccfc2b6a99c8f837669616b717e8b919ba4adb6c0c9cac1b7afa59d928c7f736d625a50483e352b221910060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953606d7a86929facb8c2cdd8ccc0b6ac9a8d8075828f9ba8b5c2d2c7bcb1a7988c7f7265574d42362a1e1205000000000000000000000000000000000000000000000000000000000000060c151c232830363b4246484e5456565d606365686a656c6d6e6f6f706f6f6e6d6d6669676563605c5456544e4846423b37322b262018120b03000000000000000000000000000000000000000000000000000000020507080e08070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb9c5d2dfdfd2c5b9ac9f92867a6d6053473a3025190d01000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54636f7c8998a3aebac7d3e0ded2c5b8ab9f928578695e52463a2d20140700000006131f2c3845515c677885919eabb8c4d1dedccfc2b5a99c8f827669584e43372b1f0a00000000000000000000000000000000000000000000000004111d2935414c566774818e9aa7b4c1cddadfd2c5b9ac9f9286796d6053463a2d201307000000000000000000000000000000000000000000020507080b0e100a0a08040000000000000000000000000000000000000000000000000000000000000004101c2834404b556b7884919eabb7c4d1ded2c5b9ac9f928679665c5144382c1f120600020e19242e3840474b4d51515151515151515151515151514c566874818e9ba7b4c1c4b7aa9d918477675d515151515151515151515151515966727f8c99acb6c0c5b9ac9f9286796d60535151515151515151515151514d4c4740382f24190e03000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaf7f0e7ddd5cbc3b9b1a7a09590837a6d68616c75818e96a0abb5c0cad4dfd6cdc5baaea3999184796d605a50453b2f261c1007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd0c3b6a99d9083766a59626c727f8c929ca4aeb7c0c9c9c1b7aea49c928b7f726c625a50473d342b22180f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b65727f8b98a2aebac6d4d4c8bbafa49a8b7e73808c99abb5c0cccdc2b6a99d908376695e53463a2d21140900000000000000000000000000000000000000000000000000000000000000030a11171e252a31363a3d4348494c525456595b535b60606162636362626161605c545a585653514b4947433d3a36312b27201b150c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8899a3afbbc7d3e0dcd0c3b6a99d908376675d514539291e1308000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3a4653606d7986929facb9c5d2dfdfd3c6baada297877b6e6154483b2e2115080000000714202d3a4753606d7a86939facb9c6d2dfdacdc0b4a79a8d8174675a4e4131261a0f010000000000000000000000000000000000000000000000010d19242f3f4c5966727f8c99a5b2bfccd8e0d3c7bbaea399877b6e6154483b2e2115080000000000000000000000000000000001040707090e121415181a1d171614100b05000000000000000000000000000000000000000000000000000000000006131f2c3845515c677885929eabb8c5d1ded1c5b8ab9e9285786b544a4034281c1004000007121c262e353b3f4044444444444444444444444444444b5865727e8b98aab4bfc6b9ac9f93867a6d60544744444444444444444444495663707c899aa4afbbc7baaea399887c6f6255494444444444444444444444413f3c362f261d130800000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaf7f9f0e7ddd5cbc3b9b1a79f9590837a6d69717e8b939ea8b2bdc7d1dcdacfc5bbb0a69f92867c6f675d51483e33291d140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd0c3b7aa9d9084776a5d5a626d73808c929da5afb7c1cac9c0b6ada49f93887e716c61594f463d342a21180e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eaab4bfcad6d2c6b9ac9f93877a707d8a99a4afbbc7d1c4b8ab9f95877b6e6154483b31261a0e020000000000000000000000000000000000000000000000000000000000000000060c14191f252a2d32383b3c414547494c4e49505354545556565655545453514a4e4c494645403c3b37322d2a251f1b150f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104060708090a0a0b0b0b0b0b0908060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004090c0f0f12121212121212120c0b0905010000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97abb5c0cbd7e3d9ccc0b3a6998d807366554b403529170c020000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c677683909ca9b6c3cfdce2d6cabeb3a9968a7d7063574a3d3024170a0000000815222f3b4855626e7b889aa4afbbc8d4e0d8cbbfb2a5988c7f7265594c3f3226190a00000000000000000000000000000000000000000000000000081724313e4a5764717d8a97a4b0bdcfdae3d7cbbfb5ab96897c706356493d3023160a000000000000000000000000040607080d111314171a1e212224272a2423201c171008000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939facb9c6d2ded1c4b7ab9e9184786b5e51452e23180c000000000a141c242a2f3233373737373737373737373737373c4955626f7c8898a3aebac7bbafa499897c706356493d37373737373737373a4754606d7a86939facb9c6bfb4ab988b7e7265584b3f2f3737373737373737373433302b241d140b0100000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaf7fff9efe7ddd5cbc3b9b1a79f959083796e7b86929fa5afbac4cfd9ddd5c9beb3a99f948c7f726a5f554b40362c21170b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c4b7aa9e9184776b5e515b636d73808d939da5afb8c1cac8bfbbafa49a92877e706b60584e463c332a20170e040000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b37424d5763707d8a96a0acbcc6d0dbd0c3b6aa9d9083776d7a86939facb9c6d2c8bcb1a7988c7f7265574d42362a1e120500000000000000000000000000000000000000000000000000000000000000000002080e141a1e21272c2e3035393a3d3f423f4446474848494949484847464440413f3c3a38342e2e2b27211e1a140f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030606080d1113141516161717171717171515120f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002091015191b1c1f1f1f1f1f1f1f1f181815110c0600000000000000000000000000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0d1dce2d6cabeb3a9968a7d7063574a3d2f24180c000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b556673808c99a6b3bfd1dce6dbcfbfb2a5998c7f7266594c3f332619070000000a1724303d4a5763707d8a96acb6c0ccd8e4d6cabdb0a3978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000915222f3c4855626f7c8895a9b3bec9d5e1dcd1beb1a4988b7e7165584b3e3225180b00000000000000000000070c10121316191d202123262a2d2e31343731302d28221a12080000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8899a4afbbc7d4ddd0c3b7aa9d9084776a5d5144372a1e0700000000020a12191f2326272b2b2b2b2b2b2b2b2b2b2b2b2d3a4653606d7986929facb8c5c0b5ab988c7f7265594c3f30252b2b2b2b2b2c3945515d677784919daab7c4c1b4a79a8e817467554b4034292b2b2b2b2b2b2b2b2726241f19130b020000000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaf7fffff9efe7ddd5cbc3b9b1a79f9590827a839098a2aeb7c1ccd6e0d5cbc3b9ada1978f82776c60584e43392f241a0f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c4b7ab9e9184786b5e51525b646e74818e939ea6b0b8c2cbccc0b6aca39992867d706a60584e453b322920160d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f6975828f9ca8b2bdced7d5c9bdb2a8998d8073687783909daab6c3d1cdc2b6a99d908376695f53463a2d211409000000000000000000000000000000000000000000000000000000000000000000000003090e12161b1f2224292c2d30322d3337393a3b3c3c3d3c3c3b3a3a38342e32302d2c2823221f1b15120e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f121316191d202122222324242424242422211f1b150e06000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c141b212528292c2c2c2c2c2c2c2c2524221d18110900000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b556976838f9ca9b6c2cfdcdfd2c6b9ada297877a6e6154473b2e2114070000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3d4a5764707d8a97aab4bfcbd7e3dbcec1b5a89b8e8275685b4f422f24180d0100000c1825323f4b5865727e8b98a5b1bed2dde1d5c9beb3a995887c6f6255483c2f221509000000000000000000000000000000000000000000000000000714202d3a4753606d7a8697a1adb9c6d2dfd9ccc0b3a6998d8073665a4d4033271a0d0000000000000000030b12181c1f202224292c2d3031363a3b3e41433d3c39332c241a0c0300000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97abb5c0ccd7dbcfc2b5a89c8f8275695c4f4236291c0f030000000000070e1317191a1e1e1e1e1e1e1e1e1e1e1e1f2c3844515c667683909da9b6c3c1b5a89b8e827568564c41362a1d1e1e1e1d2935414c556874818e9ba7b4c1c3b6aa9d908377675c5145382c1f1e1e1e1e1e1e1e1a1a17130e0801000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaf7faf4efece9e6ddd4cbc2b9b1a79f94908590959faab4bfc9d3ded8cec3b9aea49e92857a6e655b50463c31281d1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c5b8ab9e9285786b5f5249525c606c78818e949ea6b0b9c2cbc7beb5aba39892867c6f6a5f574d443b32281f160d030000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b55616e7b87939facb9c3cedfd2c5b9ada196897c6f6673808d99aab4bfcbd1c4b8ab9f95887b6e6155483b31261a0e0200000000000000000000000000000000000000000000000000000000000000000000000002050a0f1315191d2021232622272b2d2d2e2f30302f2f2e2e2d2c28232523201f1c1815130f0a05020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f11171c1f202324292c2d2e2f303131313131312f2e2b262018100600000000000000000000000000000000000000000000000000000000000000000000000000000000020c151e262c313436393939393939393932312e29231b1209000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c677885929eabb8c5d1deded1c5b8ab9e928578685e5246392d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000715222f3b4855626e7b8898a3aebac7d3e0ddd0c3b7aa9d9084776a554b4035291d110400000d1a2633404d596673808c99a6b3bfccd9dfd2c6b9ada197867a6d6053473a2d201407000000000000000000000000000000000000000000000000000613202c3945515d677885919eabb8c4d1dedbcec1b4a89b8e8175685b4e4235281b0f02000000000000070c151c23282c2d2f3035393a3d404246484b4d504a49443e362c1e150b0000000000000000000000000000000000000000000000000006121f2b37434e586774808d9aa7b3c0d2dddacdc0b3a79a8d8074675a4d4134271a0e0100000000000002070a0c0d11111111111111111111101c2834404a546774808d9aa7b3c0c4b7ab9e918478685e5246392d2013110d19242f3f4c5865727f8b98abb5bfc5b9ac9f9286796d6053473a2d20141111111111110e0d0b07030000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaf7f0e9e3dfdddcdfddd4cbc2b9b0a69f9792979fa7b1bcc5d0dbdbd0c6bcb1a79d928a7d70685e53493f342a1f160c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f524544505b666d78828f949fa7b1b9c3ccc7bdb4aaa29892857c6f695f564d443a31281f150c030000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6774808d9aa4afbbc8d4ded1c4b7ab9e9184786c63707d8998a3aebac7d3c8bcb1a7998c7f7266574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000307080d1113141619171b1f20212122232323222121201f1c1819161313100c070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f151b1c22282b2d302f35393a3b3c3d3d3e3e3e3e3e3c3a37312a22180e0400000000000000000000000000000000000000000000000000000000000000000000000000000009141e2730373d414245454545454545453f3d3a342d241b1106000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798697a1adb9c6d2dfdccfc3b6a99c90837669564c41362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb9c5d2dfded2c5b8ab9f928578675d5145392c20130600010e1b2734414e5a6774818d9aa7b4c0cddaded1c4b8ab9e918578675d5145392c2013060000000000000000000000000000000000000000000000000004111d2935404b55697683909ca9b6c3cfdcdbcfc2b5a89c8f8275695c4f4236291c070000000000000711191e272e34383a3c3f4145474a4c4d5355575a5d575550483e30271c12070000000000000000000000000000000000000000000000000a15212e3a47535f6a7884919eabb7c4d1ded8ccc0b6ac988b7e7265584b3f3225180c000000000000000000000000040404040404040404000c18232e3e4b5764717e8a97a9b3bec5b9aca196877a6d6154473a2e2114070816232f3c4956626f7c8999a3aebbc7bbafa399897c6f6256493c2f231607000404040401000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaeee6ded8d3d0cfd2d4d8d4cbc2b9b0a9a19ea1a9b1b9c3ced7dfd6cabfb4aaa0958d80746b61564c41382d22180d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f52463f4a545c666d79828f959fa7b1bac3ccc6bcb4aaa29791857b6e695e564c433a31271e150b0200000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929facb6c0ccd8d4c8bcb1a79a8d807365606d7986929facb9c5d2cdc2b6aa9d908377695f53463a2d211409000000000000000000000000000000000000000000000000000000000000000000000000000000000000010407070a060b0f12131415151616161515141312100c0709070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d151a20272b2d3338393d404145474849494a4a4a4a4a4a4847433c342a20150a000000000000000000000000000000000000000000000000000000000000000000000000000004101b26303942494d4f52525252525252524b4a453f372d23180c010000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8894a9b3bec9d5e1dacdc0b4a79a8d8174675a4e413025190d0100000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667784909daab7c3d0dddfd3c6baaea298867a6d6053473a2d20140700020f1c2835424f5b6875828e9ba8b5c1cedbdcd0c3b6a99d9083766a554b4035291d110400000000000000000000000000000000000000000000000000010d18242f414e5b6874818e9ba7b4c1cedadcd0c3b6a99d9083766a5d50432e23180c0000000000040f19232b3039404446494b4c52545659575f6164676a64615a5042392e23180d040000000000000000000000000000000000000000000006111c26303c4855626f7b8896a1acb9c5d2ded4c8bbafa49a897d7063564a3d3023170a000000000000000000000000000000000000000000000715222e3b4855616e7b8897a1adb9c6bdb2a8968a7d7063574a3d302417090713202d3a4653606d7986929facb9c5c0b5ab988b7e7265584b3f2f24180c000000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddeae6dcd4cdc7c4c2c6c8ccd2d4cbc2bbb3adabadb3bbc3cbd4e0d6ccc4baaea2989083796d60594f443b2f261b10070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f524638424a545c676d79839095a0a8b2bac4cdc5bcb3a9a19791847b6e685e554b433930261d140a000000000000000000000000000000000000000000000000000000000000000000000000000713202c38444f5965727e8b97a2adbec7d2ddd1c5b8aca095887c6f625c6776838f9ca9b6c2ced1c4b8ab9f95887b6e6155483c31261a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030506070809090a0909080707060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c131920262b3237383f4446494c4c515455555657575757575755534e463c31261b0f03000000000000000000000000000000000000000000000000000000000000000000000000000915212c37424b545a5c5f5f5f5f5f5f5f5f585651493f34291d1105000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbccfdae6d8ccbfb2a5998c7f7266594c3f332619080000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546875828f9ba8b5c2cedbe2d6cabeb3aa95887b6e6255483b2f2215080003101d293643505c6976838f9ca9b6c2cfdcdbcec2b5a89b8f8275685c4f422f24180d010000000000000000000000000000000000000000000000000000071a2734404d5a6773808d9aa6b3c0cdd9ddd1c4b7aa9e9184776b544a4034281c1004000000000b16212b353d424a51535558565d60636669696e717476706c61544a4034281f160c040000000000000000000000000000000000000000030d17232e38424f5966737f8c99a8b2bdc9d5dfd2c6b9ac9f93867a6d6154473a2e211407000000000000000000000000000000000000000000000714212d3a46535f697885929eabb8c5bfb2a6998c7f7366594c4030251a0e06131f2c3845515c677783909daab6c3c1b4a79a8e817467554b4035291d10040000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddeaded4cac2bbb7b6b9bbc0c7d0d4cdc5beb9b8b9bec5cdd4ddd9d0c4baafa59f92867c6e675c51473e32291d140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f52462f39424b555d676d7a839096a0a8b2bbc4cdc5bbb2a9a09690837a6d675d554b42382f261b11060000000000000000000000000000000000000000000000000000000000000000000000010b16222f3b4854606b7783909da9b3bed0d9d6cabfb4aa9d9184776a5f5566727f8c99a8b2bdc8d4c8bcb1a7998c7f7266574d42372b1e1205000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d161e242931373c43474a50535659555d60616263646464646464625f584e43372b1f1206000000000000000000000000000000000000000000000000000000000000000000000000000c1925313d49545d65696c6c6c6c6c6c6c6c65625b51453a2e2215090000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad7e4d7cabeb1a4978b7e7164584b3e3125180b00000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e414e5a6774818d9aa7b4c0cddae6dbd0bcafa396897c706356493d3023160a0004111d2a3744505d6a7783909daab6c3d0dddbcec1b4a89b8e8175685b4e4235281b070000000000000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9ded2c5b8ab9f928578665c5144382c1f120600000004101b27323d474f545c60626568686d707375787b7e80837e70665c51443c31281e160d05000000000000000000000000000000000000030c151f28343f4a54616b7783909daab6c3cedaddd0c3b7aa9d908377685e5246392d2013070000000000000000000000000000000000000000000005121e2a36424d576975828f9ca8b5c2c2b5a89c8f827569574d42362a1e1205101c2834404b556774818d9aa7b4c0c3b7aa9d908477675d5145382c1f13060000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0dde3d8cdc2b8b0aba9acafb6bec7d0d7cfcac6c5c6cacfd7dfddd2c7bdb2a89e938b7f726a5f554b40352c20170b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246393039434b555d686d7a849196a1a9b3bbc5cdc4bbb2a8a0959083796d675c544a41382d221713090000000000000000000000000000000000000000000000000000000000000000000007121d2a36424d5763707d8995a0acbcc5d0dfd3c6baaea2988b7f72655855626f7b8896a0acb9c5d2cdc3b6aa9d908377695f53463a2d2115090000000000000000000000000000000000000000000000000000000000000000000000000000000001040607080705020000000000000000000000000000000105070709090703000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f171f282f353c43474e54545b60636668676d6e6f707071717171716f6a5f53473a2e211507000000000000000000000000000000000000000000000000000000000000000000000000020f1b2834414d5a6570757878787878787878726d62564a3d3124180b0000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8e3d6c9bcb0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000006192633404c5966737f8c99a6b2bfccd9e4d7cabeb1a4978b7e7164584b3e3125180b0005121e2b3845515e6b7884919eabb7c4d1dedacdc1b4a79a8e8174675b4e4134281b0e0100000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5b2bfccd8dfd3c6baaea29886796d6053463a2d2013070000000713202c38444f5960666d6f7274777a7d7f8285888a8d9084796d60584e433a30281f170e0701000000000000000000000000000000050b151e27313944505c66707d8a959fabb8c4d1e0d6cabeb4aa9a8d807467564c4135291d110500000000000000000000000000000000000000000000020e1a2631404c5966737f8c99a6b2bfc4b8ab9e918578695e52463a2d2014070c18232e3e4b5865717e8b98aab4bfc5b9ac9f92867a6d6053473a2d2014070000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0dddfd3c7bbb0a69f9c9fa4acb6bec7d2dad6d2d1d2d6dae1e3d7ccc0b5aba1968f82756d62584e43392e231a0e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f52463927313a434c565e686e7b849197a1a9b3bcc5cdc4bab1a79f958f82796d665c53493f3327251b12090000000000000000000000000000000000000000000000000000000000000000000c18232f3a46535e6975828f9ba7b1bcced7dfd2c5b8ac9f92867a6d6054535f6a7784919eaab7c4cfd1c4b8aca095887b6e6155483c31261a0e020000000000000000000000000000000000000000000000000000000000000000000000000001080d1113141514120e0903000000000000000000000002080d1113141615130f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000060f182129313a41454e53586062666c707375787a7b7c7c7d7d7d7d7d7d7c6f6255483c2f24180d010000000000000000000000000000000000000000000000000000000000000000000000030f1c2936424f5c69758285858585858585857f7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9e1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb2a5988b7f7265584c3f3225190c0005121f2c3845525f6b7885929eabb8c5d1dedacdc0b3a79a8d8074675a4d4134271a0e0100000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbd8e2d6cabeb3aa93877a6d6054473a2d2114070000000916222f3b4854606b70797c7e818486898c8f9297979a968b7f726a5f564c423a31292018130c0701000000000000000000000003090e171d273039434c56606d7884919da7b1bcc8d4dfd3c6baaea2988a7d7064574a3d3025190d010000000000000000000000000000000000000000000000091724303d4a5763707d8a96a8b2bdc6b9ada197877b6e6154483b2e2115060715222f3c4855626f7b8898a2aebac6bbafa399897c6f6256493c2f2316070000000000000000000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddddd0c4b7ab9f948f939aa4acb6c0ccd8d9dfdedfe2e6ece0d4c7bbafa49991847a6d615b51463c30271d11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c28313a444c565e696e7b859197a2aab4bcc6ccc3b9b1a79f948f81786d655b504440372d241b12080000000000000000000000000000000000000000000000000000000000000004101c2934404b55616e7b87929facb9c3cedfd3c7bbb0a69a8d8174685d524e586673808d99a9b2bdc9d4c8bcb1a7998c7f7266574d42372b1e1206000000000000000000000000000000000000000000000000000000000000000000000000040c13191d202121211e1a140d05000000000000000000040c13191d202123221f1b160d0802000000000000000000000000000000000000000000000000000000000000000000000000050f18212a333b434c52585f626a6f74787d7f8284878888898a8a8a8a8a8a817568554b4035291d1104000000000000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9292929292928b7f7265584c3f3225190c0000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0cddae0d3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d8ccbfb2a5998c7f7266594c3f3326190c0006121f2c3945525f6c7885929fabb8c5d2ded9ccc0b3a6998d8073665a4d4033271a0d0000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7e6dbd0baada094877a6d6154473a2e2114070000000a1623303d495663707d86888b8e91939a999c9ea1a9a89f92867c6e685d544b433a3229241d18120e090503000000000104060a0f141a20292f39424b555e68727f8b95a0acb9c3cdd8ded2c5b8ab9f9285796d6053473a2d2014080000000000000000000000000000000000000001010303030714212e3a4754616d7a8796a0acb9c5beb3a9978a7d7064574a3d2d22170b0713202d3a4653606d7985929facb8c5c0b5ab988b7f7265584c3f2f24180c0003030303030303030303030000000000000000000000111e2b3744515e6a7784919daab7c4d0dddccfc2b6a99c8f8288939aa4afbbbfc7d1dae3eceeece0d4c8bcb1a79f93877d70685e52493f342a1e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f28323a444d575f696f7c859298a2aab4bdc6cbc2b9b0a69e938e81776c605c52493f362d241a110800000000000000000000000000000000000000000000000000000000000006131f2c3845515c6773808d99a3afbbc7d4ddd0c4b7ab9f94887c6f62564c4956626f7c8996a1adb9c5d2cdc3b6aa9d908377695f53473a2e2115090000000000000000000000000000000000000000000000000000000000000000000002080d161e24292c2d2e2d2a251f170f0500000000000000040e161e24292d2e302f2c272119130c0400000000000000000000000000000000000000000000000000000000000000000000020b17212a333c454d565d606a6e767c8084898c8f91969495969797979797918477675d5145392c201306000000000000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9c9f9f9f9f988b7f7265584c3f3225190c0000000000000000000000000000000000000000000000000000000000000000000e1b2734414e5a6774818d9aa7b4c0cddae0d3c6baada093877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6e3d9ccbfb3a6998c807366594d4033261a0d0006131f2c3946525f6c7985929facb8c5d2dfd9ccbfb2a6998c7f7366594c403326190d0000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdcad7e0d4c7baada194877a6e6154473b2e2114080000000916232f3c4956626f7c8998989b9d9fa4aca8abadb3aea29891847a6d665d554c443d352f29241d1a13120f0b060c070d1113141b1f252a323a414a545d676d7a85929fa8b1bdcbd4dfd4c8bdb2a89a8e8174675d5145382c1f13060000000000000000000000000000000003080b0d0e1010101013202d3946525e687784919eaab7c4c0b3a6998d80736653493f33271b0f10121f2b3844505c667683909ca9b6c3c1b4a79b8e817468554b4035291d101010101010101010101010100a09070400000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7f7e88939fa3adb5bfc8d1dae3eceaddd1c4b8ab9f958d80736b60564c41372d22180c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c162029323b454d575f6a6f7c869298a3abb5bdc7cbc2b8b0a69e938d80746e635b51483f362c231a100700000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929eabb5c0cbd7d5c9bdb2a89c8f82766a5f53434653606c7884919eabb8c4cfd1c4b8aca095887b6e6255483c31261a0e020000000000000000000000000000000000000000000000000000000000000000050d14191f282f35393a3b3a36312921170b020000000000020c1620283035393a3c3b383229241e160e090300000000000000000000000000000000000000000000000000000000000000000a141d29333c464e575e686d747c82888d9197999b9ea1a8a2a3a3a4a4a49f93867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000001101d293643505c6976838f9ca9ababa5988b7f7265584c3f3225190c0401000000000000000000000000000000000000000000000000000000000000000e1b2835414e5b6874818e9ba7b4c1cedae0d4c7bbafa49986796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5e2d9cdc0b3a69a8d8073675a4d4034271a0d0005121f2b3744505b657986929facb9c5d2dfd8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdc9d6e1d4c7bbaea194887b6e6155483b2e2215080000000815212e3b4854616e7b8794aaa7aaacafb6b5b8b9beb4aaa0968f82786d675e564f45403a352f2a25201f1b1719191a181d2020272b30363e444c535c666d79829097a2adbac3cedddcd1c5b8aca096897c7063554b4035291d1004000000000000000000000000000001080f14181a1b1d1d1d1d1d1d2935414c566875818e9ba8b4c1c2b6a99c8f8276655b5044372b1f1d1d1d1c28343f4a546774808d9aa7b3c0c3b7aa9d908477675d5145392c1f1d1d1d1d1d1d1d1d1d1d1d1d1d171614100b050000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e727f8b919ba3adb6bfc8d1dae4e9dcd0c3b6a99d9083796d60594f443a30241b120800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f172029333c454e58606a707d869299a3abb5bec7cac1b8afa59d928c80736d625a50483e352b2219100600000000000000000000000000000000000000000000000000000006131f2b38434e5864717e8b97a1adbdc7d1dcd2c5b9ada1968a7d7064584e4344505b6574808d9aa9b3becad4c8bcb1a7998c7f7366574e42372b1e120600000000000000000000000000000000000000000000000000000000000003090e171e252a313a4145474846423b33291d140a000000000008131e28323a4146474948443d353028201a150c0700000000000000000000000000000000000000000000000000000000000006111b262f3b454e585f696e7a80878f949a9ea1a9a8abacb2afafb0b0b0afa49a897c6f6256493c2f23160600000000000000000000000000000000000000000000000000000000000000000206080d111d293643505c6976838f9ca9b6b2a5988b7f7265584c3f32251913110d080603000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cedbdfd2c6b9ac9f938679665c5144382c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcc8d5e2dacdc0b4a79a8d8174675a4e4134271b0e000613202d394653606c798699a3afbbc7d3e0d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6e1d4c8bbaea195887b6e6255483b2f2215080000000714202d3a4753606d7a8698a2aeb7b9bbc0c2c5c6c5bcb2a89e948f82796d686159514b45403936302d2b272226252624292c2d32383b42464f565e656d78828f949fa9b3beccd5dfd4c8bcb1a79d9184786c605346392f24180c0000000000000000000000000000020b131a202427282a2a2a2a2a2a25303f4c5865727f8b98abb5bfc5b8ab9f9285796c605346392d2a2a2a2a2a232e3e4b5764717e8a97a9b3bec5b9ac9f92867a6d6053473a2d2a2a2a2a2a2a2a2a2a2a2a2a2a2a2423201c16100800000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e72727f8c919ca4adb6bfc8d2dae4dacdc0b4a79a8d81746d635b51493f362d241a1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f0e17212a333c464e58606b707d879299a4acb6c0cccac1b7aea49c928c7f726c625a50473d342b22180f0600000000000000000000000000000000000000000000000000000b15222e3b4754606a7783909da9b3becfd9d7cbbfb4ab9e9184786d6053463c3f495363707d8997a2adb9c6d2cdc3b7aa9d9083776a5f53473a2e21150a0000000000000000000000000000000000000000000000000000000000060b141a202930363e434c515454534d453b2f261c1106000000020c1924303a444c525456544f46413a322b261f18120b03000000000000000000000000000000000000000000000000000000000b17222d38414d575f6a6e7b838d92999fa6abadb2b5b7b9bdbbbcbdbdc0b6ac988b7e7265584b3f2d22170b00000000000000000000000000000000000000000000000000000000000205090e1214191d20293643505c6976838f9ca9b6b2a5988b7f7265584c3f322521201d1913120f0b0603000000000000000000000000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c2cedbdfd2c5b8ac9f9285796c5f4a4034281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5e1dacdc1b4a79a8e8174675b4e4134281b0e000713202d3a4653606d798693a0b5c0cbd7e3d7cabeb1a4978b7e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcc8d5e1d5c8bbaea295887b6f6255483c2f22150900000006131f2c3945515d677985929facb8c5c8ccd2d1d2cec3bab0a69e948f837a706b605d55514b46423b3937332d3232332f35393a3d43474d525961686d77818e949ea6b0bbc5cfded7cdc5b8aca0958a7e71655b5044372b1d120700000000000000000000000000010b141d252b30333436363636363636363c4956626f7c8999a3aebbc6baada297887b6e6255483b36363636363636363b4855616e7b8897a2adbac6bbafa399897c6f6356493c363636363636363636363636363636302f2c28211a1108000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e726d727f8c929ca4aeb6c0c8d2dbdbcec2b5a99d928c7f736d625b51483f362c231a11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130f18212a343d464f59616b717e87939aa4afbbbfc8c9c0b6aea49b918b7e716c61594f463d342a21180f0500000000000000000000000000000000000000000000000007121c2a36414c56626f7c89959fabbbc5cfe0d3c7baaea3998c7f72665c5044383a4653606d7985929eabb8c5d0d1c5b8aca095887b6e6255483c31261a0f020000000000000000000000000000000000000000000000000000020a11171f262a323b41464f555d60615e574d42382d22170b0300000a141e2935414c565d61636059524c443e373128231d150c070000000000000000000000000000000000000000000000000000030f1b27333f49535e696e7c8490959fa3abb0b8b9bec2c4c5c9c6c5c3c2c0b4a79a8d817467544a3f33281c0f03000000000000000000000000000000000000000000000000000002090e11151a1e2124292c2d3643505c6976838f9ca9b6b2a5988b7f7265584c3f32302d2c2924201f1c17120f0b0600000000000000000000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c2cedbdfd2c5b9ac9f928679665b5044382b1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbc8d5e2dacdc0b4a79a8d8174675a4e4134271b0e000613202d394653606c798699a3afbbc7d4e0d7cbbeb1a4988b7e7165584b3e3225180b000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5e1d4c8bbaea195887b6e6255483b2f22150800000004101d2935404b556b7784919eaab7c4d1d8dddedfd5ccc2b8b0a69f9590857d746d67605d55524d4846443f403f3f40414045474a4e54575e616b707a818e939ea6b0b8c2cdd7dbcfc5bbafa59d9183786c6053493f33271b0b010000000000000000000000000008131d262f363c40414343434343434343434753606d7986929facb9c5beb3a9978a7e7164574b4343434343434343434346535f697885929fabb8c5c0b5ab988b7f7265584c434343434343434343434343434343433d3c38332c231a10050000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e72656d737f8c929ca4aeb6c0c9d2dbd1c5b9aea49c918c7f726d625a50483e352c231a110700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060f18222b343d474f59616c717e88939fa3adb6c0c9c8bfb6ada39f92877e716b60594f463c332a21170e0500000000000000000000000000000000000000000000000c18232e3946525e6875818e9ba7b1bccdd7dfd2c5b9ac9f92867a6d61544a3f343844505c6674818e9baab4bfcad4c8bcb1a7998c7f7366584e43372b1f120600000000000000000000000000000000000000000000000000020c141c232831363e444c525961676d6e695e544a3f33281f14090006111c26303846525d686d6f6b615d565047423c342e271e1910070000000000000000000000000000000000000000000000000005121f2b3744505b656e7b859196a0a7afb5bdc2c6c9c9c6c5bfbab8b6b5b4b4a99d908376665b5044382b1f1206000000000000000000000000000000000000000000000000030a0f141a1e20262b2e2f35393a3d43505c6976838f9ca9b6b2a5988b7f7265584c403f3d3a39352f2d2b28221f1b17110c060000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbe0d3c7baaea39886796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afbcc9d5e2dacdc0b3a79a8d8074675a4d4134271a0e0006121f2b3844505b667986929facb9c5d2dfd8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6e1d4c7bbaea194887b6e6155483b2e221508000000000c18242f43505d6a7683909da9b6c3d0dce8ebe7ded3cac2b8b0a79f9791898179726d67615e57555350494d4c4c4d4e4b515356586062696e747d858f939ea5afb8c1cad4dbd6cabeb3a99e938a7d70665b5041382d22170b00000000000000000000000000030f1a252f3841484c4e50505050505050505050515c677783909daab6c3c0b3a79a8d807467544a50505050505050505050504d576976828f9ca9b5c2c1b4a79b8e817468554b505050505050505050505050505050504a48443e352c21160b0000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265636d73808d929da4aeb7c0c9d2d6cbc0b6ada49b918b7f726c625a50473e352c23191007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1300061019222b353e47505a626c727f8b919ca4aeb7c0c9c8bfbbafa39992877d706b60584e453c332920160d0400000000000000000000000000000000000000000004101c2834404a54616e7a86929facb9c3cddfd4c8bcb1a79b8e8174685e5242382e343f4a5463707d8a98a2aebac6d3cec3b7aa9d9084776a5f53473a2e21150a000000000000000000000000000000000000000000000000000a141e262e343b424650565e616b707a7b6e665b50443b31251a0e040b17232e38424e58616d7a7c746d68615a534d454039302b22190f04000000000000000000000000000000000000000000000005111d2a36414c56606c77828f97a1a8b1bbc0c7cfcdc5beb9b8b4aeaca9a8a8a7a79f9285796c605346392d20130600000000000000000000000000000000000000000000040a0f151a1f252a2d31373a3b4145474a4c505c6976838f9ca9b6b2a5988b7f7265584f4d4c4a4745413c3938332d2b27221b17110c07010000000000000000000000000000000000000e1b2834414e5b6774818e9aa7b4c1cddae3d7cbbfb4a093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6e2d9ccc0b3a6998d8073665a4d4033271a0d00030f1c28333f4a5f6c7985929facb8c5d2dfd8ccbfb2a5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdcad7e1d4c7baaea194877b6e6154483b2e21150800000000071c2935424f5c6875828f9ba8b5c2cedbe8f9f0e5dcd3cac2b9b1a9a19e928d857f79726e696562605b535a5958595a555d6063666a6f757b818a91979ea5afb7c1cad3dcd3c9c1baada2978f82756c61544a3f2f261b1106000000000000000000000000000814202b36414a53595b5d5d5d5d5d5d5d5d5d5d5d556774818d9aa7b4c0c3b6a99d908376665c5d5d5d5d5d5d5d5d5d5d5d5d5d5d6673808d99a6b3c0c4b7aa9d918477675d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d57554f473e33281c100400111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e72655b636e73808d929da5afb7c0c9d3d2c8bfb6ada39f93887e716c615a50473d352b221910070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600071019232c353e48505a626d737f8c929da4aeb7c1cacbc0b5aba39992867d6f6a5f574d453b32281f160c01000000000000000000000000000000000000000006121f2c3844515c66737f8c99a3aebac7d3ddd1c4b8ab9f95897c6f62564c4130262e3a4753606d7985929facb8c5d1d1c5b8aca095887b6e6255483c31261a0f02000000000000000000000000000000000000000000000006111c2630383f444d535a62686e757d8483786c60574d42362a20160c101c28343f4a54606a748086817a716c625f57514b433d342b21160a00000000000000000000000000000000000000000000000713202d3946525e68727e8b949fa9b2bac3cbd1c9c0bbb3adabaaa29f9d9c9b9a9a9a98887b6e6255483b2f221508000000000000000000000000000000000000000001070d161b20262b30363a3c4247484c525457595b566976838f9ca9b6b2a5988b7f7265555c5a585754524c4946443f3937332d28231c18120b0300000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0cddae7dcd1baada093877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdc9d6e3d9ccbfb2a6998c7f7366594c403326190d00000b17222d45525f6c7885929fabb8c5d2ded9ccbfb3a6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7e0d3c7baada094877a6d6154473a2e211407000000010e1b2834414e5b6774818e9aa7b4c1cddae7ece4dcd6d1cecbc3bbb2ada49d97928c857f7b76726e6c6567666565666768676d7073777c81868e939ea1a9afb8c1c9d3dbd3cac1b7aea49f92857a6e615a5042382d1d140a00000000000000000000000000000b1824303c48535d646769696969696969696969696969717e8b97a4b1bec5b8ac9f9286796d69696969696969696969696969696969707d8a97acb6c0c6b9ac9f93867a6d6969696969696969696969696969696969696361594f44382c20140700111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265585c646e74808d929da5afb7c1c9d3d1c8bfbbafa49a93877e716c61594f473d342b2218100600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000007111a232c363f48515b636d73808d929da5afb8c1c1c1bdb4aba29892857c6f695f574d443a31281e130800000000000000000000000000000000000000000713202d3a4653606d7984919eabb4bfcbd7d5c9beb3a99d9083776a6054443a301f2c3845515c6775828e9baab4bfcbd4c8bcb1a7998c7f7366584e43372b1f120600000000000000000000000000000000000000000000000b17232e38424a50575f616c717a818a918b7f72695e53463e32281e1319232b3844505c666f7c87938e857e766e69605c554f473d32271b0f03000000000000000000000000000000000000000000000714212e3a4754616d7a86929fa6b0bbc4ccd7c8bfb7afa9a19e999892908f8e8e8e8e8e8a7d7164574a3e3124170b00000000000000000000000000000000000000040c131820272b31373b4246474d5355565d60636567696876838f9ca9b6b2a5988b7f72676a68676563605d565653504a46443f38342e29241d150d06000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3c0cdd9e1d4c7baaea194877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdcad7e3d8cbbfb2a5988c7f7265594c3f3226190c0000121f2c3845525f6b7885929eabb8c5d1ded9cdc0b3a69a8d8073675a4d4034271a0d0100000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1becbd8e2d6cabeb4aa93877a6d6054473a2d211407000000000d1a2633404d596673808c99a6b3bfccd9e6e4dad2cbc5c1c0c5c4beb9aea9a19e97918c87837e7b797674737272737475777a7d8083898e92999da5adb3bbc1cad3dbd6c9c1b8afa59c928a7e71685e52483e2f261c0b0200000000000000000000000000010d1a2733404c59646f7476767676767676767676767676767b8895a1aebbc7baaea398887c7676767676767676767676767676767676767b879aa4afbbc7bbafa499897d76767676767676767676767676767676767676706b6155483c2f23160900111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e726558525c606c77808e939da5afb7c1c9d3d8ccc0b6aca49992877e706b60594f463d342a22180f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000008111a242d363f49515b646e74808d939ea6b0b4b4b4b4b4b4aaa29791857b6e695e564c433a2f24190d0100000000000000000000000000000000000006131f2b37434e5864717e8a96a1adbdc6d1dcd2c6b9ada1978b7e7164584e4332291e2934404b5564717e8a98a3aebac7d3cec3b7aa9d9184776a5f53473a2e21150a0000000000000000000000000000000000000000000003101c28343f4a545c60696e767e858e939e92867b6e615a50443a3024191e2a36414d56606d7883909a97928b827b736d6760594f43382c1f130700000000000000000000000000000000000000000005121e2a36424d5765727f8b98a2aeb8c2cdd3c9bfb6ada59d97928d888583828181818181817d7063574a3d3024170a000000000000000000000000000000000001070d161d242932373c43474d5254575f6265686d70727476787a83909da9b6b3a6998d807a7877757372706d686662605b54535049443f38352f271f17110a0300000000000000000000000000000d192633404c5966737f8c99a6b2bfccd9e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbd8e4d8cbbeb1a5988b7e7265584b3f3225180c0005121e2b3845515e6b7884919eabb7c4d1dedacdc1b4a79a8e8174675b4e4134281b0e0100000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8dfd3c6baaea29886796d6053463a2d201307000000000c1925323f4c5865727f8b98a5b2becbd8e5dcd2c8c0b9b5b3b9bbc0c0bbb3ada9a19e9a938f8b88858281807f7f8081828386898c90959b9fa3abafb9bec4cdd3d7d0cac0b7afa69e938c80736c61564c41362c1d140a0000000000000000000000000000010e1b2834414e5b677481838383838383838383838383838383909ca9b6c3cbbfb4aa9d91838383838383838383838383838383838383838288939facb9c6c0b5ab9d9184838383838383838383838383838383838383837d7063574a3d3024170a00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b505b656c77818e939ea5afb7c1cad3d2c7beb5aba39992877d706b60584e463c342a21180f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060000000008121b242d374049525c606c78818e939ea6a8a8a8a8a8a8a8a9a19791847b6e685e554c4135291d11040000000000000000000000000000000000000a15212e3b47535f6a7683909ca9b2bdcfd8d7cbc0b5ab9e9285796d6053463d322018232f3a4754606d7a86929facb9c5d1d1c5b8aca095887b6e6255483c31261b0f0300000000000000000000000000000000000000000006121f2b3844505c666d727b828b92979ea2988f82756c61564c4135291f27303946525e68727f8b95a0a19e948f867f796f6b6054483b2f2215090000000000000000000000000000000000000000000714212d3a46535f697683909daab4bfcad4d0c1b7ada39c938e85807c797675757474747474706b6155483c2f23160900000000000000000000000000000000040c13181f282f353d43474e53575e6166696e72767a7d7f8183858790959fabb8b4a89c928d87858382807f7d7a76736f6c6663605b53504a4540393128231c150c06000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e3d6cabdb0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9e3d6cabdb0a3978a7d7064574a3d3124170a0004111d2a3744505d6a7783909daab6c3d0dddbcec1b4a89b8e8175685b4e4235281b070000000000000000000000000000000000000000000000000000000d192633404c5966737f8c99a6b2bfccd9ded2c5b8ab9f928578665c5145382c1f1306000000000b1724313e4a5764717d8a97a4b0bdcad7e1d6cbc0b6aea9a7acafb5bdc5beb9b3adaca49f9c9897928f8e8d8c8b8c8d8e909299999d9fa7acafb5bdc0c9cfd6d5cdc5bebaaea59e948e81776c605a50443b30241a0b02000000000000000000000000000004111d2a3744505d6a7783909090909090909090909090909090949fabb7c4d0c6b8aca0959190909090909090909090909090909090909090939aa4afbbc8c7b8aca096919090909090909090909090909090909090908b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b49535b656c78818e939ea5afb8c1cad4d0c7bdb5aba39992867d706a60584e463c332a21170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000009121b252e374044505b666d78818f949b9b9b9b9b9b9b9b9b9b9b9691837a6d675d5145392c201306000000000000000000000000000000000006111c2935414c56626f7c88949fabbbc4cfe0d4c7bbafa3998d8073675c5145382c1f13202c3945515d6775828f9cabb5c0cbd4c8bcb1a7998c807366584e43372b1f12060000000000000000000000000000000000000000000713202d3a4653606d787f868f949ea2a9aa9e948a7e71685d52453d31272e39424f59616e7b85929fa7ada69f98928c847d6f6356493c302316090000000000000000000000000000000000000000000815222e3b4855616e7b88959fabbcc5d0d2c7bdafa59c918c8179736f6d66696867676767676361594f44382c201407000000000000000000000000000000050d161d2429313a40454e54585f62696e73777b7f83868a8c8e9092979d9fa7b1bcb9aea49c999792908f8d8b8a86837f7c7975706c65605c54514b433d342e261e180f080000000000000000000000000a1724303d4a5763707d8a96a3b0bdd0dbe7d8cbbeb1a5988b7e7265584b3f3225180700000000000000000000000000000000000000000000000000000000000000000000000000000000020e1b2835414e5b6874818e9ba7b4c1cedae3d7cbbfb5ab95887c6f6255493c2f2216090003101c2936434f5c6976828f9ca9b5c2cfdcdbcec2b5a89b8f8275685c4f422e23180c0000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0cdd9ddd1c4b7aa9e9184776b544b4034281c1004000000000a1623303d495663707c8996a3afbcd1dcddd1c5b9aea49d9a9fa3abb5bfc6c4beb9b6afaca9a9a29f9c9a999898999a9b9d9fa3abaaabb1b9bbc0c7cfd5d5cec9c2bbb3ada49d938e82796d655b50483e32291e120800000000000000000000000000000004111d2a3744505d6a7783909c9c9c9c9c9c9c9c9c9c9c9c9c9c9fa6b0bcc7d3c8bdb1a8a09d9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9fa4acb6c0ccc8bdb2a8a09d9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b4149535b666d78818e939ea6b0b8c2cad4d0c7bdb4aba29892867c6f6a5f584e453c332920170e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000009131c2528333f4a545c666d79828e8e8e8e8e8e8e8e8e8e8e8e8e8e8e837a6d6054473a2d21140700000000000000000000000000000000000b17222d3946525d6874818e9aa6b0bccdd6dfd2c5b9ac9f92877b6e61554b4034281c111d2935414b5565717e8b99a3afbbc7d4cec3b7aa9d9184776a5f53473a2e21150a0000000000000000000000000000000000000000000916232f3c4956626f7c8992989fa6adb3b0a69e91857a6d60594f43392f34404b54606b75818e98a2aeb9b0aaa39f958a7d7164574a3e3124170b0000000000000000000000000000000000000000000c1925323f4c5865727f8b98a7b1bcced7ccc0b5ab9e938c7f746d6762605c545b5b5b5b5b5b57554f473e33281c10040000000000000000000000000000060e171f282f353d434b515860626a6e747b8084888c8f9299989a9c9ea1a9abb1b9c2bfb6aea8a9a29e9d9b9a989992908c8985827d78716d66605d554f443f383029211a110800000000000000000000000915222f3c4855626f7b8895aab4bfcad6e2d9ccc0b3a6998d8073665a4d402f24180c0000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556976828f9ca9b5c2cfdce0d3c7bbaea399877a6e6154473b2e21140800020f1b2835424e5b6875818e9ba8b4c1cedbdccfc2b6a99c8f837669554b4034281c100400000000000000000000000000000000000000000000000000020e1b2835414e5b6874818e9ba7b4c1cedadcd0c3b6a99d9083766a5d50432e23180c00000000000815222f3b4855626e7b8895abb5c0cbd7dbcec1b5a99d928d9299a3aeb4bcc3c9c7c0bbb9b6b3adaba9a7a6a5a5a6a7a8aaacafb5b6b8bcc3c7cbd1d4cec9c4bdb9b0a9a29f928d81786d675c53493f362c20170d0000000000000000000000000000000004111d2a3744505d6a7783909da9a9a9a9a9a9a9a9a9a9a9a9a9abb0b9c2cdd8cec3bab1acaaa9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9acafb6bec7d2cec3bab2acaaa9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f414a545c666d78818f949ea6b0b8c2cad4cfc6bdb4aaa29892857c6f6a5f574d453b322920170e040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000010a1317222d38424a545c676d79818181818181818181818181818181817e7265584b3f3225180c00000000000000000000000000000000030f1c28333f4a54616d7a86929facb8c2cddfd4c8bdb1a89b8f8275695e5343392e23180d18242f3a4754616d7a86929facb9c5d2d1c5b8aca095887b6f6255483c31261b0f0300000000000000000000000000000000000000000815222e3b4754606a75828f99a3afb9beb9ada1978e81746b60554b40343845515c66707d89939eaab3bebcb0a69d9083786c605346392d2013060000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0cdd4c7bbafa4998f81756d605d5553504a4e4e4e4e4e4e4a48443e352c21160b0000000000000000000000000000070f182029313a40454f555d606a6f757b81868d9196989c9fa3aba7a9abadb3b8bcc2cbc8bfb9b4b3adabaaa8a6aba39f9c9997928e8a837e79726d676059504a423b332c231a1007000000000000000000000714212e3a4754616d7a8798a2aebac7d3e0dbcec2b5a89b8f827568554b4035291d10040000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d677884919eabb7c4d1dedfd2c5b9ac9f9286796c605346392d20130600010e1a2734414d5a6774808d9aa7b3c0cddaded1c4b7ab9e918478675c5145382c1f13060000000000000000000000000000000000000000000000000004101d2935404b55697683909ca9b6c3cfdcdbcfc2b5a89c8f8275695c4f4236291c0700000000000714212e3a4754616d7a8799a3afbbc7d4dacdc0b3a79a8d8087929fa2aab1babec5c9c8c6c2bebab8b5b4b3b2b2b3b4b5b6b9bbc0c3c4c8cdd3d2ccc8c4bdb9b2aca69f97928a80786d665c554b41382d241a0e050000000000000000000000000000000004111d2a3744505d6a7783909daab6b6b6b6b6b6b6b6b6b6b6b6b7bcc2cbd4ded5ccc3bdb8b7b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b9bbc0c7d0d9d5ccc3bdb8b7b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b1a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f38424a545c666d78828f949fa6b0b8c2cbd4cfc6bcb4aaa29792857c6f695f574d443b322920160d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000006111c262f38424b555d676d74757575757575757575757575757575726d62564a3d3124180b0000000000000000000000000000000006121f2b3844505b66727f8c98a2aebac7d3ded1c5b8aca095897d7063574d4230271d120713202d3946525e6876838f9ca9b6c2cdd4c8bdb1a8998c807366584e43372b1f1206000000000000000000000000000000000000000006131f2b37434e58626e7b87929faab4bfbeb3a99d93897d70675c51453c424d57606d7984919da5afbcc5b7ab9f948a7d70655b5044372b1f12050000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1ced2c6b9ac9f93877b6e625b514b46443f4241414141413d3c38332c231a100500000000000000000000000000071019212a323b434b515960676d747c82878e92999ea0a8a9acafb5b4b6b8b9bec5c8cdd4d1cac4c5beb9b8b6b5b3b5afaca9a9a29f9b95908b847f79706b605c544d453d352c22190f060000000000000000000713202d3946525d687985929facb8c5d2dfddd0c4b7aa9d918477675d5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6d2dfded1c4b7ab9e918478665b5044382b1f120600000d192633404c5966737f8c99a6b2bfccd9dfd2c6b9ac9f9386796d6053463a2d2013070000000000000000000000000000000000000000000000000006131f2c3845515d677884919eabb8c4d1dedbcec1b4a89b8e8175685b4e4235281b0f02000000000613202d394653606c7986929facb9c5d2d6cabdb0a3978a7d7e8a9298a0a7adb3b9bdc4c6c9cac6c5c2c1c0bfbebfc0c1c3c5c7cbd1d1d1cbc7c5c0bbb9b2aca8a19e948f857e736c665c544b43392f261b1208000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3c3c3c3c3c3c3c3c3c3c3c4c7cdd4dde6ded5cec8c5c4c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c6c8ccd2d9e2ded5cec8c5c4c3c3c3c3c3c3c3c3c3c3c3c3c3c3beb1a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f2f38424a545c666d79828f949fa6b0b9c2cbd4cec5bcb3a9a19791857b6e695e564d443a32281f160d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060000000000000000000a141d263039434b555d606768686868686868686868686868686865625b51453a2e221509000000000000000000000000000000000613202d394653606c7884919eaab4bfcad6d6cabeb4aa9d9184776b6054453b311e150b05111d2a36414c5665727f8b98a7b1bcc8d4cec3b7aa9d9184776a5f53473a2e21150a0000000000000000000000000000000000000000030f1b27323d47535f6a74818e98a2aebac4bbafa59e9184796d60584e4246535f69727f8c96a0acb7c1bbb0a69c9083766b6153493f33271b0f03000000000000000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfcfc2b5a99c8f8276695f5345403a38342e3434343434302f2c28211a110800000000000000000000000000071019222b333c444c555d606b707980878f939a9fa3abacb2b6b9bbc0c1c3c5c6c9cfd4d8dfdcd5d0cfcac6c5c3c2c0c0bbb9b6b3adaba7a09d96918b847d736d665f574f473d342b21180e05000000000000000005111d2935414c566a7784909daab7c3d0dddfd2c6b9ac9f93867a6d6053473a2d2014060000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c889aa4afbbc8d4e0dccfc2b5a99c8f827669544a3f33281c0f0300000b1825313e4b5864717e8b97a4b1bed0dbe0d4c7bbafa499887b6e6255483b2f221508000000000000000000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6d2dfd9ccc0b3a6998d8073665a4d4033271a0d000000000006121f2b3844505b667885919eabb8c4d1d7cbbeb1a4988b7e717e8691959fa2a9acb2b8b9bec1c3c5c7cbd1cacbcbcbcbcac9cfc9c5c4c2c0bbb9b6afaca8a19e96918a827b706c605b544a423931271d140a00000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3cfcfcfcfcfcfcfcfcfcfd0d3d8d8dbdfe7dfd9d4d1d0cfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfd2d4d8dddfe2e6e0d9d4d1d0cfcfcfcfcfcfcfcfcfcfcfcfcfcabeb1a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f323038424b545c676d79828f949fa7b1b9c3cbd5cec5bbb3a9a19791847b6e695e564c443a31281f150c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000000020b151e273039434b51535b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b585651493f34291d120500000000000000000000000000000006121e2b37424e5764707d8a96a1acbcc6d0dbd3c6baaea2988b7f7265594f4433291f0c03010d1925303b4854616e7b87959fabb8c4d1d1c5b8aca096887c6f6255483c32261b0f0300000000000000000000000000000000000000000a15202b37434e58616e7b86929fa9b3bec0b9aca0968d80736a5f544a505a616e7b86929fa8b2bdc7b7ab9f94897d7063594f41382d22170b00000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0ccbfb2a5998c7f7266574d42352f2b282328282828282423201c16100800000000000000000000000000050e19222b343c454d565e676d747d848d939a9fa4acaeb4b9bdc2c5c7cbd1cfd1ced1d2d5dae0dcd5d0cdccc9caccced1cbc7c5c3bebab8b1aca8a19e96918780786e6960594f463d332a20170d0300000000000000010d192430414e5b6874818e9ba7b4c1cedae0d4c7bbafa499887c6f6255493c2d22170b0000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97acb6c0ccd8e4d9cdc0b3a69a8d8073675a4d402d22170b000000091623303c4956636f7c8996aab4bfcad6e2d7ccc0b5ab968a7d7063574a3d3024170a000000000000000000000000000000000000000000000000000915222f3c4855626f7b889aa4afbbc8d4e0d7cbbeb1a4988b7e7165584b3e3225180b0000000000030f1c28333f4a546a7784909daab7c3d0d9ccbfb2a6998c7f73717c838b92979ea1a8abadb3b4b7b9babfbdbdbebebfbebdbcbbbdb9b7b5b5afacaca49f9c96918b847d766e69615a504a423930271f150b0200000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3cacacacacacacacacacacacacbcccfd4dae2e5e1ded6d1cecdcacacacacacacacacacacacacacacacacacacad2d3d6dbe1e5e1ded5d0cdcccacacacacacacacacacacabeb1a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f32263039424b555d676d798290959fa7b1b9c3cbd5cdc5bbb3a9a19691847b6e685e564c433a31271e150c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000030c151e2831394045474e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4b4a453f372d23180c010000000000000000000000000000000a14212e3a47535f6a76828f9ca8b2bdced8ded2c5b8ab9f92857a6d6054473d3321170d00000814202d3a46525e697683909da9b6c3ced4c8bdb2a8998c807366584e43372b1f12060000000000000000000000000000000000000000040f1a26313c46525e6973808d97a2adb9c4bdb2a89f92877c6f665b5055616c75828f98a2aebac3bdafa59c8f82766b6054473e2f261b110600000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0c9bcafa396897c706356493d31241f1c171b1b1b1b1b171614100b0500000000000000000000000000030d17202b343d464e575f686e79818991969fa4acafb6babfc6c8ced2d2d0cac6c5c2c4c5c9ced6d1cac4c1bfbcbec0c2c5c6cad0cfcac6c3bcb8b2aca9a199938d837b706b60584e453c32291f150b0100000000000000081926323f4c5965727f8c98a5b2bfcedae3d7ccc0b5ab988b7f726553493f33271b0f030000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c566774818d9aa7b4c0d2dde3d7cbbfb4ab978a7e7164574b3e312418060000000814212e3b4754616e7a8798a2aebac7d3e0ddd2beb2a5988b7f7265584c3f32251909000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97acb6c0ccd8e3d7cbbfb4aa96897c706356493d3023160a0000000000000b17222d434f5c6976828f9ca9b5c2cfdacdc0b4a79a8d81746a6f787f858c91969a9ea1a9a7aaacaeb4b0b1b1b2b2b1b0afaeb2adaba8aba39f9c9a938f8a847e79706c615f5750443f382f271e150d030000000000000000000000000000000000000004111d2a3744505d6a7783909daab6bdbdbdbdbdbdbdbdbdbdbdbdbdbebfc3c9d0d9e2dad2cbc5c2c0bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdc5c6cad0d7e0dad1cac4c1c0bdbdbdbdbdbdbdbdbdbdbdbdb1a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225273039434b555d676d798390959fa7b1b9c3ccd5cdc4bbb2a8a09691837a6d685d554c433930271e150c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060000000000000000000000030c161f282f35393a414242424242424242424242424242423f3d3a342d251b110600000000000000000000000000000006111b2935414b55626e7b88949fabbac4cee0d3c7bbb0a69a8d8074675d5145392c201305000005121e2a36424d5766727f8c99a7b1bcc8d4cec3b7aa9e9184776a5f53473b2e21150a0000000000000000000000000000000000000000000915202a36424d57606d7a85929ea8b2bdc3bbafa3999083786c60575d67707d8a949eaab4bfc0b5ab9e93897c6f62594f44352c1d140a0000000000000000000000000000000000000000000003101d2a3643505d697683909ca9b6c3cfc8bbaea295887b6f6255483c2f2215100b060e0e0e0e0a0907040000000000000000000000000000010b151f29333d464e5860696e7a838e939ea1a8afb6bbc0c7cbd1d4cec9c5c4bebab8b5b7b9bdc4ccc8bfb9b4b3afb1b3b5b8babfc5c6cacfcec8c4bdb9b2aba49f9590867d706a60574d443b31271d1207000000000000000a1623303d495663707d8996a8b2bdc9d5e1ddd2c2b5a89b8f8275655b5044372b1f1205000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e687784909daab7c3d0dde0d3c7baaea399887b6f6255483c2f2215090000000613202d394653606c7985929facb8c5d2dfdacdc0b3a79a8d8074675a4d4131251a0e020000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfd2dde0d3c7baaea398877b6e6154483b2e211508000000000000061b2835424e5b6875818e9ba8b4c1cedbcec2b5a89b8f827568666d727a7f848a8e9197989b9d9fa3aaa3a4a4a5a5a4a3a2a2a8a19e9c999992908c87827e79726d67615a534d453e332d261d150c03000000000000000000000000000000000000000004111d2a3744505d6a7783909daab0b0b0b0b0b0b0b0b0b0b0b0b0b0b1b3b7bec7d0dfd2c8c0b9b5b4b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b8babec5ced7d1c8bfb9b4b3b0b0b0b0b0b0b0b0b0b0b0b0b0a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f32251e273039434b555d676d7a839095a0a7b1bac3ccd5cdc4bab2a8a09590837a6d675d554b433930271e140b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000000000000040d161d24292c2d3435353535353535353535353535353532312e29231b1209000000000000000000000000000000000b17222d3945515d6774808d9aa6b0bbccd6ddd0c3b7ab9f94887b6e62554b4135291d11040000020e1a25303b4855626e7b8895a0acb8c5d1d2c5b8aca096887c6f6255483c32261b0f030000000000000000000000000000000000000000030e1a25303b45525d68727f8c96a1acb9c3c0b5ab9f958b7f72695e606d7984919ea6b0bcc6bbafa4998f82756a6054473d32231a0b0200000000000000000000000000000000000000000000020f1c2835424f5b6875828e9ba8b5c1cec7baada194877a6e6154473b2e21140800000101010100000000000000000000000000000000000007121d27313b454e58606a6f7b8490959da5acb2bbc0c7ccd2d1cbc7c4bdb9b7b3adaba8abacb2bac4bfb6aea8a6a2a4a6a8acaeb4b8b9bec5c9cecec9c4bdb5afa79f9892867c6f695f564d43392f23180c040000000000000714212e3a4754616d7a8796a1acb9c5d2deded1c5b8ab9e9285796c605346392d20130a000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86939facb9c6d2dfdfd2c5b9ac9f9286796d6053463a2d20130700000005121f2b3744505b657784919daab7c4d0dddbcfc2b5a89c8f827569574d42362a1e1205000000000000000000000000000000000000000000000004111d2935414b556774818d9aa7b4c0cddadfd2c5b9ac9f9286796c605346392d2013060000000000010d1a2734404d5a6773808d9aa6b3c0cdd9d0c3b6a99d9083766a5c60686d72787d8185888b8e909298959797989898989796959496918f8c8a86837f7b76716d66605c555046423b3328221c140b0300000000000000000000000000000000000000000004111d2a3744505d6a7783909da4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a7acb5becdd7cbc0b6aea9a7a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4abaeb3bcc5d0cabfb6aea8a6a4a4a4a4a4a4a4a4a4a4a4a4a4a4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225151e273139434b555d686d7a839095a0a8b2bac4ccd6ccc4bab1a8a0959083796d675d554b423930261d140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000040c12181d2020282828282828282828282828282828282524221d18110900000000000000000000000000000000030f1b27333f4953606d7a85929fabb8c2ccded5c9bdb2a89c8f82766a5f53433a2f24180d010000000914212e3a47535f697784919daab7c4ced4c8bdb2a8998d807366584e43372b1f130600000000000000000000000000000000000000000009141f2935414c56606d7984919ea7b1bcc7bdb1a79f92867b6e616a73808d96a1acb8c1c0b5ab9f93877c6f62584e43352b2111080000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cdc7baaea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000050e18232f39434d57606a6f7c859196a0a7afb9bdc4ccd2d4cfc7c0bbb9b2acaaa9a29f9b9ea1a8b2bdb9aea49c999697999c9fa2aaabadb3b9bdc4cbd1d0c7c0bbb1aaa29892857b6e685e554b40342920150a0000000000000713202d3946525e687884919eabb7c4d2dddfd2c6b9ada197887c6f6255483c31261a0f01000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a5464707d8a9aa4afbbc8d4e0dcd0c3b6a99d908376665c5144382c1f1206000000030f1b27333f49536875828e9ba8b5c1cedbded1c4b7ab9e918478695e53463a2d21140700000000000000000000000000000000000000000000000613202c3945515d677683909da9b6c3d0dcddd0c3b7aa9d908477665b5044382b1f12060000000000000c1926333f4c5966727f8c99a5b2bfccd8d1c4b7ab9e9184786b56565d60666d7074787c7e81848687888a8a8b8b8c8b8a898887868482807d7a76726e6964605c54514b433e3631292117110a020000000000000000000000000000000000000000000004111d2a3744505d6a77839097979797979797979797979797979797989ba3acbbc5cfc5b9aea49d9a979797979797979797979797979797979797979fa2aab3becac4b9aea49c999797979797979797979797979797978b7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f322518151f28313a434c565d686d7a839096a0a8b2bac4ccd5ccc3bab1a79f959082796d675c544a42382f261b110600000000000000000000000000000000000000000000000000000000000000000000000606060606060606060606060606060606060606060b1825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f3225180c0606060606060606060606060606060606060606060100000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000000000000000001070d1013141b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b181815120c06000000000000000000000000000000000005121f2b3744505b65727f8b98a2aebac6d3ded2c5b9aca1968a7d7064574e4231281d13070000000006121e2b37424d576673808c99a8b2bdc9d5cec3b7aa9e9184776a5f53473b2e21150a000000000000000000000000000000000001020203020d19242f3a45515c67717e8b95a0acb8c2c2baaea2988f82756c6e7c87929fa8b2bdc7bbafa3998e81756a5f53463d3223190f000303020100000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbc8bbafa295887c6f6255493c2f22160900000000000000000000000000000000000000000000020d17202934404b555e696f7c869297a0a8b1b9c0c9ced8cec8c2bdb5afaca8a09e9997928f9196a1acb9b4a89c928c898b8d8f92989a9ea2a9acb2bbbfc6cfd2ccc2bcb3aaa19791847a6e675c51453c31261b0f04000000000005111d2a36414c566774818e9aacb6c0ccd8e2d6cabeb3a9998c807366584e43372b1d1207000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c6674818e9bacb6c0ccd8e2d6cabfb4aa998c807366544a4034281c1004000000000b17222d3f4c5966727f8c99a5b2bfcedaded2c5b9aca196877b6e6154483b2e21150900000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb9c5d2dfdacec1b4a79b8e817468544a3f33281c0f030000000000000b1825313e4b5864717e8b97a4b1becad7d2c5b9ac9f928679685d5252545c6063656c6f727477797a7c7d7e7e7f7f7e7d7c7b7a79787573706d6766615e5753504a454039312a261f170f0600000000000000000000000000000000000000000000000004111d2a3744505d6a77838a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8b919ba9b3becac2b5a99d928d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a9298a2aebac6c1b4a89c928d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a7e7164584b3e3125180b00111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180d161f28313a434c565e686e7a849196a0a8b2bac4cdd5ccc3b9b1a79f948f82796d665c544a41382d2217130a010000000000000000000000000000000000000000000000000000000002070a0c0d121212121212121212121212121212121212121212121825323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f322518121212121212121212121212121212121212121212120d0d0b0703000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000000000010406070e0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0c0b0905010000000000000000000000000000000000000613202d394653606c7884919daab4becad6d6cbbfb4aa9e9184786d6053463c3120160c0100000000020e1a26313c4955626f7c8896a1acb9c5d2d2c5b9aca096887c6f6255493c32271b0f030000000000000000000000000407090a0e0f0f101008131e2834404b55606c7883909da6b0bbc7bfb4aa9e948a7e7176828f99a3aebac4bfb4aa9f92877b6e61584e43342b20110610100f0f0e0a090704000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcfc9bcb0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000009141f29333b45515c676e7b859198a1a9b2bac3cbd5d6ccc3bdb8b0aba39f9b96918c89858284919eabb7b3a6998c807c7e808285898d92979ea1a8aeb5bdc3cbd7cec5bcb3a9a1969083796d60584e43372b20150a0000000000010d1925303e4a5764717e8a9aa4afbbc8d4e0dacfc4b7aa9d9184776a5f5347392f23180c00000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929eabb8c5d2dde0d3c6baaea298897c706356493d2e23180c0000000000061723303d4a5663707d8996a8b2bdc9d5e1d5c9bdb2a8978b7e7164584b3e31261a0e02000000000000000000000000000000000000000000000a1724303d4a5763707d8a99a3afbbc7d3e0d7cbc0b5ab988b7f7265584c3f2d22170b000000000000000a1724303d4a5763707d8a96a3b0bdc9d6d3c7baaea398877a6d6054474a5053535b60626568656c6d6f707171727271706f6f6e6d66696663605d5554534d46443f38342f271f1a140d0600000000000000000000000000000000000000000000000000000a1623303d495663707d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7e8b97a1adb9c6c0b4a79a8d807d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7e85929fabb8c5c0b3a6998d807d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e6154483b2e21150800111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0d161f28313a444c565e686e7b849196a1a8b2bbc4cdd5cbc2b9b0a69f948f82786d665c53493f3327261c130a010000000000000000000000000000000000000000000000000000070e1317191a1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f25323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f32251f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1a1917130e080100000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060000000000000000000000000000000000000000010202020202020202020202020202020000000000000000000000000000000000000000000005121e2a36424d5763707d8996a0acbcc5d0dbd3c7baaea3988c7f72665c5044382b1f12040000000000000915212e3b47535f6a7884919eabb7c4cfd5c9bdb2a8998d807366584e43372b1f130600000000000000000000050b101416171b1b1c1c1d1d1e18232e3944505b66707d8a949fabb7c1c5bcb0a69e92857a7e8a949fabb5bfc7baaea3988e8174695f53463c31221c171e1d1d1c1b1b171613100b0500000000000000000000000000000916222f3c4955626f7c8895a9b3bec9cabeb1a4978b7e7164584b3e3125180b000000000000000000000000000000000000000000030c1a25303b45515b606d79839097a1aab3bbc4ccd5d0cac0bab2aca69f99928f89847f7c7976838f9ca9b6b2a5988b7f72717375797d80858b91969fa3abb1b9c2cbd4cec5bbb2a8a0958d80736a5f53473c32261b0f0100000000000814212e3a4754616d7a87939facb9c6d2dfded1c5b8aca095887b6f62554b4034291b110600000000000000000000000000000000000000000000000000000000000000000004111d2935414c5663707d8997a2adb9c6d2e4dfd2c5b8ac9f9285796d6053463a2d20130700000000000714212e3a4754616d7a8796a1acb9c5d2dedacec1b4a79b8e817468574d42372b1e120500000000000000000000000000000000000000000005111d2935414c566773808d9aabb5c0cbd7e0d4c7bbafa399897c6f6256493c2f231606000000000000000916222f3c4955626f7c8895a2afbbd0dbd7cbbfb4aa95887b6e6255483f44464950535558535b60616264646565656564636261605c54595754514b4846423b38342e29231d150d09030000000000000000000000000000000000000000000000000000000916222f3b4854606b7071717171717171717171717171717171717885929eabb8c5c0b3a69a8d8073717171717171717171717171717171717176828f9ca9b6c2bfb2a5998c7f727171717171717171717171717171716e695e53463a2d21140700111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c040d161f28323a444c565e696e7b849196a1a9b2bbc5cdd4cbc2b8b0a69e948e81786d655b504440382e251c1309000000000000000000000000000000000000000000000000020a12191f2326272c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c323e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f322c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2726231f19120b02000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f6975828f9ca8b2bdced7dfd2c5b8ac9f92867a6d61544a3f34281c100300000000000006131f2b37434e586773808d9aa9b3bec9d5cec4b7aa9e9184776a6054473b2e22150a000000000000000000080f161c202223282829292a2a2b2b2328333f4a54616b76828f9ca5afbdc7c1b9ada1978e8185919ea6b0bdc6bfb4aa9f92867b6e61574d42342d2c28232b2a292928282322201c160f08000000000000000000000000000714202d3a4753606d7a8697a1adb9c6ccbfb3a6998c807366594d4033261a080000000000000000000000000000000000000000000a151e2a36424d57626d75818e959fa9b2bcc5cdd6cec6bfbaafa8a09d948f87827d78736f6d76838f9ca9b6b2a5988b7f726566676d7074797f848c9299a0a7b1b9c2cbd4cdc4bab1a79f92877c6f62584e43372b1e130800000000000713202d3946525e687783909daab6c3cdd9e0d4c8bcb1a7998d8073675c5145382d22170b0000000000000000000000000000000000000000000000000000000000000000000b13202c3945525d6874818e9ba9b3becad6e2d7cbc0b5ab9c8f8276675c5145382c1f130600000000000713202d3946525e687884919eabb7c4d1deded1c4b7ab9e918478695f53463a2d2114080000000000000000000000000000000000000000000713202d3946525d687783909daab6c3d1dcdfd2c5b9ac9f92867a6d6053473a2d201407000000000000000815212e3b4854616e7b8794aab3becad6dcd1bcafa396897c706356493d383a3f4446494b49505354555757585859585756555453514b4d4a4745413b3a36312c28231c18120b0300000000000000000000000000000000000000000000000000000000000713202c38444f596063646464646464646464646464646464646975828f9ca8b5c2c2b6a99c8f8376656464646464646464646464646464646673808d99a6b3c0c1b5a89b8e8275686464646464646464646464646464615e574d42362a1e120500111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00040d162029323b444d575e696e7b849197a1a9b3bbc5cdd4cac2b8b0a69e938e81776c605c524a40372e251b120900000000000000000000000000000000000000000000000a141c242a2f3233393939393939393939393939393939393939393939393939393e4b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b3f393939393939393939393939393939393939393939393939393433302b241c140b010000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b55616e7b87939facb9c3cedfd4c7bcb1a79b8e8174685e5242382e23170b00000000000000030f1b26323c4956636f7c8997a1adb9c6d2d2c5b9aca096887c6f6255493c32271b0f030000000000000008111a21272c2f3034353536363737382e34383a424f59626f7c89939eabb5c0c9beb3a99e938e9197a1adb8c2c6baaea2988d8073695e52453b3a3a38342e373736363534302f2c27211911080000000000000000000000000613202c3945515d677885919eabb8c4cec1b4a89b8e8175685b4e423025190e020000000000000000000000000000000000000006111c26303846525e69727f8b939ea7b1bbc4ced6ccc4bcb4aea59d96918a827c75706c65626976838f9ca9b6b2a5988b7f7265555c6063676d72787f8790959fa7b1b9c2cdd6ccc3bbaea3998f82756a5f54473a2f24190d010000000005111d2a36414c566673808d99a7b1bcc8d4e3d9cec3b8ab9e9285796d6053493f33271c12070000000000000000000000000000000000000000000000000000000000000007121d28333f4a54606d7a86929facb8c5cfdbe0d4c7bbafa3998b7f7265554b4034281c1004000000000005111d2935414c566875818e9ba8b4c1ced9dfd2c5b9ada196887b6e6155483b3024190d0100000000000000000000000000000000000000000714212e3a4754616d7a86939facb9c6d2dfddd0c3b6aa9d908377675d5145392c1f1306000000000000000714202d3a4753606d7a8698a2aebac6d3d7cabdb1a4978a7e7164574b3e312d3337393c3f3f444647494a4b4b4c4c4b4a494847464540403d3a39352f2d2a251f1c17110c070100000000000000000000000000000000000000000000000000000000000004101c27333d474f5456575757575757575757575757575757596673808c99a6b3bfc5b8ab9f9285796c60575757575757575757575757575764707d8a97a8b2bdc4b7ab9e918478685e5757575757575757575757575754534d453b31251a0e0200111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000040e172029323b454d575f696e7b859197a1a9b3bbc5ced4cac1b8afa59e938e80746e645c524940372d241b120900000000000000000000000000000000000000000007121c262e353b3f4045454545454545454545454545454545454545454545454545454b5865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265584b4545454545454545454545454545454545454545454545454545403f3c362e261c12080000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d6773808d99a4afbbc7d4ddd1c4b8ab9f95887c6f62564c4130261c110600000000000000000a13202d394653606c7985919eabb8c4d0d5c9bdb2a8998d807366584e43372b1f1306000000000000050f1a232b33383c3d414242434344444445404546474754606a75818e99a3afbbc6c5bbafa59e9b9ea1a9b3becabeb3a99f92867a6d61574d48484746443f454443434242413d3c38332b23190f05000000000000000000000004111d2935404b55697683909ca9b6c3cfc3b6a99d9083766a564c41362a1e1105000000000000000000000000000000000000000c17232e38424f59616e7b86929fa5afb9c3cdd5ccc4bab2aaa29f928e847d766f6a63605b536976838f9ca9b6b2a5988b7f7265585153555d60666d737c8390959fa7b1bbc5cfd7cbbfb5ab9e94887c6f62564c4135291d110400000000010d1925303b4855626e7b8895a0acb8c7d2dddfd2c6b9ada1978b7e71655b5044392e23180c020000000000000000000000000000000000000000000000000000000000000c18232e3844505b66727f8c98a2aebac7d7e1dfd2c5b9ac9f92867a6e6154473b2e23180c000000000000010d1925303e4b5865717e8b98a8b1bdc8d4e1d5c9bdb2a8988b7e7165564c4135291d11050000000000000000000000000000000000000004101d2935404b5564707d8a99a4afbbc7d4e0d6cabfb4aa998d807366554b4035291d10040000000000000006131f2c3845515c677885929fabb8c5d2d8cbbfb2a5988c7f7265594c3f3222272b2d2f2d3337393a3c3d3e3e3f3f3e3d3c3c3b3a38342e302d2c2924211e1a14100c06000000000000000000000000000000000000000000000000000000000000000000000b16212b353d4448494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a5763707d8a96a8b2bdc6baada297887b6e61554a4a4a4a4a4a4a4a4a4a4a4a54616e7a8796a1adb9c5b9ada196877a6e61544a4a4a4a4a4a4a4a4a4a4a4a4846423b33291f14090000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000050e172029333b454d575f696e7c859297a1a9b3bcc5ced3cac1b7afa59d928d80746e635b51493f362d241b120800000000000000000000000000000000000000020e19242e3840474b4d5252525252525252525252525252525252525252525252525252525865717e8b98a4b1becbd7e4d8cbbeb1a5988b7e7265585252525252525252525252525252525252525252525252525252524d4c4740382e24190e0300101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929fabb5c0ccd7d5c9beb3a99d9083766a6054443a301e140a00000000000000000006121f2b3844505b6674818e9aa9b3becad6cec4b7ab9e9184786a6054473b2e22150a0000000000000b16212b353d44484a4e4e4f4f50505151524b515354545558616e7b87929faab4bfcac1b7afaaa8abadb3bbc4c6baada2978c8073685e565555545453504a515150504f4e4e4a48443d352b21160b0000000000000000000000010d18242f414e5b6774818e9aa7b4c1cdc5b8ab9f928578685e5246392d20140700000000000000000000000000000000000003101c28343f4a54606b75818e98a2aeb7c1cbd4ccc4bab2a8a198928a8179706b625f5853505c6976838f9ca9b6b2a5988b7f7265584c464b51545c606a6f7a8390959fa9b3becad6d1c6bdb0a69b8e8175685d5245392c20130600000000000814212e3a47535f6a7783909dabb5c0ccd7e2d6cabeb3a99d9083786c60544a4034281f1409000000000000000000000000000000000000000000000000000000000006101c2834404b54606c7884919eaab4bfcad6e2d6cabfb4aa9c8f8276685e5246392d1d1207000000000000000815212e3b4854616e7b8795a0acb8c5d1dedacfc2b5a89b8f8275685d5246392d20160b0000000000000000000000000000000000000006131f2c3945515d6774818e9babb5c0ccd7e0d3c7baaea298897d706356493d2f24180c000000000000000004101c2934404b556b7784919eaab7c4d1d9cdc0b3a69a8d8073675a4d4034271b1f202222272b2d2e2f31313232323231302f2e2d2c28232421201d1814120e0903000000000000000000000000000000000000000000000000000000000000000000000000050f19232b33383b3d3e3e3e3e3e3e3e3e3e3e3e3e3e3e4754616d7a8796a0acb9c5beb3a9978a7e7164574b3e3e3e3e3e3e3e3e3e3e46525e697884919eabb8c4bdb2a8978a7d7064574a3e3e3e3e3e3e3e3e3e3e3e3b3a36312921170d030000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000050e172029333b454d575f6a6f7c859297a2aab3bcc5ced3c9c1b7afa59d928c80736d635b51483f362d241a110800000000000000000000000000000000000007131f2a35404a52575a5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f65717e8b98a4b1becbd7e4d8cbbeb1a5988b7e72655f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5a58524a40362b1f130700101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2c38444f5965717e8b97a2adbdc7d2ddd2c6b9ada1978a7e7164584e4332281e0c02000000000000000000030f1c28333f4a5463707d8997a2adbac6d3d2c5b9aca196887c6f6255493d32271b0f000000000004101c27333d474f54565b5b5c5c5d5d5e5e5e5f5c6060616162626974808d98a2aebac6c9c1bab6b5b8b9bec4cdc5b8ab9f92857a6d64636362626160605c5f5e5e5d5c5c5b5b56544f473d33271c10040000000000000000000000071926333f4c5966727f8c99a5b2bfd2c6baaea298877a6e6154473b2e21140800000000000000000000000000000000000006121f2c3844505c66707d89939eaab4bfc9d3cdc4bab2a8a19691867e746d676159534e46505c6976838f9ca9b6b2a5988b7f7265584c3f40454a50585f686d7a839097a2adb9c2cdd8cfc1b9ac9f92867a6d6054473a2d22170b000000000006121f2b37434e5865727f8c99a4afbbc7d4e0dacfc5b8aca0958a7e71665c51443b3025191007000000000000000000000000000000000000000000000000000000060f1a242c3845515c66717e8b96a0acbcc6d0dbe0d3c6baaea2988a7e7164564c41362a1e0b00000000000000000714202d3a46525e697784919daab7c4cfdadfd2c5b9ac9f92867a6d6154473d32271b0b020000000000000000000000000000000000000714202d3a4753606d7985929facb8c5d2dddfd2c5b8ac9f9286796d6053463a2d2013070000000000000000000c18232f43505d697683909ca9b6c3cfdbcec1b4a89b8e8175685b4e4235281b121316171b1f20212224242525262524232221201f1c18171413110d07050200000000000000000000000000000000000000000000000000000000000000000000000000000007111921272c2f30313131313131313131313131313946525e687784919eaab7c4c0b3a69a8d80736753493f333131313131313136424d566875828f9ba8b5c2bfb3a6998c80736653493f333131313131313131312e2d2a251f170f05000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000050e172129333c454e575f6a6f7c859298a2aab4bcc6ced2c9c0b7aea49c928c7f726d625a50483e362c231a110800000000000000000000000000000000000a17232f3b47525c63666c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c717e8b98a4b1becbd7e4d8cbbeb1a5988b7e726c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645c52473c3023170b00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b15222f3b4854606b7783909da9b3bed0d9d7cbc0b5ab9e9285796d6053463c3220160c00000000000000000000000b17222d3a4653606d7985929fabb8c5d0d5c9bdb2a89a8d807367584e43372b1b1106000000000714202c38444f59606367686869696a6a6b6b6c666d6d6e6e6f6f70707a85929facb8c5d2ccc6c3c1c4c6c9cfccbfb2a5998c7f72717170706f6e6e6d6d666b6b6a6a696968676360594f44382c20130700000000000000000000000a1724313d4a5764707d8a97abb5c0cccabeb3aa96897c706356493d3023160a0000000000000000000000000000000000000713202d3a4653606d7883909da5afbcc6d0cfc5bbb2a8a09691847c716c605c554f474343505c6976838f9ca9b6b2a5988b7f7265584c3f35383f444e565d686d7a85929ea6b0bbc7d3d3c7baaea3988b7e7165544a3f33281c0f0300000000020f1a26313c4754616e7b87939facb9c2cdd8e1d4c8bcb1a79e9184796d60564d42362a22190e0500000000000000000000000000000000000000000000000000040d18212a36414c56606d7984919ea8b2bdced8e2d7ccc0b5ab9f92867a6d6053473b3025190d000000000000000005121e2a36424d576774808d9aa8b2bdc9d5e0d3c7baaea3998b7e7265594f44382c1d140a000000000000000000000000000000000008131f2b37434e5864717e8a98a2aebac6d3e3d7cbbfb5ab9c8f8276675c5145382c1f1306000000000000000000071c2935424f5c6875828f9ba8b5c2cedbcfc2b6a99c8f8376695c50432e23180c06060b0f12131416171818191918171615141313100c070706040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161c2022232424242424242424242424242a36414c566875818e9ba8b5c1c2b6a99c8f8376655b5044372b242424242425303f4c5966727f8c99acb6c0c2b5a99c8f8276655b5044372b242424242424242421211e1a140d0500000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000050f17212a333c454e585f6a6f7c869298a2aab4bcc6cfd2c9c0b6aea49c918b7f726d625a50483e352c23191007000000000000000000000000000000000c1926323f4b57636e737878787878787878787878787878787878787878787878787878787878787e8b98a4b1becbd7e4d8cbbeb1a5988b7e787878787878787878787878787878787878787878787878787878787878736e64584c3f3326190d00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2a36424d57636f7c8995a0acbbc5cfe0d3c7bbafa3998c8073665c5145382c1f1305000000000000000000000006121f2c3844515c6675818e9baab4bfcad6cec4b7ab9e9184786a605447382d22170b000000000916222f3c4854606b707475757676777777787879797a7a7b7b7c7c7d7e828f9ca9b6c2cfd7d2cfced1d2d5daccbfb3a6998c807f7e7d7d7c7c7b7b7a79797878777676757574706b6054483c2f22160900000000000000000000000915222f3c4855626f7b8899a4afbbc7d0beb1a5988b7e7265584b3f32251807000000000000000000000000000000000006131f2b37434e5864717e8b95a0acb7c1ced1c7bdb3a9a09691847b6e6a615a514b433e3743505c6976838f9ca9b6b2a5988b7f7265584c3f322e343c434c565e68717e8b949fabb7c5d0d7cbbfb4aa9b8f8275665b5044382b1f120600000000000a15202d3a46525e6975828f9ba7b1bcc7d3dfd9cec3b9aca0968b7f72695e52463f342b20170d040000000000000000000000000000000000000000000000030d16202a333c46525e68727f8b96a1acbac3cee0e0d4c7bbafa4998e8174675d514539291e14080000000000000000020e1a25303d495663707d8996a1adb9c5d2dfd7cbbfb4ab9d9083776b6054483d2f261b1106000000000000000000000000000000050e1a242e3b4754606a7683909caab4bfcad6e0d3c7bbaea3998b7e7265554b4034281c10040000000000000000010e1b2734414e5a6774818d9aa7b4c0cddad0c3b7aa9d9084776a544b4034281c1004000003050607090a0b0b0c0c0b0a0909080706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1013161617171717171717171717171925303f4c5965727f8c98abb5c0c5b8ab9f9285796c605346392d201717171723303d495663707c899aa4afbbc5b8ab9f9285796c605346392d20171717171717171514120e09030000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000060f18212a333c464e58606a6f7d869298a2aab4bcc6cfd2c8bfb6ada39b918b7f716c615a50473e352b231910070000000000000000000000000000000d1a2733404d5a66738085858585858585858585858585858585858585858585858585858585858586929facb8c5d2dfebdfd2c5b8ac9f92868585858585858585858585858585858585858585858585858585858585858073675a4d4034271a0d00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3a46525e6975828e9ba7b1bccdd7dfd2c5b9ac9f92867b6e61544b4034281c1004000000000000000000000004101c2834404a5464707d8a98a2aebac7d3d2c5b9aca196897c6f6253493f33271b0f030000000a1723303d4a5663707d8181828283838484858586868787888889898a8a8f949fabb7c4d0dddedcdbdedfe1dacdc1b4a89c928c8b8b8a8a8988888787868685848483838281817d7063564a3d3023170a00000000000000000000000714202d3a4753606d7a86939facb9c6cdc0b3a79a8d8074675a4d412f24180d01000000000000000000000000000000000815222e3b4754606a7683909da7b1bcc9d7cbc0b5aba19791847b6e695f5850454039313643505c6976838f9ca9b6b2a5988b7f7265584c3f322328313a434c56626c76828f9caab4becad6d1c5b8ab9f9285796c605346392d201306000000000005111e2a36424d56636f7c89959fabb7c3ced9dfd4c8bdb2a89f92857b6e615a50463c32291f160e05000000000000000000000000000000000000000000040d151f28323c46505a616e7a85929fa8b2bdccd5e0d9d0c6b9ac9f93877b6e62554b4035291d11040000000000000000000913202d394653606c7884919eabb8c3ced9dcd1c6b8ab9f95897d7063584e41382d22170b0200000000000000000000000000020b17202b37434e58626f7c89949fabbcc5d0dbdfd2c5b9ac9f92867a6d6154473a2e23180c000000000000000000000d1a2633404d596673808c99a6b3bfccd9d1c5b8ab9e928578665c5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a0b0b0b0b0b0b0b0b0b0b081623303c4956636f7c8999a3afbbc6baaea298887b6e6155483b2e2215060b14212d3a4754606d7a86939facb9c6baada297887b6e6255483b2f2215070b0b0b0b0b0807050200000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000060f18212a343c464e58606a6f7d869298a3aab4bdc6cfd1c8bfb5ada39f93877e716c61594f473d352b2219100600000000000000000000000000000e1a2734414d5a6774808d92929292929292929292929292929292929292929292929292929292929298a2aebac7d3e0ece0d3c7baaea2989292929292929292929292929292929292929292929292929292929292928d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b54616e7b86929facb9c3cedfd4c8bcb1a79b8e8275695e5242392e23180c000000000000000000000000000c18232e3a4753606d7986929facb8c5d1d5c9bdb2a89a8d8073655b5044372b1f12060000000d192633404c5966737f8c8e8f8f909091919192929993949495959696979c9fa6b0bbc7d3dfebe8e8ebebe9ddd0c4b9aea49c999898979696959594939992929191908f8f8e8c7f7266594c3f3326190c000000000000000000000006131f2c3845515c677884919eabb7c4cfc2b5a99c8f827669554b4035291d110400000000000000000000000000000004111d2935414c56626f7c88959fabb9c3cecec6bbafa39992857b6e695f574e463e342f273643505c6976838f9ca9b6b2a5988b7f7265584c3f32251f28313a44505a64717e8a98a2aebac6d3d3c6baada297887c6f6255493c2f2216090000000000020e1925303b4854606b7683909da7b1bcc8d4e1d9cec3baada2978f82756c62584e443b312820170e0600000000000000000000000000000000000000060d161f27313a444e58616c75828f97a2adbac4cededdd2c7beb0a69b8f8275695f53433a2f24180d0100000000000000000006121f2b3844505b6673808d9aa7b1bcc8d4e1d4c8bcb1a79c8f82766a6053493f33271d140a000000000000000000000000000a141d29323b47535f6a75828e9ba6b0bbced7e2d6cabeb4aa9c8f8275685e5246392d1d1207000000000000000000000c1825323f4b5865727e8b98a5b1becbd8d2c6b9ada29786796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5beb3aa978a7e7164574b3e2d22170b0613202c3945515d677784919daab7c4beb3a9978a7e7164574b3e2e23180c00000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000060f18222a343d464e58606b707d869298a3abb5bdc7cfd1c7bfbbafa49992877e716b61594f473d342b22180f06000000000000000000000000000e1a2734414d5a6774808d9a9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa2aab4bfcad6e2efe2d6cabfb4aaa29f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6673808c99a3afbbc7d3ded1c5b8aca095897c7063574d4230271d12070000000000000000000000000007131f2c3945515d6775828f9babb5bfcbd7cec4b7ab9e9184786c605346392d22170b0000000d192633404c5966737f8c999b9c9c9d9d9e9e9f9fa3a0a1a1a2a2a3a3a4a9abb0b8c2cdd8e4eff5f4f7f8ede1d5cabfb6aea8a6a5a4a4a3a3a2a1a1aba39f9e9e9d9d9c9c998c7f7266594c3f3326190c000000000000000000000004101c2934404b556976828f9ca9b5c2cfc4b7ab9e918478675d5145392c2013060000000000000000000000000000000613202c3945525d6874818e9aa7b1bcc4ccc6bcb0a69f92877d70695e574d453c332923293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225161f29323e4753606d7985929fabb8c5d2d6cabeb3a9978b7e7164584b3e3125180b00000000000009141f2c38434f5964707d8a95a0acb8c1cfd8e0d6cabeb3a99e948b7e716a60564c433a32292017110a02000000000000000000000000000000030910181f283139434c565f6a717e8a939ea9b3beccd6e0d8ccc0b6ac9f94897c6f63574d4231281d130700000000000000000000030f1c28333f4a54626f7c8895a0acb8c4cfdad8cdc3b7aa9f94897c6f655b50443b2f261c1107010000000000000000000007111b262f3b44505a626f7c87939facb9c2cddfdfd3c6baaea2988a7e7164564c41362a1d0b00000000000000000000000b1724313e4a5764717d8a97a4b0bdcad7d6cabeb3a994877b6e6154483b2e211508060606060606060606060606060606060606060606060606060606060606060606060606060606040402000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d677783909daab7c3c0b3a69a8d80736753493f33271b0f04111d2935414c556874818e9ba7b4c1c0b3a79a8d807467544b4034281c1004000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000061018222b343d464f59606b707d869299a3abb5bdc7d0d7ccc0b5aba39992877d706b60594f463d342a21180f060000000000000000000000000e1a2734414d5a6774808d9aa7abababababababababababababababababababababababababababacaeb4bcc6d0dbe7f3e7dbd0c6bcb4aeacabababababababababababababababababababababababababababa79a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929eabb5c0cbd7d6cabeb3a99d9083776b6054453b301e150b000000000000000000000000000004101d2935404b5564717e8b99a3aebbc7d3d2c5b9ada196897c6f6253493f33271b0f0300000d192633404c5966737f8c99a6a9a9aaaaaaababacafb5adaeaeafafb0b0b6b7bbc2cad4dee9f4fffffffdf2e6dcd1c8bfb9b4b3b2b1b0b0afafaeaeb4aeacababaaa9a9a5998c7f7266594c3f3326190c0000000000000000000000000c18232f414e5a6774818d9aa7b4c0cdc5b9ada196867a6d6053473a2d2014070000000000000000000000000000000714212d3a4754606d7a85929fa4adb2bac1bfb4aa9e948c7f726b60574d453b332a2118293643505c6976838f9ca9b6b2a5988b7f7265584c3f32251917202c3945515d6775828f9ba8b5c2cedbd0bfb3a6998c807366594d4033261a0d000000000000020f1b27323d4653606c7884919da6b0bdc6d1dcdbd0c5bbb0a69f92867c6f685e564c443b3228221c140b0a04010000000000000000000004090e151a222a313a434b555d686e7c86929fa5afbbc5d0deddd4c8bbafa49a9083766b6054453c311f160c0100000000000000000000000b17222d3847535f6a7783909da9b3bec9d5dfd3c7bbb0a69d9083786c60564d42382d2218120b0300000000000000030b1218222d38414c56616c76828f99a4afbbc7d4e0d7cbc0b5ab9f9285796d6053473a3025190d00000000000000000000000a1623303d495663707c8996a3afbcd1dcdbcfbcafa295897c6f6256493c2f23161212121212121212121212121212121212121212121212121212121212121212121212121212121211100e0b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556774818e9aa7b4c1c2b6a99c8f8376655b5044372b1f12050d19242f3f4b5865727e8b98aab4bfc3b6a99d908376665c5145382c1f1306000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000071019222b343d474f59606b707d879299a3abb5bdc7d0d2c7bdb5aba39992867d706b60584e463c332a21180f0500000000000000000000000e1a2734414d5a6774808d9aa7b3b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8babfc6ced8e2edf8ede2d8cec6bfbab8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b4a79a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5864717e8a97a1adbdc7d1cecec6baada2978b7e7265594f4433291f0c030000000000000000000000000000000c18242f3a4754606d7a86929facb9c5d2cec9bdb2a89a8d8073655b5044372b1f120600000d192633404c5966737f8c99a6b2b6b6b7b7b8b8b9bbc0babbbbbcbcbdbdc2c4c7cdd4dce6f0fbfffffffff8ede3dad1cac4c1bfbebebdbdbcbbbbbabfbab9b8b7b7b6b2a5998c7f7266594c3f3326190c000000000000000000000000071926323f4c5965727f8c98a5b2bfcbc9bdb2a895887c6f6255493c2f2216090000000000000000000000000000000815222e3b4855616e7b848d929ea1a8afb9baaea3988f82756d62594f453b332921181d293643505c6976838f9ca9b6b2a5988b7f7265584c3f322519101d2935404b556773808d9aa6b3c0cdd9cec1b4a89b8e8175685b4e4235281b0f000000000000000a161f2b3744505b65707d8a949eabb5bfcbd7e1d7cdc1baaea29891847a6e685d564c443d332d261d1b15110d0707050100010507070c10151a20262b343c434c555d676d7a849198a2aeb7c1cdd7e0d6cabfb4aa9f93877c6f62594f43332a1f0d0400000000000000000000000006111c2b37434e5865717e8b97a1adb9c6d0dbd8ccc2b8ab9f958b7e71695e544a3f3329231d150d0a06040104060a0c151c2328333f49535e68717e8a949fabb5c0ccd7e0d3c7bbafa3998d8073675d514539281e130800000000000000000000000815222f3b4855626e7b8895abb5bfcbd7d6cabdb0a3978a7d7064574a3d31241f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1e1d1b17110b0400000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3e4b5865717e8b98aab4bfc5b8ab9f9285796c605346392d2013060816222f3c4955626f7c8898a3aebac5b9ac9f9286796d6053463a2d201307000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000071019222b353d474f59616b707e879299a3abb5bec7d2d0c7bdb5aba39892867d6f6a60584e453c332a21170e05000000000000000000000e1a2734414d5a6774808d9aa7b3c0c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c7cad0d8e0eae3e3e3eae0d8d0cac7c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c0b4a79a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6c3cfdcd2c5b8ac9f9285796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4754606a7683909da9b3bec1c1c1c1c0b6ac9f9285796d6053473d3220170d000000000000000000000000000000000713202c3945525d6876828f9cabb5c0c1c1c1c1b7ab9e9184786c605346392d22170b00000d192633404c5966737f8c99a6b2bfc2c2c3c4c4c5c5c7cbd0c7c8c9c9cacfd0d3d8dee6eef8fffffffffffdf3eae1dad3cecbcac8c7d1cbc7c5c5c4c4c3c3c2c2c1bfb2a5998c7f7266594c3f3326190c0000000000000000000000000a1724313d4a5764707d8a97a3b0bdcfcfbdb1a4978a7e7164574b3e3124180b0000000000000000000000000000000714212d3a46535f696e79808991969da5adb2a89f92867b6e615b51473d332921170f1d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c18242f3f4c5965727f8c98a5b2bfcbd8cfc2b5a99c8f8276695c4f4336291c1000000000000000030f1b27333f4953616b75828f99a3aebbc3cfd8dfd6cabfb4aaa19690837a6d685e564f443f382f2b26201d181413110d080d111314181d1f262b31373e464e565d676d79828f96a0aab4bec9d3dfd7cec5baaea2988e81746a6054463d3221180e00000000000000000000000000000f1b26323c4653606d7985919eaab4bfcad6ded4c7bcb1a79e92857b6e665b50443f342f271f1b1413110d1013131b1e272e343f44505b656e7a85929ea6b0bdc7d2ddd8cec5b9ac9f92867b6e61554b4035291d100400000000000000000000000714212e3a4754616d7a8799a3aebbc7d3d8cbbeb1a5988b7e7265584b3f322c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2b2a27221d160e05000000000000000000000000000000000000000000000000000000000000000000000000000000000715222f3c4855626f7b8898a2aebac6baaea298887b6e6155483b2e2215060713202d3a4653606d7986929facb9c5baaea398887c6f6255493c2f221608000000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000071019232b353d474f59616c717e879299a4acb6c0ccd8cfc6bdb4aaa29892867c6f6a5f574e453b332920170e050000000000000000000e1a2734414d5a6774808d9aa7b3c0cdd2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3d6dbd6d6d6d6d6d6d6d6d6dbd6d3d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2cdc0b4a79a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6c3cfd6d2c5b8ac9f9285796c5f5246392c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c56626f7c89959fabb4b4b4b4b4b4b4afa49a8d8074675d5145392c2013050000000000000000000000000000000004111d2935414c5665727e8b99a4afb4b4b4b4b4b4ada196897c6f6353493f33271b0f03000d192633404c5966737f8c99a6b2b5b5b6b6b7b7b8b8babfbabbbbbcbcbdc2c4c7cdd4dce6f0fbfffffffff6ebe1d8cfc8c2bebdbbbbbabfbab9b8b8b7b7b6b6b5b5b4b2a5998c7f7266594c3f3326190c0000000000000000000000000915222f3c4855626f7b8895a9b3becaccbfb2a6998c7f7366594c403326190700000000000000000000000000000005121e2a36424d575f676d747d848e939ea1a9a1968c7f73695f53493f352b21170f101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f322519071825313e4b5864717e8b97a4b1becad7cfc3b6a99c908376695d5043362a1d1000000000000000000b17222d38414f59626e7b87929fa8b2bdc6d1dcdbd0c6bcb2a89f9590837a6e686059504a423d37322c292421201e191d191e202124292c31373c424750585f686d79828f949fa8b2bcc5d0dbdbd0c5bcb1a79f92867b6e61584e43342b210f0600000000000000000000000000000a151f2c3845515c67737f8c98a2aebac4cfdad8cdc2b9ada1978f82786c605b51454039312c2720201d181c1f20272b30394044515b606c77828f97a1adb8c2d0d9dcd0c6bcafa59b8e8175695e5343392f24180c0000000000000000000000000613202d394653606c7986929facb9c5d2d9ccbfb2a6998c7f7366594c40393939393939393939393939393939393939393939393939393939393939393939393939393939393939393736332e2720170e040000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929facb8c5beb3aa978a7e7164574b3e2d22170b06131f2c3845515c667683909da9b6c3bfb4aa988b7e7265584b3f2f24190d010000000000000000000000000000111e2b3744515e6a7784919daab7c4d0ddd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000071119232c353e47505a616c717e87939aa4afbbbfc7d1cfc6bcb4aaa29892857c6f6a5f574d453b322920160d0400000000000000000e1a2734414d5a6774808d9aa7b3c0c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c0b4a79a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6c3c9c9c9c5b8ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e6874818e9ba7a8a8a8a8a8a8a8a8a89f93877b6e61554b4035291d100400000000000000000000000000000000010d19242f3b4754616e7a86939fa8a8a8a8a8a8a8a8a89a8d8074655b5044372b1f1205000d192633404c5966737f8c99a6a7a8a8a9a9aaababacaeb4adaeafafb0b0b6b7bbc2cad4dee9f4fffffffbf0e4dacfc6bdb7b2b0aeaeadb4aeacababaaaaa9a9a8a8a7a7a5998c7f7266594c3f3326190c0000000000000000000000000714212d3a4754606d7a8797a2adbac6cec1b4a79b8e8174685b4e412f24180c000000000000000000000000000000020e1a26313b454d555d606b707a818a91979e9e9184796d60574d42372d23190f05101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c1926323f4c5965727f8c98a5b2bfcbd8d0c3b6aa9d9083776a5d5044372a1d11000000000000000006111b262f3e47535f6a73808d96a0abb5bfcbd7ddd8cec4bab1a79f9590837a6f6b605b544e47433c39352f2e2d2a252a252a2d2e2f35383c42474e535a616a6f7a828f949fa6b0bac3ced7ddd6cabfb4aa9f958c7f72685e52463d3222190f00000000000000000000000000000004101c2834404b55616d7a86929fa8b2bdc9d5e0d5c9beb3a99f948d80736d635b514b433d38322d2c2924282c2d32373d424a515b626d73808c949fa9b3becad4e2d6cbbfb4aa9e93887c6f62574d4231271d120700000000000000000000000005121f2b3744505b657885919eabb8c4d1dacdc0b4a79a8d8174675a4e454545454545454545454545454545454545454545454545454545454545454545454545454545454545454544433f39322920160b00000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667683909ca9b6c3c0b3a69a8d80736753493f33271b0f04101c2834404b546774808d9aa7b3c0c1b4a79b8e817468554c4135291d11040000000000000000000000000000111e2b3744515e6a7784919daab7c4d0d6d6cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000007111a232c353e48505a616c717e88939fa3adb5bfc8d1cfc6bcb3aaa29792857c6e695f574d443b322820160d04000000000000000e1a2734414d5a6774808d9aa7b3bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdb4a79a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b6bdbdbdbdbdb8ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929b9b9b9b9b9b9b9b9b9b9b9b8f8276695f5343392f24180d0100000000000000000000000000000000000814202d3946525e687683909b9b9b9b9b9b9b9b9b9b9b9184786c605346392d201306000d192633404c5966737f8c999a9a9b9c9c9d9d9e9e9fa3aaa1a1a2a2a3a4a9abb0b8c2cdd8e4eff4f4f8f9eadfd3c8bdb4aca6a4a2a1a1a0a39f9f9e9e9d9d9c9c9b9b9a9a998c7f7266594c3f3326190c0000000000000000000000000613202c3945515d677885929fabb8c5cfc3b6a99c90837669554b4035291d100400000000000000000000000000000009141f2a333b434b515960686d747d858e93988b7f72675c51453b31251b110700101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190f1b27333f49536673808d99a6b3c0ccd9cfc3b6a99c908376695d5043362a1d100000000000000000000a141d2b37424e57606d79849199a3aebbc2cbd5dfd6ccc2b9b1a79f9590847d726c666058534e4745413d3a393630373036393a3d4045474d53575f626c717c848f949fa6b0b8c2ccd5ded4cbc2baaea2989083786d60564d41342b201007000000000000000000000000000000000c18232e3946525e6873808c96a1adb9c2ced7dacfc5bbb0a69c928c7f726d605c554f48433d3a39352f34383a3c43474f545c606d727f8b929ca6b0bbc5cfdcd9d0c7baaea3988e81756a5f53453b311f150b01000000000000000000000000030f1b27333f49536a7783909daab6c3d0dbcec2b5a89b8f8275685c525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252514f4a443b32271d1106000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546773808d9aa6b3c0c2b6a99c8f8376655b5044372b1f12050c18232e3e4b5764717e8a97a9b3bec4b7aa9d918477675d5145392c2013060000000000000000000000000000111e2b3744515e6a7784919daab7c4c9c9c9c9beb1a5988b7e7265584b3f3225180c0000000000000000000000000000000008111a232c363e48505a626c727f8b919ba3adb6bfc8c9cec5bcb3a9a19791847b6e695e564c443a32281f160c010000000000000e1a2734414d5a6774808d9aa7b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0a79a8d8174675a4e4134271b0e00101d2a3643505d697683909ca9b0b0b0b0b0b0b0ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c8e8e8e8e8e8e8e8e8e8e8e8e8e8a7d7063574d4231281d120700000000000000000000000000000000000005111e2a36414c5665727f8c8e8e8e8e8e8e8e8e8e8e8e8e897c6f6356493c30231609000d192633404c5966737f8c8d8d8e8e8f8f909191929298939494959696979c9fa6b0bbc7d3dfeae8e7ecece6dacec2b7aca29a9795949493999292919190908f8f8e8e8d8d8c8c7f7266594c3f3326190c00000000000000000000000004111d2935414c556a7783909daab6c3d0c4b8ab9e918578675d5145382c1f1306000000000000000000000000000000030e18212a313940454f565d606c707a818a92857a6d60554b4033291f13090003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f322519121f2b3744505b6575818e9ba8b4c1cedbcec2b5a89b8f8275685c4f4235291c0f000000000000000000020b1a26313c45515d676f7c87929fa6b0b9c3cdd6ded4cbc2b9b1a7a09691877f786f6a625f5854514b4a4746414443444146474a4b5153575f616a6e767e8691969fa6b0b8c2cad4ded5ccc2b9afa59f92867b6e665c50443b3022190f000000000000000000000000000000000007121d2935414c56606d7984919ea7b1bcc6d0dbd7cdc2b8aea49c918c7f746d676059544e4947454043404546494e545960666d747f88939fa4aeb8c2cdd6ddd2c7beb2a99f92867b6e61584e4333291f0d0300000000000000000000000000000b17222d434f5c6976828f9ca9b5c2cfdcd0c3b6a99d9083766a5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5e5b554d44392e22170b0000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3e4a5764717d8a97a9b3bec5b8ab9f9285796c605346392d2013060715222f3b4855626e7b8897a2adbac6b9ac9f93867a6d6054473a2d2114070000000000000000000000000000111e2b3744515e6a7784919daab7bdbdbdbdbdbdb1a5988b7e7265584b3f3225180c000000000000000000000000000000000008111a242c363e48505a626d727f8b919ca3adb6bdbdbdbdbdbbb3a9a19691847b6e685e564c443a31281d13070000000000000e1a2734414d5a6774808d9aa3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39a8d8174675a4e4134271b0e00101d2a3643505d697683909ca3a3a3a3a3a3a3a3a39f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a677380818181818181818181818181818181786c6053463c3120160c01000000000000000000000000000000000000020e1925303b4854616e7b81818181818181818181818181817e7164574a3e3124170b000916232f3c4956626f7c7f8080818282838384848585868787888889898a8f949fabb7c4d0dddedbdadfe0e3d7cbbeb2a69a908a8888878786868585848483838282818180807f7c6f6256493c2f231609000000000000000000000000010d19242f424f5b6875828e9ba8b5c1cec6b9ac9f93867a6d6053473a2d20140700000000000000000000000000000000060f181f282f353d434c525a61686d757e858074675d5143392f21170d010003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f32251919202d394653606c7885929eabb8c5d1dacdc0b4a79a8d8174675a4e4134271b0e000000000000000000000915202935404b555f6a727f8c949fa7b1bbc4ced7ddd4cbc3b9b1a9a199928c837c756f6a64605d555654524c5150514c525456555d6064696e747b828b9298a0a8b0b8c2cad4dcd6cdc3bab1a79e938b7e71695f544a3f32291f10070000000000000000000000000000000000000d1925303a45515d67717e8a959faab4bfcad6ded4cac0b6ada39b918c8179706b6260585653514b504b5153565860626b6f78818b939aa4afb6bfcad4dfd8ccc0b6aca1968c8073695e53463c3221170d000000000000000000000000000000061b2835414e5b6874818e9ba7b4c1cedad1c4b7ab9e9184786c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a675f554a3f33271b0e0200000000000000000000000000000000000000000000000000000000000000000000000000000615212e3b4854616e7b8797a1adb9c6baaea298887b6e6255483b2f2215060613202d394653606c7985929fabb8c5bbafa49a897c706356493d302316090000000000000000000000000000111e2b3744515e6a7784919daab0b0b0b0b0b0b0b0a5988b7e7265584b3f3225180c00000000000000000000000000000000000008121a242d363f48515b626d727f8c919ca4aeb0b0b0b0b0b0b0b2a9a19691847a6e685e564c433a2f24180d0100000000000e1a2734414d5a6774808d9696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696968d8174675a4e4134271b0e00101d2a3643505d6976839096969696969696969696969285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1926333f4b58646e737575757575757575757575757575746c665b5044382b1f120400000000000000000000000000000000000000000814212d3a46535e696e7575757575757575757575757575716c6155493c3023170a000815222e3b4754606a6f727374747575767677787879797a7a7b7c7c7d7e828f9ca9b6c2cfd6d2cfcdd2d3d7dccabdb0a4978a7e7b7b7a7a7979787877777676757574747373726f6a6054473b2e22150800000000000000000000000000081a2734404d5a6773808d9aa6b3c0cdc8bbafa49a887b6e6255483b2f2215080000000000000000000000000000000000060d161d2429313a414550565e616c717a7b6e61554c4131271d0f06000003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f32251a232a36424d57626f7c8997a1adb9c6d2d9ccbfb3a6998c807366594d4033261a0d00000000000000000000030d18242f39434e58606c77828f95a0a9b2bcc5ced6ddd4cbc3bbb2aba39f959087817c76716d676563615e565d5d5d565e616365676d70757b81868f949fa2aab2bac2cad4dcd6cdc4bbb2a89f958e81756c62574d42382e20170d0000000000000000000000000000000000000008131e2935404b55606c77839098a2aebac1ccd5dcd1c8bfb5ada39b938e837d756f6a6663605d555d555c6063666a6f757c838e939fa4acb6c0c8d1dcd7cdc5bbafa49a9184796d60574d42342a200f050000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0cdd9d2c5b9ac9f92867978787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787771675b4f43362a1d100400000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535e697885929eabb8bdbeb3aa978a7e7164574b3e2d22170b05121f2b3744505b6576828f9ca9b5bdc0b6ac998c7f7266594c3f3025190e0200000000000000000000000000111e2b3744515e6a7784919da3a3a3a3a3a3a3a3a3a3988b7e7265584b3f3225180c0000000000000000000000000000000000000008121b242d363f49515b636d737f8c929ca4a3a3a3a3a3a3a3a3a3a8a09690837a6d685d554b4035291d110400000000000e1a2734414d5a6774808a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8174675a4e4134271b0e00101d2a3643505d6976828a8a8a8a8a8a8a8a8a8a8a8a8a86796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232f3b47525c6467686868686868686868686868686867605b544a3f33281c0f03000000000000000000000000000000000000000005121e2a36424d575e61686868686868686868686868686864615a5045392d2114080006131f2b37434e586062666667676869696a6a6b6b666d6d6e6e6f6f707a85929facb8c5d2cbc6c2c1c5c7cbd1cdc1b4a79a8e81746e6e6d6d666c6b6b6a6a69696868676766666260584e43372b1f1306000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbccc0b6ac968a7d7063574a3d3024170a000000000000000000000000000000000000040c12181f282f353e444c525a61686e6e695e53433a2f1f150b00000003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225232c353d46535f6974818d9aa9b3bec9d5d6cbbfb4aa988b7e7265584b3f3225180c000000000000000000000007121d28313c44505b656d7a839196a1aab3bcc4cdd5ddd5cdc4bdb5aea7a099938e88827e7a7572706d686b6a6a6a6b686d707275797d82878d92999fa6aeb4bcc3ccd4dcd5ccc4bbb3a9a0969083796d605a50453b30261c0e0500000000000000000000000000000000000000020c18242f3944505b656e7b86929fa5afbac3ccd6dad1c7bfb5ada59e959089817c7773706d676a6a6a676d6f72777c818790959da5afb6bec7d2dad7cec5bbb1a79f93887d70675d51453b3122180e000000000000000000000000000000000c1926333f4c5966727f8c99a5b2bfccd8d3c7baaea3998985858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858583776a5e5144372b1e1104000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576975828f9ca8b0b0b0b0a69a8d80736753493f33271b0f030f1b27333f49536673808c99a6b0b0b0b0a89b8f827568564d42362a1e110500000000000000000000000000111e2b3744515e6a7784919696969696969696969696968b7e7265584b3f3225180c000000000000000000000000000000000000000009121b242d373f49515b636d73808c92969696969696969696969696969590837a6d675d5145392c20130600000000000815222f3b4855626e7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6f6255483c2f22150900091623303c4956636f7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2a36404a52585a5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b53504a42382d22170b000000000000000000000000000000000000000000020e1a25313b454d53545b5b5b5b5b5b5b5b5b5b5b5b5b5b575550483e33281c110500030f1b27323d464e5456595a5a5b5b5c5c5d5e5e5f5c60606161626974808d98a2aebac6c9c0bab6b4b9babfc6cfc5b9ac9f92877b6e6160605c5f5e5e5d5d5c5c5b5b5a5a595956544e463d32271b0f03000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2beb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000001070d161e2429323a414650565e61615e574d4231281e0d0300000003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f32252a353e47515b616e7b86929facb9c5cfdad3c7baaea398897d7063564a3d3023170a0000000000000000000000010c161f27333f49535d686e7b849198a2aab3bbc3ccd7dcd6cfc6bfbbb1aba49f9b948f8a86827f7d7a787877767778787a7d7f82858a8f93999fa3abb0babfc5ced5dcd6cbc3bab2a9a19791847a6d675d51483e332a1e150a00000000000000000000000000000000000000000007121d27333f49535f69717e8b939ea8b1bac4cdd7d9d1c7bfb7afa7a09d938e89837f7c7a7877767778797c7f83888e939aa0a7afbbc0c7d0d9d8cfc6bcb3a9a0958d80736b60554b4033291f1006000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7d7cbbfb4aba29792929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929184786b5e5145382b1e12050000000000000000000000000000000000000000000000000000000000000000000000000000020e1a2531404c5966737f8c99a3a3a3a3a3a39c8f8376655b5044372b1f12050b17222d3d4a5764707d8a97a8a3a3a3a3a39e918478695e52463a2d20140700000000000000000000000000111e2b3744515e6a77848a8a8a8a8a8a8a8a8a8a8a8a8a8a7e7265584b3f3225180c00000000000000000000000000000000000000000009121b252d373f49515b636e7380898a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a837a6d6053473a2d20140700000000000814212e3a47535f6a6e70707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706f6a5f53473a2e211508000915222f3b4854606b6f70707070707070707070707070706b6155483c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e19242e3840474b4d4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e46443f382f261c11060000000000000000000000000000000000000000000009141f29333b4246484e4e4e4e4e4e4e4e4e4e4e4e4e4e4a49453e362c22170c0000000a16202b343d4347494c4d4d4e4f4f505051514a5053545458616e7b87929faab4bfcac0b7afa9a7acaeb4bcc6c7bbafa3998e81746a5f53504a52515150504f4f4e4e4d4d4c4947433d342b20150a00000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9ccbfb3a6998c807366594d4033261a0d000000000000000000000000000000000000000000040c1319202830363e444d525454534d453b311f160c0000000003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3230363f475059626d75818e99a3aebbc7d6dfd2c5b8ac9f92867a6d6053473a2d201407000000000000000000000000040d17222d38414c565e696f7c869298a1a9b2bac2cbd1d9d8d1cbc3bdb5afaca69f9c98928f8c89878584848384848587898c8f92989b9fa4abaeb4bdc2cad0d7d8d0cbc1b9b1a8a09791857b6e685e554b40362d21180c03000000000000000000000000000000000000000000010b17222d38414d57626c75818e95a0a8b2bbc5cdd6d9d1c9c1b9b1aca59e9b95908c8986858483848586898c90959b9fa4acb1b9c0ccd2d9d7cfc6bdb4aaa1979083796d60594f43392f21170d00000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdc9d6dcd1c6bdb3a9a29f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9e9184786b5e5145382b1e1205000000000000000000000000000000000000000000000000000000000000000000000000000000091724303d4a5763707d8a96969696969696969285796c605346392d2013060614212e3b4754616e7a87969696969696969696877a6e6154473b2e211408000000000000000000000000000a1623303d495663707d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e6154483b2e2115080000000000000000000000000000000000000000000009131b252d374049525c636e737d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e6155483b2e221508000000000006121f2b37434e585f626363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363625f584e43372b1f12060007131f2c38434f596063636363636363636363636363636361594f44382c20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121c262e363b3f404242424242424242424242424242413938332d261d140a0000000000000000000000000000000000000000000000030d17212931363a3b42424242424242424242424242423e3c39332c241a1005000000040f19222b32373b3c3f4041414242434344453f44464754606a75818e99a3afbcc6c3b9afa59d9a9fa3aab4bfcbc0b5ab9f92877b6e62584e4345444443434242414140403f3c3b37322b22190f0400000000000000000000000000000916222f3c4955626f7c8895a2afbbc8cdc1b4a79a8e8174675b4e4134281b0e0100000000000000000000000000000000000000000001080e161e252a323b4146474846423b33291f0d040000000003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f343b4246515a616b727f8b939eabb5bfcbd7dccfc2b5a99c8f8276675d5145392c1f13060000000000000000000000000006111b262f3a444d575f6a6f7d869197a0a8b0bbc0c7cfd7dcd7d0c7c0bbb9b0abaaa39f9c989698929190909091929896989b9fa2aaacafb5babfc6cfd6dbd6cec6bfbab0a7a09691857c6f695f564c43392f241b0f06000000000000000000000000000000000000000000000006111b262f3c45505a606d7a839196a1a9b3bbc4ccd7ddd2cbc3bcb8afaaa7a09d99999392919091929299999d9fa7acafb6bec3cbd8ddd5cdc5bdb4aba29892857b6e665c51473d31281d0f0500000000000000000000000000000000000916222f3c4955626f7c8895a2afbbd0dbe2d8cfc5bcb3adabababababababababababababababababababababababababababababababababababababababababababababab9e9184786b5e5145382b1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a878a8a8a8a8a8a8a8a8a887b6e6255483b2f2215080714202d3946525e6878848a8a8a8a8a8a8a8a8a8a7d7064574a3d3124170a000000000000000000000000000916222f3b4854606b7070707070707070707070707070706e695e53463a2d211407000000000000000000000000000000000000000000000009131c252e37404a525c636b7070707070707070707070707070707070706e695f53463a2d2114070000000000020f1a26313c464e5355575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575755534e463c31261b0f0300030f1b27323d464f54565757575757575757575757575756554f473d33271c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141c242a2f33343535353535353535353535353535342d2b28221c140b02000000000000000000000000000000000000000000000000050f171f252a2d2e353535353535353535353535353531302d28221a1208000000000007101920272b2e2f3333343435363637372e3438424f59626f7c87939fabb5c0c7beb1a79d938e9298a3aebac4c7bbafa3998e81756a5f53473d32373736363535343433332f2e2b27201910070000000000000000000000000000000815222f3b4855626e7b8895a1aebbc8cec2b5a89b8f8275685c4f4235291c0f020000000000000000000000000000000000000000000000050c131920293036393b3b3a36312921170d000000000003101d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3f444d525b626c707d87929fa5afbdc6d1dcd4c8bcb1a7988b7f7265554b4035291d100400000000000000000000000000000a141d28323b454e58606b6f7c8591969fa6afb5bdc4cbd1d8d9d2ccc7c2bbb7b4aeaca8a5aaa29f9e9d9d9d9e9fa2aaa5a8acaeb4b9bbc0c7cbd1d8d7d0cac3bcb4aea69e9590847b6f6a5f574d443a31271d1209000000000000000000000000000000000000000000000000000a141d2a333f45525d686e7b849197a2a9b2bac2ccd2d9d5cec8c1bab6b1acaaaba49f9e9d9d9d9e9fa3abaaabb1b9bbc0c7d0d5dad5ccc4bbb3aba39992867c6f695f544b40352c1f160c0000000000000000000000000000000000000815212e3b4854616e7b8794a9b3becad6e2e1d7cec5bebab8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b7ab9e9184786b5e5145382b1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e68707d7d7d7d7d7d7d7d7d7d7d7a6d6154473a2e21140705111e2a36414d56626f7c7d7d7d7d7d7d7d7d7d7d7b6e6155483b2e221508000000000000000000000000000713202c38444f5960636363636363636363636363636363615e574d42362a1e12050000000000000000000000000000000000000000000000010a131c252e37404a525960636363636363636363636363636363636363615f574d42362a1e12050000000000000a15202a343c4347484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4847433c342a20150a0000000a16212b343d4348494a4a4a4a4a4a4a4a4a4a4a4a4a4a48443d352c21160b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a12191f232627282828282828282828282828282828201f1c17110a020000000000000000000000000000000000000000000000000000050d141a1e212128282828282828282828282828282423211c17100800000000000000070f161b1f2223262727282829292a2b28333f4a54616b76828f9aa4afbdc7c0b6aca0958e8186929fa8b2bdc9c0b5ab9f93877c6f62584e43372b2a292928282727262623221f1b150f07000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7cfc3b6a99c908376695d5043362a1d100300000000000000000000000000000000000000000000000002080e171f252a2d2e2e2d2a251f170f05000000000003101d293643505c6976838f9ca9b6b2a5988b7f7265584c444a50575e616d727e869299a3aeb7c1cfd8dbd1c4b8ab9f95887b6e6255483b2f24180c000000000000000000000000000000020b162029333c464f59606a6f7b848f949fa3abb2babfc6ccd2d7d7d4ccc7c6bfbab9b5b2b4aeababaaa9aaababaeb4b2b5b8babfc6c7ccd2d7d7d2ccc5bfbab1aaa39f948f837a6e695f584e453b32281f150b0000000000000000000000000000000000000000000000000000020b18212935414c565e696f7c859297a0a8b1bbc0c7d0d6d9d4ccc6c3bcb8b7b5afacabaaa9aaabacafb5b6b8bcc3c8ccd2d9d7cfc9c1bab2a9a29992877d706a60574d42392e231a0d040000000000000000000000000000000000000713202d3a4653606d798697a2adbac6d3dfe9e0d7d0cac6c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c4b7ab9e9184786b5e5145382b1e120500000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c56606b70707070707070707070706d685e5246392d201307020e1925303b4854606a6f707070707070707070706e695f53463a2d2114070000000000000000000000000004101b27323d474f5456575757575757575757575757575754534d453b31251a0e02000000000000000000000000000000000000000000000000010a131c252e3840474f5456575757575757575757575757575757575755534d453b31261a0e02000000000000030e18222a31373a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3a37312a22180e04000000040f19222b32383b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332c231a100500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080e1317191a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b13120f0b06000000000000000000000000000000000000000000000000000000000003090e1214151b1b1b1b1b1b1b1b1b1b1b1b1b1b171714110c05000000000000000000040a0f131516191a1a1b1c1c1d161f2b3844505b66707d89949facb6c0c8bbafa49a918379808c96a0acb9c1c7bbafa49a8f82756a6054473d32271b1c1c1b1b1a1a191615130f0a0400000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d0c3b6a99d9083766a5d5043372a1d10040000000000000000000000000000000000000000000000000000050d14191e202121211e1a140d0500000000000003101d293643505c6976838f9ca9b6b2a5988b7f7265584950545c60696e757f879298a2abb5bfc9d3ded3c7bbb0a69d908376695f53473a2e1d120700000000000000000000000000000000040d17212a343d474f585f696e7a828c9299a0a8aeb4bbc0c7cbd1d5d8d3d1cbc7c5c2bfbebab8b7b7b6b7b7b8babebfc2c5c6cad0d4d7d5d1cbc7c0bbb4aea7a098928b82796e685f574e463c332920160d03000000000000000000000000000000000000000000000000000000060f1924303a444d575f6a6f7d8591969fa7afb5bdc3cad0d5d7d2cec8c5c3c0bbb9b8b7b6b7b8b9bbc0c3c4c8cdd4d8d6d1cbc4beb9afa8a09792877e716b60584e453c30271d11080000000000000000000000000000000000000006131f2c3845515c667885929fabb8c5d2d6d6d6d6dbd6d3d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d1c4b7ab9e9184786b5e5145382b1e1205000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a444f59606363636363636363636363615e564c41362a1d11050008141f2c38434e58606263636363636363636363615f574d42362a1e120500000000000000000000000000000b16212b353d4448494a4a4a4a4a4a4a4a4a4a4a4a4a4a4846423b33291f14090000000000000000000000000000000000000000000000000000010a131c262e353d44484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4846423b33291f14090000000000000000060f1820262b2e2f30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302f2e2b2620181006000000000007101921272c2f3030303030303030303030303030302f2c27211a110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002070b0d0d0f0f0f0f0f0f0f0f0f0f0f0f0f0f0e060603000000000000000000000000000000000000000000000000000000000000000000020507080f0f0f0f0f0f0f0f0f0f0f0f0f0f0b0a080500000000000000000000000000030608090c0d0e0e0f08131e2834404b54606c7883909da6b0bec7beb2a99f93887c6f7984919ea5afbcc5c0b6ac9e93897c6f62594f43382c21160b0e0e0d0d0c09080603000000000000000000000000000001040607090915222f3b4855626e7b8895a1aebbc8d0c3b7aa9d9084776a5d5144372a1e110400000000000000000000000000000000000000000000000000000002080e1114141514120e09030000000000000003101d293643505c6976838f9ca9b6b2a5988b7f726558535b60666d727b828b9399a2aab4bdc6d1dbd5ccc3b7ab9f94897d7063574d42372b1e0b010000000000000000000000000000000000050f18222b353d464e575f686d787f8791969fa3aaafb6bbc0c7c9cfd2d5d7d3d2cfd0cac6c5c4c3c3c3c4c5c6cad0ced2d3d6d5d2cec9c6bfbab5afaaa29f9590867f756d675e564d453c342a21170e04000000000000000000000000000000000000000000000000000000000008131e28323b454e58606b6f7c8490959fa4abb2babec5c9cfd3d7d4d1d2ccc7c6c5c4c3c4c5c5c7cbd1d1d4d7d4d0cac6bfbab3ada59e9691857d716c61594f463d332a1e150b000000000000000000000000000000000000000004101c2834404b546a7784919daab7c4c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c4b7ab9e9184786b5e5145382b1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d474f55565757575757575757575754524c443a3025190d0100020f1b27323d464e54565757575757575757575755534d453b31261a0e020000000000000000000000000000040f19232b32383b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a36312921170d03000000000000000000000000000000000000000000000000000000010a141c232b33383c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a36312921180d03000000000000000000060e151a1f2122242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242422211f1b150e0600000000000000070f161b1f2223242424242424242424242424242323201c16100800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101010d19242f3845515c66717e8a95a0acb8c2c5b9ada1978d80746b707d8a939eaab4bfc7beafa59c8f82766b6054483d32271c1005010100000000000000000000000000000000000001070d111314151516232f3c4956626f7c8995a2afbcc8d0c4b7aa9d9184776a5e5144372b1e11040000000000000000000000000000000000000000000000000000000000020507080807050200000000000000000104071d293643505c6976838f9ca9b6b2a5988b7f72655c60656c71787e858f949fa4abb4bcc6cfd8d7cec3baafa59c8f82766b6054453c31261a0e00000000000000000000000000000000000000061019232b343c454d565e666c737c848d92989fa4acafb5b9bec4c5c9cfd1d2d4d7d6d3d2d1d0d0d0d1d2d3d6d7d3d2d0cec9c5c4bdb9b4aeaba49f98928c837c726d605d554c443b332a22180f06000000000000000000000000000000000000000000000000000000000000020c162029333c464f59606a6e7a838d9399a0a8adb3b9bec5c7cbd1d2d4d7d4d2d1d0d0d0d1d2d3d7d5d2d2ccc7c6bfbab4aea9a19e938e847b706b615a50473d342b21180c030000000000000000000000000000000000000000000c18232e43505d697683909ca9b6bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdb7ab9e9184786b5e5145382b1e120500000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202c353d44484a4a4a4a4a4a4a4a4a4a4a4746413a32291e13080000000a16212b343d4348494a4a4a4a4a4a4a4a4a4a4846423b33291f14090000000000000000000000000000000007111921272c2f3030303030303030303030303030302e2d2a251f170f050000000000000000000000000000000000000000000000000000000000020a111921272c2f3030303030303030303030303030303030302e2d2a261f180f060000000000000000000000030a0f12141517171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171515120f0a04000000000000000000040a0f13151617171717171717171717171717171614100b05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004060708090b0c0c0d0d0e0e0e0c0b09060100000000000000000000000000000000000000000000000000000004111d2935414c55606d7984919ea7b1bcc5bcb0a69e91847a6d606b75828f98a2aebac3c1b7aa9e94897c6f63594f44382c21160b00000000000000000000000000000000000000040c13181d202122222223313d4a5764707d8a97a3b0bdcad0c3b6a99d9083766a5d5043372a1d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080d111318293643505c6976838f9ca9b6b2a5988b7f7265676d71787e848b92979ea6afb5bdc6ced8d9d0c5bcb2a89e93897c6f63594f44332a2015090000000000000000000000000000000000000000071119222a333b444c545b606a6f7980868e939a9fa3abadb3b7b9bdc2c4c6c7ccd2cccdcececfcececdccd1cbc7c5c4c1bdb9b7b2acaba39f99938e867f796f6a625b514c433b322a211810060000000000000000000000000000000000000000000000000000000000000000040e17212a343d464f575f686d79808791969fa2a9adb3b9babfc4c6c7ccd2cdcdcecfcececdcccec9c5c4c0bbb9b4aeaaa39f97918a817a6e69605950483e352c22190f0600000000000000000000000000000000000000000000071c2935424f5c6875828f9ba8b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0ab9e9184786b5e5145382b1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000000050e1a232c33383c3d3d3d3d3d3d3d3d3d3d3d3a3936302920170c02000000040f19222b32383b3c3d3d3d3d3d3d3d3d3d3d3b3a36312921180d030000000000000000000000000000000000070f161b202223242424242424242424242424242421211e1a140d050000000000000000000000000000000000000000000000000000000000000000080f161c202223242424242424242424242424242424242422211e1a140d060000000000000000000000000000020608080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0908060300000000000000000000000000030709090a0a0a0a0a0a0a0a0a0a0a0a0a0a0907040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707070c10131415161718191a1a1b1b1b191815120d0600000000000000000000000000000000000000000000000000030e18212c3945515d67727f8b96a1acb9c3beb4aa9e938a7e71685d616e7b86929fa7b1bec7bbb0a69c8f82766b6054483e33281c0b020000000000000000000000000000000000040d161d24292c2d2f2f2f2f36424d576673808c99a6b3bfcccfc2b5a99c8f8276695c4f4336291c10030000000000000000000000000000000000000000000000000000000000000000000000000000000001070c1013191d2024293643505c6976838f9ca9b6b2a5988b7f726e73797e838a91969fa2a9b0bbc0c7d0d8d8d0c7bdb3a9a0968e81756b6054473d3321180e030000000000000000000000000000000000000000000710182129323a424a505860676d737b81878f92999ea1a9abadb2b5b7b9bbc0bfbfc0c1c2c2c1c1c0bfbfc0bbb9b7b5b2acaaa8a19e99928e87817a736d675f585145413a312920180f0600000000000000000000000000000000000000000000000000000000000000000000050f18222b343d454e565e676d737c848c92979ea1a9acaeb4b7b9bbc0bfc0c1c1c2c2c1c0bfbebdb9b7b5afacaaa29f98928d857d756d685f574f473e362c231a100700000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39e9184786b5e5145382b1e120500000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a21272c2f30303030303030303030302e2d2a251e170e05000000000007101921272c2e2f303030303030303030302e2d2a261f180f0600000000000000000000000000000000000000040b1013161617171717171717171717171717171514120e090300000000000000000000000000000000000000000000000000000000000000000000050b1013161717171717171717171717171717171717171514120e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105080d11131417181c1f20222324252626272727282524221e1811090100000000000000000000000000000000000000000000000915202a36414d56606d7a85929ea8b2bdc7baaea2988f82756c61565e69727f8c95a0acb6c0c2b7ab9f94897d7063594f44382c1d140a00000000000000000000000000000000010c161f282f35393a3c3c3c3c4046535f6976838f9ca9b6c2cfcec1b4a89b8e8175685b4e4235281b0f020000000000000000000000000000000000000000000000000000000000000000000000000000030a0f12181c1f24292c2f353843505c6976838f9ca9b6b2a5988b7f767b80858b90959ea0a8adb3bcc1ccd2d9d6cec6bdb5aba2979184796d60594f43352b210f060000000000000000000000000000000000000000000000060f1720292f383f444e555d60696e757c82878c91979a9ea1a8a8aaacafb5b2b3b3b4b5b5b5b4b3b3b2b5afacaaa8a8a09e9a96918c86817c746e68605c554e463f352f281f170e06000000000000000000000000000000000000000000000000000000000000000000000000061019222b333c444c555d606b6f7980858c92979c9fa3abaaacafb5b2b3b4b5b5b5b4b3b3b1b2acababa49f9c98928d86817a706c615e564d453d352c241a11080000000000000000000000000000000000000000000000000d1a2633404d596673808c96969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969184786b5e5145382b1e120500000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f161c2023232424242424242424242421201d19130c0500000000000000070f161b1f22232424242424242424242422211e1a140d06000000000000000000000000000000000000000000000407090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000407090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003061313131313131313131313131313130f0f0c0904000000000000000000000000000000000000000000000000000000000307090a13131313131313131313131313130c0c0a0602000000000000000000000000000104060707070707070707070707070707070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1114191d20212423292c2d2e30313233333434343432312e29231b130900000000000000000000000000000000000000000000020e1a26313946525e6873808c97a1adbac4bdb1a79f92867b6e615a5057606d7883909aa4afbbc5bbb0a69d9083766b6155483e2f261b110600000000000000000000000000000007131d28313a414547484848494b515a616e7b87939facb9c6d2cbbfb4aa998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000000000000000000000000000000060b0f161b1d23292c2f35393a4045474a5c6976838f9ca9b6b5a99c8f8283878c92979da0a7acb2babec5ced7dbd6cdc4bcb4aba49992857b6e675d51463d32231a0f00000000000000000000000000000000000000000000000000060e171d262d333d434b51575e616a6f757b80858a8e9196989b9e9fa4aba5a6a7a7a8a9a8a7a7a6a5aba39f9d9b9896918d8a847f7a756f6a615e56514b433c3429241e160d050000000000000000000000000000000000000000000000000000000000000000000000000000071019212a323a434b515960676d737a7f858b8f92999b9d9fa4aba6a6a7a8a9a8a7a7a6a5a8a19e9b9993908b86807b746d68615a524c443c332b231a1208000000000000000000000000000000000000000000000000000c1825323f4b5865727e8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a84786b5e5145382b1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10141617171717171717171717171413110d0802000000000000000000040a0f131516171717171717171717171514120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b10122020202020202020202020202020201c1b1915100902000000000000000000000000000000000000000000000000040b101316162020202020202020202020202020191816120d070000000000000000000001080d111314141414141414141414141414141413100d070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e14191e20252a2d2e312f34383a3b3c3e3f3f40404141413f3e3a342d251b110600000000000000000000000000000000000000000006121e2b37424d57616e7b86929fa9b3bec0b5ab9f958b7f72695e5244505c666f7c88939fa9b3bec2b7ab9f958a7d70635a5041382d22170b0000000000000000000000000000010d18242f3a434b515455555556555c606c75818e9aa4afbbc8d3c7baaea398897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000060c11171b1f272c2f34383a4145474b5153545b6976838f9ca9b6b7ab9f948f90939a9ea1a9acb1b9bdc3cad0d7d8d0cac3bbb3aaa29993877d70695f554c41342b2111080000000000000000000000000000000000000000000000000000050b141c2228313a41454d53586062696e73797d8184888c8f9193999799999a9b9b9c9b9b9a9999979992918e8b8884807d78726e68625f58524c454039312a2219130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000070f182029313940454f555c60676d72797e82868a8e91939998999a9a9b9c9b9b9a99989696918f8b86837f7a736e68605d565046413a322a2119110800000000000000000000000000000000000000000000000000000814212e3b4754616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a0a0a0a0a0a0a0a0a0a0a0707050100000000000000000000000000030709090a0a0a0a0a0a0a0a0a0a08070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a13131313131313131313131313131313131313131313131313131313131313131313131313131313131313121211100f0d0b0906060300000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c0300000000000000000000000000000000000000000000070f161b2022232d2d2d2d2d2d2d2d2d2d2d2d2d2d2625221e18110a0100000000000000040c13191d20212121212121212121212121212120201d18120c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141a1e252a2d3036393a3d4040454748494a4b4c4d4d4e4e4e4c4a463f372d23180d0100000000000000000000000000000000000000000814212e3a47535f6974818e98a2aebbc5bbafa3999083786c60574d424a54606b74818e97a2adb9c2bcb1a79d9083776c6153493f33271b0f030000000000000000000000000004111d2935414b555d606262626364676d737e8b939eacb6c0cccfc5b8ac9f92867a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000030a11171b22272b3238394045474c5254555d6063666c76838f9ca9b6bbb0a69f9c9d9fa4acadb3b8bcc3c8ced6dad5cec6bfbab1a9a19892877f726b61574d433a2f22190f00000000000000000000000000000000000000000000000000000000020a11171f282f353b42464e54575e61666d7074787b7f828486888a8c8c8d8e8f8f8e8e8d8c8c8a888684827f7b7774706d66615e56534e46413b342f271f18100801000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e171f272f353d434b51555d60676d71757a7e818486898b8c8d8e8e8f8f8e8d8c8b898784827e7a76726d68615e56524c443e35302820180f070000000000000000000000000000000000000000000000000000000714202d3a46525e696e70707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706b6054483c2f221609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b101416172020202020202020202020202020202020202020202020202020202020202020202020202020202020201f1f1f1e1d1b1a181513120f0b0607050200000000000000000000000000000000000000000000000000000000000000020c141c23282b3939393939393939393939393939393634312c261e150c02000000000000000000000000000000000000000007111921272c2f30393939393939393939393939393933322e2a231c130a000000000000040d161e24292c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c29241d160d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f262a3036393b4146474a4d4b51535556575859595a5a5a5b585651493f34291e12030000000000000000000000000000000000000006131f2b38434e58626e7b87929faab4bfbdb2a89f92877c6f665b50453b424f59616d7a85929ea7b1bdc2b8ab9f958a7d70655b5044372b1f1205000000000000000000000000000613202c3945515d676d6f6f6f6f7174797f88939fa5afbec7d1c6bdb0a69b8e8275675d5145392c2013060000000000000000000000000000000000000000000000000000000000000001070c151c23282d33373d44484b5153565d6064676d7074797c84919eaab7c2b8b0aba9a9acafb6b9bec5c8ced4d9d4cec9c2bcb4aea7a09791867e726d62594f453c31281e1007000000000000000000000000000000000000000000000000000000000000060d161d242931363d43474d52545c6064676a6f7275777a7b7d7f8080818282828180807f7d7b797775726e696763605c54524c47433c363029231d150d06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d151d2429313940454c51555d6065686d7175777a7c7e7f80818282828180807e7c7a7875726e6865615d56524d45413a3229251e160e060000000000000000000000000000000000000000000000000000000005111e2a36424d575e61636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636360594f44382c201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0e1011131313131313131313131313130e0d0b08030000000000000000000000000000000000000000000000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2b2b2928272522201f1c171414110e080400000000000000000000000000000000000000000000000000000000000a141e262e343846464646464646464646464646464642413d3730271e140900000000000000000000000000000000000000040f19232b32383b3d46464646464646464646464646463f3e3a352e251c110700000000020c161f282f35393a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39352f281f160c010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b141c222831363b4146474c5254575a555c606163646566666767676765625b51463a2e1f1409000000000000000000000000000000000000000815222e3b4754606a75828f99a3afbcc1b9aca0968d80736a5f544a3f333d46525e68717e8b959fabb5c0bcb1a79d9083786c605346392d201306000000000000000000000000000714212d3a4754606d797b7b7b7c7d80848c939aa4afb7c1d0c7bfb4ab9f948a7d7063554b4135291d1104000000000000000000000000000000000000000000000000000000000000040c12181e262e34383f44464f54555c6064686d7175797d8185899196a0acb8c5c2bbb7b5b6b9bbc0c7c9cfd4d8d4cec8c4bdb9b0aaa29f9590857c706c625b51473e332a1f160c0000000000000000000000000000000000000000000000000000000000000000040c13181f252a32373b42464a515357585f626568676d6f717273747475767574747372716e6d666865625f575753504a46413b37312a251e18120b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181f272f343a41454b5153565d606468676d6f71737374757675747473726f6d686865615e5654524c46413b3530282019130c040000000000000000000000000000000000000000000000000000000000020e1a25303b454d52545757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575756544f473d33271c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b11171b1d1e202020202020202020202020201b1a18140f080100000000000000000000000000000000000000000000000008111a22282d303139393939393939393939393939393939393939393939393939393939393939393939393939393939393939383837363534322f2d2b282221201e1914100c07010000000000000000000000000000000000000000000000000006111c2630383f445353535353535353535353535353534f4d49423930261b10040000000000000000000000000000000000000b16212b353d44484953535353535353535353535353534c4b463f372e23180d020000000a141e28313a414547474747474747474747474747474745403931281d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151d262d333b42464c5254565e61646669676d6e6f7172727373747474726d62564a3b31261a0e020000000000000000000000000000000000000916232f3c4956626f7c89939fa2aaafb9afa59e9184796d60584e42382d36414c56606c78839099a3afbab2aca69f958a7e7164574a3e3124170b000000000000000000000000000a1724313d4a5764707d888888898a8d91969fa4acb6c0c7c3bdb5aea3999083766b6155433a2f24180d010000000000000000000000000000000000000000000000000000000000070d161d242930383f44495053596063676d71757a7e82858a8e91979ea0a8b2bdc8ccc7c3c2c3c6c8ccd2d5d5d2cdc8c3bcb8b2aca69f98928c837b6f6a615a51493f352c21180d0400000000000000000000000000000000000000000000000000000000000000000001070d141a20272b3036394044464a4e535559555c60626466666768686968686766666462605c545855534d4a46443f3836302b262019140c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d151d23292f35394045474c525457555d6062656667676869686867666563605d565854524c4746413a363029241e160e08020000000000000000000000000000000000000000000000000000000000000009141f29333b4246474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4948443d352b21160b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e161d22272a2b2d2d2d2d2d2d2d2d2d2d2d2d2d282724201a130b020000000000000000000000000000000000000000000005101a232c33393c3d464646464646464646464646464646464646464646464646464646464646464646464646464646464646464545444342403e3c3938332d2e2d2a251f1d18120f0a0400000000000000000000000000000000000000000000000b17232e38424a505f60606060606060606060606060605c5a544b42372c211509000000000000000000000000000000000003101b27323d474f54566060606060606060606060606060595751493f352a1e1206000006111c26303a434c52545454545454545454545454545453514b43392f24180d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151e262f383f444d53565e6165686d707376787a7b7c7d7e7f80808181817f7265574d42362a1e12050000000000000000000000000000000000000915222f3c4855626f7c838b92989ea5ada99e93897d70675d51463c2f26303a44505b656f7c87929fa9aea8a09e948f877f7266594c3f3326190c000000000000000000000000000a1724313d4a5764707d8a959596979a9ea1a8afb6bec0bbb9b2aba49f92867c6f62594f4431281d130700000000000000000000000000000000000000000000000000000000000810191f282f353d424a50535b60646b6f74797d82868b8f92989a9ea1a9acb2bac3ced8d3d0cfd0d2d4d6d3cfc9c6c2bcb8b1aca8a19e948f867f786e69605850473f372d231a0f0600000000000000000000000000000000000000000000000000000000000000000000000003090e161b1f252a2e34383a3d4347484c4b5153555759595a5b5c5c5b5b5a5959575553514a4c4847423d3a38342e2a251e1b150e08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181e24292f35393a4145474b4b51535658595a5b5b5c5c5b5a59585654524c4b4746413b3935302a251f19130c04000000000000000000000000000000000000000000000000000000000000000000020d17202930363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332b23190f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e1720282e333637393939393939393939393939393433302b251d140b010000000000000000000000000000000000000000000b17222c353e44494a53535353535353535353535353535353535353535353535353535353535353535353535353535353535352525251504e4d4b4846443f3d3b3936302c29241d1b15100b05000000000000000000000000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69655d54493d3125190c00000000000000000000000000000000000713202c38444f5960636c6c6c6c6c6c6c6c6c6c6c6c6c6c66635b51463a2e22160a00000b17232e38424c565d6060606060606060606060606060605d554b4035291d100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e273038424a50575f61686e72767a7d8082848688898a8b8c8c8d8d8d8e8478695f53463a2d2114070000000000000000000000000000000000000815212e3a47535f6a6f787f868f939ea1a1978e81746b60554b40342a1d27333f49535f6a74808d97a1a29f96918a827c726d63574b3e3225180c000000000000000000000000000a1724313d4a5764707d8a97a2a2a4a7abadb2bbc0bdb5afaca8a099938b7e716a6054473e331f160c010000000000000000000000000000000000000000000000000000000009111a222b313940454e545c60656c70767c81858a8f92989b9fa2aaabadb3b8bdc3ccd5e0dfdddbd6d3d0cbc7c5beb9b8b1aba7a09d96918a827b726d665e574e463e352d251b1108000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f141a1c23282c2d31373a3c3f404547484a4c4d4d4e4f4f4f4e4d4d4c4a484644403f3b3a37312d2b28231c19140f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c13191d24292c2f35393a3e404547494b4c4d4e4f4f4f4e4d4d4b494745413f3b3936302d29241e19140d08020000000000000000000000000000000000000000000000000000000000000000000000050e171f252a2d2e30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302f2c2721191107000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b16202932393f43444646464646464646464646464641403c362f261d1308000000000000000000000000000000000000000004101c28333e475055576060606060606060606060606060606060606060606060606060606060606060606060606060606060605f5f5e5e5c5b5a585553504a4a4746413b38352f2b26201c160d080200000000000000000000000000000000000006121f2b3844505c667679797979797979797979797979797570655a4d4134281b0f02000000000000000000000000000000000916222f3b4854606b707979797979797979797979797979726d63574b3e3225180c0003101c28343f4a545d686d6d6d6d6d6d6d6d6d6d6d6d6d6d6d675d5145392c2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d273039424a545b60696e747a7f83878a8d8f91939996979899999a9a9a96887b6e6155483b2e22150900000000000000000000000000000000000006121f2b37434e585f666c727b828a91969e92857a6d61594f43392f2217222d38414e58606d7a84919e98928c847d766f6a635b51463b2f22160a000000000000000000000000000a1724313d4a5764707d8a97a3afb0b3b8b9bdc4c0b5aba49f9b9691877f726c62584e43352c210d040000000000000000000000000000000000000000000000000000000109121b232c343d434b515860666d71787d83898e92989b9fa3aaacaeb4b8b9bec4c8ced5dedad5d2d0cac6c5bfbab8b3adaba79f9d95918b847e766e69605c544d453c342c231b130900000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12181c1f20262b2e2f2f34383a3c3e3f4041414243424141403f3e3b3a38342e2f2e2b26201f1c17110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d12181d1f24292c2d2f35393a3c3e4040414243424141403f3c3a39352f2e2d2a25201d19130e08020000000000000000000000000000000000000000000000000000000000000000000000000000050d141a1e2021242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242322201c160f070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111d28323b444b4f51535353535353535353535353534e4c4841382f251a0f03000000000000000000000000000000000000000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6b6a6968676562605b545754524c4745403937312c272119130c0400000000000000000000000000000000000713202d3a4653606d7886868686868686868686868686868275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707d86868686868686868686868686867f7266594c3f3326190c0006121f2b3844505c66767a7a7a7a7a7a7a7a7a7a7a7a7a7a796d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c18232e39424b545c666c737b81868c90939a999c9e9fa4aba4a5a5a6a6a7a8978b7e7164584b3e30251a0e020000000000000000000000000000000000030f1b26313c464e545b60696e757d848d928b7e71685e52473d31271d111b262f3c45515d67717e8a938e867f79706c625f58514940352a1e1206000000000000000000000000000a1724313d4a5764707d8a97a3b0bdc0c4c5c9c7bbafa499938f8a847d726d625a50463c32231a100000000000000000000000000000000000000000000000000000000009131b242d353e464f555d606a6f787e838a90959b9fa2aaacaeb4b8babfc4c6c9cfd4d9ded6cfc9c5c4bebab8b4aeaca9a19e9a95908a837e78716c615f57504a423b332b221a110900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c1012131b1f212223292c2d2f313333343535363535343333312f2d2c282322211e1a1312100b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c1013191d202124292c2d2f3233343435363535343332302d2c292421201e1914110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e11141417171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717161613100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222e39444d565b5e606060606060606060606060605b58534a41362b201408000000000000000000000000000000000000000a1623303c4955616c7079797979797979797979797979797979797979797979797979797979797979797979797979797979797979787877767573716f6c666664615e5653514b47433c383329241e160e08020000000000000000000000000000000713202d3a4653606d79869393939393939393939393938f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c899393939393939393939393938c7f7266594c3f3326190c000713202d3a4653606d7886878787878787878787878787878275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e2834404b545c666d787f868e92989c9fa4aca9abacafb5b0b1b2b3b3b4a79b8e817468574d42362a1e12050000000000000000000000000000000000000a15202a343c424a50575e616c7079808682766c61564c41352b1f150b141d2935414c55616c768286817b726d67615a534e4640372e23180d02000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad1d2d2c6b9ac9f9386827e78706b625b51483f342b20110800000000000000000000000000000000000000000000000000000007111b252d363f474f5960676d737c838b90959d9fa7abaeb3b9babfc5c6cad0d2d5dae1e0d6ccc4bdb9b7b3aeabaaa39f9b97928d89837d78716d66615a534d443f383029211910080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004060a0f121515181c1f20222426262728292928282726262422201f1c181514120e0906030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080d111314181d1f202325262728282929282726252321201d191414110e080501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a090704000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1b27333f4b565f676a6c6c6c6c6c6c6c6c6c6c6c6c6c67645c53483c3024180b000000000000000000000000000000000000000a1724313d4a5764707d868686868686868686868686868686868686868686868686868686868686868686868686868686868686858585848381807e7b797673706e6864605d55534e48443d3530282019140d0500000000000000000000000000000713202d3a4653606d7986939f9f9f9f9f9f9f9f9f9f9c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c89969f9f9f9f9f9f9f9f9f9f998c7f7266594c3f3326190c000713202d3a4653606d79869393939393939393939393938f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303845515c666d78818c92989fa3aaacafb6b5b7b9bbc0bdbebfbfc0b7aa9e918477695e52463a2d201407000000000000000000000000000000000000030e18222a2f383f444d525961676d737c7b6e615a50443a3023190d030b19242f3a43505a616e7b7c746e68605c555047433c342e251c120700000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad0d1d4c7bbafa4999184807a726d605c544a3f34281e150b0000000000000000000000000000000000000000000000000000050e19232d373f485059616b6f79808790959da0a7abb1b8babec5c7cbd1d3d4d1d0d1d2d5dacfc4bab2adabaaa29f9b98928e8a85807c76706c65605c545046423b342e261e170f070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608070c1013141517191a1a1b1c1c1c1b1a1a1917151312100c07080602000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070c1013141618191a1b1c1c1c1b1a1a18161413110d0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2a36434f5b67717779797979797979797979797979746f64584c4033271a0d010000000000000000000000000000000000000a1724313d4a5764707d8a9393939393939393939393939393939393939393939393939393939393939393939393939393939a93929291918f8e8d8b888583807d7a76716d67625f58544f45413a322a251e170e06000000000000000000000000000713202d3a4653606d798693a0acacacacacacacaca89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3acacacacacacacaca5998c7f7266594c3f3326190c000713202d3a4653606d798693a0a0a0a0a0a0a0a0a0a09c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e38424f59606d78818e939fa3aaaeb4b9bbc0c2c4c6c7ccd2cbccccc5b9aca096877b6e6154483b2e211509000000000000000000000000000000000000000610181d262d333b42464f555d606a6f6e695f53483e32281e11080008131e28313e46535f696e6f6a615e56514b433e37312a221c130a0000000000000000000000000000000a1724313d4a5764707d8a97a3b0bcbfc4c5c8ccc0b5aba096918d867f756d665c50443e30271d1207000000000000000000000000000000000000000000000000020c16202b353f49515a626c707d848d9399a0a7acb1b8bcc2c6cad0d3d4d1cdc8c4c3c4c6c9cfc9bdb2a8a19e9a98928e8a86817d79746f6a64605b53504a423e363128231c150c050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090b0c0d0e0e0f100f0e0e0d0c0b0807060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090b0d0d0e0f100f0e0e0d0c0907060401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004090d0f0f13131313131313131313131313131313131313070705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7783868686868686868686868686868174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa49f9f9e9e9d9c9b9a9898928f8d8a87837e79746f6a636059524c443e36302920180f070000000000000000000000000713202d3a4653606d798693a0acb9b9b9b9b9b9b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afb9b9b9b9b9b9b2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acadadadadadadada89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616c75818f939ea5aeb4babfc6c8ccd2d1d2d1d0cdcbc9d2c9bdb2a8978a7e7164574b3e3025190e0200000000000000000000000000000000000000060b141c222830363e434b51585f62615f574d42362d20160c0000010c161f2a36424d575f61626058524d454039302b262018100a010000000000000000000000000000000a1724313d4a5764707d8a97a3aeafb2b7b8bdc3c7bdb2a8a09e98928c81786d605a5043392e23180c00000000000000000000000000000000000000000000000008131e28323d47515b626c717e8691969fa4abb1b8bcc3c7cdd3d6d3cec8c5c3bcb8b7b8b9bec4c5b9ada196918d8985827e7a75706d66626058535049443f38302a261f17110a03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1015191b1c202020202020202020202020202020202020201413110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a77849193939393939393939393938e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacb6afacacababaaa9a8a6aaa29f9c999794908b85807c76706b605d565046413b322a2119100700000000000000000000000713202d3a4653606d798693a0acb9c6c6c6c6c2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc6c6c6c6bfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9bababababab5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c66707d8a939ea5afbabfc6cbd1d4d8d2cdc8c4c3c0bebcbbc0bbb4a79a8e817467564d42362a1e11050000000000000000000000000000000000000000020a11171f252a313a40454e545555534d453b31241b0e05000000040d1a26313b454d535556544e46413b342e271e1b150e0600000000000000000000000000000000000a1724313d4a5764707d8a97a1a1a3a6aaacb2bbbfc4bab2acaaa29f938d80746c61554b4034281c100400000000000000000000000000000000000000000000010d1925303a444f59626d727e879298a1a8afb5bdc3c8ced4d6d0cac7c3bcb8b7b1acaaabadb3bbc4b7ab9e9184807d7975716d6763605c54544e46443f38342e261e1a140c0600000000000000000000000000000000000000000000000205070809090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909080806020000000000000000000000000000000407090a0a0a0a0a0a0a0a0a0a0909070300000000000000000000020507080a0a0a0a0a0a0a0a0a0a0706040000000000000000000000000000000000010507070a0a0a0a0a0a0a0a0a0a0a0a0907040000000000000000000000000000000000000000000000000306060a0907040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c141b212528292d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c21201d19130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919d9f9f9f9f9f9f9f9f9f9a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9c0bbb9b8b8b8b7b6b4b3b3aeaba9a6a69f9c97928d88837d746d68615a524c443c332b22190f06000000000000000000000713202d3a4653606d798693a0acb9c6d2d2cfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d2d2ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6c6c6c6c2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7883919da5afb7c1cbd0d7dcd3ccc6c3bcb8b6b4b1afaeb6afacaa9e918477695e52463a2d20140700000000000000000000000000000000000000000000060b141a1f282f353c4347494846423b33291f1209000000000009141f2a333b4246484947433d363028231d150c0a030000000000000000000000000000000000000a1724313d4a5764707d8a94949596999da0a8aeb5bdc4bdb9b4aea59d928a7e71675c5145382c1f14090000000000000000000000000000000000000000000005111d2a36414c56606b727f8b9299a2aab2bbc0c7d0d4d7d0cac6bfbab8b1acaaa7a09d9ea1a9b3beb2a5988b7f74706d6664605d5553514a47433d37332d28231c150c09030000000000000000000000000000000000000000000003090e121415151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151514120e09030000000000000000000000050b101316161717171717171717171615130f0a0400000000000003090e121415171717171717171717171413100c070100000000000000000000000002080d1113141717171717171717171717171614100b050000000000000000000000000000000000000000060b0f1213171614100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c161e262c313536393939393939393939393939393939393939392e2d29251e160e0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daaacacacacacacaca79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d2ccc8c6c5c5c4c4c2c1c0bebab8b6b3b0aba9a29f9a959089817a716c615e564d453d342b21180e050000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3d3cfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e5864717e8b95a0acb8c1c9d6dcdad1c9c1bab6b1acaaa7a5a3a1a0a49f9f9f96877b6e6154473b2e211408000000000000000000000000000000000000000000000002090d161d242932373b3c3b3a36312921180d000000000000030e18212a31363a3b3c3b37322a251f18120b0300000000000000000000000000000000000000000a1724313d4a5764707d87878788898c91969fa3abb5bec7c5bfbaaea49e9184796d6053463b3025190e020000000000000000000000000000000000000000040f19222d3946525e686f7d87929fa3abb4bcc4ccd2d9d5cec5bebab4aeaca7a09d9995909197a1adb9b2a5988b7f7265605c5454514c4644403938322b27221b17110a030000000000000000000000000000000000000000000000050d141a1e21212222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222211e1a150e06000000000000000000070f161c20222324242424242424242423221f1b160f0700000000060d141a1e212224242424242424242424201f1d18120b0300000000000000000000050c13191d202124242424242424242424242323201c1610080000000000000000000000000000000000020a11171c1f202423201c160d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e1e2830373d4142464646464646464646464646464646464646463a3935302820160c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7b9b9b9b9b9b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad2d2d2d2d2d2dbd6d3d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3d2d2d1d1d0cfced0cac6c5c2c0bcb7b3adaba79f9d938e857e756e685f574e463d332a20170b0200000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3a47535f6a7784919ea7b1bccad3dbdcd1c8bfb7afaaa7a09d9a989695949a939292928a7e7164574b3e3124180b00000000000000000000000000000000000000000000000000040c131820262b2e2f2e2d2a261f180f0600000000000000060f181f262a2d2e2f2e2b272019140c07000000000000000000000000000000000000000000000714202d3a4753606d797b7a7b7b7c7f848b9299a3acb6c0cccac0b9aca1968b7e7265564d42362a1e110500000000000000000000000000000000000000000a15202c38444f59616d7a849199a3afb5bdc6ced7d6cec9c0bcb4aeaaa29f9a95918c888385919eabb8b2a5988b7f726558514a4745413a38342e2b271f1b17110c06000000000000000000000000000000000000000000000000050f171f252a2d2e2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2e2b2620180f060000000000000007111921272c2f303131313131313131312f2e2c27211910070000060f181f262a2d2e313131313131313131312d2c29241d150d030000000000000000050e171e252a2d2e3131313131313131313131302f2c27211a1108000000000000000000000000000000030b141c22282b2d302f2c282119130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c1620303a42494e4f535353535353535353535353535353535353534746413a32281e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4c6c6c6c1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6dfdfe9e0d7d0cac6c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c7cbd1c8cacdcfd2d3d6d3d2cfcdc7c5bebab8b1aba59d97918a827a6e6960584e453c32291d140a00000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7b8896a0acb9c3cedcded3cabfb6aea59e9b95908d8b8988878686868585858073675a4d4034271a0d000000000000000000000000000000000000000000000000000001070d151b1f222222211e1a140d06000000000000000000060e141a1e212223221f1b150e0802000000000000000000000000000000000000000000000006131f2c3845515c676d6e6e6e6e7073787f87929aa4afbbc7d1c9bdb2a89c908376695e52463a2d20140700000000000000000000000000000000000000030f1b27323c4855606b75828f96a1abb5c0c7cfd8d4ccc4bdb9afaaa29f98928e89847f7b77828f9ca9b6b2a5988b7f7265584c403a39352f2c28231c1b160f0b0600000000000000000000000000000000000000000000000000030d17212931363a3b3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3b3a37312a21180e030000000000050f19232b33383b3d3d3d3d3d3d3d3d3d3d3c3b38322b22190f04030d18212931363a3b3d3d3d3d3d3d3d3d3d3d3a38352f271f150b01000000000000020c1720293036393a3d3d3d3d3d3d3d3d3d3d3d3d3c38332c231a100500000000000000000000000000030c151d262d3338393d3c383329241e160e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e2832424c545a5c6060606060606060606060606060606060605f54524c443a3025190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0d2cdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3ede2d7cec6bfbab8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b9babfbbbcbdc0c3c5c6cad0d3d6d8d3d0cac6c2bcb8afa9a19e938f847b6f6a60574e443b2f261c1106000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a8b2bdcbd5dfd7ccc1b8aea49c938e8883817e7c7b7a7a7979797878736e64584c3f3326190d00000000000000000000000000000000000000000000000000000000040a0f1315161514120e0903000000000000000000000003090e1214151615130f0a040000000000000000000000000000000000000000000000000004101c2934404b555c606161616263666d727d88939fabb5c0cbcec4b9ac9f93877b6e6154473b2e2114080000000000000000000000000000000000000006131f2b37434e5863707d89949ea8b2bdc7d1d9d4cbc2bab2aca59d98928d86817c77726e76838f9ca9b6b2a5988b7f7265584c3f2e2c29241f1c18120f0a0300000000000000000000000000000000000000000000000000000009141f29333b424648484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484847423c332a20150900000000000b16212b353d4448494a4a4a4a4a4a4a4a4a4948433d342b21160a09141f29333b4246484a4a4a4a4a4a4a4a4a4a4745403931271d120700000000000008131e29323a4146474a4a4a4a4a4a4a4a4a4a4a4a48443d352c21160b000000000000000000000000040d151e262f383f44464a48443e35302820170f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1924303a44545e65696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c615e564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e7dbd0c6bcb4aeacacacacacacacacacacacacacacacacacacacacacacacacacaeb4aeafb1b3b6b8babfc5c6cad0d4d9d6d3cdc7c1bbb3ada69e9691857c6f6a5f564d42382d22170b030000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f49536875818e9ba8b5c1cedbdfd3c7bbb0a69c928c817c777472706e6d6d676c6c6c6c67645c52473b2f23170b00000000000000000000000000000000000000000000000000000000000003060809080705020000000000000000000000000000000205070809080603000000000000000000000000000000000000000000000000000000000c18232f39434b515354545455545c606b74808d99a3afbbc7d3c8bbafa49a8a7d7064574a3d3124170a000000000000000000000000000000000000000815222e3b4754606a76828f9ca6b0bac4cfd9d4cac2b9b1a8a09e938e85807a746f6a666976838f9ca9b6b2a5988b7f7265584c3f32251d1913100c070000000000000000000000000000000000000000000000000000000000020e1a25313b454d53545555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555534d453c31261a0e0200000004101c27333d474f545657575757575757575756544e463d32271b0f0e1a26313b454d53555757575757575757575753514b43392f24180c0000000000010d1925303a444c5254575757575757575757575756554f473d33271c100000000000000000000000050d161f273038424a505357554f45413a322921170f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c566570757979797979797979797979797979797979797975685e5246392d2013080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e2d6cabfb4aaa29f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa3aaa1a2a4a6a9acaeb4b8babec5c8cdd6dbd8d4cdc4beb9b0a8a19792857c6e685e544a3f33282015090000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b657784919daab7c4d0dddcd0c3b7aa9e948c80756f6a6765636261605c5f5f5f5f5a58524a40362b1f1307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d273139404547474748484a5059616e7b86929facb9c5d2ccc0b6ac998c807366594d4033261a0d000000000000000000000000000000000000030f1c28333f4a54626f7c88949fabb8c1ccd6d5ccc2b8b0a79f969189817a736d686260586976838f9ca9b6b2a5988b7f7265584c3f3225190d08040000000000000000000000000000000000000000000000000000000000000005121e2a36424d575e6162626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262625f574d42372b1e12060000000713202c38444f5960636464646464646464646260584e43382c1f13121e2a36424d575f6164646464646464646464605d554b4035291d10040000000005111d2a36414c565e6164646464646464646464646361594f44382c1c1106000000000000000000050e171f283139424a545b60636159524c443b332921170d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d687582868686868686868686868686868686868686877a6d6154473a3025190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3dfd3c6baaea2989292929292929292929292929292929292929292929292929298949595979a9c9fa2aaabadb3b8bcc3cad0d7dfd6cfc9c1bab2a9a19791847a6e665b50443c31261a0e0400000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7986929facb9c5d2dfd6cabeb3a99c8f82756e6260585856555453514b5252524d4c4740382e24190e020000000000000000000000000000000000000000000000000000000000030607090a0b0c0d0e0e0d0d0c0b09070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f272f34383a3b3b3b3b3f46525e6875828f9ca8b5c2cfd2c1b5a89b8e8275685b4f4235281c0f02000000000000000000000000000000000006121f2b3844505b6675818e9ba6b0bbcad3d9d0c3bab0a69f9590847d746d68615e56545c6976838f9ca9b6b2a5988b7f7265584c3f3225190c00000000000004080a0b07060400000000000000000000000000000000000000000714212d3a46535e696e6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6e695f53473a2e2114080000000916222f3b4854606b707070707070707070706f6a6054483b2e221514212d3a46535f696e707070707070707070706d675d5145382c1f1306000000000713202d3946525e686d7070707070707070707070706b615548382d22170b0000000000000000050e172029313a434b545c666c706b605d564d453b33291f150b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a869293939393939393939393939393939393998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3dfd2c5b8ac9f9286858585858585858585858585858585858585858585858586868788898a8d9092989a9fa2a9abb1babec5ced3dcdad5ccc4bbb3a9a1968f82786c60574d42372b20160a00000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8799a3aebbc7d3dfd3c6baada297897d70635b544e4b494847474540464545403f3b362e261c120800000000000000000000000000000000000000000000000000000306060c101213151718191a1b1b1a191918161413110d070705020000000000000000000000060606060606060606060606060000000000000000000000000000030d151d23292c2d2e2e2e2e36414d5666727f8c99a5b2bfcccfc2b6a99c8f8376695c504336291d100300000000000000000000000000000000000613202d394653606c7985929fabb8c2cdddd2c7beb2a89f948f827a706b615e56524c505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c00000000050b101416171413100c070100000000000000000000000000000000000815212e3b4854616e7b7c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b6e6255483b2f2215080000000a1623303d495663707d7d7d7d7d7d7d7d7d7d7c6f6256493c2f231615222e3b4855616e7b7d7d7d7d7d7d7d7d7d7d796d6053473a2d201407000000000714212e3a4754616d7a7d7d7d7d7d7d7d7d7d7d7d7d7063544a3f33281c0f03000000000000020d172029323a434c555d666d787d756d685e574d453b31271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5664717e8b99a39f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9c8f8276685e5246392d20130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a797979797979797979797979797979797979797979797979797a7b7c7e808385898d92979da0a7aeb3bcc1cad2dbded6cdc5bbb2a89f948c7f72695f53473d32271b0f02000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000101010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7b8895abb5bfcbd7ded2c5b8ab9f9285786b605447433f3d3b3a3a38342f393934332f2b241c140a01000000000000000000000000000000000000000000000000060b0f1213171c1f2022232425262728272626242220201d181514120e0905020000000004080a0a131313131313131313131313130b0a08040000000000000000000000030b12181c1f2021212125303d4a5663707d8996a3b0bcc9d0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000916222f3c4955626f7c8897a2adbac6d4d8ccc0b6aca0968f82796d686059524c4641505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c0000000810171c212324201f1d18120b03000000000000000000000000000000000f1c2935424f5c6875828888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888883776a5d5144372a1e11000005111e2b3844515e6b77848a8a8a8a8a8a8a8a8a8276695c504336291d1926323f4c5965727f8a8a8a8a8a8a8a8a8a887b6e6255483b2f221508000000000a1724303d4a5763707d8a8a8a8a8a8a8a8a8a8a8a8578665b5044382b1f120600000000000009141f29323b444c555d676d78818a827a6e695e574d43392f24180c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d6876828f9cabb5acacacacacacacacacacacacacac9f92867a6d6154473a3025190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c676d6d6e6f717376797c81858a90959fa2aab0b8c1c9d2dbdfd7cdc4bab0a69f92867b6e62584e43382b1e1408000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000040607090b0c0d0e0e0e0d0d0b0908070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcd1dcdccfc3b6a99c90837669594f443732302f2e2d2c29232c2c2726231f19120a020000000000000000000000000000000000000000000003090e11171c1f2023282c2d2f303132333434343332312f2d2c292422211e1a14120e0903050b1014161720202020202020202020202020171614100b050000000000000000000001070c101314141416222f3c4955626f7c8895a2afbbc8d0c4b7aa9d9184776a5e5144372b1e110400000000000000000000000000000000000c1925323f4c5865727f8b98a9b3becad6d4c8bbafa49a91847a6d675e564f46413a43505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c000008121a22282d30312d2c29241d150d060000000000000000000000000000000f1c2935424f5c6875828f95959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959083776a5d5144372a1e11000005121f2c3845525f6b788592979797979797979084776a5d51442d2217192633404c5966737f8c9797979797979796897c6f6356493c30231609000000000b1724313e4a5764717d8a9797979797979797979386796c605346392d2013060000000000020e1925303b444d565e676d79828e938f847b6e695e554b4035291e150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb9b9b9b9b9b9b9b9b9b9b9b9b9bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000002020505050505050505050505050505050505050505050505050505050505050505050505050505050505111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e050505050505050500000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d615f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f555c606162626467666c6f74797e838b92989ea6afb7c0c9d2dcdfd6ccc2baaea3998e82756a6054473b3025190e020000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0406070c1013141618191a1b1b1a1a1918161414110e080806030000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6dacdc1b4a79a8e8174675b4e413327232221201f1c181f1f1a1917130e0801000000000000000000000000000000000000000000030a0f141a1c22282b2d2e34383a3c3d3e3f40414140403f3e3c3a39352f2e2d2b26201e1a141010171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2423211c171008000000000000000000000000040607080815222e3b4855616e7b8894a1aebbc7d0c3b7aa9d9084776a5d5144372a1e110400000000000000000000000000000000020f1c2835424f5b6875828e9ba8b5c1d0dbd2c6b9ac9f93877c6f685d554c443d353043505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c00040d1a242c33393c3e3a39352f271f18100801000000000000000000000000000f1c2935424f5c6875828f9ba2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a29d9084776a5d5144372a1e11000005121f2b3744505b657985929fa3a3a3a3a39e9184786b544a3f33281c1a2734404d5a6773808d9aa3a3a3a3a3a3968a7d7063574a3d3024170a000000000b1825323e4b5865717e8b98a3a3a3a3a3a3a3a49a877a6d6054473a2d211407000000000005111e2a36424d565e686d79828f949e9691847b6e675d51453e30271c120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5664717e8b99a3aebbc7c6c6c6c6c6c6c6c6c6c6cbc0b5ab9c8f8276685e5246392d201308000000000000000000000000000000000000000000000000000000000000000000000000000004090c0e0f1212121212121212121212121212121212121212121212121212121212121212121212121212121212121e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b1212121212121212120a090704000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154525252525252525252525252525252525252524b515354555657545b6062676d71787f858f949ea5afb7c0cad3e0ded7cbbfb4ab9e93897c6f62564c41362a1e11050000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0c101314181d1f20222426272728272726252321201e191515120f0a05020000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d9ccc0b3a6998d8073665a4d4033271a15141413100c07120d0d0b070200000000000000000000000000000000000000000002080d151b1f252a2d3338393c3f4446484a4b4c4d4e4e4d4c4c4b494745403f3b3a37312d2a251f1b1a22282d30313939393939393939393939393931302d28221a12080000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d0c3b6a99d9083766a5d5043372a1d10040000000000000000000000000000000004111e2a3744515d6a7784909daab7c3d0d6cabeb3a99b8e81756a60564c433a32293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c010c16202c363e44494a47454039312a2219130c040000000000000000000000000f1c2935424f5c6875828f9ba8aeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaa9d9084776a5d5144372a1e1100000613202d394653606c7986939facb0b0b0ab9f928578665b5044382b1f1b2734414e5a6774818d9aa7b0b0b0b0a4978a7e7164574b3e3124180b000000000c1925323f4c5865727f8b98a5b0b0b0b0b0b6a194877b6e6154483b2e21150800000000000714202d3a46525e696e7a8390949ea6a0969083796d605a5042392e23180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d6876828f9cabb5bfcbd7d2d2d2d2d2d2d2d2dcd1c5b9ac9f92867a6d6154473a3025190d01000000000000000000000000000000000000000000000000000000000000000000000002090f15191b1c1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281f1f1f1f1f1f1f1f1f1f171614100b0500000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154474646464646464646464646464646464646464045464748494b4a5053555c60666c727b828e939da5afb8c1ced7e1dcd1c6bdafa59b8f8275685e5246392d2014080000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c181d1f2024292c2d2f313333343434333331302e2d2a2522211f1b15120e0903000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d9ccbfb2a6998c7f7366594c403326190d0707060400000601000000000000000000000000000000000000000000000000050d131920262b3136383f4446494a505355565758595a5b5a5959575553514b4b4846423c3a36302c27232c33393c3d464646464646464646464646463e3c39332c241a100500000000000000000000000000000815222e3b4855616e7b8894a1aebbc7cfc2b6a99c8f8376695c504336291d10030000000000000000000000000000000004101d2935404b556b7885919eabb8c4d1d2c6b9ada197897c6f62584e443a3129293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c08131e28323e4850555753514b433c3429241e160d0700000000000000000000000f1c2935424f5c6875828f9ba8b5bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb7aa9d9084776a5d5144372a1e1100000714202d3a4753606d7a869aa4afbbbdb9ac9f9386796c605346392d201b2835414e5b6874818e9ba7b4bdbdb2a5988b7f7265584c3f3225190c000000000c1926333f4c5966727f8c99a5b2bdbdbdbbafa295887c6f6255493c2f22160900000000000814212e3b4754616e7b8490959fa6b0a8a0958e81746c61544a4034281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb9c5d1dce7dfdfdfdfdfdfdfe0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000030c141b202528292c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e41342c2c2c2c2c2c2c2c2c2c2c2322201c160f08000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a393939393939393939393939393939392e34383a3a3b3c3e3f44464b51545b60686e78818e929da6b0bcc5d0dbe2d8cfc1b9ac9f92867a6e6154473b2f24190d0100000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291f24292c2d2f35393a3c3e3f4041414140403e3c3b3936302f2e2b26211e1a140f0a0400000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000000000000000000060e171e252a31373b42464a505355545c60626364656667676766656462605d555855534d4846423b38322b353e44494a535353535353535353535353534a49443e362c22170b00000000000000000000000000000915222f3c4855626f7b8895a2aebbc8cec2b5a89b8f8275685c4f4235291c0f020000000000000000000000000000000006131f2c3845515d677985929facb8c5d2d1c5b8ab9e9285796c6053463c32281f293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c0d19242f3a44505a6164605d554e463f352f281f191008020000000000000000000f1c2935424f5c6875828f9ba8b5c2c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c3b7aa9d9084776a5d5144372a1e1100000814212e3b4754616e7a8794a1b6c0c8bbafa49a877a6d6054473a2d211c2835424f5b6875828e9ba8b5c1bfb2a6998c7f7366594c403326190d000000000d1a2633404d596673808c99a6b3bfcac9bcafa396897c706356493d3023160a00000000000713202d3a4653606d7980889197a1a9b1a79d938a7d70665c5144382c1f160b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5664717e8b99a3aebbc7d3e3edececececececefe3d7cbc0b5ab9c8f8276685e5246392d201308000000000000000000000000000000000000000000000000000000000000000000020c151e252c31343538383838383838383838383838383838383838383838383838383838383838383838383838383838383838383844515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e41383838383838383838383838302f2c27211a11080000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c23282c2d2e2f2f2d33383940454a50565e666d78808e949eaab3becad6dfe0d3c7bbafa3998c7f7266564c4135291d110400000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236282b2f35393a3d404547494b4c4d4e4e4d4d4c4b494746413f3c3b37322d2a261f1b150e08020000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000000000000000000000020a1117202930363c43474d53545b606265666d6f707172737474737372716f6d676865615f5754524d48443d373e4750555760606060606060606060606060575550483e33281c1004000000000000000000000000000916232f3c4956626f7c8995a2afbcc8cdc0b4a79a8d8174675a4e4134271b0e01000000000000000000000000000000000714202d3a4753606d7a8698a2aebac7d3cfc2b5a89c8f8275665b5044382b2016293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190c111d2935414c56616c716d675f585045413a312b2219130c0400000000000000000f1c2935424f5c6875828f9ba8b5c2c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c3b7aa9d9084776a5d5144372a1e1100000815222e3b4855616e7b8894a1aebbccc0b6a194887b6e6155483b2e221c2936424f5c6975828f9ca8b5c2c0b3a79a8d8074675a4d4134271a0e010000010d1a2734404d5a6773808d9aa6b3c0cdcabdb0a3978a7d7064574a3d3124170a000000000006131f2c3845515c666d737d859197a1abafa59e9184796d6053463d32271b0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d6876828f9cabb5bfcbd7e3f4ece8e6e5e6e8ece8dcd1c5b9ac9f92867a6d6154473a3025190d01000000000000000000000000000000000000000000000000000000000000000009141e2730373d414245454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e454545454545454545454545453d3c38332b231a0f0500000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211f1f1f1f1f1f1f1f1f1f1f1f1f1f181c1f2021222322282b2f34383f444d545c666c75828f98a2aebac3ced9e3d7cbc0b5ab9d908376685d5245392c20130600000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f422d3338394045474a4b51535557595a5a5b5a5a59585654524c4c4847433c3a36312b262019140b0600000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000030c141c2328323a41464e53575e61666c6f7275797b7d7e7f808181807f7f7e7c7a7875726e6966615e57544f474244505a61646c6c6c6c6c6c6c6c6c6c6c6c6c64615a5044392d211408000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9ccbfb3a6998c807366594d4033261a0d00000000000000000000000000000000000814212e3b4754616e7a8794aab4bfcad6cdc1b4a79a8e817467544a3f3328191d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225190b17212c3945525d68717d796f6a625a514c433c3429241e160e07000000000000000f1c2935424f5c6875828f9ba8b5bababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab7aa9d9084776a5d5144372a1e1100000915222f3c4855626f7b8895a2aebbd2bbafa295887c6f6255493c2f221d293643505c6976838f9ca9b6c2c1b4a79b8e8174685b4e4135281b0e020000010e1b2734414e5a6774818d9aa7b4c0cdcabeb1a4978b7e7164584b3e3125180b000000000004101c2834404b545c606b707b859199a3afaca0968b7f7265594f44382c2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb9c5d1dce7e6e0dcd9d8d9dce0e6e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000040f1b25303942494d4f52525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525e6a7784919daab7c4d0dacdc1b4a79a8e8174675b52525252525252525252525252524a48443d352b21160b00000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114131313131313131313131313070c101313141516171c1f23292d333b424a545b616e7b85929fa7b1bcc8d4e0dcd1c5b9ac9f92867a6d6054473a2d21140700000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f42383f44464b515357555d606264666667676766666463615e565955534e4846423b37312a251f17110a020000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000000000000000000030c151e262e343d444c52585f62696e74797c7f828588898a8b8c8d8e8d8c8c8a888684827e7b77736e69636059534d4955616c7079797979797979797979797979716c6155493c3023160a000000000000000000000000000b1825313e4b5864717e8b97a4b1becacbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000714212e3a4754616d7a8794aab4bfcad6cdc0b3a69a8d8073675a4d402d22171d293643505c6976838f9ca9b6b2a5988b7f7265584c3f322519141d2834404b54606d7a86837c716d605d554e463f353028201910070000000000000f1c2935424f5c6875828f9ba8adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaa9d9084776a5d5144372a1e110000091623303c4956636f7c8996a2afbcc9bcafa396897c706356493d30231d2a3744505d6a7783909daab6c3c2b5a89b8f8275685c4f4235291c0f020000020e1b2835414e5b6874818e9ba7b4c1cecbbfb2a5988c7f7265594c3f3226190c0000000000000c18232e39424b51596069707d87929fa7b1a89d9184776b6054483b2f221509000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5664717e8b99a3aebbc7d3e3e3dbd5d0cdcccdd0d5dbe3d7cbc0b5ab9c8f8276685e5246392d201308000000000000000000000000000000000000000000000000000000000000000915202c37424b53595c5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f6a7784919daab7c4d0dacdc1b4a79a8e8174675f5f5f5f5f5f5f5f5f5f5f5f5f5f5f56544f473d33271c1004000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407060606060606060606060600000406070708060b0f12181c22283038424a525e69727f8b95a0acb8c5d1dee0d4c7bbafa3998a7d7064574a3d3124170a00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f40454a5053555d606367676d6f7172737474747373716f6e686865625f5855534d47433c363027221b140b0400000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000000000000000020b151e2730383f444f565e616a6f747b8085888c8f9298969798999a9a9a9998979a93918f8b8884807b75706b625f57505764707d868686868686868686868686867e7164574a3e3124170b000000000000000000000000000c1926333f4c5966727f8c99a5b2bfccccc0b6ac968a7d7063574a3d3024170a00000000000000000000000000000000000714202d3a4753606d7a8698a2aebac7d3cec1b4a79b8e817468544a3f33281c1d293643505c6976838f9ca9b6b2a5988b7f7265584c3f3225191b262f3845515c66727f8c91867e756d6760585146413a322b22190f0400000000000f1c2935424f5c6875828f9ba1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a19d9084776a5d5144372a1e1100000a1723303d4a5663707d8996a3b0bcc9bdb0a3978a7d7064574a3d31241e2b3744515e6a7784919daab7c4c3b6a99c908376695d5043362a1d07000000020f1c2935424f5c6875828f9ba8b5c2ceccbfb3a6998c807366594d4033261a0d00000000000007121d27303940454f56606b727f8c95a0acaca095897c6f6356493c31261a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e3d9d1cac4c0bfc0c4cad1d9dcd1c5b9ac9f92867a6d6154473a3025190d010000000000000000000000000000000000000000000000000000000000000c1925313d49535d65686b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b7784919daab7c4d0dacdc1b4a79a8e81746b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6360594f44382c201407000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000003070c11171e262f38424d57606c7884919daab7c3cdd9e3d7cbc0b5ab998c7f7366594c403326190d00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4b51545b6063676d7073777a7c7e7f80818180807f7e7c7a7875726f6a66615f57534e46413b332d261d160d06000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000a141d273039424a505960686d757c81868d9297989c9fa2aaa4a5a6a7a7a6a6a5aca49f9e9b9896918c87827d756e69605c5464707d8a93939393939393939393938a7d7164574a3e3124170b000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cdc8bbafa49a887b6e6255483b2f221508000000000000000000000000000000000006131f2c3845515d677985929facb8c5d2cfc2b6a99c8f8376665b5044382b1f14293643505c6976838f9ca9b6b2a5988b7f7265584c3f322517222d38414d57606d79849198928b817a6f6a625b524c443d342b21160a00000000000f1c2935424f5c6875828f94949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949084776a5d5144372a1e1100000a1724313d4a5764707d8a97a3b0bdcabeb1a4978b7e7164584b3e31251e2b3845515e6b7884919eabb7c4c3b7aa9d9084776a5d51442e23180c00000003101c2936434f5c6976828f9ca9b5c2cfcdc0b3a79a8d8074675a4d4134271a0e010000000000000b151e272e343d444f59606c7883909daab1a89a8e817467574d42362a1e1205000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d1c7bfb8b4b2b4b8bfc7d1ded3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000e1b2834414d59656f75787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787884919daab7c4d0dacdc1b4a79a8e817878787878787878787878787878787878706b6054483c2f221609000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000000060c141d26303b44505b65737f8c99a7b1bcc8d4e0dcd1c1b4a89b8e8175685b4e4235281b0600000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c50555d60666c7075797d808386888a8c8d8d8e8d8d8c8b898785827f7c77736e69625f58524d443f382f281f180f060000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000000000000006111b262f39424b545c606b707a82878e92999ea2a9a8acaeb4b1b2b3b4b4b3b2b2b6afacaba8a8a09e99928f89827b736d665e64707d8a979f9f9f9f9f9f9f9f9f978a7d7164574a3e3124170b000000000000000000000000020f1c2935424f5c6875828f9ba8b5c2cec6b9ac9f9386796d6053463a2d201307000000000000000000000000000000000004101d2935404b556a7783909daab6c3d0d1c4b8ab9e9185796c6053463c30261c293643505c6976838f9ca9b6b2a5988b7f7265584c3f32252427333f49535e69727f8c96a19f938e847c726d615d564f473d32271b0f03000000000f1c2935424f5c6875828787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878784776a5d5144372a1e1100000b1825313e4b5864717e8b97a4b1becabfb2a5988c7f7265594c3f32261f2c3845525f6b7885929eabb8c5c4b8ab9e9185786b544b4034281c1004000003101d2a3643505d697683909ca9b6c3cfcec1b4a79b8e8174685b4e4135281b0e020000000000020a11171d2328323d44505b65727e8b98a2aeaa9e918477695f53463a2d21140700000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3d9d0bfb5ada7a5a7adb5bfccd6d7cbc0b5ab9c8f8276685e5246392d2013080000000000000000000000000000000000000000000000000000000000000f1c2935424f5c687581858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858587929facb9c5d2dfd2c5b9ac9f928685858585858585858585858585858585857d7063564a3d3023170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000000000000020b141f27333f4953616e7b8895a0acb8c4d1deddd0c3b6aa9d9083776a5d50442d22170b00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569545b60676d72787d81858a8d90939a9799999a9a9a9999979697928f8c88847f7b756f6a615e565049413a312a2118100600000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000000000000060f17222d38414b545c666d737d858f939a9fa3abadb3b5b8babfbdbebfc0c1c0bfbfc0bbb9b7b5b2acaba39f9c938f8780786d6864707d8a97a3acacacacacacaca4978a7d7164574a3e3124170b00000000000000000000000005111d2935414c566a7784909daab7c3d0c4b7ab9e918478675c5145382c1f13060000000000000000000000000000000000000c18242f424e5b6875818e9ba8b4c1ced2c6b9ada197897d7063584e42382e23293643505c6976838f9ca9b6b2a5988b7f7265584c3f32252a363e44505b656e7b86929fa8a59e9691867f756d6860594f43382c1f1307000000000714212e3a4754616d7a7b7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a6e6154473b2e21140800000c1825323f4b5865727e8b98a5b1becbbfb3a6998c807366594d4033261f2b3844505b667985929facb8c5c5b8ac9f928579665c5145382c1f1306000004111d2a3744505d6a7783909daab6c3d0cec2b5a89b8f8275685c4f4235291c0f0200000000020c141c23282b3939333f4953606d7a86929facaca096887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7ddd2c7bdada39c999ca3adbac4cedad1c5b9ac9f92867a6d6154473a3025190d010000000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929299a3afbbc7d4e0d3c7baaea39892929292929292929292929292929292928a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000000000000000000020b17222d3847535f697783909daab6c3d0ddded1c4b8ab9e9185786b5e4a3f33281c0f03000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82756960666c71797e84898e92989a9d9fa4aca5a6a7a7a7a6a6a4a9a19e9b9895918c87817c756e68605b534c433c332a22181006000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000000000030e182127333f49535c666d78808791979fa4acafb5b9bec2c5c6cad0cbcccdcdcdccd2ccc8c6c4c2bdb9b5afaca69e99928c827a6e69707d8a97a3b0b9b9b9b9b9b0a4978a7d7164574a3e3124170b0000000000000000000000000713202d3946525e687885929fabb8c5cfc3b6a99c90837669554b4034281c1004000000000000000000000000000000000000071925323f4c5865727f8b98a8b2bdc8d4c9beb3a99b8e81756a5f544a3f342e263643505c6976838f9ca9b6b2a5988b7f7265584c3f3230363f48505a606c77828f98a2aeafa8a099928b827a6f6b6054483b2f221509000000000713202d3946525e686d6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e685e5246392d20140700000c1926323f4c5965727f8c98a5b2bfcbc0b3a79a8d8074675a4d413427202d394653606c798698a2aebac7c6baaea29886796d6053463a2d201307000004111e2b3744515e6a7784919daab7c4d0cfc3b6a99c908376695d5043362a1d0600000000000a141e262e34384646464645515d6774818e9ba7b2a8978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dcd7ccc0b5ab9c918c919ca8b2bdc9d5d3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9c9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9fa3abb5c0cbd7e3d7cbbfb4aaa39f9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000000000000000006111b2b37424d576774818d9aa7b4c0cddadfd2c5b8ac9f928579665b5044382b1f1206000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275696a6f787e858b91969b9fa2aaaaacafb6b2b3b4b4b3b3b2b1b3adaba8a8a09d99928e87817b726c655d564e453c342a22180f050000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000915202a333c44505b656d78828c9399a1a9afb6bbc0c7cacfd2d3d6d4d2d0cccac9c8c7c7c8c9cbcec9c7c0bbb9b0aba39f948f847b6e707d8a97a3b0bdc6c6c6bdb0a4978a7d7164574a3e3124170b0000000000000000000000000714212e3a4754616d7a8798a2aebac6cec1b4a79b8e8174685b4e412e23180c000000000000000000000000000000000000000815222f3b4855626e7b8896a0acb8c6d1cfc4b9ac9f92877c6f665c50443f38303643505c6976838f9ca9b6b2a5988b7f7265584c3f343a4146515a616c73808c949eaab4bab2aba39f948f847d6f6356493c302316090000000005111d2935414c565e6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161615e564c41362a1e110500000d1a2633404d596673808c99a6b3bfccc1b4a79b8e8174685b4e413528202d3a4753606d7a8693aab4bfcacabfb4aa94877a6e6154473b2e211408000005121e2b3845515e6b7884919eabb7c4d1d0c3b7aa9d9084776a5d51442e23170b0000000006111c2630383f4453535353534c5565717e8b98a4b1a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e0d4c7bbafa4998c7f8c96a1acb9c5d2d7cbc0b5ab9c8f8276685e5246392d2013080000000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9abababababababababababababababababababababababababababababababababababababababababababababababacafb5bdc7d1dce7dcd1c6bcb4aeacababababababababababababababa3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000e1a2631404c5966737f8c99a6b2bfccd9dfd3c6baaea29886796c605346392d201306000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82756c727c838b92979ea0a8acaeb4b7b9bbc0bfc0c0c1c0c0bfbebeb9b8b5b1acaba39f9a938e857f776d685f574e463c342a21170c0300000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000020b1a26313c46515b606c77818e949fa4abb2bbc0c7cbd1d6dad5d2ccc7c6c3c0bdbcbbbababbbcbec1c3c6c7c7c1bdb5aea69f9691847b707d8a97a3b0bdcad2cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000916222f3c4955626f7c8895aab4becaccbfb2a6998c7f7366594c4033261907000000000000000000000000000000000000000814212e3a47535f697784919eabb4bfcbd4c7bbafa3999083786d605b504a423b3543505c6976838f9ca9b6b2a5988b7f7265584c3f3f444c525b626c717e88939fa6b0bcc4bdb4aea69e968e8175685b4e4235281b0f02000000010d1925303a444c52545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454524c443b3025190d0100010d1a2734404d5a6773808d9aa6b3c0cdc2b5a89c8f8275695c4f423629212e3a4754616d7a8794a0adbad0d0bbaea195887b6e6255483b2f221508000005121f2c3845525f6b7885929eabb8c5d1d1c4b7ab9e9184786b544a3f34281c10030000000b17232e38424a505f60606060606063707d8996a3b0a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7dfd2c6b9ac9f93867a84919eabb7c4d1dcd1c5b9ac9f92867a6d6154473a3025190d0100000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b9bbc0c7cfd9e3ede2d8cfc6bfbab9b8b8b8b8b8b8b8b8b8b8b8b8b8b0a3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000000000000000000091825313e4b5864717e8b97a4b1becad7e0d4c7bbafa399867a6d6053473a2d201407000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275777f8790959ea1a9acb2b8babfc3c6c8ccd2cacbcdcdcccccfc9c6c5c2bdb8b5afaca49f97928b827a6e6a5f584e463c33291e150b00000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000000000a141d2b37434e58626d73808d939ea6afb5bdc4ccd2d7dcd7cfc9c7c0bbb9b6b3b0afaeadaeaeafb1b4b7b9bbc0c7c6bfbbb0a8a19691847a7d8a97a3b0bdcad6cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000b1724313e4a5764717d8a97a4b0bdd0ccc0b6ac978a7e7164574b3e3124180b0000000000000000000000000000000000000006121e2b37424d5766727f8c99a3aebac4cfcbc0b5ab9f958d80736d605c544d454143505c6976838f9ca9b6b2a5988b7f7265584c454a50565e616d727e87929aa4afb8c1cec6bfb9ac9f93877c6f6255483c2f221509000000000008131e28323a414647474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474746413b32291e14080000010e1b2734414e5a6774818d9aa7b4c0cdc3b6a99c908376695d5043362a222e3b4855616e7b8894a1aebbc7c8bcafa295897c6f6256493c2f231609000006121f2b3844505c667986929facb9c5d2d2c5b8ab9f928578665c5044382b1f1206000003101c28343f4a545c6c6c6c6c6c6c6c6c6e7b8895a1aea99c8f8376695c504336291d1000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dcddd0c3b6aa9d908377818e9ba7b4c1cedad3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c7cbd1d9e1ebf4eae1d8d1cbc7c5c5c5c5c5c5c5c5c5c5c5c5c5bdb0a3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6dfd2c5b9ac9f928679675c5145382c1f1306000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8279818c9299a0a7adb3b9bdc3c5c4c2bfbebdbcbdbfc0c1c4c5c9ced1d1cec8c7c0bbb6afa9a29f948f847c6f6a5f584e453b30271d1207000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000006111c262f3847535f6a727f8b929da5afbbc0c7d0d8ddd8d1cbc5beb9b5afacaaa6a3a2a1a0a1a2a3a4a7aaacafb5b8bcc3c2bab2a8a0968e817e8a97a3b0bdcad6cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000c1926333f4c5966727f8c99a5b2bfccc8bbafa49a887c6f6255493c2f22160900000000000000000000000000000000000000020e1a26313c4754616e7a86929fa9b2bdc9d1c7bdb1a79d928c7f736d665e57524c47505c6976838f9ca9b6b2a5988b7f7265584b51545c60686d757f889299a3acb6c0cad0c5bbb0a69c8f82756a5f53473a2e2115080000000000020c1620283035393a3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3936302920170d020000020e1b2835414e5b6874818e9ba7b4c1cec3b7aa9d9084776a5d51442e23222f3c4855626f7b8895a2aebbc8c9bdb0a3968a7d7063574a3d3024170a00000713202d3a4653606d798698a3aebac7d3d3c6baaea29886796d6053463a2d201307000006121f2b3844505c66767979797979797979798693a0ada99d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3d7cbc0b5ab9a8d80737e8b97a8b2bdc9d5d7cbc0b5ab9c8f8276685e5246392d20130800000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2cfd1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d2d4d7dce3ebf3fcf3eae2dcd7d3d2d1d1d1d1d1d1d1d1d1d1d1c9bdb0a3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcc8d5ded2c5b8ab9f9285786c554b4034291c1004000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dccfc2b6a99c8f82828f939fa3abb1b9bec5c4bdb9b8b5b2b1b0b0b1b2b3b4b7b9bdc4c5c8ced4d1cbc7c0bbb3ada69e9691857c6f6a5f574d43392e23180d040000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000000b17222d38424f59626e7c87929fa4aeb7c1ccd2d9ded6cfc6bfbab3adaba49f9d9997969594949596989a9d9fa4abacb1b8bcc3bab2a89e938d818d9aa7b4c0cdd7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000010e1b2834414e5b6774818e9aa7b4c1cdc6b9ac9f93867a6d6053473a2d20140700000000000000000000000000000000000000000915202d3946525e6873808d96a1adb9c2cdcfc3b9aea49c918c80786e69605d56534e5c6976838f9ca9b6b2a5988b7f726558555c60666d717a818b939aa3abb5bec7d2cabeb3a99e94897c6f62584e43372b1f1206000000000000040e161e25292d2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2d2a251e170e05000000020f1c2935424f5c6875828f9ba8b5c2cec4b7ab9e9184786b544a3f3428232f3c4956626f7c8995a2afbcc8cabdb1a4978a7e7164574b3e3124180b00000714212d3a4754606d7a8793aab4bfcbd7d6cabeb3aa94877a6d6154473a2e21140700000713202d3a4653606d788686868686868686868b95a2b7aa9d9184776a5e5144372b1e11000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e0d3c7bbafa3998a7d707b8796a1acb9c5d2dcd1c5b9ac9f92867a6d6154473a3025190d01000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2cfdcdededededad5d2d1c9c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8d1d2d5dae0e8f0f7eee5ddd7d2cfcec8c8c8c8c8c8c8c8c8c8c8c8bdb0a3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6ded1c4b7ab9e9184786b5e51452f23180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3ddd0c4b7ab9f948f8f949ea5aeb5bdc3bdb9b7b2adaba8a6a5a4a3a4a5a6a8abacb2b7b8bdc3c9cfd7d2ccc5bebab0a8a09792857c6f695e554b4034281f160c0100000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000030f1c28333f4a54606b75828f99a3afb6c0c9d7ddddd5ccc4bcb4aea9a19e9993908d8a8988878788898b8e9093999da0a7acb1babfbaafa59f9386939facb9c6d2d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000004111d2935414b556976838f9ca9b6c2cfc4b7ab9e918478675d5145392c1f1306000000000000000000000000000000000000000005111e2a36414c56606d7984919ea6b0bbc5cecbc0b6ada39c928d837b736d68625f585c6976838f9ca9b6b2a5988b7f72656064676d71787e858f939fa4acb5bdc6d0cbc3baada2978f82756a6054463c31261b0f0300000000000000040c13191d20212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121201e19140d050000000003101c2936434f5c6976828f9ca9b5c2cfc5b8ac9f928579665c5044382c23303d495663707c8996a3afbcc9cbbeb2a5988b7f7265584c3f3225190c00000814212e3b4754616e7a8794a1adbad1dcdbd0bbaea194887b6e6155483b2e22150800000713202d3a4653606d79869393939393939393959da7b7aa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dcdfd2c5b9ac9f92867a6d7884919eabb7c4d1ded3c7bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2cfdce8e9dfd7cfc9c6c5bcbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbc4c5c9ced6dee8efe5dbd3ccc6c3c2bbbbbbbbbbbbbbbbbbbbbbbbbbb0a3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7dccfc2b6a99c8f8376695c504336291d0700000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfd3c7bbb0a69f9c9c9fa6afbbbfbdb8b2acaaa9a19e9b9998979697989a9b9ea1a8aaacb1b9bec4cbd1d8d0cac1bab2a9a19792857b6e675c51453e31281d120700000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000006121f2b3844505b66707d89949eabb5c0c8d2dbdfd5cbc3bab2aaa39f97928c8783807d7c7b7a7b7b7c7e8183868c91959da0a7aeb4bcbbafa49a939aa4afbbc8d4d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000613202c3945515d677885919eabb8c4cfc2b5a99c8f827669554b4035291d10040000000000000000000000000000000000000000010d1925303b45515d67717e8a949fa9b3bcc5cfc8bfb5ada49c949085807a736f6a66646976838f9ca9b6b2a5988b7f72676d7074797e848b92979ea5afb6bec6cfccc3b9afa59f92857b6e61584e43342a20150a00000000000000000002080d111314141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414110d0802000000000003101d2a3643505d697683909ca9b6c3cfc6baaea29886796d6053463a2d24303d4a5763707d8a96a3b0bdc9ccbfb2a6998c7f7366594c403326190d00000815222e3b4855616e7b8894a1aebbc7d4d5c8bbafa295887c6f6255493c2f22160900000713202d3a4653606d7986939f9f9f9f9f9fa0a2a7afb7aa9e9184776b5e5144382b1e1100000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3dccfc3b6a99c9083766774818e9ba7b4c1cfdad7cbc0b5ab9c8f8276685e5246392d201308000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2cfdce8e1d7cdc5beb9b8afaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeb7b9bdc4ccd6e0e8ddd3c9c1bbb6b5aeaeaeaeaeaeaeaeaeaeaeaeaeaea3968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000000000000000007121e2a36424d576773808d9aa6b3c0cdd9dacdc1b4a79a8e8174675b4e4134281b0e01000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3e3d8ccc2b8b0aba9a9abb0b8bfbab1aca8a09e9996918f8c8b8a898a8c8d8e9196999da0a8adb3bbc0c7cfd8d6ccc3bbb3a9a1979083796d60594f43392f24180d02000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000613202d394653606c7883909da6b0bdc7d1dae1d6ccc3b9b1a8a098928c857f7a7773706f6e6d6e6f707174777b7f848a90959fa2aab2bab6aca49fa4acb6c0ccd8d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000714212d3a4754606d7a8797a1adb9c6cdc0b3a69a8d8073675a4d402f24180c0000000000000000000000000000000000000000000008141e2935404b55616c76828f97a1aab4bdc6d0c8bfb6aea69f98928c85807b7773706e76838f9ca9b6b2a5988b7f7477797d81858b91969ea1a9afbbc0c7d0ccc3bab1a79e938a7e71695e52463d3222180e03000000000000000000070e1317191a1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1b1a18140f09010000000004111e2a3744515d6a7784909daab7c3d0cabfb4aa94877a6d6154473a2e24313e4a5764717d8a97a4b0bdcacdc0b3a69a8d8073675a4d4034271a0d01000915222f3c4855626f7b8895a2aebbc8d5d6c9bcafa396897c706356493d3023160a00000713202d3a4653606d798693a0acacacacacadaeb2b9b7aa9e9184776b5e5144382b1e110000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e2d6cabfb4aa998c807366717e8b97a8b2bdc9d5dcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2cfdce6dacfc5bbb3adaba2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2abacb2bac4cedae3d7ccc1b7afaaa8a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2968a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000000000000000000040d19222d3a46535f6976838f9ca9b6c2cfdcd4c8bcb1a7988b7e7165584b3e3225180b00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfded4cac2bbb7b6b5b7bbbcb4aea8a09d96918c8884827f7e7d7d7e7f808184888c91959ea1a9afb5bdc6ced7d5cdc5bbb3a99f958e81746b61554b4035291f1408000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000003101c28343f4a5464707d8a95a0acb8c1cfd9e3d9cfc4bab1a7a09691867f79726d6866646362616162636567696e72777d838b9298a0a8b0b8b6afacafb6bec7d2ddd7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000916222f3c4955626f7c8895a9b2bec9cbbeb1a4988b7e7165584b3e3225180700000000000000000000000000000000000000000000020d18242f3a43505a616e7b859298a2abb4bdc5cdc8c0b9b0aaa29f97928c8884807d7b78828f9ca9b6b5a89b8f818183868a8e92979ea0a8adb3bbc1ccd2cbc3bab2a8a0958f81756c61574d42342b2110060000000000000000010a12191f23262629292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929282724201a130b0200000005111e2b3844515e6b7784919eaab7c4d1d0bbaea194887b6e6155483b2e25323e4b5865717e8b98a4b1becbcec1b4a79b8e8174685b4e4135281b0e02000916232f3c4956626f7c8995a2afbcc8d5d6cabdb0a3978a7d7064574a3d3124170a00000713202d3a4653606d798693a0acb9b9b9b9b9babec4b7aa9e9184776b5e5144382b1e110000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce0d3c6baaea298897c6f636e7b8896a1adb9c5d2dfd3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2d0d9e3d5c9beb3a9a19e96959595959595959595959595959595959595959595959595959595959595959595959ea1a8b2bdc9d5dfd2c6bbafa59e9b959595959595959595959595959595958a7d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000000000000060d161f2834404a54616e7b87939facb9c6d2dfd1c4b8aca095877b6e6154473b2e21140800000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfe6dcd4ccc7c4c2c2c1b9b1aaa29f95918a847f7b78757372717071727375787c80848a91979fa3abb4bcc6ced7d7cdc5bbb1a79d938a7d70675d51453b3025190e020000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000006121f2b3844505c6674818e9ba7b1bccad3e1dcd1c7bdb2a8a09590847c726d67615d565756555454555658575e61666b70787e8691969fa6b0b9bbb9bbc0c7d0d9e4d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000b1824313e4b5764717e8a97a4b1bdcfcabeb3a996897c6f6356493c30231609000000000000000000000000000000000000000000000007131d28313e47535f696f7c869299a3abb3bbc2cccbc2bcb3aea9a29f9996918d8a888686929facb8b6aa9e938f8e9092999b9fa2a9acb2b9bec5cdd0cac0b9b1a8a09690837a6d615a50453b3022190f0000000000000000000a131c242a2f3233363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363533302b251d140b01000005121f2b3845525e6b7885919eabb8c4d1c8bbafa295887c6f6255493c2f25323f4c5865727f8b98a5b2becbcec2b5a89b8f8275685c4f4235291c0f02000a1623303d495663707c8996a3afbcc9d6d7cbbeb1a4988b7e7165584b3e3225180b00000713202d3a4653606d798693a0acb9c6c6c6c6c7d1c4b7aa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3dfd2c5b8ac9f9285796d60697884919eabb7c4d1ded7cbc0b5ab9c8f8276685d5246392d2013080000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b2bdc7d2ddd2c6b9ada1979289888888888888888888888888888888888888888888888888888888888888888888889196a1acb9c5d2dccfc3b6aa9e938f88888888888888888888888888888888887d7063574a3d3024170a000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000003090f181f28313a44515c6673808d9aa4afbbc8d4ddd0c3b7aa9d908377695e52463a2d20140700000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfeee6ded8d3d0c9c1b8b0a7a098928b847d78736e696866656463646567686a6f73777e858d9299a2aab4bcc5ced7d6cdc3b9afa59e9184796d60564d41362a1e13080000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000713202d3a4653606d7985929eabb8c3cedee3d7cbc0b5aba19690837a6f6a605d55524c4a4948474848494b4d52545961666d717c848f949fa7b1bac4c8ccd2d9e2ebd7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000d192633404c5966737f8c99a6b2bfccc6baada297877a6d6154473a2e2114070000000000000000000000000000000000000000000000010c161f2b37424d57606a707d879299a2a9b1bbc0c7cec5bebab3adaba8a09d999798929298a3aebabbafa59e9b9a9d9fa3ababadb3b9bdc4c9cfcbc5bebaaea7a09691847a6d685d52483e33291f1007000000000000000007121c252e353b3f404343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434341403c362f261d1309000005121f2b3744505b657985929facb8c5d2c9bcb0a396897d7063564a3d3026333f4c5966727f8c99a5b2bfcccfc3b6a99c908376695d5043362a1d0700000a1724303d4a5763707d8a96a3b0bdc9d6d8cbbfb2a5988c7f7265594c3f3226190c00000713202d3a4653606d798693a0acb9c6d2d2d3ddd1c4b7aa9e9184776b5e5144382b1e1100000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e3dbcfc2b5a89c8f8275665c6874818e9ba7b4c1ced9dcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000000e1b2835414e5b6874818e96a1abb5c0ccd7d1c5b8ab9e92857d7c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c84919eabb7c4d1dbcec2b5a89b8f817c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c7a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000002050a0f151a2129313a434e58606d7985919eacb6c0ccd8d5c9bdb2a8998d807366574d42362a1e110500000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfecf1e7ddd3cac1b7afa69e9590867f78706c65615f575958575657595a585f62666c717a80879298a2aab4bcc5d0dbd4cbc0b9aca1968d8073685e52463a3025190d0100000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000a1623303d495663707c8997a2adb9c6d2dfe0d4c7bbafa39991847b6e685f58514b46413d3c3b3a3b3c3d3e4246474f545c606a6f7a828f95a0a8b2bec7d2dde4ebe3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000020f1b2835424e5b6875818e9ba8b4c1cec5b8ab9f928578685e5246392d201307000000000000000000000000000000000000000000000000040d1a26313c454e58606b717e8792979fa7afb6bec3c8cac5bebab8b2acaaa6aaa29f9fa3aab4bfc1b8afaaa8a7aaacaeb5b8babec5c9ceccc6bfbbb4aea49d9590847b6e685e564c41362c20170d0000000000000000020e19242e3740474b4d505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050504e4c4841392f251a0f03000613202d394653606c7986939facb9c6d2cabdb0a4978a7d7164574a3e312633404d596673808c99a6b3bfccd0c3b7aa9d9084776a5d51442e23180c00000b1824313e4b5764717e8a97a4b1bdcad7d9ccbfb3a6998c807366594d4033261a0d00000713202d3a4653606d798693a0acb9c6d3dfe0ddd1c4b7aa9e9184776b5e5144382b1e1100000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce1d5c9bdb2a8988b7f72655464717e8b97a8b2bdc8d4e0d3c7bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000714212e3a4754616d7a849199a4afbbc2ced2c6b9ada1978e81746f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f7784919daab7c4d0dacdc1b4a79a8e81746f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6d675d5145392c201306000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407060606060606060606060000040607080809090e12151a20262b333b434c56606a727f8b97a1adbec7d2ddd2c5b9aca096897c6f6356493c30251a0e0200000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dff3e9dfd5cbc1b8afa59e948f837c726d66605b53534d4c4b4a4a4b4c4d4e54555a61676d737d869298a2aab4becad6ddd5c9bdb2a89f92867b6e61564c41362a1d110500000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000010e1a2734414d5a6774808d9aa9b3becad6e2d6cabfb4aa9f92877c6f695e564e4540393530302f2e2e2f3030363a3e424a50585f686d79839096a0acb6c0ccd8e1ebe3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000005111d2935414c566a7683909da9b6c3d0c3b6a99d9083766a564c41362a1d11050000000000000000000000000000000000000000000000000009151f2a333d464f59616c717e8590959fa4acb1b8bcc3c8cac6c3bdb8b7b3b4aeacacaeb4bcc6cac1bbb6b5b4b6b9bbbfc5c6cacec9c7c0bbb5aeaaa29f928d837b6e695e564c443a30241b0e05000000000000000007131f2a35404a5257595c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5b59534b41362b201408000714202d3a4753606d7a869aa4afbbc8d4cbbeb1a4988b7e7165584b3e322734404d5a6773808d9aa6b3c0cdd1c4b7ab9e9184786b544a4034281c1004000b1825323e4b5865717e8b98a4b1becbd7dacdc0b3a79a8d8074675a4d4134271a0e01000713202d3a4653606d798693a0acb9c6d3dfeaddd1c4b7aa9e9184776b5e5144382b1e110000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3ded2c5b9aca196887b6e6255616e7b8796a0acb8c5d2ded7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000713202d3946525e68707d87939fa7b1bcc5d0c9beb3a99d938a7e716962626262626262626262626262626262626262626262626262626262626a7784919daab7c4d0dacdc1b4a79a8e817467626262626262626262626262626262605d554c4135291d1104000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21141313131313131313131313130c101314141516171a1e21262b31373d454d555d686f7c87929fa9b3bed0d9d4c8bcb1a79e9184786d6053463a2d2013090000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfeae1d7cdc3b9b0a69e938e82796e6a605c5450494642403f3e3d3e3f4043474950555d606b707d869298a2aebac2ced7dacec4baaea3988d8073685e5246392d20150a00000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000005111e2a36424d566a7783909daab6c3cfdbe0d3c7baaea2988e81746a5f574d443c352f2924232221212223252a2d30383f444e565d676e7a84919aa4afbbc4cfdae6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000713202d3946525e687885929fabb8c5cec1b4a79b8e8174685b4e413025190d0100000000000000000000000000000000000000000000000000030e18212b343d47505a616c707b838d939aa0a7acb1b8bcc3c4c8c8c5c4c0bfbab8b8babfc6ced3ccc6c3c2c1c3c5c7cbcec9c5c4bdb9b6afaba39f98928a80796e695e574d443a32281e12090000000000000000000a17232f3b47525c63666969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696968645d53483c3024180b000714212e3a4754616d7a8794a0b6c0ccd8cbbfb2a5988c7f7265594c3f322734414e5a6774818d9aa7b4c0cdd2c5b8ac9f928579665c5144382c1f1206000c1925323f4c5865727f8b98a5b2becbd8dbcec1b4a89b8e8175685b4e4235281b0f02000713202d3a4653606d798693a0acb9c6d3dfeaddd1c4b7aa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e3ded1c4b7ab9e918478695f535e697784919eaab7c4cedadcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000005111d2a36414c56606b73808c959fa9b3becacfc5bbafa59f92857b6e665c55555555555555555555555555555555555555555555555555555e6a7784919daab7c4d0dacdc1b4a79a8e8174675b555555555555555555555555555554514c433a2f24190d01000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2120202020202020202020202020181c1f2021222324262b2d31373c43474f575f676d7a849199a3aebbc4cfd7cdc5b8aca0958a7e71665c5044382b1f12060000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfe3d9cfc5bbb1a79e948e81786d675f58504a443f383631323130313232373b3e434c5159606b707d86929fa6b0bcc5d0dbd6cbbfb4aa9f92867a6d6154473d32271b0f03000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000714202d3a46525e697985929facb8c5d2dfdfd2c5b8ac9f92867b6e61584e453b3229241d191615141515161a1e20262e343c434c555e686f7c88939fa9b3bec9d5e3e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000714212e3a4754616d7a8797a2adbac6ccbfb3a6998c807366594d4033261a08000000000000000000000000000000000000000000000000000000060f19222b353e48505a61696e78808890959da0a7acb1b6b8bcc2c5c6c9cac7c5c5c7cbd0d8e0d7d2cfced0cac6c5c3c0bdb9b7b2acaca49f99928d867e746d675e574d453b322920160c000000000000000000000c1926323f4b57636e7376767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676746f64594c4033271a0e000815222e3b4855616e7b8894a1aebbd2ddccbfb3a6998c807366594d40332835414e5b6874818e9ba7b4c1ced3c6baaea29886796d6053463a2d201307000c1926333f4c5966727f8c99a5b2bfccd8dbcfc2b5a89c8f8275695c4f4236291c0f03000713202d3a4653606d798693a0acb9c6d3dfeaddd1c4b7aa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce1d5c9bdb2a89a8d807367574d576773808d9aa8b2bdc9d5e0d3c7bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000010d1925303a444f59606d78839097a2adbac0cccdc0baada2979083786d60594f4848484848484848484848484848484848484848484848515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e484848484848484848484848484745413a31281e130800000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2d2d2d2d2d2d2d2d2d2d2d2d2d2d23292c2d2e2f2f3131373a3c43474e535960696e79828f96a0abb4bfcdd6cfc5bbb1a79d9083786c60544a3f34281c10030000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3e8dcd1c7bdb3a9a0958f82786d665d554e443f38332d2a262524232426262b2e313a41454f59606b717e8b949faab4bfcad6dcd0c6baaea2988c7f7266584e43372b1f1306000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000814212e3b4754616e7a8798a2aebac6d3dfd7cbbfb4aa9a8e8174695e52463c33292018120d0808070809090e11141c2328313a434c56606b74808d97a1adb9c6d1dce7d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000916232f3c4956626f7c8995a9b3becacabeb1a4978b7e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000007101a232c363e4850575e666d737d838a90959da0a7aaacb1b5b8b9bebdbfc1c5c6cad0d7d3ccc6c3c2bdbebab8b6b4b2acaba8a19e9a938e86807a716c605c554d453b332920170e04000000000000000000000d1a2633404d59667380838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838174685b4e4135281b0e000915222f3c4855626f7b8895a2aebbc8d5cdc0b4a79a8d8174675a4e41342935424f5c6875828f9ba8b5c2ced6cabfb4aa94877a6d6154473a2e211407000d1a2633404d596673808c99a6b3bfccd9dccfc3b6a99c908376695d5043362a1d0600000713202d3a4653606d798693a0acb9c6d3dfe1ddd1c4b7aa9e9184776b5e5144382b1e1100000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3dfd2c5b9ada196897c6f62564956626f7c8996a1acb9c5d2ded7cbc0b5ab9c8f8276685d5246392d2013080000000000000000000000000000000000000000000000000008131e28323d44505c666e7b85929fa5afbac3cfcabeb3a99f958c80736b60564c413c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c44515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e413c3c3c3c3c3c3c3c3c3c3c3c3a39352f281f160c0100000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a3939393939393939393939393939392f34383a3b3b3c3e404246484e53585f626b707b838f949fa8b2bdc6d1d1c7bdb3a99f958a7d70665b5042382e23170b000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3e3d7cbc0b5aba1979083796d665c544b433c342e27221b1a18171718191b1f22282f353d474f59626c76828f98a2aebac5d0dbd6cabfb4aa9d9184776a6054473b2e221509000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000915222f3c4855626f7b8895aab4bfcad6e0d3c7baaea3988a7d7064574d42342a20170d070100000000000002050a11171f28313b444f59606d7a85919eabb5bfcbd7e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000b1824313e4b5764717e8a97a4b1bdcfc9bcb0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000008111a242c363e454d545c606b70787d838a9095999da0a7a9abadb3b1b3b4b8babec5cdcac1bbb6b5b0b4aeabaaa7a8a19e9a96918c87817b746e68615a514b433b332921170e0500000000000000000000000f1c2935424f5c6875818f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f83776a5d5144372a1e11000916232f3c4956626f7c8995a2afbcc8d5cec1b4a89b8e8175685b4e42352936434f5c6976828f9ca9b5c2cfdbd0bbaea195887b6e6255483b2f221508000d1a2734404d5a6773808d9aa6b3c0cdd9ddd0c3b7aa9d9084776a5d51442e23170c00000713202d3a4653606d798693a0acb9c6d3d5d5d5d1c4b7aa9e9184776b5e5144382b1e110000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e3ded1c4b7ab9e9184786c60534654606a7884919eabb7c4cfdadcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000020c162028343f4a545e69717e8a939da8b1bcc6d0c5bcb1a79f93877d70685e52463f342f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e41342f2f2f2f2f2f2f2f2f2f2f2d2c29241e160d040000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d61544746464646464646464646464646464646464045474748494a4d4d5355585f626a6e757d8591959fa6b0bac4cfd2cbc0b5aba1979083766c61544a3f30261c1106000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3e0d3c7bbafa39992857b6e675d544a42393128231c17110e090b0a0b0a0f13161e2429353d47505a616e7b86929fa9b3becad6dbd0c6b8aca095897c6f6256493c31251a0e020000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000091623303c4956636f7c8996a2afbcd0dbdfd2c5b9ac9f92867a6d6053473b3020190e050000000000000000000000060d161f29323d45515d6773808c99a3aebbc7d3e0d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000c1926333f4c5966727f8c99a5b2bfccc8bbafa295887c6f6255493c2f22160900000000000000000000000000000000000000000000000000000000000008121a232c333b424a515961656c70787d83888c9095989c9ea1a9a4a6a8abadb3bbc5c1b8afaaa8a4aaa29f9d9a9796918e8984807b756e69615e5650454039302921170f050000000000000000000000000f1c2935424f5c6875828f9b9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9084776a5d5144372a1e11000a1723303d4a5663707d8996a3b0bcc9d6cfc2b5a89c8f8275695c4f42362a3643505d697683909ca9b6c3cfd5c8bcafa295897c6f6256493c2f231609000e1b2734414e5a6774818d9aa7b4c0cdd5d5d1c4b7ab9e9184786b544a3f34281c1003000713202d3a4653606d798693a0acb9c6c8c8c8c8c8c4b7aa9e9184776b5e5144382b1e110000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce1d5c9bdb2a89a8d8074655b50444e586773808d9aa8b2bdc9d5e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000050e17232e38424d57616c74818e95a0aab4bfcbcec2bbafa49991847a6d615b51463c312722222222222222222222222222222b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134282222222222222222222221201d19130c04000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d61545353535353535353535353535353535353534b5153545556575a575f61666a6f747b82899297a0a7b0b8c2ccd0c7c0bbafa39992857b6e615a5042382d1e140a00000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0a00000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3dfd2c5b9ac9f92877d70695f554b423830271f17110b0600000000000003060c1319232b353e46535e69727f8b97a2adbac6d3dfd4c8bcb1a79a8d807467574d42362a1e12050000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6dccfc3b6a99c908376675d5145392c20130700000000000000000000000000040d17202935414c55616e7b86929facb9c5d2dfd7cabdb0a4978a7d7164574a3e3124170b000000000000000000010e1b2834414e5b6774818e9aa7b4c1cdc7baaea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000008111a2129303940444f535b60656c70777c7f83878b8f92979597999b9fa2a9b3bebbafa59e9b97959892908d8a8784817d78736e69615f57524c443e342e271e170f05000000000000000000000000000f1c2935424f5c6875828f9ba8a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a99d9084776a5d5144372a1e11000a1724313d4a5764707d8a97a3b0bdc9c9c9c3b6a99c908376695d5043362a3744505d6a7783909daab6c3c9c9c9bdb0a3968a7d7063574a3d3024170a000f1b2835424e5b6875818e9ba8b4c1c8c8c8c8c5b8ac9f928579665c5044382c1f1206000713202d3a4653606d798693a0acb9bbbbbbbbbbbbbbb7aa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3dfd2c5b9ada196897c6f6353493f4956626f7c8996a1adb9c5d2dfd7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000006111c26303b45505a606d79839198a3aebac1ccccc0b5aba1968f82756d62584e43392f241815151515151515151515151e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b1515151515151515151413110d080100000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6160606060606060606060606060606060606060605c60616262646669696e73777b81878f939ea1a9b1b9c2cacfc6beb6afa49f92877d70695e53483e2f261c0c0200000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4231261b0f02000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3d9ccc0b3a6998d80736b60574d433a2f261e150d060000000000000000000001081119232a36424d57606d7985929fabb8c2cdd8d9cec3b7aa9d918477695e53463a2d2114070000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6dbcec1b4a89b8e817568554b4035291d10040000000000000000000000000000050e19242f3a46525e6875828e9ba8b5c1cedbd7cabdb0a4978a7d7164574a3e3124170b000000000000000000020f1c2935424f5c6875828f9ba8b5c2cec7baada194877a6e6154473b2e2114080100020202020000000000000000000000000000000000000000000000000000080f171e272e343d414950535b60646a6f73777b7f828587898a8c8e9297a2adbab6aa9e938f8a89878583817e7b7874706c65615f57534d46413b3228231d150c0500000000000000000000000000000f1c2935424f5c6875828f9ba8b5b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6aa9d9084776a5d5144372a1e11000b1824313e4b5764717e8a97a4b1bdbdbdbdbdb7aa9d9184776a5e51442e233744515e6a7784919daab7bdbdbdbdbdb1a4978a7e7164574b3e3124180b000f1c2935424f5c6875828f9ba8b5bbbbbbbbbbbbbaaea29886796d6053463a2d201307000713202d3a4653606d798693a0acaeaeaeaeaeaeaeaeaeaa9e9184776b5e5144382b1e1100000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e3ded1c4b8ab9e9184786c605346394653606c7884919eabb7c4cfdadcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000000000a151e29333e45515d676f7c86929fa6b0bac4d0c7bdb2a89e938b7f726a5f554b40352921170c0909090909090909111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e090909090909090907060401000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c676d6e6e6f717375787b7f84888e92999ea5adb3bbc3cccac3bcb4aca49f928c7f726b60574d42362c1d140a0000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569584e43372b1e1308000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265594f453b31281d150c030000000000000000000000000007111a25313b45515d6774808d9aa7b1bcc8d4ded1c5b8aca096877b6e6154483b2e2115070000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6dacdc0b3a79a8d8074675a4d412f24180d0100000000000000000000000000000008131e2a36414d566673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000004101d2a3743505d6a7683909da9b6c3d0c8bbaea295887b6f6255483c2f2214110d070f0f0f0f0b0a08040000000000000000000000000000000000000000000000050c151c23282f383f44495053585f6266696e7276787a7c7e808185929fabb8b5a89b8f817e7c7a787774716e696763605b53534d46423b3630292018120b030000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2b7aa9d9084776a5d5144372a1e11000c1825323f4b5865727e8b98a5b0b0b0b0b0b0b0ab9e9185786b554b4034283845515e6b7884919eabb0b0b0b0b0b0b0a5988b7e7265584b3f3225180c00101c2936434f5c6976828f9ca9aeaeaeaeaeaeaeaeb4aa94877a6d6154473a2e211407000713202d3a4653606d798693a0a2a2a2a2a2a2a2a2a2a2a29e9184776b5e5144382b1e1100000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce1d5c9bdb2a99a8d8074655b50443744505b6574808d9aa9b2bdc9d5e0d3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000030c17212935404b555f6a727f8b939ea8b2bdc7d0c4bab0a69f92867c6f675d51453e33291e140a00000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a79797979797979797979797979797979797979797979797a7a7b7c7d808285888c90959a9fa3abafb9bec5cbc5bebab1aaa39a938c80746d63594f453b31241a0b020000000000000713202d3a4653606d798693a0acb9c6d3dcd0c3b6a99d9083766a5f53473a3025190e050000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f33291f160b0300000000000000000000000000000009141f2935404b55626f7c88959fabb8c4d1ddd4c8bdb2a8988b7e7165584b3e2e23180c0000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8ccbfb2a5998c7f7266594c3f3326190700000000000000000000000000000000010e192530404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000005111e2b3844515e6b7784919eaab7c4d1c9bcafa396897c706356493d2f26201d181c1c1c1c1c171614100b0500000000000000000000000000000000000000000000030b12181d262d33383f44464e5355575e616569686d6f717376838f9ca9b6b2a5988b7f726f6d686a6764615e575653504947423c36312a251e170e0700000000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c2ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc3b7aa9d9084776a5d5144372a1e11000c1926323f4c5965727f8c98a3a3a3a3a3a3a3a3a39f928579675c5145382c3945525f6c7885929fa3a3a3a3a3a3a3a3a3998c7f7366594c403326190d00101d2a3643505d697683909ca2a2a2a2a2a2a2a2a2a2a194887b6e6155483b2e221508000713202d3a4653606d788693959595959595959595959595959184776b5e5144382b1e110000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3aebbc7d3e3dfd2c5b9ada196897c6f6353493f333f4953636f7c8996a1adb9c5d2dfd7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000000050f18242f39434e58626d75828f96a1abb5c0ccccc1baaea3989183796d605a50453b30261c1106000000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d4c8bbafa2978c878686868686868686868686868686868686868686868686868788898a8d8f9197999da0a7acafb5bdc1c8c6bfbbb4aea8a09892887f746e645b51473d33291f1108000000000000000713202d3a4653606d798693a0acb9c6d3ddd1c4b8ab9f95887c6f62564c41352920160d040000000000000000000000000005111d2935414c566773808d9aa6b3c0cdd9d8ccbfb2a5998c7f7266594c3f3326190c000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225180d0400000000000000000000000000000000030c18242f3947535f6a7683909da9b6c3d1dcd9cec1b4a89b8e817568554b4034281c100400000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000081a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000004111e2a3744515d6a7784909daab7c3d0ccbfb2a6998c7f7366584e4238302c292428282828282423211c1710080000000000000000000000000000000000000000000000070b141b22272d33373c4347494d535458565d6062646976838f9ca9b6b2a5988b7f7265615e565a5754524d4946443f3837312a261f19140d050000000000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0b7aa9d9084776a5d5144372a1e11000d192633404c5966737f8c96969696969696969696969886796d6053463a2d3844505c6679869296969696969696969696968d8073675a4d4034271a0d00111d2a3744505d6a77839095959595959595959595959595887c6f6255493c2f221609000713202d3a4653606d788688888888888888888888888888888884776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5bfcbd7e3ded1c4b8ab9e9184786c605346392d394653606c7884919eabb8c4cfdadcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000000000007121d27313c46515b616d7a849199a4afbbc2cdcbbfb4aaa0958e81746c61574d42382e23170e040000000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cbbfb3a89e979493939393939393939393939393939393939393939393939394959597999c9ea1a9aaacb1b9bbc0c4c1bcb8b5aeaaa29f9591867e726d645c53493f352b21170d00000000000000000713202d3a4653606d798693a0acb9c6d3e0d4c8bcb1a79a8d8174685e52463d32281f160d060000000000000000000000000b13202d3946525d687683909da9b6c3d0dcd8cbbeb1a5988b7e7265584b3f3225180c000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000007121d2b37434e5865727f8b98abb4bfcbd7ddd0c3b7aa9d908477675c5145382c1f130600000000000000010507070a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c0808080706040100000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000003101c2936434f5c6976828f9ca9b5c2cfcfc2b6a99c8f83766a5f544a413a39352f353535353531302d28221a12080000000000000000000000000000000000000000000000020a11171b22272b32373b3c4246484c4c5254565c6976838f9ca9b6b2a5988b7f726558524c4e4b4846423d3937332d2b261f1a140d0802000000000000000000000000000000000000000f1c2935424f5c6875828f9ba8b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3aa9d9084776a5d5144372a1e11000d1a2734404d5a6773808a8a8a8a8a8a8a8a8a8a8a8a8a877a6d6154473a2e3a4653606d79868a8a8a8a8a8a8a8a8a8a8a8a8a8174675b4e4134281b0e00111e2b3744515e6a77848888888888888888888888888888887d7063564a3d3023170a0006121f2b3844505c66767c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce1d5c9beb2a99a8d8074655b5044372b3844505b6674808d9aa9b3bec9d5e0d3c7bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000010b151f2a343f46525e68707d87939fa6b0bbc5d0c6bcb1a79d928a7e71695e544a3f342820160c0200000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3dbd0c4bab0a8a2a09f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa0a1a1a2a4a6a8abadb3b7b8bcc0bbb9b7b4b1acaba39f98928c847c716c635b534a41372d23190f0500000000000000000713202d3a4653606d798693a0acb9c6d3e4d8cdc2b8ac9f92867a6d61594f443a31281f170f0a040000000000000000030b121c27303a4754616d7a86929facb9c5d2dfd7cabeb1a4978b7e7164584b3e3125180b000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000010f1b26323c4955626f7c8899a3aebac7d3dfd2c5b9ac9f9286796d6053463a2d201307000000000002080d111314141723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f322519141414141413110d08010000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000020e1b2835414e5b6874818e9ba7b4c1d1d0c4b7ab9f94887c6f665b524c4745404242424242423e3c39332c241a1005000000000000000000000000000000000000000000000000060b11171b1f262b2e31363a3b3f414547505c6976838f9ca9b6b2a5988b7f7265584c41413e3b3a36302d2b27221b1a150e09030000000000000000000000000000000000000000000f1c2935424f5c6875828f9ba6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a69d9084776a5d5144372a1e11000915222f3c4855626f7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d796d6053473a2d3a4653606d787d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f6255493c2f221609000815222f3b4855626e7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7a6d6054473a2d2114070003101c28343f4a545f6a6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6e695f53473a2d21140800000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada197897c6f6353493f3328333f4a5463707c8997a1adb9c6d2dfd7cbc0b5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000030d18222935414c56606b73808c949fa9b3becacec3b9afa59f92857b6e665c50443d32281e130800000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e1d6ccc2bab3afadacacacacacacacacacacacacacacacacacacacacacacacadadaeafb0b3b5b8b9bec3c7beb6afacaaa8a7a09d99928e867f786f6a615a514941382f251c11080000000000000000000713202d3a4653606d798693a0acb9c6d3dfdfd3c6baaea2988e81746b60564c433a3129211b15100c0707060406070a0c151c232e39424f5964717e8a99a3afbbc7d4e0d8ccc0b6ac978a7d7064574a3d3124170a000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000a13202d3a4653606d7986929facb9c5d2dfd3c7bbafa399887c6f6255493c2f22160900000000040c13191d2021212123303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225212121212121201d19130c0400000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000d1a2733404d5a6673808d99abb5c0cbd3c7bbb0a69c8f82786c615e5653514b4f4f4f4f4f4f4a49443e362c22170b0000000000000000000000000000000000000000000000000000060b0f151b1f21252a2d2e2f353943505c6976838f9ca9afafa5988b7f7265584c3f30312e2d2a25201f1b17110e090300000000000000000000000000000000000000000000000f1c2935424f5c6875828f99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999084776a5d5144372a1e11000815212e3a47535f6a6f70707070707070707070707070706d675d5145382c3844505c666d70707070707070707070707070706f6a5f54473b2e221508000814212e3a47535f696e6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6d675d5145392c20130600000b17232e38424e585f62626262626262626262626262626262615f574d42372b1e12060000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c4b8ab9e9184786c605346392d222d394653606c7985919eabb8c4cfdadcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000006101925303a444f59606d78839097a2adbac0ccccc0baada2979082786d60594f443a3024191006000004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e8ded4ccc4bfbbbab9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9babbbcbdc0c2c4c6c9c7bdb5aca49f9d9b9895908b86817b726d66605850483f372f261d130a000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe2d6cabfb4aa9d93897d70685e554b433b332b271f1d18141312101314151b1e272e34404a54616b7683909cabb5c0cbd7e0d4c8bbafa49a887b6f6255483c2f221509000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000006131f2c3845515c667683909da9b6c3d0dcd7cbc0b5ab978b7e7164584b3e3125180b000000040e161e25292d2e2e2e2e303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f322e2e2e2e2e2e2d2c29241e160d04000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000b1825323e4b5865717e8b99a3afbbc7d4cdc2b7aa9f948d80756d6863605d555c5b5b5b5b5b575550483e33281c1004000000000000000000000000000000000000000000000000000000030a0f13151a1e212124293643505c6976838f9ca3a3a3a3988b7f7265584c3f322521201e1a13120f0b0600000000000000000000000000000000000000000000000000000f1c2935424f5c6875818d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d83776a5d5144372a1e110006121f2b37434e585f626363636363636363636363636363605d554b403529343f4a545c606363636363636363636363636363625f584e43372b1f13060006121e2b37424d575f62626262626262626262626262626262605d554b4135291d1104000006111c26303c464e535555555555555555555555555555555555534d453c31261a0e020000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce1d5c9beb3a99a8d8074665b5044382b1f2b3844505b6674818d9aa9b3bec9d5e0d3c7bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000000008131e28323d44505c666e7b85929fa5afb9c3cfcabeb3a99f948c80736b60564c41352922180d030004111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3f0e6ded6d0cbc8c7c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c7c8c8cacccfd1d2cbc0b5aba39a93918e8c88837f7a746e69605c544e463e362e251d140b01000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe7dbd0c6bcafa59e91847a6d675d554d453e37322c292421201f1c1f2021262b30394044515c66707d8a949fabbdc7d1dcdfd2c6b9ac9f9386796d6053473a2d201407000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000004101c2834404b546774818d9aa7b4c0cddadcd1bfb2a5998c7f7266594c3f3326190c0000020c1620283035393a3b3b3b3b3d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3b3b3b3b3b3b3b3a39352f281f160c010000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000714212e3a4754616d7a86929facb9c5cfd3c7bbb0a69d928d817a74706d676969686868686864615a5044392d21140800000000000000000000000000000000000000000000000000000000000306090e12141519293643505c6976838f9696969696968b7f7265584c3f32251914120e090503000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080807f7265584c3f3225190c00030f1a26313c464e5355575757575757575757575757575753514b43392f242e38424a5053575757575757575757575757575755544e463c32261b0f0300020e1a26313c454d535555555555555555555555555555555554514b433a2f24180d010000000a141e2a343c4347484848484848484848484848484848484847423c332a1f150900000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada197897c7063544a3f33281c28333f4a5463707c8997a1adb9c6d2dfd7cbc0b5ab9c8f8276685d5246392d2013080000000000000000000000000000000000000000000000000000000000020c162028343f4a545e69717e8a939da7b1bcc6d0c5bbb0a69f93877d70685d52463f342a1f150b0104111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3f0e9e0d8d2cdcac8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c9cacbcdcfd2d3d6d4c7bbafa399928884817f7c77726d68615e56514a423d342c241c130b0200000000000000000000000713202d3a4653606d798693a0acb9c6d3dfede2d7cec1b9aca0969083796d675f575047433c38352f2e2d2c292c2d2e31373c424a515b606d7883909da6b0bccfd9e3ddd0c3b6aa9d908377675c5145382c1f1306000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000c18232e3e4b5864717e8b97a4b1becad7dacdc0b3a79a8d8074675a4d4134271a0e000008131e28323a41464747474747474a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c47474747474747474745413a31281e13080000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000713202d3946525e6876828f9ca9b3bec9d5ccc2b8aea49d938f86817c7a7776757575757575716c6155493c3023160a0000000000000000000000000000000000000000000000000000000000000000020507081d293643505c69768289898989898989897f7265584c3f3225190c0502000000000000000000000000000000000000000000000000000000000000000a1724303d4956616c7173737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373726d62564a3e3125180b00000a15202a343c4347484a4a4a4a4a4a4a4a4a4a4a4a4a4a4745403931271d2630383f44464a4a4a4a4a4a4a4a4a4a4a4a4a4a4947433c342a20150a00000009151f2a333c4247484848484848484848484848484848484745413a31281d130700000000020c18222a31373a3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3b3a37312a21180e030000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c4b8ab9e9185786c605346392d2217222d3a4653606d7985929eabb8c5cfdadcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000040e17232e38424d57616c74818e95a0aab4bfcbcdc2bbafa49991847a6d615b51463c31271d120700111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3eae0d7cec7c1bdbcbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbcbdbec0c3c5c6cad0c5b9ac9f92867f7b77736f6a65615e56524d444039302b221a120a010000000000000000000000000713202d3a4653606d798693a0acb9c6d3dff3e9e0d5c9bdb2a89f958f82796e69615a544e4745403d3a3a3834383a3b3d43474d545c606d74818e95a0acb8c2cde1e1d5c9bdb2a8998c7f7366554b4034291c1004000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000071623303c4956636f7c8996a2afbcc9d5dbcec2b5a89b8f8275685c4f4235291c0f00010d1925303a444c52545454545454545663707d8996a3b0bcc9d6d8cbbeb2a5988b7f72655854545454545454545454524c433a2f24190d0100000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000005111e2a36414c5664717e8b97a1adb9c1ccd3cac0b6aea59e98928e898684838282828282827e7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c7c7c7c7c7c7c7c7d7b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000815212d3945505a61646666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666665625b51463a2e2216090000030e18222a31373a3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a38352f271f151e262e34383a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b37322a22190e04000000030e18212a31373a3b3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3a39352f281f160c01000000000006101820262b2e2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2e2d2b261f180f06000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce1d5c9beb3a99a8d8174665b5044382b1c121f2b3844505c6674818d9aa9b3bec9d5e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d79839198a3aebac1ccccc0b5aba1968f82756d62584e43392f24180f05111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e3d8cec5bcb5b1afaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeafafb0b1b3b6b8babfc5c7bbafa399928c8783807a746e69605b534c443b332a2019100800000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dff2e9e2d9cec4bab1a79f948f837b706c62605853514b49474644404547484a4e53575f666d747f8c939da7b1bccad4deded2c5b9aca196887c6f6255483c2f23180c00000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbd2dddcd0c3b6a99d9083766a5d5043372a1d100005111d2935414c565e616161616161616163707d8996a3b0bcc9d6d8cbbeb2a5988b7f726561616161616161616161605d564c4135291d110400000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000010d1925303a4754606d7a85929ea5afbac3cbd6c8c0b7afaaa29f9a999391908f8e8e8e8e8a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000815222e3b47545f6a6f70707070707070706e695e52463a2d20140700000000000000000000000000000000000000000000000000000000000000000005111d28343e485056585a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a585651493f34291e120600000006101820262b2e2f30303030303030303030303030302d2c29241d150d141c23282b2d30303030303030303030303030302f2e2b26201910070000000000060f181f262b2e2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2d2c29241d160d0400000000000000060e151a1f212222222222222222222222222222222222211e1a150e060000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada197897c7063544a3f33281c101c28343f4a5463707d8997a1adb9c6d2dfd7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000000000000000a151e29333e45515d676f7c86929fa6b0bac4d0c7bdb2a89e938b7f726a5f554b40352921170c111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3ddd2c7bcb3aaa4a2a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a2a3a3a4a7a9acaeb4b8babfb5aba39f9895908c86807b726c655e564d453b332920160c02000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe9e0d7d0cac6c2b9b0a69f9590857d766f6a64605d55565453504b51535457585f62696e78808c919ca5afb9c3cedce3d7cbbfb4ab9e9184786a5f53473b2e1d120700000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000815212e3b4854616e7b8794a1b5c0ccd7ddd0c4b7aa9d9184776a5e5144372b1e11000713202d3946525e686d6e6e6e6e6e6e6e6e707d8996a3b0bcc9d6d8cbbeb2a5988b7f726e6e6e6e6e6e6e6e6e6e6e6d685d5245392c20130600000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000813202c3945515d67717e8a939ea8b1b9c2cad0c9c1bcb4aeacaba49f9d9c9c9b9b9b98887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e585f626363636363636363615e574d42362a1e1205000000000000000000000000000000000000000000000000000000000000000000000c17222d363e45494b4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4c4a463f372d23180d0100000000060e151a1f21222424242424242424242424242424201f1d18120b030a11171c1f20242424242424242424242424242422221f1b150e0700000000000000060e151a1e212222222222222222222222222222222221201d18130c04000000000000000000030a0f1215151515151515151515151515151515151514120e090300000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c4b8ab9e9185786c605346392d22170b17232e3a4653606d7985929eabb8c5cfdbdcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000000000000000030c17212935404b555f6a727f8b939ea8b2bdc7d0c4baafa59f92867c6f675d51453e33291e140a1e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d9cdc1b5aaa1999595959595959595959595959595959595959595959595959697989a9c9fa2aaacaeb4bbb5afaca7a09d98928d867f776d685f574d453b32281e1308000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe2d7cec5bebab8bab8b0a7a097928a827c75716d67666361605c555c606163676a6f757b838d929ca3adb7c1cbd5dfdcd3c7baaea3998d807467584e43372b1f0b0100000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000714212d3a4754606d7a8799a4afbbc7d4ddd1c4b7aa9e9184776b5e5144382b1e11000714212e3a4754616d7a7a7a7a7a7a7a7a7a7a7e8a97a4b1bdcad7d9ccbfb2a6998c7f7a7a7a7a7a7a7a7a7a7a7a7a7a6d6054473a2d21140700000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000004111d2935414b55616c75818e96a0a7b0babfc6cecec6bfbab8b5afacaaa9a8a8a89f9285796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000030f1b26323c464e5455565656565656565654524d453b30251a0e020000000000000000000000000000000000000000000000000000000000000000000006101b242d34393d3e404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040403f3e3a342d251b1107000000000000030a0f12151517171717171717171717171717171413100c07010000060b10121317171717171717171717171717171615130f0a0400000000000000000003090e1214151515151515151515151515151515151413110d07010000000000000000000000000306080909090909090909090909090909090908080602000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d5c9beb3a99a8d8174665b5044382b1c1106121f2c3844505c6674818e9aa9b3becad6e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000050f18242f39434e58626d75828f96a1abb5c0ccccc1baaea3989083796d605a50453b30261c111e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d6cabdb1a4998e898888888888888888888888888888888888888888888888898a8b8d9092989b9fa3aaafb5bbb9b1acaaa29f99928c827a6e695f574d443a3024190d030000000000000000000000000713202d3a4653606d798693a0acb9c6d3e7dbd0c5bcb4aeabaeb4b9b1a9a29f948f87827e797572706d6d666b676d6e7073777c818790959da4adb5bfc9d2ddddd5c9beb3a99f92867b6e6155483c32261b0f0000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000613202d394653606c7986939facb9c6d2ded1c4b8ab9e9185786b5e5245382b1f1200111d2a3744505d6a77838787878787878787878a909aa6b2bfcbd8dacdc0b4a89c918c8787878787878787878787878175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000010d18242f3a43505a616d7a8490959fa6aeb4bcc1c5c8cac6c5c0bbb9b7b6b5b5a99c908376655b5044372b1f12050000000000000000000000000000000000000000000000000000000000000000000000000a15202a343c43474949494949494949494846423b33291f140900000000000000000000000000000000000000000000000000000000000000000000000009121b22282d30313333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333332312e29231b1309000000000000000000030608090a0a0a0a0a0a0a0a0a0a0a0a0a0a070604000000000000000306070a0a0a0a0a0a0a0a0a0a0a0a0a0a090806030000000000000000000000000002060808090909090909090909090909090909070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada197897c7063544a3f33281c0a03101c28343f4a5463707d8997a2adb9c6d2dfd7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000000000000000007121d27313c46515b616d7a849199a4afbbc2cdcbbfb4aaa0958d80746c61574d42382e23171e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c7c7d7e808385898e92989fa3abb1b9bcb8b4aeaba39f948f847b6e695e564c4135291f150b0100000000000000000000000713202d3a4653606d798693a0acb9c6d3e2d6cabeb4aaa29fa2aaafb7b3ada69f9a938f8a85827f7c7a797878797a7b7d8083888e92999fa7aeb6bfc7d1dbddd4cbc2b9ada1978d8073695f53463a2a20150a0000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000005121f2b3744505b657885929fabb8c5d2ded2c5b8ab9f9285786c5f5245392c1f1200111d2a3744505d6a7783909494949494949494979aa2acb7c2cedadcd0c4b8ada39c9994949494949494949494948e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000007131d28313e46525e686e7b8390949fa2aaafb7b8bcc1c3c5c7c7c6c4c3c0b4a79a8d81746753493f33271b0f03000000000000000000000000000000000000000000000000000000000000000000000000040e19222a32373b3c3d3d3d3d3d3d3d3d3b3a36302921170d03000000000000000000000000000000000000000000000000000000000000000000000000000910171d212425272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272525221e1811090100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c5b8ab9e9285796d6053463a2d22170b000c17232e3a4653606d7985929eabb8c5d0dbdcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000000000000000000010b151f2a343f46525e68707d87939fa6b0bbc5d0c6bcb1a79d928a7e70695e544a3f342820162b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6f7070717476797d81868d92999fa7b0b8c2bfbab4aea69e9691847b6e685d52463d31271d120700000000000000000000000713202d3a4653606d798693a0acb9c6d3dfd3c6baaea29892989ea5afbbbab0aca49f9c98928e8c89878685858586878a8d90959b9fa3abb1b9c0c8d1d9ded5cbc2b9b0a69e92857a6d60574d42362a1e12050000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000030f1b27333f495e6b7885919eabb8c4d1ded2c5b8ac9f9285796c5f5246392c1f1300111d2a3744505d6a7783909da1a1a1a1a1a1a1a4a6acb4bec8d3dfe0d5cabfb6ada8a6a1a1a1a1a1a1a1a1a1a19b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000010c161f2a36414c565e696e7a828c92989ea5aaacb1b4b6b9babfbbbcbcc0b5ab988b7e7165584b3e2d22170b000000000000000000000000000000000000000000000000000000000000000000000000000007101920262b2e2f30303030303030302e2d2a251f170f05000000000000000000000000000000000000000000000000000000000000000000000000000000060c111517181a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a191816120d07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070708090a0b0b0c0c0b0b0a090807060401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d5c9beb3a99a8d8174665c5044382b1c11060006121f2c3844505c6674818e9ba9b3becad6e0d3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000000030d18222935414c56606b73808c949fa9b3becacec3b9aea49f92857b6e665c50443d32281e2b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6262626262626262626262626262626262626262626263646567666d70757a808790959fa6b0b8c2c6bfbab0a8a19691837a6d61594f43392f24180c00000000000000000000000713202d3a4653606d798693a0acb9c6d3ded2c5b8ab9f92858f939ea9b3bbbeb6afacaaa29f9b999694989291929894969a9da0a7acafb5bdc2cbd2dadbd6ccc3b9b0a69e938b7f72685d52453b31261a0e020000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000006121f2b3844505b667885929fabb8c5d2ded1c5b8ab9e9285786b5f5245382c1f1200111d2a3744505d6a7783909daaadadadadadadb1b2b7bec6d0dae5e6dbd1c8bfb8b4b2adadadadadadadadada89b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000040d1925303a444d575e686d797f868e93999da0a7a7aaacaeb4afafafafafa499897c6f6256493c2f231606000000000000000000000000000000000000000000000000000000000000000000000000000000070e151b1f2222232323232323232321201e1a140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000005080a0b0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0c0b090601000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708070c101313141516171718191818171716151413110d070a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada197897d7063544a3f34281c0a000003101c28343f4a5463707d8a97a2adbac6d3dfd7cbc0b5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000006101925303a444f59606d78839097a2adbac0cccbc0baada2979082786d60594f443a30242b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d61555555555555555555555555555555555555555555565758545c6063686d737c838f949fa6b0bbc5cbc2bab2a8a0958e81746b60554b4035291d1004000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82828f97a1a9b3bbc0bbb9b3aeaba8a5a3aaa29f9e9fa2aaa3a6aaacb1b9bbc0c7cfd4dcd7d0cac1bab1a79f948f82786d60564c4133291f1409000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000613202d394653606c7986939facb9c6d2ded1c4b8ab9e9185786b5e5245382b1f1200111d2a3744505d6a7783909daab6babababababdbfc2c8d0d8e2ecede3dad1cac4c0bfbabababababababab4a89b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000008131e28323b454d565d676d737b81888c9195989a9d9fa3aba2a3a3a3a39f93867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13151616161616161616161514120e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010407090e12141517181c1f202122222324252525252424232220201d1819171514120e0907040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c5b8ab9e9285796d6053463a2e23170b0000000c17232e3a4653606d7985929fabb8c5d0dbdcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000000000000000000000008131e28323d44505c666e7b85929fa5afb9c3cecabeb3a99f948c7f736b60564c4135292b3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d61544848484848484848484848484848484848484849494a4b4a5053565d606a6f79828f949fa9b3becaccc4bab1a79e93897d70675d5145382c1f150a000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827a859197a2a9b1bbc0c5bebab8b5b2afb4aeababacaeb4b0b3b6b8bcc3c7cbd1d9d6d1cbc5bebaafa8a0959082796d665c50433a2f21180d03000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000714212d3a4754606d7a879aa4afbbc8d4ddd1c4b7aa9e9184776b5e5144382b1e1100111d2a3744505d6a7783909daab6c3c7c7c7c7cad1d2d5dae1e8f1f5ece3dbd5d0cdccc7c7c7c7c7c7c7c1b4a89b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000020c162029333b444c555c60696e757b7f84888b8e90929994959696969696918477675d5145392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090a0a0a0a0a0a0a0a080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060708090a0b0b0b0c0c0b0b0a09080706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080d1113141a1e20212423282c2d2e2e2f3031323232313131302e2d2c2924262421211e1a1413110d08040000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d5c9beb3a99a8e8174665c5044382b1c110600000006121f2c3844515c6674818e9baab3becad6e0d3c7bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000020c162028343f4a545e69717e8a939da7b1bcc6cfc5bbb0a69f92877d6f685d52453f342a3744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3c3d3d3e3f44464c52585f676d79828f97a1adb9c3cdccc3b9afa59e9184796d6053473c32271b0f030000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82757c859297a0a7afb5bdc2c6c5c1bfbcbebab8b8b8babfbdc0c3c4c8cdd4d7d3d0cac7c0bbb3ada59d9691837a6d675d544a3f31281e0f0600000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000815212e3b4854616e7b8794a1b6c0ccd8ddd0c3b7aa9d9084776a5d5144372a1e1100111d2a3744505d6a7783909daab6c1c1c1c1c1c1c5c6c9cfd6dfe8f1e7ddd5cdc8c4c3c1c1c1c1c1c1c1c1b4a89b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000050e172029323a434b51575e61696e73777c7e818386878888898989898989817568554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060709060b101213141617171818191818171716151312100c07090706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c1013191d2021252a2d2e312e34383a3a3b3c3d3e3e3f3f3e3e3d3c3b3a39352f33312e2d2a2521201d1913100c0701000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada197897d7063544a3f34281c0a0000000004101c2834404a5463707d8a98a2aebac6d3dfd7cbc0b5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000000040e17232e38424d57616c74818e95a0aab4bfcbcdc2bbafa39991847a6d605b51463c313744515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f30312e34383a41454e555d676d7a85929ea7b1bcc8d4ccc1b9aca0968b7e7165584e43372b1f13060000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82756f7c8590959fa3abb0b9bbbfc5c7cbcac6c5c4c5c6cad0cdd0d1d2d1d1cbc7c5bfbab5afa9a29f938e847b6e685d554b42382e1f160c0000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbd2dddccfc3b6a99c908376695d5043362a1d1000111d2a3744505d6a7783909daab4b4b4b4b4b4b4b8b9bec5cdd6e1eadfd5cbc3bcb8b6b4b4b4b4b4b4b4b4b4a89b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000050e172028313940454d52575f61666a6f727477797a7b7c7c7c7c7c7c7d7b6e6155483b2f24180c00000000000000000001050707090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909080705020000000000000000000000000000000000000000000000000000000000000000000000000205060c1012131518171c1f2021232424252525252524242321201f1c1818161313100c0706020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e12181c1f24292c2d30363a3b3d404045464748494a4a4b4c4b4b4a4a494847454042403d3b3a36312d2c29241f1c18120d08020000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c5b8ab9e9285796d6053463a2e23170b00000000000c18232e3a4653606d7985929fabb8c5d0dbdcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d79839198a3aebac1cccbc0b5aba1968f81756d62584e43392f44515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2222222222222222222222222222222222232423282b2f353c434b555e68717e8b95a0acb8c4d1d5c9bdb2a89d9083776a6054473b2e2215080000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82756a6f7b838d92999fa6acaeb5b9babfc1c3c5c7cbd1c9c9d0cac7c5c4c2bfbab9b4aeaba39f97928a81796e695e564c433930261c0d040000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6dbcec1b4a89b8e8175685b4e4235281b0f00111d2a3744505d6a7783909da8a8a8a8a8a8a8a8abadb3bbc5cfdae4d9cdc3b9b1acaaa8a8a8a8a8a8a8a8a8a89b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000050e161f272f343b42464d5355585f626567666d6d6e6f7070707070706e695f53463a2d1d12070000000000000002080d1113141616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161514120e0903000000000000000000000000000000000000000000000000000000000000000105090e1214171c1f20222523282b2d2e2f303131323232313130302e2d2c28232522201f1c1814120f090502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c141a1c23282c2f35393a3e4246484a4d4b51535455555657585858585757565553514b4f4c4a4846423e3a3935302c29231d19130d0802000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb3a99a8e8174665c5044382c1c1106000000000007131f2c3845515c6775818e9baab4becad6e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000a151e29333e45515d676f7c86929fa6b0bac4d0c7bdb2a89e938b7e726a5f554b403444515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21151515151515151515151515151515161617171c1f24293139434c56606c7883909daab6c3ced9cec4b8ab9f95887c6f6255493c2f24190d0100000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569696e7980878f949b9fa3abacaeb4b5b7b9babfbbbcbcbbbfbab8b7b6b4aeacaaa29f99928e857e746d675e574d443a31271e140a000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbd8d9cdc0b3a69a8d8073675a4d4034271a0d00111d2a3744505d6a7783909b9b9b9b9b9b9b9b9b9ea1a9b3bec9d5e0d4c8bcb1a7a09d9b9b9b9b9b9b9b9b9b9b9b8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000040d151d232930363b4246484e535558545c60616162636363636363615f574d42372b1e0b01000000000000050c13191d202123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232321201e1a140d050000000000000000000000000000000000000000000000000000000002080d11141a1e2123282c2d2f312e34383a3b3c3d3e3e3e3f3f3e3e3d3c3b3a38342e322f2d2c2823211f1a15110e09020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b12181f252a2e34383a4145474b4d52545759545c6061616263646565656464646361605d555b595754534d4b4745413a38342f29251e19130b06000000000000000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada197897d7063544a3f34281c1003000000000004101c2834404b5564707d8a98a2aebac6d3dfd7cbc0b5ab9c8f8276685d5246392d2013080000000000000000000000000000000000000000000000000000000000000000000000030c17212935404b555f6a727f8b939ea8b2bdc7cfc4baafa59f92867c6f675c51453e44515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140808080808080808080808080808090a060b1013191f27313a44505b65727f8c98a7b1bcc8d4d4c8bcb1a79a8d817467554c4135291d110400000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695f676d747c82898e92999c9fa3aba8aaacaeb4aeafafafb4aeacaba9aaa39f9c98928d87817b716c605d554d453b32281f150c02000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbfb2a5988c7f7265594c3f322619060000000000000000000000000000000000000004111d2935404b556874818e9ba7b4c1cedad8cbbfb2a5988c7f7265594c3f3226190c00111d2a3744505d6a77838e8e8e8e8e8e8e8e8e8e9297a1adb9c6d2ded1c4b8aca095908e8e8e8e8e8e8e8e8e8e8e8e8175685b4e4235281b0f02000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000030b12181f252a31363a3c4347484b4a505354555556565656565655534d453c31261a0e000000000000050e171e252a2d2e3030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302e2d2a251f170f0500000000000000000000000000000000000000000000000000040a0f13191d20262a2d2e34383a3c3e413f444647494a4a4b4b4c4b4b4a4a4948464440413e3c3a38342e2e2b26201e1914100b0400000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171d24293036394044464c525458575e61646669666d6d6e6f70717172727171706f6e6d676a686664615e575754524c47454039353029241e17110a020000000000000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c5b8ab9e9285796d6053463a2e23170c000000000000000c18232e3a4753606d7985929fabb8c5d0dbdcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000000000000000050f18242f39434e58626d75828f96a1abb5c0ccccc1baaea2989083796d605a504544515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000003080d151f27333f4953616e7b8895a0acb8c5d1d8cdc3b7aa9d908477675d5145392c20130600000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569555c606a6f767d82868c8f9299999b9d9fa3aaa2a2a3a2aaa29f9e9c9998928f8c85807b756e69615a514b433b332920160d0300000000000000000713202d3a4653606d798693a0acb9c6d3d9cdc0b3a69a8d8073675a4d402d22170b000000000000000000000000000000000000000613202c3945515d677784919daab7c4d0ddd6cabfb4aa978a7d7164574a3e3124170b000d1a2733404d5a6673808181818181818181818185929eabb8c5d1ddd0c3b6aa9d90838181818181818181818181817f7265584c3f3225190c00000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000001070c141a1f262a2d32373b3c3f3f44464748494949494949494846423c332a1f14090000000000020c1720293036393a3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3b3a36302921170d0300000000000000000000000000000000000000000000040a0f151b1e252a2d31363a3b3f4446484b4d4a50535456575758585858585757565453514a4e4b494645403b3a37312d2a251f1b16100b0500000000000000000000000000000000000000000000000000000000000000000000000000060b141b22272f353b42464a5153565d606569696e70737578797a7b7c7d7d7e7f7e7e7d7d7c7b7a79777573706e696764605d5653514b46413a353027221b140b0500000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb3a99a8e8174665c5044382c1c11060000000000000007131f2c3845515c6775818e9baab4bfcad6e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000007121d27313c46515b616d7a849199a4afbbc2cdcabfb4aaa0958d80746c61574d42515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000000030d17222d3846535f697784909daab7c3d0ddd2c6b9ac9f93867a6d6054473a2d21140700000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c51585f626b70757a7f83868a8c8e9092989495969695949892918f8c8986837f7a746e69615e575045403a312921170e040000000000000000000713202d3a4653606d798693a0acb9c6d3dbcec1b4a89b8e81756853493f33271b0f030000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6d2dfd3c6baaea298887b6e6255483b2f221508000c1926323f4b58636e7375757575757575757576838f9ca9b6c2cfd8cbbeb2a5988b7f757575757575757575757575726d62564a3e3124180b00000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000002090e141a1e21262b2e2f2e34383a3a3b3c3d3d3d3d3d3d3b3a37312a21180e03000000000008131e29323a4146474949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494846423b33291f1409000000000000000000000000000000000000000002090e161b20272b3036393b4246484a505355585a545c6061626364646565656464636361605c545a585553514b4847433c3a36302c27211c160e090300000000000000000000000000000000000000000000000000000000000000000000070f181d262d333940454d52545c6064686d7175787b7d80828586878888898a8b8b8b8b8a8a8988868584827f7d7b7774716d6864605c55524c45413a332d261d170e0700000000000000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd2c6b9ada297897d7063544a3f34281c0a000000000000000004101c2934404b5564707d8a98a2aebac6d3dfd7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a343f46525e68707d87939fa6b0bbc5d0c6bcb1a79d928a7d70695e544a515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000006111b2a36424d576875828f9ba8b5c2cedbd4c7bbafa499897d706356493d3023160a00000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4e53596063686e72767a7d8082848687888889898887868584827f7c7976726d68615e57534d453e352f281f170f05000000000000000000000713202d3a4653606d798693a0acb9c6d3dccfc2b6a99c8f8376655b5044372b1f12060000000000000000000000000000000000030f1c28333f4a5463707c8999a4afbbc7d4dfd2c5b8ac9f9285796c605346392d201306000a17232f3b47525c636668686868686868686976838f9ca9b6c2cfd8cbbeb2a5988b7f72686868686868686868686865625b51463a2e22160900000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000003090e12151b1f212223282b2d2e2e2f3030303030302e2d2b261f180f060000000000010d1925303a444c525456565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565654524d453b30251a0e02000000000000000000000000000000000000060b141921272c32373a4146474d5355545c6062646769666d6e6f7071717172727171706f6e6d6669676562605c5555534e4746423b38322c27211a150c070000000000000000000000000000000000000000000000000000000000000000061119212a2f383f444b51575e61666d70757a7e8285878a8c8f9197949495969798989897979796949892918e8c8a8784817e7a75716d67615e56524c443f382f292019110900000000000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded1c5b8ab9e9285796d6053463a2e23170c0000000000000000000c18232f3a4753606d7985929facb8c5d0dbdcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000000000000000000000000000030d18222935414c56606b73808c949fa9b3becacec3b9aea49e92857b6e665b50515e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000e1a2631414e5a6774818d9aa7b4c0cddad7ccc0b5ab998c7f7266594c3f3326190c00000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f43474f54565e6165676d70737577797a7b7b7c7c7c7b7a797876736f6d6765605d56534d46423b3329241d160d0500000000000000000000000713202d3a4653606d798693a0acb9c6d3ded1c4b8ab9e9185796c605346392d22170b010000000000000000000000000000000006121f2b3844505b6673808c99abb5c0ccd7dcd0c3b6a99d908376665b5044382b1f12060007131f2a36404a52585a5b5b5b5b5b5b5b5c6976838f9ca9b6c2cfd8cbbeb2a5988b7f72655b5b5b5b5b5b5b5b5b5b585651493f34291e120600000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000002050a0f121515171c1f2021222223232323232322211e1a140e0600000000000005111d2a36414c565e61636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363615e574d42362a1e120500000000000000000000000000000000020a11171f252a32383c43474c5254575f6165666d6f71747678797a7c7d7d7e7e7f7e7e7d7d7c7b79787674716f6d6765625f5854524d48443d38332b261f18120b0300000000000000000000000000000000000000000000000000000000030a1117232b333c414950555d60696e74797d82868b8f929797999c9ea1a9a1a2a3a4a4a5a5a4a4a3a2aaa29f9d9b999796918e8a86827d79736d68605d565049413b322b231b1209010000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb3a99a8e8174665c5144382c1c110600000000000000000007131f2c3845515d6775828e9baab4bfcad6e0d3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000006101925303a444f59606d78839097a2adbac0cccbc0b9ada2979082786c60594f5e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000000000009192633404c5966737f8c99a6b2bfccd9ddd2c0b3a79a8d8074675a4d4134271a0e01000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f423d44484c5254555d60636668666d6d6e6f6f706f6e6d676b696663605c5554524c46423b3631292118130c040000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfd2c6b9ada197897c6f6253493f33271d1207000000000000000000000000000000040d16202d394653606c7884919eabb7c4d2ddd7ccc0b5ab9a8d817467544a3f33281c0f0300020e19242e3840474b4d4e4e4e4e4e4e505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584e4e4e4e4e4e4e4e4e4c4a463f372d23180d0100000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000030608060b1012131415161616161616161514120e0903000000000000000713202d3946525e686d6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6e695e52463a2d201407000000000000000000000000000000050b141b222730363d43484e54565e6165696e7275797c7e8083848687898a8a8b8b8b8b8b8a8a8987868583817e7c7976726e6a66615e56544f48443d373128231d150c050000000000000000000000000000000000000000000000000000030c151c2328353d454d535b60676d737b80858a8e92989c9ea1a9a6a8abadb3aeafb0b0b1b2b1b1b0b0afb4aeacaaa8a6a8a09e9a99928f8a85807a736d68605b534d443d352d241b1309010000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baada297897d7063544a4034281c100400000000000000000004101d2935404b5564717d8a98a2aebac6d3e0d7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d44505c666e7b85929fa5afb9c3cecabeb3a99f948c7f736b60565e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8dbcec1b4a89b8e8175685b4e4235281b0f02000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4232383b4146474b51535759545c6061616263636261605d555c595653514b4745413a36312a251f170f0701000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e1d5c9beb3a99a8d8073655b5044392f23180f0500000000000000000000000000010c161f2a36414d5663707d8a96a1adb9c5d2e0d4c7bbafa4998a7d7164574a3e2d22170b00000008121c262e363b3f40424242424243505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c42424242424242423f3e3a342d251b11060000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000306070708090a0a0a0a0a0a080705020000000000000000000714212e3a4754616d7a7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7b6e6154483b2e2115080000000000000000000000000000070e161d262d333b42464f54586062686d72777b7e8285888b8d8f9192999596979798989897979696999391908d8b8886827f7b77726e69636059554f47423c342e271e170f08000000000000000000000000000000000000000000000000000a151e262e343f474f575f656c71797f868d92979b9fa3aaabadb3b3b5b8b9bebbbbbcbdbebebebebdbdbcbfbab8b7b5b2b2acaaaba39f9b97928c86807a716c655e564f473f362d251b1309000000000000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded2c5b8ab9f9285796d6053463a2e23180c00000000000000000000000c18242f3a4753606d7986929facb8c5d0dbdcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000000000000000000000000000000020c162028343f4a545e69717e8a939da7b1bcc6cfc5bbb0a69f92877d6f685d5e6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cddadbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f42362c3036393b4045474a4d4a50535455555656555453514b504c494645403a39352f2a251f1a140d050000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e6dacfc4b7aa9e9184786c60554b40342921170d060000000000000000000000020a131d28313a46525e6875828f9ba8b2bdc9d5dfd2c6b9ac9f93867a6d6154473a2e211406000000000a141c242a2f3233353535353643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3535353535353532312e29231b1309000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989897f7366594c403326190d0000000000000000000000000008101920282f383f444d525960636a6f757a7f83888b8f9298979a9c9e9fa3aba3a4a4a4a5a5a4a4a3aba49f9e9c9a9898928f8b88847f7b75706b636159534d4540393029211a1109000000000000000000000000000000000000000000000006111c2630383f44515960696e777e848c92989ea1a9acaeb4b8b9bebfc2c4c6c9cfc8c9cacbcbcbcacacad0cac6c5c4c1bfbdb9b7b4aeaca9a29e98928d857e776e69605950483f372d251b11070000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb3a99b8e8174665c5144382c1c1207000000000000000000000007131f2c3945515d6775828e9baab4bfcad6e0d3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000040e17232e38424d57616c74818e95a0aab4bfcbcdc2bbafa39991847a6d605a6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000004101c2834404a546875828f9ba8b5c2cedbdcd0c3b6a99d9083766a5d5043372a1d1004000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f423629252a2d2f35393a3d403f44464748484949494847454043403c3a38342e2c29241e1a140e0903000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfded2c5b9aca0968a7e71675c51453d33291f180f09030000000000000000060b141b242f3a434f59616e7b86929facb9c4cfdad8ccc0b6ac9d908376685d5246392d20130700000000020a12191f232627282828293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f322828282828282524221e18110901000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000030608090b0b0b0b0b0a0a09080706040100000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696968c7f7366594c403326190d00000000000000000000000008111a222b323a414950565e616b6f767c82868b9095989b9fa2aaa7a9abacafb5b0b0b1b1b2b1b1b0b0b5afacaba9a7aaa29f9c9895918c86827c76706b615f57514b423b332c231b120a010000000000000000000000000000000000000000081217232e38424a505b626b707b838b91969fa2aaadb3b9babfc5c6c9cfcfd1d2d4d2d1d0d0cfcfcfd0d1d2d3d6d3d2d0cecec9c5c4bfbab9b3adaaa29f97928b827b706b625a51493f372d23190f060000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baada2978a7d7063544a4034281c0b00000000000000000000000004101d2935404b5564717e8a98a2aebac7d3e0d7cbc0b5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d79839198a3aebac1cccbc0b5aba1968e81756c626a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000000000006121f2c3844515c667683909da9b6c3d0dcddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f423629191e2024292c2d302e34383a3a3b3c3c3d3c3b3a38352f33302d2c2823201d19130e09030000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe1d5c9bdb2a89e9184796d60584e453b312a211a140e090604000406070c11171d262d35404b55616b74818e99a3afbbc7d6e0d4c8bbafa49a8c7f7366564c4135291d1105000000000000080e1317191a1b1b1d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f32251b1b1b1b1b191816120d060000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000000000040a0f1215151717171717171616151413110d08060603000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2998c7f7366594c403326190d000000000000000000000008121a232c343d444c535b60696e757c82888e92999d9fa7a8abaeb3b3b6b7b9bbc0bdbdbebebebebebdbdc0bbb9b8b6b4b4aeaca9a8a09d99928f89837d766e69605c544d453e352d241b130a0100000000000000000000000000000000000006101a2428343f4a545c606d727d8590959ea1a8aeb4b9bec5c7cbd1d2d5d2d1d1cbc7c5c4c4c3c2c2c3c4c5c5c7cbd1d0d1d4d9d5d2d1cbc7c5beb9b4aea9a19e948f857d716d625b51493f352b21180d030000000000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded2c5b8ab9f9285796d6053463a2e23180c000000000000000000000000000c18242f3a4753606d7a86929facb8c5d1dcdcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000000000000000000000000a141e29333e45515d676f7c86929fa6b0bac4d0c7bdb2a89e938b7e716a6a7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000000070f18202d3a4653606d7985929fabb8c5d2dedccfc3b6a99c908376695d5043362a1d1003000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c1114181d20202423282b2d2e2e2f30302f2e2d2c29242623201f1c1813110d080100000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe5d9cec4b9aca1968c7f726a60574d433c332a251f1a1413100c101313181b22272f383f45515d67707d89939eabb5c0cbd7dfd2c6b9ac9f93877b6e6154483b3024190d010000000000000002070a0c0d0f101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190f0f0f0f0c0b090601000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000000060e151b1f212224242424242423222221201d191613120f0b0600000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4afafafafaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeafafafafafa6998c7f7366594c403326190d0000000000000000000008111a242c353d464e565e656c727b81898f949b9fa3ababb1b5b8babec0c2c4c5c7cbd1cacacbcbcbcacad2ccc7c6c4c3c0bfbab8b5b1acaba39f9c949089827b736d665e574f473f362d251b13090000000000000000000000000000000000040d18222c363e44505c666d747f8792979fa7adb2babfc6cacfd3d7d3cfc9c6c5c1c0bbb9b8b7b6b5b5b6b7b8b9bbc0c1c4c5c8ced2d6dad7d3cfcac6bfbab3ada69f9792877f726d625b51473d33291f14090000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb3a99b8e8174665c5145382c1c1207000000000000000000000000000713202c3945515d6775828f9baab4bfcbd7e0d3c7bbafa3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000000000000000020c17212935404b555f6a727f8b939ea8b2bdc7cfc4baafa59f92867c6e677784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e211407000000000000000000000000000000000003091019222a36414c5664707d8a97a2adbac6d3dfdbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f070d11131417171c1f2021222223232221201f1d1819161313100c070401000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfebe0d5c9bdb2a89f92867c6f695e564d453e36312a25201f1d181c1f2023282d333a4149505c606d7984919ea5afbdc7d1dcd5c9bdb2a89c8f8376695e53463a2d1e13080000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190c0202020000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000006101820262b2e2f313131313131302f2e2d2c292423201f1c17110f0a0400000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1b4aeaba2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a5abb3b2a6998c7f7366594c403326190d00000000000000000006101a232c363e474f5860686d777f868e939c9fa6acaeb5b8bcc2c5c6cad0cfd1d2d0cdcbcac9c8c7c8c9cacacccfd1d1cfd0cac7c5c2bdb8b5afaca69f9c948f8680796e69615950483f372d251b1108000000000000000000000000000000010c161f2a343e48515b606d78808b9299a2a9b1b9bdc4cad0d6d7d1cbc7c5beb9b8b5b5afacabaaa9a8a8a9aaabacafb5b4b7b8bdc3c6cacfd4d9dbd6d0cac5beb9b0a9a199938b7f726d62594f453b31261a0d040000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baada2978a7d7063544b4034281c10040000000000000000000000000004101d2935404b5564717e8a98a3aebac7d3e0d7cbc0b5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000000000000000000050f18242f39434e58626d75828f96a1abb5c0ccccc1baaea2989083796d7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140700000000000000000000000000000205090e141a232b343c46525e6875828f9ca9b3becad6e2dacdc1b4a79a8e8174675b4e4134281b0e01000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0001040607060b101213141515161616151413100c070907060400000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe9e1dacec4baaea39891857b6e685f574f46423b36302d2c2924282c2d2e34383f444c535b606e74818e96a1acb7c1cfd9dcd2c5b9ada1968b7e7164574d42362a1e0c020000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000000040e18222a31373a3c3e3e3e3e3e3d3d3c3b3a39352f302d2b28221c1b150f0a030000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b4aaa29f9595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959699a1abb2a6998c7f7366594c403326190d0000000000000000040e18222c353e485059606a6f7a828b92989ea5aab0b9bbbfc6c8cdd2d3d2d1cbc7c5c3c0bebdbcbbbbbbbcbdbebfc2c5c6c9cfd2d3d2cec8c7c0bbb9b0aba69f98928c837b706b625a51493f372d231a1006000000000000000000000000000007131d28313c46505a636d75818d929fa3abb3bbc2c9cfd6d8d1cbc6bfbbb9b3adaba8aba39f9e9d9d9c9c9c9d9e9fa3aba7aaacb2b8b9bec5c8ced6dbdbd6cfc9c2bbb3aba49f918b7f726b60574d42362a1f160c010000000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded2c5b8ab9f9285796d6053463a2e23180c0000000000000000000000000000010d18242f3a4754606d7a86929facb9c5d1dcdcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c46515b616d7a849199a4afbbc2cdcabfb4aaa0958d80747784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21140a0a0a0a0a0a0a0a0a0a0a0a0a0b090e12141a1f262a353d46505a616e7a86929facb9c5d0dbe3d7cbbfb4aa988b7f7265584c3f3225190c00000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000030607070809090a090807060400000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e9dfd7cfcac6bfb4aaa19790837a6e696159534d46423c3a39352f34383a3b40454950565d656c74808d929da8b2bdc9d2e1d5c9beb3a99e9184796d6053463b31251a0e000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000000a15202a343c4347484a4a4a4a4a4a494948474541403d3938332d2b27201a150d0801000000000000000000000000000000000000000b1824313e4b5764717e8a97a4aea29892888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888898f99a5b2a6998c7f7366594c403326190d00000000000000020c16202a343d47505a616b707c848f949fa2aaafb7bbc2c7cbd1d4d4cfc9c5c4c0bbb9b6b4b2b1b0afaeaeafb0b1b2b5b8b9bec2c5c7cbd1d4d1cbc7c2bcb7b0aaa39f9590857d716c625b51493f352c22180c03000000000000000000000000010d18242f3a434e58616c737f8c939da4afb5bdc5cdd5dad6cfc6bfbab5aeaca9a19e9b9899929191908f8f9091929299989b9da0a8abadb3b8bcc3cad0d8e0dad5cdc5bdb5afa39f92877d70695f53463f31281e13080000000000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb3aa9b8e8174665c5145382c1d12070000000000000000000000000000000713202c3945515d6775828f9babb4bfcbd7e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a343f46525e68707d87939fa6b0bbc5d0c6bcb1a79d928a7d7784919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e21161616161616161616161616161718191a1e20252a31363e474f58626c75818e99a3afbbc7d7e1e0d3c7baaea398897d706356493d3023160a00000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e1d7cdc5beb9b8b9b3a9a09590847b706b615e57524d4947454043404546484b51535b60686d77808d929da5afbac4cedbd8cfc6b9ada1978b7f72665c514538291f1409000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000000030f1b26313c464e535557575757575756555554514c4c4946443f3837322b262019130c040000000000000000000000000000000000000b1824313e4b5764717e8a97a4ab9f92857c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7d8996a2afa6998c7f7366594c403326190d0000000000000008131e28323c464f59616c717d8691969ea6aeb4bcc1c7ccd3d7d1cbc7c4bdb9b8b5afacaaa7a5a4a3a2a1a2a2a3a4a6a8abadb3b5b9bbc0c7c8ced6d4cdc7c2bcb4aea79f9792877e726d625b51473e342a1e150b00000000000000000000000004111d2935414b555f6a707e88939fa5aebbc0c7cfd7d8d0cac1bdb4aeaba39f9b97928e8c8986858483828283848586888b8e91969a9ea1a9acb1babfc6ced4dcdfd6d0c7c0bbafa39992857b6e615a50433a2f24190d010000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baaea2988a7d7063544b4034281c0b0000000000000000000000000000000004111d2935414b5564717e8a99a3aebac7d3e0d7cbc0b5ab9c8f8276685d5246392d2013080000000000000000000000000000000000000000000000000000000000000000000000000000000000030d18222935414c56606b73808c949fa9b3becacec3b9aea49e92857b84919daab7c4d0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a2e2323232323232323232323232323242425252a2d31363b42465059606a717e8b939eabb5c0cbd7e9dfd2c5b9ac9f92867a6d6053473a2d20140700000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc5bbb3adabadb3b1a7a09691857d756e69615e575553514b504b515354555c60656c717a818d929da4aeb7c0ccd6dcd1c6bcb0a69e9285796d60544b403428170d03000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000006121f2b37434e585f62646464646464636261605d55595653504a47433c373129241e160d0500000000000000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f7a8793a0ada6998c7f7366594c403326190d000000000000040d1925303a444e58616b717e879298a1a8b0babfc5ced3d8d5cfc7c0bbb9b2adababa39f9d9a989796959495969797999c9ea1a9a8acafb5b8bdc3cacfd7d3cfc6bfbab1a9a299938b7f726d62594f463c30271d120700000000000000000000040f19222c3945515d676f7c86929aa4afb7c0cbd1d9d6cec6bfbab0aba39f99928f8a85827f7c7a7877767575767778797b7e8184888d92979da0a7aeb4bcc2cad2dbe2d9d2cbc0b5aba2978f82766c62564c4135291d1307000000000000000000000000000713202d3946525d6876828f9cabb5c0cbd7e3ded2c5b8ab9f9285796d6053463a2e23180c00000000000000000000000000000000010d18242f3a4754606d7a86929facb9c5d1dcdcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000006101925303a444f59606d78839097a2adbac0cbcbc0b9ada1978f8384919eaab7c4d1dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473a30303030303030303030303030303030313230363a3b42464d535a616b6f7c86929fa5afbdc7d1dce2d6cabfb4aa9c8f8276675d5145392c1f130600000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d6cabeb3a9a29ea2a9b3b1a8a0979288817b736e696662605d555d545c606164676d70787e858e939da4aeb6c0c9d2ddd7cbbfb4aa9f948b7e71675d5142392e23180500000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000815212e3a47535f6a6f717171717170706f6e6d67686663605b54544e47433c352f281f170e06000000000000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c6262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626d7a8793a0ada6998c7f7366594c403326190d0000000000010c161f2935414c565f6a707d879299a2aab2bac1cad0d7d6cfc9c2bdb5afaca9a19e999992908d8b8a89888888898a8b8c8f9297979b9fa3abacb2b9bec5cdd6d8d1cbc2bbb3aba49f918b7f726b61584e42392e23180c040000000000000000000a16212a36424d57606d79849198a2acb6c0c9d7dcd5ccc4bcb4aea69e99928d86827d7975726f6d676a6a6969696a666c6f7174777b80858a90959fa2aab0b8c1c9d2dae3dcd1c7bdb3a99f948b7e71685d52453a2f24180d010000000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb4aa9b8e8175675c5145382c1d120700000000000000000000000000000000000713202c3945525d6875828f9cabb5bfcbd7e0d3c7bbafa3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d44505c666e7b85929fa5afb9c3cecabeb3a99f948f9196a0acb8c5d2dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d6154473d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3e3f404246484d53575f616c717d859298a2aeb7c1cfd9e3ded3c6baaea2988b7e7265554b4035291d100400000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d2c6b9ada2979297a2a9b3b2a9a29a938e86807b77736f6d676a696a666d6e7175797d838b92979ea5aeb6c0c8d2dbd4cbc2baaea3989082776c60554b4030271d120700000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b000000000915222f3c4855626f7c7d7d7d7d7d7d7c7c7b7a787573706c66626058534e45413a312920180f060000000000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f55555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555606d7a8793a0ada6998c7f7366594c403326190d000000000007131d28313a46525e686f7c869299a3abb4bcc4ccd6dbd3cdc4beb9b0aba39f9c96918d898683817f7e7d7c7b7b7c7d7e7f8285878a8f92999ea0a8adb3bbc1cad0d7d7cdc5bdb5afa39f92877d706a5f544b40342820150a0000000000000000030f1b27323a46535e6973808d96a1aab4bec7d2dbd5cbc3bab2aaa29f948f86807a75706d666563605d555d5c5c5d545b60626568696e73797e838c92989fa6afb7c0c8d2dae3d9cfc5bbb0a69f92857a6d60554b4035291d1104000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baaea2988a7d7064554b4034281c1004000000000000000000000000000000000004111d2935414c5664717e8b99a3aebbc7d3e0d7cbc0b5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c162028343f4a545e69717e8a939da7b1bcc6cfc5bbb0a69f9c9ea0a8b2bdc8d4dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d615449494949494949494949494949494949494a4b4c4d4d5254575e61696e757e869297a1aab4bfc9d3e1e1d6cabfb4aa9f92857a6d6054473a2f24180c0000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d1c5b8ab9e92859297a2adbab3aca49f98928d87837f7c7a7877767778797b7e82858a90959ea1a9afb7c0c8d2dad4cbc2b8afa59f92867c6e655b5043392f1e150b0000000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfd4cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b00000004111d2935404b556875818a8a8a8a8a8a8988888784827f7d78736f6a625f58524c433b332a21180f0500000000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f52484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484854606d7a8793a0ada6998c7f7366594c403326190d00000000010d18242f3a43505a616d7a849198a2abb5bdc6ced6dbd3cac1bbb3ada69f99928f8a84807c7a77747271706f6e6f6f70717375787b7e82868c91969ea2a9afbabfc6ced7d7d0c7c0bbafa39992867c6f665c51453c31261b0f040000000000000007131f2c38434e58616e7b86929fa8b2bcc6d0d9d6ccc3b9b1a8a198928a827b736d6863605c545653514b504f4f504a50535558575f62676d71797f868f949ea5aeb6c0c8d2dde1d7cdc2baada2978c7f73675d5145392c20140900000000000000000000000713202d3946525e6876828f9cabb5c0cbd7e3ded2c5b8ab9f9285796d6053463a2e23180c000000000000000000000000000000000000010d19242f3a4754606d7a86929facb9c5d1dcdcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e17232e38424d57616c74818e95a0aab4bfcbcdc2b8b0aba9aaacb2bac3ced9dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d615656565656565656565656565656565656565757585a575e6165696e737b818a9298a1a9b3bcc6d0dbe2d8cfc6baaea2988d8174675d5145392c1d12070000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3cdc0b3a69a8d8085929fa8b2bcb6afaaa39f9a95908c8886858483848586878a8e92989d9fa7adb3bbc1c9d2dcd6cbc2b9b0a69d938b7e716a5f53493f31271d0c030000000000000000000000000000000003101d293643505c6976838f9ca9b6c2c7c7c7beb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d7cabdb0a4978a7d7164574a3e3124170b0000000613202c3945515d67778491979797979796959496918f8c8984807c766e6a605d564d453c332a21170d03000000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f52453c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c4754606d7a8793a0ada6998c7f7366594c403326190d0000000004111d2935414b55616c75818e96a1aab4bdc6cfd8dbd2c9c1b8b0a9a19e948f87827d7973706d67676564636261626364646669696e71757a7f848b92979da5aeb4bcc5ced6d9d2cbc0b5aba2989083796d60584e43372b21160a000000000000000915222e3b4854606a75818e98a3aebac4ced7d7cec4bab1a7a09691867e756e69615e5653504a49474540434242433f4446484b4d53555c60666d727b828e939da4aeb6c0cbd5e1dfd6cabeb3a99e92857a6d6053473b31251a0e02000000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabeb4aa9b8e8175675c5145382c1d1207000000000000000000000000000000000000000813202c3945525d6875828f9cabb5c0cbd7e0d3c7bbafa3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d79839198a3aebac1cccac2bbb7b6b7b8bdc3ccd5e0dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a6d636363636363636363636363636363636363636364656669696e72767b80868e939fa3aab3bbc5ced7e2d9d0c6bdb2a89f92867b6e61554b4135291d0b010000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ccbfb2a6998c7f7f8c96a0aab4bdbbb4aeaca79f9d99959792919091929794979b9fa2aaabb1b9bec5cdd3d8d0cbc0b9b1a79f948e81746d62584e41382d1f150b000000000000000000000000000000000003101d293643505c6976838f9ca9b6bbbbbbbbbbb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9cececbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfcccececabdb0a4978a7d7164574a3e3124170b0000000714202d3a4753606d7a86939fa4a4a4a3a3a2a8a19e9b9997918d88827c746d685e574e453c33291f1409000000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000613202c3945515d67717e8a939ea8b2bcc5cfd8dbd2c8c0b7afa69e97918a827b75706d6663605d5558575655555556575859575e6164686e72787e858e939fa2aab3bcc5cdd6dcd1c7bdb4aaa0958d80736a5f53473d32271b0f03000000000005121e2a36424d57626f7c89939eaab4bfccd6dbd0c6bcb2a8a09590847c716c615f57524c46443f3c3a39352f36362d3338393c3e42474b51545c60696e78818d929da4aeb9c3cfd8e3dbcfc5b9ada1978b7e7265574d42362a1e120500000000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baaea2988a7d7064554b4034281c0b000000000000000000000000000000000000000004111d2935414c5665717e8b99a3afbbc7d3e0d7cbc0b5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e29333e45515d676f7c86929fa5afbac4d0cdc7c4c2c4c5c8ced5dee7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e0d3c7baada094877a70707070707070707070707070707070707070707071727376787b7e83878d92999ea5aeb4bcc5cdd7e0d9d0c7beb4aba0968c8073695e52433a2f24180d000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ccbfb2a6998c7f7a849198a2abb4bcbfbab9b1abaaa6a9a29f9d9c9d9ea2a9a4a8acaeb4b8bcc2c9cfd6d4cec6bfbaafa79f959082796d605a50463c2f261b0d03000000000000000000000000000000000003101d293643505c6976838f9ca9aeaeaeaeaeaeaea5988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc1c1c1c1beb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3bfc1c1c1c1bdb0a4978a7d7164574a3e3124170b000000091623303c4956636f7c899aa4afb0b0b0afafb2acaba8a9a19e9a948f87807a6e695f574e453b30251a0e050000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000005111d2a36414c56606d7a85929ea5afbac4ced7ded2c9c0b6aea59e948f857e766e6963605c5453514b4c4b4a494848494a4b4c4d5354565e61656c717a818a9298a2a9b3bbc5cfd9d9cfc6bcb1a79f93877c6f62594f44382c1f140900000000000714212d3a46535e6976828f9ca5afbcc6d0ded6cabfb4aaa19690837a6f6a615a534d46413a38342e2d2c2924292922282b2d2f31373940454a51575f666d77808d929da7b1bdc6d1dce1d6cabeb3a99c908376695e53463a2d2114070000000000000000000713202d3946525e6876828f9cabb5c0cbd7e3ded2c5b8ab9f9285796d6053473a2e23180c0000000000000000000000000000000000000000010d19242f3a4754616d7a86929facb9c5d1dcdcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c17212935404b555f6a727f8b939ea8b2bdc7d2d3d0cfd1d2d4d9e0e7e7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d6cabdb0a3978a7e7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d7e7f808285878b90939a9fa3abafbabfc6cfd7dfd9d0c7beb6aca3999184796d60574d4231281d1307000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ccbfb2a6998c7f737c869299a3aab3bbc1c3bcb8b6b2b3adabaaa9aaabadb3b1b5b8babfc5c8cdd5d4cec8c2bcb4aea59d959083796d675c51483f342a1d140a00000000000000000000000000000000000003101d293643505c6976838f9ca1a1a1a1a1a1a1a1a1988b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3b0b4b4b4b4b4b4b2a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6b3b4b4b4b4b4b4b0a4978a7d7164574a3e3124170b0000000c1825323f4b5865727e8b98acb6c0bdbdbcbbbdb9b7b5b2adaba69f99928d837b6e6a5f574d42362a20160c0200000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000713202d3946525e6873808c97a1adb7c1ccd6e0d6ccc1b7aea49d938e827a716c625f5753504a4745403f3e3d3c3b3c3c3d3e404246484c52535b60686d747d869297a1a9b3bdc7d1dcd7cec3bbafa4998f82756b6054483b30251a0e02000000000815212e3b4854616e7b87939facb9c1ced8d9cfc7baaea29891847a6e685f585047423c36302c2823201f1d181c1c171c1f2022262b2e343940444d545c656c74808d95a0abb5bfcbd7e2dacfc5b9ac9f93877b6e6154483b2e2115090000000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabfb4aa9b8e8175675c5145382c1d12070000000000000000000000000000000000000000000813202d3946525d6876828f9cabb5c0cbd7e0d3c7bbaea3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f18242f39434e58626d75828f96a1abb5c0ccd7dddcdddee1e5eaf1e7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cbbeb2a59a908a89898989898989898989898989898989898989898a8a8b8d8f9297989c9fa4acaeb4bdc1cbd1d8ddd7d0c7beb6aca49a92877c6f675d51453b301f160c01000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6ceccbfb2a6998c7f73717e879298a2a9afb9bdc4c4c3bfbebab8b7b6b7b8b9bebdc1c5c6cad0d4d1cdc8c3bdb8b0aaa39f938e82796d675d554b40362d22180b0200000000000000000000000000000000000003101d293643505c6976838f94949494949494949494948b7f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d8996a3a8a8a8a8a8a8a8a8a5988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c99a6a8a8a8a8a8a8a8a8a4978a7d7164574a3e3124170b0000030f1c28333f4a546774818e9aa7b4c1c2c3c5c6c9c5c4c2beb9b8b0aba39f9590847c6e695e52463f32281e130800000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090914212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000030f1b27333f4953616d7a86929fa9b3bec9d3dfdacfc4baafa59d928d81786d68615a534d46443f3a39352f31302f2e2f30313131363a3b41464950565e616b707d859297a1abb5c0cbd7e0d7ccc0b5ab9e94897c6f63574d42362a1e120500000006131f2b37434e5866727f8c9aa4afbbc8d0d3d1c7bdb0a69f92867c6f685e564e463e37312a251f1c171413100c07060b0f1213151a1d23282e343b424a535b606d79839099a3aebbc6d1dce0d4c8bbafa49a8b7f7265584c3f30251a0e020000000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baaea2988a7d7064554b4034291c0b0000000000000000000000000000000000000000000005111d2935414c5665717e8b99a3afbbc7d3e0d7cbbfb5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c46515b616d7a849199a4afbbc2cdd7e1eaebedf1f6f4e7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3dacec2b6aba29a979696969696969696969696969696969696969696969798999c9ea1a9a9acafb6babfc6cfd7dcd9d2ccc4beb6aca49a93887e716a5f554b4033291f0d0400000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c1c1c1bfb2a6998c7f736c717e8692979ea5adb2b8bcc3c6c9c6c5c4c3c4c5c6cacfced2d1cfcec8c5c3bcb8b2aca69f98928b81796d675d554b43392f241b0f060000000000000000000000000000000000000003101d293643505c697682888888888888888888888888887f7265584c3f3225190c0000000000000000000000000000000000000a1723303d4a5663707d89969b9b9b9b9b9b9b9b9b9b988b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c999b9b9b9b9b9b9b9b9b9b978a7d7164574a3e3124170b000006121f2b3844505b667683909da9b4b4b5b6b8babfc5c6cac9c6c2bdb5afa7a09691857b6e615a50443a3025190d01000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000005121f2b3744505b65727f8c98a2aebbc5cfdbe2d5c9bdb2a89e938d80786d665d565047423c38342e2c29242423222222232425252a2d3036383f444c5259616b6f7c859299a3afbbc3ced9ddd2c7bdb0a69c8f8275695e52463a2d2014090000000815212e3b47535f6a7784909dacb6babec5c7cbc0b5ab9e938a7e716a5f564c443c342b261f1913100c06060400000000030606090e12181c232830384149515c666f7c87929faab4bfcbd7e3d8ccc0b6ac9b8e827568574d42362a1e1205000000000000000713202d3946525e6876828f9cabb5c0cbd7e3dfd2c5b8ac9f9285796d6053473a2f23180c00000000000000000000000000000000000000000000010d1924303a4754616d7a86929facb9c5d1dcdcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a343f46525e68707d87939fa6b0bbc5d0dbe6f0f9fdfff4e7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3ded3c8bdb4aba5a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a4a5a6a9abadb3b6b9bbc0c7cbd1d8d8d4d0c7c0bbb2aca49a93887e716c62584e43392f21170d0000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb4b4b4b4b4b2a6998c7f73666c717d858f939ea1a8acb1b8b9bec1c4c6c8ccd2c9d2ccc8c6c4c2c0bdb8b7b1aba8a09d948f867f746d675d554c433a31271d12090000000000000000000000000000000000000000000814212e3b4754616e7b7b7b7b7b7b7b7b7b7b7b7b7b7b7a6d6054473a2d2114070000000000000000000000000000000000000a1723303d4a5663707d898e8e8e8e8e8e8e8e8e8e8e8e8b7f7265584c3f3225190c00000000000000000000000000000000000d1a2633404d596673808c8e8e8e8e8e8e8e8e8e8e8e8e8a7d7164574a3e3124170b00000613202d394653606c7985929fa7a7a8a8a9acaeb4b8b9bec5cdcfc7c0bbb1a8a1978f82766d62564c41362a1d1105000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000613202d394653606c7884919eaab4bfcdd6e1d9d0c7b9ada1968e81746c665c544c443e37312b2823201d1818171615151617181a1e21252a2d333a41464f59606a6f7c87929fa7b1bcc8d4ded9d0c1b9ac9f93877b6e6154483b30251a0e0200000916222f3c4955626f7c8895a0a7abaeb3b7bbc2bbafa3998f82756c61584e443b322a221a150d080300000000000000000000000000070c12181e262f38404b545f6a73808c98a3aebac7d3e0ddd2c4b8ab9e918578695e52463a2d201407000000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabfb4aa9b8e8175675c5145382c1d120700000000000000000000000000000000000000000000000813202d3946525e6876828f9cabb5c0cbd7e0d3c7bbaea3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d18222935414c56606b73808c949fa9b3becad6dde7f2fcfff4e7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e4d9cfc6bdb6b2b0afafafafafafafafafafafafafafafafafafafafb0b1b2b3b5b8b9bec3c6c8ccd2d7d6d3cdc8c3bdb5afa8a09a93887e716c625a50463c31271d0f050000000000000000000000000713202d3a4653606d798693a0acb9c6d3d6cfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0a8a8a8a8a8a8a8a6998c7f7366616b6f7b828a91969da0a7abadb3b5b7b9bbc0bcbcbcc0bbb9b7b6b4b2acaaa79f9d96918a827b726d605c554c433a31281f150b000000000000000000000000000000000000000000000714202d3a46525e696e6e6e6e6e6e6e6e6e6e6e6e6e6e6d685d5245392c2013060000000000000000000000000000000000000915222f3c4855626f7c81818181818181818181818181817d7063574a3d3024170a00000000000000000000000000000000000b1724313e4a5764717e81818181818181818181818181817c6f6256493c2f23160900000815222f3b4855626e7b88989a9a9a9b9c9d9fa2aaabadb3bbc1c9d1cbc3bab2a99f948b7e71685e5246392d201409000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000a1723303d4a5663707d8996a0acbcc5d0dfddd2c7beafa59e91847a6d605b544a423a322b261f1c1713100d070a090809090a090e1214191b222730363e464f58606a73808d95a0acb8c2cdd8e0d4c7bbafa4998c807366574d42362a1e120500000d1a2734404d5a6773808b90959a9fa2aaabb0b8b5ab9f92877b6e625a50463c322920181009030000000000000000000000000000000000070c141d262e39424e58606d7a86929facb9c5d0dbdfd2c6b9ada197877b6e6154483b2e21150800000000000005111d2935414c5665717e8b99a3afbbc7d3e3dfd3c6baaea2988a7d7064554b4034291c1004000000000000000000000000000000000000000000000005111d2a36414c5665727e8b99a3afbbc7d4e0d7cbbfb5ab9c8f8276685d5246392d2013080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101925303a444f59606d78829097a2adbac0cbd5e0eaf4fef4e7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3e3e1d8cfc8c2bebdbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbdbdbec0c2c5c6c9cfd2d4d5d2d0cac7c2bcb8b1aba49f9691887e716c625a50483f342a1f150b000000000000000000000000000713202d3a4653606d798693a0acb9c6c9c9c9c2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939b9b9b9b9b9b9b9b9b998c7f73665960696e757d848b90959a9ea1a9a8aaacafb6afafafb6afacaba9a7a8a09d9995908a847e766e69625b514b433a31281f160d030000000000000000000000000000000000000000000005111e2a36424d565e6161616161616161616161616161605d564c4135291d11040000000000000000000000000000000000000815212e3b47535f6a6f7575757575757575757575757575706b6155483c2f23160900000000000000000000000000000000000a1723303c4955616c7175757575757575757575757575756f6a6054473b2e22150800000b1724313e4a5764717d8a8e8e8e8e8e8f9092989a9ea1a9afb7bfc8d7ccc4bbb0a69f92867a6d6154473b31251a0e020000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0005121e2a36424d576774818d9aa8b2bdced7e2d8ccc0b6ac9d93897d70685d524a42383028201a15100b06040100000000000000000205080e11171e252a343d464e58606d7983919da6b0bcc7d3e3d7ccc0b5ab9d918477695e52463a2d20140700000714212d3a4754606d7a7f83888d92989c9fa6abada3998d8074695f53483e342a20170e070000000000000000000000000000000000000000020b141d27303c45525d6875818e9ba9b3becad6e1d5c9beb2a996897c706356493d3023160a0000000000000713202d3946525e6876828f9cabb5c0cbd7e3dfd2c5b8ac9f9285796d6053473a2f23180c000000000000000000000000000000000000000000000000010d1925303a4754616d7a86929facb9c5d2dddcd1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d44505c666e7b85929fa5afb9c3ced8e2edf8f0e7dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d6d6d6d6d6d3cecbcac9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9cacbcccfd1d2d2d1cfcec9c5c4bfbab8b1aba8a099938d847d716c625a50483f362d22190d03000000000000000000000000000713202d3a4653606d798693a0acb9bdbdbdbdbdb5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d79868e8e8e8e8e8e8e8e8e8e8e8c7f736659565e616c70797e83898e9297999b9e9fa4aca2a3a2aca49f9e9c9a9796918c88837e78716c615f575145403930281f160d040000000000000000000000000000000000000000000000020e1925303b444d52545555555555555555555555555554524c433a2f24190d0100000000000000000000000000000000000006121f2b37434e585f6268686868686868686868686868686361594f44382c20140700000000000000000000000000000000000814212d3945505a616468686868686868686868686868686260584e43372b1f130600000a1724303d4a5763707d818181818181828385888d92979da5adb6bfc9d3cdc2baaea2988b7e7265574d42362a1e12050000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000714212d3a46535f697784919eaab7c4cedde0d4c8bbafa49a8e81746b60564c41382f261e160d090300000000000000000000000000000000060b1319222b343c45515c676f7c89949fabb7c6d1dcddd2c7b8aca095877b6e6154483b2e21150800000713202c3945525d686d72777c81858b90949a9ea19f92877a6e61574d42362c22180e0500000000000000000000000000000000000000000000020b151e2935414c5663707d8a97a2adbac6d3dfdacfbeb1a4988b7e7165584b3e3225180b0000000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabfb4aa9b8e8175675d5145382c1d1207000000000000000000000000000000000000000000000000000813202d3946525e6876838f9cabb5c0ccd7e0d3c7bbaea3998b7e7165564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c162028343f4a545e69717e8a929da7b1bcc6d0dce7e3e3e3dacdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c8d0cac6c5c4c3c0bdb9b7b4aeaca79f9d9591878079706b625a50483f362d241b100700000000000000000000000000000713202d3a4653606d798693a0acb0b0b0b0b0b0b0a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c78818181818181818181818181817e7064574d525a61666d71787d8185898c8e91939a95969695959a93918f8d8a8784807b77716c66615a534d453f342e271e160d040000000000000000000000000000000000000000000000000009141f29323b424647484848484848484848484848484745413a31281e130800000000000000000000000000000000000000030f1b26323c464e53555b5b5b5b5b5b5b5b5b5b5b5b5b5b57554f473e33281c1004000000000000000000000000000000000005111c28333e485055575b5b5b5b5b5b5b5b5b5b5b5b5b5b56544e463d32271b0f0300000916232f3c4855616b707474747474757576797c80858e939ca4adb7c1d0d6cabfb4aa9c908376695e53463a2d2114070000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000815222e3b4855616e7b8896a0acb9c5d2dedfd2c6b9ac9f93877b6e61594f433a2f261d150c040000000000000000000000000000000000000002081019222834404b55606a7683909cabb5bfcbd7e3d4c8bcb1a7988b7e7165584b3e32251808000004111d2935414c565d60656a6f74797e83888d92979c8f8276685e52453c31241a1006000000000000000000000000000000000000000000000000030c19242f3a4653606d7985929fabb8c5d2ded9ccc0b3a6998d8073665a4d4033271a0d000000000005111d2935414c5665717e8b99a3afbbc7d3e3e0d3c6baaea2988a7d7164554b4035291d0b010000000000000000000000000000000000000000000000000005111d2a36414c5665727e8b99a4afbbc7d4e0d7cbbfb5ab9c8f8276685d5246392d2013080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e17232e38424d57616c74818e95a0aab4bfcbd6d6d6d6d6d6cdc1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbcbbbebab8b7b6b3b2acabaaa29f9a95908b847c746d67605950483f362d241b12090000000000000000000000000000000713202d3a4653606d798693a0a3a3a3a3a3a3a3a3a39c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b666c75757575757575757575757575706c6155494650545c60656c7074797c7f82848687888989898888868483817e7b77736e6a64605b545046423c3328231d150c040000000000000000000000000000000000000000000000000000020d17202930363a3b3b3b3b3b3b3b3b3b3b3b3b3b3b3a39352f281f160c0100000000000000000000000000000000000000000a15202a343c4347484e4e4e4e4e4e4e4e4e4e4e4e4e4e4a48443e352c21160b000000000000000000000000000000000000000c17222c363e45494a4e4e4e4e4e4e4e4e4e4e4e4e4e4e4947433d342b20160a0000000714202c38444f59616367676767676869666d6f737a818c929ca5afbdc7d2d0c5b9ac9f93877b6e6154483b2e2115080000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000b1824313e4b5764717e8a97a8b2bdc9d5e1d7cbbfb4aa9c908376695f53473d31281e140b0300000000000000000000000000000000000000000000071018232e39434e5865727e8b99a3aebbc7d3e0d9cec1b4a79b8e8174685b4e413025190d0100010d19242f3a444c5254585f62676d71767b80858a8f8b7e7165564c41332a201208000000000000000000000000000000000000000000000000000008131f2b3844505c667783909daab6c3d0dddacdc0b4a79a8d8174675a4e4134271b0e00000000000713202d3946525e6876828f9cabb5c0cbd7e3dfd2c5b8ac9f9286796d6053473a2f24180c0000000000000000000000000000000000000000000000000000010d1925303b4754616e7a86939facb9c6d2dddcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d79839198a3aebac1ccc9c9c9c9c9c9c1b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0afaeb3adabaaa9a6a8a19e9b98928e88837e796f6b605d554f473f362d241b1209000000000000000000000000000000000713202d3a4653606d79869396969696969696969696968f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a545b606868686868686868686868686864615a50443e424a51535b6063666c6f7275777a7a7b7c7c7c7b7b79787674716e6966625f5853504a423e37312a2118120b0300000000000000000000000000000000000000000000000000000000050e171f252a2d2e2e2e2e2e2e2e2e2e2e2e2e2e2e2d2c29241e160d04000000000000000000000000000000000000000000040e18222a32373b3c42424242424242424242424242423d3c38332c231a10050000000000000000000000000000000000000005101a242c33393c3e42424242424242424242424242423c3b37322b22190f0400000004101c28333e474f55575b5b5b5b5b5b545c6062676d747f8c939eabb5c0ccd4c8bbafa49a8b7e7265584b3f3225180c0000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000d1a2633404d596673808c99a6b3bfced9e0d3c7baaea3988b7e7165574d42352c1f160c0200000000000000000000000000000000000000000000000007121d27303d4754616d7a86929facb9c5d2dfdcd0c3b6a99d9083766a564c41362a1d1105000008131e28323a4145474e54555d6064696e73797d82867a6d6054473b3021180e00000000000000000000000000000000000000000000000000000003101c28343f4a546875828f9ba8b5c2cedbdacec1b4a79b8e8174685b4e4135281b0e00000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabfb4aa9b8e8275675d5145392c1d12070000000000000000000000000000000000000000000000000000000814202d3946525e687683909cacb6c0ccd8e0d3c7bbaea3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e29333e45515d676f7c86929fa5afbabdbdbdbdbdbdbdbdb4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a97a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a2a1a9a29f9e9c9a9796918e8b86817c76716d676059514b433d352d241b120900000000000000000000000000000000000713202d3a4653606d79868a8a8a8a8a8a8a8a8a8a8a8a8a8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424a50535b5b5b5b5b5b5b5b5b5b5b5b5b575550483e30394044495053545b60636668676d6e6f6f706f6f6e6d67696764615e5655534e46443f382f2b261f180f0700000000000000000000000000000000000000000000000000000000000000050d14191e20212222222222222222222222222221201d19130c04000000000000000000000000000000000000000000000006101820262b2e2f3535353535353535353535353535302f2c28211a110800000000000000000000000000000000000000000008121a22282d303135353535353535353535353535352f2e2b272019100700000000000b16212c353e44484a4e4e4e4e4e4e4a5053555d606d75828f99a4afbbc7d4ccc0b6ac998d8073665a4d4033271a0d0000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000f1c2835424f5b6875828e9ba8b5c1cedbdfd2c5b9ac9f92867a6d6054473b31211a0d0400000000000000000000000000000000000000000000000000000b15202d3946525e6875828f9ca8b5c2cfdbded2c5b8ab9f928578685e5246392d2013070000010c1620282f35393c43474b5153575f62666d70757a6d685d5245392c201306000000000000000000000000000000000000000000000000000000000b17232e414d5a6774808d9aa7b3c0cddadbcec1b5a89b8e8275685b4f4235281c0f0000000005111d2935414c5665717e8b99a3afbbc7d3e3e0d3c6baaea2988a7d7164554b4035291d0b0100000000000000000000000000000000000000000000000000000005111e2a36414c5665727f8b9aa4afbbc8d4e0d7cbbfb5ab9c8f8276685d5246392d201308000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c17212935404b555f6a727f8b939ea8b2b0b0b0b0b0b0b0b0b0a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a9696969696969696969696969696969696969696969696969696969696969696969696969696959594979291908d8a8784817e7a746f6a64605c554f454039312b231b12090000000000000000000000000000000000000613202d394653606c777d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f383f44464e4e4e4e4e4e4e4e4e4e4e4e4e4a49443e362c2e34383f44464a50535659555d6061626363626261605c555a5754524d4847433c38332d261d1a140e0600000000000000000000000000000000000000000000000000000000000000000002090e111414151515151515151515151515151413110d080100000000000000000000000000000000000000000000000000060e151b1f212228282828282828282828282828282423201c16100800000000000000000000000000000000000000000000000810171c212324282828282828282828282828282823221f1b160f0700000000000005101a232c33383c3d4141414141423f44464b515b626e7b87939facb9c6d2d2c1b4a89b8e8175685b4e4235281b0f0200000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00111d2a3744505d6a7783909daab6c3d0dddccfc2b6a99c8f8376685d5245392c20130800000000000000000000000000000000000000000000000000000005111d2a36414c5665727f8b98a5b2becbd8dfd3c6baada297877a6d6154473a2e211407000000040d161e24292c3237394045474d53545c6064686d685d564c4135291d110400000000000000000000000000000000000000000000000000000000061926323f4c5965727f8c98a5b2bfcbd8dbcec2b5a89b8f8275685c4f4235291c0f000000000713202d3946525e6876828f9cabb5c0cbd7e3dfd2c5b8ac9f92867a6d6053473a2f24180c00000000000000000000000000000000000000000000000000000000010d1925303b4754616e7b87939facb9c6d2dddcd1c5b9ac9f92867a6d6154473a3024190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f18242f39434e58626d75828f96a1aba3a3a3a3a3a3a3a3a3a39a8e8174675b4e4134281b0e010000000000000000000000000000000000000a1724313d4a5764707d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a89888786858483807d7b7875726d6862605853514b433d352f281f1911090000000000000000000000000000000000000005121f2b3744505b656c70707070707070707070707070706f6a6054473b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262d333839424242424242424242424242423d3c39332c2423282d3337393f4446494c4b51535455565656555553514b4e4a4746423b3a37312b28221c140b090300000000000000000000000000000000000000000000000000000000000000000000000002050708080808080808080808080808080706040100000000000000000000000000000000000000000000000000000000040a0f1215151b1b1b1b1b1b1b1b1b1b1b1b1b1b171614100b0500000000000000000000000000000000000000000000000000050c111417171b1b1b1b1b1b1b1b1b1b1b1b1b1b1615130f0a04000000000000000008111a21282c2f3034343434342e34383a4147535f6a76828f9ca9b5c2cfcfc2b6a99c8f8376695c504336291d100300000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00111e2b3844515e6b7784919eaab7c4d1dddacdc0b3a79a8d807467564c4135291d1104000000000000000000000000000000000000000000000000000000010d1925303d4a5663707d8996a3b0bcc9d6e2d6cabeb3a994887b6e6155483b2e22150800000000040c13191d20262b2f35393c42474a5153565d605d564c443a3024190d01000000000000000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9dbcec1b4a89b8e8175685b4e4235281b0f000000000714212e3a4754616d7a86929facb9c5d1dce2d6cabfb4aa9b8e8275675d5145392c1d120700000000000000000000000000000000000000000000000000000000000814202d3a46525e697683909cacb6c0ccd8e0d3c7bbaea3998b7e7165564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c46515b616d7a8491999696969696969696969696968e8174675b4e4134281b0e010000000000000000000000000000000000000814212e3b4754616e7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c7b7a7978777673716e696865605d56544e464540393029241d160d070000000000000000000000000000000000000000030f1b27333f49535b6063636363636363636363636363636260584e43372b1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141c22282b2d3535353535353535353535353531302d28221a181b22272b2d3338393c3f40454747484949494848464540413e3b3a36302e2b261f1c17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090f0f0f0f0f0f0f0f0f0f0f0f0f0f0a090704000000000000000000000000000000000000000000000000000000000005080a0b0f0f0f0f0f0f0f0f0f0f0f0f0f0f0908060300000000000000000000000810161c202324282828282823282b2f37434e5866727f8c99a5b2bfccd0c4b7aa9d9184776a5e5144372b1e110400000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00121f2c3845525f6b7885929eabb8c5d1ded8cbbeb2a5988b7f7265584c3f2f24190d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e6dbd0bbafa295887c6f6255493c2f221609000000000001080d11151b1d24292c3137394044464c5254524c443a32281e130800000000000000000000000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7b4c1cddadacdc0b4a79a8d8174675a4e4134271b0e00000005111d2935414c5665717e8b99a3afbbc7d3e3e0d3c7baaea2988a7d7164554b4035291d1004000000000000000000000000000000000000000000000000000000000005111e2a36424d5665727f8b9aa4afbbc8d4e0d7cbbfb5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a343f46525d68707d878a8a8a8a8a8a8a8a8a8a8a8a8a8a8174675b4e4134281b0e010000000000000000000000000000000000000714202d3946525e686e7070707070707070707070707070707070707070707070707070707070707070707070707070706f6e6d6d666b696764615e565854524c47433c38342e271e18120c04000000000000000000000000000000000000000000000b17222d3841495053575757575757575757575757575756544e463d32271b0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f20282828282828282828282828282423201c17100c11171b1f22282b2d302f35383a3b3c3c3d3c3c3b3a38342e312e2d2a25211f1a150f0b0600000000000000000000000000000000000000000000000000000000000003061313131313131313131313131313130f0f0c090400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b101416171b1b1b1b1b171c1f26313d495663707c8996a3afbcc9d0c4b7aa9d9184776a5e5144372b1e110400000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00131f2c3946525f6c7985929facb8c5d2dfd7cabdb1a4978a7e7164574b3e3124180800000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0adbac6d3e0d5c9bcafa296897d6f6356493c302316090000000000000001040a0f12181d1f262b2e34383a41454745413a322820160c020000000000000000000000000000000000000000000000000000000005111e2a36414c566975828f9ca8b5c2cfdbd9ccbfb3a6998c807366594d4033261a0d0000000713202d3946525e6876828f9cabb5c0cbd7e3dfd2c5b8ac9f92867a6d6053473a2f24180d010000000000000000000000000000000000000000000000000000000000020e1925303b4854616e7b87939facb9c6d2dfdcd1c5b9ac9f92867a6d6154473a3024190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d18222935414c56606b707c7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f6255483c2f2215090000000000000000000000000000000000000005111e2a36414c565e61636363636363636363636363636363636363636363636363636363636363636363636363636363626261605c545d5a5754524d4b4745413a37322c28231d150c0701000000000000000000000000000000000000000000000006111b262f383f44464a4a4a4a4a4a4a4a4a4a4a4a4a4a4947433d342b20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131b1b1b1b1b1b1b1b1b1b1b1b1b171614100b0500060b0f12171c1f202324292c2d2e2f30302f2f2e2d2c28232421201e1914120f0903000000000000000000000000000000000000000000000000000000000000060b10122020202020202020202020202020201c1b19151009020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070c0e0d0b08030000000000000000000000000000000000000000000000000000000000000000000000000003080b0d0e0c0706040000000000000000000000000000000000000000000000000407090a0e0e0e0e060b1015222f3c4855626f7b8895a2aebbc8cfc2b6a99c8f8376695c504336291d100300000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00121f2c3945525f6c7885929fabb8c5d2ded6c9bdb0a3968a7d7063574a3d3024170a00000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfd5c8bcafa295897c6f6256493c2f2316090000000000000000000001070c10151a1c23282c3035393a3935302820160e0400000000000000000000000000000000000000000000000000000000000713202d3946525e687783909daab6c3d0ddd7cbbfb4aa978b7e7164584b3e3125180b0000000714212e3a4754616d7a86929facb9c5d1dce3d6cbbfb4aa9b8f8275675d5145392c1d1207000000000000000000000000000000000000000000000000000000000000000914202d3a46525e697683909da9b6c2cdd8e0d3c7bbaea3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101924303a444f59606b6f70707070707070707070707070706f6a5f53473a2e21150800000000000000000000000000000000000000010d1925303b444c525457575757575757575757575757575757575757575757575757575757575757575757575757575756555453504a504d4a4746423f3a3935302b271f1c18120b0300000000000000000000000000000000000000000000000000000a141d262d3337393d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b37322b22190f040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060f0f0f0f0f0f0f0f0f0f0f0f0f0a0a0804000000000003060b0f121316181d1f2021222323232222201f1c18171414110e090602000000000000000000000000000000000000000000000000000000000000020a11171c1f2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c101313191b1a18140f080100000000000000000000000000000000000000000000000000000000000000000001080f14181a1b191413100c0701000000000000000000000000000000000000000000000000000101010100000814212e3b4754616e7a8794a1adbac7cec1b5a89b8e8275685b4f4235281c0f0200000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00121e2b3845515e6b7884919eabb7c4d1ded7cabdb0a4978a7d7164574a3e3124170600000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adb9c6d3e0d4c8bbaea195887c6e6255483b2f2215080000000000000000000000000004090e12181c1f24292c2d2c29241e160e040000000000000000000000000000000000000000000000000000000000030d15212e3a4754616d7a86939facb9c6d2dfd3c7baaea398897c6f6356493c30231609000005111d2935414c5665717e8b99a3afbbc7d3d6d6d3c7baaea3988a7e7164554b4035291d0c010000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727f8c98a7b1bcc8d4d6d7cbbfb5ab9c8f8276685d5246392d20130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d474f5960636363636363636363636363636363625f584e43372b1f1206000000000000000000000000000000000000000008141e29323b4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a49484746443f43403e3b3a36302d2c29241e1b15100c0700000000000000000000000000000000000000000000000000000000020b141b22272b2d30303030303030303030303030302f2e2b27201910070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002020202020202020202020202000000000000000000000000030606070c101314141516161615151313100c07080705020000000000000000000000000000000000000000000000000000000000000000020c141c23282b3939393939393939393939393939393634312c261e150c02000000000000000000000000000000000000000000000000000000000000000000000000000000060b12181c1f2025282724201a130b0200000000000000000000000000000000000000000000000000000000000000020b131a2024272826201f1c18120c060000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7cdc0b3a79a8d8074675a4d4134271a0e0100000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00111e2a3744515d6a7784909daab7c3d0ddd8cbbfb2a5988c7f7265594c3f2d22170b00000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a1aebbc8d4e3d7cbbfb4ab94877b6e6154473b2e21140800000000000000000000000000000000070c1013191d2021201d19130c040000000000000000000000000000000000000000000000000000000000030d151f2a36424d5765717e8b99a4afbbc7d4dfd2c5b9ac9f92867a6d6053473a2d20140700000713202d3946525e6876828f9cabb5c0cbc9c9c9c9c5b8ac9f92867a6d6053473a2f24180d0000000000000000000000000000000000000000000000000000000000000000020e1a25303b4854616e7b87959fabb8c4c9c9c9d1c5b9ac9f92867a6d6154473a3024190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202b353d464f5456575757575757575757575757575755534e463c31261b0f030000000000000000000000000000000000000000020d1720293036393b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b3a3a38342e34312e2d2a2521201d19130f0a0400000000000000000000000000000000000000000000000000000000000000020a11171b1f20242424242424242424242424242423221f1b150f0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070809090a09090807060400000000000000000000000000000000000000000000000000000000000000000000000000000a141e262e343846464646464646464646464646464642413d3730271e140900000000000000000000000000000000000000000000000000000000000000000000000000020a11171d23282c2d323433302b251d140b000000000000000000000000000000000000000000000000000000000000000b141d252b303334322d2c29231d17110b06000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcc8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00101d293643505c6976838f9ca9b6c2cfdcd9cdc0b3a69a8d80736753493f33271b0f03000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6e0d3c7baaea39986796d6053473a2d20140700000000000000000000000000000000000004080d11131413110d08020000000000000000000000000000000000000000000000000000000000040c151f27313946525e6976828f9cabb5c0ccd7dccfc2b5a99c8f8276675d5145392c1f130600000714212e3a4754616d7a86929facb9bdbdbdbdbdbdbfb4aa9b8f8275675d5145392c1d12070000000000000000000000000000000000000000000000000000000000000000000914212d3a46535e697683909da9b6bdbdbdbdbdbdbbaea3998b7e7165564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e19232b343d4348494a4a4a4a4a4a4a4a4a4a4a4a4a4a4847433c342a20150a00000000000000000000000000000000000000000000050e171e252a2d2e3030303030303030303030303030303030303030303030303030303030303030303030303030302f2f2e2d2c2823272421201e191413110d08020000000000000000000000000000000000000000000000000000000000000000000000060b0f121317171717171717171717171717171615130f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2630383f445353535353535353535353535353534f4d49423930261b100400000000000000000000000000000000000000000000000000000000000000000000040b0b141c22282e34383a3f41403c362f261d10060000000000000000000000000000000000000000000000000000000000060f1d262f363c40413f3a38342f28231c17110a0200000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdc9cabdb0a3978a7d7064574a3d3124170a0000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000f1c2935424f5c6875828f9ba8b5c2cedbdbcec1b5a89b8e8275655b5044372b1f120700000000000000000000000000000000000000000000000000000003101c28343f4a5464717e8b97a4b1becad7dfd2c5b9ac9f928679675d5145392c201306000000000000000000000000000000000000000001040707070401000000000000000000000000000000000000000000000000000000000003090e161e273139434f59616e7b86929facb9c5d2ddd5c9bdb2a8988b7f7265554b4035291d10040005111d2935414c5665717e8b99a3afb0b0b0b0b0b0b0b0aea3988a7e7164554b4035291d0c0100000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727f8c98a7b1b0b0b0b0b0b0b0b5ab9c8f8276685d5246392d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071119222b32383b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3a37312a22180e040000000000000000000000000000000000000000000000050d14191e2021242424242424242424242424242424242424242424242424242424242424242424242424242424232221201f1c171a171414110e090704010000000000000000000000000000000000000000000000000000000000000000000000000000000305060a0a0a0a0a0a0a0a0a0a0a0a0a0a09080603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e38424a505f60606060606060606060606060605c5a544b42372c2115090000000000000000000000000000000000000000000000000000000000000000040a0f161b1d262d33394045464c4e4c4841382f22180e03000000000000000000000000000000000000000000000000000000030e18212f3841484c4e4c47454039342e27221b140b0b040000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becac9bdb2a995887c6f6255483c2f2215090000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000d192633404c5966737f8c99a6b2bfcedaded1c4b7ab9e9184786c605346392e23180b0200000000000000000000000000000000000000000000000000000a121f2b3844505c6674818d9aa7b4c0cddaddd0c3b6aa9d9083776a554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105060b0f141a20283039434b55606b75818e99a3aebbc7d3ded2c5b9aca096887b6e6155483b2f24180c00000713202d3946525e6876828f9caba3a3a3a3a3a3a3a3a3a39f92867a6d6054473a2f24180d00000000000000000000000000000000000000000000000000000000000000000000020e1a25313b4854616e7b87959fa3a3a3a3a3a3a3a3a3a39f92867a6d6154473a2e211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101921272c2f3030303030303030303030303030302f2e2b26201810060000000000000000000000000000000000000000000000000002080d1114141717171717171717171717171717171717171717171717171717171717171717171717171717171615141312100c060b080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69655d54493d3125190c00000000000000000000000000000000000000000000000000000000000003090e151b21272c2f383f444b5153585b59534a41342a20150a0000000000000000000000000000000000000000000000000000000915202a33414a53585b5953514b443f38332d261d1b160f0a04000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccc5b9ada196867a6d6053473a2d2014070000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000a1724303d4a5763707d8a96a8b2bdc9d5ded2c5b9aca196897c6f63544b4034281d140b0200000000000000000000000000000000000000000000000006111c26303a4653606d7985929eabb8c5d1dedacdc1b4a79a8e8174675b4e412f24180d01000000000000000000000000000000000000000000000000000000000000000205070808080808080808080808080808090a0b080d1113171c1f252a323a424b555d67707d89939eabb5bfcbd7d5c9beb3a99e918477695f53473a2d1d120700000714212e3a4754616d7a8692969696969696969696969696968f8275675d5145392c1d130700000000000000000000000000000000000000000000000000000000000000000000000914212d3a46535e69778390969696969696969696969696998b7e7165584b3e3225180b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161b1f2223242424242424242424242424242422211f1b150e0600000000000000000000000000000000000000000000000000000000010507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a090807070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030607070707070707070707070707070707060400000000000000000006121f2b3844505c667679797979797979797979797979797570655a4d4134281b0f0200000000000000000000000000000000000000000000000000000000060e151a20262b32383e424a50545c606567645d53463c31261a0f0300000000000000000000000000000000000000000000000000020e1a26313c45535c646765605c55504a443f382f2c27211b150f070000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cec4b8ab9e918578675d5145392c2013060000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000714212e3a4754616d7a8796a1acb9c5d2ded5c9bdb2a89a8d8074665c51453c2f261d140c0300000000000000000000000000000000000000000002091217232e38424e5863707d8997a1adb9c6d2dfd6cabeb3a9988b7e7265584b3f3225180700000000000000000000000000000000000000000000000000000000000002080e1114141515151515151515151515151516171718191d2022282b30363e444c545c676d7984919da5afbdc6d1dcd2c6b9ada1978c7f7265574d42372b1e0b0100000b1825323e4b5865717e8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a7e7164554b4135291d1104000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5766727f8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8276695c4f4336291c1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13151617171717171717171717171717171515120f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c10121314141414141414141414141414141313100c07000000000000000713202d3a4653606d7886868686868686868686868686868275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000060f181f262b32373d444850545b60666d72746f64584e43372b1f14090000000000000000000000000000000000000000000000000006121e2b37424d57646e74726d67605c545049413e38322b27201910070000000000000000000000000000000000000005111e2a36424d566a7783909daab6c3cfc2b6a99c8f837669554b4035291d10040000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000713202d3946525e687884919eabb7c3ced9dacec4b8ab9e9285796d60584e42382f261e150d0802000000000000000000000000000000000000060b14192428343f4a54606a74818e9ba9b3bec9d5dfd3c6baada297897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000050d14191e2021212121212121212121212121222323242525292d2d33383b424650565e666d79828f96a0acb7c1cfd8d5c9bdb2a89e9185796d6053473c31261a0e0000000915222f3c4855626f7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d796d6053473a2f24180d010000000000000000000000000000000000000000000000000000000000000000000000020e1a25313b4754616d7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030709090a0a0a0a0a0a0a0a0a0a0a0a0a0a09080603000000000000000000000000000000000000000000000000000000000000000000000004080a0a13131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130d0c0a070200000000000000000000000004080a0a13131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130c0b09060100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a11171c1f202121212121212121212121212121201f1c18120b0300000000000713202d3a4653606d79869393939393939393939393938f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000030e18212a31373c43474f545a61666c71797f81746a5f53473b31251a0e020000000000000000000000000000000000000000000000000814212e3a47535f6974817f79716d66605b534f48443d37322b22190f040000000000000000000000000000000000000714202d3a46525e697885929fabb8c5cdc1b4a79a8e8174675b4e412f24180d010000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0005111e2a36414c566774818e9aa8b2bdc8d4dfd2c6b9ada1978c7f736a5f544a423830271f19130f0b060400000000000000000000000205090e11171f252a363e44505c666f7c87929facb9c5cfdaded2c5b8ab9f9285796d6053463a2d20130700000000000000000000000000000000000000000000000000000000050e171f252a2d2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f3031323035393a3f44464d525a61686d78828f949fa8b2bdc9d3d4cbc2b9aca1968b7f72675d5145382a1f15090000000815212e3a47535f6a6f707070707070707070707070707070706d675d5145392c1d1307000000000000000000000000000000000000000000000000000000000000000000000000000914202d3946525e686d707070707070707070707070707070706b6054483c2f22160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1014161720202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020201a1917130e07000000000000000000050b101416172020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020191816120d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151c23282c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c28231d150c03000000000713202d3a4653606d7986939f9f9f9f9f9f9f9f9f9f9c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000009151f2a333c42474e545960636c70787e848b887c6f62574d42362a1e1308000000000000000000000000000000000000000000000005111e2a36424d56626e7b878c847e78716c656159544f47433d342b20150a0000000000000000000000000000000000000814212e3b4754616e7a8798a2aebac6cbbfb2a5988c7f7265594c3f32261907000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00010d1925303c4956626f7c8996a0acb8c5d0dbd5c9beb3a99f92867c6e665b544a4239312a251e1b1413100c070a0908070808090a090e12141a1c222830363e48505a606d78839099a3afbbc7d6e1d5c9bdb2a89a8e8174665c5145382c1f1306000000000000000000000000000000000000000000000000000000020d1720293036393b3b3b3b3b3b3b3b3b3b3b3b3b3b3c3d3e3f3f4146474a5053575e616c717a828f949ea6b0bac3ced6cdc2b8aea49e9184796d60554b4035291d100400000006121f2b37434e585f6263636363636363636363636363636363605d554b4035291d0c010000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c565e616363636363636363636363636363636360594f44382c2014070000000000000000000000000000050a0d0f101313131313131313131313131312120f0c08020000000000000000000000000000000000000000000000000000000000000000000000050a0d0f101313131313131313131313131313131313131307060401000000000000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2626231f19120a010000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2525221e181109010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e262e34383a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a38342e271e150b000000000713202d3a4653606d798693a0acacacacacacacaca89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000020e1a26313c454d53585f626b70767d838b91968e8174695e53463a3025190d01000000000000000000000000000000000000000000000b14202d3a46525e6974818e96918b847e78706b636059544e463d32271b0f0300000000000000000000000000000000000a1623303d495663707c8996aab4becaccc0b5ab978a7d7064574a3d3124170a000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000815222e3b4854606a7784919daab4becad6dacfc5baaea3999083786c665c544b433d36302c27201f1c18171616151414151617181a1e21252a2d333b4246505a616c727f8c95a0abb5c0cbd7dcd2c5b9aca196897c6f63544b4034281c100400000000000000000000000000000000000000000000000000000008141f29323b41464748484848484848484848484848494a4a4b4c4c5254545b6063696e757e858f949ea6b0b8c2ccd5cdc4bbb0a69d928a7e71665c5143392f24180c00000000030f1b26313c464e53555757575757575757575757575757575753514b43392f24180c0000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a444c525457575757575757575757575757575756544f473d33271c1004000000000000000000000000030a10161a1c1d202020202020202020202020201f1e1c18130d060000000000000000000000000000000000000000000000000000000000000000030a11161a1c1d202020202020202020202020202020202020201413110d08010000000000000008111a22282d3031393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393933322f2a241c130a000000000008111a22282d3031393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393932312e29231b1309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2630383f444647474747474747474747474747474645403930271d12070000000713202d3a4653606d798693a0acb9b9b9b9b9b9b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000006121e2b37424d575f626a6f767d838a90959e9f92867b6e61564c4135291d120700000000000000000000000000000000000000000007121d2935414c56616e7b86929f9e96918a837d76706b6260584e43372b1f130600000000000000000000000000000000000c1825323f4b5865727e8b98a5b1bed0c7bbafa499887b6e6255483b2f221508000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000007131f2c38434e5866727f8c98a2aebac3ced9d7cbbfb4ab9f958e81786d665d554f46413a38322d2c292324232221212122232424262a2d3036383f444d525a616c717e87929fa7b1bdc7d1dcd4c8bdb2a89e9184786c605346392e23180c000000000000000000000000000000000000000000000000000000020e1925303b444d5254545454545454545454545454555656575859565e6163666c70757b818a92979ea6b0b8c2cad7cbc3bbb2a99f948d80746c61544b4031271d120700000000000a15202a343c4347484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4745403931271d120700000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323a4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a48443d352b21160b000000000000000000000000040d151c2226292a2d2d2d2d2d2d2d2d2d2d2d2d2d2c2b28241e181007000000000000000000000000000000000000000000000000000000000000040d151c2226292a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d201d19130c04000000000005101a232c33393c3d4646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646403f3b352e251c120700000005101a232c33393c3d46464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646463f3e3a342d251b1107000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e38424a5053545454545454545454545454545453514b42392e23180c0000000713202d3a4653606d798693a0acb9c6c6c6c6c2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000814212e3a47535f696e757c828990959da0a7a3998d8074685e5246392f24180d0000000000000000000000000000000000000000000c18232e3945525d6873808d99a3a8a09e95908a837d766f6a6054473b2e22150800000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0cdc6b9ac9f9386796d6053463a2d201307000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000030f1b27323d4754616e7a85929fa8b2bdc8d4dcd1c6bdb1a79d938e81786d676059524c48443d3a38342f31302f2e2d2e2f30303131363a3b42464a50565e616c717e879299a3aeb9c3cfd9d6cdc4b9aca0968c7f72655b5044372b1d120700000000000000000000000000000000000000000000000000000005111e2a36414d565e6161616161616161616161616161626364656668686d7073787d82878e939ea1a9b0b8c1cad1cbc2b9b1a9a1979082786d605a5042392e1f150b010000000000040e18222a31373a3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a39352f271f150b01000000000000000000000000000000000000000000000000000000000000000000000000000000020c1620283035393a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332b231a0f050000000000000000000000030d161f262d3235363939393939393939393939393939373430292219100600000000000000000000000000000000000000000000000000000000000d161f272d32353639393939393939393939393939393939393939392c29241e160d04000000000b17222c353e44494a53535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534d4b4740372e24190e0200000b17222c353e44494a53535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534c4a463f372d23180d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a545c606060606060606060606060606060605c544b4034281c100400000713202d3a4653606d798693a0acb9c6d2d2cfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000815222f3b4855626e7b81878f949d9fa7acb1ab9f92867a6d61554b4035291c12070000000000000000000000000000000000000004101c2834404b55606d7a85929fabb2aca7a09d959089827c6f6256493c2f2316090000000000000000000000000000000004111d2935414b556976828f9ca9b5c2cfc4b7aa9e918477675c5145382c1f1306000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000a16202d3946525e68727f8c96a0acb8c0cad3d8cfc2b9afa59d938e8179706b615e56544f494745403e3d3d3c3b3a3b3b3c3d3e404246484d52545b60696e757e879299a3abb5bfcbd5d8cec4bbb0a69e9184796d6053493f33271b0b000000000000000000000000000000000000000000000000000000000714202d3946525e686e6e6e6e6e6e6e6e6e6e6e6e6e6e6f7071727275777a7d80848a8f92999ea5adb3bbc1cacfc6bfbbb0a7a09791857a6e665c51483e30271d0d030000000000000006101820262b2e2f303030303030303030303030303030302d2c29241d150d030000000000000000000000000000000000000000000000000000000000000000000000000000000000040e161e25292d2e303030303030303030303030303030302f2c27211a11080000000000000000000000000a151f2831383e4243464646464646464646464646464544403b342b22180d0200000000000000000000000000000000000000000000000000000008111f2831383e4243464646464646464646464646464646464646464639352f281f160c01000004101c28333e4750555760606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605957524a40352a1f13070004101c28333e475055576060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060585651493f34291e1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c666d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d665c5145382c1f130600000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000d192633404c5966737f8c939a9fa6abb1b8baaea2988c7f73675d5145392e23180c0000000000000000000000000000000000000006131f2c3845515c67727f8c98a2aebdb9b1aca79f9d948e8174685b4e4135281b0e000000000000000000000000000000000613202c3945515d677884919eabb8c4cfc2b5a99c8f827669554b4034281c1004000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000005111e2a36414c56606d7984919ea4aeb8c1cbd4d4cbc0b7afa59e938e847d756d686360595653514b4b4a494948474748494a4b4d4d5355575e61666c727b818b9299a3abb5bdc6d1d8d0c6bcb2a99f948a7d70665c5141382d22170b000000000000000000000000000000000000000000000000000000000814212e3b4754616e7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c7d7d7e7f8184878a8c91969b9fa3abafb9bec5cdc9c2bdb5aea69f9591857c6f685e544a40362c1e150b000000000000000000060e151b1f212224242424242424242424242424242424201f1d18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13191d20212424242424242424242424242424242322201c160f0800000000000000000000000005101c26313a434a4e505353535353535353535353535352504c463d34291e13080000000000000000000000000000000000000000000000000000020c1a23313a434a4e50535353535353535353535353535353535353535345413a31281e130800000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c66635c52473b2f23170a000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c65625b51463a2e22160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d787a7a7a7a7a7a7a7a7a7a7a7a7a7a796d6053463a2d20130700000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000814212e3b4754616e7a86929facb0b8bcc2bfb4aa9e9285796d60544a4034281b11060000000000000000000000000000000000030f1c28333f4a54606d7985919eaab3bec3bcb8b1ab9f94887c6f6255493c2f221609000000000000000000000000000000000714212d3a4754606d7a8796a1adb9c5cdc0b3a79a8d8074675a4d412e23180c00000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000010d1925303b45515c66707d8a929da6b0b9c3cbd8d2c9c0b7afa59e969189817a746f6b6662605c55585756555454545556575759575f6164696e73787e858e939fa3abb5bdc6cfd7cfc6bfb4aaa1968f82766c61544b402f261b110600000000000000000000000000000000000000000000000000000004111d2a3744505d6a77838787878787878787878787878889898a8b8c8e919696999ea1a8acafb5bdc1c9c7c4bdb9b0aba39f948f837b6f6a5f564d42392e241a0c0300000000000000000000040a0f121515171717171717171717171717171717171413100c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d111314171717171717171717171717171717171614100b05000000000000000000000000000a16222d38434c545a5d606060606060606060606060605f5d574f463b3024180c00000000000000000000000000000000000000000000000000000a141e2c36434c555a5d606060606060606060606060606060606060605f524c433a2f24190d01000a1623303c4955616c707979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979736e63574b3f3226190c000a1623303c4955616c707979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979726d62564a3e3125180b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d87878787878787878787878787877e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000714202d3946525e6874818e9ba6b0bbc7cdc6b9ada1978b7f72665c5144382d22170b000000000000000000000000000000000006121f2b3844505b66717e8b97a1adbcc5cec8bdb2a89c9083766a5f54473b2e221508000000000000000000000000000000000916222f3c4955626f7c8895a8b2bdc9cbbeb2a5988b7f7265584c3f3225190700000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000008141e2834404b54616b73808d949ea7b1b9c1ccd2d2c9c1b7afa8a09e938e86817c77726f6d676765646362616061626363646669696e71757b7f848b92989ea5afb5bdc7cfd7cdc5bdb5aea29891847b6e615a5042392e1d140a0000000000000000000000000000000000000000000000000000000004111d2a3744505d6a77839094949494949494949494949495969798999b9ea0a8a6abacb2b9bbc0c7c5c0bbb9b2aca69f99928d827a6e695f584e443b30271c120800000000000000000000000000030608090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507070a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0907040000000000000000000000000000000d1a26323e4a545e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6961574c4034281c0f0300000000000000000000000000000000000000000000000006111c26303e48555e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5d564c4135291d1104000a1724313d4a5764707d8686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686807366594d4033261a0d000a1724313d4a5764707d86868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686867f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a9393939393939393939393938b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000005111e2a36414c56626f7c88949fabb7c4cecabeb3a99e9184796d6053493f33271b0f03000000000000000000000000000000000613202d394653606c7884919ea9b3beced2c5b9aca1968a7d7064584e43372b1f1306000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcfcabdb0a3978a7d7064574a3d3124170a00000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000020c18232e39424f59606c78828f959fa7afbbc0c7d0d5c9c1bab2aca59e98928e89847f7c7977747170706f6e6d6e6e6f70717375787b7e82868c91969fa2aaafbbc0c7cfd1cbc3bbb3aba39f92867c6f695e52483e30271d0b020000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909da1a1a1a1a1a1a1a1a1a1a1a2a3a4a5a5a8aaacb2b3b7b9bdc4c5bfbab8b5afaca8a19e948f8780786d685e574e463c32291e150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2935424e5a667076797979797979797979797979797873695d5044372b1e12050000000000000000000000000000000000000000000000000b17232e3842505a6670767979797979797979797979797979797979797976685d5245392c201306000a1724313d4a5764707d8a9393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393938c807366594d4033261a0d000a1724313d4a5764707d8a9393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393938b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a0a0a0a0a0a0a0a0a0a0988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000010d1925303b47535f6a7683909ca8b2bdc9cfc5b9aca1968b7e71655b5044372b1f160a0000000000000000000000000000000713202c38444f5964717d8a96a0acbbc4cfcabfb4aa9e9184786d6053463c32261b0f03000000000000000000000000000000000d1a2633404d596673808c99a6b3bfcccabeb3a995887b6f6255483c2f22150900000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000007121d27303e44505b666d798390959ea5afb6bec2c9ceccc4bdb9afaaa29f9b96918c898683817e7d7c7c7b7a7a7b7c7d7e808285888a8f92999ea1a8aeb3bcc1cbd1cfc6bfbbb2a9a299928a7e716a60564d42362c1e150b000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daaaeaeaeaeaeaeaeaeaeaeafb0b0b1b2b4b7b9bdbfc4c5c2bbb7b4aeacaba39f9b96918a827c736d665d564d453c342a20170c030000000000000000000000000000000000000000000000000002060a0c0c131313131313131313131313131313130a0907040000000000000000000000000000000000000000000000000000000000000000000000000000000000000106090c0c13131313131313131313131313131313130909070300000000000000101d2a3643505d6976828686868686868686868686868685786c5f5245392c1f1206000000000000000000000000000000000000000000000003101c28343f4a54616c7682868686868686868686868686868686868686867a6d6054473a2d211407000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f998c807366594d4033261a0d000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3adadadadadadadada5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000008141e2b37434e5864717d8a96a1acb9c6d0c9bdb2a89d9083786c6053463d32271b0f0400000000000000000000000000030d16222f3b4854606b7683909da8b2bdcdd3c6baaea2988c7f72665c5044382a20150a00000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cec6b9ada197877a6d6054473a2d21140700000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000b151e28333f4a545d676e7a838e939fa4acb1b9bdc4c8cdc9c1bcb4aeaca8a09d999992908d8b8a898887878788898a8a8c8f9297979c9fa3abacb2babec5cecdc7c2bdb5aea8a09792877e716c61584e443b30231a0c03000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6bababababababababbbcbcbdbebfc1c4c5c8ceccc2b8b0aaaaa29f9c99928f8a847e766e6a605c544c433b332a22180e0500000000000000000000000000000000000000000000000000070d1216181920202020202020202020202020202020161613100b05000000000000000000000000000000000000000000000000000000000000000000000000000000070d1216181920202020202020202020202020202020201615130f0a040000000000101d2a3643505d6976839093939393939393939393939285786c5f5245392c1f120600000000000000000000000000000000000000000000020c17202b3844505c66707d8a949393939393939393939393939393939393877a6d6054473a2d211407000a1724313d4a5764707d8a97a3acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaca6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaca5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0babababababab1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000020f1b26323c4653606d7884919eaab4bfcacec4b8aca0958a7d7063594f43382c20150a0000000000000000000000000009141f2b37434e5863707d89959fabbac3ceccc0b6ac9f92867a6d60544a3f3428190e040000000000000000000000000000000004101d2935404b55697683909ca9b6c3cfc5b8ab9e928578675d5145392c20130600000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000030c17222d38424b555e686e79818c939a9fa7acb2b8bcc3c6c9c6bfbab8b2acaaaba39f9d9a9897969594939495969697999c9ea1a9a8acafb5b9bdc4cacac7c2bcb7b0aba39f9691857d716c625a50463d32291f110800000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3c7c7c7c7c7c7c7c7c8c9cacbccced1d2d4d3c7bbb0a69f9c98928f8c86827d78716c625f58514a423a312921181007000000000000000000000000000000000000000000000000010a12181e2225262d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2322201c160f07000000000000000000000000000000000000000000000000000000000000000000000000010a11181e2225262d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d23221f1b160f0700000000101d2a3643505d697683909c9f9f9f9f9f9f9f9f9f9f9285786c5f5245392c1f12060000000000000000000000000000000000000000000008131e2935404b55606d7884919da69f9f9f9f9f9f9f9f9f9f9f9f9f9f9f93877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b3a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdc6c6c6c6beb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000a151f2b3844505c66727f8c98a2aebac7d2c8bcb1a79c9083766b6054483c31261b0f030000000000000000000000020e1a26313b47535f6a76828f9ca7b1bcccd4c8bbafa49a8d8074685d5242382e231707000000000000000000000000000000000006131f2c3945515d677885919eabb8c4d0c3b6aa9d9083776a554b4135291d110400000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000006111c262f3a434d565e676d757f8890959ea1a8acb1b8b9bec4cac7c3bdb8b7b5aeacaaa7a4a3a3a2a1a0a1a1a2a3a4a6a8abadb3b5b9bbc0c7c9cec6bfbab8b0aba69f99928d847b706b625a50483e342b20170d0000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0d4d4d4d4d4d4d4d5d6d7d8d8dbdddedcd0c3b7aa9f948f8985827f7b75706c66615a534e44403930281f170f07000000000000000000000000000000000000000000000000000a131c232a2f323339393939393939393939393939393939302f2c272119110700000000000000000000000000000000000000000000000000000000000000000000000a131c232a2e31333939393939393939393939393939393939302f2c2721191007000000101d2a3643505d697683909ca9acacacacacacacab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000000010d1925303945515d67717e8b95a0acacacacacacacacacacacacacacaca093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6bfb3a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6beb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad3d3cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000003101c28343f4a54606d7a86929facb6c0cccec3b7ab9f94897c6f63584e43372b1f1409000000000000000000000005121e2a36424d57626f7c88949faab9c2cdd2c6b9ac9f93877b6e62564c4130261c110600000000000000000000000000000000000714202d3a4753606d7a8697a1adb9c6cec1b5a89b8e8275685b4f422f24180d0100000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000a141d28313b444d555d606d727c838a91969da0a7abadb3bbc4cfcec8c5c4bfbbb9b6b4b1b0afafaeadadaeafb0b1b3b5b8b9bec2c5c7cbd1cec6bcb4aeaca69f9c948f8780796e69605950483f362c22190e050000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3c9c9c9c9c9c9c9cacbccced1d2d5d9dedccfc2b5a99c8f827c7876726e6963605b545047433c342e271e160d050000000000000000000000000000000000000000000000000007121c252e353a3e3f464646464646464646464646464646463d3c38332b23190c03000000000000000000000000000000000000000000000000000000000000000000050f1c252d353a3e3f46464646464646464646464646464646463c3b38322b22190f040000101d2a3643505d697683909ca9b6b9b9b9b9b9b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000005111d2a36414c56606d7984919ea8b1bdb9b9b9b9b9b9b9b9b9b9b9b9ada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2ccbfb3a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000b17232e3845525d6874818d9aa4afbbc8d4c7bcb0a69c8f82756a5f53473b31251a0e02000000000000000000000714212d3a46535f6975818e9ba6b0bbcbd4c8bcb1a79c8f8275695f53443a2f1e140a0000000000000000000000000000000000000915222f3c4855626f7b8895a9b3bec9cdc0b3a69a8d8073675a4d4034271a070000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000020b161f29323b434b515b636a6f767e848b90959a9ea1a9b3bec9d5d4d1d1cbc7c5c3c0bebdbcbbbabababbbcbdbdbfc2c5c6cacfd2d4d7d0c6bcb4aaa29f9a94908a827b736d675f574f473f362d241a1007000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6bcbcbcbcbcbcbcbdbebebfc1c4c5c9ced1d2d0c3b7aa9f948f8783807c76716d66625a534d453f372e251c140b02000000000000000000000000000000000000000000000000020d18232e373f464b4c535353535353535353535353535353534948443d352b1e150b0000000000000000000000000000000000000000000000000000000000000000030d17212d373f464a4c53535353535353535353535353535353534948433d342b21160a0000101d2a3643505d697683909ca9b6c3c6c6c6c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000000000040f19222d3946525e68737f8c97a1adbac3cec6c6c6c6c6c6c6c6c6c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6dfdfdfe2dad4cfcccbc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9bfb3a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6dfdfdfdfdfdfdbd8d7d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000006111c2935414c56626e7b87939facb9c3cecdc2b9ac9f93877c6f62574d42362a1e130800000000000000000005111d2a36414c56616e7b87929facb9c2ccd1c5b8aca095897d7063574d4232281e0c020000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdcfcbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000000040d17202931394045515860626c71797f83888d9197a1adb9c6d2dfdedcd7d3d2d0cdcbcac9c8c7c6c7c8c9c9cacccfd1d2d6dadfe0d6cabfb4aaa298928e88837d766e6a605d554d453d352d241b120800000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daaafafafafafafafafb0b1b2b3b4b7b9bdc0c5c6cac7bbb0a69f9992908d89837e79716c615f57514940372e261c140a00000000000000000000000000000000000000000000000006121e2a353f495157596060606060606060606060606060606056544f473d30271d12070000000000000000000000000000000000000000000000000000000000000009141f29333f49515759606060606060606060606060606060606056544f463d32271b0f0300101d2a3643505d697683909ca9b6c3cfd2d2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000a15202a36424d57616d7a85929fa9b2beccd5d2d2d2d2d2d2d2d2d2c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3ece2d9d0c9c3bfbebcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcb3a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6e3eceae2dad4cfcbcac6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6beb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000d1924303a47535f6a76828f9ca8b2bdc8d4c8bbafa49a8e8175695e53463a3025190d0100000000000000000a13202d3946525e6874808d99a3afbbc7d6cabeb3a99d9184776b6054453c3120160c000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbcabdb1a4978a7e7164574b3e3124180b0000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000000050e171f272f353f464e545a61676d72777c8085919eabb8c4d1deebe7e3e0dfdddad7d6d6d5d4d3d4d4d5d6d7d9dbdedfe2e6ece0d3c6baaea2989286817c76716c625f57514b433c332b231b12090000000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909da2a2a2a2a2a2a2a2a2a3a4a5a6a8aaacb2b3b8b9bec5c2b8b0aba39f9d9995908a847e766e69625b524940382e261c110800000000000000000000000000000000000000000000000a16222f3a46515b63666c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6360594f43392e23180c030000000000000000000000000000000000000000000000000000000000030d1a25313b45515b63666c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6360594f43382c1f130700101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000020b1b27323a46535f6974808d98a2aebbc4cfdee7dfdfdfdfdfdfdfd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3e5dad0c7beb7b3b1afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafa6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6e3ece2d8d0c8c3bfbeb9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000008131e2b37434e5863707d8a96a0acb8c5d0ccc0b6ac9f92867b6e61564c41362a1d13070000000000000006111c2935404b55616d7a86929fabb5c0cbd2c6b9ada2978b7e7165594f44332a1f0d04000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccc9bcafa396897c706356493d3023160a0000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000000000050d151d2429343d424a50585f666d71767c828f9ba8b5c2cedbe5e1dfdedad5d2d1cfcecdcccccccdceced0d2d4d7dddde0e4dfd2c5b8ac9f92857d77716d67615a534e454039312a21191109000000000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a77839096969696969696969696969798999b9ea0a8a7abadb3b9bbc0bdb5afaca9a79f9d96918b827b726d635c524a40382e231a0e05000000000000000000000000000000000000000000000c1825323e4b57636d7279797979797979797979797979797979706b60554b4034281f140900000000000000000000000000000000000000000000000000000000010b151f2a36424d57636d7279797979797979797979797979797979796f6b6054483b2f22150900101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000000000000a141d2b37434e58616e7b86929faab4becdd6e0f0ecececececece0d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3dfd4c9beb5aca7a4a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6e3e5dad0c6beb7b2b1adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadada5988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000020f1a26313c4653606c7884919da9b3becad2c7bbafa3998d8074685e52463a2f24180d000000000000000c17232e3945515d6773808c98a2aebdc7d1cbc0b5ab9e9285796d6053473d3320180e00000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7b4c1cdc8bbafa295887c6f6255493c2f2216090000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000000000010c161f28313a434b545c606a6e787e83898f939eaab6c3cfdcdad5d2d1cfc9c6c5c2c1c0c0bfbfc0c1c2c4c6c7ccd2d0d3d8dfd3c6baaea298928a837e79706c615e564e463d342b22190e05000000000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a778389898989898989898989898a8b8b8c8e9196969a9ea1a9acafb6bec0bbb9b6b1aba8a19e948f867f736e645c524a40352c20170d020000000000000000000000000000000000000000000c1926333f4c5966727f868686868686868686868686868686867d70675c51453c31261a0d0400000000000000000000000000000000000000000000000000000007121d27313946535e69727f86868686868686868686868686868686887d6f6356493c3023160900101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000000006111c262f384754606a75818e99a3aebcc5d0dfe8edecedeff3f9ede0d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3dbcfc3b7aca39b989696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696968c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6e3dfd4c8beb4aca6a4a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000009151f2b3744505b65727f8b97a2adbac7d2cbc0b5ab9f92867a6d61554b4035291c1207000000000003101c28343f4a54606d7985929eaab4bfcfd3c7bbafa3998d8073675d5145382c1f130600000000000000000000000000000000000000030f1c2936424f5c6975828f9ca8b5c2cfc8bbaea195887b6e6255483b2f2215080000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000000000008131e28313a434c555d666d727c838a90959b9ea5afbbc6d2d3cfc9c5c4c0beb9b8b5b4b4b3b2b3b3b4b5b7b9bbc0c3c4c7cdd2d5cabfb4aaa29f95908b857d756d685f584e463d342b20170c0200000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c7c7c7c7c7c7c7c7c7c7c7c7d7e7f808184878a8d92979c9fa4acb1babec5c2bcb8b2ada69f98928b80736e645c52473e32291e14080000000000000000000000000000000000000000000713202d3a4653606d7883909a9393939393939393939393939184796d60574d42372b1f160c0100000000000000000000000000000000000000000000000000000c18242f39434f59616e7b869293939393939393939393939393978e81746b6054483b2f22150900101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000000b17222d38424f59626f7c87939fabb5bfced7e2e3e0dfe0e3e8eef5e0d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3d8ccbfb3a79b918b89898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989807366594d4033261a0d000a1724313d4a5764707d8a97a3b0bdcad6e3dbcfc3b7aca29b979393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393938b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000030f1b27333f4953606d7a85929fabb5c0ccd1c7baaea2988c8073675d5145392e23180c000000000006121f2c3844505c66727f8b97a2adbcc6d0d2c5b9ac9f92867b6e61554b4035291d10040000000000000000000000000000000000000003101d2a3643505d697683909ca9b6c3cfc7baaea194877b6e6154483b2e2115080000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000000060f19242f3a434c565d676d787f8690959d9fa7aaafb8c1cccbc7c4bdb9b8b3b3adaba9a8a7a6a5a6a7a7a8aaacafb5b6b7bbc2c5c9cfc6bcb4aea7a09d97918a817a6f6a60584f473d32291e130800000000000000000000000000000000000000000000000000000000000000000000000815212e3b47535f6a6f6f6f6f6f6f6f6f6f6f6f6f7071727375777a7d80858a8f939a9fa7adb3bbc4c7c4bdb9b0aaa29f928c80736e64594f443b3025190e04000000000000000000000000000000000000000006121f2c3844515c666f7d88939fa99f9f9f9f9f9f9f9f9fa0968c7f73695f53463e31281e13080000000000000000000000000000000000000000000000000004101d2935404b55616b75828f98a29f9f9f9f9f9f9f9f9f9fa69e92857a6d60594f43382c1f130700101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000000030f1c28333f4a54616b76828f9aa4afbdc6d1e0dcd7d3d2d3d7dce3eae0d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3d7cbbeb1a4988b7f7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7b6e6154483b2e211508000a1724313d4a5764707d8a97a3b0bdcad6e3d8cbbfb2a69b908b868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686867f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000001010101000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000b17222d3845515d6773808d99a4afbbc7d4cabfb4aa9f92857a6d60544a4034281b1106000000030f1b27333f4953606d7984919ea9b3beced4c8bcb1a79b8e8175695e5243392f24180c000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0c7baaea194877b6e6154483b2e2115080000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000000030d17212935414c565d686d79828c92989fa7abb1b6bbc1cac6bfbab9b2adaba6a9a19e9c9b9a9999999a9b9b9d9fa4aba9abb0b8b9bdc4cbc6bfbab1aca9a19e938e857c6f6a60594f443a3025190c030000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e585f6263636363636363636363636364656668686d7074797d828790959fa2a9b2bac3cbc9c2bcb4aea49c928d80736b61564c41362a21160b000000000000000000000000000000000000000004101c2834404a54606b74818e97a1adacacacacacacacb2a89f92867b6e615a50433a2f24190b020000000000000000000000000000000000000000000000040d1b242c3945515d67707d8a939eaab4acacacacacacacb4ab9f948b7e71685d52463d32271b0f0300101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000000020c16202b3844505b66707d8a949facb6c0cfd8d9d1cbc7c5c7cbd1d9e1ead3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6e695e53463a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabeb1a4978b7e7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000001040607090a0c0d0d0e0e0d0d0c0a080605030000000a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000006111b2935404b55616e7b87939facb9c3cdd0c6baada2978c7f72665c5144382d22170b00000005121f2b3744505b65717e8b96a1acbbc5cfd1c4b8ab9f95897c6f62574d4231271d1207000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0c7bbaea194887b6e6155483b2e2215090907060401000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000009141f29333b45525d686d7a828f949fa3aab1b8bcc2c6c9c1bdb4aeaca8a19e9a9797928f8e8d8d8c8c8d8e8f919399989c9fa6abadb2babfc6cac3bcb8b3ada59e9792857c6f6b60564c41362a1e150b00000000000000000000000000000000000000000000000000000000000000000000030f1b26323c464e5355565656565656565656565657585859565e6163666d71767c838b9297a0a8b1b9c3cbcec6bfbaaea49d928a7d70685e52463d32271b100400000000000000000000000000000000000000000c18232e39424f59616d7a85929ea6b0bcb9b9b9b9b9baaea3988f82766c61554c4135291d140a00000000000000000000000000000000000000000000010c16202b37434e58606d7984919ea5afbcb9b9b9b9b9b9baaea3998f82766c61564c41342b21160a0000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000000008131e2834404b55606c7883909da6b0bec7d2d8cfc7c0bbb9bbc0c7cfd9e3d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363615e574d42362a1e1205000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d716d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d665c5144382c1f1206000000000000000000000000000000000000000000000000000000000000020507070d1113141517191a1a1b1b1a1919171513120f0b06060a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000d18242f3a46535f6975828f9ba7b1bcc8d4cabeb3a99e9184796d6053493f33271b0f0300000613202d394653606c7883909da8b2bdcdd5c9bdb2a89d9083766a6054453b301f150b01000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0c8bbafa295887c6f6255493c2f221615151413110d070100000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000020e1a26313b45505a606d7a8390949fa6aeb4bcc2c8ccc4bdb9b0aba39f9b96918d8a8785828181807f808081828486898c9094999ea1a8aeb4bcc2cac8c4beb9afa9a19792867d6f685e52463f30271d1207000000000000000000000000000000000000000000000000000000000000000000000a15202a343c43474949494949494949494949494a4b4c4d4c5254545c60646a6f787e859196a0a7b1b9c3ced0cabfb6aea49e92857a6e61594f44382c20150a000000000000000000000000000000000000000007121c27303d46525d68717e8b949faab4bfcbc6c6cbbfb4aa9f948a7e71675d51453c2f261c110600000000000000000000000000000000000000000008131e28323a47535f6a73808d96a1acb8c1cec6c6c6c9bdb2a89f92867b6e625a50443a3022190f040000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000000010d1924303845515c67717e8b95a0acb8c2d0d8cec6bdb5afacafb5bdc7d1dcd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f62565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565654534d453b31251a0e02000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d71646060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605c544a4034281c10040000000000000000000000000000000000000000000000000000000105090e121415181d2020222426262727282726252422201f1b1714120f1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000007131d2a36424d5763707d8995a0acb8c5cfcfc5b9ada1968b7e71655b5044372b1f160b0007131f2c38434e5863707d8a95a0acbac4ced2c5b9ada1968a7e7164584e4333291f0d0300000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0c9bdb0a3968a7d7063574a3d312622222221201d18130c04000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000005121e2a36424d57626c75818e959fa6b0babfc6cfccc3bab2ada69e99928e8984807d7b78767574737273747475777a7c7f83888c91969fa3aab0b8c0c9cfc9c1bbb3a9a29891857a6d615a5043392e23180c00000000000000000000000000000000000000000000000000000000000000000000040e18222a32373b3c3c3c3c3c3c3c3c3c3c3c3c3d3e3f404146474b51535860666c727b849095a0a7b1bcc6d0d6c8c0b9ada1978f82766b6054483c31261b0f0300000000000000000000000000000000000000000b151e2935414c56616c76828f98a3aebac3ced9d0c6bcb0a69e91847a6d60584e42382d22170b0200000000000000000000000000000000000000020b19242f3a44505a626e7c87929fa8b2bdcad3d2d7cec5b9aca0968c8073695f53483e32281e1007000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000004111d2935414c56606d7984919ea7b1bccad4d0c6bcb4aba39fa3abb5c0cbd7d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494846423b33291f140900000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164575353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353514a42392e23180c000000000000000000000000000000000000000000000000000002080d11141a1e212124292c2d2f313233343434343332302e2d2b2722211f1a1724313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000010e1a26313b4854606b7783909da9b3bec9d5c9bdb2a89d9184786c6053463d32271b10040915222e3b4854606a7683909ca7b1bcccd6cabfb4aa9e9184796d6053463d3220170d0000000000000000000000000000000000000000000003101d2a3643505d697683909ca9b6c3cfccbfb2a6998c7f7366574d42362f2f2f2f2d2c29241d160d040000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000714212d3a46535f69717e8b939ea7b0b9c2cbd1cbc2b9b1a8a19e948f86817d7873716e69696867666666676868676d7072767b80848c92989fa6afb7c0c8d5cdc5bbb3aaa1978f82756c62554b4034281c11060000000000000000000000000000000000000000000000000000000000000000000006101820262b2e2f30303030303030303030303031323036393a4045464e545b60696e7a839095a0aab4bfcad6d5c9beb3a99f94897d7063584e43372b1f12060000000000000000000000000000000000000000030c1924303a44505a626e7b86929fa8b2bdc8d4d8cec2b9ada1978d80746a5f544a3f33281e1408000000000000000000000000000000000000000a141d2935414c56616c76828f99a3aebac4cedcdbd0c5bcafa59e9184796d60574d42362d20160c00000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000000040e18222c3945525d68727f8c96a1acb9c3ced6cabfb4aaa2999299a3afbbc7d3d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3b3a36312921170d0300000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a4747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474644403930271c120700000000000000000000000000000000000000000000000003090e14191e20252a2d2e2f35393a3c3d3f4040414140403f3d3b3937332d2e2b262024313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000009141f2c38444f5965717e8b97a1adb9c6d1cfc4b8aca0958a7d7064594f44382c20150a121e2b37424e57626f7c89949fabb9c3ced3c7baaea2988c7f72665c5044382c1f120500000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1d1cfc2b6a99c8f8276695f5346403c3c3c3c3a39352f281f160c0100000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000005121e2a36424d57616e7b86929fa5afb9c2cbd7ccc2b9b1a7a096918a827b75706c6664615e575b5a5a59595a5b555d606365696e73797f868f949da5aeb6c0c9d3cdc5bcb3a99e948b7e71675c5145382e23170b0000000000000000000000000000000000000000000000000000000000000000000000060e151b1f21222323232323232323232323242525252a2d2e34383d424a50575f686e79839098a2aebac3cdd8cfc5bbb0a69c8f82756a5f53473a2e21150a00000000000000000000000000000000000000000008131e28323e47535f6973808c96a0acb8c1cdd7d5c9beb2a99f92877c6f665b50443b3025190c03000000000000000000000000000000000006111c262f3845525d68717e8a949fabb5bfccd6e1d6cabeb3aa9e93897d70675c51453c31241b0e0400000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000000a15202a36424d57606d7a85929fa8b2bdcbd5d3c6baaea2989286929facb9c5d2d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302e2d2a251f170f050000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a38342e271e150b000000000000000000000000000000000000000000000002090e151a1e252a2d31363a3b3e404547484a4c4d4d4e4e4d4c4c4a4846443f3b3a37312c29313d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000003101b27323d4753606d7985929eabb5bfcbd4c8bdb1a89d9083766b6054483c32261b0f14212e3a47535f6a75828f9ba6b0bbcbd5d2c5b8ac9f92867a6d61544a3f34281c100300000000000000000000000000000000000000000000000d192633404c5966737f8c99abb5bfcbd2c6b9ac9f93877b6e615a514b494848484745413a31281d130700000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000714212d3a46535e6974818e98a2aeb7c1cbd4d0c4bab1a79f9591847d756e6963605b5454534d4e4e4d4c4d4d4e4b515456575f61676d737b828e939ca4aeb7c1ccd6cec4bbb0a69e9184796d60544a3f34281c10030000000000000000000000000000000000000000000000000000000000030608090c07060a0f1315161616161616161616161616171819191d2023282c2f383f444d565e676e7c86929fa7b1bcc8d4d6cdc2b7aa9e94887c6f6255483c31261a0f020000000000000000000000000000000000000000020c16202b37424d57606d7984919ea5afbbc5cfdacfc4bbafa3999083786c60564c41362a1e150b00000000000000000000000000000000000b17222d38424e58606d7a85929ea6b0bdc6d1ded9cfc7baaea2988e81756b60554b40332a2012090000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000000020b1b26313a46525e6973808d97a2adbac4cedfd2c5b8ac9f9286808d99a6b3c0ccd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232321211e1a140d05000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e312d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c28231c150c0300000000000000000000000000000000000000000000060c141a20262b3036393b4246484b4b5153555759595a5a5b5a595857555350494847433c39352f3d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000b161f2c3845515c6773808c99a3aebbc7d3cec3b8ab9f95897c7063584e43372b1f141e2a36424d57626e7b87939facb9c2cdd3c7bbb0a69a8e8174685e5242382e23170c0000000000000000000000000000000000000000000000000a1724313d4a5764707d8a99a3aebbc7d3c8bbafa49a8e81746c605c555655555554514b433a2f24180d01000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000003101c28343f4a54616e7b87929faab4bfc9d3d2c7beb2a89f9590837b706c615f5753504a4846424241403f404141414547494d53555c60696e78818d929ca5afbac4cfd6cdc1b9ada1968b7e72665c5044382b1f1206000000000000000000000000000000000000000000000000000003060a0f121515191413100c07080909090909090909090909090a0b080d1113181c1f262d333c444c555f6a727e8b959fabb8c5d0dbd3c7bbb0a69b8e817468584e43372b1f1206000000000000000000000000000000000000000000040e1a26313c45515c67707d89939ea9b3becad6d7cbc0b5ab9f958b7f72685e52463d30271d1207000000000000000000000000000000030f1c28333f4a54606a74808d97a1adb8c2cfd8dcd1c7bdb1a79f92857b6e61594f43392f21180e000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000000000000000000000000000a141d2b37434e58616e7b86929fa9b3beccd6d5c9beb3a99b8f81808d9aa7b3c0cdd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161514120e090300000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124202020202020202020202020202020202020202020202020202020202020202020202020202020202020201f1c18120b03000000000000000000000000000000000000000000030a11171f252a31373b4146474d535458555d60626465666767676766656361605b5355534e4745413a3d4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000004101c2934404b55616e7b86929facb9c2cdd4c8bcb1a79c8f82766a5f53473b31261a202d3a46525e6974818e9aa4afbbc8d4d0c3b7ab9f94887c6f62564c4130261c11060000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb9c3d0ccc0b6ac9e938b7e736d676463626262605d554b4135291d1104000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000006121f2c3844505c6674818d99a3afbcc6d0d8ccc0b6aca19690837a6e69615a534d46443f3b3a363134333333342f35393a3d42464b51575f666c74808d939ea8b2bdc9d5d5c9bdb2a99e9184786d6053463a2d201308000000000000000000000000000000000000000000000104060c1012131b1f212226201f1d18120b0300000000000000000000000000000105070c10141c2228323b434e58626d7783909daab3becad6d7ccc1b8ab9e9285786a5f53473a2e211408000000000000000000000000000000000000000000000915202834404b55606b75818e97a2adbac2cfd9d1c7bdb1a79f92857a6e61594f43392e23180c0300000000000000000000000000030c19232b3844505b666f7c87939fa9b3becad4e1d7cbc0b5ab9f958b7f72685e52473d31271d0f06000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000000006111b262f3847535f6a74818e98a3aebbc5cfded2c6b9ada1978a7e818e9ba8b4c1ced3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090908070502000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e31241714141414141414141414141414141414141414141414141414141414141414141414141414141414141312100c0700000000000000000000000000000000000000000000050c151c232830363c42474c5254575e616568676d6f707273737474737372706e6c6566625f5854514c45414a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000c18232f3946525e6975818e9ba7b1bcc7d4cdc2b7aa9e94887c6f62574d42362a1e2935414c56616e7b86929facb6c0ccd4c8bdb2a89c8f82766a5f53443a301e150a000000000000000000000000000000000000000000000000000613202c3945515d6776828f9ca7b1bdc7d2c7beafa59f93887f7974716f6f6f6f6d675d5145392c201306000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000713202d3a4653606d7985929fabb5c0ced7d4c8bbafa49a91847a6d685e575046423c38332d2d2a25272726262724292c2d31373940454d545b606e75818e96a1adb9c3ced9cfc4b9aca096897c6f6356493c3025190e020000000000000000000000000000000000000205070d1113171c1f20262b2e2f332d2c29241d150d030000000000000000000000000000000000040a11172029313c46515b65717e8b98a2aebac6d3dfd2c6b9ada197887b6e6255483b2f22150800000000000000000000000000000000000000000000030c18232e39434f59616d7a85929fa7b1bdc7d1d9cfc2baada2978e81756b60554b4034281f1409000000000000000000000000000b151e2a36414c56606c78839099a4afbbc5cfdcdcd4c7bbafa3999083786c60564d41352c1f150b00000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000000b17222d38414f59626f7c87939faab4bfcdd7d7cbc0b5ab9e928579828f9ca9b5c2cfd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b070707070707070707070707070707070707070707070707070707070707070707070707070707070706040000000000000000000000000000000000000000000000070e171e262e343b42464d53565e6165696e7174777a7c7d7f80808181807f7f7d7b7976726e6a65605d55524c4a5764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000007121d2a36424d56626f7c89959fabb8c4cfd3c7bbb0a69b8e8175695f53463a30252c3945525d6873808d99a3aebec7d2d2c5b8aca0968a7d7063584e4332281e0c030000000000000000000000000000000000000000000000000004111d2935414b5563707d8a95a0abb5c0c7d0c1bbafa49a938c84807d7c7b7b7b796d6054473a2d211407000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000a1623303d495663707d8997a2adbdc7d1d8ccc0b6ac9f93887d70685e564d453e37312b2822211e1a1b1a191a1a181d2021262b2f343b424a505c606d7a84919ea7b1bcc8d4d5c9bdb2a89a8d807367564d41362a1e11050000000000000000000000000000000002090e1114181d2023282c2d31373a3c3f3a38352f271f150b01000000000000000000000000000000000000060e171f2a333f4753606d7a85929fabb8c5d2ded5c9beb3a9988b7e7265584b3f32251806000000000000000000000000000000000000000000000007121d27303d46525e68727e8b959fabb5c0cbd7d6cabeb3a99e93897d70675c51453c31261a0d04000000000000000000000007121d27303946525e68727f8b95a0abb5c0cdd6e0d5c9bdb2a99f92877c6f665b50443b30231a0d0300000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000000000030f1b27333f4953606b75828f99a4afbcc6d0dfd4c7bbafa3998c807683909da9b6c3d0d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081119202930383f444d52575f62686e72767b7e818486888a8c8c8d8d8e8d8c8b8a8885837f7b77726d67605d56505764707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000010e1925303b4754606a7683909da8b2bdc9d5ccc2b9ac9f92877b6e61564c41362a34404b55606d7a85929fabb4bfd0d6cabeb3a99e9184786c6053463c3120160c0000000000000000000000000000000000000000000000000000010d18242f3a4653606c78839099a4afb6bec4c7c0b6aca49f96918d8a898888887d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000003101c28343f4a546774808d9aa9b3becfd9d4c8bbafa49a8d81746b60564c443b332b261f1c1714120e090d0c0d070d1113141a1d23292f383f45525d68707d8a95a0acb8c7d1d9cec4b7aa9d918477685e5246392d2014070000000000000000000000000000050b1014191e2024292c2e34383a3d4347484c4745403931271d120700000000000000000000000000000000000000050d18212c3945515d6775818e9ba8b4c1cedbdacfc1b5a89b8e8275685b4f422d22170b0000000000000000000000000000000000000000000000000b151e2a36414c56606c77839099a3afbbc4cedad0c5bcafa59d9184796d60574d42372b1f160c01000000000000000000000c18232e39424f59616e7a85929fa7b1bdc7d2dfd8cec6b9ada1968d80746a5f544a3f32291f11080000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000000010c161f2b3744505b65707d89949eabb5c0ced8dfd2c5b9ac9f92877b7784919eaab7c4d1d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121a232b323b424a50575e61696e747a7f83878b8e9196959798999a9a9a9a99989698928f8c88847f7a736d68605b5364707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000009141f2b37434e5864717e8a96a1adb9c6d0d4c7bbafa3998d8174685e52463a2f3845515c67727f8c98a2aebdc6d1d3c6baada2978b7f72655b5044372b1f120400000000000000000000000000000000000000000000000000000007131f2b3844505b666f7c87939fa4acb2b9bbc0beb6afa8a19e9a979695958a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000006121f2b3844505c667784909daab7c3cfddd2c6b9ac9f93877b6e61594f443a3229211a140f0b0605020000000000010406090e12181d262d35414c56616b7783909dabb5c0cbd7d1c5b8aca096877a6e6154473b2e211408000000000000000000000000000810171c1f252a2d2f35393a3f4446494e53555953514b43392f24180c000000000000000000000000000000000000000006101d2935404b556673808c99a6b3bfccd9ddd0c4b7aa9d9184776a544a3f33281c0f030000000000000000000000000000000000000000000000030c1925303a44505b656f7c87929fa8b2bdc9d5d7cec1b8aca0968c7f73695f53463e31281e130800000000000000000004101c2834404b54606b75818e97a2adb9c3d0d9dbd0c6bcb0a69e9184796d60584e42382d20170d000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000000007131d2834404a54606c7883909da6b0bdc7d2e0d4c8bcb1a79b8f82757885929eabb8c5d1d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b242c353d444d545c60696e757b81868b9095989b9ea0a8a3a5a6a6a7a7a6a6a5aaa29f9c9996918b85807a716c655d64707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000020f1b27323d4653606d7984919eaab4bfcbd6cbc0b5ab9f92867a6d61554b41353f4a54606d7985919eaab4becfd7cbc0b5ab9f92857a6d6053493f33271b0f03000000000000000000000000000000000000000000000000000000030f1c28333f4a54606a727f8c939aa1a8acafb5bdc0bbb2adaba7a4a2a2978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000713202d3a4653606d7986929facb9c5d2dccfc2b6a99c8f8276695e53473d322820170f09030000000000000000000000000001070b141c242f3a444f5965727f8c99a3afbbc7d4d4c8bdb2a896897d706356493d3023160a00000000000000000000000008121a22282d30363a3b4145474a505356585f6266605d554b4035291d100400000000000000000000000000000000000000010d18242f3e4b5864717e8b97a4b1becad7ded1c5b8ab9e928578665b5044382b1f120600000000000000000000000000000000000000000000000008131e27333f49535f6a73808d96a1acb9c1ced7d4c8bdb2a89f92867b6e615a50433a2f24190b0200000000000000040d1a242c3845515c66707d89939ea9b3becbd5e2d6cabfb4aa9e948a7e71675d51463c2f261c0e05000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000000000000000000010d18242f3844515c66717e8a959fabb8c1d0d9ded1c4b8aca095897d707986929facb9c5d2d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121b242d363e474f565e666d727b81878e92999d9fa7a7aaacb2b0b2b3b3b4b4b3b2b2b4aeaca9a8a09d98928d857e776d6864707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000a151f2c3844505c66727f8c98a3aebac7d3d1c7baaea3988d8073675d51453944505b66727e8b97a1adbcc5d0d4c7bbafa3998d8073675d5141382d22170b00000000000000000000000000000000000000000000000000000000000b17222d38424e58626d737f8891969b9fa4abb5c0c4bdb9b8b3b0afa3978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000815222f3b4855626e7b8899a3aebac7d3d7ccc0b5ab978a7e7164574d42352b20160e050000000000000000000000000000000000020a131e28323e4754616e7a86929facb9c5d2d9cebeb2a5988b7f7265584c3f3225190c000000000000000000000005101a242c33393b4246474b5154545c6063676a6f726d675d5145382c1f13060000000000000000000000000000000000000000071623303d495663707c8996a3afbcc9d6dfd2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000020b17222d38414e58606d7984919ea5afbcc5d0d9cec3baaea3988f82766c61554c4135291d140a000000000000010c161f2a36424d57606d7984919da5afbcc5d0dddbd3c7baaea2988f82756c61554b41342a1d140a00000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000004111d2935414b55606d7984919ea7b1bccad3e2d5c9bdb2a89d9083776d7a8799a3afbbc7d4d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101a242d363e48505960696e787f868e93999fa3ababb1b4b7b8bdbdbfbfc0c0c1c0bfbebfbab8b6b2acaaa29f97928b827a6e69707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616d7a86929facb8c2cdd6cbbfb4aa9f92857a6d60544b404653606c7884919ea9b3beced7d2c5b9ac9f92877b6e61554b402f261b1106000000000000000000000000000000000000000000000000000000000006111c262f3d46515b636d737d848b8f9399a4afbbc7c9c5c4c0bdb0a3978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000a1724313d4a5764707d8a97abb4bfcbd7d4c7bbafa499877b6e6154483b3121190d0400000000000000000000000000000000000000010c16202d3946525e687784919daab7c4d0dacdc0b4a79a8d8174675a4e4134271b0e01000000000000000000000b17222c363e44494d5254555d6064666d7074777b7f796d6053473a2d22170b00000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6e0d4c7bbafa499877a6d6154473a2e2114070000000000000000000000000000000000000000000000000006111b262f3c45515d67707d8a939eaab4becad6d7cbbfb4aa9f948a7e71675d51453c2f261c1106000000000007131d28313a46535f69737f8c96a0acb7c1ced7dfd4c8bcb1a79f92867b6e615a50433a2f22190b0200000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000000030e18212c3945515d67727f8b96a0acb9c3cddcded2c5b9aca0968a7e716e7b8794abb5c0cbd7d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e19222c363e48505a616b707b828c92989fa4abaeb4b8bcc1c4c5c8cecbcccdcdcccac9d0cac6c5c2bdb8b4aea9a19e948f847b6e707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000c17232e3846525e6874818e9aa6b0bbc7d3d0c6baada2978c7f72665c51454f5964717e8a96a0acbbc4cfd4c8bcb1a79b8f8275695e53433a2f1d140a000000000000000000000000000000000000000000000000000000000000000a141d2b343f49515b636c70797e8286939facb9c6d2d2d1cabdb0a3978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000b1825323e4b5865717e8b98a4b1bed1dcd2c6b9ac9f9386796d6053463a2d20130700000000000000000000000000000000000000000005111e2a36414c566976828f9ca9b5c2cfdbcec1b5a89b8e8275685b4f4235281c0f0200000000000000000004101c28333e485055565e6165676d7175797c808488897d706353493f33271b0f05000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7e3d7ccc0b5ab95887b6e6255483b2f22150800000000000000000000000000000000000000000000000000000a141d2935404b55616b75828f98a2aebac3d0d9d1c6bcb0a69e91847a6d60584e42382d22170b02000000020b18242f3a43505a616e7b86929fa8b2bdc9d3e0d7cdc5b8aca0958c7f72695f53483e31281d10070000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000000915202a36414d56606d7a85929ea8b2bdcbd4dfd5c9beb3a99e9184786d6f7b8895a2aebbd1dcd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202b343e48505a616c717d8590949fa2aaafb5babfc6c7cdd1d2cfcac6c5c2c0bfbebdbdbec0c1c4c6c5bebab3ada69e9691847b707d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000006111c2a36414c56626f7c88949fabb7c4ced6cabeb3a99e9184796d60544a54606b7783909da8b2bdcdd6d1c4b8aba095897c6f63574d4231281d0b02000000000000000000000000000000000000000000000000000000000000010b151f2834404a545c606d727a80849199a4afbbc7d4d1d0cabdb0a3978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000c1925323f4c5865727f8b98a5b2becbd8d1c4b8ab9e918578665c5144382c1f1206000000000000000000000000000000000000000000020e192530414e5b6874818e9ba7b4c1cedacfc2b5a99c8f8276695c4f4336291c10030000000000000000000814202d3944505a6164696e72767a7d8185898d91968d8073655b5044372b20170b020000000000000000000000000000000000030f1b27333f495366727f8c99a5b2bfccd8e8ddd2bbaea195887b6e6255483b2f2215080000000000000000000000000000000000000000000000000000020b18242f39434f59616e7b86929fa7b1bdc7d2d8cfc2b9ada1978d80746a60544a3f33281e14080000000a141d2935404b55616c75828f98a2aebac3cedbdacfc5bbafa59d9183786d60574d42362c1f160c000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000000020e1a26313946525e6873808c97a1adbac4ceddded2c6b9ada1978b7e72666f7c8995a2afbcc8d5d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f29323d46505a616c717e8792979fa6aeb4bbc0c7cbd1d4cec8c5c4beb9b8b5b3b2b1b0b0b2b3b4b8b9bec4c5beb9b0a8a09691847a7d8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000d1925303a47535f6a76828f9ca8b2bdc9d5d0c5b9ada1978b7e71665b505863707d89959fabbac3ced5c9beb3a99d9083776b6054453b311f160c0000000000000000000000000000000000000000000000000000000000000007121d27313944515c666d757f868d9196a0abb5c0ccc8c5c4bfbcb0a3978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000d192633404c5966737f8c99a6b2bfccd9d0c3b6aa9d9083776a544a4034281c100400000000000000000000000000000000000000000000081a2733404d5a6673808d99a6b3c0ccd9cfc3b6a99c908376695d5043362a1d10030000000000000000000a1623303c4955616c70777b7e82868a8e92979a9e9e9184786c6053463e32291d140b020000000000000000000000000000000005121f2b3744505b6574818d9aa7b4c0cddae2d6cabeb3a994877a6e6154473b2e21140800000000000000000000000000000000000000000000000000000007121d27313e46525e69727f8b95a0abb5c0ccd7d5c9beb2a99f93877c6f665b50443b3025190c030006111b262f3845515d67707d8a949eaab4bfccd5e1d6cabeb3a99d93897d70665c51453b31241a0d04000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000006121e2b37424d57616e7b86929fa9b3beccd5e0d5c9bdb2a89e9185796d63707d8996a3b0bcc9d6d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e1925303b444e58616c717e879299a1a9b0babec5ccd2d6cec9c3bdb8b7b3adaba8a7a5a4a3a4a5a6a8abadb3b7b9bdc1bab2a9a0968f817e8a97a3b0bdcad6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000008131e2b37434e5864707d8a96a0acb9c5d0d5c9beb2a99d9184786c60535f6a76828f9ca7b1bcccd5d2c6b9ada1978b7e7164594f4433291f0d04000000000000000000000000000000000000000000000000000000000000000c18232f3943505a606d78818c92989ea0a8b2bdc7c3bdb8b7b2afaea3978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000d1a2633404d596673808c99a6b3bfccd9d1c4b8ab9e918578665c5044382c1f1206000000000000000000000000000000000000000000000e1b2834414e5b6774818e9aa7b4c1cddad0c3b6aa9d9083776a5d5044372a1d11040000000000000000000a1724313d4a5764707e83878b8f92989b9ea2a9aaa0968a7d70645a50443b2f261d140c05000000000000000000000000000208121a202d394653606c7884919eabb8c4d1dedfd2c6b9ada297867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000010b151f2a36424d57606d78839099a4afbbc4cfdacfc4bbafa4999083786c60564c41362a1e150b000b17222d38414e58606d7984919ea6b0bcc6d0ded8cfc6b9ada1978e81746b60544a4033291f120800000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000000000000020c1a232e3a47535f6974818d98a2aebbc5cfdeddd2c5b9ada1968b7f726764707d8a97a3b0bdcad6d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202a36424d56606a717e879299a3abb3bbc2cad0d7d0cac4bdb9b2acaaa9a19e9b9a9997969798999b9ea1a9abacb2b9bebbb2a89e938e818e9ba8b4c1cedbd8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b26313c4653606c7884919eaab4becad6cfc4b8aca0968a7d716459626f7c88949fabb9c3cdd7cbbfb4aa9e9185796d6053463d3220170d0000000000000000000000000000000000000000000000000000000000000004101c2934404b55616c74808d939fa2aaacb2bac4bfbbb1acaaa6a3a1a1978a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000c1926333f4c5966727f8c99a5b2bfccd8d2c6b9ac9f9386796d6053463a2d20130900000000000000000000000000000000000000000005121e2a36424d576976828f9ca9b5c2cfdccfc2b6a99c8f8376695c504336291d10030000000000000000000b1824313e4b5764717e8a939a9c9fa3aaabadb3b2a89d9083776c61564d41382f261e170f0b0600000000000000000003070d1319242a36424d57626f7c8996a1adb9c5d2dfded1c5b8ab9e928578675d5145392c20130600000000000000000000000000000000000000000000000000000000030d1a25303b44505c666f7c87939fa9b2bdc9d5d7ccc0b5ab9f958b7f72685e52463d30271d12070f1b27333f49535f6a73808d96a1adb8c1ced8dcd1c6bdb0a69e92857a6d61594f42392e21180d0000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000000000a141e2c38434f59626e7b87929faab4bfcdd6dfd5c9bdb2a89e9184796d6064717e8b97a4b1becad7d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141e29323b46525e696f7c869299a3abb5bdc5cdd6d6cec5bebab2aca8a09e9a97928f8d8c8b8a8a8b8d8e9197999ea1a8adb3bbbaafa59e938e939eaab6c2cfdbd8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000a151f2b3844505b66727f8b98a2aebac7d2d4c8bdb2a89d9083776b606975818e9ba6b0bbcbd4d3c7baaea3988c7f73665c5145382c1f13050000000000000000000000000000000000000000000000000000000000000006131f2c3845515c67717e8a929da5aeb4b9bdc4bdb5aea8a09d99969594948a7d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000c1825323f4b5865727e8b98a5b1bed1dcd4c7bbafa499877b6e6154483b30251a0d0400000000000000000000000000000000000000020b14212d3a46535e697784919daab7c4d0dbcec2b5a89b8f8275685c4f4235291c0f020000000000000000000714212d3a4754606d7a86929facacaeb4b8b9beb8ab9f958a7d70685e534941383029201b17110e090a09080809060b0f12181e252a363e46535f6974808d9aa8b2bdc9d5e1dccfc3b6a99c90837669554b4035291d1104000000000000000000000000000000000000000000000000000000000009141f28343f4a54606a74808d96a1adb9c1ced8d2c7bdb1a79f92857a6e61594f43392e23180c19222b3744505b656f7c87929fa8b2bdcad3e0d7cbbfb5ab9f948b7e71685e52473d30271c0f060000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000000000006111c2630384854606b75828f99a3afbcc6d0dfd9cdc5b9aca1968b7e72675c65727e8b98a5b1becbd8d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1925303b44505a616e7b849198a2abb5bdc7cfd6d5ccc4bcb3aea8a19e96918d898582807f7e7d7d7f808185898d91969ea1a9afb6b7afa59e9b9ea5afbac6d2ded8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54606d7a85929facb6c0ccd8cec3b8ab9f95897d70636e7b87929facb9c2ccdfd2c5b9ac9f92867a6d61544b4034281c1004000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7984919ea4aebabfc5c7beb5aba39f95918c89888787877d7064574a3d3124170a000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000b1724313e4a5764717d8a97aab4bfcbd7d7ccc0b5ab978a7e7164574d42362a1f160d040000000000000000000000000000000000020b141d29323b4854616e7b87939facb9c6d2dacec1b4a79b8e8174685b4e4135281b0e020000000000000000000713202c3945525d6876828f9caab4babfc5c6c8bcb1a79e92857a6e655b534a423a322b27221b1a17171615151617171c1f242930363e48505a616e7b86929facb8c4cfdae4d8ccc0b6ac9a8e8174675b4e412f24180d010000000000000000000000000000000000000000000000000000000000020b17232e38424e58606d7a84919ea6b0bcc6d0d9d0c3baaea2988e81756b60554b4034281f151e2935414c56606c77839099a3afbac4cfdcdbd3c7bbaea3999082776c60564c41352b1e150b000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000000000b17232e3842505a636f7c89939eabb5c0ced7e2d4c8bcb1a79e9184796d605566727f8c99a5b2bfccd8d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c56626c76828f96a1aab4bdc7cfd9d4cbc3bab2aaa29f96918a84807c79757472717071727375787c80848b92979fa4acb4b7afaaa8aaafb7c1cbd7e2d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3845515d6774808d9aa4afbbc8d4d4c8bcb1a79c8f82766a74818d99a3afbbc7d4d3c7bbb0a69b8e8174685e5242392e23180c0000000000000000000000000000000000000000000000000000000000000005111e2a36424d5765727e8b96a1acb6c0caccc0b6aca399928b847f7c7b7b7a7b796d6053473a2d201407000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000815222f3b4855626e7b8898a3aebac7d3ddd2c2b5a99c8f8276695e52463d31281f160e08020000000000000000000000000000070c141d262f3b44505a66737f8c9aa4afbbc8d4d8cbbfb2a5988c7f7265594c3f3226190c0000000000000000000004111d2935414c5665727e8b98a2aebac5d0d2cdc3b9ada1978f82776c655c544c443e37332d2a262423222122232322282b2f353a4146505a626c75828f98a3aebac7d6e0e0d4c8bbafa49a8a7e7164574b3e312418070000000000000000000000000000000000000000000000000000000000000006111c26303c45515d67717e8a949eaab4bfcad6d6cabeb3aa9e93897d70675c51453c31261c26303846525e68717e8b949fabb5c0ccd6e0d5c9bdb2a89f92877c6f655b50443a3023190c03000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000000003101c28343f4a54616c7683909ca5afbdc7d1e0d9d0c7b8aca0958a7e71665c596673808c99a6b3bfccd9d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202d3946525e68717e8b949fa9b2bcc6d0d9d4cac2b9b1a8a098928c847e78736f6d6667666463646566656c6f73797f858d939aa2aab2bab6b4b6bac1c9d3dde4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2935414c55616e7b87939facb9c3ced8cdc3b7ab9f94887c6f7a86929fabb5c0cbd7d0c4b7ab9f94887c6f62564c4130271d1207000000000000000000000000000000000000000000000000000000000000000714202d3a46525e697683909ca8b2bdc8d4c8bbafa49a92877f7873706e6e6e6e6d675c5145382c1f1306000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000713202d3a4653606d7986929facb9c5d2dfd2c6b9ac9f93877b6e61594f433a31282019130e090603000000000000000205080d12181e262f38414d56626c7784919dacb6c0ccd8d4c8bcb1a7968a7d7063574a3d3024170a00000000000000000000010d19242f3a4754616d7a86929faab3becad6d5c9beb3a99f948d80776d665e565046443f38363131302f2e2e2f302d33383940454c525a616c717e8b949eaab4bfcbd6e8dfd2c6b9ac9f93877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000a141e2935414c55616c75828f98a2aebac3d0d9d0c5bcafa59e9184796d60574d42372b232e38424f59616d7a85929ea6b0bdc7d1ded7cec5b9aca1968d80736a5f53493f32281e110700000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000000020c16202b3844505c66707d8a949fabb7c1cfd9ddd2c7beb0a69d9083786c60545a6773808d9aa6b3c0cdd9d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090707070707070707070707070707070707070707070707070707070707070707070707070707060400000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141e2a36424d57616e7a85929fa6b0bbc4ced8d6ccc2b8b0a7a09691857f79716c6563605c545958575758535b6062666d727980889298a1a8b2bbc1c2c6cbd3dbe5e4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d19242f3a47535f6975828f9ca7b1bcc8d4d3c7bbb0a69b8e8175808c98a3aebdc7d1d5c9bdb2a89c8f83766a5f53443a301e150b00000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7b87939facb9c4cecbc0b5ab9f93887d726d666362616161605c554b4034291c1004000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000006121f2b3844505c667683909ca9b6c3cdd8d4c7bbafa4998d80746b60554b433a3229251e1a1312100b060b0a0b0c090e1214191c23283038424a535e68717e8b96a0acbec7d2ddd1c4b8aca095877a6e6154473b2e21140800000000000000000000000813202d3946525e6873808d98a2aebac5d0d9cfc5bbb0a69d928d81786d68615a53504946423f3e3d3c3b3b3c3d3e3f44464b51565e616c717e87929fa6b0bcc6d0dce2d6cabeb3a99d908376685e5246392d2013070000000000000000000000000000000000000000000000000000000000000000020c19242f3a43505a616e7b86929fa7b1bec7d2d7cec1b9aca0968c7f73695f53473e3128343f4a54606b74818e97a1adb8c2cfd9dbd0c5bcafa59e9184796d60584e41382d20160c0000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600000008131e2935404b55606d7884919da6b0bcc9d3e1d8ccc0b6ac9f94897d70655b505a6774808d9aa7b3c0cddad3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231614141414141414141414141414141414141414141414141414141414141414141414141414141313100c070000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1925303a46535f6974818d97a2adb8c2cdd6d9d0c4bab0a69f9590847b726d67605b5353504a4c4b4a4a4c495053545c60676d737e869196a1a9b3bdc6d1d7dde5ede4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4233271c0e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e2b37424d5763707d8995a0acb8c5cfd8ccc2b9ac9f93877c85929faab4bfcfd9d2c5b9aca0968a7d7064584e4332291e0c0300000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a9aa4afbbc8d3c7bbafa3998d80746b605c545554545453514b43392f23180c00000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000003101c28343f4a5466727f8c99a7b1bcc8d4d7ccc0b5ab9f93877d6f675d554c443d35302b26201f1c171918171718191a1e21252a2e343c424a545b656e7b85929fa8b2bdd0d9ddd0c3b6aa9d908377685e5246392d201407000000000000000000000005111d2a36414c56616d7a85929fa9b3bec7d2d6cdc2b8aea49d938e827a716c63605b53534d4c4a4a494848494a4b4a5053555d60686d757e879299a3afb8c1ced8e2dbd3c6baada2978b7e7164564c41362a1d110500000000000000000000000000000000000000000000000000000000000000000008131e28313e46535e69727f8c95a0acb6c0ccd8d4c8bdb2a89f92867b6e615a50433a2f3844505c666f7c87939fa9b3becbd4e1d6cabfb4aa9e938a7d70675d51463c2f261b0e050000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12060000010d1925303945515d67717e8b95a0acb8c2cddbe0d4c8bbafa49a8f82766b6053495b6774818e9aa7b4c1cddad3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23212121212121212121212121212121212121212121212121212121212121212121212121212121201f1c18120b03000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c56616e7b86929fa9b3becad4ddd2c7beb2a89f9490837a6e69605c55504946443f3f3e3d3e3f3f44464b51555d606c707c849197a2abb5bfcbd7dfeaf5e4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569594f44382c20170d030000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a26313c4854606b7784919da9b3becad6d4c7bbafa49991859197a2adbcc6d0d6cabfb4aa9e9184786c6053463c3220170d0000000000000000000000000000000000000000000000000000000000000000000d1a2633404d596673808c99acb6c0ccd2c5b9ac9f92867a6e6159504a484847474745403931271d120700000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000b17232e3c4855626f7b88959fabb8c4cedad2c7bbafa4999184796d675e564e46413a37312d2b2823252524242526262a2d30363940444d545c666c77828f97a2adbac3cee2d3c7bbb0a6998c807366564d41362a1e11050000000000000000000000010d1925303a46525e6873808c97a1acb6c0ccd8d4cac0b7aea59e948f857e76706c65615f57595756555455565657545b6062676d727a818a9299a3abb5c0cad3e0ded5c9bdb2a99f9285796d6053473a3025190d01000000000000000000000000000000000000000000000000000000000000000000010c161f2a36424d57606d7883909aa4afbbc5cfd9cec3baaea3988f82766c61564c4136424d57606d7883909aa4afbbc5cfddd9d0c7baaea2988f82756b61554b40342a1d140a000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000005111d2a36414c56606d7984919ea7b1bccbd4ded7cbbfb4ab9f93877c6f62594f4e5b6874818e9ba7b4c1cedad3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2d2c28231d150c030000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e6874818e99a3aebbc5d0dcd8ccc0b6aca19690827a6e685f57514b443f3a38342e3130312d33373940454b515a616a6f7b859299a3aebbc3cdd9e4f0e4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3ddd0c3b7aa9d9083776b6054483e33291f150d05000000000000000000000000000000000000000000000000000000000000000000000000000000000009151f2c38444f5965727e8b97a2adb9c7d1d7ccc0b5aba1979197a1a9b3beced8d3c6baaea2988c7f72665b5044382b1f12050000000000000000000000000000000000000000000000000000000000000000020f1c2935424f5c6875828f9ba8b5c2d2cfc2b5a89c8f8275685e52443f3b3b3b3b3a38342f271f150b0100000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000615212e3a47535f6a7783909da8b2bdc9d5d7ccc0b5aba0968f82796d686058524c47423c3a38342e32313031323331363a3b41464a51575f666d78818e949ea9b3beccd5d9d0c7b7ab9f94887c6f6255483c3025190e0200000000000000000000000008131e2935414c56606d7a85929aa4afbbc2cdd6d2c9c0b7afa69e97928a827d78726e696865646362616162636466666c6f74797e858e939fa3abb5bdc7d1dcdfd5ccc3b9ada1968c7f73675d514539291e13080000000000000000000000000000000000000000000000000000000000000000000000040d1a25313b44515c666f7c88939fa9b3bec9d5d7cbbfb4aa9f948a7e71685d52453c46525e69727f8c95a0acb6c0cdd7ddd2c7bdb1a79f92867b6e61594f43392f22180b02000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120600040e19222d3946525e68737f8c96a1adb9c3ceddded3c7baaea3998e81756a5f54474e5b6874818e9ba7b4c1cedad3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a38342e271e150b0000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7a86929fabb5bfcdd7dfd4c8bbafa49a91847a6d685e564d454039332d2b282325242422272b2e343a404550585f69707d87929fa7b1bcc8d4dee8e4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3ded1c5b8aca095897d70635a50453b31271f170e0a0401000000000000000000000000000000000000000000000000000000000000000000000000000003101c27333d4753606d7985929eabb5c0cbd7d2c7bdb3a9a19ea1a9b3bbc5cfd8ccc0b6ac9f92857a6d60544a3f33281c0f03000000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9b6c2cfccbfb2a5998c7f7266564c41342e2e2e2e2d2c29231d150d030000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000006121f2b37434e5864717e8a96a1acb9c2ced7d2c7bdb2a89f948f837a6f6a615e56534d4946443f403f3e3d3e3f40404246484c52545c60696e78818e939da6b0bbc5cfddd2c7beb1a79c8f82766a5f53473a2e1f140800000000000000000000000000020d1925303a45515d67707d88939fa6b0bbc4ccd5d2c9c1b8b0a9a19e948f8a847f7b78757271706f6e6e6f70717376797c81858b92979ea5afb5bdc7cfd9dfd6cdc3baafa59e9184796d60554b403529170c0200000000000000000000000000000000000000000000000000000000000000000000000009141f2834404a54606b74818e97a1adb9c2cfd8d1c6bcb0a69e91857a6d60584e434f59616e7b86929fa7b1bec7d2dfd7ccc0b5aba0958c7f72695e52473e31271d100600000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206000a15202a36424d57616d7a85929fa9b2bdccd5dfd6cabeb3a99f92867b6e61584e434e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256494747474747474747474747474747474747474747474747474747474747474747474747474747474747474645403930271d120700000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b65727f8c99a3afbdc6d1dfd4c8bcb1a79f93887d70685d564d443c342f27221f1c17181717171b1f23282f353e464e57606b727f8b95a0abb8c1ccd7e3e4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3e0d4c8bcb1a79c8f82766c61574d43393129201b15110d07080706060708090b0909070300000000000000000000000000000000000000000000000000000b161f2c3945515d6773808d99a3afbbc7d3d9d0c4bbb3adabadb3bbc4cdd7d4c8bbafa49a8d8074685d5242382d22170b00000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0c9bcb0a396897d7063564a3d3023212121201f1c18120b03000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000030f1b26313c4653606d7984919ea6b0bcc5d0d9d0c4bab0a69f9590837c746d68625f575553504a4c4c4b4a4a4b4c4d4d5355565e61666d727b828e939da5afb8c1cdd7d8ccc0b6ac9f958a7d7064584e43372b1f0d02000000000000000000000000000008131e2935414c55616b73808d949fa9b2bac3ccd4d2cac1bbb3ada69f9c96918b8885827f7d7d7c7b7b7c7d7e808285888d92989ea1a9afbbc0c7cfd9ded6cdc4bbb2a89e938a7e71675d5143392f24180500000000000000000000000000000000000000000000000000000000000000000000000000030c18232e39424f59606d7a85929ea6b0bcc6d1d8cfc2b9ada1978d80746a60544b55616b75818e98a2aeb9c3d0d9dcd4c7bbafa4999083786d60574d42352c1f150b0000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206020b1b27323a46535f6974808d98a2aebbc4cfdeddd3c6baada2978d8073695e5346424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f62565454545454545454545454545454545454545454545454545454545454545454545454545454545454545453514b42392e23180c00000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eabb5c0cfd8ded1c5b8aca0958d80736b60564c433b3229231d1712100b060a060b0f12181d2429343c454f59606c7883909da6b0bbc6d2e2e4d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3e4d9cec3b7ab9f948a7e71695e554b433b322b26201d181514141313141516181615130f0a0400000000000000000000000000000000000000000000000004101d2935404b55616e7b86929facb9c3cdd8d6cdc4beb9b8b9bec4cdd6dfd2c6b9ac9f93877b6e61564c412f261c110600000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0c8bbafa295887c6f6255493c2f221614141413100c070100000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000a151f2c3844515c66717e8a949fa9b3becad6d6ccc2b8b0a79f959188817a736e696562605c54595858575758595a575f6164686d72797f8690949ea5afb7c1cad3d6cdc5bbafa49a9083786c6053463c31261b0f000000000000000000000000000000020d19242f3a434f59606d78829097a1a8b1bac2cbd5d3cdc5beb9b0aba8a09d9897918e8c8a8988878889898a8d8f92989a9fa2aaadb3bbc1cbd1d9dad6ccc4bbb3a9a0968e81756c61554b4031271d1207000000000000000000000000000000000000000000000000000000000000000000000000000007121c27303d45525d68717e8b949faab4bfcbd7d5c9beb3a99f93877c6f665b515c67707d89939eaab4bfcbd5e1d5c9beb3a99f93877c6f665c50453b30231a0d030000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f12000a141d2b37434e58616e7b86929faab3becdd6dfd5c9bdb2a89f92857a6d61574d42424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f626161616161616161616161616161616161616161616161616161616161616161616161616161616161616161605c544b4034281c1004000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a0acbdc7d1e1d5c9beb3a99d9183796d60594f443a31292018120b0603000000000003070c1318222a333d44505b65707d89939eaab6c6d0dbe7d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dfdfd3c7bbb0a69f92857b6e675d554c443d37322c29242221201f202121232523221f1b160f070000000000000000000000000000000000000000000000000c18242f3946525e6975828e9ba7b1bcc8d4dfd6cfc9c6c4c6c9cfd6dfd4c8bcb1a79c8f8275695f53433a2f1d140a0000000000000000000000000000000000000000000000000000000000000000000004111e2a3744515d6a7784909daab7c3d0c7bbaea194887b6e6155483b2e2215080807060400000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000004101c2834404a54616c76828f97a2adbabfc8d7d4cac2b9b1a8a09a938e85807b76726f6d6667666564636465666768696e71757a7f848c92989fa6afb7c1c9d2d7cdc5bbb1a79f93877c6f655b5044372a20150a0000000000000000000000000000000008131e28313e44505c666e7b859196a0a8b1b9c1c9ced7cfcac2bbb7b2acaaa9a19e9b989796959494959697999c9fa2aaabaeb3b9bec5cdd7dcd7cfcac2bab2a9a19791847a6d605a5043392f1f150b010000000000000000000000000000000000000000000000000000000000000000000000000000000b151e2935414c56616c76828f98a3aebac3ced9cfc4bbafa4999083786c6057606d7984919ea5afbcc5d0ddd8cfc6b9ada1978d80746a60544a3f33291f1108000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1206111c262f384754606a75818e99a3aebcc5d0dfd9cec5b9ada1968c7f72685e52453b424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d665c5145382c1f1306000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576773808d9aa8b2bdcfd9dfd2c6b9ada1978b7e71675c51473d32281f170e0701000000000000000000010710182127333f4953606b75828f9baab4bfcad6e2d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dfe4d8cdc2baada2979082796d675e564f47433c39352f2f2e2d2c2d2d2e3031302f2c2721191007000000000000000000000000000000000000000000000007121d2a36424d57636f7c89959fabb8c4cfdae1dad5d2d1d2d5dae1ded1c5b8aca095897d7063574d4231281e0b020000000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0c7baada194877a6e6154473b2e2114080000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000c18232e3942505a616e7b85929fa4adb6c0cbd1d4cbc2bab1aca49f97928d88837e7c797674737271707172737375787b7e81868c91969fa3aab0b8c1c9d2d5cdc5bbb3a99f958d80746a6053493f3327180e0300000000000000000000000000000000010c161f28343f4a545e696e7c8491959fa7afb9bdc4cbd1d6ccc7c3bdb8b7b2adaba8a5a4a3a2a1a1a2a3a4a6a9abaeb4b8babec5c9cfd6d8d3cdc5beb9b0a8a19791857b6e685d52483e31281d0d0300000000000000000000000000000000000000000000000000000000000000000000000000000000030c1924303a44505a626e7b86929fa8b2bdc8d4d7ccc0b5aba0958b7f72685f6973808c96a0acb7c1ced7dcd1c6bcb0a69e91857a6d60584e42382e21170d00000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120b17222d38424f59626f7c87939fabb4bfced7e2d4c8bcb1a79e9184796d60564c4133424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3d6c9bcb0a396897d7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a786d6053463a2d201307000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f697784919daab7c4ceddd7cbc0b5ab9e9285796d60554b40352b20160d0500000000000000000000000000060f17222d38414f5964707d8a98a2aebac6d3dfd8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dfe9ded6cabeb3a99f948f82796e686159534e4745403e3b3b3a38393a3b3c3e3c3b38322b22190f0400000000000000000000000000000000000000000000010e1a25303b4854606b7783909da9b3bec9d5e2e6e1dfdedfe1e6e2d5c9beb3a99d9083776b6054453c311f160c000000000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683909ca9b6c3cfc7baaea194877b6e6154483b2e2115080000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000007121c27303e46535f69707e8a929ca4aebbc0c7cfd6ccc3beb6afa9a29e9a94908b888583807f7f7e7d7d7e7f808285888a8e92999ea1a8aeb4bcc2cad3d5ccc3bbb3a9a1979083786d60584e41382d221706000000000000000000000000000000000000040d17232e38424d565f6a6e7b8390959ea5acb2bbc0c7ccd2d3cec8c5c4beb9b8b5b2b0b0afaeaeafb0b1b3b6b8babec5c6cad0d5d6d3cdc7c1bbb3ada69f9691857c6f695f564c41362c1f160c00000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323e47535f6973808c96a0acb8c1cdd7d2c7bdb1a79f92857b6e626e7b86929fa8b2bdc9d3e0d7cbbfb4aa9f948a7e71685d52463d30261c0f0500000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f120f1c28333f4a54606b76828f9aa4afbdc6d1e0d9d0c7b8aca0958b7e71675d51443a30424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabeb1a5998f89878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787877e7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8895a0acb8c5d1ded3c7bbafa3998c8073675c5143392e23190e0400000000000000000000000000000006111b262f3d4753606d7985929facb8c5d2dfd8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dff2e6dbcfc5bbb0a69f948f827a706b625f5853514b4a48474745464748494b4948433d342b21160a000000000000000000000000000000000000000000000009141f2c38434f5964717e8b97a1adb9c6d1dcd5d5d5d5d5d5d5d5d2c6b9ada1978b7e7165594f44332a1f0d040000000000000000000000000000000000000000000000000000000000000000000000020f1c2935424f5c6875828f9ba8b5c2cec8bbaea195887b6e6255483b2f2215080000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000000b151e2a36424d57616c73808c929da4afb5bdc3cad0d0c7c0bbb3adaba69f9c989892908d8c8b8b8a8a8b8c8d8f9197979b9fa3abacb2babfc6ced7cec9c1bab2a9a29792857b6e665c51463d2f261b11060000000000000000000000000000000000000006111c26303b444e585f696e7a838e939ea1a8afb5bbc0c7c9cfd3d1cfc9c6c4c1bfbdbcbbbabbbcbcbdc0c2c5c6cad0d3d6d3cfcac6c2bcb7afa9a19e948f847b6f6a5f574d433a2f241a0d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202b37424d57606d7984919ea5afbbc5cfd9d0c3baaea2988e81756c76828f98a3aebac4cedbdbd3c7baaea3988f82766c61564c41342b1e140a0000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f0c16202b3844505b66707d89949facb6c0cfd8ddd2c7beb0a69d9083786c60554b403235424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3dacdc2b6aba199969494949494949494949494949494949494949494949494949494949494949494949494949494949494949494948a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a8b1bdc8d4dfd2c5b9ac9f92867b6e61554b4030271d110700000000000000000000000000000000000a141f2c3845515c6775828e9ba8b5c1cedbd8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3dfeee8e1d7cdc2b8b0a69f948f857d756f6a64605d555755545351535454565856544f463d32271b0f0300000000000000000000000000000000000000000000030f1b27323d4653606d7985919eaab4bfcbc8c8c8c8c8c8c8c8c8cbbfb5ab9e9285796d6053473d3320180e000000000000000000000000000000000000000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7b4c1cdc8bcafa295897c6f6256493c2f2316090000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000000030c1a26313b45505a636d73808d929fa3abb1babfc6ced2ccc5beb9b8b0aba9aaa29f9c9a999897969798999a9b9ea1a9a8acaeb4b9bdc4cbd0d1cbc4bdb9afa8a09792857c6f695f544b40342b1d140a0000000000000000000000000000000000000000000a151e29323c464e575e686d79818a91969fa3abafb5b9bec4c7cad0d1d2d1cecbcac9c8c7c7c8c9cacccfd2d3d2d1d1cbc7c5bebab8b0aba59e97928b827a6e695f584e453b31281e12080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e1a26313c45515c67707d89939ea9b3becad6d6cabeb3aa9e93897d717e8a949faab4bfccd5dfd4c8bdb2a89f92867b6e615a50443a2f22190c020000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f131e2834404b55606c7883909da6b0bec7d2e1d8ccc0b6ac9f948a7d70665b5043392f35424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3ded3c7bdb3aba5a3a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546774818d9aa7b4c0ced9dbcfc2b5a89c8f8275695e5243392e1e150b00000000000000000000000000000000000004101c2934404b5565727e8b98a5b1becbd8d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3ebe4ddd8d4d2cbc2b8b0a69f979289827c75716d6766646261605d60606163646360594f43382c1f130700000000000000000000000000000000000000000000000a161f2c3845515c66737f8c98a3aebabbbbbbbbbbbbbbbbbbbbbbbbaea3998c8073675d5145382c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccc9bcb0a396897d7063564a3d3023170a0000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000000009141f29333e48525b646e73808b9299a0a7aeb4bcc2c7cdcfcac6c2bcb7b6b4aeaca9a7a6a5a4a3a4a5a6a6a8abadb3b4b9babfc6c9ced1cbc6bfbab2aca59e9691857c6f6a5f574d42392e22190b02000000000000000000000000000000000000000000030c17202a343c454d565e676d757d848d92999fa4abadb3b8babfc1c4c5c9cecccdcececfcfcecdcccbcbcec8c5c4c1bfbab9b3adaba69f9c938e857e766e685f574e463c33291f160c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009151f2834404b55606b75818e97a2adbac2cfd9d0c5bcafa59e91847a85919ea6b0bcc6d1ded7cdc5b8aca0968c7f73695f53483e32281e1007000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f19242f3845515c67717e8b95a0acb8c2d0d9e0d4c8bbafa49a8f82766b61544a3f312735424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3e4d9cfc5bdb6b1b0adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadada4978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c667683909da9b6c3d0dcd7cbbfb5ab998c7f7266564d4230271d0c03000000000000000000000000000000000000000c18232f3d4a5763707d8a96a3b0bdc9d6d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3e2d9d2ccc8c6c6c8c2b8b0a9a19e938f87827e7a7573716e6e6d676c6d6e6f716f6b6054483b2f221509000000000000000000000000000000000000000000000004101c2834404b54616e7a86929facaeaeaeaeaeaeaeaeaeaeaeaeaeac9f92867b6e61554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1bed2cabeb1a4978b7e7164584b3e3125180b0000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000000030d18212c364049525c646e737f8791959fa2aab0b7bbc2c6c9cfcdc7c4c3bfbab8b6b3b2b2b1b0b0b1b2b3b5b8b9bec1c5c7cbd1cec8c6bfbab4aea8a09e938e847b6f6a60584e453b30271d10070000000000000000000000000000000000000000000000050e18222a333b444c555d606b707980878f93999ea1a9acaeb4b4b7b9bdbebfc0c1c1c2c2c1c0c0bfbebdbdb9b7b4b4aeaca9a29f9a949089817a716c615e564d453c342a21180d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c18232e39434f59616d7a85929fa6b0bdc7d1d7cec1b9aca09691849197a1adb8c2cfd8dbd0c5bbafa59e9184796d60574d42362c20160c00000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c1f1d2935414c56606d7984919ea7b1bccad4e2d7cbbfb5ab9f93877c6f62594f42382d2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3ebe1d7cfc7c2bebcbabababababababababababababababababababababababababababababababababababababababababab0a4978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb9c5d2dfd3c7bbaea399897c6f6356493c3023150b00000000000000000000000000000000000000000716222f3c4955626f7c8895a2afbbc8d5d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d3d9d0c7c0bbb9b9bbc0c2bbb3ada69e9a938f8a8682807d7b7a7a79797a7b7c7e7d6f6356493c302316090000000000000000000000000000000000000000000000000c18232e3946525e6874818e9ba6a2a2a2a2a2a2a2a2a2a2a2a2a2a79b8e8175695e5243392f24180c00000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96acb6c0cccbbfb2a5988c7f7265594c3f3226190c0000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120602020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020714212d3a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000000000060f1a242e37404a525c646d727d838c92989fa6abb0b8b9bec5c6cad0d0cac6c5c3c0bfbebebdbdbebfc0c2c4c6c9cfcfcfc9c6c3bcb8b4aeaba39f96918a817a6e6960584e463c33291e150b00000000000000000000000000000000000000000000000000060f182129323a434b515961676d737c82878c91979c9fa2aaa8abacb2b1b2b4b4b5b5b5b4b4b3b2b1b0b2acaaa8aba39f9c97928d88837d756d68625a524c443c332a22180f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303d46525e68717e8b949fabb5c0cbd7d4c8bdb2a8a0969196a1a9b2becad4e1d6cabeb3a99e93897d70675c51453c31241a0d0400000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c18222c3945525d68727f8c96a1acb9c3cddcdfd3c7bbaea3998e81756a6054473e2f262835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3f0e9e1d9d3cdcac9c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7bdb0a4978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8898a3aebac7d3dfd2c5b9ac9f9286796d6053473a2d20140700000000000000000000000000000000000000000714212e3a4754616d7a8794a0adbac7d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6ddd2c7beb6afacacafb6bec5beb9b0aca49f9c98928f8d8a88878686868787898a7d7164574a3e3124170b00000000000000000000000000000000000000000000000007121d2a36414c56626f7c889495959595959595959595959595959595897c6f62564d4231271d120700000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b889aa4afbbc8cdc0b3a79a8d8074675a4d4134271a080000000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f120f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f14212d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000000000008111c252e38404a525b626b6f787f868f949c9fa6abadb3b8babfc1c3c6c7ccd2cdcccbcac9cacbcccccbd0cac6c5c2c0beb9b8b1acaaa39f99928c847d756d685f574e463d342a21180c030000000000000000000000000000000000000000000000000000060f172028313940454f555d606a6f757b80858a8f9298989b9ea1a8a4a6a7a7a8a8a9a8a7a6a5a4a3a8a09e9b9899928f8a85807b76706b615e565046413b322a2118100600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e2a36414c56606c77839099a3afbbc4ced9cec3bab2a8a19ea1a8b2bbc4cfdcd9cfc7baada2978e81756b60554b40332a1f12080000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c202a36424d57606d7a85929ea8b2bdcbd5dfd6cabeb4aa9f92867b6e61584e43352c1d2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3f0efe6dfd9d4d1d0cfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcfcabdb0a4978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996aab4bfcbd7dcd0c3b6a99d908376675c5145382c1f130600000000000000000000000000000000000000000714202d3a4753606d7a8693a0adb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d8ccc0b6aca49f9fa4acb6c0c9c1beb6afacaaa29f9c99979594999292999497887b6e6155483b2e221508000000000000000000000000000000000000000000000000000d1925303b47545f6a7682888888888888888888888888888888888882766a6054443b301f150b0100000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6cec2b5a89b8f8275685c4f423024190d0100000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c1f1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c212d3a4754606d7a8793a0ada6998c7f7366594c403326190d000000000000000000000000000a131c262e384048515960666d727b828a90949a9ea1a9acaeb4b4b7b9bbc0bfc0c1c1c2c2c2c1c0bfbebdbebab8b6b3b3adaba7a09d98928e868079706b615e564d453d342b22180f0600000000000000000000000000000000000000000000000000000000050e161f282f353e434b51586062696e73797d8285888b8e91969697999a9b9b9c9c9b9a999898979696918e8b8986837e79746f6a636159524c443e36302920180f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c1925303a44505b656f7c87929fa8b2bdc9d5d5ccc3bab2adabadb2bac4cdd6dcd1c7bdb1a79f92857a6e61594f43392e21180e000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c26313a46525e6973808d97a2adbac4ceddded3c6baaea2988d8074695f53463d32231a2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3f1e6ddd5cdc8c4c3c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2bdb0a4978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1bed1dcdacdc0b3a79a8d807467554b4034291c100400000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d4c8bbafa49a93939aa4afbbc0ccc7c0bbb9b4aeaca8a6a4a1aba39f9fa39e928578695f53463a2d2114070000000000000000000000000000000000000000000000000008141e2b37434e58616d7a7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7a6d61584e4332291f0d0300000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c677884919eabb8c4d0c3b7aa9d9084776a564c4135291d110500000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5245392c28282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282d3a4754606d7a8793a0ada6998c7f7366594c403326190d00000000000000000000000000010b141c262e363f474f545c60696e767d83888d92979c9fa2aaa7aaacafb5b2b3b4b5b5b5b5b4b3b2b1b1b4aeaba9a6a9a19e9a95908b86817b736d676159524c443c332b22191006000000000000000000000000000000000000000000000000000000000000040d161d2429313a40454e54575e61666d7176797c7f818487898b8c8d8e8e8f8f8e8d8d8c8b8a898784817f7c7976716d67625f58554f46413a322a251e170e06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e27333f49535f6a73808d96a1acb9c1ced7d5ccc4bdb9b7b9bdc4ccd6dfd7cbc0b5ab9f958b7e72685e52473d30271d0f06000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c2b37434e58616e7b86929fa9b3beccd6dfd5c9beb2a99f92857a6d61574d42342b201b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3eadfd5cbc3bcb8b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b0a4978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3bfccd9d8cbbfb2a5988c7f7265594c3f2f23180c0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d2c6b9ac9f938886939fa5afbbc0c7ccc8c6bfbab8b5b3b0aeb4aeacaca99c8f827669574d42362a1e120500000000000000000000000000000000000000000000000000020f1b26323c46525e686d6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6d685e52463d3220170d0000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2934404b55697683909ca9b6c3cfc5b8ab9f928578685d5246392d20130700000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f524539353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353a4754606d7a8793a0ada6998c7f7366594c403326190d0000000000000000000000000000020b141c242d353d424a51575f616c70767b80858a8f9298989a9d9fa4aba5a6a7a8a8a9a8a7a6a6a5a4aaa29f9c999797918d88837f7a756e6a605d554f46413a322a211910070000000000000000000000000000000000000000000000000000000000000000040c12181f282f353c43474d53545c6064666d6f7275787a7d7e7f81818282828181807f7e7d7c7a7775726f6d6764605c55534e48443d3630292019140d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17222d38414e58606d7984919ea5afbcc5d0dbd6cfc9c5c4c5c9cfd6dedcd4c7bbafa3999083786c60564c41352b1e150b00000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c2e3a47535f6a74818e98a3aebbc5cfded9cec6b9ada1978c7f73685e52453b3122191b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3e4d9cdc3b9b1abaaa9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a4978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1b2834414e5b6774818e9aa7b4c1cddad7cabeb1a4978b7e7164584b3e312518070000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6d2c5b8ac9f92867f8c939da5afb5bdc3c9cfcac7c5c2c0bdbbbfbab9b3a6998c807366594d4031261a0e0200000000000000000000000000000000000000000000000000000a15202a36414c565e616262626262626262626262626262626262615e564c41342b200e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232f414e5b6874818e9ba7b4c1cec6baaea298877a6d6154473a2e21140700000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f52454242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424754606d7a8793a0ada6998c7f7366594c403326190d000000000000000000000000000000020a121b232b303940444d535a6164696e73797d8285888b8e90939997989a9b9b9b9c9b9a9a9998979698928f8d8a8785817c77726d68625f57514b433e35302820180f070000000000000000000000000000000000000000000000000000000000000000000001070d161d242932373b42464a5153545c60626568696e7071737474757576757473727170706d68686562605c5553514b47433c38332a251e170e0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3c45515d67707d8a939eaab4becad6e2dad5d2d1d2d5dae0e0d5c9bdb2a89f92877c6f665b50443b3023190c0300000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245392c38444f59626f7c87939faab4bfcdd7e1d4c8bdb1a89e9184796d60564c41332a1f101b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3e0d4c8bcb1a7a09d9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c978a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cedbd6cabdb0a3978a7d7064574a3d3124170a0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c6cec5b8ac9f928579818e939fa4abb1b9bdc4c8cdd2cfcccad1cbc7bdb2a8978a7d7064574a3d31241709000000000000000000000000000000000000000000000000000000040d1925303a444c5254555555555555555555555555555555555554524c443a3022190f00000000000000000000000000000000000000000000000000000000000000000000000000000000000007192633404c5966737f8c99a6b2bfd2cabeb3aa95887c6f6255493c2f22160900000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f524f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f54606d7a8793a0ada6998c7f7366594c403326190d00000000000000000000000000000000000910191e272e343b42465055575f62666d7175797b7e818486898a8c8d8e8e8f8f8f8e8d8c8b8a8a888583807d7b78746f6a65615d56534e4540393129251e160e0600000000000000000000000000000000000000000000000000000000000000000000000000040c131820272b3136394044464a51535558565e61636466676868696968676665656463615e56585653514b4745403937312c272119130c0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2935404b55616b75818e98a2aebac3d0d9e3e1dfdedfe1e5e2d8cec6b9ada1968d80736a5f544a3f32291e11080000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f52453930394854606b75828f99a4afbcc6d0dfdbd1c5b8aca0958b7e71675d51443a3021180e1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3ddd1c4b8aba095908f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8a7d7164574a3e3124170b000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2936424f5c6975828f9ca8b5c2cfdbd5c9bcafa296897c6f6356493c302316090000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb9c1c1c1b8ac9f92857978818c9399a0a7adb2b8bcc2c5c6cad0cfd1c5b9ada196877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000008131e29323a41464748484848484848484848484848484848484746413a32291e10070000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97acb6c0ccd0bdb0a4978a7d7164574a3e3124170b00000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c5f5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b606d7a8793a0ada6998c7f7366594c403326190d000000000000000000000000000000000000070c151c232831363e44494d53545c6064666c6f7174777a7c7e7f80818282828281807f7e7e7d7b797673716e696762605854524c47423c352f271f19130c0400000000000000000000000000000000000000000000000000000000000000000000000000000001070d151b1f252a2e34383a404446494c4d52545658595a5b5b5c5c5b5a5a5958575654524c4c494645403a38342f2b26201c160d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b18242f39434f59616e7b86929fa7b1bdc7d2dde8ebeaebede7dbd0c6bcb0a69e9184796d60584e42382d20170d000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f52452e3942505a63707d89949eabb5c0ced8e1d3c7bcb0a69d9184786d60554b4032291e0f0f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3ddd0c3b6aa9d9083838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383827d6f6356493c30231609000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101d293643505c6976838f9ca9b6c2cfdcd5c8bbaea295887b6f6255483c2f2215090000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0acb4b4b4b4b4ac9f9285796d747f8790959ea1a8abb1b6b8babfc0c2c4c4b8ab9e918478685e5246392d20140700000000000000000000000000000000000000000000000000000000020d1720293036393a3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3a3936302920170d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c889aa4afbbc8cbbfb2a5988c7f7265594c3f3226190700000000000000000000000b1824313e4b5764717e8a97a4ab9f9285786c6868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686d7a8793a0ada6998c7f7366594c403326190d00000000000000000000000000000000000000030b12181f262a33393c42474a5153545b60626567676d6f71727374757576757473737271706e6c666664615e5755544e4746413a373129241d150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f141a1c23282c2e34383a3c3f4246474a4b4c4e4e4f4f4f4e4e4d4c4b4a494746413f3c3a38342e2c29231d1a15100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313e46525e69727f8b959fabb5c0ccd7e3f0f7f8efe2d6cabfb4aa9e948a7d70675d51463c2f261c0e05000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f524534404a54616c7683909da6b0bdc7d2e0d9cfc7b7ab9f948a7d70665c5043392f20170c0f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676766f6b6054483b2f221509000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd4c7baada194877a6e6154473b2e2114080000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d798693a0a8a8a8a8a8a8a89f9285796c6d727c838b91969d9fa7a9acaeb4b4b5b7b9b5a89b8f827568564d41362a1e11050000000000000000000000000000000000000000000000000000000000050e171e252a2d2e2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2e2d2a251e170e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6cdc1b4a79a8e8174675b4e412f24180d01000000000000000000000b1824313e4b5764717e8a97a4ab9f92857875757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757a8793a0ada6998c7f7366594c403326190d000000000000000000000000000000000000000000070c141a22282d3137394044464a50535558555d6063646567686868696867676665646362605b545754524d4947433c3935302b262018120b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12181c1f23282c2d2f30363a3b3d3e4041414242434241403f3e3d3d3a3935302f2d2c28231f1c18120f0a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a36424d57606d78839099a4afbbc7d4e0edf9f9ece0d3c6baaea2988f82756c61554b40342a1d140a00000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f52453844515c66717e8a959fabb8c1d0d9dcd1c7bdafa59c9083766c61544a3f31271d0e050f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696360594f44382c201307000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101d2a3743505d6a7683909da9b6c3d0dcd3c7baada094877a6d6154473a2e2114070000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d7986939b9b9b9b9b9b9b9b9b9285796c636a6f787f848a9095989c9fa2aaa7a9aaacaea6998c7f7366594c403025190e02000000000000000000000000000000000000000000000000000000000000050d13191e2021222222222222222222222222222222222221201e19130d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d677884919eabb7c4cfc2b6a99c8f837669554b4035291d1104000000000000000000000b1824313e4b5764717e8a97a4ac9f9287818282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828f9ba8b2a6998c7f7366594c403326190d0000000000000000000000000000000000000000000003090e171c20262b2e34383a3f4446484b4c51545657595a5b5b5c5c5c5b5a595857575553504a4a4846423c3b37322d29241e1a150c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c1012181c1f2022252a2d2e3031333435353636353433323231302e2d292523201f1c1813100c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d1a25303b44505c666f7c87939facb9c6d2dfecf9ede1d4c8bdb2a89f92867b6e615a50433a2f22180b0200000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f5245414b55606d7984919ea7b1bccad3e2d7cbc0b5ab9e93897c6f625a5042382e1f150b000f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c56544f473d32271b0f03000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101d293643505c6976838f9ca9b6c2cfdcd4c8bbaea195887b6e6255483b2f2215080000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000713202d3a4653606d79868e8e8e8e8e8e8e8e8e8e8e85796c5860666d72797e83878b8f9298989a9c9e9fa3a896897d7063564a3d30231708000000000000000000000000000000000000000000000000000000000000000002080d11131415151515151515151515151515151515151413110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556976828f9ca9b5c2cfc4b8ab9e918478675d5145392c201306000000000000000000000b1824313e4b5764717e8a97a4aea399928e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8f939eaab2a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000050b10151a1c23282c2d3338393c3e414547494b4c4d4e4f4f4f4f4e4d4c4b4b4a4846443f3e3b3a36302e2b27201d19130e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004070c10121316191e202123252627282829292827272625242321201d19161313100c070400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f28343f4a54606a74808d9aa7b3c0cddae6f3ebded1c5b8aca0968c7f72695e53483e31281d10060000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd2c5b8ab9f9285786c5f524545515d67727f8b96a0acb9c2cddcdfd3c7bbafa3998f82756a6054473e30261c0d03020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256505050505050505050505050505050505050505050505050505050505050505050505050505050505050504948443d352b21160b00000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9b5c2cfdcd5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000613202d394653606c788181818181818181818181818174685b545c60666d71767b7f8385888b8d8f9192999496877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000010507070909090909090909090909090909090909070705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f414d5a6774808d9aa7b3c0cdc5b9ada196867a6d6053473a2d201407000000000000000000000b1824313e4b5764717e8a97a4b5aba39f9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9ea6b0b2a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000000003090e12181c1f22282b2d2f2f35393a3c3e3f4041424243424140403f3e3d3b3938332d2e2d2a25221f1b15110d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090e1114141718191b1b1c1c1c1b1b1a191817161413110d0807060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303946525e68727e8b98a5b1becbd8e4f1eaddd0c4b7aa9d9184796d60574d42362c1f160c000000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c5b8ab9e9285786b5f52414c56606d7a85929ea8b2bdcbd4dfd6cabfb4aa9f92877b6e62584e43352c1e140a00020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256494343434343434343434343434343434343434343434343434343434343434343434343434343434343433c3b38322b23190f0400000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2935424f5c6875828f9ba8b5c2cedbd6c9bdb0a3968a7d7063574a3d3024170a0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c000006121f2b3844505b666c757575757575757575757575746f64594a50545c6064696e7276797c7e818284868788888477685d5246392d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071825323f4b5865727e8b98a5b1bed0c9bdb2a895887c6f6255493c2f221609000000000000000000000b1824313e4b5764717e8a97a4b1b5aeaca8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8aab0b4b2a6998c7f7366594c403326190d0000000000000000000000000000000000000000000000000000000000070c1012171c1f202224292c2d3031323435353536353434333231302f2d2b282221201e1a15130f0a05010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0b0d0e0e0f0f100f0e0d0c0b0a0a07070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e39424f59616d7a85929eabb8c5d1deebf8ebdfd2c5b8ac9f92867b6e615a50433a2f24190c020000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c5b8ab9e9285786b5f5246525e6873808c97a1adbac3ceddded3c6baaea2988d8174695f53463d32231a0c0200020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3636363636363636363636363636363636363636363636363636363636363636363636363636363636302f2c27211911070000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b4c1cedbd7cabdb1a4978a7e7164574b3e312418060000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c0000030f1c28333f4a545b6068686868686868686868686868645d5348444a5053575e6165666d6f72747677797a7b7c7c6f62564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000030607080a0b0c0d0e0e0e0e0d0d0c0b09070705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a9b3becacfbdb0a4978a7d7164574a3e3124170b000000000000000000000b1824313e4b5764717e8a97a4a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a6998c7f7366594c403326190d0000000000000000000000000000000000000000000000000000000000000004060b0f121315191d202123242627282829292928272625242422201f1c171514120e0906030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b54606b74818e97a2adb9c6d2dfecf8ece0d3c6baaea2988f82756c61554c4135291e140a0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c4b8ab9e9185786b5e524d57616e7a86929fa9b3beccd5e0d5c9beb3a99f92867a6e61574d42342b2111080000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f292929292929292929292929292929292929292929292929292929292929292929292929292929292322201b160f07000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0cddad8cbbeb1a5988b7e7265584b3f2d22170b0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c0000000b17222d38424a50535b5b5b5b5b5b5b5b5b5b5b5b5b59534b41383f44464d5354545c6062656769666c6d6e6f6f6a5f53443a3024190d01000000000000000000000000000000000000000000000000000000000000000000000000020507060c101213151618191a1a1b1b1a1a191917161413110d0807070401000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8797a2adbac6ccbfb2a6998c7f7366594c4033261908000000000000000000000b1824313e4b5764717e8a979b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b998c7f7366594c403326190d00000000000000000000000000000000000000000000000000000000000000000000030606080d1113141618191a1b1c1c1c1c1b1a191818171513120f0b0607050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030606080a0c0d0d0e0e0d0d0c0a080706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d1a242c3845515c66707d89939ea9b3becad6e2eefaefe2d6cabfb4aa9e948a7e71675d51453d30261c110600000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c4b7ab9e9184786b5e51535f6974818d98a2aebbc5cfded9cec6b9ada1978c8073685e52453c3122190f000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1615130f0b0400000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8d9ccbfb3a6998c80736653493f33271b0f0300000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000006111c262f383f44464e4e4e4e4e4e4e4e4e4e4e4e4e4d4841392e34383b4246484a505355585a545b60606162625f584e4332281e1308000000000000000000000000000000000000000000000000000000000000000000000205080e111414171c1f20212325262727282827272626242221201d19171413110d080501000000000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e687885929fabb8c5cec1b4a79b8e8174685b4e413024190d010000000000000000000b1824313e4b5764717e8a8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000001040607090b0c0d0e0f0f100f0e0d0d0c0b0a0806060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060606060606060606060606000000000000000000000000000306060b0f1213151719191a1b1b1a1a1917151313100c070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a36424d57606d7984919da5afbbc5cfdbe6f2f2f3e7dbd0c6bcb0a69e91847a6d60584e42382e23170b03000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c4b7ab9e9184786b5e4e58626e7b87929faab4bfcdd6e1d4c8bdb2a89e9285796d60564c41332a1f1007000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316101010101010101010101010101010101010101010101010101010101010101010101010101009090703000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdcfdadbcfc2b5a89c8f8275655b5044372b1f120500000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c000000000a141d262d33383942424242424242424242424241403c372f23282c31363a3b3f4446494b4e4a505354555555534e463c3220160c02000000000000000000000000000000000000000000000000000000000000000003090e1214191e202123282c2d2e3031333334343434333332312f2e2d29252421201d1913110d0802000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c566a7683909da9b6c3d0c3b6a99d9083766a564c4135291d11040000000000000000000916232f3c4956626f7d8181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181817d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003061313131313131313131313120706040000000000000000060b0f1213171c1f20222425262728272726252422201f1c181413100c070300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313a46535f69737f8c95a0acb7c1cdd7e1ece6e5eaebe2d8cec1b9ada1968d80746a60544a3f34281f1409000000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c4b7aa9e9184776b5e54606a75828f99a3afbcc6d0dfdcd2c5b8aca0968b7f72675d51443b3021180e00000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090303030303030303030303030303030303030303030303030303030303030303030303030300000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a8b2bdc9d5ded1c5b8ab9e9285796c605346392d20130600000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000000020b141c22282b2d3535353535353535353535353534302b25171c1f252a2d2e34383a3c3f413f44464748494947433c342a200e0400000000000000000000000000000000000000000000000000000000000000060b10141a1e21252a2d2e2e34383a3b3d3e3f404141414140403f3e3c3a393530302d2c2924201d1913100b04000000000000000000000000000000000000000000000000000000000000000000010d192530424e5b6875818e9ba8b4c1cec5b8ab9e928578685d5245392c2013070000000000000000000915222e3b4854606a6f747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474706c6155493c3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004060708090a0a0b0c0b0b0b0a090807060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b101220202020202020202020201f1312100c07000000030a0f11171c1f2022282b2d2e313233343434343332302f2d2c2823201f1d18120f0b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b19242f3a43505a616e7b86929fa8b1bdc9d2dfe0dcd9d8dedfe1e0d5c9bdb2a99f93877c6f665c50443b30251a0d040000000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd0c4b7aa9d9184776a5e59626f7c89939eabb5c0ced7e1d4c8bcb1a79e9184786d60554b4032291e0f0600000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8796a1adb9c5d2dfd2c6b9ada297887b6e6255483b2e23170c00000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c0000000000020a11171c1f20282828282828282828282828282724201a0c10141a1e2123282c2d2f322d3338393a3b3c3c3b37322a22180e000000000000000000000000000000000000000000000000000000000000060b11171c1f262a2d3036393b3e3f444648494b4c4d4d4e4e4d4d4c4c4a49474641403d3a3935302d2a251e1b16100b040000000000000000000000000000000000000000000000000000000000000000081a2633404d596673808c99a6b3bfccc6b9ada197877a6d6054473a2d21140700000000000000000007131f2c38434e58606268686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686864615a5044392d20140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060609070c1013141515161718191818171716151313100c07090706040000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f2d2d2d2d2d2d2d2d2d2d2d2c201f1c18120b030b10151a1c22282b2d2d3338393b3d3f4040414140403f3d3b3a38342e2d2c29241f1b17110b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2935414c55616c76828f98a3aebac3cedbdbd4cfcccbd1d2d5dadacfc4bbafa4999083786d60574d42362a1f160c0100000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd0c3b7aa9d9084776a5d616b7683909ca5afbdc7d1e0d9cfc7b8ab9f958a7d71665c50433a2f20170d0000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e687884919eabb7c4d1ded6cabeb3a9978b7e7164544a3f34281c1003000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000000000000060b0f12131b1b1b1b1b1b1b1b1b1b1b1b1b1a18140f0903090e1214171c1f20222522282b2d2d2e2f2f2e2b262018100600000000000000000000000000000000000000000000000000000000020a11171c23282b31363a3b4146474b4a5053545658595a5a5b5b5a5a5959575554524c4d4a4745413a3936302c27211b160e09020000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becacabeb3a995897c6f6256493c2f231609000000000000000000030f1b27323d464e54565b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b575550473e33281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060b0f12131518181d1f20212223242525252524242321201f1c1818161313100c070603000000000000000000000000000000000000000000000000000000000000020c141c23282b3939393939393939393939392d2c28231c150c161c20262b2d3338393c3f4446484a4c4c4d4e4e4d4d4c4a484645403d3a39352f2b27221b17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3845515d67717e8a949eaab4bfccd5d9d1c9c4c0bfc4c5c9cfd6d7ccc0b5aba0958c7f72695e52463e31281d130700000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd0c3b6a99d9083766a5963707d8a949fabb7c1cfd9dcd1c7bdb0a69d9083766c61544a3f31281d0e050000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c566875828f9ba8b5c2d0dbdbcfc1b4a79a8e8174665c5044382c1f150a000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000306060f0f0f0f0f0f0f0f0f0f0f0f0e0e0c08030000000205060c1012131618171c1f2021222222211f1b150e0600000000000000000000000000000000000000000000000000000002080c141c23282e34383b4246484c525457545c606163646666676767676666656462615e565a5754524c4746413a38322c27211a140d0500000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9cfbdb0a4978a7d7164574a3e3124170b000000000000000000000a16212b343d4348494e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4a49443e352c22170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001040a0f1215171c1f20222524292c2d2e2f30313232323131302f2e2d2c28232523201f1c1815120f0a05020000000000000000000000000000000000000000000000000000000a141e262e34384646464646464646464646453a38342e271e1b21282c3137383f4446494a5053555758595a5b5a5a5958575553514b4a4745403937332d28221c140b080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424e58606d7a84919ea6b0bcc6d0ddd1c7bfb8b3b2b7b9bdc4ccd6d2c7bdb1a79f92867b6e615a50433a2f24180b02000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdccfc3b6a99c90837669606b7783909da6b0bcc9d3e1d7cbc0b5ab9e94897c6f635a5042382e1f160c000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d192530404c5966737f8c99aab4bfcad6ded1c4b8ab9e9184796d6053463c31261b0d040000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000002020202020202020202020202010000000000000000000003060709060b0f12131415161615130f0a04000000000000000000000000000000000000000000000000000000050d14191e262e34383f44464d5355565e616467666d6e7071727374747474737372716f6d68696663605d5654524c48443d38322a251f170e07010000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbc8ccbfb2a5998c7f7266594c3f3326190c00000000000000000000040f19222b32383b3c4141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141413d3c39332c231a10050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d11151a1f2122282b2d2f322f35393a3b3c3d3d3e3f3e3e3e3d3c3b3a38342e32302d2c2823211f1b15110e090200000000000000000000000000000000000000000000000006111c2630383f44535353535353535353535352464440393027272c33383c43474a505356545b60616465666767676766656362605c555753514b46443f38332d261d19130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54606a74808d96a1adb8c2ced8d4cbbfb5ada7a5abadb2bac4cfd9d0c3baaea2988f82756c61554b4035291d140a000000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdccfc2b5a99c8f82766963707d89959fabb8c2cddbdfd4c7bbafa3998f82756b6054483e30261c0d04000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081723303d4a5663707d8998a2aebac6d3dfd2c5b9ada1968a7d7164584e43372b1f160c0100000000000000000000000000000000040e16202d3a4653606d798693a0acb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060708090908060300000000000000000000000000000000000000000000000000000000060e171f252a30383f444a5053575f6166686e717476797b7c7e7f8080818180807f7f7d7c7a787673706d6865615e56544f48443d3630292018120c0400000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7cdc1b4a79a8e8174675b4e4134281b0e010000000000000000000007101921272c2e2f35353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353531302d28221a1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13181d20262b2e2d3338393c3e414045474848494a4b4c4b4b4a4a4948464540413f3c3a38342e2e2b26201e1a140f0a03000000000000000000000000000000000000000000000b17232e38424a505f606060606060606060605f53514a42392e32383e44484e53545b606266666c6e707273737474737372706e6d676764605d55535049443f382f29241e160e0600000000000000000000000000000000000000000000000000000000000000000000000000000000030d1a232b3844505b666f7c87929fa9b2bdcad3d9d0c2b9ada39b989ea1a8b2bdc9d5d6cabfb4aa9e938a7d70675d51453c2f261c11060000000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdbcec2b5a89b8f8275686975828f9ca7b1bccad4ded6cabfb4aa9f92877c6e62594f44362c1e150a00000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929facb8c5d1dcd5c9bdb2a99c9083766a5f53473d31281d1307000000000000000000000000000000030d16202935404b55606d7a8693a0adb9c6d3d8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1117202930363e424a50545c6064696e72767a7e80838687898b8c8d8d8e8e8d8d8c8c8a88878583807d7a76726d68636059544f46423b3329241d160d05000000000000000000000000000000000000000202020200010815212e3b4854616e7b8794a1aebac7cec2b5a89b8f8275685c4f4235291c0f020000000000000000000000070f161b1f22232828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282423201c171008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e151b1d24292c31373a3c3f4446484b4e4b515354555657585858585757565453514b4e4b494645403c3a37312d2a251f1a150e09030000000000000000000000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c6c6c605c544a40353d44484f55585f62666c6f7376797b7d7f7f80818180807f7d7b797773706d6763605b53504a423d353028201810080000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a36414d56606c78839099a3afbbc4cfddd2c7bdb1a79b918c9196a1adb9c1ced8d0c5bcb0a69e9184796d60584e42382d22170b0200000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdbcec1b4a89b8e8175686e7b87939facb9c3cddfded3c6baaea2988e81746a5f53473d32241a0c0300000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6675828f9babb4bfcbd7dacfc4b7ab9f94887c6f62594f433a2f2418120701000000000000000000000000050d151f28323a45515d67717e8b98a4b1becbd7d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c141c2328323b414650545c60666d70767b7f83878a8d909298969799999a9a9a9a99999897959892908d8a87837f7a75706b636059524d453f352f281f170f06000000000000000000000000000004080a0b0f0f0f0f070d1115222f3c4855626f7b8895a2aebbc8cfc3b6a99c908376695d5043362a1d1003000000000000000000000000040a0f1315161b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b171614100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c141a20272b2f35393c4347484a505355585b555d60616263646565656464636261605c545a585653514b4847433c3a36302b26201a140c0701000000000000000000000000000000000006121f2b3844505c667679797979797979797979786d665c514440454f545961636a6f74797c808385888a8b8c8d8e8d8d8c8b8a888683807d7974706c65605b544f45413a322a221a12090000000000000000000000000000000000000000000000000000000000000000000000000007121d27313946525e68727f8b959fabb5c0cdd6d7ccc0b5ab9f958c7f84919ea6b0bcc6d0d7cec1b9ada1968d80736a5f544a3f33281f140900000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdacec1b4a79b8e81746673808c99a4afbbc7d4e0d5c9beb3a99f92867b6e61584e43352b2112080000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b5465717e8b99a3aebac7d3e0d3c7bbb0a69a8e81746b60554b4035292418120b0600000000000000000002080e171f27313a444f59606d7985919eabb8c4d1ded8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161e262e343e444d525a61666d71787d82878c90939a9a9d9fa3aaa4a5a6a7a7a7a7a6a6a5a4aaa29f9c999a93908b86827c76706b615e57504540393129211810060000000000000000000000050b101416171c1c1c1c1c181d20262f3d4a5663707d8996a3b0bcc9d1c4b7aa9e9184776b5e5144382b1e11050000000000000000000000000000030709090e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0a0a08040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181f252a32373a4045474e5355545b606265676a676d6e6f70707172717171706f6e6d6669676563605c5455534e4746423b37312a261f18120b03000000000000000000000000000000000713202d3a4653606d788686868686868686868685786d6053464b515960636b70767b8085898c9092989798999a9a9a9a9998969992908d8a85817d78716c666059524c443c342c241b12090000000000000000000000000000000000000000000000000000000000000000000000000c18232f39434f59616e7b85929fa7b1bdc7d1dcd4c7bbafa4999083787e8a949eaab4bfcad6d5c9bdb2a89f92877c6f665b50443b30251a0d04000000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdacdc0b3a79a8d80746d7984919eabb5c0ccd7ddd2c6b9ada1978d8073695e52463c3123190f000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3a4754616d7a86929facb9c3ced9d8cdc2b9ac9f93877d6f675d51453e3629241d17110c070604000105070a0f141920293139434c56606b73808d97a1adb9c6d2dfd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e161f2830383f4450565e616c70787e848a8f939a9d9fa4aca9acaeb4b1b2b3b3b4b4b3b3b2b2b0b3aeaba9aca49f9d99928f89827d756e69625a514b433b332a221810060000000000000000000810171c212324282828282824292c3038424e5866737f8c99a6b2bfccd0c3b7aa9d9084776a5d5144372a1e11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c151d232830363d43474b5153585f6266666c6f717477797a7b7b7c7d7e7f7e7e7d7d7c7b79787674726f6d6666625f5854524d47433c363129241d150d060000000000000000000000000000000713202d3a4653606d7986939393939393939397897d7063534e555d606b6f767d83888d9297999d9fa2aaa5a6a6a7a7a6a6a5aba39f9d9a98928e89847e78706b605d564e463e362d241b12080000000000000000000000000000000000000000000000000000000000000000000004101c2934404b55606b75818e98a2aeb9c3cfd9d5c9beb3a99f93877c6f75828f98a2aebac3ced9cfc4bbafa3999083786c60574d42362a1f160c010000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd9ccbfb3a6998c8073707d8a97a1adbdc7d2ddd5c9bdb2a89e92857a6d60564d42342a201107000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e6875818e9ba8b1bdc8d4e0d4c7bbafa4999184796d605a50483f352f27221b181413100c0d1113141a1f252a323b434b555e686f7d87929fa9b3bec9d5e1d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d162028313a424a505a61686e757d848b91969c9fa4acacafb6b6b9babfbebfc0c0c1c1c0c0bfbfbdbebab8b6b6afacaba39f9c948f89827b716c605d554d453c342a22180f060000000000000008121a22282d303135353535352f35393a414a545f6a76838f9ca9b6c2cfcfc2b5a99c8f8276695c4f4336291c1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607080808080808080808080808070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104060708080808080808080808070705010000000000000000000000000000000000000000000000020a11171e272e343b42464e54555d60656a6f7376797b7e818486868788898a8b8b8b8b8a8a8987868583817e7c7976726f6a65615e57534e46423b352f271f180f0900000000000000000000000000000713202d3a4653606d7986939f9f9f9f9f9fa99a8d8174655b5860676d747d838a90949a9ea1a9a9acaeb4b2b2b3b4b4b3b3b2b5afacaaaaa29f9b95918a847d746d685f5850483e362d241a11080000000000000000000000000000000000000000000000000000000000000000040e1b242c3845515c67707d89939eaab3becbd4d9cfc7b9ada1978d80746a6e7b86929fa8b1bdc8d4d7cbc0b5ab9f958b7f72695e52463e31281d12070000000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8ccbfb2a5998c7f7275828f9ca9b2bed0d9dcd2c5b9aca0968b7f72675d51443b3022180e00000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c5663707c8995a0acb8c3ced9d7ccc0b5aba0968d81746c615a51454039332d2924201f1d18191d2021262b30363d444c555d676d7a849199a3afbbc4cfdae6d8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d162028323a434c545c606c717b828a91959ea1a8acafb6b9bbc0c3c5c7cbd1cccccdcdcdcdcccccbd0cac6c5c3c0bbb9b5afaca69f9c948f857e756d675e574e463c342a21180e03000000000005101a242c33393c3e4242424242424045474c525b666f7c88949fabb7c4d0cec1b4a79b8e8174685b4e4135281b0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c10131414141414141414141414141414110e080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d111314141414141414141414141413110d08020000000000000000000000000000000000000000040c141c2328303940454d52586062676d71767b808385888b8e91929994959697989898979796959a9392908d8b8985827f7b77726e69625f58534d454039312a221b120a010000000000000000000000000713202d3a4653606d798693a0acacacacacab9e9184786c60616a6f79818990949c9fa6abadb3b6b8babfbebfc0c1c0c0bfbec0bbb9b6b4aeaca7a09d969189817a6f6a615a50483e362c23190f05000000000000000000000000000000000000000000000000000000000000020c16202b37424d57606d7984919ea5afbcc5d0dcd1c7bdb0a69e92857a6d6069737f8c95a0acb8c1cdd7d1c7bdb1a79f92867b6e61594f43392f24180b0200000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd8cbbeb1a5988b7e727a86929facb9c4cfdfd4c8bcb1a79e9184796d60554c4132291f0f0600000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090404040404040404040404040404040404040404040404040404040404040404040404040404040404040403030100000000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a4854606b7784919da7b1bcc8d4ddd2c7bdb2a89d928a7e716c625b514b443f38352f2d2c2924252a2d2e31373b41464f565e676d79829096a1abb5c0cdd6e1e4d8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f28323a444c565d666d747e858f949da0a8acb2b9bbc0c6c8ccd2d2d1cfc9c6c5c3c2c1c0c0c1c1c3c5c6cad0ccc8c6c0bbb9b0aba69e97928b81796e695f584e463c332a1f150900000000000b17222c363e44494a4f4f4f4f4f4f4b5153565e616c78828f9ca6b0bbc7d3cbc0b5ab998c807366594d4033261a0d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181d1f20212121212121212121212121201e19140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13181d20202121212121212121212121201d19130c05000000000000000000000000000000000000050d161e262e343d424b51575e616a6f747a7e83888c8f9298989a9d9fa3aba2a3a3a4a5a4a4a4a3aca49f9e9c9a9898928f8c88837f7b756f6a615f57514b433c342d241c130a0100000000000000000000000713202d3a4653606d798693a0acb9b9b9b9ada197897c6f626c707c848e939c9fa6abb0b8b9bec3c5c7cad0cacbcdcdcdccd1cbc7c5c3bfbab8b1aca8a09d938e847c716c625a50483e352b21170c03000000000000000000000000000000000000000000000000000000000008131e28323a47535f6973808c96a0acb7c1ced7d7cbc0b5ab9f948b7e71685d606d7984919da5afbbc5d0d9cfc3baaea2988e81756b61554b4035291d140a00000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd7cabeb1a4978b7e727f8b99a3afbbc7d3d9d0c7b8ab9f958a7e71665c51433a2f20170d0000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23161111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100f0d0a050000000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e2c38444f5964717e8a95a0acb8c1cdd7d9d0c4baaea49f92877e726d605d55504945403b3a38352f3036393a3d43474d525960686e79828f949fa8b2bdc7d1dfe8e4d8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d28313a444c565e686d78808a92979ea6acb1b9bdc4c8ccd2d4cfcac6c5c1beb9b8b7b5b4b3b3b4b5b6b8babfc1c5c6c9cbc7c2bbb7b0a9a29f938f837b6f6a5f584e453c31261a0e0200000004101c28333e485055575b5b5b5b5b5c555d6063686d75808d949fabb8c2cdd3c7bbafa3998b7e7165584b3e3225180b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d151d24292c2d2e2e2e2e2e2e2e2e2e2e2e2e2d2a251f170e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161d24292c2d2e2e2e2e2e2e2e2e2e2e2e2d2a251e160e0500000000000000000000000000000000070f171f2830383f444f545c60696e757c81858b9095999c9fa2aaa7aaacaeb4aeafb0b1b2b1b1b0b0b6afacaba9a7aaa29f9c9995908c86817c756e69605d554e463e362e251c140a01000000000000000000000713202d3a4653606d798693a0acb9c6c9beb2a99a8d80736c717e8691969da5abb0b7bcc2c5c4c2bfbebdbcbdbfc0c1c4c5c9ced1d2d0cac6c3bcb8b2aca59d9691867e716c625a50473d33291e150b00000000000000000000000000000000000000000000000000000000030c1924303a44505a626e7b86929fa8b2bdc9d3dcd3c7bbafa3999083786c60565c66707d89939ea9b3becad6d6cabeb4aa9e938a7d70675d51453c2f261c1106000000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd6cabdb0a3978a7d7783909dabb5c0cbd7d2c7bdb0a69d9083786c60544b4031281e0e050000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1c1916100a03000000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002101b27323d4653606c7883909da6b0bbc5cfdbd6ccc0bbafa39992887f736d67605b53514b4847454043434146474a4e53565e616b6f7a828f949fa6b0bac4cfd9e3ebe4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071018242f39434c565e686d7a828d929fa2a9b0b8bdc3c9ced4d3ccc7c5beb9b8b5b3adabaaa9a8a7a7a7a8a9acaeb4b4b8b9bec5c7cbc7c1bcb3ada59e9590857c6f6a5f574d42372b1e12060000000814212d3944505a616468686868686969676d70747a828d929da6b0bbcad4d2c5b9ac9f92867a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f272f35393a3b3b3b3b3b3b3b3b3b3b3b3b3936302920170f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f282f35393a3b3b3b3b3b3b3b3b3b3b3a3936302820160c0200000000000000000000000000000710192129313a424a505960666d727b81898e92989d9fa7a9acaeb4b4b7b9babfbbbcbdbebebebebdbdc0bbb9b8b6b4b4aeaca9a7a09d99928e87827b736d675f58504840372e261c130a000000000000000000000713202d3a4653606d798693a0acb9c6cfc4b7aa9e918477717e879298a0a8afb7bcc2c4bdb9b8b5b2b1b0b0b1b2b3b4b7b9bdc4c5c8ced5d3cec8c3bdb8afa8a19892887e716c61594f453b30271c12070000000000000000000000000000000000000000000000000000000a151e2935414c56616c76828f99a3aebac4cedbd5c9bdb2a99f92877c6f655b5054606b75818e97a2adbac2d0d9d0c5bcafa59e9184796d60584e42382d22170b020000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd6c9bcafa396897c7b88959fabbdc7d1d7ccc0b5ab9e94897d70655b5042392e1f160c000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a292826211b150d040000000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b161f2b3744505b65707d8a949ea9b3becad6dcd7cbc0b5aba39a938b8079716c65605d555553514b50504c525457585f62686e747d848f949fa6b0b8c2c8ccd2d9e2e8d8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c19222935404b555d686d7a838f949da4adb3bbc1c8ced5d5ccc7c2bbb7b3adaba8a9a19e9d9c9b9a9a9a9b9d9fa2aaa7abadb3b9bbc0c7cbc5bebaafa7a09791857c6f695f53473a2d2114080000000a1623303c4955616c7175757575757576777a7c81868f939da4aeb8c2ccd5c9beb3a99c8f8276685e5246392d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313940454747474747474747474747474746413b322921170d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313a404547474747474747474747474746413a32281e130800000000000000000000000000061019222b333b434b545c606b70797f868e939a9fa2aaabb1b6b8babfc1c4c5c7cbd1c9cacbcbcbcacad2ccc8c6c5c3c0bfbab8b5b1acaba39f9a938f8680796e6a615a514940382e251c11080000000000000000000713202d3a4653606d798693a0acb9c6d2c5b9aca096887c7d879299a3aab2bac0bdb9b7b2adaba8a6a5a4a3a4a5a6a8abacb2b7b8bdc3c9cfd7d4cec8c0bab2aaa29a93877e716b60574d42392e23180c030000000000000000000000000000000000000000000000000006111c26303845525d68717e8b949fabb4bfccd5d8cfc6b9ada1968d80736a5f53494f59616e7a85929fa7b1bdc7d2d7cec1b9aca1968d80736a5f544a3f33281f14080000000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd5c8bbafa295887c808c99a7b1bccfd9d4c7bbafa4998f82756b6053493f30271d0d04000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c37373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373635322d261f160d0300000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616b75828f97a2adbac0cad4dcd1c7bdb5aca49f928d847e78706d676561605d555d5d565e6163666a6f737b818791969fa6b0b8bbb9bbc0c7d0d6dfd8cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e2b343d45515d676d7a8390959fa6aebabec5cdd4d6cec9c1bbb7b0aba9a29e9b989792908f8e8d8d8e8e909298979b9ea1a9acafb5bbc0c7cac1b9b1a9a19791857b6e6155483b2e2215080000000b1724313e4a5764717e828282828282838486898e92989ea6aeb6c0cad4ccc4b9ada1978b7e7164564c41362a1d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f39434b5153545454545454545454545454524d443b33291f140900000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3a434b51535454545454545454545454524c443a3025190d010000000000000000000000050e18222b343d454d555d666d747d848c92989ea5acaeb4b8bcc2c5c6cad0d0d2d3d7dcd6d5d4d3d4d5d6ddd8d4d2d1cfd0cac6c5c2bcb8b5afaca49f98928c837c716c635b524a40372e231a0f0600000000000000000713202d3a4653606d798693a0acb9c6d4c8bdb2a89b8e81859299a3abb4bcbdb8b2acaaa9a19e9b9998979697989a9b9ea1a8aaacb1b9bec4cbd1d9d4ccc4bcb4aca49992877d70695e544a4034281f1409000000000000000000000000000000000000000000000000000c17232e38424e58606d7a85929ea6b0bdc6d1dcd1c6bdb0a69e9184796d60584e4146525e68727f8b959fabb5c0ccd7d5c9bdb2a89f92877c6f665b50443b3025190d0300000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd4c7bbaea194887b84919daab7c3cdd6cbbfb4aa9f93877c6f62594f41382d1e150b00000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f62564944444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444443423e3831281f150a00000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38414f59616e7b85929fa4aeb8c2cbd4d9cfc7beb6afa49d96918b837d7a75716e6d676a696a6b686d7073777b80868e9299a1a9b0b8b6afacafb6bec5cdd6d8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303d46515b606d79839095a0a7b0b8c0cacfd7d7ccc4bdb9b0aaa69f9c97928e8b8885848281808081828385878a8e92979b9fa3abafb5bdc1cac3bbb3a9a1978f8376695c504336291d100000000b1724313e4a5764717d8a8e8e8e8e8f909193999a9fa2aab0b8c0c8d6cbc3baafa59e92857a6d6054473a3025190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b555d606161616161616161616161615e564d453b30251a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935404b555d6061616161616161616161615e564c41362a1d110500000000000000000000030d17202a343d464e575e676d78808991969fa2aaafb8babfc5c7cdd2d3d6d7d3d2cfcccbc9c8c7c7c7c8c9caccced1d2d5dad6d3d2cec8c7c0bbb6afaaa39f9591867e736d635c52493f352c21180b02000000000000000713202d3a4653606d798693a0acb9c6d9cec3b6a99d938e9297a1abb5bdbab1aca8a09e9996918f8c8b8a898a8c8d8e9196999da0a8adb3bbc0c7cfd8d6cec6beb5aba39992857b6e665c51443b30251a0e04000000000000000000000000000000000000000000000004101c28343f4a54606a74818e97a1adb8c2cfd8d7cbbfb5ab9f948a7e71675d51463c414c56606c78839099a4afbbc4cfdacec4bbafa3999083786c60564d41362a1f150b01000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd6c9bcafa396897c8996a0acb8c5d4d3c7baaea3988e81746a5f53473d2f261b0c0300000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625650505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050504e49423a31261b1005000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3e46525e68717e8b929da6b0b9c3cbd4d9d0c7c0bbaea8a19e95908a86827e7b7a7877767677787a7d7f83888d92989fa3abb2bbb6aca49fa4acb3bbc5cfdacbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e38424e58626d75818e959fa7b1b9c2cad6d9d1cbc1bab2aca69e9c948f8985827e7b787776757474747576797b7e8185898e92999fa3abb0babfc6c4b9aca1968b7e7164584b3e3125180b0000000815222e3b4855616e7b88989b9b9b9c9c9e9fa4abacaeb4bcc1cad0cac2b9b1a89e938a7e70675d514539291e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d676d6e6e6e6e6e6e6e6e6e6e6e6e685e574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d676d6e6e6e6e6e6e6e6e6e6e6d685e5246392d201307000000000000000000020b151f29323c464e5860696e79828d929da0a8aeb4bcc1c6cad0d4d8d6d3d1cbc7c5c3bfbebdbcbababbbcbcbdbfc2c4c5c9cfd2d4d7d9d4d1cbc7c0bbb4aea7a098928b7f736e635b51473e332a1d140a000000000000000713202d3a4653606d798693a0acb9c6d3d2c6baafa59d9b9ea1a9b3bcb4aea8a09d96918c8884827f7e7d7d7e7f808184888c91959ea1a9afb5bdc6ced7d7d0c7bdb5aba1979083786d60574d42362a20150a00000000000000000000000000000000000000000000040d1a232c3844505c666f7c88939fa9b3becad4dcd3c7bbaea3998f82766c61554b41343b44505b666f7c87939fa9b3bec9d5d7cbc0b5ab9f958b7f72685e52463d31271d1207000000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfd9cdc0b3a69a8d808d9aa8b2bdc8d4cabeb3a99f92867b6e61584e43352b1d140a0000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5c5a544c42382d21160a000000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2a36414d56616c74808d949fa7b1b9c2cad6d9d2ccc0bab2ada79f9d98928f8b8886858483838485878a8c90959a9fa2aaafb5bdbbafa49a939aa1a9b3bec9d5cbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54606a727f8b939ea7b1b9c3cbd4d9cfc7c0bbb0a8a19e948f89827d7975716e696a696867676768656c6e7174797d82868d92999ea6aeb4bcbeb3a99e9184796d6053463a2d2013070000000613202d394653606c7985929fa8a8a8a9aaacafb5b8babfc6ceccc6bfbab0a7a0968e81756c61554b413529170c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d797b7a7a7a7a7a7a7a7a7a7a7b75695e52463a2d20160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a7b7a7a7a7a7a7a7a7a7a7a6d6154473a2e2114070000000000000000000a141d27313b444e58606a6f7b838f949da4acb2babfc6ced3d6dad5d0cac6c5c0bbb9b6b3b1b0afaeadaeafb0b0b2b5b7b9bdc2c6c7ccd2d5dad7d2ccc6bfbab1aaa29f918c80736d63594f453c2f261b11060000000000000713202d3a4653606d798693a0acb9c6d3d6cbc0b7afa9a7abadb3b9b1aaa29f95918a847f7b78757372717071727375787c80848a91979fa3abb4bcc6ced7d9d0c7bdb3a99f958c7f72695e52463c32261b0f030000000000000000000000000000000000000000010c161f2a36424d57606d7883909aa4afbbc5cfdcd5c9bdb2a89f92877b6e625a50433a2f333f4a54606a74808d97a1adb9c2cfd8d1c7bdb1a79f92857b6e61594f43392f24180b020000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdccec1b5a89c928d929ca8bac3ced2c6b9ada2978d8073695e52463c3123190b020000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a69665e54493e3226190d010000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b1925303b44505a606d78828f959fa7b0b8c0cad0d7d8ccc4bdb9b1abaaa29f9b9894979291909091929796999da0a7acaeb4bbc0b9b0a69f93869297a1adb9c6d2cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202c3844505c666f7c87929fa5afb9c2cbd5d9d0c7bdb5afa69e969189827c76706c6665615f575c5b5a5a5b535b606164666c70757b80878f949fa2aab1b9ada1978b7f72665c5144382c1f120600000005121f2b3744505b657683909ca9b5b5b6b7b9bbc0c5c6cac8c7c0bbb4aea69f9590847a6d615a50433a2f24180500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7c8787878787878787878787877b6e6154483d32271b0f0100000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f878787878787878787878276695c504336291d10000000000000000006111b262f39434c565f6a6f7c8590959ea6aeb8bdc3cad0d7dad5cfc9c5bebab8b5afaca9a6a4a3a2a1a0a1a2a3a4a5a8abadb2b5b9bbc0c7c9cfd8ddd8d1cbc3bcb4aea39c928c7f726c61574d41382d22170b0100000000000713202d3a4653606d798693a0acb9c6d3ddd2c9c0bab6b4b8b9b8b0a7a098928b847d78736e696866656463646567686a6f73777e858d9299a2aab4bcc5ced7d9cfc5bbb1a79f92867b6e61584e43372b201509000000000000000000000000000000000000000007121d28313946525e69727f8c95a0acb6c0cdd6d8cec6b9aca1968d80736a5f53483e31282d38424e58606d7a85919ea6b0bdc6d1d9cfc2baada2978e81756b61554b4035291d140a0000000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd1c5b9aea49c9a9ca4aeb9ccd5c9bdb2a89e92857a6d60574d42342a201107000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777670665a4e4235281c0f030000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141f29323e44505c666d7a8390959fa6aebabec5ced3d6cfc9c2bcb8b4aeaca8a4a9a29f9d9c9d9e9ea1a9a6aaabb1b8babfc1b9b1a79f948c7f85929eabb8c5d2cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141f2a36424d57606d78839099a3aeb7c1cbd4ddd2c7beb5aba39f948f847c756f6a63605b5455534d4f4e4d4d4e49505354545b6063696e747b828b9298a0a7b1a99e9285796d60544a4034281c1004000000030f1b27333f49536774818d9aa7b4c0c3c4c6c7c7c5c3c1bcb8b6afaaa29f9490837b6e685e52483e31281d130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3a47535f6a7783909494949494949494998c7f7266584e43382b1d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c94949494949494948f8376695c504336291d1000000000000000000b17222d38414b555e686f7c869197a0a7b0b8c0c8ced6dbd6cfc9c4bdb9b3adababa39f9c99989695949494959697999b9ea1a8a9acafb5b9bec5ccd2d9dcd7cec6bfbaada49f93887d70695f53493f33271d130700000000000713202d3a4653606d798693a0acb9c6d3e4dbd2cbc6c2c1c1b7afa69e9590867f78706c65615f575958575657595a585f62666c717a80879298a2aab4bcc5d0dbd6cdc2baaea2988f82756a5f54473c31261a0e00000000000000000000000000000000000000020b18242f39434f59616e7b86929fa7b1bec7d2dcd0c6bcb0a69e9184796d60574e42362c1f262f3c45525d68717e8a949fabb4bfcbd7d6cabeb3a99e93897d70675d51453c2f261b110600000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcd5cac0b6aea8a6a8aeb6c0cad2c5b9aca1968c7f72685d52453b3022180e00000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3ddd0c4b7aa9d9184838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838276695c504336291d10030000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d172028343f4a545d686d7a8390949da4adb3bcc1c7cdd4d5cdc8c6bfbab8b5b1b3adabaaa9a9aaabadb3b2b6b8bcc3c6bfbab0a7a0958f8279818e9bacb6c0cccbbeb1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1925303a46525e69727f8c95a0abb5bfc9d3dcd8ccc0b6aca399928c827a6f6a62605853504a48464243424141413f4446484a5053575e61696e757e8690959fa7a2978c7f72675d5142392e23180c00000000000b17222d3e4b5865717e8b98abb5c0bcbcbbbfbab9b6b4b1acaca49f98928c827a6e695e564c41362c1f160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e5865727f8b99a3a1a1a1a1a1a19d9184776a605447392f23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a1a1a1a1a1a19c8f8376695c504336291d1000000000000000040f1b27333f49535c676e7a849198a1a9b1b9c1cad4d9dad5cdc4beb9b2ada9a29f9a9992908c8b8a8987878889898a8c8f9196979c9fa4abadb3bbc0c7d0d6ded7d0cabfbbafa49a92867b6e655b50443a2f24180d01000000000713202d3a4653606d798693a0acb9c6d3dfe4ddd6d2cbc1b8afa59e948f837c726d66605b53534d4c4b4a4a4b4c4d4e54555a61676d737d869298a2aab4becad6dfd6cabfb4aa9e93887c6f62574d42372b1c11060000000000000000000000000000000000000a141d2935404b55616c75828f98a2aeb9c3d0d9d6cbbfb4aa9e948a7d70675d51453c31241a1d2935414c56616c76828f99a3aebac4ced9d0c5bcafa59e9184796d60584e41382d22170b02000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdcdcd2c8c0b9b5b3b5b9c0c8d4c8bcb1a79e9184796d60564c4133291f100600000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3ded1c5b8aca095919090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909085786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e17232e38424c565d686d7a828d929fa2a9afb7bcc2c7cbd1d4d0cac7c5c2bebebab8b7b6b6b7b8b9bebfc3c4c7c1bcb4aea69e9590837a717e8b9aa4afbbc8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414d56616e7b86929fa7b1bdc6d1dbd4cac2bbafa49a92877f776d686058544e46443f3b3a36313534342d3337393b3f44464d52575f626c717b8390959f9f92857a6d60554b4030271c120700000000000616232f3c4956626f7c8999a4afafafafafb4aeacaaa7a7a09d9a938e867f796d685e564d443a30241a0d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26313c4754616d7a86929facadadadadaca096897c6f62554b4034291c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5adadadada99c8f8376695c504336291d10000000000000040d1a242b3744505b656d79839096a1aab3bbc3cbd3dcd6cfc9c1bbb3ada8a19e97928d8a8683807e7d7c7b7a7b7c7d7d7f8284878a8f93999ea1a9afb6bec4ccd5dedbd6ccc0b6aca2988f82776c60554b4035291d1207000000000713202d3a4653606d798693a0acb9c6d3dfeae1d7cdc3b9b0a69e938e82796e6a605c5450494642403f3e3d3e3f4043474950555d606b707d869298a2aebac2ced7dbd0c6bcafa59b8e8175695f5347382e23170b000000000000000000000000000000000006111b262f3845515d67707d8a939eaab4bfcbd5dcd3c7baaea3988f82756c61554b40332a201219242f3a43505a626e7b86929fa8b2bdc9d5d7cec1b9aca0968d80736a5f53493f33271e1308000000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce3dad2cac5c1c0c1c5cad2d0c7b8aca0958b7e71675c51443a2f21170d0000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3e1d4c8bdb1a8a09d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303a444c565d686d78808a92979ea5abb0b9bbc0c6c7ccd2d1d2ced0cac6c5c4c3c3c4c5c6cac7c5bfbab9afaaa39f948f837a6d6e7a87939facb9c1c1beb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e6874818d98a2aeb9c3cfd8d8cfc2b8afa59f93887e726c655d564e47433d38332d2d2a2628272722272b2d2d33383b42464d535a62696e7a839094988d8073685d5243392f1e150b0000000000000714202d3a4753606d7a86939fa3a3a3a3a2aba39f9d9a9895918c87817b736d675d564d443b32281e120800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202d3946525e6875828f9ba9b3bebabdb2a89a8d8174675c5145382c1f1409000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2babab6a99c8f8376695c504336291d100000000000010c161f2b37434e58606c77818e959fa8b2bcc4cdd5ddd5cdc5beb9afa9a19e96918c85817d7a767371706f6e6d6e6f70717275787a7e82878c92979fa4acb2bac3ccd5ddddd2c7beb4aa9f948b7e71675d5145392f24180c000000000713202d3a4653606d798693a0acb9c6d3dfe3d9cfc5bbb1a79e948e81786d675f58504a443f383631323130313232373b3e434c5159606b707d86929fa6b0bcc5d0dbd7cec1b9ac9f93877b6e62544a3f34281c1003000000000000000000000000000000000b17222d38414e58606d7984919ea5afbcc6d0ddd5c9bdb2a89f92867b6e615a5043392f21180e131e28313e47535f6973808c96a0acb9c1ced7d5c9bdb2a89f92877c6f655b50443a3025190d030000000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9e3dcd5d1cecdced1d5d2c7beb0a69d9083786c60554b4032281e0f050000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3e5d9cec3bab1acaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa9f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e28323a444c565d666d747e858e939c9fa6acafb5b9bbc0c2c4c5c7cbd1c9c9d1cbc7c5c4c2bfbab9b4aeaca59e98928c827a6d68687783909daab4b4b4b4b1a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b55616e7b86929faab4bfcbd5dcd1c6bcb0a69d928c7f726c605b534c443d38322b2822211e1a1b1a1a171b1f2022282b30363c424750575f686d79829092867a6d61564c4131271d0c0300000000000006131f2c3945515d67778491969696969695949992908e8b88847f7b756e69605c554c443b322920160c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c5664707d8a97a1adb9c6c3b8ab9f9285796d6053473b30251a0e020000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000007131d28313a47535f6a737f8c939ea7b1bac4ced6ddd4cbc3bbb3ada59e97918b847f7a74706d67666563626161616263646668686e71767b7f858e939aa0a8b2bac3cbd5e0d9d0c5bcb0a69e9285796d60554b4035291d10040000000713202d3a4653606d798693a0acb9c6d3e8dcd1c7bdb3a9a0958f82786d665d554e443f38332d2a262524232426262b2e313a41454f59606b717e8b949faab4bfcad6e0d4c7bbafa4998d8074665c5044382b1f1206000000000000000000000000000000030f1b27333f49535f6a73808d96a1acb7c1ced7d8cec6b9aca0968c8073695f53483e31271d0f060c161f2b37424d57606d7984919ea5afbcc5d0d9cec4bbaea3999083776c60564c41362a1f150b0100000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9eee7e1dddad9daddd8ccc0b6ac9f94897d70665b5043392e20160c000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3eadfd5ccc3bdb8b7b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6ab9f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c162028323a434c545c606c717a818990949c9fa3abacafb5b5b7b9bbc0bcbcbcbbbfbab9b7b5b4aeacaaa39f9b938e867f776d685e6673808d99aaa8a8a8a8a8a5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d6773808d98a3aebcc6d0ddd7cbbfb4aa9f948e80746d635a5049413a322b271f1c1714120e090e060b0f1213171c1f252a31373e454d565d676d7a848d8074685e52433a2f1f150b0000000000000004101d2935404b556875818989898989898888878683817e7c77726e69615e57514b433a322920170e04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a4653606d7985929eabb8c3c6baada2978a7e7164574d42362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000010d18242f3a43505a626e7c87929fa5afb9c2ccd6dcd3cbc2b9b1a9a19e938e857e79726d6764605d5558575654545556565759565e6164696e737a81889196a0a8b1b9c3ced7e2d7cec2b9ada1978c7f72675d5145382c1f13080000000713202d3a4653606d798693a0acb9c6d3e3d7cbc0b5aba1979083796d665c544b433c342e27221b1a18171718191b1f22282f353d474f59626c76828f98a2aebac5d0dbd7ccc0b5ab9e9185796d6053463a2d20130a0000000000000000000000000000030c19232b3744505b656f7c87929fa8b2bdc9d3dbd0c6bcafa59e9184796d60574d42362c1f150b00040d1a26313c45515c67707d8a939eaab4bfcad6d7cbbfb5ab9f948b7e71685e52463d31271d120700000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9f6f2ede9e7e6e9e0d4c8bbafa49a8f82766b60544a3f30271d0d04000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6e3e3e7ded5cec8c5c4c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3b8ab9f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdcad6e3d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e162028313a424a515a61686e757d83898f92999d9fa4aba9aaacafb5afafafafb4aeacaaa8aba39f9c98928e89817b726c655d5663707c89989b9b9b9b9b9b9b988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929faab4bfced7e0d3c7baaea3988f82786d605b51443f382f28201b160f0b060502000100000305060b0f141a1f262b333c444c555d686f7c857b6e61564c4131281e0d0300000000000000000c18242f3b4855616e7b7d7c7c7c7c7c7c7b7a797774726f6a66615e57524d454039312820170e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131f2c3844505c6674808d9aa7b1bcc8beb3a99c8f8276695e52463a2d20150a0000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000004111d2935414b55616c76828f99a3afb7c1cbd4dcd3cac1b8b0a7a097928a817a716d66605d5554514c4b4a49484748494a4a4c4c5254575e61686d747d849196a0a7b1bcc5d0dbe0d6cabeb3a99e9285796d6053473a3025190d0100000713202d3a4653606d798693a0acb9c6d3e0d3c7bbafa39992857b6e675d544a42393128231c17110e090b0a0b0a0f13161e2429353d47505a616e7b86929fa9b3becad6ddd2c7b9ada197897d7063564a3d31261a0f03000000000000000000000000000b151e2a36414c56606c77839099a3afbac4cedcd6cabfb4aa9e938a7d70675c51453b31241a0d03000009151f2934404b55616b75818e98a2aebac3d0d9d1c6bdb0a69f92857a6d61594f43392f23180b02000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce9f0f0f0f0f7ece1d7cbbfb4ab9f93877c6f62594f42382d1e150b00000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdcad6d6d6d6d6d6d9d4d1d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0c5b8ab9f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdcad6d6d6cabdb0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e161f283039404450565e616b70767c82868b909399999c9e9fa3aba2a3a2a2aba39f9d9b9999928f8c86817c756e69605b5353606d79868e8e8e8e8e8e8e8e8e8b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5664717e8a98a2aebcc6d1e0d6cabeb3aa9f92867b6e665c50493f332d261d160e0a0300000000000000000000000003090e151a212a323a434c565f6a6f7b6e695e53443a301f160c0000000000000000000714212d3a46535f696e7070707070706f6e6d6d666765625f5854534d46423b342f271f160e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54626f7c8895a0acb8c6c5b9ac9f93877b6e6154473d32271b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000613202c3945515d67717e8a949fabb5c0c9d3ddd3cac1b8b0a69f9590857e756d68605c54514b4745413e3d3c3b3a3b3c3d3e3f4146474d52565d616b6f7b849095a0aab4becad6dedacfc5b9ada1978a7e7164564c41362a1d110500000713202d3a4653606d798693a0acb9c6d3dfd2c5b9ac9f92877d70695f554b423830271f17110b0600000000000003060c1319232b353e46535e69727f8b97a2adbac6d3dfd5c9beb3a99b8e817468584e43372b1f120600000000000000000000000007121d27303946525e68717e8b949fabb5c0ccd6dbd3c6baaea2988f82756b61554b40332a1f1108000000030c18232f39434f59616e7b86929fa7b1bec7d2d8cfc2baada2978e81756b60554b4034291d140a000000000000000000000000101d2a3643505d697683909ca9b6c3cfdce3e3e3e3e3e3e6dbd0c7baaea3998e81756a5f54473d2f261c0c0300000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c5b8ab9f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdc9c9c9c9c9bdb0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161e272e343e444c525960636b6f757a7f83868a8d8f9192999595969695949992918f8d8a86837f7a756f6a615e575049515c66737f818181818181818181817d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d6875828f9caab4becfd8dfd3c6baaea2988d8073695e544a3f3727221b140b040000000000000000000000000000000003090f182028313a434e585f696e695f574d4232291e0d0400000000000000000005121e2b37424d575f61636363636363626161605c545855534e4846423b363029231d150d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e3847535f6a7783909dabb5bfc7bbafa4998c7f7266584e43372b1d120700000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000005111d2a36414c56606d7984919ea6b0bdc7d1dbd5ccc2b8b0a69e9490837b716c615d56514a45413a39352f302f2e2e2e2f30313036393b42464c525960696e7a839098a2aebac2cdd8e1d5c9beb3a99c8f8275685e5246392d20130700000713202d3a4653606d798693a0acb9c6d3d9ccc0b3a6998d80736b60574d433a2f261e150d060000000000000000000001081119232a36424d57606d7985929fabb8c2cdd8dacfc4b8ab9e9185786a5f53473a2e2115080000000000000000000000000c18232e39424f59616d7a85929ea6b0bdc7d1ded4c8bdb2a89f92867b6e61594f43392f21180e000000000007121d27313e46525e69727f8c95a0acb6c0ccd8d6cabeb3a99e93897d70675c51453c2f261b11060000000000000000000000101d2a3643505d697683909ca9b6c3cfd6d6d6d6d6d6d6d6d6cabeb3a99f92867b6e61584e43352b1d140a0000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1ced6d3c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdb8ab9f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0bdbdbdbdbdbdbdb0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c151c2328323b41464f54596063686e72767a7d808284868788898989888887868482807d7a76726d68626058534d44404b54636d7375757575757575757575706b6054483c2f221609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d0dfd6cabeb3a99f92857a6d61574d42382e2517110a0200000000000000000000000000000000000000060e161f28313c464e575f615f574d453b3120170d00000000000000000000020e1a26313c454d535556565656565655555453504a4b4847433c3a36312a251f18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2b37434e5865727f8b99a3aebbc7c0b5ab9d9184776a605447392e23180c00000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000713202d3946525e6873808d97a1adb8c2cfd9d7cec3bab0a69e948f827a6e69615a524c444039352f2c29242423212122232324252a2d30363a41464f575e686e7b86929fa6b0bcc7d3e2dacfc5b9ac9f92867a6d6154473a2e21140700000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265594f453b31281d150c030000000000000000000000000007111a25313b45515d6774808d9aa7b1bcc8d4dfd2c6b9ada197887b6f6255483c2f221507000000000000000000000004101c2834404b54606b74818e97a2adb9c2cfd9d7cec5b8aca0968c7f72695e53473e31271d0f060000000000010b151f2a36424d57606d7883909aa4afbbc5cfdacfc5bbafa59e9184796d60584e41382d22170b0200000000000000000000101d2a3643505d697683909ca9b6c3c9c9c9c9c9c9c9c9c9c9c6baada2978d8073695e53463c32231a0b020000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1c9c9c9c6baada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0ab9f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3b0b0b0b0b0b0b0b0b0a4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b1218202930363d44484f54565e6165686d70737677797b7b7c7c7c7c7b7a79777573706d6765615e56544e46423b3942515b6366686868686868686868686360594f44382c201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a99a3aebbc7d3dfd3c6baada2978c7f72685e52453b30261c130600000000000000000000000000000000000000000000040d161f2a343c454d5355534d453b33291f0e05000000000000000000000009141f2a333c42464849494949494949484746443f3f3c3b37322d2a251f1a140c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1b26323c4754616d7a86929facb9c5c7b8aca095897c6f62554b4034281c1004000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000030f1c28333f4a54616d7a86929fa9b2becad4d9d0c5bcb2a89f948f82796d685e565046413a342e2924201d191716151415161717191e20252a30353d454d565e69727f8b949fabb7c5d0dbe0d3c7bbafa3998a7e7164574a3e2e23180c00000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f33291f160b0300000000000000000000000000000009141f2935404b55626f7c88959fabb8c4d1ddd5c9beb3a9988b7f7265584c3f2f24180d01000000000000000000040d1a242c3845515c66707d89939da9b3becbd4dbd0c5bcafa59d9184796d60574d42352c1f150b00000000000000030d1a25303b44505c666f7c87939fa9b3bec9d5d7cdc1b9aca0968c80736a5f53493f33271e130800000000000000000000101d2a3643505d697683909ca9b6bdbdbdbdbdbdbdbdbdbdbdbdb2a89f92857a6d61574d42342a201108000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4bdbdbdbdbdbaada093877a6d6054473a2d211407000a1724313d4a5764707d8a97a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39f9285786c5f5245392c1f12060000000a1724313d4a5764707d8a97a3a3a3a3a3a3a3a3a3a3a3978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e171e252a32383d43484c5254565d60636669666d6e6f6f706f6f6e6e6d66686663605d5554524c47433d36313040495157595b5b5b5b5b5b5b5b5b5b56544f473d33271c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c566774818d9aabb5bfcbd7ded2c5b8ab9f9285796d60564c4133291e150a000000000000000000000000000000000000000000000000040d18222a333b42464846423b332a21170d000000000000000000000000030e18212a31373a3b3d3d3d3d3d3d3c3b3a3a38342e2f2e2b26211e1a140e0902000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202d3946525e6875828f9ba9b3bec8bdb1a89a8d8174675c5145382c1f1408000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000006121f2b3844505b66727f8c98a3aebbc4cfddd2c7beb4aaa0968f82786d675d564d443e353028231c1813110d0809080708090a080d11141a1e2429333b444d57606c7883909caab4becad6e2d7cbc0b5ab9a8d817467544b4034281c1004000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225180d0400000000000000000000000000000000030c18242f3947535f6a7683909da9b6c3d1dcdacfc2b5a89b8f827568554b4035291d10040000000000000000010c161f2a36424d57606d7983919da5afbbc5cfddd6cabeb4aa9e93897d70665c51453b31231a0d03000000000000000009141f28343f4a54606b74818e97a1adb9c2cfd9d4c8bdb2a89f92867c6e655b50443a3025190c03000000000000000000101d2a3643505d697683909ca9b0b0b0b0b0b0b0b0b0b0b0b0b0ada1968c7f72685e52453b3122190e00000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b0b0b0b0b0b0b0ada093877a6d6054473a2d211407000a1724313d4a5764707d8a9696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969285786c5f5245392c1f12060000000a1724313d4a5764707d8a969696969696969696969696968a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d141921272c32383b4146474c5254575a545c606162626363626161605c545a5753514b4746413a37322a252e3740464b4c4e4e4e4e4e4e4e4e4e4e4a48443d352b21160b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e687784919daab7c4d1dcd8ccc0b6ac9b8e8275675d51443a3021170c0300000000000000000000000000000000000000000000000000061018212a31363a3b3a36312a21180f0500000000000000000000000000060f181f262b2d2e3030303030302f2e2e2d2b282322211f1b15120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c5664707d8a97a1adb9c6c3b8ab9f9285796d6053463b3025190e020000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000613202d394653606c7884919eaab4bfcdd6d8ccc0b6aca29891847a6d665d554c443b3229241e18120d07040100000000000000000105090e13192029323b44505b65717d8a98a2aebac6d3dfdcd1c3b7aa9d908477665c5145382c1f1306000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000007121d2b37434e5865727f8b98abb4bfcbd7ddd1c4b7aa9e918477675d5145392c201306000000000000000008131e28313a46535f69727f8c95a0acb7c1cdd7dbd3c6baaea2988e81756b60544b4033291f1108000000000000000000020c17232e38424f59616d7a85929ea6b0bdc7d1d9cec3baaea3999082776c60564c41362a1e150b000000000000000000101d2a3643505d697683909ca3a3a3a3a3a3a3a3a3a3a3a3a3a3a79e9184796d60564c4133291f100700000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba3a3a3a3a3a3a3a3a3a093877a6d6054473a2d211407000a1724313d4a5764707d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a85786c5f5245392c1f12060000000a1724313d4a5764707d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a7e7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080e161c21272c3036393b4145474a4d4a5053545556565655555453504a4d4a4745403a3935302b27201a252e353b3e40424242424242424242423d3c38332b23190f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86939facb9c6d2dfd4c8bbafa49a8b7e7164554b4032281e0f05000000000000000000000000000000000000000000000000000000060f181f262a2d2e2d2a261f180f06000000000000000000000000000000060e141a1e2122232323232323222221201f1c171515120f0a05020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a4653606d7985929eabb8c3c6baada2978a7e7164564d41362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100005111e2a36414c5663707d8a96a0acbcc6cfd7d4c8bbafa49a92867c6e685d544b433a32292019130c0700000000000000000000000000000002080e172027333f4953606d7985929fabb8c5d2dedfd2c6b9ac9f9386796d6053463a2d201307000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000010f1b26323c4955626f7c8899a3aebac7d3dfd2c6b9ac9f93867a6d6053473a2d20140700000000000000020b19242f3a43505a616e7b86929fa7b1bcc9d2dfd4c8bcb1a79f92867b6e61594f42392e21170d000000000000000000000006111c26303d46525e68717e8b949fabb5c0cbd7d7cbbfb4ab9f948b7e71685e52463d30271d12070000000000000000101d2a3643505d6976839096969696969696969696969696969696958b7e71675d51443a3021170d0000000000000000000000000000000000000000000000020f1b2835424e5b6875818e969696969696969696969693877a6d6054473a2d211407000814212e3b4754616e7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7063564a3d3023170a000000000814212e3b4754616e7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10161b1e252a2d2f35393a3d403f4446484849494949484746443f403d3a39352f2d29251e1b16131c232a2f323335353535353535353535302f2c272119110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d899aa4afbbc8d4dfd2c6b9ac9f93877a6d6154473a2f21160c0000000000000000000000000000000000000000000000000000000000060e141a1e2122211e1a140e06000000000000000000000000000000000003090e1214151616161616161615141312100b0608060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131f2c3844515c6674808d9aa7b1bcc8beb3a99c8f8275685e5246392d20150a0000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000714202d3946525e6875828f9ca8afb9bec5cdcabeb3a99f93887e706a5f564c4239312820170e0802000000000000000000000000000000000000050e17222d3845515c6774818e9ba7b4c1cedae0d4c7bbafa499887b6e6255483b2f221508000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000a13202d3a4653606d7986929facb9c5d2dfd4c8bbafa49a897c6f6256493c2f231609000000000000000a141d2935414c55616c76828f98a2aeb9c3cedbd7cdc5b8aca0958c7f72695e52473d30271d0f050000000000000000000000000a151e2935414c56606c77829099a3afbbc4cfdad1c6bdb0a69e92857a6d61594f43392e23180c0300000000000000101d2a3643505d6976828a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a83786c60554b4032281e0f050000000000000000000000000000000000000000000000020f1b2835424e5b6875818a8a8a8a8a8a8a8a8a8a8a8a8a877a6d6054473a2d211407000714202d3946525e686e7070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706b6055483c2f231609000000000714202d3946525e686e7070707070707070707070707070706e695e52463a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f14191e2024292c2d302e34383a3b3c3c3d3c3c3b3b3a38342e302d2c2924201d19130f0a0a12191e232526282828282828282828282322201c160f080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98acb6c0ccd8dcd0c3b6a99d908376685e5246392d20130400000000000000000000000000000000000000000000000000000000000003090e12141514120e09030000000000000000000000000000000000000000020507080a0a0a0a0a0a090807070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a54626f7c8895a0acb8c7c5b9ac9f92867b6e6154473d32271b0f0000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000814212e3b4754616e7a8692979ea5adb3bbc1c6baada2978e81746c61584e443a30271f160d0500000000000000000000000000000000000000000006111b2934404b5565727e8b98a5b1becbd8e3d7ccc0b5ab968a7d7063574a3d3024170a000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000006131f2c3845515c667683909da9b6c3d0dcd8ccc0b6ac978b7e7164584b3e3125180b00000000000006111c262f3845515d67717e8a949eaab4bfccd5dbd0c5bbafa59d9083786d60564d42352b1e150b00000000000000000000000000030c1925303a44505b656f7c87929fa8b2bdc9d5d8cfc2b9ada1978e81746b60554b4034281f150900000000000000091623303c4956636f7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e665b5043392f20160c000000000000000000000000000000000000000000000000000916222f3c4955626f7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d796d6053463a2d2013070005111e2a36414c565e6163636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636360594f44382c2014070000000005111e2a36414c565e61636363636363636363636363636363615e564d42362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080e1114191d20212423282c2d2e2f2f30302f2e2e2d2b28232420201d1813110d08020000070d121619191b1b1b1b1b1b1b1b1b1b171613100b05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0d2ddd9ccbfb2a6998c7f7366564c41362a1e110500000000000000000000000000000000000000000000000000000000000000000205070807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3947535f6a7783909dabb5c0c7bbafa3998c7f7265584e43372b1d120700000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000714202d3946525e68717e858e939ea1a9afb9bcb1a79f92857a6d615a50463c32281e150d0400000000000000000000000000000000000000000000000c18232f3d4a5763707d8a96a3b0bdc9d6e8ddd2beb1a5988b7e7265584b3f3225180c000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000004101c2834404b546774818d9aa7b4c0cddaddd2bfb2a6998c7f7366594c403326190d0000000000000b17222d38424e58606d7a84919ea6b0bcc6d0ded6cabeb3a99e93897d6f665c50443b3023190c03000000000000000000000000000008131e27333f49535f6a73808d96a1adb9c1ced8d6cabeb3a99d93897d70675c51453c31261a0e040000000000000915222f3b4854606b6f7070707070707070707070707070707070706e695f544a3f31271d0e04000000000000000000000000000000000000000000000000000815212e3b47535f6a6f70707070707070707070707070706d665c5044382c1f120600010d1925303b444c5254575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575756554f473d33271c100400000000010d1925303b444c525457575757575757575757575757575754524d443b3025190e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205080d11131417171c1f202122232323222221201f1c17171413100d070501000000000002060a0c0d0f0f0f0f0f0f0f0f0f0f0a0907040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c2936424f5c6975828f9ca8b5c2cfdbd7ccc0b5ab968a7d7063574a3d3025190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020608080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a08070502000000000000000000000000000000000106090b0c0e0e0d0d0c0c0b0a0807060401000000000000000000000000000000000000000000000000000000000000000000000007121c2b37434e5865727f8c99a3afbbc7c0b5ab9d9184776a605447392e23180c00000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100005111e2a36414c56616c717a818a92979ea5adb3aba0958b7e72685e52483e342a20160c030000000000000000000000000000000000000000000000000716222f3c4955626f7c8895a2afbbc8d5e2d8cbbfb2a5988c7f7265594c3f3226190c000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000c18232e3e4b5864717e8b97a4b1becad7dacdc0b4a79a8d8174675a4e4134271b0e0000000000030f1c28333f4a545f6a74808d96a1adb8c2ced8d9d0c7baada2978e81746b60544a3f32291f1107000000000000000000000000000000020b17222d38414e58606d7984919ea6b0bcc6d0dacfc5bbafa59d9184796d60574d42372b20160c02000000000007131f2c38434f596063636363636363636363636363636363636363615f574d42382d1f150b000000000000000000000000000000000000000000000000000006131f2b37434e585f626363636363636363636363636363605c544a3f34281c1003000008141e29323b4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a48443d352c21160b00000000000008141e29323b4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4746423b32291f14090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001040707060c10121315151616161615141312100b0607060401000000000000000000000000000202020202020202020200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2a3744515d6a7784909daab7c3d0ddd4c7bbafa499887b6e6255483b2f22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f121415161616161616161616161616161616161616161616161616161616161616161616161514120e090300000000000000000000000000060d121618191a1a1a1a19181817151413110d0809070603000000000000000000000000000000000000000000000000000000000000000f1b26323c4754616d7a86929facb9c5c7b8aca095897c6f62554b4034281c1004000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000020e1925303b44505a61686d757e858e939ea1a9a89d9083786c60564c41362c22180e04000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9ccbfb2a6998c7f7366594c403326190d000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000071623303c4956636f7c8996a2afbcc9d5dbcec2b5a89b8f8275685c4f4235291c0f00000000050f1a232b3844505b666f7c87929fa9b2bdcac9c9d2c7beb1a79f92857a6d61594f42382e20170d000000000000000000000000000000000006111b262f3c45515d67707d8a949eaab4bfcac9c9cdc1b8aca0968c7f73695f53473e32281e13080000000000030f1b27323d464f545657575757575757575757575757575757575755534d453c2f261c0d030000000000000000000000000000000000000000000000000000030f1b26323c464e5355575757575757575757575757575753504a42382e23170c000000020d1720293036393b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332c231a0f05000000000000020d1720293036393b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a36302920170d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306070809090a09090808070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ded2c6b9ac9f9386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e151a1f21222323232323232323232323232323232323232323232323232323232323232323232322211e1a140e0600000000000000000000010911181e22242527272727262524232221201d1919161312100c0604010000000000000000000000000000000000000000000000000000000a15202d3946525e6875828f9ca9b3bec8bcb1a79a8d8074675c5145382c1f1408000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000008141e29323e4850565e616c717a818a92979ea0968a7d70665b50443a30231a0f0600000000000000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5e1d9cdc0b3a69a8d8073675a4d4034271a0d000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbd2dddcd0c3b6a99d9083766a5d5043372a1d10000000000b16212a36414d56606c78839099a3afbbbdbdbdbdbdc0b6aca0958b7f72685e52473d30261c0e050000000000000000000000000000000000000a141d2935404b55616c75828f98a2aebabdbdbdbdbdbdb2a89f92867b6e625a50443a3024190d0000000000000a16212b343d4348494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4846423c332a1d140a000000000000000000000000000000000000000000000000000000000a15202a343c4347494a4a4a4a4a4a4a4a4a4a4a4a4a4a46443f3830261c110600000000050e171e252a2d2e3030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302f2c27211a11080000000000000000050e171e252a2d2e3030303030303030303030303030302e2d2a251f170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b546c7885929fabb8c5d2ded1c5b8ab9e928578665c5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1820262b2e2f303030303030303030303030303030303030303030303030303030303030303030302e2d2a261f180f0600000000000000000009131b23292e313234343433333231302f2d2c29242523201f1c1713110d08010000000000000000000000000000000000000000000000000005111e2a36414c5664707d8a97a1adb9c6c3b8ab9f9285796d6053463b3025190e020000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000020d17202c363e444c525a61686d757e858e939d9184786c60544a3f32291e11080000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6e3d9ccbfb3a6998c807366594d4033261a0d000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000815212e3b4854616e7b8794a1b5c0ccd7ddd0c4b7aa9d9184776a5e5144372b1e1100000004101c27333946525e68727f8b959fabb5b0b0b0b0b0b0b0afa49a9083786c60564c41352b1e150a00000000000000000000000000000000000000020b18242f3943505a616e7b86929fa8b1b0b0b0b0b0b0b0aea3988f82766c61564c4135291c11060000000000040f19222b32383b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a37312a21180b0200000000000000000000000000000000000000000000000000000000040e18222a32373b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a38342e261e150a000000000000050d14191e202124242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242323201c160f0800000000000000000000050d14191e202124242424242424242424242424242421201e19140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c0f11121313131313131313131313131313120f0a050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c667986929facb9c5d2ded1c4b7ab9e9184786b544b4034281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e18222a31373a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a36312a21180e0300000000000000030c1b252d343a3e3f414140403f3f3e3d3b3a39352f322f2d2c2823201d19130f0a040000000000000000000000000000000000000000000000010d1925303a4653606d7985929eabb8c3c6baada2978a7d7164564c41362a1e11050000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000050e1a242c323a414650565e616c717a818a928b7f72655b5042382d20170c000000000000000000000000000000000000000000000000000000030c1524313e4b5764717e8a97a4b1bdcad7e4d8cbbeb2a5988b7f7265584c3f3225190c000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000714212d3a4754606d7a8799a4afbbc7d4ded1c4b7ab9e9184786b5e5145382b1e120000000714202c38444f59616e7b85929fa7a3a3a3a3a3a3a3a3a3a99f93877c6f665b50443a3023190c03000000000000000000000000000000000000000007121d28313e46535f69737f8c95a0a3a3a3a3a3a3a3a3a3aa9f948b7e71685d5246382d22170b00000000000007101921272c2f303030303030303030303030303030303030302e2d2b261f180f0600000000000000000000000000000000000000000000000000000000000006101820262b2e2f30303030303030303030303030302d2c28231c150c030000000000000002080d1114141717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171614100b0500000000000000000000000002080d1114141717171717171717171717171717171414110e0902000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c13181b1e1f20202020202020202020202020201e1b1610090100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798699a3afbbc7d3ddd0c4b7aa9d9184776a5e51442e23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343c434748494949494949494949494949494949494949494949494949494949494949494949494846423b332a1f1409000000000000000b151e2d373f464a4c4d4d4d4d4c4b4b4a48474541413f3c3a38342e2c29241e1b150e09030000000000000000000000000000000000000000000008131f2c3845515c6674808d9aa7b1bcc8beb3a99c8f8275685e5246392d20150a0000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000008121a202930363e444c525a61686d757e85867a6d6053493f2f261c0e050000000000000000000000000000000000000000000000000000000b151e2b37434e586774818d9aa7b4c0cddae4d7cabdb1a4978a7e7164574b3e3124180b000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000613202d394653606c7986939facb9c6d2ded1c4b8ab9e9185786b5e5245382b1f120000000916222f3c4854606b75818e97969696969696969696969696978e81746a60544a3f32291e1107000000000000000000000000000000000000000000010c161f2a36424d57606d7984919696969696969696969696969692857a6d61544a3f33281c0f03000000000000070f161b1f222324242424242424242424242424242424242422211e1a140e060000000000000000000000000000000000000000000000000000000000000000060e151b1f21222424242424242424242424242424201f1c17110a0300000000000000000000010507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09070400000000000000000000000000000000010507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f171e23282a2b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0b4bfcbd7ddd0c3b6aa9d9083776a5d5044372a1d0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1a26313c464e53555656565656565656565656565656565656565656565656565656565656565656565655534d453b31261a0e02000000000007121d27303f495156585a5a5a5a595857565554514c4e4c4946443f3a39352f2b26201a140d0500000000000000000000000000000000000000000004101c2834404b54626f7c8895a0acb8c7c5b9ac9f92867a6e6154473c32271b0f0000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000080e171e252a323a414650565e616c717a7e71675d5141382d1d140a0000000000000000000000000000000000000000000000000000020a121c27303947535f6a7884919eabb7c4d1dee3d6c9bcb0a396897d7063564a3d3023170a000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000005121f2b3744505b657885929fabb8c5d2ded2c5b8ab9f9285786c5f5245392c1f120000000a1723303d4a5663707d898a8a8a8a8a8a8a8a8a8a8a8a8a8a8a857a6d61584e42382d20170d0000000000000000000000000000000000000000000000040d1a26313b45515c66707d898a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8174665b5044382b1f120600000000000000040a0f1315161717171717171717171717171717171717171514120e090300000000000000000000000000000000000000000000000000000000000000000000040a0f13151617171717171717171717171717171312100c0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f1821292f343738393939393939393939393939393937332c251c1309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798699a3aebac7d3ddd0c4b7aa9d9184776a5e51442f24180d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e585f6263636363636363636363636363636363636363636363636363636363636363636363615f574d42362a1e120500000000000c18232e3942515b6265676767666665646362605d555b585653504a4745413a37312a251f170f060000000000000000000000000000000000000000000c18232e394754606a7783909dabb5c0c7bbafa3998c7f7265584e43372b1d120700000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000050d1319202930363e444c525a61686d716c61554b412f261b0b0200000000000000000000000000000000000000000000000000040b141c232e39424e58626f7c8896a1acb9c5d2dee1d5c9bdb2a895887c6f6255493c2f221609000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c0000000000000000000000000000000000000000030f1b27333f495e6b7885919eabb8c4d1ded2c5b8ac9f9285796c5f5246392c1f130000000916222f3c4955626f7c7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f685e52463d2f261c0e0500000000000000000000000000000000000000000000000009141f2834404b54606b707d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d786c605346392d201306000000000000000000030709090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a080705020000000000000000000000000000000000000000000000000000000000000000000000000000030608090a0a0a0a0a0a0a0a0a0a0a0a0a0a070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607080a0c0d0d0e0e0e0e0d0c0b0a08070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070a0b0c0c0d0e0e0e0d0d0c0a09070705010000000000000000000000000000000000000000000000010406070a0b0c0c0c0b090707050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c17212a333a4044454646464646464646464646464646433e372e251b100500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c667986929facb9c5d2ded1c4b7ab9e9184786b554b4135291d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3a47535f6a6e707070707070707070707070707070707070707070707070707070707070707070706e695f53463a2d2114070000000004101c2834404b54626d7274747373727271706e6d676a676562605c5454524c47433c3631292117110a030000000000000000000000000000000000000007121d2b37434e5865727f8c99a3afbbc7c0b5ab9d9084776a605447392e23180c00000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000002080e171e252a323a414650565e6164615a50433a2f1d140a00000000000000000000000000000000000000000000000003090d161d262d34404a545f6a75818e9ba8b2bdc9d5e1ded2c5b9aca096877a6e6154473b2e211408000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000006121f2b3844505b667885929fabb8c5d2ded1c5b8ab9e9285786b5f5245382c1f120000000815222e3b4754606a6f707070707070707070707070707070706f6a5f564c41342b1d140a00000000000000000000000000000000000000000000000000030c18232e39424f59606b70707070707070707070707070707070706c665b5044382b1f12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507070c101213151718191a1a1b1b1a1a191817151312100c07080602000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080d111314161818191a1b1b1a1a191917161413110d08080705020000000000000000000000000000000206080d111314161819191818161413110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000007131e29333c454c505253535353535353535353535353534f4940372c21160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a5f6c7885929fabb8c5d2ded2c5b8ab9f928578675d5145392c2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7b6e6155483b2e2215080000000006131f2c3845515c66727f808080807f7e7e7d7b7a787674726f6d6665605d56534e46423b3328231c150c03000000000000000000000000000000000000000f1b27323c4754616e7a86929facb9c5c7b8aca095887c6f62544b4034281c1004000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000050d1319202930363e444c5254575550483e31281d0b0200000000000000000000000000000000000000000000030a0f151a20282f383f44515c666f7c87939facb9c4cedae5ddd1c4b7aa9e918477685e5246392d201407000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000613202d394653606c7986939facb9c6d2ded1c4b8ab9e9185786b5e5245382b1f1200000006131f2b37434e58606263636363636363636363636363636363625f584e443a3022190b02000000000000000000000000000000000000000000000000000007121d27303d474f59606363636363636363636363636363636363605b544a3f33281c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070604000000000000000000000000000000000000000000000000000000000000000000000000000206090e121415181c1f202223252627272828272626252322201f1c181514120e0906030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415191d20212324252627272827272625242221201d19171514120e0906030000000000000000000003090e1214191d20212324252625242321201d19130d08020000000000000000000000000000000000000000000000000000000000000000000000000000000c18232f3a454f575c5e606060606060606060606060605f5a52493e33271b0f020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e45525e6b7885919eabb8c4d1ded3c6baada297877a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b687581898989898989898989898989898989898989898989898989898989898989898989898074675a4d4134271a0e000000000713202d3a4653606d79868d8d8d8d8c8b8a8988878583817f7c7975716d68625f58534d453f342e261e150b020000000000000000000000000000000000000a15202d3946525e6875828f9ca9b3bec8bcb1a79a8d8074665c5145382c1f1408000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000002080e171e252a323a4146474b49453e362c1f160c000000000000000000000000000000000000000000060b10151b20262b323a424a505b606d7882909aa4afbbc8d6e0e4d8ccc0b6ac9a8d817467564d41362a1e1105000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000714212d3a4754606d7a879aa4afbbc8d4ddd1c4b7aa9e9184776b5e5144382b1e11000000030f1b27323c464e54555757575757575757575757575757575755534e463c32281e1007000000000000000000000000000000000000000000000000000000000b151e2b353d474f54565757575757575757575757575757575753504a42382d22170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c10131413100c07010000000000000000000000000000000000000000000000000000000000000000030a0f12141a1e212223282c2d2e3032333334343434333332302e2d2c282322211e1a15120f0a03000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f141a1e202124292c2d3031323333343434333332312f2e2d29242421211e1a13120f0b0600000000000003090e151a1e2124292c2d303132333231302e2d29241e19130c0500000000000000000000000000000000000000000000000000000000000000000000000000030f1b2834404c5761686b6c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e1205000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061d2a3744505d6a7783909daab6c3d0ddd6cabeb3a995887c6f6255493c2f22160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e96969696969696969696969696969696969696969696969696969696969696968d8074675a4d4134271a0e000000000a1723303d4a5663707d89989a9a9999989796959892908e8b8985827e7a756f6a615e5751443f3830261d140a00000000000000000000000000000000000005111e2a36414c5664717d8a97a2adb9c6c3b8ab9e9285796d6053463b3025190d010000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000050d131920293036393a3e3d39342c241a0d0400000000000000000000000000000000000105090e11171c1f262b31373e444c545b606d74808d949facb6c0ccd8e8e0d4c8bbafa49a8a7d7164574a3e3025190e02000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000815212e3b4854616e7b8794a1b6c0ccd8ddd0c4b7aa9d9184776a5e5144372b1e11000000000a15202b343c4347494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4847433c342a20160c0000000000000000000000000000000000000000000000000000000000030c19232b353d4448494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a46443f382f261c11060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b12181c1f201f1c18120b030000000000000000000000000000000000000000000000000000000000060b10151a1f21262b2d2e2e34383a3b3d3f404041414141403f3e3d3b3a38342e2e2d2b26211f1b15100c060000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f252a2d2e2f35393a3d3e3f3f4041414140403f3d3c3a393530312e2d2a25201f1c17110d08020000050d141a1f262b2d2f35393a3d3e3f3f3f3e3c3a3935302a251e160e0500000000000000000000000000000000000000000000000000000000000000000000000005111e2a3744505c68737879797979797979797979797979766c5f5346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1c2835424f5b6875828e9ba8b5c1cedbdbd0bdb0a4978a7d7164574a3e31261a0f0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39a8d8074675a4d4134271a0e00000006121f2b37434e586774808d9aaaa6a6a5a5a4a3aaa29f9d9a9898928f8b86817c756e69625b504a42382f261b11060000000000000000000000000000000000010d1925303b4653606d7985929eabb8c3c6b9ada1978a7d7064564c41362a1e11050000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000002080e171e252a2d2e31302d28221a12080000000000000000000000000000000104080d11141a1c23282b32373c424750565d666c737f8c929da6b0bec7d2dde8dfd2c6b9ac9f93877a6d6154473a2e21140800000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbd2dddccfc3b6a99c908376695d5043362a1d1000000000040e19222b32373b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3a37312a22180e04000000000000000000000000000000000000000000000000000000000000071119232b32383b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3938332d261d140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171d23292c2d2c29231d150d030000000000000000000000000000000000000000000000000000060c11171c1f262b2e31373a3b3e404446484a4b4c4d4d4e4e4d4d4c4b4a484644403e3b3a37312e2b261f1c17110c070000000000000000000000000000000000000000000000000000000000000000000001080b141c22282b30363a3b3f414547494b4b4c4d4e4e4d4d4c4c4a49474641403e3b3a36312d2b28221c19140e09080f171f252a31373a3b414547494b4c4c4b4b494746413a36302820160c02000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b788586868686868686868686868686796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0d1dcdacdc0b3a79a8d807467584e43372b1f120600000000000000000000000000000000000000000000000000000000000000030608090605030000000000000000000000000000000f1c2835424f5b6875828e9ba8afafafafafafafafafafafafafafafafafafafafafafafafafafafafa79a8d8074675a4d4134271a0e0000000815212e3b47535f6a7884919eabb3b3b2b1b1b0b3aeaba9a7aaa29f9c98928e88827b726d605c544a41382d22170b04000000000000000000000000000000000008141f2c3845515c6774808d9aa7b1bcc8beb3a99c8f8275685e5246392d20150a0000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000000050d13191e20212423211d171008000000000000000000000000000104080d1113191e20262b2e34383c43474d535a61686d78808c919ba4aeb8c2d0d9e4e2d4c8bcb1a79d908376685e5246392d20130700000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6dbcec1b5a89b8e8275685b4f4235281c0f000000000007101920272b2e2f303030303030303030303030303030302f2e2b2620181006000000000000000000000000000000000000000000000000000000000000000007111921272c2f30303030303030303030303030303030302d2b28221c140b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090b141b22272f34383a38342f271f150b010000000000000000000000000000000000000000000000030a11171c23282b31373a3c4246484b4a5153555658595a5a5b5b5a595958565553514a4b4847423c3a37312c28231c18120b0300000000000000000000000000000000000000000000000000000000000000040c13191d262d33383b4246484b4c5254565758595a5a5b5a5a5958575554524c4d4a4846423c3938332d2a251e1a15121a212930363c4247484c51545657585958575654524c46413a32281e1308000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b788591939393939393939393939386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98abb5bfcbd7ded1c4b7ab9e9184786a5f53473a2e2114090000000000000000000000000000000000000000000000000000000000040a0f12151513120f0b06000000000000000000000000000f1c2835424f5b6875828e9ba8b5bcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcb3a79a8d8074675a4d4134271a0e0000000915222f3c4855626f7c8896a1acb9c0bfbebdbcbebab8b6b4b4aeacaaa39f9b938f867f746d665c53493f332720150a000000000000000000000000000000000004101c2834404b55626f7c8995a0acb8c7c5b9ac9f92867a6e6154473c32261b0f0000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000000002080d111314181714110c0600000000000000000000000004070d1013191d20252a2d3137383f44464e53575f626c717a828d929ba3adb7c0cad4e2e3d9d0c7b8aca0958a7e7164564c41362a1d110500000713202d3a4653606d798693a0acb9c6d3d8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbd8dacdc0b3a79a8d8074675a4d4134271a0e000000000000070e151b1f22222424242424242424242424242424242422211f1b150e0600000000000000000000000000000000000000000000000000000000000000000000070f161c20222324242424242424242424242424242424201f1c17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d151a1d262d333940454745403931271d120700000000000000000000000000000000000000000001080c151c23282e34383c4347484d535558545c606163656666676767676666656361605c545855534d4847433c38342e28231d150c080200000000000000000000000000000000000000000000000000000000060d161e24292f383f44464d525458565d6063646566666767676666656462615d565a5754534d4946443f3836302b262018242c333b42464d5355555d6063646566656463615d56524c443a3025190d010000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919e9f9f9f9f9f9f9f9f9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8999a3aebbc7d3ded2c5b9aca196887b6e6255483b31251a0e04000000000000000000000000000000000000000000000000000000060e151b1f2122201f1b17110a0200000000000000000000000f1c2835424f5b6875828e9ba8b5c1c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c0b3a79a8d8074675a4d4134271a0e000005111e2a36414d5666737f8c99a8b2bdc9cccbcad0cac6c5c3c1bfbab8b4aeaca59e98928b80786d655b50443c32271b0c0200000000000000000000000000000000000c18232e394754606a7784919dabb5c0c7bbafa3998c7f7265584e43372b1c120700000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000000000000010507070b0a0805000000000000000000000003070c1013181d2024292c3036393c42464a5053585f62696e767e858f949da4adb5bfc9d2dce8ddd2c7bdb2a89d9184786c6053463a3025190d0100000713202d3a4653606d798693a0acb9c6d3d8cbbfb2a5988c7f7265594c3f322619060000000000000000000000000000000000000004111d2935404b556874818e9ba7b4c1cedad8ccbfb2a5998c7f7266594c3f3326190c00000000000000040a0f131516171717171717171717171717171717171515120f0a04000000000000000000000000000000000000000000000000000000000000000000000000050b101316161717171717171717171717171717171713120f0b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c13191f262b2f383f444b5153514b43392f23180c0000000000000000000000000000000000000000040c13191e262e34383f44464e5355575f616467666d6e7072737374747474737271706e6d666764615f5755534e46443f38342e271e19130c0400000000000000000000000000000000000000000000000000000610181f282f353e424a5053575e616568686d7071727273747474737372706f6d68696764615e575653504a46413b373129242d363e454d52575f6166676d7071727272716f6d68615e564c41362a1d11050000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabacacacacacacac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5d2dfd5c9bdb2a8998c7f7266574d42362a20150a000000000000000000000000000000000000000000000000000006101820262b2e2f2d2b27221b140b02000000000000000000000f1c2835424f5b6875828e9ba8b5c1ced6d6d1cac4c1bfbfbfbfbfbfbfbfbfbfbfbfbfbfbfbfbfbfb3a79a8d8074675a4d4134271a0e00000714202d3946525e687683909da9b6c3cececfd1d2d4d3d2d0d0cac6c5bfbab9afaaa29f928e81776c60584e43372b1e140a000000000000000000000000000000000007121d2b37434e5865727f8c99a3afbbc7c0b5ab9d9083776a5f5347392e23180c00000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000000000000060c1012181c1f24292c2f35393a4146474d53545c60636a6f757b828a91979ea6aeb6bfc7d1dbe4ded7ccc0b5aba0968a7e71665b504438281e13080000000713202d3a4653606d798693a0acb9c6d3d9cdc0b3a69a8d8073675a4d402d22170b000000000000000000000000000000000000000613202c3945515d677784919daab7c4d0ddd7cbc0b5ab978a7e7164574b3e3124180b000000000000000000030608090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09080603000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0606030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b12181e252931373d414950555c605c554b4034291c1004000000000000000000000000000000000000070d161e242930383f444a5053585f6266696e717477797b7d7e7f8080818180807f7e7d7b797774716e6966625f5853504a4540393029241e160e07000000000000000000000000000000000000000000000000060f18222a313a414550545b6063696e7274777a7c7e7e7f80818180807f7f7d7c7a787673716e696662605b54524c47423c352f373f4850575e61696e73777a7c7e7f7f7e7e7c7a786d685e5246392d2013070000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8b9b9b9b9b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515d677683909da9b6c3d0dbdacec3b6a99c908376695e53463c32271b0f05000000000000000000000000000000000000000000000000050e18222a31373a3c3937332d261d140a000000000000000000000f1c2835424f5b6875828e9ba8b5c1cedbd1c8bfb9b4b3b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2a79a8d8074675a4d4134271a0e00000814212e3b4754616e7b87939facb9bfc0c1c2c4c6c7ccd2d2d5d6d3d1cbc7c1bcb4aea59d938d80736a6054473e30261c110600000000000000000000000000000000000f1b27323d4754616e7b86929facb9c5c7b8aca095887c6f62544a4034281c1004000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000001040a0f11171c1f23282c2f35393a4145474c5254575f61666d70757c81878f949ea1a9b0b8c0c8d1d9e3ded6ccc4bbafa4999184786d60544a3f3328160c020000000713202d3a4653606d798693a0acb9c6d3dbcec1b4a89b8e81756853493f33271b0f030000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6d2dfd3c7bbafa399887c6f6255483c2f221509000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171d232830353c42474f535b60676d675c5145382c1f1306000000000000000000000000000000000009101920282f353d424a50545c60646a6e73777b7e81848688898b8c8d8d8e8e8d8c8c8b89888684817e7b77736f6a64605c54514b423d3530282019100900000000000000000000000000000000000000000000050e18212a343c434c515a61666c70757b7e818486898a8b8c8d8d8e8d8d8c8b8a88878583807d7b77736f6c66615e56534e45413a3f49515a61696e757b808486898a8b8c8b8a8987857a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4c6c6c6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556773808d9aa9b3becad6dfd2c5b9ac9f92877b6e61584e43372b21170d0400000000000000000000000000000000000000000000030c17202a343c43474846443f382f261b11060000000000000000000f1c2835424f5b6875828e9ba8b5c1ced5cabfb6aea8a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a69a8d8074675a4d4134271a0e0004101d2935404b5565717e8b9aa4afb2b2b3b4b5b7b9bbc0c4c5c9ced5dad7d3cec6bfbaafa59f93877c6f62594f42382e23170b00000000000000000000000000000000000a15202d3946525e6875828f9ca9b3bec8bcb1a79a8d8074665c5144382c1f1308000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000000000000000000000000000000000001070d11151b1c23282c2e34383a4045474c5254565e6165696e73797d82888e93999fa6adb3bbc1cad2dae3ddd5ccc4bab0a69f93877d70665c5042382d221705000000000713202d3a4653606d798693a0acb9c6d3dccfc2b6a99c8f8376655b5044372b1f12060000000000000000000000000000000000030f1c28333f4a5463707c8999a4afbbc7d4dfd2c5b9ac9f9286796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000106090b0c0c0c0a060200000000000000000000000000000000000000000000000003061313131313131313131313131313130f0f0c0904000000000000000000000000000000000000000000000000000000000307090a13131313131313131313131313130c0c0a06020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090b141b22272e343a41464d535960656c71796d6053473a2d201407000000000000000000000000000000010a121b222b323a41454f545c60666d71777b8084888b8e919399969899999a9a9a9a999998969992918e8b8884807b77716d66605c544f46413a322b221b120a0100000000000000000000000000000000000000020d172029333c464e555d606c70787d82868b8e91939a979899999a9a9a999998979597928f8d8a8784807c78736e68625f57514b4347515b626c717b81888c91939a979899989796978a7d7064574a3d2f24180d0100000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3d4a5763707d8a97a2adbac6d3dfd4c7bbafa3998e81756a6054473e332920160c030000000000000000000000000000000000000000030c151e29323c464e535553504941382d22170b0000000000000000000f1c2835424f5b6875828e9ba8b5c1ced0c4b9aea49c9999999999999999999999999999999999999999998d8074675a4d4134271a0e0006131f2c3845515d6775828f9caca4a5a5a6a7a9aaacafb5b7b9bdc4c9cfd6dfd7d0cac0bbafa49a8f82766b61544a3f34281c10030000000000000000000000000000000005111e2a36414d5664717e8a97a2adbac6c3b8ab9e9285796d6053463a3025190d010000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000000000000000000000000000000040a0f13181d20262b2e34383a4045464b5153565d6065686d72767b80848a8f949b9fa4abb0b9bec4cdd3dce5dcd4cbc3bab2a89e948c7f736b60544a3f2f261c1106000000000713202d3a4653606d798693a0acb9c6d3ded1c4b8ab9e9185796c605346392d22170b010000000000000000000000000000000006121f2b3844505b6673808c99abb5c0ccd7ddd0c4b7aa9d918477675c5145382c1f1306000000000000000000000000000000000000000000000000000000000000000000070d12161819191816120d07000000000000000000000000000000000000000000060b10122020202020202020202020202020201c1b1915100902000000000000000000000000000000000000000000000000040b101316162020202020202020202020202020191816120d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d141a1d262d333940454c52575f616b6f787e84786b5e5145382b1e120000000000000000000000000000010a131c242d343c444c525960666d72787e83888c9196979a9d9fa4aba5a6a6a7a7a7a7a6a5a4aba39f9d9a9796918c88837e79726d666059524c443d342d251c130a0200000000000000000000000000000000000008131e29323b454e585f676d747d848a8f92999b9d9fa4aca5a5a6a7a7a7a6a6a5a3a9a29f9c9a9795918d89847f7a756e6a605d554f4f59626d727e868e93999d9fa4aca5a5a5a4a99a8d807367554b4135291d110400000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929fabb8c4cedad7cbc0b5ab9f93877c6f62594f453b32281e150c05000000000000000000000000000000000000050d151e27303b444e585f62605b53493f33271b0f0300000000000000000f1c2835424f5b6875828e9ba8b5c1cecdc1b4a89c928c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8074675a4d4134271a0e000714202d3a4753606d79869297979898999a9b9c9e9fa4ababacb2b9bec4cdd5dddbd6ccc0b6ac9f948a7d70665c5044382b1f120600000000000000000000000000000000020e1925303b4653606d7985929fabb8c3c6b9ada1978a7d7064564c41362a1e11050000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000000000000000000000000000000000000040a0f151b1d24292c3237383f44464b5153555d6064686d71767a7f83888d91969c9ea6acafb5bdc2c9cfd6dfe0d9d5cac2b9b1a8a0968f82776c60594f42382e1d140a00000000000713202d3a4653606d798693a0acb9c6d3dfd2c6b9ada197897c6f6253493f33271d1207000000000000000000000000000000040d16202d394653606c7884919eabb7c4d2dddbcec1b4a89b8e817568554b4034281c100400000000000000000000000000000000000000000000000000000000000000010911181e2225262625221e180b06000000000000000000000000000000000000020a11171c1f2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c0300000000000000000000000000000000000000000000070f161b2022232d2d2d2d2d2d2d2d2d2d2d2d2d2d2625221e18110a0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c13191f262b2f383f444b51565e61696e757d838a86796c605346392d201300000000000000000000000000010a131c252e363f464e565d606b70787f848a9095999da0a8a7aaacafb5b1b2b3b3b4b4b3b3b2b1b5afacaaa7a8a09d9995908a847f79706b615d564e463f372e251c140a0100000000000000000000000000000000030c1925303a444d575f6a6f7a818a91969c9fa3abaaacafb6b1b2b3b4b4b3b3b2b2b0b3adaba9a6a8a09d9996918c86817b736d67615955606b727f8892989ea5aaacafb6b2b2b1b1aa9d908377675d5145392c20130600000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6674818e9ba8b2bdc9d5dcd1c7bbafa49a8f82766b61574d443a30271e170f0802000000000000000000000000000003090f171f273039434d565f6a6f6c655b5044372b1f150a00000000000000000f1c2835424f5b6875828e9ba8b5c1ceccbfb3a6998c807f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7d7063564a3d3023170a000a1724303d4a5763707d8a8a8b8b8b8b8c8d8e8f9193999a9ea1a8adb3bbc3cbd5deddd2c7beb0a69d9184786d6053463a2d201308000000000000000000000000000000000008141f2c3845515c6774818d9aa8b1bdc8beb3a99b8f8275685e5246392d20150a0000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2b8b8b6a99c8f8376695c504336291d100000000000000000000000000000000000000000000000040a0f151b20262b2f35393c43474a5053555c6064676d71757a7e82868b9094999ea1a8aab0b9bbc0c7d0d5dae1ddd8cec9c0b8b0a7a09691847a6d655b50473d30261c0b0200000000000713202d3a4653606d798693a0acb9c6d3e1d5c9beb3a99a8d8073655b5044392f23180f0500000000000000000000000000010c161f2a36414d5663707d8a96a1adb9c5d2e3d5c9bdb2a8988b7e7165584b3e2e23180c000000000000000000000000000000000000000000000000000000000000000009131b23292e313233322f2a2317110a02000000000000000000000000000000020c141c23282b3939393939393939393939393939393634312c261e150c02000000000000000000000000000000000000000007111921272c2f30393939393939393939393939393933322e2a231c130a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181e242931373d414950555c60686d747b8289909586796c605346392d2013000000000000000000000000000a131c262e373f48505860686d757d838b91969d9fa7aaacb2b4b7b9bbc0bebfc0c0c1c1c0bfbfbec0bbb9b7b4b2acaaa7a09d96918b847d756d686058514940372e261c130a000000000000000000000000000000000a151e2a36414c565f696f7c848e939ea1a8acafb5b7b9bbc0bebfc0c0c1c0c0bfbebdbebab8b6b3b1acaaa9a19e99928e868079706b625d67707d87939aa2aaafb7b9bbc0bebfbeb9ac9f92867a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b5463707d8996a1acb9c5cfdbd8ccc0b6ac9f948a7d70695e564c423930292119130e09040000000000000000000104090e141a21293139434b555e696f7b776c6053463c31261b0f02000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca0938679737373737373737373737373737373737373737373706b6055483c2f231609000915222f3c4855626f7c7e7e7e7e7e7f7f80818284868a8d91969ea1a9b1b9c3ccd5e0d9d0c2b8aca095897d706356493d3025190d010000000000000000000000000000000004101c2834404b55626f7c8995a0acb8c7c5b9ac9f92867a6d6154473c32261b0f0000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5ababababa99c8f8376695c504336291d1000000000000000000000000000000000000000000002080d151b20262b32373a4145474e54545c6063676d70757a7e82868b8f92999c9fa6abadb2b7bbc1c7ccd2d9e2e2d9d2ccc4bdb9aea69f9590847b6e685d53493f352b1e140a0000000000000713202d3a4653606d798693a0acb9c6d3e6dacfc4b7aa9e9184786c60554b40342921170d060000000000000000000000020a131d28313a46525e6875828f9ba8b2bdc9d5ded2c5b9aca196887b6e6155483b2e2215070000000000000000000000000000000000000000000000000000000000000007111b252d353a3e3f3f3e3b3528221c140b0300000000000000000000000000000a141e262e343846464646464646464646464646464642413d3730271e140900000000000000000000000000000000000000040f19232b32383b3d46464646464646464646464646463f3e3a352e251c11070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0c151d232830353c42464f535b60676d727a80868f939d9386796c605346392d201300000000000000000000000008121c252e384049515a626a6f7a818991959ea1a8abb1b7b8bdc1c4c6c7ccd2cccccccbcbcdccccd1cbc7c5c4c1bdb8b7b1aca8a19e969189817a6f6a625b514940382e251c1108000000000000000000000000000006111c26303846525e686e7b8591969da5acb2b9bbc0c4c6c8ccd2ccccc9c7c6c6c6c7d0cac6c5c2c0bdb8b7b2adaba39f99928d857d726d606d7a859299a4acb4bcc1c6c8ccd2ccc7bbafa399897d7063564a3d2f23180c00000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3a4653606d7884919ea9b3becad6ddd2c7beb0a69e91857b6e685d544b423b332a251e1a14100c07070605040607070d10141a1f252a333b434b555c676e7b857d7063584e43372b1e1408000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d66666666666666666666666666666666666666666360594f44382c201407000815212e3a47535f6a6f71717171717272737476777a7d80848b9197a0a7b1bac3ced9e2d4c8bdb1a89a8d817467564c41362a1e110500000000000000000000000000000000000c18232e394754606a7784919dabb5c0c7bbafa3998b7f7265584e43372b1c120700000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c989e9e9e9e9e9e9c8f8376695c504336291d100000000000000000000000000000000000000000040c131920262b32373c43474b5154585f62666d7074797d81868a8f92999c9fa3ababb0b8b9bdc4c7ccd4d7ddded8d3d0c7c0bbb2aca49d948f837a6e695f564c41382d23190c020000000000000713202d3a4653606d798693a0acb9c6d3dfded2c5b9aca0968a7e71675c51453d33291f180f09030000000000000000060b141b242f3a434f59616e7b86929facb9c4cfdaded1c4b7ab9e918478695f53463a2d211407000000000000000000000000000000000000000000000000000000000000050f19232d373f464a4c4c4b4640332d261d150c0400000000000000000000000006111c2630383f445353535353535353535353535353534f4d49423930261b10040000000000000000000000000000000000000b16212b353d44484953535353535353535353535353534c4b463f372e23180d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e161b1e272e343a41464d535960656c71797f858d92999ea59386796c605346392d2013000000000000000000000007101a242e37404a525b636c717c848e939da0a7acb2b8bcc3c5c8ced0cec9c5c4c2c1c0bebfc0c1c2c4c5c8ced0cec8c5c3bcb8b2ada8a09d938e847c726d635b524a40372e241a1006000000000000000000000000000c17232e3842505a616d7a849197a1a8afb9bdc4c7cbd1d2cdc7c4c3bfbdbbbab9b9babbbcbec1c4c5c8c5c4bdb9b4aeaba39f9791877f746e727f8c97a1abb5bec6ced2d4d8d4d1cbc0b5ab998d807366554b4034291c1004000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121f2b3844505c66727f8b97a2adbac4cfdad9d0c2b9ada19791837a6d665c544d453e36302a251f1d181514131210131315181d20252a31363e454d555d676d79838f82766a5f53473b3025190d010000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d605959595959595959595959595959595959595956554f473d33271c10040006121f2b37434e585f6264646464656566676869686d7074797e859095a0a8b2bdc8d4e0d9cec3b7ab9e918478685e5246392d201307000000000000000000000000000000000007121d2b37434e5866727f8c99a3afbbc7c0b5ab9d9083776a5f5347392e23180c00000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c91919191919191918f8376695c504336291d1000000000000000000000000000000000000001080e161e242931373c43474e54555d60656a6f74797d81858a8e92989b9fa3abacafb5b7bcc2c5c9cfd3d7e0dfd8d3cdc7c2beb6afa8a09e928d82796e685f574d443a2f261b1107000000000000000713202d3a4653606d798693a0acb9c6d3dfe1d5c9bdb2a89e9184796d60584e453b312a211a140e090604000406070c11171d262d35404b55616b74818e99a3afbbc7d6e0d5c9bdb2a89a8d807467574d42362a1e12050000000000000000000000000000000000000000000000000000000000030c17212b353f49515659595751443f382f271e160d0500000000000000000000000b17232e38424a505f60606060606060606060606060605c5a544b42372c211509000000000000000000000000000000000003101b27323d474f54566060606060606060606060606060595751493f352a1e120600000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d141a21272c303940454c52575f616b6f787e848c92979fa3ab9f9386796c605346392d201300000000000000000000030d19222c363f49525c636d727e8791969ea5acb1b9bdc4c8cdd1cec8c5c4bdb9b7b6b4b3b2b2b3b4b6b7b9bdc3c6c8ccd2cdc8c4bdb9b2aca59e9691877f736d635c52493f362c22180c03000000000000000000000003101c28343f4a54616c76829096a0a9b2bac1c9ced4d7ccc6c2bcb7b6b2b0aeadacacadaeafb2b4b7b8bcc3c4c7c6bfbab5aea9a199938c80747884919ea9b3bdc7d0d8d9d2ccc8c6c0bbb6a99c908376675c5145382c1f1306000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54606d7985929fa8b2bdc9d5dfd5c9beb2a9a0958f82786d665e575046413a36312c29242221201f1c1f202224292c31363b42464f575e676d79828f94887c6f62564c41362a1d12070000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d60534c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4a48443d352c21160b0000030f1b26313c464e5355575758585858595a5b565d6064666d727a839096a0acb9c4ced9ded2c5b9aca196877a6d6154473a2e2114070000000000000000000000000000000000000f1b27323d4754616e7b86929facb9c5c7b8aca095887c6f62544a4034281c1004000000000000000000000000000000000000000000000000000c1825323f4b5865727f858585858585858585858275685c4f4235291c0f0000000000000000000000000000000000040c1319202830353c43474e53585f62676d72777c8185898e92979b9fa2aaacaeb4b9bbc0c7c7cdd2d5dae0dbd6d3cdc7c2bcb7b1aca49f96918981786d675e564d453c32281d140a00000000000000000713202d3a4653606d798693a0acb9c6d3dfe5d9cec4b9aca1968c7f726a60574d433c332a251f1a1413100c101313181b22272f383f45515d67707d89939eabb5c0cbd7ded2c5b9aca096897c6f6256493c31261a0e0200000000000000000000000000000000000000000000000000000000000b151e29333d47515b626566635b504a423930281f170e0600000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69655d54493d3125190c00000000000000000000000000000000000713202c38444f5960636c6c6c6c6c6c6c6c6c6c6c6c6c6c66635b51463a2e22160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000070c13191f262a32383e424b51565d61696e757c838a91969fa2a9aeb59f9386796c605346392d2013000000000000000000010b151f2a343e48515b636e737f8b9299a0a8afb8bcc3c9ced4ccc7c3bcb8b7b2acaba9a8a6a5a5a6a8a9aaacb2b6b9bbc0c7ccd2cfc9c3bdb8afa8a199928b7f736e635b51483e342a1e150b000000000000000000000006121f2c3844505c66707d8a949fa8b2bbc4ccd5d8d1cbc1bab6b1aba9a6a3a1a0a0a0a0a1a3a5a7aaacb1b6b7bbc2c7c6bfbbb3aba49f928b7f7b8796a1acbbc5d0d9d7d0c7c0bbb9b5afacaa9f9286796d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3845515d6773808c96a1adb9c2cdd6dacfc4bbb1a79f948e81786e69615a524c46423b39352f2f2e2d2b282c2d2f2f35393b42464d535961696e79828f949b8e8174685e5246392f23180c0000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d60534640404040404040404040404040404040403d3c38332c231a0f050000000a15202a343c4347484b4b4b4b4b4c4c4d4e4c5254545c60686d7a84919ea8b2bdc9d5e1d5c9bdb2a8968a7d7063574a3d3024170a0000000000000000000000000000000000000a15202d3a46525e6976828f9ca9b3bec8bcb1a79a8d8074665c5144382c1f1308000000000000000000000000000000000000000000000000000b1824313d4a56626d7278787878787878787878756f65594d4134281b0e00000000000000000000000000000000050d161e2429323a41454e53585f626a6f747a7e83888d92979b9fa2a9acaeb4b9babfc5c7cbd1d3d8dfded8d3d0cac6c2bcb7b0aba79f9a938d847d746d665d554c443c332a20160b0200000000000000000713202d3a4653606d798693a0acb9c6d3dfebe0d5c9bdb2a89f92867c6f695e564d453e36312a25201f1d181c1f2023282d333a4149505c606d7984919ea5afbdc7d1dcd6cbbfb4aa9e9184776a6054473b2e1f1409000000000000000000000000000000000000000000000000000000000007121d27303b454f59626d72726d605b544b433a312920180f07000000000000000006121f2b3844505c667679797979797979797979797979797570655a4d4134281b0f02000000000000000000000000000000000916222f3b4854606b707979797979797979797979797979726d63574b3e3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181e242931363d434850545c60686d747b828990959ea1a8adb3bbac9f9386796c605346392d201300000000000000000007121d27313c46505a636d73808c919fa3abb2bac1c8ced5cec9c1bbb7b1acaaa8a19e9c9b9998989a9b9c9ea0a8a9acafb6bbc0c7d0d5cec8c1bab2aba39f918c80736d635a50463c30271d1207000000000000000000000713202d3a4653606d7884919da6b0bac3cdd6d8cfc6bfbaafaaa79f9d999694939393949496989b9da0a7a9abb0b8babfc6c4bdb5afa49f9287818e9aa8b2bdcdd6d7cdc5beb6afacaba39f9d9e99897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2935404b55606d7984919ea6b0bbc5d0d9d6cdc3b9b0a69e938e837b706c615e56534d4745403d3b3a393734383a3b3d4045474d53575e616c707b838f949e9f92867a6e61554b4034291c100400000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a33333333333333333333333333333333302f2c27211a110800000000040e18222a31373a3c3e3e3e3e3e3f3f40414145474a50565e68717e8a96a0acb9c5d2dedacebeb2a5988b7f7265584c3f3225190c00000000000000000000000000000000000005111e2a36424d5664717e8a97a2adbac6c3b8ab9e9285796d6053463a3025190d010000000000000000000000000000000000000000000000000915222e3a45515b62656b6b6b6b6b6b6b6b6b6b68655d53493d3125190c000000000000000000000000000000060e171f282f353e444c52585f626a6f757c81868b90959a9ea1a9abadb3b8babfc5c7cbd1d4d7dcded9d4d1cdc7c5bebab8b0aba69f9c9590878079706b605c544b433b322a21180e040000000000000000000713202d3a4653606d798693a0acb9c6d3dff1e5dacec4baaea39891857b6e685f574f46423b36302d2c2924282c2d2e34383f444c535b606e74818e96a1acb7c1cfd9dfd3c7baaea3988c807366584e43382b1f0d0300000000000000000000000000000000000000000000000000000000081118232e39434d57606b727f7f746c665c554c433b322a21191008000000000000000713202d3a4653606d7886868686868686868686868686868275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707d86868686868686868686868686867f7266594c3f3326190c00000000000000000000000000000000000000000000000000000000000000000000000000040a0c151d232830353b42464f545a61666d727a80868e939d9fa7acb2babeb9ac9f9386796c605346392d20130000000000000000000c18232f39434e58616c727f8c929ca3aeb4bdc4ccd4d2ccc4bdb9b0aaa7a09d9996918f8e8d8b8c8d8e8f9196999d9fa4acafb6bec3cbd1d4ccc4bdb5aea39c928c7f726c61584e42392e23180c04000000000000000004111d2935414b5565717e8b96a0acb8c2ccd5d9d0c6bdb4aea59e9b95908c8a888786868788898b8e9195989c9fa6acaeb4bbc0c7c0bbafa399928e929da9bac4cedbd0c5bbb3aca49f9a99929191928c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d18242f3945515d67717e8a949fa9b3bec7d2ddd5cbc2b8afa59e9590857e746d68615e5753514b4948474644404546484a4b5153575e61696e757d8590959fa6a3988c8073675c5145382c1f160b00000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2626262626262626262626262626262323201c160f0800000000000006101820262b2e2f31313131323233342f35393a3f444c56606d7884919eaab7c4d1ddd9cdc0b3a69a8d8073675a4d4034271a0d010000000000000000000000000000000000020e1925303b4753606d7985929fabb8c3c6b9ada1978a7d7064564c41362a1d110500000000000000000000000000000000000000000000000005121d29343f495156585e5e5e5e5e5e5e5e5e5e5c59534b42372c2015090000000000000000000000000000060f182029313a41454f565d606a6f757c82888e92989da0a7abadb3b8babec5c6cad0d3d7dcdfd9d4d1cec8c5c2bbb7b4aeaba69f9c949089837c746d676059514b423a312920180f06000000000000000000000713202d3a4653606d798693a0acb9c6d3dff6ebe0d6cbbfb4aaa19790837a6e696159534d46423c3a39352f34383a3b40454950565d656c74808d929da8b2bdc9d2e1d7cbc0b5ab9f92867a6d6154473d32271b0f0000000000000000000000000000000000000000000000000000000007101a232834404b555e69707d878c80786d675d554c443c332b221a11080000000000000713202d3a4653606d79869393939393939393939393938f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c899393939393939393939393938c7f7266594c3f3326190c000000000000000000000000000000000000000000000000000000000000000000000003090e161b1e272e343a41454d535960636c71797f858d92999ea5abb1b9bdc4cab9ac9f9386796c605346392d2013000000000000000004101c2934404b555f6a717e88939fa4adbabfc6cfd6d1c8c0bab2aca69e9c95918c88848381807f7f80818384888c90939a9fa4acb1bbc0c7cfd6cfc6bfbbada49f93887e706a5f544b40342820150a00000000000000000613202c3945515d6776828f9ca8b2bdcad4ddd2c7beb4aba39f938e88837f7d7b7a79797a7b7c7f8184888b90949a9fa3aaafb5bdc2c0b5aba39f9a9da5afbaccd6d6cabeb3a9a29a938d8886848485888276695c4f4336291c10000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2935404b55616c76828f97a1acb6c0ccd8dbd4cac1b7afa79f97928a807a746e6963605d5556555453504b51535557555d6064696e737b818a92979fa7b0aa9e9285796d6053473d33271c1000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d201919191919191919191919191919171614100b050000000000000000060e151b1f2122242425252525262724292c2e343a44505c6673808d99a6b3c0ccd9dbcec1b5a89b8e8275685b4f4235281c0f0200000000000000000000000000000000000009141f2c3845515c6774818d9aa8b2bdc8beb3a99b8f8275685e5246392d20150a000000000000000000000000000000000000000000000000010c18232d373f454a4b525252525252525252524f4d49423930251b0f0400000000000000000000000000061018212a333b434c525961686d747c82878f939a9fa2aaabb1b8b9bec5c6cad0d3d6dbddd8d4d2cdc8c4c3bcb8b7b0abaaa29f9a949089837d766f6b605d554f45403930281f170e0600000000000000000000000713202d3a4653606d798693a0acb9c6d3dff1e8e1dad0c6bcb3a9a09590847b706b615e57524d4947454043404546484b51535b60686d77808d929da5afbac4cedbdbd4c7bbafa3998d8174685e5246392b20160a000000000000000000000000000000000000000000000000000000060f19222c353e45515c676e7b8592928d81796d675e564d453d342c231a110800000000000713202d3a4653606d7986939f9f9f9f9f9f9f9f9f9f9c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c89969f9f9f9f9f9f9f9f9f9f998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000000000000000000000001080d141a20272b303940454c52575f616b6f767e848c92979fa3abafb8bcc2c9ceceb9ac9f9386796c605346392d201300000000000000020c1a242c3845515c676f7c86929aa4afb6bfcbd1d8d0c7bfb6aea8a19e948f8884807b787675737272737576777b7f83878e939a9fa7afb5bdc6cfd8d1cbbfbbafa49a92867c6f665c51453c32261b0f05000000000000000714212d3a4754606d7a86929facb9c3cedfd8ccc0b6aca399928a817b7673706e6d6d6d6d6e707274777b7f83888e92989fa4abb1b9c0bdb5afaca7a9afb7c0cbded3c6baada2979288807b797777797b7e7064574a3d3124170a000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c18242f3943505a616e7b85929aa4afbbc0c9d3dbd3c9c1b9b1a9a29f928d86807b74706d6766636261605b545c60626466676d70757b80868e939fa2a9b1b9ada1978b7e7165594f44382c1c1106000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130d0d0d0d0d0d0d0d0d0d0d0d0d0a0907040000000000000000000000040a0f121515181818181819191a191d202328343f4a5464717e8a97a4b1bdd2dddccfc2b5a99c8f8276695c4f4336291c100300000000000000000000000000000000000004101c2934404b55626f7c8996a0acb8c7c5b9ac9f92867a6d6154473c31261b0f0000000000000000000000000000000000000000000000000006111b252d343a3d3f4545454545454545454542413d3730271e140900000000000000000000000000050e18222a333b454d565d606b707a81878f939a9ea6acaeb4b8bcc3c6c9cfd3d6dbddd7d4d2ccc8c6c3bcb8b6b1acaaa69f9c98928e89837d76706b636059514b433d342e271e160d050000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe8dfd6cfc9c6c4bbb1a7a09691857d756e69615e575553514b504b515354555c60656c717a818d929da4aeb7c0ccd6ddd5c9beb3a99f92877b6e61564c41362a190f040000000000000000000000000000000000000000000000000000050e18212b343e47515b606d798390979d938e82796e685f574e463d352c241a1005000000000713202d3a4653606d798693a0acacacacacacacaca89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3acacacacacacacaca5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000000000000000000000000070c13191f262a32383e424b51565d60696e757c838a91969fa2a9aeb5bdc1c8cdd0cac4bdac9f9386796c605346392d2013000000000000000a141e2c38434f59606d79839198a2acb6c0c8d7dcd0c7bfb5ada49d96918a827c77736f6a6968666565676869696e72767b818790959fa3abb5bdc6cfd8d7ccc0b6aca2989083796d60584e43372b21160b000000000000000a1724313d4a5764707d8a99a3aebbc7d3e0d4c8bbafa49a92877e756e696663616060606161636568696e72767b81868d93999fa7aebbbfc0bbb9b4b5bac0c9d2d4c8bdb1a89f92857d746e6d666b696e706c6155493c3023160a000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313e46525e69707d88939fa5afb7c1c9d6dbd3cbc2bbb3ada49d98928d86817d7a7672706e6d6c656b666d6e7073767a7d82878d92989ea5adb3bbbeb3a99d9083776b605448382e23170b000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000030608090b0b0b0b0b0c0c080d111317232e3b4855626e7b8895acb6c0ccd8dccfc3b6a99c908376695d5043362a1d1003000000000000000000000000000000000000000c18232f394754606a7784919dabb5c0c7bbaea3998b7f7265584e43372b1c11060000000000000000000000000000000000000000000000000009121b23292e3132383838383838383838383534312c251e150c02000000000000000000000000020b17202a343c454d575e686d747d848e939a9fa4acb0b8babfc6c8cdd2d5dadcd7d3d2ccc7c6c0bbb9b6b1acaaa7a09d9994908b85817c76706b636059544f4540393128231d150c04000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe1d6cdc5beb9b8b9b9b1a8a0979288817b736e696662605d555d545c606164676d70787e858e939da4aeb6c0c9d2ded5cbc3b9ada1978d8074695f53443a302519070000000000000000000000000000000000000000000000000000040d17202a333d464f59626d74818e959fa59e948f837a6e6960584f473e362c22170b000000000713202d3a4653606d798693a0acb9b9b9b9b9b9b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afb9b9b9b9b9b9b2a5998c7f7266594c3f3326190c000000000000000000000000000000000000000000000000000000000000030b12181e242931363d434750545c60686d737b818990959ea0a8adb3bbbfc6cfd1cbc5bebab2aca79386796c605346392d201300000000000006111c2630384854606b73808d95a0aab4bec7d2dad0c7beb5ada39c928d847d756f6a66625f585b5a58595a5b575f6166696e747c838b9299a3abb4bcc6d0d9d2c7beb4aaa0958d80736a5f54473d33271c10040000000000010e1b2734414e5a6774818d9aabb5bfcbd7d8ccc0b6ac9f93887e716c615f57575554535354555658575f61656a6e747a808790959da4aeb5bdc6c5c1c2c5cbd2dbd1c5b8aca0958b7f726b62605c575f6164615a5044392d201408000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a36424d56606b73808c939da5afb7bfcad0d8d4cdc5bebaaeaaa29f99928e8986837f7c7b7a79787879797b7d7f82868a8f92999fa3aaafbabec5c5b8aca095897d7063544a3f34281c10030000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000001040614202d3a4753606d7a869aa4afbbc8d4dcd0c3b6a99d9083766a5d5043372a1d10040000000000000000000000000000000000000007121d2b38434e5866727f8c99a4afbbc7bfb5ab9d9083776a5f5347382e23170c00000000000000000000000000000000000000000000000000000911181d2224252b2b2b2b2b2b2b2b2b2b292825201b140c03000000000000000000000000000a141d29323c464e575f696e7a818a91969fa4acafb6bec1c6cad0d4d9ddd7d4d1cbc7c5c0bbb9b6afaca9a7a09d9995918c88837e7a746f6a636059544f48433d352f281f18120b0300000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e6dacfc5bbb3adabadb3bab2a9a29a938e86807b77736f6d676a696a666d6e7175797d838b92979ea5aeb6c0c8d2dbd7cdc3b9afa59e91857a6d60574d4232291e130800000000000000000000000000000000000000000000000000040d161f29323c454e58616b727f8b939da7afa69f9590847b6f6a615950483e33281c10040000000713202d3a4653606d798693a0acb9c6c6c6c6c2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc6c6c6c6bfb2a5998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000000000000040a0c151c23282f353b42464e545a61666d727a80868e939d9fa7acb2babec5cbd1ccc6bfbab3ada8a19e9586796c605346392d20130000000000000b17232e3842505a636f7c87939fa8b1bcc6d0d9d3c9beb5ada39b918c8079706c625f5855534e4e4d4c4c4d4e4d5355575e616a6f787f879299a3aab4bdc7d2d9d0c6bcb1a79f92877c6f62594f44382c21160a000000000003101c2936434f5c6976828f9ca9b5c2d1dcd4c8bbafa49a8e81746c615a534d4a484746464748494c4d5355585f62686d747c838d929fa3abb5bfcbcdced1d6ddddd0c4b7aa9d9184796d605953514d5355575550483e33281c1004000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d1925303b444f59636e74818e939ea5aebabfc6ced6d7cfcac0bcb4aeaba39f9b98928f8c8988878685858686888a8c8f92989b9fa3abaeb4bcc1cacac0b9b0a79c8f8276665c5044382b1f12060000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7986939facb9c6d2ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000010f1b27323d4854616e7b87939facb9c5c6b8aca095887c6f62544a3f34281c10030000000000000000000000000000000000000000000000000000060c121518181f1f1f1f1f1f1f1f1f1f1c1b19150f09020000000000000000000000000006111b262f3b444e585f696e7b838e939ea1a9afb6bbc0c7d0d3d6dbd9d4d2ccc7c6c0bbb9b5afacaca49f9d9895908c8884807b76716d67626058544f48443d383229241d160d07000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e1d5c9beb3a9a19ea1a9afb7b3aca49f98928d87837f7c7a7877767778797b7e82858a90959ea1a9afb7c0c8d2dad7cdc5bbb1a79e938a7e71675d51453b3120170d02000000000000000000000000000000000000000000000000040d161f28313b444e57606a707d87929fa5afb8b0a7a09691857c706b615a5044392d2014080000000713202d3a4653606d798693a0acb9c6d2d2cfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d2d2ccbfb2a5998c7f7266594c3f3326190c000000000000000000000000000000000000000000000000000003090e151b1e272e343a41454d535860626c71797f858d92999ea5abb1b9bdc4cad0d0c7c0bbb4aea9a29f96918a83776a5d5044372a1d11000000000003101c28343f4a54616c76839099a4afbac3ced8d6cdc1b7ada39b918b7f746d67615a534e48474342403f3f40424246484d535860666c727e879298a3abb5c0ccd7d8cec3bbafa3998f82766b6054483d32271b0f020000000004101c2834404a546a7784909daab7c3d0ddd2c6b9ac9f93877b6e615a5047423d3b3a3a3a3a3b3d3f4246484e53565e616a6f78808b9299a3aebbc0cbd4dee2e5d9ccbfb2a6998c7f73665c5046444246484a49443e362c22170b00000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f29323d47525c606c78818e939ca4aeb4bcc2cad0d7d6cec6bfbab5aeacaaa39f9c9996959992919292989597999c9fa3aaacafb5babfc6cec6bfbaaea69f959083796d6053463a2d2013070000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b657985929facb8c5d2ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000a16202d3a46525e6976828f9ca9b3bec8bcb1a79a8d8073665c5044382c1f13080000000000000000000000000000000000000000000000000000000105090b0c121212121212121212120f0e0c09040000000000000000000000000000000b17222d38414c565f6a6f7b8491959da5adb2bbc0c7ccd2d9dfd8d3cec8c7c0bbb9b5afacaba49f9c9a93908c88837f7b77736e6964605d55544e48443d38332c272118120c0400000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfd2c6b9ada19792979ea5afbcb6afaaa39f9a95908c8886858483848586878a8e92989d9fa7adb3bbc1c9d2dad5cdc5bbb3a9a0958e81756c61554c4133291f0e05000000000000000000000000000000000000000000000000040d161f28313a434d565f6a6f7d869299a3afb7c0b9b1a8a09792867d706c6155493c3023160a0000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000001080d141a20272b303940444c52575f616a6f767d848b92979fa3abafb8bcc2c9cecec8c2beb6afaba39f97928c847e776c605346392d201306000000000006121f2b3844505c66707d8a959fabb5c0ccd5dacfc4bbafa59b918b7f726d605d555047433c3a37313332323431373a3b42464e545b606c717d869299a4afbbc3cfd9d7cbc0b5ab9f94897d7063594f43382c1e13080000000006121f2c3844515c667885929eabb8c5d1dccfc3b6a99c908376695e53473e37312e2d2d2d2e2e3031363a3c43474c525860666d747e87929fa4aeb9c2cdd8e4e3d6c9bdb0a3968a7d7063544a3f38363a3b3d3c39332c241a10050000000000000000000406070c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d20130c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c070604010000000000000000000000000000000000000000000000000000000000000000000000020d17202c354044505b666d78818c929fa2aab1babfc6ccd2d6d0cac6bfbbb9b4aeaca9a5a3aba39f9e9e9fa3aaa3a6a9acaeb4b9bbc0c7cbc9c2bcb4aea49d9490837a6d665c5044382b1f12060000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495f6b7885929eabb8c5d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000005121e2a36424d5764717e8a97a2adbac6c3b8ab9e9285796d6053463a3025190d01000000000000000000000000000000000000000000000000000000000000000505050505050505050502020000000000000000000000000000000000030f1b27333f49535e686f7c859196a0a7afb9bdc4ccd2d8ddd8d3ccc7c3bcb8b5afacaba39f9c9993908b87837f7b77736e6a66625f5753514b47433d38332c27211b160d07010000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ded1c5b8ab9e92858e939ea9b3bcbbb4aeaca79f9d99959792919091929794979b9fa2aaabb1b9bec5cdd3dad5ccc3bbb3a9a1979183796d605a50433a2f21180d000000000000000000000000000000000000000000000000040d161f28313a434c565e696e7c859298a2abb5c0c9c3bab2a9a19892867d7064574a3d3124170a0000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000000060c13191f252a32373e424a51565d60696e757c838a91969ea2a9aeb4bdc1c7cdcfc9c3bdb8b0aca49f99928d857f79716c655b5044372b1f120500000000000713202d3a4653606d7884919da7b1bdc7d2ded5c9beb2a99e938b7f726d635b514b433e37312e2b2627252627262b2d31363d424a505a616b707d87939fa7b1bdc7d1dcd1c7bdb0a69d9083766b6054483a3025190d010000000713202d3a4653606d7986939facb9c6d2d9ccbfb3a6998c807366574d42352b2622212020212223262a2d31373a41464e545c606c717e8a929ca7b1bcc7d3dfe2d5c8bcafa295897c6f6256493c2e2a2d2e31302d28221a12080000000000000001070c10131418181818181818181818181818181818181818181818181f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201818181818181818181818181818181818181818181818181413110d070100000000000000000000000000000000000000000000000000000000000000000000050e1a2328333f4a545c666d77808b92989fa7aeb4bbc0c7cbd0d4d1cbc7c5bfbab9b6b2afb5afacababacaeb4b0b2b5b9babfc5c7cbc8c4bdb9b0aaa29f928d827a6d685e544a3f34281c10030000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d45525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000020e1a25303b4753606d7985929fabb8c3c6b9ada1978a7d7063564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202b3744505b656e7a859197a1a8b1b9c0c9cfd8dddad5cdc7c2bbb7b1acaba49f9c99928f8b86837f7b76726e6966625f5855534d4745403937322c27211c160f0a0400000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82818e97a2aab4bdbfbab9b1abaaa6a9a29f9d9c9d9ea2a9a4a8acaeb4b8bcc2c9cfd6d6cfc9c1bab1a9a29792857c6e675d51483e31281e0f060000000000000000000000000000000000000000000000050d161f28313a434c555d686e7b849197a2aab4bdc7d1cbc2bbafa39992857b6e6155483b2e2215080000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000000000000000000000000000000000000000000030a11171e242931363d434750545c60686d737b818990949ea0a8adb3babfc6cfd0cac4beb9b1aca69f9a938e86807a726d67605b53493f33271b0f030000000005121e2b37424d5764707d8a96a0acb9c2d0d9dcd2c6b9ada1978e81756d625b51454039312b26211f1a1a19191a1a1e21252a2f383f445059616b73808d95a0abb5c0cbd7d9cfc2b8ab9f95897c6f63564c41362a1d11050000000714212d3a4754606d7a8799a3afbbc7d4d7cabdb1a4978a7e7164574b3e31241a151413131415161a1e21262b30363c424a505a626c73808d959fabb7c2cdd8e4d5c8bbaea295887b6f6255483c2f2221222423201c17100800000000000000030b12181d1f202525252525252525252525252525252525252525252525252b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2525252525252525252525252525252525252525252525252520201d18130c0400000000000000000000000000000000000000000000000000000000000000000000081117222d38424b545c656c737e8690959fa2aaafb5babfc6c8ced2d3d1cbc7c5c2bfbcc0bbb9b8b8b9babfbdbfc2c5c7cbcbc7c3bdb8b2ada69f98928b81796d685e564c42382e23170b000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000009141f2c3845515d6774818e9aa8b2bdc8beb3a99b8e8275685e5246392d20150a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141f2b37434e58606c77828f97a1a9b2bac3ccd5dadfd6cfc9c2bbb7b0aba7a09d99938f8b86827e7a76726e6965615f5755534e4847423c39352f2b27201c16100b05000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827a859298a3abb3bbc3c3bcb8b6b2b3adabaaa9aaabadb3b1b5b8babfc5c8cdd5d6d0cbc5beb9b0a8a09792857c6f6a5f554b40362c1f160c0000000000000000000000000000000000000000000000050e161f28313a434b555d676d7a839096a1a9b3bcc6cfccc2b8afa59f92877d70695f53463a2d2114070000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000000000000000000000000000000000040a0c151c23282f353b42464e545a61666d727a80868e939c9fa6acb2b9bec5cbd1cbc6bfbab3ada8a09d949087817b736d68605c55504941382d22170b00000000000714212d3a46535f6976828f9ca8b2bdcbd4e2d2c6baafa59e91857a6d615b514940352f271f1b15120f0a0c0c090e12141a1d262d333e474f59606d79839199a3afbbc7d2ddd4c8bcb1a79b8e8175685e5246392d2013080000000613202d394653606c7986929facb9c5d2d6c9bcafa396897c706356493d302316090707070708090e12151a1e252a30383f44505a606c7883909da7b1bcc8d4e0d5c8bbaea295887b6f6255483c2f221515171614100b0500000000000000030d151d24292c2d323232323232323232323232323232323232323232323232323845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c6053463932323232323232323232323232323232323232323232323232322d2c29241d160d040000000000000000000000000000000000000000000000000000000000000000000006111c262f39424b535b606c717b838c92989fa4abaeb4b8bdc3c5c7cbd1d0d1cfccd1cbc7c5c4c5c5c7cbd1cccfcac6c5bfbab9b2aca8a19e948f867e746d675d564c443a30261c1106000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000004101d2935404b55636f7c8996a0acb8c7c5b9ac9f92867a6d6154473c31261b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1925303a47535f6a727f8c949fa9b3bbc4ccd5dedcd4cdc5beb9b0aba69f9c95918c87827e7a76726e6865615e5755534d4847433c3a37312c29241d1b16100b050000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82757d869299a2a9b1b9bec5c4c3bfbebab8b7b6b7b8b9bebdc1c5c6cad0d4d3d0cac6bfbab3ada69e9591857c6f6a5f574e43392f241a0d0400000000000000000000000000000000000000000000060f172028313a434b555d676d79839095a0a8b2bbc5cecdc4bab0a69d938b7f726b60574d42362a1e12050000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000000000000000000000000000000000003090e151b1e262e343a41454d535860626c70797f858d92989ea5abb0b9bdc4cacfcfc7c0bbb4aea9a19e95918a827c756e69615d56514b443f382f261b110600000000000815222e3b4855616e7b87939facb9c3cedfdbcfc2b6a99e938a7d70685d52493f3729241d150d0a0603000000000205090b141c2228353e45515c676f7c87929facb6c0ccd8d8cdc2b9ac9f92867a6d6154473a2f24190d01000006121f2b3844505b667885919eabb8c4d1d6c9bdb0a3968a7d7063574a3d3024170700000000000002050a0f13191e262e343f44505b66707d89959fabb8c4d1ddd5c8bbaea295887b6f6255483c2f2215090a0a08040000000000000000010b151f272f35383a3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f45525e6b7885919eabb8c4d1d2c6b9ac9f9386796c6053463f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3a39352f281f160c01000000000000000000000000000000000000000000000000000000000000000000000a141d2730394149505a62696e787f868e93999fa3aaacb2b6b9bbc0c1c3c5c6c9cfc8c9c9c8d0cbc7c5c4c2c0beb9b8b4aeaca8a09d96918a827b716c605c554c433a32281e140a00000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000c18242f394854606b7784919eabb5c0c7baaea3998b7f7265584e43372b1c110600000000000000000000000000000000000000000000000000000000000001010101010101010101000000000000000000000000000000000005111e2a36414d56626e7c86929fa6b0bbc4cdd6dedbd2cac2bbb3ada69f9c948f89847f7b76716d6865615e5654524d4846423b3a37312e2b26201d18120f0a0400000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275717e8792979fa7adb3b9bdc4c6cac6c5c4c3c4c5c6cacfced2d2d0d0cac6c5bebab4aea9a19e948f837b6f6a60584e453c31281d120800000000000000000000000000000000000000000000070f182129323a434b555d676d798290959fa7b1bac4cdcec5bbb2a89f948e81746d62594f453b31261a0e020000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000000000000000000000000001080d141a20272b30383f444c52575e616a6f767d848b92979fa3aaafb7bcc2c9cecdc8c1bdb5afaaa29f97918b847d766f6a615f57524c454039332d261d140a000000000005121e2a36424d576673808d9aa4afbbc8d4e0d3c7bbb0a69b8e81746b61564c41372d2518120b0300000000000000000000020a1117232934404b55606a74808d9aa4afbbc8d4e0d3c7baaea3988b7f7265554c4135291d11040000030f1c28333f4a546a7784909daab7c3d0d7cabeb1a4978b7e7164584b3e2f24180c03000000000000000002080c141c2328333f4a54606b7683909da9b6c3d0dcd5c8bbaea295887b6f6255483c2f22150900000000000000000000000007121d2731394045474b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b525e6b7885919eabb8c4d1d2c6b9ac9f9386796c60534b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4745403a31281d130700000000000000000000000000000000000000000000000000000000000000000000020b151e272f383f4450575f666d737b81878e92989ea0a8aaacafb5b5b6b8b9bebbbcbcbcbcbbbfbab8b7b5b4b3adababa39f9c96918b847e766e69615a514b433a312820160c0200000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000007121d2c38434f5966737f8c99a4afbbc7bfb4ab9d9083776a5f5347382e23170c00000000000000000000000000000000000000000000000000000407090a0e0e0e0e0e0e0e0e0e0e0c0b0906010000000000000000000000000714202d3946525e6874818e99a3aeb8c2cdd6dfdbd2c9c0b8b0a9a19e948f89827d77726e6964615e5654524c4846423b3a36312e2b26211e1a15100d0701000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82756c717d8590959ea1a9adb2b8babec2c4c5c7cbd1c9c9d0cac6c5c3c2bfbab8b3adaaa39f97928a827a6e6960584e463c332a1f160c00000000000000000000000000000000000000000000081019212a333b444c555d676d798290959fa7b1b9c3cccfc5bcb3a9a1969082786d605b51473d332a1f1409000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0000000000000000000000000000060c13191f252a32373e424a50565d60696e757c838a91969ea1a9aeb4bcc1c7cdcec9c3bcb8b0aba39f98928c857e78706c626058534d46413a342e27221b140b0200000000000714212d3a46535f697784909dacb6c0ccd8ddd0c3b7ab9f94887c6f62594f443a30251b13070100000000000000000000000000061118232f39434e58616e7b87939facb9c4cedad7cbbfb4aa9c8f8276675d5145392c2013060000000b17222d434f5c6976828f9ca9b5c2cfd8ccbfb2a5998c7f7266554b4035291e150c08020000000000000000020a1117222d38424f596773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f2215090000000000000000000000000c18242f39434b5153585858585858585858585858585858585858585858585858585858585e6b7885919eabb8c4d1d2c6b9ac9f9386796c60585858585858585858585858585858585858585858585858585858585853514b433a2f24180d0100000000000000000000000000000000000000000000000000000000000000000000030c151d262d333e454d545c60696e747c81868c9196999d9fa3aba8a9abadb3aeafafafafaeb4aeacaaa9a7a9a29e9b99928f8a847e79716c615f575045403930281f160e040000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000010f1b27323d4854616e7b87939facb9c5c6b8ab9f95887c6f62544a3f34281c10030000000000000000000000000000000000000000000000050b101416171b1b1b1b1b1b1b1b1b1b191816120d070000000000000000000003101c28343f4a54616e7b86929fabb4bfcad3dfddd3c9c0b7afa69f97928a827c76706b66615e5754524c4746413b3a36302d2a26211f1a15120e0904010000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275696b707b838b92979ea1a8abaeb4b5b7b9bbc0bcbcbcbbbfbab8b7b5b4aeaca9a29f98928d857e756d685f574e463d342a21180d0400000000000000000000000000000000000000000006111a222a333c454d565e676d798290949fa7b1b9c2cbd0c6bdb4aaa19791847a6d665c51493f352b21180e03000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000000000000000000000000030a11171e242931363c434750545c60686d737b818790949ea0a8adb3babfc6cfd0cac4bdb9b1aba69e99928e868079726d666159544e46423b353028231d17110a020000000000000815222e3b4855616e7b8895a0acbec7d2ddd5c9bdb2a89c8f82766a5f53473e32281e13090000000000000000000000000000000007121d27313d47535f6976828f9ca8b2bdc9d5dcd1c5b9ac9f92867a6d6054473a2d211406000000061b2835424e5b6875818e9ba8b4c1cdd9cec2b5a89b8f8275675d51453a30271e19130f0a06030000000000000006111c262f404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f221509000000000000000000000004101d2935404b555d6065656565656565656565656565656565656565656565656565656565656b7885919eabb8c4d1d2c6b9ac9f9386796c656565656565656565656565656565656565656565656565656565656565605d554b4035291d11040000000000000000000000000000000000000000000000000000000000000000000000030b141b2227333c424a50565e616a6f747a7f84888c909299999b9d9ea1a9a2a2a3a3a2a2aaa39f9d9c9a9797928f8b86827d78716d67615a534d453e342e271e160d04000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000a16202d3a46525e6976828f9caab3bec8bcb1a79a8d8073665c5044382c1f130800000000000000000000000000000000000000000000080f161c202223282828282828282828282625221e18110a01000000000000000006121f2b3844505c6673808d99a3aebdc6d1dcdfd5cbc1b7afa59d948f857e766f6a63605954524d4746413b3936302d2a25211e1a14120f0906020000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f82756960696e787e858c91969b9fa2aaa8aaacafb5afafafafb4aeacaaa8aaa29f9b97928d86807a716c605d564d453d342b22180f060000000000000000000000000000000000000000020a1117232c343c454d575e686d798290949fa6b0b9c2cbd2c7bdb4aba29892857b6e685e544b40372d23190f0600000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000000000000000040a0c151c23282f353b42464e545a61666d727a80868e939a9fa6acb2b9bec5cbd1cbc5bebab2aca7a09d948f87817b736d67605c544f47433d363129241e18120b0600000000000000000c1926323f4c5965727f8c98a7b1bcd0d9ded2c5b9aca0968a7d7064584e43352c20160c0000000000000000000000000000000000010b151f2b37424d5764707d8a96a1acb9c5d2ded3c7baaea3998a7d7164574a3e2e23170c0000000c1825323f4b5865727e8b98a7b1bcc8d4d2c5b8ac9f92867a6d60564c4239302a251e1b13120f0b060502000000000a142734404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f221509000000000000000000000006131f2c3845515d676d7272727272727272727272727272727272727272727272727272727272727885919eabb8c4d1d2c6b9ac9f938679727272727272727272727272727272727272727272727272727272727272726d675d5145392c201306000000000000000000000000000000000000000000000000000000000000000000000000020a1117212a30383f444d52585f62686d72777b7f8386898c8e90929794959596969595949892918f8d8b8885827e7a75706c66605c555047423c3328231d150c0400000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000005121e2a36424d5764717e8a98a2aebac6c3b8ab9e9185796d6053463a3024190d01000000000000000000000000000000000000000008111a21272c2f303434343434343434343432312e29231b130a00000000000000000713202d3a4653606d7985929eabb4bfcfd8e2d9cdc3b9afa59d938e827a716c626058544f4746423b3935302d2a25201e1a14120e090602000000000000000407090a090806030000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569575e666c717a7f848a8f9298999b9d9fa3aba2a3a2a2aaa29f9d9b9998928f8a85807b746d68615a524c433c332b221910070000000000000000000000000000000000000000040b141c2228353e464e575f696e7a8390949fa6b0b9c2cbd7ccc0b5aba39992867c6f695f564c42392e251b11070000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000000000000000002090e151b1e262e343a41454d535860626c70787f858d92989fa4acb0b8bdc3cacfcfc6bfbab3ada8a19e959089827c746e68605d55504a423e37322a261f19130c0700000000000000000005121e2a36424d576975828f9ca8b5c2cedbddd1c4b7aa9e9184786c6053463c31201a0e04000000000000000000000000000000000000030d1a26313c4653606c7884919eabb7c4d1ded7cbbfb4ab9a8d807467544a3f34281c100300000815212e3b4854616e7b8795a0acb8c7d1d3c7baaea3988b7e71685e544b433c36302b26201f1c1714110e090604000d1a2734404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000714202d3a4753606d797e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e85929fabb8c5d2d8cbbeb1a5988b7f7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e796d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000060f181e262e343b42464e53565e61666a6e73777a7c7f82838586888889898989888887858482817e7b7975716d6864605b54514b433e37312a2118120b030000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000020e1a25303b4753606d7985929fabb8c3c6b9ada1978a7d7063564c4135291d110500000000000000000000000000000000000000050f1a232b33383c3d414141414141414141413f3e3a352d251b1107000000000000000916222f3c4955626f7c8897a1adbdc6d1e1e0d4c8bcb1a79e938e81786d68615a544e48443d3a36302d2925201e1914120e0905020000000000000000050b101416171515120f0a04000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c545b60686d73787d8285898c8f9192999595969695959892908f8c8985827d79736e68615e565045413a312a211910070000000000000000000000000000000000000000060d161d262d333f474f585f696e7b8390959fa6b0b8c2cbd0c7bfbbafa49992877d706a60574d443a30271d1309000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000000001070d141a20262b30383f444c51575e616a6f767d848b92979fa3aaafb6bec2c8cecdc7c1bdb4aea9a29f96918a837d756f6a615e56514b443f38302b27201a140d0802000000000000000000000714202d3a46525e697885919eabb8c4d1ded7ccc0b5ab998d8073665b5044382b1f1208000000000000000000000000000000000000000009151f2b3844505b6674808d9aa7b3c0cfdadcd1c3b6a99d908376665c5044382c1f120600000714202d3a46525e697783909dabb5c0cbd6cbbfb4aa9e92857a6d665c554e46413a37322d2b2822201e1a1313100c071a2734404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a878b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b9298a2aebac6d3d8ccbfb3a79b918b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000060c151c232830363c43474c5254585f6266676d6f727576787a7b7b7c7c7c7c7b7b7a79777674716e6c6564605d5653504a454039302b261f180f0700000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000009141f2c3845515d6774818e9aa8b2bdc8beb3a99b8e8275685d5246392d20150a000000000000000000000000000000000000000b16212b353d44484a4e4e4e4e4e4e4e4e4e4e4c4a463f372d23180d010000000000000c1925323f4c5865727f8b98a9b3becfd8e2ded1c4b8aca0958e81776d665e565047433d38332d2a25201d1914110d08050200000000000000000000080f161c20222322211f1b150b060000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4a50565d60666d7075797c8082848687888989898888878584827f7c7975716d67615e56524c443e352f281f180f070000000000000000000000000000000000000000060f181f282f383f445159616a6f7b8491959fa7b0b8c2cbd8c7bfb5ada39f93877e716b60584e453c32291e150b01000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0000000000040c13181f252a32373e424a50555d60696e757c828a91969ea1a9aeb4bbc0c7d0cec8c2bbb7afaba39f97928c847e78706b625f58524d45403a342e261e1b150e09030000000000000000000000000815212e3b4854616e7b8797a1adb9c6d2dfd4c7bbafa499897d7063544a3f33281c0f030000000000000000000000000000000000000000030f1c28333f4a5464717e8a97a9b2bdc9d5dfd2c5b8ac9f9286796d6053463a2d201307000005121e2a36424d576673808c99a3afbbc5d0d0c6b9ada1978f81786d675f58524c47433c3938332d2d2a25201f1c18131a2734404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a879498989898989898989898989898989898989898989898989898989898989fa2aab3becad6dbcfc3b7aca39b98989898989898989898989898989898989898989898989898989898989894877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000030a11171f252a31373a4146474e5355555d606366686a676d6e6f6f70706f6f6e6d6c6569676462605b5354524c46443f38342e271e1a150e060000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000004101d2935404b55636f7c8996a0acb9c7c4b9ac9f92867a6d6154473c31261a0f00000000000000000000000000000000000004101c27333d474f54565b5b5b5b5b5b5b5b5b5b595751493f35291e1206000000000004101c2934404b556875828e9ba8b5c1cfdbdfd3c7bbb0a69d9083796d655c544c443e37322c27201e1a14110d08050100000000000000000000000008111a21272c2f302f2e2b262017110a02000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f444c52545c6064666d6f737577797b7b7c7c7c7c7b7a797775726f6d6664605c55524d46413a3229241e160d0600000000000000000000000000000000000000020a11172129313a424a505b626b707c859196a0a8b1b9c2cad2ccbfb5ada39b918b7f726c61594f463c332a20170c0300000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000070d161d242930363c43474f545c60676d737b81878f949da0a8adb3babfc6cccfc9c3bdb8b0aba59e99928d857f79716c656059534e46413b352f28231c150c0a0400000000000000000000000000000a1724313d4a5764707d8a97a9b3bec9d5dfd2c6b9ac9f93867a6d6054473a2d22170b000000000000000000000000000000000000000000000b17222d3b4854616e7b8796a1adb9c5d2dfd3c7baaea398887c6f6255493c2f2216090000020e1a25303b4855626e7b87929faab4becad6cabeb3a99e938f81796f6a615e56534e4946443f3b3a36302d2c28231f1c2734404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5abaeb3bcc5d0dbdfd4c9beb5aca7a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c141920262b3036393c4347484b515356595b555d60616262636362626161605b535a58555350494745413a38332d28231d150c0903000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000c18242f394854606b7784919eacb6c0c7baaea3998b7e7265584e43372b1c110600000000000000000000000000000000000714202c38444f5960636767676767676767676765625b51463a2e221609000000000006131f2c3845515c677884919eabb8c4d1dedcd0c3b7aa9e94897c6f675d534a423a322b27201c16110e0905010000000000000000000000000000050f1a232b33383c3d3c3a373127221b140b050000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4241454a5053545c60636668666d6e6e6f706f6f6e6d686a686662605c5453514b46413b3630282019130c0400000000000000000000000000000000000000020b141b2227333b434b545b606d727d869297a1a8b1bac3cbd0c7c0bbada39b918b7f726d625a50473d342b21180e050000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0000000710191f282f353b42464e545961666d727a80868e939a9fa6acb2b9bec5cbd0cac4beb9b2aca69f9c938e86807a726d67605b534f47433c363029241d17110a03000000000000000000000000000000000c1926333f4c5966727f8c99a5b2bfcfdaddd0c3b6aa9d908377675d5145392c1c1106000000000000000000000000000000000000000000000614212d3a46535e697884919eabb8c4d1ded6cbbfb4aa978a7d7164574a3e3124170b0000000914212e3a47535f6a74818e98a2aebac2cbcfc5bbafa59e938f837c736d68625f585553504a4746423d3a38342e2c282334404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1adb1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b8babec5ced7e1e5dad0c7beb7b3b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1aea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e151a1e252a2d31373a3b404547494c4f4b51535555565656565555545350494e4b4846443f3a39352f2b28221c18120b030000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000007121d2c38434f5966737f8c9aa4afbbc8bfb4ab9d9083766a5f5347382e23170b00000000000000000000000000000000000916222f3c4854606b7074747474747474747474726d62574a3e3125180b00000000000714202d3a4753606d7a8696a1adb9c5d2dfd7cbc0b5ab9c8f82756b60554b41393028201b15100b050200000000000000000000000000000000000b16212b353d44484a4847433c332d261d170e0701000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4235383f44464a50535659545c6061626263636262615e565c595653514a4745403936302a251e160e080100000000000000000000000000000000000000000a141d262d333d454d555d666c737f879298a1a9b2bac3cccfc7beb6afa39b918b7f726d625b51483e352b22190f06000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0000040f19222b313a41454d52585f626b70787f858d92989fa4acb0b8bdc3c9cfcbc6bfbab3ada8a09d949089817b736d68605c555049413d37312a251f18130c060000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4c0cddadacdc0b3a79a8d807467554c4135291d0a000000000000000000000000000000000000000000000005121e2a36424d576875828e9ba8b5c1cedbdcd0bfb2a5988c7f7265594c3f3226190c00000006121f2b37434e58616e7a85929fa6b0b9c3cccdc1b8afa59e959087807a746f6a6662605b5454524d494645403a38342e34404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1adbabebebebebebebebebebebebebebebebebebebebebebebebebebec5c6cad0d7e0e9ece2d9d0c9c3bfbebebebebebebebebebebebebebebebebebebebebebebebebebebebaaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f13191d20262b2e2f35393a3c3f4240454748484949494948484746443f413e3b3937332d2c29241f1c17110c0700000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000010f1b27323d4854616e7b87939facb9c5c6b8ab9f95887b6e62544a3f34281c1003000000000000000000000000000000000a1723303d4a5663707d818181818181818181817f7265594c3f3226190c00000000000814212e3b4754616e7a8794a8b2bdc9d5e0d4c7bbafa3998a7d7164594f43392f271e160e0a040000000000000000000000000000000000000004101c27333d474f545655534e443f382f292018120b030000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f42362e34383a3f4446494d4a51535455565656555554524c4f4c494644403a38342f2a251f19130c0500000000000000000000000000000000000000000006111b262f383f444f575f676d78808b9299a2aab3bbc4cccec6bdb5aca49f918b7f726d625b51493f362c2319100700000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000a15202b343d434b51575e616a6f767d848b92979fa3aaafb6bec2c8cecfc7c0bbb4aea9a19e96918a837c756e69615d56514b443f382f2b262019140d070100000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd7cabeb1a4978b7e7164584b3e2f24190d0100000000000000000000000000000000000000000000020e1a25313f4c5966727f8c99a5b2bfccd8dacdc0b3a79a8d8074675a4d4134271a0e000000020f1a26313c46525e68727f8c949fa7b1bac4cccac1b7afa79f99928d86817c77736f6c6665615e575653514b4645403937404d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1adbac7cbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbd2d3d6dbe1e9f2f4ebe2dad4cfcccbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbc7baaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d11151a1f2124292c2d30332f35393a3b3c3c3d3d3c3c3b3a3937332d312f2d2b2722201d19130f0b06000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000a16212d3a46535e6976828f9caab4bec8bcb1a7998d8073665c5044382b1f1308000000000000000000000000000000000c1926323f4c5965727f8c8e8e8e8e8e8e8e8e8e8276695c504336291d1000000000000815222f3b4855626e7b8895a1aebbcfdadfd2c5b9ac9f92867a6d6054473d31271d150c040000000000000000000000000000000000000000000714202c38444f596063625f585049413b3229231d150d0600000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f423623282b2e34383a3c4040444648484949494948474641423f3c3a38342e2c29231d19140d0802000000000000000000000000000000000000000000000b17222d384149505960696e79828d929fa3abb4bcc5cdcec5bcb4aba39a938b7f726d625b51493f372d241a11070000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00030f1b27323d464e555d60696e747c828a91959ea1a9aeb4bbc0c7d0cdc8c1bdb5afaaa29f97918b847d766f6a615f57524c454039332d261d1a150e0802000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0ddd6c9bcb0a396897d7063564a3d30231708000000000000000000000000000000000000000000000000091825323e4b5865717e8b98a4b1becbd7dbcec2b5a89b8f8275685c4f4235291c0f000000000915202a36414c56606d79829095a0a8b2bac1cbc9c1b9b1aba39f98928e8884807c7975716e696763605c5453514b46443f4d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1adbac7d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d2d3d7dce3eaf3f9efe7dfd9d4d1d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0c7baaea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050a0f1214181d2020232624292c2d2e2f2f30302f2f2e2e2d2b27222522201f1b1713110d08030000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000005121e2a36424d5764717e8b98a2aebac6c2b8ab9e9184796d6053463a3024190d010000000000000000000000000000000c1926323f4c5965727f8c989a9a9a9a9a9a9a8f8376695c504336291d100000000000091623303c4956636f7c8996a2afbcc9d5ddd0c4b7aa9d918477685d5245392b1f150b03000000000000000000000000000000000000000000000916222f3c4854606b706f6a605b534c443e342f271f17110a020000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c1f23282c2d302e34383a3b3b3c3d3c3c3b3a393630332f2d2c28231f1c18120e08020000000000000000000000000000000000000000000000030f1b27333f49535b606b707b838f939da4afb5bdc6cecdc5bcb3aaa39992887f726d625b51493f372d241b1208000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0006131f2b37434e5860676d737b81878f949da0a8adb3babfc6cccec9c3bcb8b0aba39f98928c857e78706c626058534d46413a342e27221b140b0a030000000000000000000000000000000000000000000005121f2c3845525f6b7885929eabb8c5d1ded5c8bbafa295887c6f6255493c2f2216090000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0bdcad7dccfc3b6a99c908376695d5043362a1d1000000000030d1925303b45515c676d7a839196a1a8b0bbc0c7cbc2bdb5aeaaa39f9a96918c8885827e7b7773706d6664605c545350494d5a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1adbac3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c5c7cbd1d9e1eaf1e7ddd5cdc8c4c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3baaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000206070d1013141619181d2020222223232323222221201f1b17181513120f0b06040100000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000020e1a25313b4753606d7985929fabb8c4c6b9ada1978a7d7063564c4135291d11040000000000000000000000000000000c1926323f4c5965727f8c98a5a7a7a7a7a79c8f8376695c504336291d1000000000000a1724303d4a5763707d8a96a3b0bdc9d6dccfc2b6a99c8f837669564c413529190d030000000000000000000000000000000000000000000008131f2b38434e5863707d7c726c655e564f4540393127221b140b0500000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c12171c1f202323282c2d2e2f2f30302f2f2e2d2a252623201f1c1813100c07010000000000000000000000000000000000000000000000000005121f2b3744505b656c727d8590959ea6aebbc0c7cfccc3bbb3aaa29892877e726d625b51493f372d251b120900000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000815222e3b4754606a6f7980868e939a9fa6acb1b9bec5cbd0cac4bdb9b1aba69e99928e868079726d66615a544e46423b353028231d17110a0200000000000000000000000000000000000000000000000004101c2834404b556c7985929facb8c5d2dfd7cbc0b5ab94887b6e6155483b2e2215080000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6ddd0c3b6aa9d9083776a5d5044372a1d11000000000008141e2834404b555d686e7b8491969ea6afb5bdc2c8c6bfbbb4aeaca8a09d9997928e8b8784807d7975706d6663605b53515a6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1adb6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b9bbc0c7cfd9e3eadfd5cbc3bcb8b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104060709070d10131415151616161615151413120f0b06080605030000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000009141f2c3945515d6774818e9aa8b2bdc9beb2a99b8e8175685d5245392c2015090000000000000000000000000000000c1926323f4c5965727f8c98a5b2b4b4b4a99c8f8376695c504336291d1000000000000a1724303d4a5763707d8a96a3b0bdc9d6dbcec2b5a89b8f8275685c4f422f24190c00000000000000000000000000000000000000000000040e1a242e3b4754606a7783867f776e686159514b433c332d261d170e07000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c060c10121316181c1f202122232323222221201e1919161312100c0704000000000000000000000000000000000000000000000000000000000613202d394653606c777f879297a0a7b0b8c0cbd1cac2b9b1a9a19892867e716c625b51493f372d251b13090000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000916232f3c4956626f7c858d92989fa4acb0b8bdc3c9cfcbc5bebab2aca7a09d948f87817b736d67605c545047433d363129241e18120b06000000000000000000000000000000000000000000000000000006131f2c3845515c677986939facb9c6d2dfd3c7bbafa399877a6d6054473a2d2114070000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbc8d5ddd0c4b7aa9d9184776a5e5144372b1e110000000000020c18232e39434c565e696f7c848f949fa3abb0b8bcc3c8c6bfbab8b2acaaa9a19e9b9895908d8985827d7974706c65605d556773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a8794a1aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacafb5bdc7d1dce4d9cdc3b9b1acaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa194877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070809090a0a090908070605030000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000004101d2935404b55636f7c8996a0acb9c7c4b9ac9f92867a6d6054473c31261a0f0000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc1b6a99c8f8376695c504336291d1000000000000a1623303d495663707c8996a3afbccfdadccfc2b6a99c8f837669544a3f34281c10030000000000000000000000000000000000000000030c16202b37424d57626f7c89928b827a706b605c554e443f382f29201910070000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f00030607070c101213151516161616151413110d0809070604000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818c9399a2a9b1b9c1cad2ccc1b8b0a7a09792867d706c625a51493f372d251b1309010000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a979fa2aaafb6bec2c8cecfc6bfbab3ada8a19e959089827c746e69605d55504a423e37322a261f19130c07000000000000000000000000000000000000000000000000000000000713202d3a4653606d798699a4afbbc7d4dfd2c5b9ac9f928679675d5145392c2013060000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4ded1c4b7ab9e9184786b5e5145382b1e1200000000000007121d27303a444d575f6a6f7a828c92999fa6acb1b8bcc2c5c7c3bdb8b7b3adaba8a7a09d9a98928e8a85817c78726d67606773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a87949d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9fa3abb5c0cbd7e0d4c8bcb1a7a09d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d94877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000c18242f394653606c7884919eacb6c0c7baaea3988b7e7265584e43372b1c110600000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000916222f3c4955626f7c8895a9b3bec9d5ddd1c4b7aa9e918477665c5044382c1f130800000000000000000000000000000000000000020b151e28323a47535f6975818e9b948f857d746d675f585049413b322a22190e0400000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000406070808090a09090807070501000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7d859297a1a9b2bac3ccc7c0bbafa69f9591857c706b615950483f372d251b130901000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a9aeb4bbc0c7d0d4c9c1bdb4aea9a29f96918a837d756f6a615e56514b443f38302b27201a140d080200000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0b5c0cbd7ded2c5b8ab9f928578665b5044382b1f12060000000000000000000000000000000000000000000000000714212e3a4754616d7a8794a0adbac7d3ded1c5b8ab9e9285786b5f5245382c1f12000000000000000b151e28323b454e585f686d777f8790949da0a7abb1b8b9bdc4c5c5c4beb9b8b5b1acaaaaa29f9b97928e89847f79726d6773808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000814212e3b4754616e7a879090909090909090909090909090909090909090909090909090909090909299a3afbbc7d3ded1c4b8aca09590909090909090909090909090909090909090909090909090909090909090877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000407090a131313131313131313131313131313100f0d09050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000007121f2b3744505b65737f8c9aa4afbbc8bfb4aa9d9083766a5f5347382e23170b00000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000714212e3a4754616d7a8797a1adb9c6d2dfd2c5b9ac9f9286796d6053463a30251910060000000000000000000000000000000000040b141d27303a44505a626e7b86929f9e97928a80796f6a605b534c443c342a20150a00000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3b4854606b6f7c859197a1a8b2bac3bdb5afa59e948f837b6f6a60594f473e362d251b13090100000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bfc6ccd2d5cbc1b7afaba39f97928c847e78706b625f58524d45403a342e261e1b150e0903000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798699a3afbbc7d3dfd2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000815222e3b4855616e7b8894a1aebbc7d4ded1c4b7ab9e9184786b5e5145382b1e1200000000000000030c162029333c464e565d656c727c838990959d9fa7abadb2b7b9bdc1c5c6c5c1bcb8b7b4aeaca9a29f9a96918b857f797073808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000714212e3a4754616d7a8383838383838383838383838383838383838383838383838383838383838387929facb9c5d2ddd0c3b6aa9d8983838383838383838383838383838383838383838383838383838383838383837a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000000050b101416172020202020202020202020202020201c1c1915100a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7b87939facb9c5c6b8ab9f95887b6e62544a3f34281c1003000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000713202d3946525e687885929eabb8c5d1ded3c7baaea3988a7d7063564c41362a22181008020000000000000000000000000001080d161d262e39434c56616c76828f99a3a9a19e928d837c726c655e564e463c32261b0f03000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2c38434f59606a6f7c859196a0a8b1b9b3aba49f938e827a6e695f584f473e352d241b1309010000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdd0d8d9cdc3b9afa59e99928d857f79716c656059534e46423b352f28231c150c0a0400000000000000000000000000000000000000000000000000000000000000000006121f2c3844515c667986929facb9c5d2dfd4c7bbafa499877a6d6154473a2e2114070000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcc8d5ddd0c4b7aa9d9184776a5e5144372b1e110000000000000000040e17212a343c444c535b606a6f767d838a9095999ea1a8aaacb2b4b8b9bec2c5c5c3bfbab8b3adaba8a09e97928c847d73808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f22150900000000000000000000000713202d3946525e686d7777777777777777777777777777777777777777777777777777777777777885919eabb8c4d1d2c6b9ac9f938679777777777777777777777777777777777777777777777777777777777777776e685e5246392d20140700000000000000000000000000000000000000000000000000000000000000000810161c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000b17222d3846535e6976838f9caab4bfc8bcb1a7998d8073665c5044382b1f1308000000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000005111d2a36414c566976838f9ca9b6c2cfdad7cbbfb4aa9b8e8175685e52463e342a2219140e090502000000000000000105080d13191f282f38404b555e68717e8a949fabb3ada49d9590867f776e685f584e43372b1f1306000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323d464f585f6a6f7b849196a0a7b1aaa299938c81786d685f574e463d352c231b120901000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdcad7d4c8bcb1a79e938e86807a726d67605b534f47433c363029241d17110a03000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a5f6c7885929fabb8c5d2ded7ccc0b5ab94887b6e6155483b2e2215080000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6ddd0c3b6aa9d9083776a5d5044372a1d11000000000000000000050f18222a323a4149505860626b70787e83888d91969a9ea0a8a8abadb3b6b9babfc3c5c5bebab8b2aca9a19e96918880808d9aa6b3c0cdd9d5c8bbaea295887b6f6255483c2f221509000000000000000000000005111d2935414c565e616a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6b7885919eabb8c4d1d2c6b9ac9f9386796c6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a615e564d41362a1e11050000000000000000000000000000000000000000000000000000000000000008111a21282c2f303939393939393939393939393939393635322d261e160c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000006111b2a36424d5764717e8b98a2aebac6c2b8ab9e9184796d6053463a2f24190d010000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000010d192530404d596673808c99a9b3bec9d5dcd1c5b8ac9f92867a6d61594f463c342a251e1a14120e090b0a0a0a0b080d1113191e2429313a4149515c676d7a85919ea6b0bdb9aea7a098928b827a6f6a5f54473b2e221508000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a16212b343d464e585f696e7b849095a0a7a09892877f746d665d564d453c342b231a11090000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdcad7d1c4b8aca0958e817b746d68605c555049413d37312a251f18130c0600000000000000000000000000000000000000000000000000000000000000000000000000000c18232e45525e6b7885919eabb8c4d1deddd2bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad7dccfc3b6a99c908376695d5043362a1d100000000000000000000006101820282f383f444e545961656c71767b8084898e9196989b9ea1a9a9acaeb4b7b8bcc3c4c3bdb9b3ada8a09a938c85929fabb8c5d2ded5c8bbaea295887b6f6255483c2f2215090000000000000000000000010d1925303a444c52545d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5e6b7885919eabb8c4d1d2c6b9ac9f9386796c605d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d54524d443b3025190e0200000000000000000000000000000000000000000000000000000000000005101a232c33383c3d46464646464646464646464646464643413e3830281e0e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000e1a25313b4753606d7a85929facb8c4c5b9ada196897d7063564c4135291d11040000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000081623303c4956636f7c8997a1adb9c6d2dfd3c7baaea2988e81756b61584e463e36302a26211e1a19181716171818191e20252a2f353c434b535b606d79829097a1adb8c2c0b9b1aaa39f948f857c6f6255493c2f221609000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f19222b343c464e575f696e7a8390959e9691867d726d605c544c443b332a22191108000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdcad7d0c3b6aa9d90837b746d68605c555049413d373129251e18120b06000000000000000000000000000000000000000000000000000000000000000000000000000000071d2a3744505d6a7783909daab6c3d0ddd6c9bdb0a3968a7d7063574a3d302417080000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1becbd8dbcec1b4a89b8e8175685b4e4235281b0f0000000000000000000000060e161d262d333d43474f535b60646a6e73787d8184888b8e9297999c9fa3aaaaacb1b6b8bcc2c5beb9b2aca49f989298a2aebac6d3dfd5c8bbaea295887b6f6255483c2f22150900000000000000000000000008131e28323a414647505050505050505050505050505050505050505050505050505050525e6b7885919eabb8c4d1d2c6b9ac9f9386796c6053505050505050505050505050505050505050505050505050505050504746413b32291f1408000000000000000000000000000000000000000000000000000000000000000b16212c353e44484a5353535353535353535353535353534f4e49423a3020170d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000914202c3945515d6774818e9ba8b2bdc9bdb2a99b8e8175685d5245392c2015090000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000713202d3a4653606d7985929eabb8c1d0d9d6cabfb4aa9e938a7d706a5f585046413b36312d2a2626252423242425252a2d30363a41454d555d656c75818e949fa9b2becacbc3bcb4aea69f92867a6e6154473b2e211408000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071019222a343c454d575e686e7a8390938f847c706b635b514a423a32292118100700000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdcad7d1c4b8aca0959087807a726d67605b534f47423c353028231d17110a02000000000000000000000000000000000000000000000000000000000000000000000000020f1c2935424f5c6875828f9ba8b5c2cedbd7cbbeb1a4988b7e7165584b3e3025190e020000000000000000000000000000000000000000000003101c28343f4a546673808c99a6b3bfccd9d9ccc0b3a6998d8073665a4d4033271a0d000000000000000000000000040b141b222732373d41495053585f62666c7074777b7e8185888c8f92989a9da0a7a9abb1b8b9bec4beb6afaaa29fa2aab3becad6e2d5c8bbaea295887b6f6255483c2f221509000000000000000000000000020c1620283035393a444444444444444444444444444444444444444444444444444445525e6b7885919eabb8c4d1d2c6b9ac9f9386796c6053464444444444444444444444444444444444444444444444444444443b3936302920170d0200000000000000000000000000000000000000000000000000000000000004101c28333e474f55576060606060606060606060606060605c5a544c4232291f1409000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000004101d2935404b5563707c8996a0acb9c7c4b8ac9f92867a6d6054473c31261a0e0000000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000006121f2c3844505c6673808d9aa6b0bec7d2dbd0c6bcafa59e92857c6f6a615a524c46423b3a3631323131303031323036393a41464c51575f676d77808d939ea6b0bbc4cfd5cfc6bbaea3998d8074685e5246392d201407000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071019222a333c454d565e686d7a828b82796e6a615951444039302820170f070000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdcadcd4c8bcb1a7a099928d857f79716c656059534d46413a342e27221b140b090300000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b3c0d2dddacec1b4a79b8e817468564c41362a1e11050000000000000000000000000000000000000000000006121f2b3844505c6676828f9ca9b5c2cfdcd8cbbeb1a5988b7e7265584b3f3225180c00000000000000000000000000020a111720272b2f383f44464e53545b606367696e7175787c7f8286898d9095989d9fa7abadb3b8bcc0bbb3aeabaeb3bcc5d0dbe6d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000040e161e25292d2e373737373737373737373737373737373737373737373737373845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c6053463937373737373737373737373737373737373737373737373737372e2d2a251f170e05000000000000000000000000000000000000000000000000000000000000000714202c38444f5961636c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69665e54443b3025190e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000010d18242f394653606c7884919eacb6c0c7baaea3988b7e7165574d42372b1c110600000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000003101c28343f4a54626e7b88949eacb6c0ccd8d8cec1b9ada19792857c706c615e56534d484642403f3e3d3d3d3e3f404146474c52555d60696e79818d929da5afb8c2cdd6d7cbc0b5ab9f92867b6e61564c41362a1e1105000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071018212a333b444c565e686d797e756d675f584f473f342e271e160d06000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b1bdcbd1d9cdc3b9b1aba39f97928c847e786f6b615f57524c454039332d261d1a150d08020000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98acb6c0ccd8ddd1c4b7aa9e918477685e5246392d201407000000000000000000000000000000000000000000000713202d3a4653606d7985929fabb8c5d2ded5c9beb3a9968a7d7063574a3d3024170a000000000000000000000000050c13191d202120262d33373c43474a505356575f6165656c6f72767a7d8084878b9095999ea1a9acb1b9bdbebab8babec5ced7e1e1d5c8bbaea295887b6f6255483c2f2215090000000000000000000000000000040c13191d20212a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a21201e19140d0500000000000000000000000000000000000000000000000000000000000000000916232f3c4855616b70797979797979797979797979797979767066564d42362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000007121f2b3744505b6573808c9aa4afbbc8bfb4aa9d908376695f5347382d22170b00000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000c17232e3847535f6a75828f9aa4afbbc5cfdad6cabeb3a9a19792857e756e68615f5755534d4d4c4b4a494a4b4b4d4c5254565e61676d737b838f939da4aeb7c1cad4d8cec6bbafa3998e8174695e53443b3025190d01000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f182129323b444c565d676d716c605d554e463e3528231c150c0400000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a4b4bbc0c7cfd4cbc3bdb5aea9a29f96918a837c756e69615e56514b443f382f2b261f19130c0700000000000000000000000000000000000000000000000000000000000000000a1623303d495663707d899aa4afbbc8d4ded2c5b8aca096877a6e6154473b2f24180c000000000000000000000000000000000000000000000915222f3c4855626f7c8898a2aebac6d3dfd2c6b9ada197877b6e6154483b2e2115080000000000000000000000050e161e252a2d2e2d2a25272b3137383f44464a4d5355535b606266676d7073777b7f83888d92979da0a7acb2bbc0c5c6cad0d7e0e9e1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000002080d1113141d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1414110e0802000000000000000000000000000000000000000000000000000000000000000005111d2a36414c5663707d8686868686868686868686868686868276695e52463a2d20150a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7b87939facb9c6c6b7ab9f95887b6e62544a3f33281c0f03000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000006111c2b37434e58626f7c87939fa9b3becad6dacfc5bbb3a9a197928a817a736e6964615f57595958575657575859565e6164686d727a808690959ea5aeb6c0c9d3dcd0c6bcb1a79f92877b6e62574d4232291e140800000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f172029323a434c555d6064615a514c433c332c2318120b030000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a97a2aaafb5bdc2c8cecfc6bfbbb3ada8a19e959089827b746d68605c555049413d373129251e18120b060000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86939facb9c6d2dfd4c8bdb2a8978a7d7164554b4035291b1106000000000000000000000000000000000000000004111d2935414c5665727e8b98aab4becad6ded1c5b8ab9e928578695e53463a2d21140700000000000000000000030c1620283036393a3936302820262b2d3338393d42464849505355555d606367696e72767b80858b90959ea1a8afb6bec5ced7e2e9f2e1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000105070711111111111111111111111111111111111111111111121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013111111111111111111111111111111111111111111111108070502000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e6875828f9393939393939393939393939393877b6e6154473c32261b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000b17222d3846535f6976838f9caab4bfc7bcb1a7998d8073665b5044382b1f1308000000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000f1a26313c47545f6a75818e97a1adb9c0cad4d7cdc5bbb3a9a29e938e85807b75716e696866656464636364656668686d71757a7f858d9299a0a7afb8c0c8d2dbd6cbbfb4aa9f958c8073695f53453b3120170d0200000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e172028313a434b515358565045413a312a211a110700000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000b1824313e4b5764717e8a92989fa3abb0b8bcc3c9cfcbc5bebab2aca79f9d938f86807a726d67605b534f47423c353028231d17110a02000000000000000000000000000000000000000000000000000000000613202c3945525d687784919daab7c4d1dcd9cec0b4a79a8d8074675d5145382d22170b00000000000000000000000000000000000000000a13202c3945525d6875818e9ba8b4c1d0dbdbcfc2b5a89c8f827569574d42362a1e1205000000000000000000000a151e28323a41464746413a322c231c22282b2d31363a3b3f4446494b515356575e6165696e73797e838a91969fa4acb4bcc5d0d9e3eee1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000000000004040404040404040404040404040404040404040405121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060404040404040404040404040404040404040404040400000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929f9f9f9f9f9f9f9f9f9f9f9fa4998c7f7265584e43372b1c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000006111b2a36424d5764717e8b98a2aebac6c2b8ab9e9184786c6053463a2f24190d010000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000915202b37434e58616d7a85929ea4aeb8c2cbd4d7cdc5bbb3ada59e97928d87827e7b787573727170707071727375787a7d82868c92979fa3abb1b9c1cad2dad2c9c1baaea3989083786d60574d4233291f0e050000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e161f2831394045474b49453e352f281f180f080000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000714202d3a4753606d797f868e92999ea6acb1b9bec4cad0cac4bdb9b1aba59e99928d857f79716c656059534d46413a342e27221b140b0903000000000000000000000000000000000000000000000000000004111d2935414c566874818e9babb5c0cbd7ded1c5b8ab9e9285796d6053493f33271c110600000000000000000000000000000000000006111c27333f4953606d7a86929facb8c5d2dfd5c9beb3a9998c807366594d4031251a0e0200000000000000000006111c26303a444c5254524c443e352c21171c1f20262a2d2d3337393c4045474a4d5254575f62676d71787e848d939aa2aab4bdc7d2dde8e1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5865727f8b99a3aeacacacacacacacacacb5ab9d9084776a5f5347382e23170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000e1a26313b4753606d7a85929facb8c4c5b9ada196897d7063564c4135291d11040000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000030f1b26323c46525e68717e8a929da6b0b9c2cbd6d7cdc5beb9afa9a29f99938f8a888582807f7e7d7c7d7e7e808284878a8f92999ea1a9aeb4bdc3cbd3dbd6c9c1b7afa59f92867c6e665c50453c3121170d000000000000000713202d3a4653606d798693a0acb9c6d3d6cfc2b5a89c8f8275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161f282f35393a3e3d393429241e160d06000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0006131f2c3945515d676d737a81878f949da0a7adb2babfc6cccec9c2bcb8afaba39f97928c847e786f6b615f57524c454039332d261d1a150d0802000000000000000000000000000000000000000000000000010d19242f3e4b5764717e8a99a3afbbc7d3dfd2c6b9ada2978b7e71655b5044382d22170d0300000000000000000000000000000000030c17222d3744505b65727f8c98a2aebac6d3dfd2c6b9ada197897c6f6356493c30231609000000000000000000000c17232e38424c565e615e564f473e3329201712131a1e2122272b2d2f35393a3d4246484d53555c60656c717980889298a2abb5c0ccd7e3e1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b47535f6a7783909dabb4bfb9b9b9b9b9b9b9b9b8aca095887c6f62544a3f34281c1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000914202c3945515d6774818e9ba8b2bdc9bdb2a89b8e8175685d5245392c2015090000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000a15202a36414c56616c74808d949fa7b0b9c1cad0d7cfcac1bbb3adaba49f9c9797918f8c8c8b8a898a8a8b8c8f9196979c9fa3abadb3babfc6cfd5d7d0cac1b7afa59d938b7f726a5f544a3f332a200f05000000000000000713202d3a4653606d798693a0acb9c6c9c9c9c2b5a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161d24292c2d31302d282219130c0400000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0004101d2935404b555d60686e747c828990959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea9a29f96918a837c756e69615e56514b443f382f2b261f19130c070000000000000000000000000000000000000000000000000814212d3a4754606d7a86929facb9c5d0dbd6cabeb3a99d9184786c60544a3f33281f150c040000000000000000000000000000030c151e28333f4a54606c7884919eaab4bfcad6ded1c5b8ab9e9285796c605346392d20130600000000000000000003101c28343f4a545e686d6861594f453b32292117110e1214171b1f2024292c2d30363a3c42474b51535b60676d737d869299a4afbbc7d4e0e1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b54626f7c8895a0acbdc6d1c6c6c6c6c6c6c8bcb1a79a8d8073665c5044382b1f1307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000004111d2935404b5563707d8996a1acb9c5c4b8ac9f92867a6d6054473c31261a0e0000000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000040d1925303a44505a606d78828f959fa6afbabec5ced6d6cdc5bebab5afaca8a9a19e9b9998979796969798999b9ea1a8a8acafb5b9bec5cbd1d8d6cec6bfbaafa59e938e81776c60584e42382e21180e00000000000000000713202d3a4653606d798693a0acb9bdbdbdbdbdb5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c12181d20202524211d170d08010000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000c18242f39434b51565e616a6f767d838b91979fa2aaafb5bdc2c8cecfc6bfbbb3ada8a19e959089827b746d68605c555049413d373129251e18120b06000000000000000000000000000000000000000000000713202c3945525d6876828f9caab4bfcad6dbcfc5b8aca095897d70665b50443c31271e160d04000000000000000000000000030c151e26303844505b66707d8a96a0acbcc6d0dbd5c9bdb2a89b8e8174665b5044382b1f12060000000000000000020b19222c3844505c666d7a706b61574d443b3328221c140b080b0f1213181d1f20252a2d31373940454950555c606b707d87939facb9c6d2dfe1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6674808d9aa7b1bccfd8d2d2d2d2d2d9cec3b8ab9e9185796d6053463a2f24180d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000010d18242f3a4653606c7884919eabb7c2c7baaea2988b7e7165574d42372b1c110600000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000008131e29323e44505c666d7a8390949ea5aeb4bcc2cbd0d6cfcac7c0bbb9b5b3adaba8a6a5a4a3a3a3a4a5a6a8abadb2b5b9bbc0c7c9cfd7d6d0cac2bcb4aea59e938e81786c655b50463c30261c0f0600000000000000000713202d3a4653606d798693a0acb0b0b0b0b0b0b0a89c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d101314181715110c0600000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000007121d27313940454c52585f626b70787e848c92989fa4abb0b8bcc3c9cfcbc5bebab2aca79f9d938f86807a726d67605b534f47423c353028231d17110a02000000000000000000000000000000000000000004111d2935414c5665727e8b98a2aebac6d3dfd4c8bcb1a79c9083786c60584e433930281f160e0904000000000000000003090d151e273038424e58606c7883909ca8b2bdced8dfd2c5b9ada1968a7d7064544a3f33281c0f0300000000000000000a141d2a36414c56606d78847d70695e564d453c332d261d19140e0905070c1013141a1e20262b2f34383f444b5159616b74818e9aa7b4c1cddae1d5c8bbaea295887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929eabb8c3cdddd8d4d2d1d2d5d2c6b9ada197897d7063554b4135291d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000007131f2b3744505b6573808c99a6b0bbc7bfb4aa9c908376695f5347382d22170b00000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000000020d172028343f4a545d686d79828e939fa2aab1babfc6cacfd5d2ccc7c6c2beb9b8b5b3b2b1b0afb0b1b1b3b5b7b9bdc2c5c7cbd1d5d5cfcac6bfbab1aaa29f938e81786c665b53493f332a1e150a0000000000000000000713202d3a4653606d798693a0a3a3a3a3a3a3a3a3a39c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070b0a0805000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c0000010b151f272f353b41464e535960666c71797f868e93999fa6acb1b9bec4cad0cac4bdb9b1aba59e99928d857f79716c656059534d46413a342e27221b140b0903000000000000000000000000000000000000010d19242f3a4754606d7a86929facb8c1cfd9d9cec3b7ab9f948c7f726a5f554b433a3128201a15100c0707060607060b10141a1f273039424a545f6a727f8c949fabbac4cee0d7cbc0b5ab9e9184796d6053463a2d22170b000000000000000006111b262f3846525e68727f8c857b6e685e574e443f382f2a251e1a14100c070606090e12151a1d23292d333940454f5964707d8a97a3b0bdcad6e1d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c5664707d8a97a1adb9c6d5d2ccc8c6c4c6c9cfc9beb3a99b8e8175675d5145392c2014090000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7b88949fabb7c6c6b7ab9f94887b6e62544a3f33281c0f03000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000050e17232e38424c565d676d79818a92989fa7aeb4b9bec5c9ced3d4d2cfc9c6c4c2bfbfbebdbcbdbdbebfc2c4c5c9cfd2d3d4d1cfc9c5bebab4aea79f98928b81786d665b544a41382d21180c030000000000000000000713202d3a4653606d79869396969696969696969696968f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000000030d151d242930363c43474f545b60676d737b81878f949da0a7adb2babfc6cccec9c2bcb8afaba39f97928c847e786f6b615f57524c454039332d261d1a150d080200000000000000000000000000000000000813202c3945515d6774818d9aa5afbdc7d1dcd3c7bcb0a69f92867c6f675c554b433a322b261f1c18151313131315171c1f252a3139424b545c666e7c86929fa6b0bcccd5ded3c7bbafa3998c7f73665c5044382c1c110600000000000000000b17222d38414e58616e7a859290837a6e696058504a423c36302a261f1c1813120f0b060d090e12181b22272f343e4a5763707d8a96a3b0bdc9d6e1d5c9beb3a994877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e6875828f9ca9b3becad0c7c0bbb9b8b9bec4cdc4b8ac9f92867a6d6054473b31251a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000b17222d3846535f697683909caab4bfc7bcb0a6998c8073665b5044382b1f1308000000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000000000006111c26303a444c555d676d757e8690959fa3aaadb3b9bdc4c6cad0d2d3d2d1cecccbcacac9c9cacbccced1d2d2d1cfcec8c5c3beb9b3adaaa29f9590867e756d665c544a42382f261b0f06000000000000000000000713202d3a4653606d79868a8a8a8a8a8a8a8a8a8a8a8a8a8275695c4f4236291c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0a00000000000000000000000000000000000a1623303d495663707c8996a3afbcc9d6d8ccbfb2a5998c7f7266594c3f3326190c00000000030b12181e252a31373d424a50555d60686e747c828990959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea9a29f96918a837c756e69615e56514b443f382f2b261f19130c070000000000000000000000000000000004111d2935414c55626f7c88939eabb5c0cbd7d8cdc2baaea3999083796d675d554c443e37312c282321201f1f202123282b30363d434b545c666d78839098a3aeb9c2cdded6cabfb4aa9f92867b6e61544a3f34281c0a0000000000000000030f1b27333f4953606a74818e989590847b6f6a605b544e46413b36312c2923201f1c1719191a1a1b1a1e212429333f4a5465717e8b98a4b1becbd7dfd2c6b9ada197867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a86929facb9c5cfc7beb6afacabadb3bbc4c7baaea2988b7e7164574d42362a1e120500000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000000006111b2a36424d5765717e8b98a2aebac6c2b7ab9e9184786c6053463a2f24190d010000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000a151e28323a434c555d606c717b838c92989ea2a9acb2b8babfc2c5c6cad0cccdcececfcfcecdcdcccbcfcac6c5c3c1bcb8b7b2ada9a29f98928c837b716c605c544a42382f261d140a00000000000000000000000613202d394653606c777d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4231261b0f02000000000000000000000000000000000a1723303d4a5663707d8996a3b0bcc9d6d8ccbfb2a5998c7f7266594c3f3326190c000000000001070c141920262b2f383f444b51565e616a6f767d838b91979fa2aaafb5bdc2c8cecfc6bfbbb3ada8a19e959089827b746d68605c555049413d373129251e18120b060000000000000000000000000000010d19242f3a47535f6a75828f99a3afbbc5cfdad7cbbfb4aba0958f81796d675d564f47423c38342e2e2d2c2c2d2e2e34383b42464f555d666d78818e959faab4bfcbd4dbd3c7baaea2988d8174695e5242382e23170c00000000000000030e18212b3744505b656f7c87939fa09691847c726c665f58524c46423b38342f2d2b28222626272727252a2d30353c44505b6673808d9aa6b3c0cdd9ded1c4b8ab9e918578675d5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5865727f8c99a3afbbc7ccc0b6aca49f9ea1a9b3bec9bfb4aa9c8f8276695e53463a2d21150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000e1a26313b4754606d7a86929facb8c4c5b9ada196897d7063554c4135291d11040000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000000000000030c162028313a434b515a61696e7880868c92979ea1a8acaeb4b5b8babebebfc0c1c1c2c2c1c1c0bfbfbebeb9b8b6b4b1acaaa9a19e97928c8680786e69625a504a42382f261d140b02000000000000000000000005121f2b3744505b656c70707070707070707070707070706f6a6054473b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569584e43372b1e1308000000000000000000000000000000000b1825313e4b5864717e8b97a4b1becad7d8ccbfb2a5998c7f7266594c3f3326190c0000000000000002080e151b1d262d333940454d52585f626b70787e848c92989fa4abb0b8bcc3c9cfcbc5bebab2aca79f9d938f86807a726d67605b534f47423c353028231d17110a020000000000000000000000000008131e2b37434e58626e7c87929fa9b3becad6dcd1c6bdb1a79e938f82796d686159534d4644403c3b3a38383a3b3c3f44464d525960676d78818e939ea7b1bcc6d0ddd5c9bdb2a89f92867b6e61574d4230261c1106000000000000000915202935414c56606c7883909aa4a8a09691877f786e6a615e56534d4745403b3938332d333333343431363a3b41464e57606c7884919eabb7c4d1dedccfc3b6a99c90837669554b4035291d100400000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4754606a7784919dabb5c0cbc8bbafa49a939197a1adb9c6c6b9ac9f93877b6e6154483c32271b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000914202c3945515d6775818e9ba8b2bdc9bdb2a89b8e8175675d5145392c2014090000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000040d161f28313a404550575f666d737a80858b91969b9fa2aaa9abadb3b1b3b4b4b5b5b5b4b4b3b3b2b1b3adaba9a7a7a09d9997918c85807a736d665f5750443f3830261d140b02000000000000000000000000030f1b27333f49535b6063636363636363636363636363636260584e43372b1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dcd0c3b6a99d9083766a5f53473a3025190e050000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8d8ccbfb2a5998c7f7266594c3f3326190c000000000000000000030a0b141c22282f353b41464e535960666d717980868e93999fa6acb1b9bec4cad0cac4bdb9b1aba59e99928d857f79716c656059534d46413a342e27221b140b09030000000000000000000000010f1b26313c47535f6a74818e97a1adb9c1cbd5d8cfc3b9afa59e948f837a706b625f5753514a49484645454648494a5053575e616b7079828f939ea5afb9c3ced8d4cbc3b9ada1968d8073695e52453b301e150a00000000000000020f1a26313945525d68717e8b959facb2a8a199928c827c746e68615f5753514b4846443f414040404041424246484c52585f69707d8a96a1adb9c5d2dfd6cabeb3a99a8d8074675a4d412f24180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2934404b55626f7c8995a0acbdc7d1c6b9ac9f938885919eabb8c4c8bbafa49a8c7f7266584e43372b1c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000004111d2935414b5563707d8996a1acb9c5c4b8ac9f92867a6d6054473c31261a0e0000000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000000040d161f282f353e454d545c60686e73797f848a8f9298999c9fa2a9a4a6a7a7a8a9a8a8a7a6a6a5a4a9a19e9c9a9895908c89847f7a736d68605c544d453f342e261e140b0200000000000000000000000000000b17222d3841495053575757575757575757575757575756544e463d32271b0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ddd1c4b8ab9f95887c6f62564c41352920160d040000000000000000000000000005111d2935414c566773808d9aa6b3c0cdd9d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000020a11171d242930363c43474f545c60676d737b81878f949da0a7adb3babfc6cccec9c2bcb8afaba39f97928c847e786f6b615f57524c454039332d261d1a150d0802000000000000000000000a15202b37434e58616e7a85929ea5afb9c3cdd6d5cbc1b7afa69f9590847d756e6963605c545654535151535456545c6063696e757d838f949ea5afb7c1cbd4d6ccc3b9aea49e91847a6d60564d4233291f0c030000000000000006121f2b37434e58606d7a85929ea7b1bab2aba39f948f87817a736e6964605c555553504a4d4c4c4d4d4e4f4d5354565d616a6f7b85929ea8b2bdc9d5dfd2c6b9ada297897d706356493d302316070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6774818d9aa7b1bccfd1c4b8ab9e9184808c99a6b3bfccc0b6ac9d9184776a605447382e23170c000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3a4653606c7884919eabb7c2c7baaea2988b7e7165574d42372b1b110600000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000000000000000000040d161d2429333b424a50565e61676d72787e8285898d8f92979698999a9b9b9c9c9b9a9a999898969792908e8b8783807c78726d67615e56504a423c3328231c140c0200000000000000000000000000000006111b262f383f44464a4a4a4a4a4a4a4a4a4a4a4a4a4a4947433d342b20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e0d4c8bcb1a79a8d8174685e52463d32281f160d060000000000000000000000000b13202d3946525d687683909da9b6c3d0dcd7cabeb1a4978b7e7164584b3e3125180b00000000000000000000000000060b12181f252a31373d424a50555d60696e747c828990959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea9a29f96918a837c756e69615e56514b443f382f2b261f19130c04000000000000000000040f1a26313c46525e68717e8a939ea7b1bbc5ced7d3c9c1b8b0a79f96918a827b74706d66646261605c5c60616264666d70747b818990959fa6afb7c1c9d2d7cec4bab1a79d92897d70675d51443b3020170d00000000000000000814212e3a47535f6a73808d97a1adb9c2bdb5aea69f99928d86807b75706d676462605b545a59595a5a5a5c575e6164686d727c839197a1adbac4cfdad9cfc5b8ab9e9285796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1d2c6b9ac9f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929fabb8c3ced0c3b6a99d90837e8b98a4b1becfc7b8aca095887c6f62544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000007131f2b3844505b6673808c99a6b0bcc7bfb4aa9c908376695f5346382d22170b00000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000000000040c1318212930383f444c52555d60666d7175797d80828588898b8c8d8e8e8f8f8e8e8d8c8c8b89878583817e7b77736f6c65605d55524c443f38302a2117110a0200000000000000000000000000000000000a141d262d3337393d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b37322b22190f0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e4d8cdc2b8ac9f92867a6d61594f443a31281f170f0a040000000000000000030b121c27303a4754616d7a86929facb9c5d2dfd7ccc0b5ab968a7d7063574a3d3024170a000000000000000000000000000001070d141920262b30383f444b51565e616a6f767d838b91979fa2aaafb5bdc2c8cecfc6bfbbb3ada8a19e959089827b746d68605c555049413d373129251e160e040000000000000000000a15202a36414c56616c75818e95a0a9b3bcc5ced6d3cac2b9b1a8a09e948f86817d7974716f6e6d66676d6e6f7174797c80868e939da0a7b0b8c1c9d2d6cdc5bcb2a89f958d81746b60554c4132291f0e0500000000000000000815222f3b4855626e7b87929fa9b3becbc6bfbbb0aba39f98928d87827d7975716e6c6668676666666767696a696e71747a7f869195a0a9b3beccd6dcd1c7bdb1a79b8e8174665c5044382c1f12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4cecec6b9ac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5764717e8a97a2adbac6d5cec1b5a89b8e817d8996a8b2bdc9c8bdb1a89a8d8074665c5044382c1f13080000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54616e7b88949fabb7c6c6b7ab9f94887b6e6153493f33271b0f03000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000000000000000000000001070f181e262e343b41464b51545c6064666d707376797b7c7e808181828282818180807f7e7c7a787674726e696662605b53514b46413a342e261e180f0600000000000000000000000000000000000000020b141b22272b2d30303030303030303030303030302f2e2b27201910070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfdfd3c6baaea2988e81746b60564c433a3129211b15100c0707060406070a0c151c232e39424f5964717e8a99a3afbbc7d4e0d4c7bbafa499887b6e6255483b2f2215080000000000000000000000000000000002080e151b1e262e343940454d52585f626b70787e858c92989fa4abb0b8bcc3c9cfcbc5bebab2aca79f9d938f86807a726d67605b534f47423c35302820160c020000000000000000030d1925303b44505a606d79839097a1aab3bcc5cdd5d4cbc2bab2aca69e99928e8985817e7c7b797878797b7c7e8185898d92989ea5acb1b9c2cad3d4cdc4bbb3aaa1969083796d60594f433a2f20170d0000000000000000000d1a2633404d596673808c949fa7b0b8c1cbcbc2bdb5afaaa29f99938f8a85827e7b7976757473737373747577787b7e81868c9298a0a7b1bbc5cfded7cbc0b5ab9f958a7d7064544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c1c1c1c1b9ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a46525e6976828f9ca9b3becad6ccbfb3a6998c807a8796a1adb9c5cec3b8ab9e9285796d6053463a2f24190d0100000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3847535f697683909caab4bfc7bcb0a6998c8073655b5044372b1f1307000000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000000000000000060c151c232830363940454a5053545c606366656c6e70717374747576757574737372716f6d68696765615e575653504945413a353028231c150c06000000000000000000000000000000000000000000020a11171b1f20242424242424242424242424242423221f1b150f07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe2d6cabfb4aa9d93897d70685e554b433b332b271f1d18141312101314151b1e272e34404a54616b7683909cabb5c0cbd7dfd2c6b9ac9f9386796d6053463a2d201307000000000000000000000000000000000000040a0c141c23282f353b42464e535961666d717980868e93999fa6acb1b9bec5cad0cac4bdb9b1aba59e99928d857f79716c656059534d46413a32281e130800000000000000000008141e29323e45515d676e7b859298a2a9b3bbc3cbd5d4ccc4bdb9b0aba39f9a97928e8a89878685858687898a8e92979a9fa2aaafb8bcc3cbd4d5cbc2bbb3a9a29891847b6e675d51473d31281e0e050000000000000000000713202d3a4653606d78828f959fa6afbbc0c7cfc7c0bbb4aeaba49f9c98928f8b88858381807f7f808081828385878b8e92989fa2aab1b9c3cdd7d4ccc3bbafa3999083786d6053463a2e23170c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb4b4b4b4b4b4ac9f9386796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b87939facb9c5d0d6cabeb3a9978a7d7884919eabb8c4d1c6b9ada1978a7d7063564c4135291d110400000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000000000000006111c2b37424d5765717e8b98a2aebac7c2b7ab9e9184786c6053463a2f24180d010000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000000000000000000030a11171e252a2f35383f44464b515356535b6061636566676868696968676766656563615e565b5854534d4946443f38352f29251e17110a03000000000000000000000000000000000000000000000000060b0f121317171717171717171717171717171615130f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe7dbd0c6bcafa59e91847a6d675d554d453e37322c292421201f1c1f2021262b30394044515c66707d8a949fabbdc7d1dcddd0c3b6aa9d908377675c5145382c1f13060000000000000000000000000000000000000000020a11171d242930363c43474f545c60676d737b81878f949da0a7adb3babfc6cccec9c2bcb8afaba39f97928c847e786f6b615f57524c443a3025190d010000000000000000020d17202935414c555e696f7c869297a1a9b1b9c0c9ced6cec9c1bdb4aeaca9a29f9b97959a939292979495979b9ea1a9acaeb4bcc1c8ced6cec9c0b9b1a9a19792867c6f695e554b40352b1f160c0000000000000000000006121f2c3844515c666d798390949ea5afb5bdc3cbcbc5bfbab5afacaaa29f9b979892908e8d8c8c8d8d8d8f909297979b9fa2aaaeb4bcc3ccd5d5cbc3bab2a89f92877c6f665c5044382b1c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919ea8a8a8a8a8a8a8a89f9386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2c38434f5966737f8c99a4afbbc7d7d3c6baada297887b75828f9ba8b5c2d0c9beb3a99b8e8275685d5245392c20140900000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000e1a26313c4754606d7a86929facb8c4c5b9aca196897d7063554b4135291d11040000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000000000000000000000060c14191d24292e34383a4045464a495053555658595a5b5b5c5c5b5b5a5959585654524c4e4b4846423c3937332d29241d19130c06000000000000000000000000000000000000000000000000000000000305060a0a0a0a0a0a0a0a0a0a0a0a0a0a09080603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfede2d7cec1b9aca0969083796d675f575047433c38352f2e2d2c292c2d2e31373c424a515b606d7883909da6b0bccfd9e3d5c9beb3a9998c807366554b4034281c100400000000000000000000000000000000000000000000060b12181f252a31373d424a50555d60696e747c828a91959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea9a29f96918a837c756e69615e564c4135291d1105000000000000000000050e19242f3a434d57606a6f7d859297a0a7aeb9bdc4cbd0d5cfc6bfbab9b3adaba7a4aca49f9e9fa2a9a2a4a7abadb3b8babfc6ced4d0cac4bdb9aea79f9791857c6f6a5f564d43392f231a0d040000000000000000000004101c2834404a545d676d7a828e939fa3abb1babfc6cbcac7c0bbb9b4aeaca8aaa29f9c9b9a9999999a9a9c9d9ea1a9a7acaeb4babfc6ced6cfc9c2b9b1a8a0968d80736a5f544a3f34281c0a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919b9b9b9b9b9b9b9b9b9b9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3b4854606b7784919eabb5c0ccd7d2c5b8ab9f928578737f8c99aab4bfcbcfc5b9ac9f92867a6d6054473b31261a0e02000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000915202c3945515d6775818e9ba8b2bdc9bdb2a89b8e8174675d5145392c2014090000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d1000000000000000000000000000000000000000000000000002080d12181c23282b2e34383a3d3f444648494b4d4e4e4f4f4f4e4e4d4d4c4b49474641413f3b3a36312d2b27221b18130d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe8e0dad5c9bdb2a89f958f82796e69615a544e4745403d3a3a3834383a3b3d43474d545c606d74818e95a0acb8c2cde1dfd2c6b9ada197887c6f6255493c2e23180c00000000000000000000000000000000000000000000000001070d141920262b30383f444b51575e616a6f767d838b92979fa2aaafb6bec2c8cecfc6bfbbb3ada8a19e959089827b746d685e5246392d2013070000000000000000000008131e28313b454e58606b6f7c8590959da4acb2babfc6cad0d1cbc7c5bebab8b4b1b6afacababadb3afb0b4b8b9bec5c6cad0d0cac6bfbab2aca49d9590857c6f6a60584e443b31271d11080000000000000000000000000c18232e39424b555e686d79818c9299a0a7aeb4babfc6caccc7c6bfbab8b5b4aeaca9a8a7a6a6a6a6a7a8aaabadb3b4b8babfc6cad0d0cac4bdb9b0a79f969184796d60584e42382e23170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b78858e8e8e8e8e8e8e8e8e8e8e8e86796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b55636f7c8996a0acbdc7d2ddcfc2b5a89c8f8275707c8998a3aebac7d3c7baaea3988b7e7165574d42362a1e1205000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5563707d8996a1adb9c5c4b8ac9f92867a6d6054473b31261a0e0000000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d10000000000000000000000000000000000000000000000000000001070d11171c1f23282c2d2d3337393b3d3e404141424342424140403f3e3c3a393630322e2d2a25201f1b17110d07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003080b0d0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0a090704000000000000000713202d3a4653606d798693a0acb9c6d3e8ded6cfc9c5c4bab1a79f948f837b706c62605853514b49474644404547484a4e53575f666d747f8c939da7b1bccad4ded8ccc0b6ac9e9185786c605346392d201307000000000000000000000000000000000000000000000000000002090e151b1e262e343a40454d52585f626b70787e858c92989fa4acb0b8bcc3c9cfcbc5bebab2aca79f9d938f86807a6d6154473a2e21140700000000000000000000010c161f29333d464f59606a6f7b838d929ea1a8aeb4babec5c8cdd2cfcac6c5c1bdc0bbb9b8b8babebcbdc1c5c6cacfd2cdc8c5bebab4aea8a09e928d837b6f6a60584e463c32291f150b0000000000000000000000000007121c27303a434c565e676d747f8790959fa3aaaeb4babfc5c7cbcac6c5c2bfbab8b6b4b3b2b2b3b3b4b5b6b8b9bec1c5c7cad0cdc8c5bebab2ada69f9590847b6e675d51463c30261c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a6774808181818181818181818181818175685b4e4235281b0f02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6774818e9aa8b2bdd0d9d6cabeb3a9988c7f726d7986929facb8c5d2cbbfb4aa9c908376695f53463a2d21160a000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a4653606c7884919eabb7c2c6baaea2988b7e7164574d42362a1b110600000c1926323f4c5965727f8c98a5b2bfc2b6a99c8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000060b1012181c1f2022272b2d2e3032333435353636353434333232302e2d2a252521211e1a13120f0b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080f14181a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b171614100b0500000000000713202d3a4653606d798693a0acb9c6d3e0d6ccc4bdb9b7b9b9b0a69f9590857d766f6a64605d55565453504b51535457585f62696e78808c919ca5afb9c3cedcded4c8bbafa49a8e8174655b5044372b1f120500000000000000000000000000000000000000000000000000000000040a0c141c23282f353b42464e535961666d727a80868e939a9fa6acb1b9bec5cbd0cac4bdb9b1aba59e99928d85786c5f5245392c1f120000000000000000000000040d17212b343d464f585f696e79808a91969fa3aaadb3b8bcc3c5c7cbd1d0ced2ccc8c6c5c5c6cacfcaced0d1cbc7c5c3bcb8b3adaaa29f96918a80786e695f584e463c342a20170d0300000000000000000000000000000b151e28313a444c555c606d727c838c92989fa3aaaeb4b9bbc0c4c6c9cfcac6c5c3c1c0bfbfc0c0c0c2c3c5c6cacfd1cbc7c5c2bcb8b4aea8a19e948f837a6e695e554b40342a1e140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1a2733404c58646e74757575757575757575757575756f65594d4034271b0e01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a85929facb8c3cedfd3c6baada297897c6f6776838f9ca9b6c2d0d1c6b9ac9f93877b6e6155483d32271b0f000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000008131f2b3844505b6673808d99a7b1bcbebfb4aa9c908376695f5346382d22170b00000c1926323f4c5965727f8c98a5b2bebeb6a99c8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000003070c101313171b1f202223252627282829292828272626252321201d19181514120e090503000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b131a1f2427272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272423201c161008000000000713202d3a4653606d798693a0acb9c6d3dacfc4bab2adabadb2b8b0a7a097928a827c75716d67666361605c555c606163676a6f757b838d929ca3adb7c1cbd5e0d7cbbfb4ab9f93877c6f6253493f33271b0f03000000000000000000000000000000000000000000000000000000000000020a11171d242930363c43474f545c60676d737b81878f949da0a7adb3babfc6cccec9c2bcb8afaba39f9786796c605346392d2013000000000000000000000000050f19222b343d464e575f676d747d848c92989fa2a9acb1b6b9bbc0c1c3c5c6cacfc8c9c9c8cfc9c6c5c3c1bfbbb9b6b1aca9a29f98928c847d746d665e574e463c342b22190e05000000000000000000000000000000030c161f28323a434b515b636a6f787f868d92989fa2aaacafb5b8b9bec0c2c3c5c7cbd1c8c9c9c8c8d0cac7c5c3c1bfc0bbb9b6b1abaaa29f96918b82796d685e574d43392f22180c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824303c48535c646768686868686868686868686868655d53483d3125180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5764717e8b98a2aebac6d3ded2c5b8ab9f9285796d6673808c99aab3becad4c8bbafa49a8c7f7366584e43382b1d12070000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54626e7b88959fabb1b1b1b1ac9f93877b6e6153493f33271b0f03000c1926323f4c5965727f8c98a5b1b1b1b1a99c8f8376695c504336291d10000000000000000000000000000000000000000000000000000000000000000000000406060b0f12131516181a1b1b1c1c1c1b1b1a1a1918161413110d08080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b141d252b303334343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434302f2c28211a11080000000713202d3a4653606d798693a0acb9c6d3d5c9bdb2a8a19ea1a8b1b9b1a9a29f948f87827e797572706d6d666b676d6e7073777c818790959da4adb5bfc9d2ddd7cec5baaea3998e81756a5f5341382d22170b000000000000000000000000000000000000000000000000000000000000000000060b13181f252a32373e424a50555d60696e747c828a91959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea99386796c605346392d201300000000000000000000000000071019222b343c454d555c606c707980868d92979da0a7a9acafb5b4b6b8b9bebbbcbcbcbcbbbeb9b8b6b4b5aeaca9a7a09d97928d867f79706b605c544d453c342b221910070000000000000000000000000000000000040d16202830394045515860666d727b80868d92989c9fa3ababadb2b3b5b7b9babfbbbcbcbcbbbbbabfbab8b7b5b3b5afaca9a79f9d98928c847e786d675e564d453b31271d10060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202b36414a53585a5b5b5b5b5b5b5b5b5b5b5b5b5b59534b41372c201408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f6976838f9caab4bfcad6d7cbc0b5ab9b8e817566636f7c8998a2aebac6d3ccc0b6ac9e9184776a605447392e23180c0000000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3847535f697683909daaa5a5a5a5a5a49a8c8073655b5044372b1f1205000c1926323f4c5965727f8c98a5a5a5a5a5a59c8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000000000000000000030506080a0b0d0e0e0f100f0f0e0d0d0c0b09070705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131d262f363c40414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141413d3c38332c231a100500000713202d3a4653606d798693a0acb9c6d3d2c5b9ada1969196a0a7b1bbb3ada69f9a938f8a85827f7c7a797878797a7b7d8083888e92999fa7aeb6bfc7d1dbd9d0c5bcb2a89f92867b6e61584e432f261b11060000000000000000000000000000000000000000000000000000000000000000000001070d141a20262b30383f444b51575e616a6f767d838b92979fa3aaafb6bec2c8cecfc6bfac9f9386796c605346392d20130000000000000000000000000000071019222a333b434b515961676d737b80858c9095999d9fa3aba8a9abadb3aeafafafafaeb3adaba9a8aba39f9d9995908c85807a736d676159514a423b332a2219100700000000000000000000000000000000000000040e161e272e343f464e545c60696e747b80858a8f92999b9ea1a9a6a8aaacaeb4aeafafafafaeadb4aeacaaa8a6aba39f9c9895908c857f79716c665d554c443b33291f150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1a252f3841484c4e4e4e4e4e4e4e4e4e4e4e4e4e4e4d4841392f251a0f04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7b87939facb9c5d0dbd3c7bbafa3998a7e7164606d7985929fabb8c5d0d2c7b9aca096897c6f62544b4034281c100400000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2b37424d5765717e8b9898989898989898989184786c605346392d201306000c1926323f4c5965727f8c98989898989898988f8376695c504336291d1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1a252f3841484c4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4a48443e352c21160b00000713202d3a4653606d798693a0acb9c6d3d1c4b7ab9e91849095a0abb5bebab0aca49f9c98928e8c89878685858586878a8d90959b9fa3abb1b9c0c8d1d9d8d1c7bdb4aaa1968d8074695f53463c321d140a0000000000000000000000000000000000000000000000000000000000000000000000000002090e151b1e262e343a41454d52585f626b70787e858d92989fa4acb0b8bdc3c9cfb9ac9f9386796c605346392d20130000000000000000000000000000000710182129303940454f555d60696e737a7f83888c909299999b9d9ea1a9a2a2a3a3a2a2a9a19e9d9b999992908c88837f7a736e68605c554f444039302921181007000000000000000000000000000000000000000000040c151d2328343c424a50575e61696e747a7e82868b8e919798999b9d9fa3aaa1a2a3a2a2a1a1aaa29f9d9b999799928f8b87837f7a736d67605b544b433a322921170d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131d262f363c404142424242424242424242424242403d372f271d13090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6573808c9aa4afbbc8d7dfd2c5b9ac9f92867a6d615c6675828f9baab4bfcad4c8bdb2a89a8d8174665c5145382c1f130800000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a26313c4754606d7a868b8b8b8b8b8b8b8b8b8b897c706356493d3023160a000c1926323f4c5965727f8b8b8b8b8b8b8b8b8b8b8276695c504336291d100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a070604000000000000000008141f2b36414a53585a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a57554f473e33281c1004000713202d3a4653606d798693a0acb9c6d3ccbfb2a6998c7f839099a3afbbc0beb6afacaaa29f9b999694989291929894969a9da0a7acafb5bdc2cbd2dad6cfc6bfb5aba29891847a6d61574d42342a200b02000000000000000000000000000000000000000000000000000000000000000000000000000000040a0c141c23282f353b42464e535961666d727a80868e939a9fa6acb2b9bec5b9ac9f9386796c605346392d201300000000000000000000000000000000060f181e272e343e434b51565e61676d72777b7f8386898c8e90929794959596969595949792908e8c8986837f7b77726d67615e56514b433e342e271e170f060000000000000000000000000000000000000000000000030b1218222b30383f444d52575e61676d71767b7e8185888b8d8f9092989495959696959594939892908e8c8a8886837f7b76726d68605d55504a423a312820170f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b141d252b3033343535353535353535353535353534312c251d150b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eacb6c0ccd8d6cabeb3a99c8f8275685e5464717e8a98a2aebac6d3cec3b8ab9e9285796d6053463a3024190d01000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000915202c3945525d68707d7e7e7e7e7e7e7e7e7e7e7e7c6f6256493c2f231609000915222f3c4855626f7c7e7e7e7e7e7e7e7e7e7e7d7063574a3d3024170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12141517171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171312100c070000000000000b1824303c48535c64676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676361594f44382c201407000713202d3a4653606d798693a0acb9c6d3ccbfb2a6998c7f7c87929fa3afb5bdc0bbb9b3aeaba8a5a3aaa29f9e9fa2aaa3a6aaacb1b9bbc0c7cfd4d9d4ccc4bdb5aea49992867c6f685e52453b3122180e000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171d242930363c43474f545c60676d737b81878f949da0a8adb3babfac9f9386796c605346392d20130000000000000000000000000000000000060c151d2328313940454d52555d6065696e73767a7c7f818385878888898989898887878583817f7c7a76736e6965605d55524c4540393028231c150c0500000000000000000000000000000000000000000000000000000710191e262e343b42464d52555d6064686e7175787b7e808284868787888989898888878786858482807e7c7976726e6966615e56514b443f382f281f160e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b131a20242727282828282828282828282828282725201a130b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5563707d8996a1acbec7d2ddd3c6baada2978a7d71645653606d7a86929facb8c5d0d2c6b9ada2978a7d7064564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c56616c7072727272727272727272726f6a6054473b2e221508000815212e3b47535f6a6f72727272727272727272706b6155483c2f23160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d141a1e21222424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424201f1c18120b03000000000d1a2733404c58646e74747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474706b6155483c2f231609000713202d3a4653606d798693a0acb9c6d3ccbfb2a6998c7f737e8b919fa4abb3bbc1c5bebab8b5b2afb4aeababacaeb4b0b3b6b8bcc3c7cbd1d9d4cec8c2bab2aba39f93877d706a5f564c4133291f10070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b13181f252a32373e424a50555d60696e747c828a91969ea1a9aeb4ac9f9386796c605346392d2013000000000000000000000000000000000000030b12181f272f353b42464c5154575f6266676d70737576787a7b7b7c7c7c7c7b7b7a78767572706d6766615f5754514b46413b342e271e18120b0300000000000000000000000000000000000000000000000000000000070c151c232830363b42464b5153565e616568696e71737577797a7b7b7c7c7c7c7b7a7a7979777573716f6d6765615e5754524c454039332d261d160d050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080f14181a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b18140f090200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6775818e9ba8b2bdd0d9ded2c5b8ab9f9285796d6053515d6775818e9ba9b3becad6cabeb3a99b8f8275685d5246392d201509000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a43505a616465656565656565656565656260584e43372b1f13060006121f2b37434e585f62656565656565656565656361594f44382c20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f171f262a2d2e30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302d2c28231c150c030000000e1b2734414e5a6774818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181817d7063574a3d3024170a000713202d3a4653606d798693a0acb9c6ceccbfb2a6998c7f73737f8c9399a2a9b0b8bdc3c6c5c1bfbcbebab8b8b8babfbdc0c3c4c8cdd4d5d2cec8c3bdb8b0a8a199928b7f726b61584e443a3021180d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d141a20262b30383f444c51575e616a6f767d848b92979fa3aaaf9f9386796c605346392d20130000000000000000000000000000000000000000070d151d242930363a4145474d5355555d606366686a686d6e6f6f70706f6f6e6d676a686663605d5555534d4745413a363028231d150c0700000000000000000000000000000000000000000000000000000000000000030a11171f252a3036394045474d525458575f62656668666c6d6e6e6f706f6f6e6e6d6d666a68666462605c5554524d4746413a352f28221c140b040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003080b0d0e0f0f0f0f0f0f0f0f0f0f0f0f0f0e0c0804000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb8c4cedfd4c8bcb1a79a8d8174675c514b5564707d8a97a2adbac6d3cfc5b9ac9f92867a6d6154473c31261a0e000000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313e47505557585858585858585858585856544e463d32271b0f0300030f1b26323c464e53555858585858585858585857554f473e33281c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17212931363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a38342e271e150b00000013202d394653606c79868d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8c7f7366594c403326190d000713202d3a4653606d798693a0acb9c1c1c1bfb2a6998c7f736d737f8792979ea6acb2b9bbc0c5c7cbcac6c5c4c5c6cad0cdd0d2d1d0cfc9c5c3bcb8b2aca69f9691877f726d62594f463c32281e0f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e151b1e262e343a41454d525860626b70787f858d92989fa49f9386796c605346392d2013000000000000000000000000000000000000000000030b12181f252a2f35393c4247484b515356595b565d606162626363626261605d555b595653514b4847423c39352f2a251e18120b0300000000000000000000000000000000000000000000000000000000000000000000060c141a1f252a2f35393b4146474b4d5355585a545b6061616262636362626160605c545b59575553514b4846423b39363029241d17110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121e2b37424d5765717e8b98a2aebac6d3ded1c5b8aca095897c6f62554b4653606d7985929fabb8c4cfd3c7baaea3998b7e7265574d42372b1b11060000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2c353e44494a4b4b4b4b4b4b4b4b4b4b4b4947433d342b20150a0000000a15202a343c4347484b4b4b4b4b4b4b4b4b4b4a48443e352c21170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f29333b4246484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4644403930271c1207000013202d394653606c7986939a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a998c7f7366594c403326190d000713202d3a4653606d798693a0acb4b4b4b4b4b2a6998c7f73666d727d858f949da0a8acafb6b9bbc0c1c4c5c7cbd1c9d2ccc8c6c5c4c2bdb9b7b1aca8a09d948f847c726d625b51473e342a20160c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0c151c23282f353b42464e545961666d727a80868e939a9f9386796c605346392d20130000000000000000000000000000000000000000000001070c14191e24292c31373a3b404547494c4e4c5254555556565656555454514b4e4c494745403b3a37312c29241d19140c070000000000000000000000000000000000000000000000000000000000000000000000000002090e141a1d24292c3036393b3e4247484b4d4a50535454555656565555545453504a4f4d4b484745403b3a36302d2a251e18120b0600000000000000000000000000000000000000000000000000000000000004080a0b131313131313131313131313131313120707050100000000000000000000000000000000000000000000000000000000000003060809131313131313131313131313131313130b0b090501000000000000000000000000000000000000000000000000000000000814212e3a47535f697683909caab4bfcad6d7cbc0b5ab9d9184776a60544345515c6674818e9aa9b3bec9d5cbbfb4ab9d908376695f5347382d22170b0000000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d1a232c33393c3d3f3f3f3f3f3f3f3f3f3f3f3c3b37322b22190f04000000040e18222a32373b3c3f3f3f3f3f3f3f3f3f3f3d3c38332c231a1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313b454d5355575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575753514a42392e23180c000013202d394653606c7986939fa7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a6998c7f7366594c403326190d000713202d3a4653606d798693a0a8a8a8a8a8a8a8a6998c7f7366636b707b828a91969c9fa4acacafb5b5b7b9bbbfbbbcbcc0bbb9b8b7b5b2adaba7a09d96918b827a6f6a625b51493f352c22180e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a11171e242930363c43474f545c60676d737b818790949386796c605346392d201300000000000000000000000000000000000000000000000002090e13191d20262b2e2f35393a3d40424145474848494949494848474541423f3d3a38352f2d2b26201d18130e08020000000000000000000000000000000000000000000000000000000000000000000000000000000002090e12181d20252a2d2e31373a3b3e403f44464748484949494948474746443f42403e3c3a38342f2d2a25201e19130c07010000000000000000000000000000000000000000000000000000000000050b101416172020202020202020202020202020201f1413110d08020000000000000000000000000000000000000000000000000000040a0f13151620202020202020202020202020202020181715110c06000000000000000000000000000000000000000000000000000003101c28343f4a54626e7b88949fabbcc6d0dbd4c7bbafa3998c7f7266584e43404b5463707d8997a1adb9c6d2d1c6b8ab9f95887b6e6153493f33271b0f0300000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a22282d303132323232323232323232322f2e2b2720191007000000000006101820262b2e2f32323232323232323232302f2c28211a11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d575f616363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363605c544a4034281c10040013202d394653606c7986939facb4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b2a6998c7f7366594c403326190d000713202d3a4653606d7986939b9b9b9b9b9b9b9b9b998c7f73665961696e757d848a8f939a9c9fa3aba8aaacaeb5aeafafb6afacabaaa8a8a19e9b95908a847e786d68605851493f372d231a10060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c13191f252a32373e424a50555d60696e757c828a9186796c605346392d2013000000000000000000000000000000000000000000000000000001080d11151a1e2124292c2d30332f35393a3b3c3c3d3d3c3c3b3a39352f33302d2c2924211e1a15110d0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d1014191e2021262b2e2f322d3338393a3b3b3c3d3c3c3b3b3a3a38342e33312f2d2c2923201e1a14110d08020000000000000000000000000000000000000000000000000000000000000810171c2123242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c21201e19130d05000000000000000000000000000000000000000000000000070f161b1f22232c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2524211d1811090000000000000000000000000000000000000000000000000006121f2b3844505c6673808d99a6b0bcced8dfd2c5b9ac9f92867b6e6154473d3a4653606d7985919eabb8c4ced4c7bcb1a7998c8073655b5044372b1f120700000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c202324252525252525252525252523221f1b150f0700000000000000060e151b1f2122252525252525252525252423201c17100800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f696e70707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706d665c5144382c1f12060013202d394653606c7986939facb7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b2a6998c7f7366594c403326190d000713202d3a4653606d79868e8e8e8e8e8e8e8e8e8e8e8c7f736659575f616b70787d82878c909299999b9d9fa3aba2a2a3aca49f9e9d9b9896918e8a837e78716c665e564e463f372d251b11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d141a20272b30383f444c51575e616a6f767d8486796c605346392d2013000000000000000000000000000000000000000000000000000000000104090e1214181d1f20232624292c2d2e2f2f30302f2f2e2d2c29242623201f1d1814120e0904010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104080e1114141a1e21222522282b2d2e2e2f2f30302f2f2e2d2d2b2823262422201f1c1814120e0905010000000000000000000000000000000000000000000000000000000000000008121a22282d3031393939393939393939393939393939382e2d2a251e170e050000000000000000000000000000000000000000000007101920272b2e2f3939393939393939393939393939393932312e29221b12090000000000000000000000000000000000000000000000000713202d3a4653606d7984919eabb8c2cdded6cabeb3a99c8f8276695e52463a3844505c6674808d9aa8b2bdc9d5cdc2b7aa9e9184786c605346392f23180c00000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1014161718181818181818181818181615130f0a04000000000000000000040a0f12151518181818181818181818171614100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d786d6053463a2d2013070013202d394653606c7986939faaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa6998c7f7366594c403326190d000613202d394653606c78818181818181818181818181817e7064574d535961666c70767b7f83868a8c8e91929994959696959a9392918f8b8884817d78716c66605b544c443d342d251b13090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e151b1e262e343a41454d535860626c70787f7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000206070c1013141619191d2021222223232323222121201d1819161413100c070602000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507090e12141518171c1f2021212223232322222121201f1c171a18151413100c07050200000000000000000000000000000000000000000000000000000000000000000005101a242c33393c3e464646464646464646464646464646453a3936302920170d020000000000000000000000000000000000000000030d19222b32373b3c464646464646464646464646464646463e3d3a342d241b11060000000000000000000000000000000000000000000004111d2935414c5663707d8a96a1adb9c5d2dfd3c6baada2978a7e7164564d4236343f4a54626f7c8996a1acb9c5d2d2c5b9aca096897c6f63554b4034291c1004000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1ddd0c3b6aa9d9083776a5d5044372a1d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a0c0c0c0c0c0c0c0c0c0c0c0908060300000000000000000000000000030608090c0c0c0c0c0c0c0c0c0c0a0a070400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a877a6d6154473a2e2114070013202d394653606c7986939d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d998c7f7366594c403326190d0006121f2b3844505b666c75757575757575757575757575706c615549464f545b6064696e73767a7d8082848687888889898887868584827e7b7874706c65605b54504a423a322b221b130901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0c151c23282f353b42464e545a61666d726d62564a3d3124180b00000000000000000000000000000000000000000000000000000000000000000000000406070a080d11131415151616161615151413110d070a070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002060808060b0f1213141515161616161514141312100b060b09070604000000000000000000000000000000000000000000000000000000000000000000000000000b17222c363e44494a535353535353535353535353535353524746413a32291e130800000000000000000000000000000000000000010b151f2b343d434749535353535353535353535353535353534b4a453f362d22180c010000000000000000000000000000000000000000000713202c3945525d6875818e9ba9b2bdc9d5ded2c5b8ab9f9285796d6053473b302e384854606a7884919eabb7c3ced5c9bdb2a89a8e8174675c5145382c1f1308000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4d1dbd0c3b6aa9d9083776a5d5044372a1d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b969696969696969696969696969696969696969696969696969696969696969696969696969696969696969694877a6d6154473a2e2114070013202d394653606c798691919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191918c7f7366594c403326190d00030f1c28333f4a545b606868686868686868686868686864615a50443e424a5053575f6266686d71737577797a7b7b7c7c7b7a79787775726e696864605b53504a443f382f282019100901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a11171e242931363c434750545c6065625b51463a2e22150900000000000000000000000000000000000000000000000000000000000000000000000000000000010406070809090a0a0909080706040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030606070808090a09090808070706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c28333e485055576060606060606060606060606060605f54524c443a3025190f0500000000000000000000000000000000000007121d27313d464e54565f606060606060606060606060606060585650483f34291d11050000000000000000000000000000000000000000000714212d3a4754606d7a86929facb9c4cfdad4c8bdb2a89a8d8174675c514538292c38434e586673808d99a7b1bcc8d4cec4b8ab9f9285796d6053473a3025190d010000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c4cececec3b6aa9d9083776a5d5044372a1d11040000000000000001040607060401000000000000000000000000000000000000000000000000040607090b0d0d0c0b08070502000000000000000000000000000000000000000000000000000000000000030607090b0b0a0908060300000000000000000000000000000000000000000000000000000000000000000000030506090a0b0a0906050300000000000000000000000000000000000000000000000000000000000000000000030608090a0b0b090706030000000000000000000000000000000c1925323f4c5865727f8b98a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a094877a6d6154473a2e21140700111e2b3744515e6a77838484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484847f7265584b3f3225180c00000b17222d38424a50535b5b5b5b5b5b5b5b5b5b5b5b5b575550483e2f383f44464d5355565d60646668666d6d6e6f6f706f6e6d666a6865625f5757535049443f38332d261d160e0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c13191f252a32373e424a5053585651493f34291d120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b615e564c41362a21170b0200000000000000000000000000000000040d18242f39434e5860626c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c65625a50453a2e211509000000000000000000000000000000000000000006121f2b37434e5865727f8b98a3aebac7d6ded1c5b8aca096897c6f62554b40342927323d4855626f7c8895a0acb8c5d1d3c6baada2978a7d7164564c41362a1e11050000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb8c1c1c1c1c1b6aa9d9083776a5d5044372a1d1104000000000001070d10131413100d07010000000000000000000000000000000000000000070c10121316181a1a19181514120e09040000000000000000000000000000000000000000000000000000060b101213161718171515120f0a04010000000000000000000000000000000000000000000000000000000000060b0f1213161718171613120f0b06000000000000000000000000000000000000000000000000000000000001040a0f121515171817161312100b06000000000000000000000000000c1925323f4c5865727f8b98a5b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0ada094877a6d6154473a2e21140700101d2a36434f5b677177777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777726d62564a3d3124180b000006111c262f383f44464e4e4e4e4e4e4e4e4e4e4e4e4e4a49443e362c2d33383c4247484c52545759545c6061616263636261605c545c5855534d4a46443f38332d28221c140b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d141a20272b30383f44464b4a463f372d23180d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010406070809090a0a0b0b0b0b0b0b0a0a090807060400000000000000000000000000000000000000000000000000000000000000000000000000000000000003080d1012131313131313131313131313131313130f0e0c08040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303c4955616c71797979797979797979797979797979786d685e52463e33291d140a000000000000000000000000000000010c161f2935404b55606a6f79797979797979797979797979797979716c62564a3d3124170b00000000000000000000000000000000000000000815212e3a47535f6a7783909daab4bfcbd7d7ccc0b5ab9d9184776a605443392f23212e3a47535f6a7784919daab7c2cdd6cabeb3a99c8f8275685e5246392d2015090000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eabb4b4b4b4b4b4b4aa9d9083776a5d5044372a1d110400000000040c12181d2020201d18120c0400000000000000000000000000000000040a0f12181c1f2023252627262422211e1a14100c0701000000000000000000000000000000000000000002090e11171c1f202324252422211f1b15110d070100000000000000000000000000000000000000000000000002080d11171b1f202224252422201f1b17110d080200000000000000000000000000000000000000000000000001070d11151b1f212224252423201f1c17110e0902000000000000000000000c1925323f4c5865727f8b98a5b2bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbaada094877a6d6154473a2e211407000e1b27333f4b565f676a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a65625b51463a2e2215090000000a141d262d333839424242424242424242424242423d3c39332c2422282b31373a3b4145474a4d4a50535455555656555453504a4f4b4847423d3937332d28221c17110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e151b1e262e34383a3f3d3a342d251b110600000000000000000000000000000000000000000000000000000000000000000000000000000000040607090a0c0e080d1113141516161717171818181817171716141313100c070b0808060200000000000000000000000000000000000000000000000000000000000000000000070e14191d1f1f2020202020202020202020202020201b1a18140f0901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d868686868686868686868686868686857a6d615a50453b2f261b1106000000000000000000000000000008131e28313a45515d676f7c878686868686868686868686868686867e7165584b3e3225180b0000000000000000000000000000000000000003101c28343f4a54626f7c88959fabbcc6d1dcd4c7bbafa4998c7f7266584e4331271d1f2b37434e5866737f8c99a7b1bcc8d4d0c5b9ac9f92867a6d6154473c31261a0f0000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919ea8a8a8a8a8a8a8a8a89d9083776a5d5044372a1d1104000000040d161d24292c2d2c29241d160d0800000000000000000000000000040a0f151b1c23282c2d3032333433312e2d2a261f1d18120c07000000000000000000000000000000000000050d141a1c23282b2d2f3132312f2e2b26201d18130c0400000000000000000000000000000000000000000000050c13191b22272b2d2f3132312f2d2b27221b19130c0400000000000000000000000000000000000000000000040c13181d20262b2e2f3132312f2d2b28231c19140d050000000000000000000c1925323f4c5865727f8b98a5b2bec9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c7baada094877a6d6154473a2e211407000b17222e39444d565b5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e585651493f34291d1206000000020b141c22282b2d3535353535353535353535353531302d28221a171c1f262b2e2f35393a3e403f44464748484949484746443f423f3b3a37312d2b27221b17110b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0c151c23282c2d32312e29231b1309000000000000000000000000000000000000000000000000000000000000000000000000040607070c1013141517191a1c191d2021222223232424252525242424232221201f1c181a181514120e0908060200000000000000000000000000000000000000000000000000000000000811191f25292b2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d282724201a130b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303c4955616c75818e969393939393939393939393978f82756c62574d41382d22170c03000000000000000000000000040e19242f3a434f59606d798491999393939393939393939393978f82756c62564a3d3124170b0000000000000000000000000000000000000006121f2c3844505c6673808d9aa7b1bccfd8dfd2c6b9ac9f93877b6e6154483d3221151b26313c4855616e7b88959fabb8c7d2d3c7bbafa3998b7f7265584e43372b1c110600000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919b9b9b9b9b9b9b9b9b9b9b9083776a5d5044372a1d11040000010c161f282f35393a39352f281f1a11080000000000000000000003090e161b20272b2e34383a3c3e40403f3e3b3a36312c29241d18120b03000000000000000000000000000001090e171f252a2e34383a3c3e3e3d3c3a37312c29241d160d080000000000000000000000000000000000000000090e161e252a2d3337393c3d3e3d3c3937332d29251e160e080000000000000000000000000000000000000000080d161d24292c31373a3c3d3e3e3c3a38342e2a251f170e0901000000000000000c1925323f4c5865727f8b98a5b2becbd3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c7baada094877a6d6154473a2e2114070006111d28323b444b4f515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151514b4a463f372d23180d0100000000020a11171c1f20282828282828282828282828282423201c17100b0f151a1e2124292c2d312e34383a3a3b3c3c3d3c3b3a38342e322f2e2b26201f1b17110b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a11171c1f202524221d1811090100000000000000000000000000000000000000000000000000000000000000000105070c10131316181c1f20222426272824292c2d2f2f30303031313232313131302f2e2d2c2823262422211e1a1514120e0906020000000000000000000000000000000000000000000000000007111a232a313538393939393939393939393939393939393534312c251d150b0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212d3944505a606d7a84919aa49f9f9f9f9f9f9f9fa99e938b7e71695e53493f33271e150a0000000000000000000000020c16202935414c55606b74808d96a09f9f9f9f9f9f9f9f9fa59e92857b6e615a50453a2e211509000000000000000000000000000000000000000713202d3a4653606d7985929eabb8c3cdded6cabeb3aa9c8f8276695e52463a2d201415212d3a46535f697683909dabb5c0ccd7cbc0b5ab9d9083776a5f5347382d22170b00000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b78858e8e8e8e8e8e8e8e8e8e8e8e8e83776a5d5044372a1d1104000007121d283139404547454039312c231a11080000000000000001080d151a20272b323739404446494b4d4d4c4b4846423b38352f28231c150c06000000000000000000000000020b131b20293036383f4446494a4b4a4847433c39352f281f1a11090000000000000000000000000000000000010a121a20283036383f4446494a4b4a4946443f38353028201a120a01000000000000000000000000000000000009111a1f282f35393c4347484a4b4a4946443f38363029201b130b020000000000000c1925323f4c5865727f8b98a5b2bec6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6baada094877a6d6154473a2e21140700000b16202932393f43444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444443f3d3a342d251b110600000000000000060b0f12131b1b1b1b1b1b1b1b1b1b1b1b1b171614100b050003090e1214191d20212423282c2d2e2e2f30302f2e2d2c28232522211e1a13120f0b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c101213181815120d06000000000000000000000000000000000000000000000000000000000000000002080d1113181c1f202323292c2d2f313334352f35393a3b3c3c3d3d3e3e3e3e3e3e3d3d3c3b3a38342e33312f2e2b2622211e1a15120e090300000000000000000000000000000000000000000000030e19232c353c41454646464646464646464646464646464642403c372f271d1309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c28333e45525d68707d88939fa7b1acacacacacacafa59f92857b6e655b50443c30261c11060000000000000000000008131e28323a45515d67707d88939fa8b2acacacacacacb3a99e938a7e71685e52483f34291d110500000000000000000000000000000000000005111d2a36414c5664707d8a97a1adb9c6d2dfd3c6baaea2988a7e7164574d42362a1e12121e2a36424d5765727f8b99a4afbbc7d4d1c7b8ab9f95887b6e62544a3f33281c0f03000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a677480818181818181818181818181818073665a4d4033271a0d0000010d18242f39434b5153514b433e362c231a11080000000000060b13191f262b32383d43474a51535658595a595755534d47454039342e271e180f0800000000000000000000010b141d252d333b42464a50535657585755534e4745413a312c231b1309000000000000000000000000000000000a131c242c323a4146495053555758575553504946413a322c241c130a0000000000000000000000000000000009131b232c313a4145474e53555758575653504a46423b322d251d140b0100000000000c1925323f4c5865727f8b98a5b2bababababababababababababababababababababababababababababababababababababababaada094877a6d6154473a2e2114070000040e1720282e33363737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373732312e29231b1309000000000000000000000306060f0f0f0f0f0f0f0f0f0f0f0f0f0a0a080400000000000206080d11131417171c1f2021222223232221201f1c17181514120e090503000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306070c0b0906010000000000000000000000000000000000000000000000000000000000000000050c13191d2023282c2d2f2f34383a3c3d3f4142434145474849494a4a4a4b4b4b4b4a4a4a494746454042403e3b3a37312f2e2b26211e1a150f0b06000000000000000000000000000000000000000008141f2a353e464d51525353535353535353535353535353534e4d4841392f251a0f0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222935414c56606b74808d95a0abb5c0b9b9b9b9baaea2988f82776c60584e42382e23170d030000000000000000050e1925303a444f59606d7a84919aa4afbab9b9b9b9b9b9ada1978e81756c61564d41362d22180c010000000000000000000000000000000000000713202d3946525e6875828f9ba9b3bec9d5ded2c5b8ab9f9285796d6053473b30251a0e0e1a26313b4754616e7b87939facb9c6d1d4c8bcb1a7998d8073665b5044382b1f1207000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1a2733404c58646e7475757575757575757575757575736e63584b3f3226190c000004101d2935404b555d605d5550483e352c231a12080200030a11171e242931373d43474e54545c60636566676664615f5753514b444039302a211a12090000000000000000000a131d262f373f454d52545c6062646564625f5854514b433e352d251b1108000000000000000000000000000009121c252e363e444c52535b606264656462605b53524c443e362e251c1209000000000000000000000000000008111b252d353e434b5154585f6264656462605c54524d443f372f261d130a00000000000c1925323f4c5865727f8b98a5adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadada094877a6d6154473a2e211407000000050e161d22272a2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2524221d18110901000000000000000000000000000202020202020202020202020200000000000000000000000001040707060c101213141515161615141312100c060808060200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e171e252a2d2e34383a3c3f404547484a4c4d4f504c525455555656575758585857575756555453514b4f4d4b4847423f3b3a37312d2b261f1b17110a020000000000000000000000000000000000000d1925313c4650585d5f6060606060606060606060606060605b59534b41372c2014080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d19242f3a434f59606d79839199a3afbbc2cec6cabeb3aa9f948b7f726a5f544a3f34281f150b01000000000000020d17202935414c56616b74818e96a1acb6c0ccc6d0c4baafa59e91857a6d615a50443b30241b1106000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5cfdad5c9bdb2a89a8e8174675d514538291f14090914202d3946525e6876838f9cabb5bfcbd7cdc3b7ab9e9184786c605346392f24180c000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824303c48535c64676868686868686868686868686866635c52473b2f23170a00000613202c3945515d676d67615a50473e352c2419140d0c10141c22282f353c42474e54586062666d6f71737372716e6965605d55514a423c332c241b12090000000000000006101c252f38414951575e61666d6f7171706f6a66605d554f473f372d231a0d04000000000000000000000000050e1b242e37404850565e61656c6f7071706f6c65615e56504840372e241b0e05000000000000000000000000040d1a232d373f474f555d60666a6f7071716f6d66615e56514941382f251c0f06000000000c1925323f4c5865727f8b98a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a094877a6d6154473a2e21140700000000040b11171b1d1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e181815120d0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030607070809090a0908070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a131313131313131313131313131313090806030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c1720293036393a404546494c4b51535557595a5b5d565d60626263636364646565646464636261605c545b595755534d4c4847423c3a37312b27221b140b080200000000000000000000000000000000101d2935414d58626a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c68655d53483c3124180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313d45515d676f7c87929fa7b1bcc6d0d0c5bcb0a69f92867c6e665c50443c31271d120700000000000008141f29323b46525e68707d8a939da8b2bec7d2d2c7beb2a89d938a7d70685e52483e32291f12090000000000000000000000000000000000000006131f2b37434e5865727f8c99a3aebbc7d6ded2c5b9aca096897c6f63554b403529170d0205111e2a36414d5665717e8b99a3aebbc7d3d2c5b9ada196897d7063554b4035291d10040000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202b36414a53585a5b5b5b5b5b5b5b5b5b5b5b5b5b5a58524a40362a1f130700000714202d3a4753606d79706c61594f473e362a251f18171c1f262d333a41454d535860626a6f74797c7e80807f7e7b77716d67605c544d453e362d241b12090000000000030e18222e37414a525b62696e74797c7d7e7d7b78736d67615951493f352c1f160c0100000000000000000000020d17202d364049515a61686d73787c7d7e7d7c78736d68615a514940362d20170d0200000000000000000000010c16202c353f49515961676d73787b7d7e7d7c79746e69625b524a41372d21180e030000000c1925323f4c5865727f8b939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393877a6d6154473a2e211407000000000000060b0e10111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110c0b090601000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b101416172020202020202020202020202020201615130f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e29323a4146474b51535659555c606264666768696b686d6e6f6f707071717171717170706f6e6d666a686664625f575955534e4847423c37332d261d19140d05000000000000000000000000000000121f2b3845515d6a7479797979797979797979797979797979756f65594d4034271a0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2935404b55606a737f8c959faab4bfcad6cec2baaea3989083786d60584e43392f24180d0400000000060f1925303b44505a616d7a85919ea5afbac4d0d8ccc0b6aca1968e81746c61564c41362c20170d00000000000000000000000000000000000000000815222e3b47545f6a7783909dabb5bfcbd7d8ccc0b6ac9e9184776b605443392f24180500020e1925303b4754616d7a86929facb9c5d0d5c9bdb2a89b8e8174675d5145392c1f14080000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1a252f3841484c4e4e4e4e4e4e4e4e4e4e4e4e4e4e4d4b4740382e24190e0200000c1926323f4c5965727f7d706b61595048403630292423282c2f383f444c52575f616a6f767c8185898b8c8d8c8a88837e79736d665f5750483f362d251b1106000000000a15202a343f49525c646d727b8185898a8b8a88848079706b625b51473e31281e13080000000000000000000009141f29333f48515b636c717a8084888a8b8a8884807a716c635b51483e32291f14090000000000000000000008131e28323e47515b626b70798084888a8b8a8985817b726d645c52493f332a2015090000000c1925323f4c5865727f87878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d23221f1b160f0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a444c5254545c60626568676d6f707274757677797a7b7c7c7d7d7d7e7e7e7e7d7d7d7c7a7978777573716e696966625f5755534d46443f382f2a251e170e080000000000000000000000000000131f2c3946525f6c79858686868686868686868686868686868175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18242f39434e58606d78839098a2aebac2cdd6cbbfb4aa9f958c7f736a60554b4035291f160c010000020b17212a36414d56616c75818e97a1adb7c0ccd6d0c7bbafa49a91847a6d60594f443a30241a0e050000000000000000000000000000000000000004101c2834404b55626f7c8895a0acbdc6d1dcd4c8bbafa49a8c7f7366594f4331271d120700000814202d3946525d6875828f9caab4bfcad6cfc4b8ab9f9285796d6053473b3025190e0200000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131d262f363c404142424242424242424242424242403f3b362e261c12080000000c1926333f4c5966727f867d706b615a5146413b352f2e34383e424a50565d60696e757c82898d929798999a999795908b857f786e69615a50483f372d23180c010000030f1a26313c46515b646e747f868d929797989796918c857d726d62594f433a2f24190d010000000000000000020e1a25303b45505a636d737e858d919797989797918d857e736d635a50443b3025190e000000000000000000010d19242f3a444f59626d727d858c919697989797928d867f746e645b51463c31261a0f0200000713202d3a4653606d797a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a796c605346392d20130600000000000000000000000000000000000000000004080c0e0f131313131313131313131313131307070501000000000000000000000000000000000000000000000000000000000005080a0b1313131313131313131313131313120f0a05000000000000000000000000000000000000000106090b0c1313131313131313131313131313090907030000000000000000000000000000000000000003090d111213131313131313131313131313130a0a080400000000000000000008111a22282d30313939393939393939393939393939392f2e2b272019100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c565e6165666d6f7275777a7b7d7f808283848587888889898a8a8b8b8b8a8a8a89888786858382807e7b7875726e6a66615f57535049413d363029201a110600000000000000000000000000131f2c3946525f6c798592939393939393939393939393938e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c44505c666e7b86929fa6b0bbc5cfd0c6bcb1a79f92877c6f675d51453d31281e130800000a141d29333b46525e68717e8a939ea9b3bec9d2d2c7bdb2a89f93887d70685d52473e32281e1208000000000000000000000000000000000000000006131f2c3845515c6774808d9aa7b1bccfd8dfd2c6b9ac9f93877b6e6154483d3221150b01000005111d2935414c5664717e8a98a2aebac6d3d3c6baaea2988a7e7164564d41362a1e110500000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b141d252b3033343535353535353535353535353533322f2a241c140a000000000c1926333f4c5966727f8c867d716c635b524d45403e3c3f44464f545b60686d747b82898f949a9ea1a9a6a6a5a7a09d97928c837b716c625a51493f34291d1205000006121f2b37434e58636d74808b92989ea1a9a4a8a19e9792877f726b61554c4135291d1104000000000000000005111e2a36424d57626c737f8a92989ea1a9a4a9a19e97928a7f736c62564d42362a1d1207000000000000000004111d2935414c56616c727f8792979ea1a8a4a9a19e98928b80746d63584e43372b1e1308000006131f2c3845515c666d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6c655b5044372b1f12050000000000000000000000000000000000000001090f14181a1b20202020202020202020202020201413110d080200000000000000000000000000000000000000000000000000060c1115171820202020202020202020202020201e1b1610090100000000000000000000000000000000060d1215181820202020202020202020202020201615130f0a0400000000000000000000000000000000070e15191d1f2020202020202020202020202020171614100b0500000000000005101a232c33393c3d4646464646464646464646464646463c3b37322b22190f0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e686d7276797c7f818486888a8c8d8e909192989595969696979798989797979695949792908e8c8a8885827f7b77736e6964605b534f46413b322c2317110a020000000000000000000000131f2c3946525f6c7985929f9f9f9f9f9f9f9f9f9f9f9f9b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f28343f4a545f69727f8b949fa9b3becad6cec3bbafa3999184796d60594f433a2f24190e0506111b262f3b45505a616e7b85929ea5afbbc4cfd7ccc0b5aba0968d80746b60564c41352c20160c0000000000000000000000000000000000000000000713202d3a4653606d7985929eabb8c3ceded6cabfb4aa9c8f8276695e53463a2d211403000000010d1924303a4753606d7a86929facb8c5d0d6cabeb4aa9c8f8276685e5246392d20150a00000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e161e24292c2d3232323232323232323232323232322e2d2a251e170e050000000c1926333f4c5966727f8c92877e736d615e56514b4a494a50535961666c717a80868f939c9ea6abadb3b3b3b2b1aca9a29e9590867e716c625b51453a2e22150900000815212e3a47535f6a727f8c929fa2aaadb3b1b2aca9a19993877d70675d5145392c20150a00000000000000000714202d3a46525e69717e8b919fa2aaadb2b1b2ada9a29f918b7e71695e5246392e23180c00000000000000000713202c3945525d68707d879399a1a9acb2b1b3adaaa29f928c7f726a5f53473a3025190d010004101c2834404b545c606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605b53493f33271b0f03000000000000000000000000000000000000030b131a202427282d2d2d2d2d2d2d2d2d2d2d2d2d2d21201d19130c0400000000000000000000000000000000000000000000000910171d2124242d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a0100000000000000000000000000010911181d2224252d2d2d2d2d2d2d2d2d2d2d2d2d2d23221f1b160f0700000000000000000000000000000911192025292c2c2d2d2d2d2d2d2d2d2d2d2d2d2d2423201c17100800000000000b17222c353e44494a5353535353535353535353535353534947433d342b20160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a7f8286898c8e91929997999a9b9c9e9fa2aaa2a2a3a3a4a4a4a4a4a4a3a3a2a9a29f9d9b999797928f8c8884807b76706c656059524c443e3628231c140c0200000000000000000000131f2c3946525f6c7985929facacacacacacacacacaca89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17232e38424d57606c77828f97a2adbac1cdd7cbc0b5aba0958d80746b60564c41352920170d0c17222d38414d57626c75828f97a2adb7c1cdd6cfc6bbafa4999184796d60594f433a2f231a0e05000000000000000000000000000000000000000005111e2a36424d5664717d8a97a2adb9c6d2dfd3c6baaea2988b7e7164574d42362a1e1205000000000813202c3945515d6775818e9ba9b3becad6d0c5b9ac9f92867b6e6154473c31261b0f00000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c1620283035393a3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3a3936302920170c0200000c1926333f4c5966727f8c9992887f766e68605d555756545c60646b70787e858d92999ea5aab0b8b9bebfc0bfbcb8b3ada79f9892877e726d62564a3d3124180b0005111d2a36414c56626f7c87929fa4aeb4b9bebebdb9b3aba49992857a6d6054473c31261b0f0300000000000004101c2834404b55616e7b86929fa4aeb3b9bebebeb9b3ada49f92867b6e61544b4034281c1004000000000000030f1b27333f4953606d7a859299a4abb3b9bdbebeb9b4aea49f92877c6e62564c4135291d110500000c18232e39424b5153545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545453504941382d22170b000000000000000000000000000000000000010b151d252c3134353939393939393939393939393939392d29251e160e0400000000000000000000000000000000000000000009121a22282d3031393939393939393939393939393937332c251c13090000000000000000000000000009131b23292e31323939393939393939393939393939302f2c272119100700000000000000000000000007111b232b313638393939393939393939393939393931302d28221a110800000004101c28333e4750555760606060606060606060606060606056544e463d32271b0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a2633404d596673808b8f9298989b9d9fa3aba5a7a8a9aaacaeb4afafb0b0b0b1b1b1b1b0b0b0afb3adabaaa8a6a9a19e9c9996918d87827d78706b615e56504840342e261e140a00000000000000000000131f2c3946525f6c7985929facb8b9b9b9b9b9b9b9b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303c44505b656e7b85929fa5afbbc4cfd1c7bdb1a89f93887d70685d52453e32291e13151e27333f49535f69717e8b949ea9b3bec9d3d1c6bdb1a79f93877c6f675d51473d31281e11080000000000000000000000000000000000000000000714202d3a46525e6975828f9ca9b3becad6dfd2c5b8ac9f92857a6d6053473b31251a0e020000000004101d2935404b5564707d8a97a2adbac6d3d4c7bbafa3998c7f7265584e43372b1c1106000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323a4145474b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4746413a32291e130800000c1926333f4c5966727f8c999a938c827b726d6766646365666d71767d838b92979fa3abafb7bbc2c6cacfcdcec8c5beb9b1aaa29993887f7265584b3f3225180c000713202d3946525e6875828f99a3afbabfc6cacec9c5bdb5aba1978c807366584e43372b1f120600000000000006131f2c3845515c6774818e98a2aebabec5c9cfc9c5bebaaea2988e8174665c5145382c1f130600000000000005121f2b3744505b6573808d97a1abb5bdc5c9cec9c6bfbaafa3998f8275685e5246392d201307000007121d273039404546474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474746443f382f261b110600000000000000000000000000000000000009131d272f373c40424646464646464646464646464646463935302820160c020000000000000000000000000000000000000006101a242c34393d3e4646464646464646464646464646433e372e251b1005000000000000000000000006111b252d343a3d3f46464646464646464646464646463c3b38322b22190f0400000000000000000000030e19232d353c424546464646464646464646464646463d3c39332c231a100500000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6260584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576975828f9c9fa3aaa8aaacafb5b2b3b5b6b7b8babfbbbcbcbdbdbebebebdbdbdbcbbbebab8b6b5b3b3adaba8a8a09d9a938f8a837d756e68615a52443f3830261c1106000000000000000000131f2c3946525f6c7985929facb8c5c6c6c6c6c6c1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e27333f49535e69717e8a939ea9b2bdc9d5cfc3bbafa49a91847a6d605a50443a3025191c26303844505b656e7b86929fa6b0bbc5cfd7cbbfb5aba0958d80736b60554b40352b1f160c000000000000000000000000000000000000000000000814212e3b4754616e7b86929facb9c5cfdbd5c9bdb2a89b8e8174675d514539291f14090000000000010d18242f3a4653606d7985929fabb8c4cfd7cbc0b5ab9d9083776a5f5347382e23170b000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130701010101010101010101010100000000000000000000000000000000000000000000000000000000000000010d1924303a444c525458585858585858585858585858585854524c443a3025190d01000c1926333f4c5966727f8c99a49f948f857f7a7573716f7174797d838a90959ea1a9aeb5bdc1c7cac6c5c3c3c4c6c9cac2bcb4aba49a9286796c5f5246392c1f13000714212e3a4754616d7a86929fabb5c0cad0d6dad5d0c7bdb3a99e9184786a5f53473a2e2115080000000000000713202d3a4653606d7985929faab4bfcad0d5dad5d0cabfb4aa9f9285796d6053463a2d2013070000000000000613202d394653606c7884919ea9b3bdc7d0d5dad5d0cac0b5ab9f92867a6d6154473a2e2114070000000b151e272e34383a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3937332d261d140a000000000000000000000000000000000000040f1a252f3941484d4e53535353535353535353535353535346413a32281e1308000000000000000000000000000000000000000c17222c363e45494b53535353535353535353535353534f4940372c21160a00000000000000000000010d18232d373f464a4b53535353535353535353535353534948433d342b21160a000000000000000000000915202b353f474e5253535353535353535353535353534a49443e352c22170b00000a1623303c4955616c707979797979797979797979797979796f6a6054473b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f697885929eabaeb4b4b7b9bbc0bfc0c1c3c4c5c7cad0c9c9c9cacacbcbcacacac9d0cac6c5c3c1bfbeb9b8b5b2acaca49f9c959089827a706c635c504a42382e231711070000000000000000131f2c3946525f6c7985929facb8c5d2d2d2d2cec1b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17222d38414d57616c75818e96a1adb9c0ccd8ccc0b6aca1968e81746c61564c41362a21232e38424e58606c77829098a2aeb8c1cdd7cec6bbaea3999083796d60594f43392f23190d0400000000000000000000000000000000000000000007131f2c38434e5866727f8c99a3afbbc7d7ded2c5b9aca096897c7063554b403529170d0300000000000007131f2c3845515c6674818e9aa9b3bec9d5d1c7b8aca095887c6f62544a3f34281c10030000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d20130e0e0e0e0e0e0e0e0e0e0e0e0e0a0a080400000000000000000000000000000000000000000000000000000004111d2935414c565d60656565656565656565656565656565615e564c41362a1d1105000c1926333f4c5966727f8c99a5a69f97928c86817f7d7c7e81848a90949da0a7adb3bbbfc6c7c5bfbab8b6b6b8b9bec1c6c5bdb5ac9f9285796c5f5246392c1f13000b1824313e4b5764717e8a99a3afbdc7d1dbe2e5e2d9d0c5b9aca196887b6f6255483c2f2215090000000000000a1623303d495663707d8998a2aebcc6d0dbe1e6e1dbd0c6baada297897c706356493d3023160a0000000000000915222f3c4855626f7b8896a1adbbc5d0d9e2e5e2dbd1c7bbafa3998a7e7164574b3e3124180b000000030c151d23282c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27221b140b020000000000000000000000000000000000000814202c37414b53595b60606060606060606060606060605f524c443a3025190d01000000000000000000000000000000000005111d28343e48505557606060606060606060606060605f5a52493e33271b0f0200000000000000000006121d29343f49515658606060606060606060606060606056544f463d32271b0f000000000000000000010d1925313c4751595e5f60606060606060606060606060575550473e33281c1004000a1724313d4a5764707d8686868686868686868686868686867c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8897a1adb9bfc1c4c5c7cbd1cdcecfcecccac9c8d1cbc7c5c5c4c5c5c7cbd1c9cbced0d0cecfcac6c5c2bdb8b6afaca79f9d938f857e736e605c544a3f342823190d0300000000000000131f2c3946525f6c7985929facb8c5d2dfdfdbcec1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b45505a616d7a84919ea4aebac3cfd2c7beb2a89d938a7e70685e52463e332928343f4a545f6a727f8c949faab4bfcad3d0c6bcb1a79f92877c6f675c51463d31281d1108000000000000000000000000000000000000000000000915222e3b4854606a7784919dabb5c0cbd7d8ccc0b6ac9e9184786c605346392f2418060000000000000004101c2834404b5463707d8997a1adb9c6d2d4c8bcb1a79a8d8073665c5044382b1f13070000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d201a1a1a1a1a1a1a1a1a1a1a1a1a1a171614100b05000000000000000000000000000000000000000000000000000713202c3945525d686d7171717171717171717171717171716d685e5246392d201307000c1926333f4c5966727f8c99a5b0a9a29f98928e8c8a898b8d91969c9fa6acb1b9bec5c6bfbab8b4aeaca9a9abadb2b5b9bbc0b8ac9f9285796c5f5246392c1f13000d192633404c5966737f8c99abb5c0cfd9e3edf4ebe2d5c9bdb2a8968a7d7063574a3d3024170a0000000000000b1825323e4b5865717e8b98aab4beced8e2ecf1ece2d6cabeb3a9978b7e7164584b3e3125180b0000000000000a1724313d4a5764707d8a97a8b2bdcdd7e2ebf4ede3d7cbc0b5ab998c7f7266594c3f3326190c00000000030b12181c1f202121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121201f1b17110a02000000000000000000000000000000000000000c1824313c48535d65686c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5e564c4135291d110500000000000000000000000000000000000815212d3945505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e12050000000000000000000915222e3a46515b62656c6c6c6c6c6c6c6c6c6c6c6c6c6c6360594f43382c1c1106000000000000000004111d2936424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5044392d201408000a1724313d4a5764707d8a93939393939393939393939393897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a9b3becad0d0d1ced0cac6c5c3c1bfbebcbbbbbfbab9b8b7b8b9bbc0bbbcbfc1c3c5c7cbd0d2d1cec8c7c0bbb9b1aba69e97928a80746d665c50443f352b1f150b01000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29333e46525d68707d89929da8b2bdc7d1d0c4baafa59e92857a6d615a50453b2f303944505c666e7c86929fa6b0bcc5d0d6cbbfb4aa9f958c7f736a5f554b40342b1f160c0000000000000000000000000000000000000000000004101d2935404b55626f7c8995a0acbdc7d1dcd4c8bbafa49a8c7f73655b5044372b1d120700000000000000000c18232e3a4653606d7985919eabb8c4ced9cdc3b8ab9e9184796d6053463a2f24180d0100000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a2d2727272727272727272727272727272423201c1710080000000000000000000000000000000000000000000000000714212d3a4754606d7a7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7a6d6154473a2e211407000c1926333f4c5966727f8c99a5b2b3adaaa29f9b999796989a9ea1a8abb0b8bcc3c7c0bbb4aeacaaa29f9d9c9ea1a9a8acafb6b8ac9f9285796c5f5246392c1f13000d1a2734404d5a6773808d9aa6b3c0d1dce7f3fdf3e5dacebeb1a4978b7e7164584b3e3125180b0000000000000c1926323f4c5965727f8c98a5b2bfcfdbe6f2fdf2e6dbd0bfb2a5988c7f7265594c3f3226190c0000000000000b1825313e4b5864717e8b97a4b1beced9e5f3fdf3e8dcd1c0b3a69a8d8073675a4d4034271a0d000000000000070c101313141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141413120f0b060000000000000000000000000000000000000000010e1a2734404d59656f75797979797979797979797979797976685e5246392d20130700000000000000000000000000000000000a1724303d4955616c7179797979797979797979797979766c5f5346392d2013060000000000000000000b1824313d4a56626d7279797979797979797979797979796f6b605448382d22170b000000000000000006121f2c3845525e6a757979797979797979797979797979706c6155493c3023160a000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f95897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546773808d9aa6b3c0cec9c5c4c1bebebab8b6b5b3b1afaeaeb4aeacabababacafb5aeb0b2b4b6b8babfc5c6cad0d4d2ccc8c3bcb8b0a9a19e928c81786d605b51473d31271d1207000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17202935414c56616b74808d96a0abb5c0cbd7ccc1b9ada1978f82756c62574d413839434e58606d78839098a3aeb8c2ced7cec6baaea3989083786d60584e43392e22190d040000000000000000000000000000000000000000000006131f2c3845515d6774818e9aa8b1bdcfd9dfd2c6b9ac9f93877b6e6153493f33271b0f03000000000000000007121f2b3844505c6674808d9aa8b2bdc9d5d2c6b9ada197897d7063554b4035291d110400000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d6053463a3434343434343434343434343434343431302d28221a110800000000000000000000000000000000000000000000000915222f3c4855626f7b888b8b8b8b8b8b8b8b8b8b8b8b8b897c6f6256493c2f231609000c1926333f4c5966727f8c99a5b2bebab4aeaca8a6a4a2a4a7abadb2b7bbc2c7c1bdb5afaaa39f9b989290909197969b9fa4acb1ac9f9285796c5f5246392c1f13000c1926333f4c5966727f8c99abb5bfcbd7e3edf3ebe1d4c8bdb2a8968a7d7063574a3d3024170a0000000000000b1825313e4b5864717e8b97a9b3becad6e2ecf4ebe4d6cabeb3a9978b7e7164584b3e3125180b0000000000000a1724303d4a5763707d8a96a8b2bdc9d5e1ebf3ede3d7cbbfb4ab998c7f7266594c3f3326190c0000000000000000040607070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706050300000000000000000000000000000000000000000000020f1b2835424e5b68758186868686868686868686868686867a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e86868686868686868686868686796c605346392d201306000000000000000005111e2a36424d5665727f86868686868686868686868686867d6f63544a3f33281c0f03000000000000000613202c3946535f6c7987868686868686868686868686867e7064574a3d3124170a000a1724313d4a5764707d8a97a3acacacacacacacacaca295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c667683909ca9b6c2c0bdb9b7b4b2b3aeabaaa8a6a4a3a2a1aaa39f9e9e9f9fa3aba1a3a5a7aaacaeb4b8babfc6c9ced6d4cdc8c1bbb3ada49c938e80746d62594f43392f24180c020000000000131f2c3946525f6c7985929facb8c5d2dfe5dbcec1b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e1924303a444f59606d79849199a3afbbc3ced5c9beb3a99e938b7e71695e53493f404b555f6a737f8c959faab4bfcad4d0c6bcb0a69f92867c6e665c50463c30271d100700000000000000000000000000000000000000000000000714202d3a4753606d7985929fabb8c3ceded6cabfb4aa9c8f8376695f5341382d22170b00000000000000000003101c28343f4a54626f7c8996a1acb9c5d2d5c9beb2a99b8e8175675d5145392c20140900000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d60534641414141414141414141414141414141413d3c39332c231a1005000000000000000000000000000000000000000000000915222f3c4855626f7b8895989898989898989898989895897c6f6256493c2f231609000c1926333f4c5966727f8c99acb5bdc6bfbab8b4b2b0afb1b4b8b9bdc4c7c2bcb7afaba39f98928e898583838586898e939a9fa7ac9f9285796c5f5246392c1f13000b1724313e4a5764717d8a99a3aebbc7d1dbe2e5e1d9cfc7b9aca096887b6e6255483b2f221508000000000000091623303c4956636f7c8997a2adb9c5d0dbe1e5e2d9d2c6b9ada197897c6f6356493c302316090000000000000815222f3b4855626e7b8896a0acb9c4cfd9e1e5e2dbd3c7baaea3998a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e939393939393939393939393877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a939393939393939393939386796c605346392d20130600000000000000000714202d3a46525e697683909393939393939393939393938d8074665b5044382b1f1206000000000000000613202c3946535f6c79869293939393939393939393938a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0b9b9b9b9b9b9b9afa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929facb8b6b3b2acaaa8a5aaa29f9d9b99979695949498929291929299949496989b9d9fa3aaacaeb4b9bdc4cad0d8d4cdc5beb9aea59d928c7f726b60554b4035291e14080000000000131f2c3946525f6c7985929facb8c5d2d9d9d9cec1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d45515d676f7c87929fa7b1bcc6d0cfc5bbb0a69f92857b6e655b504445515c676f7c87929fa7b1bcc6d0d6cabfb4aa9f948c7f726a5f544a3f342a1e150b000000000000000000000000000000000000000000000005121e2a36424d5764717e8a97a2adbac6d3dfd3c6baaea2988b7e7164574d422f261b1106000000000000000000000b17232e384854606a7884919eabb7c3ced9cfc4b8ac9f92867a6d6053473b30251a0e02000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d60534d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4a49443e362c22170b000000000000000000000000000000000000000000000915222f3c4855626f7b8895a2a4a4a4a4a4a4a4a4a4a295897c6f6256493c2f231609000c1926333f4c5966727f8c9aa4abb5bdc3c6c5c1bfbdbcbec0c4c5c9c3bcb8b1aba59e99928d86817c797676787a7d828790959ca49f9285796c5f5246392c1f13000714212d3a4754606d7a86929fabb5c0cad0d5d9d5cfc7bdb2a99e918477695f53473a2e2114080000000000000713202d3a4653606d7985929eaab4becad0d5dad5d0c7beb4aa9e9285796d6053463a2d2013070000000000000814212e3a47535f6a7784919ea9b3bdc7cfd5d9d5d0cabfb5ab9f92867a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9b9f9f9f9f9f9f9f9f9f9f94877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a979f9f9f9f9f9f9f9f9f9386796c605346392d20130600000000000000000814212e3b4754616e7b87939f9f9f9f9f9f9f9f9f9f9f9e9184786c605346392e23170b000000000000000613202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdc6c6c6c6c6bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8898a2aeaca9a6a8a09e9b98969892908e8c8b89888887868685848586868788898c8e9092989b9fa2aaacb2babfc6ced4d7cfc9bfb7afa59f93887d70675d51453b3025190e0100000000131f2c3946525f6c7985929facb8c5ccccccccccc1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202935404b55606a73808c95a0aab4bfcbd6cdc1baaea2988f82776c60584e4f59606d79839099a3aeb9c3ced7cdc5baaea2989082786c60584e42382e22190c0300000000000000000000000000000000000000000000000714212d3a46535e6976828f9ca9b3becad6dfd2c5b8ac9f92857a6d6053473b3120140a000000000000000000000006111c2c38434e586673808d99a7b1bcc8d4d3c6baaea2988b7e7164574d42362a1e1205000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d605a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a575550483e33281c10040000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aeb1b1b1b1b1b1b1afa295897c6f6256493c2f231609000a1724313d4a5764707d879399a3abb2bbc0c7cbd1cac9cbcec9c4bdb9b1aca79f9d938f87817a746f6c6569676d70757c838c929f9f9285796c5f5246392c1f13000613202c3945525d6875818e99a3afbabfc6c9cec9c4bdb5aba1978c7f7366574d42372b1e120600000000000006121f2c3844505c6674808d98a2aebabec5c9cfc9c5beb6aea2988d8074665c5044382b1f120600000000000006121f2b37434e5866737f8c97a1abb5bdc4c9cec9c6bfbaaea3998e8175675d5145392c2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8acacacacacacacaca094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4acacacacacacac9f9386796c605346392d2013060000000000000005121e2a36424d5765727f8b9aa4afacacacacacacacacada197897c6f63544a3f34281c10030000000000000613202c3946535f6c7986929facacacacacacacaca3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad2d2d2c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98aaa39f9c999796918e8b8987858382807e7c7b7b7a7979787878797a7a7b7d7f8183868a8e92989ea0a8aeb4bcc3cbd4dad5c9c0bbafa49a9184796d60564c41362a1d120700000000131f2c3946525f6c7985929facb8bfbfbfbfbfbfbfb4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e18242f39434e58606d78839098a3aebac2ced6cabeb3aa9f948b7f726a5f5455606b73808d95a0abb5bfcbd4d0c5bbb0a69f92867b6e665b50463c30261c10070000000000000000000000000000000000000000000000030f1b27333f4953616e7b87939facb9c5d0dbd5c9bdb2a89b8e8174675d5145392c2013020000000000000000000000000f1b27323d4855626f7c8895a0acb8c5d1d6cabfb4aa9c8f8276695e52463a2d20150a000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca09386796d676767676767676767676767676767676767676764615a5044392d2014080000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbbebebebebebcafa295897c6f6256493c2f231609000a1623303c4955616c717e879299a0a8afb6babfc5c6c6c5c3bdb9b2aca7a09d959089827b746e6862605b555d60636a6f78808a92989286796c5f5246392c1f130004111d2935414c56616e7b87929fa4aeb4b9bebebdb9b3aba3999184796d6053473c31261a0e0200000000000003101c28343f4a54616d7a86929fa3adb3b9bdbebdb9b3aca49f92867a6d61544a3f34281c1003000000000000020f1a26313c4753606d79859199a3abb3b9bdbebeb9b4aea49f92877b6e61554c4135291d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4b9b9b9b9b9b9ada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1b9b9b9b9b9ac9f9386796c605346392d201306000000000000000714202d3a46525e697683909cacb6c0b9b9b9b9b9b9beb2a99a8d8074665c5044382b1f12060000000000000613202c3946535f6c7986929facb9b9b9b9b9b9b0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6dfd5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935404b556774818e9a9a98928f8d8a8784817f7c7a7877757371706f6e6d6d666b6b6c676d6d6e70727477797d81868b91969fa2aab1b9c2cbd4dbd8ccc0b6aca0968d8073685e5246392f24180d01000000131f2c3946525f6c7985929facb2b2b2b2b2b2b2b2b2a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313d44515c666e7c86929fa6b0bcc5d0d0c5bcb0a69f92867c6e665c5d676f7d87939fa7b1bdc6d1d6cabeb3a99f948b7e72695f544a3f342a1e150a00000000000000000000000000000000000000000000000005121f2b3744505b65737f8c9aa4afbbc8d7ded2c5b9aca196897d7063554b4035291d11040000000000000000000000000a16212e3a47535f6a7784909daab7c2cdd8d0c6b9ac9f93877b6e6154483c32261b0f000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cec6b9aca0938679747474747474747474747474747474747474747474706c6155493c3023160a0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8cbcbcbc8bcafa295897c6f6256493c2f231609000814202d3944505a626c717e8791969fa4acaeb4b8b9bab8b6b2aca8a19e95918a837c756e69615e5653504b5153585f666d737e86929285796c5f5246392c1f1300010d19242f3a47535f69727f8b929fa2aaadb3b1b2aca9a19992877d70675d5145392a20150900000000000000000c17232e3846525e68717e8a919fa2a9adb2b1b2ada9a29a938a7e71685e5242382e23170b00000000000000000915202c3945515d67707d879299a1a9acb2b1b3adaaa29f928b7f72695f53433a2f24190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1c6c6c6c6baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdc6c6c6b9ac9f9386796c605346392d201306000000000000000815212e3b4854616e7b87939facb9c6d2c6c6c6c6cfc4b8ab9e9185796d6053463a2e23170c0000000000000613202c3946535f6c7986929facb9c5c6c6c6bdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d67778490918d8a8683807d7a7775726f6d686a68666463626161605c545e555c606161636568666d70757a7e848c92989fa7b1b9c2cbd4ddd2c7beb2a89f92867a6e61554b4035291d1004000000131f2c3946525f6c7985929fa6a6a6a6a6a6a6a6a6a6a69b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2834404a545f6a727f8c949faab3becad6cec2baaea3989083786d60606d79849199a4afb9c3cfd6cdc5baada2978f82766d62574d42382d22180c030000000000000000000000000000000000000000000000000613202d394653606c7884919eacb6c0ccd8ded1c4b7ab9e9184786c6053463a2f24180d0100000000000000000000000006121f2b37434e5866737f8c99a7b1bcc8d4d4c7bbafa4998c7f7266584e43372b1c11060000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cecdc0b3a79a8d808080808080808080808080808080808080808080807d7064574a3d3124170a0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d7d5c8bcafa295897c6f6256493c2f2316090004101c28333e48505a626c717c848d939a9fa3aaabacadabaaa8a19e96918b837d766f6b625f57524c46444045474e545c606c717d869285796c5f5246392c1f13000008131e2b37424d57626d74808b92989ea1a9a4a8a09e9791877e716b60554b403529180e03000000000000000006111c2a36414c56616c727f8a92979ea1a8a4a8a19e9792887f726c61564c4130261c1106000000000000000004111d2935404b55606b717f8791979ea0a8a4a9a19e98928b80746d62574d4231281e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1ced2d2c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130600000000000005121e2a36424d5765727f8c9aa4afbbc8d4d2d2d2d2d2c6b9ada197897d7063544a3f34281c100300000000000613202c3946535f6c7986929facb9c5d2d2cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a878984817d7a7673706e68686563615e565b59585655555453514b514b515354555659545c6064676d71797f8690959fa7b0b8c2ced7d9d0c4baaea3988d8073675d5145392c201307000000131f2c3946525f6c798692999999999999999999999999998e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d18232e39424e58606c77828f98a2aebac1cdd6cbbfb4aa9f958c80736a6b74808d96a0abb5c0cbd5cfc5bbafa59f92857b6e615b51453b2f261c0f0600000000000000000000000000000000000000000000000004111d2935404b5563707c8996a0acbec7d2ddd3c7bcb0a6998c8073655b504437281d130700000000000000000000000000030f1b26313c4855616e7b88959fabb8c7d2d7ccc0b5ab9d9184776a5f5447382e23170c0000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cecec1b5a99d928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5e1d5c8bcafa295897c6f6256493c2f23160900000b17222c363f48505a616a6f7980878e92989c9e9fa29f9d9a96918c847e78706c636059534d46413b3735393c424a505a616b707d8686796c5f5246392c1f130000010e1a26313c45515b646e747f868d929797989796918c857d716c62594f43392f241806000000000000000000000d1925303a44505a636d727e858d919697989796918d857e726d635a50443a301e140a000000000000000000010d18242f3a434f59626c717d858c919697989797928d867f746e645b51453c311f160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013060000000000000714212d3a46535e697683909dacb6c0ccd8e4dfdfe1d5c9beb3a99a8d8174665c5044382c1f120700000000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c807c7874706d676664615e56585654524c4f4d4b494848474645404540454747484a4c4b5153555d60676d737b8390959fa6b0bcc5d0dbd6cbbfb4aa9f92867a6d6053473a2e23180c000000131f2c3946525f6c79868c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121c27303c44505b656e7b85929fa5afbbc4cfd0c6bcb1a79f92877c6f707d89929da8b2bdc7d2d5c9beb3a99e938b7e71695e52493f33291d140a000000000000000000000000000000000000000000000000000613202c3945515d6774818e9ba8b2bdd0d9dbd0c4b7ab9f94887b6e6153493f3327160c0100000000000000000000000000000a15212d3a46535f697683909dabb5c0ccd7d2c7b8aca095887c6f62544a3f34281c100300000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1ced1c5b9aea49d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5e1d5c8bcafa295897c6f6256493c2f231609000005101a242d363f48505860676d747c81868c8f92939792908e89847f79716d66615a544f47423c36302b292c30383f445059606b707d85786c5f5245392c1f1200000009151f2a333f49525c646d727b8085888a8b8a88847f79706b625a50473d31281d12070000000000000000000008131e29323e48515b636c717a8084888a8b8a8884807a716c635b51483e32291e0c020000000000000000000007131d28313d47505a626b70797f84888a8b8a8885807b726d645c52493f332a1f0d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013060000000000000815212e3b4854616e7b87959fabbec7d2dde8f4f2e6dacfc4b8ab9e9285796d6053463a2e23180c00000000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b47535f6a6f746f6c6563605d555754524c4c4947464142403e3d3c3b3a3a38342f34383a3a3b3d3f4045464b51555c60696e7a8390949faab3becad6dcd0c6baaea2988a7e7164544b4034281c100400000d192633404c5966737f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e27333f49535e69717e8b939ea9b3bec9d5cec3bbafa3999184797a84919ea4aebac4d0d6ccc4b9ada1978f82756c61574d42372d21180b02000000000000000000000000000000000000000000000000000714202d3a4753606d7a85929facb8c4cecececabfb4aa9c908376695f5341382d22170b00000000000000000000000000000005121e2a36424d5765727f8b99a4afbbc7cecec8bcb1a79a8d8074665c5044382c1f130800000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1ced6cbc0b6aea9a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a79a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5e1d5c8bcafa295897c6f6256493c2f23160900000008121b242d363e464e555d606a6f747a7f828586868583817c78726d67605c545048433d37312a251f1d1f262e343e474f59606b707d7064574a3d3124170a000000030e18212d37404a525b62686e74797c7d7e7d7b77736d67605950483f352b1f160c0100000000000000000000020d17202c363f49515a61686d73787c7d7e7d7c78736d68615a51493f362c20170c0000000000000000000000010c161f2b353f48505960676d73777b7d7e7d7c79746e68625b524a40372d21180e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201306000000000005121e2a36424d5766727f8c99a7b1bcd0d9e4eef9f7ebdfd2c6b9ada197897d7063544a4034281c1004000000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e585f626763605b5353514b4a4746413f3c3a3936303331302f2e2e2d2c2823292c2d2e2e302e34383a40454b51575e686d79829098a2aebac3ced9d6cabfb4aa9c8f8275665c5145382c1f130600000c1825323e4b57636d73737373737373737373737373737373706c6155493c3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17222d38414d57626c75818f97a1adb9c0ccd7cbc0b5aba0968d80818e96a1adb6c0ccd5cfc4baafa59e92857a6d615a50453b30241b0f060000000000000000000000000000000000000000000000000005121e2a36424d5764717e8b98a2aebac1c1c1c1c1baaea2988b7e7165574d422f261b1106000000000000000000000000000000020e1a26313b4754616e7b87939facb9c1c1c1c1c1b8ab9e9285796d6053463a2f24190d01000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1cedbd2c8c0b9b5b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3a79a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8d5d6d5c8bcafa295897c6f6256493c2f2316090000000009121b242c343d434b51586062686d727678797a787774706c65605c55504a423e38322b2620191410151c2328353d474f59616c706c6155493c3023160a00000000060f1b252e38404951565e61666d6f7171706e6a66605d554f473f362d23190d04000000000000000000000000050e1a242e373f4850565d61656c6f7071706f6c65605d5650483f372e241a0e05000000000000000000000000040d1a232d363f474f555d60666a6e7071716f6d66615e56514940382e251b0f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130600000000000714212d3a46535f697783909daab6c2cdddebf5f7f7eee2d5c9beb3a99a8e8174665c5144382c1f1207000000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26323c464e53555a565350494745403d3b393630302e2d2a25262523222221201f1c181c1f2021222323282c2f353940454d565d676e7a85929fa7b1bcc8d4dbd0c5b8ac9f9286796d6053463a2d20130700000a16222f3b46515b636666666666666666666666666666666664615a5044392d20140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b45505a616d7a85919ea5afbac4d0d1c7bdb2a89d928d8e939ea8b2bdc8d2d5c9bdb2a89e938a7e70685e52483e33291f120900000000000000000000000000000000000000000000000000000714212d3a46535f697683909caab4b4b4b4b4b4b4b4ac9f92867a6d6054473c3121140a00000000000000000000000000000000000914202d3946525e6876838f9cabb5b4b4b4b4b4b4ada1978a7d7063564c4135291d1104000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1ced3d3d2cbc5c1c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0b3a79a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbc8c9c9c9c8bcafa295897c6f6256493c2f231609000000000009121a222b313940454e54565e616569666d6d676a6763605b53514b443f38302c27211a150d08040a1117232b353d474f59616461594f44392d201408000000000009131d262e373f444d52545c6062646564625f5853514b433d352d241b1108000000000000000000000000000008121c252e363e444c52535b606264656462605b53524c443e362e251c1208000000000000000000000000000008111b242d353d434b5153585f6264656462605c54524d443f372e261d1309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130600000000000815222e3b4855616e7b8895a0abb8c4d1ddeaebeaeaebe6dacfc5b8ab9f9285796d6053463a2e23180c000000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343c4347494e4946443f3a39352f2e2d2a252321201d191a18161515141313100c101314141517181c1f24292f343b434c555e68727f8b95a0acb8c7d1dcd3c7baaea398897c6f6256493c2f231609000006121e2a354049515759595959595959595959595959595959575550483e33281c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29333e46525e68707d8a939da8b2bdc7d2cfc3baaea49d9a9b9ea5afbac4cfd6ccc4b9ada1968e81756c61564c41362d21170d0000000000000000000000000000000000000000000000000000030f1c28333f4a54616e7b88949fa8a8a8a8a8a8a8a8a8a89b8e8175675d5145392c201302000000000000000000000000000000000005111e2a36414d5665717e8b99a3a8a8a8a8a8a8a8a8a99b8e8175685d5245392c201306000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5c1c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c0b3a79a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aebbbdbdbdbdbdbcafa295897c6f6256493c2f2316090000000000000810191f272f353d43474c525459545c60605d555b56535049454039342e261e1b160e0903000000061119232b353e474f5557554f473e33281c10040000000000010b141d252d323b41464a50535557585755534e4745403a312b231b1209000000000000000000000000000000000a131c242c323a4146495053555758575553504945413a322c241c130a0000000000000000000000000000000009121b232c313a4045474e53555758575553504a46413b322d241d140b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013060000000006121e2b37424d5766727f8c99a7b1bcc8d4e0e1dedddddee1dfd3c6baada2978a7d7063544b4034281c10040000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e18222a32373b3c413c3937332d2c292421201e19161413110d08070c10131315171718181818171615131213181d2329313a434c56606d7883909dabb5c0cbd7d6cbbfb4aa988c7f7265594c3f322619060000020d19232e3740464b4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4a49443e362c22170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17212a36414c56616b74818e96a0abb5c0ccd7ccc0b6aea9a7a8aaafb7c1ccd6d0c4baaea49e91847a6d605a50443a30241b0f05000000000000000000000000000000000000000000000000000006121f2b3844505b6673808c999b9b9b9b9b9b9b9b9b9b9b96897d7063554c4135291d11040000000000000000000000000000000000020e1925303b4754616d7a86929b9b9b9b9b9b9b9b9b9b9b92867a6d6054473a2d211407000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b5b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b3a79a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aeb0b0b0b0b0b0b0afa295897c6f6256493c2f23160900000000000000070d151d242932373a4146474c4a505353514b4e4946443f38342e28231c140c0a0400000000000007111a232c353e44494a49443e352c21170b00000000000000020b121b20293036383f4446494a4b4a4847433c39352f281f1a11090000000000000000000000000000000000010a121a20283035383f4446494a4b4a4846443f38353028201a120a01000000000000000000000000000000000009111a1f282f35393c4347484a4b4a4946443f38363029201b120b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201306000000000814212e3a47535f697783909daab7c3cdd9d9d4d1d0d1d2d5d9d6cabeb3a99b8e8174665c5145382c1f13070000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101820262b2e2f34302d2b27221f1d181414110d08070c10131417181c1f2022232425252525242321201f1b1714181f28313b44505c66717e8b99a3afbbc7d4dcd0c1b4a89b8e8175685b4e422d22170b00000007121c252e353b3e404040404040404040404040404040403d3c39332c241a1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f1925303a444f59606d79849199a4afbbc3cfd2c8c0b9b5b3b4b6bac1c9d3d2c7bdb2a89d92897d70685d52483e32291e12090000000000000000000000000000000000000000000000000000000613202d394653606c79848e8e8e8e8e8e8e8e8e8e8e8e8e8e84786c6053463a2f24190d010000000000000000000000000000000000000814202d3946525d6875828e8e8e8e8e8e8e8e8e8e8e8e8e8b7e7165584b3e3225180b000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8adadadadadadadadadadadadadadadadadadadadadadadadadadadada79a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895a2a3a3a3a3a3a3a3a3a3a295897c6f6256493c2f2316090000000000000000030b121820272b3035393a3f3f4446474540413d3937332d28231d17110a0200000000000000000008111a232c33393c3d3c39332c231a1005000000000000000000090e171f252a2e34383a3c3e3e3d3b3a37312c29241d160d080000000000000000000000000000000000000000080e161e24292d3337393c3d3e3d3c3937332d29241e160e080000000000000000000000000000000000000000080d161d24292c31373a3b3d3e3e3c3a38342e2a251f170e09000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201306000000000815222f3b4855626e7b8895a0acb8c4d5d5cec8c5c4c4c5c9ced6cfc5b8ab9f9285796d6053463a2f23180c0000000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e151b1f21222723201f1b1713100c0707070d1013181d1f202323282c2d2f30313132323131302e2d2b272221201d1f28343f4a54616d7a86929facb9c5d2dccfc3b6a99c90837669544a3f33281c0f030000000a131c232a2f323333333333333333333333333333333331302d28221a1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e29323e45515d676f7d87939fa7b1bdc6d1d2cbc5c1c0c1c2c6cbd3d7ccc0b5aba0968d81746b61564c41362c20170d000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8181818181818181818181818181817e71665b504438281e13080000000000000000000000000000000000000005111d2935414c5663707d81818181818181818181818181817f7265594c3f3226190c000000000000000000000000000000000000000f1c2835424f5b6875828e9ba0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b8895969696969696969696969695897c6f6256493c2f23160900000000000000000001070c151b1e25292d2e2e34383a3a39352f302d2b27221b18120b0600000000000000000000000008111a21282d3031302d28211a11080000000000000000000000050d14191c23282b2d2f3132312f2e2b26201d18130c0400000000000000000000000000000000000000000000040c13191b22272b2d2f3132312f2d2b27221b19130c0400000000000000000000000000000000000000000000040c13181d20262b2e2f3132312f2d2b28231c19140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130600000006121f2b37434e5866737f8c99a7b1bcc8d4ccc3bdb8b7b7b9bdc4ccd3c6baada2978a7d7063554b4034291c100400000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f1315161b1613120f0b060403090e12181d2024292c2d302e34383a3b3d3e3e3f3f3e3d3d3b3937332d2d2c2924232e3846525e687683909ca9b6c3cfdcd1c4b8ab9e918578665b5044382b1f1206000000010a12191e2225262626262626262626262626262626262423201c171008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c17202935414b55606b73808d95a0abb4bfcbd7d6d1cecdcecfd2d7d9cfc7bbafa4999184796d60594f443a2f241a0e05000000000000000000000000000000000000000000000000000000000714212d3a46535f696e757575757575757575757575757575716c62544a3f3328160c0100000000000000000000000000000000000000010d1924303a4854606b707575757575757575757575757575726d62574a3e3125180b000000000000000000000000000000000000000f1c2835424f5b6875828e93939393939393939393939393939393939393939393939393939393939393938d8074675a4d4134271a0e0000000000000000000000000000000000000000000915222f3c4855626f7b888a8a8a8a8a8a8a8a8a8a8a8a8a897c6f6256493c2f2316090000000000000000000000040a0f13191d202123282b2d2d2c292423201f1b17110c070000000000000000000000000000000810171c20232423201c1710080000000000000000000000000002080e11171c1f202224252422211f1a15110d070100000000000000000000000000000000000000000000000002080d11171b1f202224252422201f1b17110d080200000000000000000000000000000000000000000000000001070d11151a1f212224252422201f1c17110e08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013060000000815212e3a47535f6a7784909daab7c3cdcec3bab2acaaaaacb2bac4cecabeb3a99b8e8175675c5145382c1f130700000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090e090605030002080d141a1d24292c2f35393a3d40404546484a4a4b4b4b4b4a494846443f3d3a39352f2c2a36414c5666727f8c99a5b2bfccd8d2c6b9ac9f9386796c605346392d2013060000000000070d12161819191919191919191919191919191919171614100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e18242f3a434f59606d79839099a3aebac2ced7e2dbdadbdbdedcd1c7bdb1a89f93877d6f675d51473d32281e1208000000000000000000000000000000000000000000000000000000000005121e2a36424d575f6168686868686868686868686868686865625a5042382d22170b00000000000000000000000000000000000000000008131e2c38444f596063686868686868686868686868686865625b51463a2e221609000000000000000000000000000000000000000f1c2835424f5b687581868686868686868686868686868686868686868686868686868686868686868686868074675a4d4134271a0e0000000000000000000000000000000000000000000714212d3a4754606d797d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7a6d6054473a2d2114070000000000000000000000000002080d111314171c1f2020201d181613120f0b06000000000000000000000000000000000000050b101416171614100b050000000000000000000000000000000000060b101213161718171514120f0a04010000000000000000000000000000000000000000000000000000000000060b0f1213161718171513120f0b06000000000000000000000000000000000000000000000000000000000001040a0f121415171817161312100b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013060000000915222f3c4855626f7b8895a0acb8c5d4c8bdb2a8a09d9ea0a8b2bdc9d0c5b8ab9f9285796d6053473a2f24180c00000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000060b14191f252a2f35393a4045474a4c4b5153555657585858585756545350494a4745413a3834303e4a5764717d8a97a4b0bdcad7d4c8bbafa49a867a6d6053473a2d20140700000000000002060a0c0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0a0a0804000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313d45515c666f7c86929fa6b0bcc5d0dbe7e6e7e8e3d7cbc0b5aba0958d80736b60554b40352c20160c000000000000000000000000000000000000000000000000000000000000020e1a26313b454d53555b5b5b5b5b5b5b5b5b5b5b5b5b5b5b585650483f2f261c110600000000000000000000000000000000000000000002101c27333d474f54565b5b5b5b5b5b5b5b5b5b5b5b5b5b595751493f35291e1206000000000000000000000000000000000000000714202d3a4753606d797a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a796d6053463a2d2013070000000000000000000000000000000000000000000613202c3945515d676d7070707070707070707070707070706d685d5245392c201307000000000000000000000000000000010507060b1012131413110d070605030000000000000000000000000000000000000000000004080a0a0a0804000000000000000000000000000000000000000000030607090b0b0a0808060200000000000000000000000000000000000000000000000000000000000000000000030506090a0b0a0906050300000000000000000000000000000000000000000000000000000000000000000000020608080a0b0b0907060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201306000006121f2b37434e586673808c99a7b1bcc8d1c5b8aca096919196a0acb9c5d2c6baaea2988a7d7064554b4035291d1004000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171e252a3136394045474b51535659555c6062636464656564646361605b535754514b46443f383c4956636f7c8996a2afbcc9d5d8ccc0b6a094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2834404b545f6a727f8c949faab4bfcad6e2eef4ede0d3c7bbafa3999184796d60594f433a2f231a0d040000000000000000000000000000000000000000000000000000000000000009141f29333b4246484e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4b4a453f362d1d140a00000000000000000000000000000000000000000000000b16212b353d44484a4e4e4e4e4e4e4e4e4e4e4e4e4e4e4c4a463f372d23180d010000000000000000000000000000000000000006131f2c3845515c676d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d665c5145382c1f130600000000000000000000000000000000000000000004111d2935414b555d60636363636363636363636363636363605d564c4135291d1104000000000000000000000000000000000000000003060707060401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130600000815212e3a47535f6a7784919daab7c3ced0c4b7aa9d918484919eaab7c4d1cabeb4aa9b8e8175675d5145392c1f1307000613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c141c232830363b42464b5153555d60636669676d6e70717172727170706e6c656764605d5553504a45404855626e7b8895a1aebbc8d4ddd2baaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18232e39424e58606c78829098a2aebac6d3dfecede0d4c8bcb1a79f92877c6f675c51473d31281d11080000000000000000000000000000000000000000000000000000000000000000030d18212931363a3b4242424242424242424242424242423e3d3a342d241b0b020000000000000000000000000000000000000000000000050f1a232b33383c3d42424242424242424242424242423f3e3a352d251b1107000000000000000000000000000000000000000004101c2934404b555c6060606060606060606060606060606060606060606060606060606060606060606060605c544b4034281c1004000000000000000000000000000000000000000000010d18242f3a434b515457575757575757575757575757575754524c443a2f24190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104060708090a0a0909070704010000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130600000915222f3c4855626f7c8896a0acb8c5d5cdc0b4a79a8d80818e9ba8b4c1d1d0c5b8ac9f9285796d6053473a2f24180d010613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f171e262e343b41464d53555d6064676d70737578797b7d7d7e7e7e7e7d7c7b797774706d6764605c54514b4754606d7a8793a0adbac6d3d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303c44505b666e7b86929facb8c5d2dfebeaded1c5b8aca0958c80736a60554b40352b1f160c00000000000000000000000000000000000000000000000000000000000000000000060f181f262a2d2e35353535353535353535353535353532312e29221b12090000000000000000000000000000000000000000000000000008111a21272c2f30353535353535353535353535353532312e29231b130a000000000000000000000000000000000000000000000c18232f39434b51535353535353535353535353535353535353535353535353535353535353535353535353514b42392e23180c000000000000000000000000000000000000000000000007131d28313a4145474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4745413a32281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707080808080808080808080807070401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507070d1013141516171716151413110d0806050300000000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013060006131f2b37434e586673808d99a8b2bdc8d4cabeb3a9988b7e7f8c99abb5c0cbd3c6baaea2988a7d7164554b4035291d10040613202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009111a212930383f444c52575e61676d71757a7d7f82858688898a8b8b8b8b8a89878583817d7a76716d66605d555053606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17232e38424d57626c76838f9ca9b6c2cfdce9eaddd0c3b7aa9d9084796d60584e43392f23190d040000000000000000000000000000000000000000000000000000000000000000000000060d141a1e21222828282828282828282828282828282524211d171109000000000000000000000000000000000000000000000000000000080f161c20222328282828282828282828282828282625221e18110a010000000000000000000000000000000000000000000007121d273139404547474747474747474747474747474747474747474747474747474747474747474747474645403930271d12070000000000000000000000000000000000000000000000010c161f282f35393a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a39352f2820160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d11131414141414141414141414141413110d0801000000000000000000000000000000000000000000000000000000000000060606060606060606060606000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004090e121415181d202022232323232221201d191613120f0b060000000000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201306000815222e3b47545f6a7784919eaab7c3ced2c6b9ada197887c7d8999a3afbbc7d3cabfb4aa9b8e8275675d5145392c2013080013202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000109121b232c333b424a50565e61696e73797e8285898c8f91939a96979798989797969892908d8a86827d79736d67605b54606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f28343f4a545f69717e8b949fabb7c4d0dde9ebded2c5b8ab9f92857b6e665b50443c30271d120700000000000000000000000000000000000000000000000000000000000000000000000003090e1214151b1b1b1b1b1b1b1b1b1b1b1b1b1b1b181715110c060000000000000000000000000000000000000000000000000000000000050b101416171b1b1b1b1b1b1b1b1b1b1b1b1b1b191816120d07000000000000000000000000000000000000000000000000010b151f272f34383a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a38342e271e150b00000000000000000000000000000000000000000000000000040d161d24292c2d3030303030303030303030303030302d2c29241e160d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13191d2021212121212121212121212121201d19130c040000000000000000000000000000000000000000000000000106090b0c131313131313131313131313090806030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c10141a1e212224292c2d2f2f30302f2f2d2c292422201f1b17110d08020000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201306000916222f3c4955626f7c8896a0acb9c5d5d1c5b8ab9e9285787a86929facb9c5d2d0c5b8ac9f92867a6d6053473a2f24190d0113202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b242c353e454d545c60686e747b80858a8f9298999c9e9fa4aca4a4a5a5a4a3aaa29f9d9a99928f8a847f79716c665e606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313944505c666e7b86929fa6b0bbc7d3dfececdfd3c6baaea2989082786c60584e43392e23180d0400000000000000000000000000000000000000000000000000000000000000000000000000020507080f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0b0b09050100000000000000000000000000000000000000000000000000000000000000000407090a0f0f0f0f0f0f0f0f0f0f0f0f0f0f0c0b0906010000000000000000000000000000000000000000000000000000030d151d23292c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c28231d150c030000000000000000000000000000000000000000000000000000040c13181d202124242424242424242424242424242421201d19130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e161e25292d2e2e2e2e2e2e2e2e2e2e2e2e2d2c29241e160d0400000000000000000000000000000000000000000000060d1215181820202020202020202020201f1515120f0a0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f262a2d2e2f35393a3b3c3d3d3c3c3a39352f2f2d2b27221b19130b0600000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130606131f2b37434e586673808d99a8b2bdc8d4ccc0b6ac9b8f82757783909daab6c3cfd3c7baaea2988a7e7164554c4135291d110413202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121b252d363e474f575e666d727a81878d92979b9fa2aaa8abacafb6b0b1b1b1b1b0b4aeacaaaba39f9c97918c847e786e68606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18232f39434e58606d78839098a2aeb8c2cdd8e4e8e6e2d6cabeb4aa9f948c7f726a5f554b4034281f160c0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f2020202020202020202020202020202020202020202020202020202020202020202020201f1c18120b030000000000000000000000000000000000000000000000000000000001070d1113141717171717171717171717171717171413110d08010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c1620283035393a3b3b3b3b3b3b3b3b3b3b3b3a39352f2820160c0100000000000000000000000000000000000000010911181d2224252d2d2d2d2d2d2d2d2d2d2d2c22211f1b150e060000000000000000000000000000000000000000000000000000000000000000000000000000000002080c151d23282c31363a3b3f40454748494a4a49484745413f3c3937332d29241e17110a020000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013060815222e3b4754606a7884919eabb7c3ced4c8bbafa49a8b7e7173808d99a9b3becad6cabfb4aa9b8f8275675d5145392c20130813202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101a242d373f48505961696e787f858e92999fa2a9acaeb4b5b8b9bbc0bdbebebebebdbfbab8b6b5aeaca9a19e97918b827a706b6d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c16202934404b555f6a727f8c949faab4bfcad4dedcdbd9dadbd0c5bcb0a69f92867c6f675c51453d31281e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707090b0c0d0d0e0e0e0d0c0c0b090707040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c101314141414141414141414141414141414141414141414141414141414141414141414141313100c070000000000000000000000000000000000000000000000000000000000000000010406070a0a0a0a0a0a0a0a0a0a0a0a0a0a0a07070401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e28323a41464747474747474747474747474745413a32281e13080000000000000000000000000000000000000009131b23292e31323939393939393939393939392f2e2b26201810060000000000000000000000000000000000000000000000000000000000000000000000000000040c13191e272e34383b4246484c4b515355565656565554524c4c4946443f38353027221b140b0600000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013030f1b27333f4953626f7c8996a1acb9c5d5d2c6b9ac9f93877b6e6f7c8997a2adbac6d3d0c5b8ac9f92867a6d6054473a2f24190d13202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e19232c363f49515a616b707b828c92989fa3abadb3b8babfc2c4c6c8c9c5c4c3c2c0c0c0c1c3c3bfbbb9b2ada9a19e948f857d706d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323a45515c676f7c87929fa6b0bcc5d0d7d3d0cfcccdd1d7cec2baaea3999083796d60594f433a2f24190e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607080d1113141618191a1a1b1b1a1a191818161413110d0807060401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070707070707070707070707070707070707070707070707070707070707070707070707060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303a444c5254545454545454545454545454524c443a2f24190d01000000000000000000000000000000000006111b252d343a3d3f4646464646464646464646463c3a37312a22180d03000000000000000000000000000000000000000000000000000000000000000000000000080e161e242930394045464d535558555d60626263636262605d56595553504946413a332d261d180f0a010000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201305121f2b3744505b6573808d9aa8b2bdc9d5d0c3b6aa9d908377696d7985929fabb8c5d2d3c7baaea3988a7e7164564c4135291d1113202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202b353e48515b626c717d8590949fa2aaafb5babec5c6cacac6c5c1bdb9b7b6b5b4b3b3b5b6b8b9bdc2beb9b2ada69f9792867d70798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e19242f3a444f59606d79839199a3aeb9c2ced3ccc7c3c2c0c1c5cad7cbbfb4aba0958d80736b60554c41352920170d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003070c10121316191d20212324262627272827262625242321201d19171413110d08050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708080705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e38424c565e616161616161616161616161605d564c4135291d110400000000000000000000000000000000010d18232d373f464a4b5353535353535353535353524847433c342a1f150b010000000000000000000000000000000000000000000000000000000000000000000008111a202830353e434b5153575f616568676d6e6f70706f6f6d68696662605b53524c443f382f2a211c130b0200000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130613202d394653606c7884919eabb7c4ced5c9bdb2a8998c7f73666675818e9babb5c0ccd6cbbfb4aa9c8f8275685d5245392c201308202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d47505a626d727e8792979fa6aeb4bbc0c7cacfc9c5bebab8b5b2acaaa9a8a7a6a7a8a9abadb2b6b9bbbeb9b0a9a19892877d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17202935414c56606b74808d95a0abb5bfcbd3cac1bbb7b5b3b4b9c0c8d1c6bdb1a79f93877d6f675d51453e32291e1408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12181c1f202324292d2e2f3132333434343433323231302d2c29242421201d1914120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a090806030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e1214151414110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a545e686d6e6e6e6e6e6e6e6e6e6e6e6d685d5245392c2013070000000000000000000000000000000006121d29343f4951565860606060606060606060605f55534e463c31271d120700000000000000000000000000000000000000000000000000000000000000000008121a232c323a41454f555c6064696e7275777a7b7c7d7d7c7b7a7876726f6c65615d565049413c332e251d140b01000000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20130f1b27333f4953626f7c8996a1adb9c5d6d2c5b9ada196887c6f6264717e8b99a4afbbc7d4d0c5b9ac9f92867a6d6054473a3024190d202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d1925303a444f59616c727f889299a2a9b0babec5cbd0cac5beb9b3adaba8a8a09e9c9b9a999a9b9c9ea1a9a9acafb5bbbbb3aaa39992857b8894a1aebbc7d4d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29323b45525d68707d88939fa7b1bdc6d1cdc1b8b0aaa8a6a8aeb6c0cbcfc3bbafa49991847a6d605a50443b3025190f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d11171c1f23282c2d2f3035393a3c3e3f4040414141403f3f3e3c3a393530312d2c2924211e1a14100b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415161616161616161616161616161616161616161616161616161616161616161616161615130f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141a1e212121201e19140d07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c666d7a7a7a7a7a7a7a7a7a7a7a7b7a6d6054473a2d211407000000000000000000000000000000000915222e3a46515b62656c6c6c6c6c6c6c6c6c6c6c6c625f584e43392f23180e050000000000000000000000000000000000000000000000000000000000000008111a242c353e444c525961676d71777b7f8284868889898989888785827f7c78726d68605b534e453f372e261d140a010000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013121f2b3744505b6574808d9aa8b2bdc9d5d1c4b8ab9e9184786a5f616d7a86939facb9c6d2d3c7baaea3998b7e7164564c4135291d11202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a36414c56606b717e88939aa3abb3bbc2cad0cec5bfbab3ada9a29f9b979691908f8d8d8d8e909196989c9fa4abafb5bcb4aba1979083909ca9b6c3cfdcd4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b44505a606d7a84919aa4afb9c3cfcfc5bbb0a69e9c999ca4aeb9c3cfccc0b5aba1968e81746c61564c41362a21180c02000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d13181c22282b2e34383a3c3f414647494b4c4d4d4e4e4d4d4c4b4b49474541413e3a39352f2d2a261f1c160f0b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e141a1e21222323232323232323232323232323232323232323232323232323232323232323232322221f1b150e0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f252a2d2e2e2d2a251e18130c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d788587878787878787878787877e7164574b3e3124180b000000000000000000000000000000000b1824313d4a56626d727979797979797979797979796f6a5f554b40342920170b02000000000000000000000000000000000000000000000000000000000007111a232c363e474f565d606b70797e83888b8f91939a959696959596918f8c88847f7a726c655f57514940382e261c130a0000000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201313202d394653606c7884919eabb8c4cfd5c9beb3a99a8d817467585e687683909da9b6c2cdd7cbbfb4ab9c8f8275685d5246392d2013202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313946525e686f7d86929aa4acb5bdc5cdd6ccc4bcb4aea9a19e97928e8b87848382818080828385888c8f93999fa4abb0bbb3a99f9490949fabb7c4d0ddd4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17222d38414d56616c75818e96a1acb6c0cbd6cabeb3a99e948f8d929ca7b1bdc6d1c7bdb2a89d938a7e70685e52463f332a1e140a00000000000000000000000000000000000000000000000000000000000000000000000000000000040c13181d24292d333839404446494c4c5254565759595a5a5b5a595958575654524c4d4a4745413b3a36312c271f1c17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f181f262a2d2e303030303030303030303030303030303030303030303030303030303030303030302f2e2b26201910070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141c222831363a3b3b39363029241d18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5663707d8a9794949494949494949285796d6053473a2d201407000000000000000000000000000000000c1825323f4b5865727f8686868686868686868686867c6f675c51453e32291d140a00000000000000000000000000000000000000000000000000000000060f19232c353e48505961686d747d848b9095989b9e9fa4aca3a3a2a9a19e9c9996918c867f776e6a635b524a40382e251c120800000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d200f1c28333f4a54636f7c8996a1adb9c5d6d2c6b9ada197897d7063565665727f8c98a7b1bcc8d4d1c5b9ac9f92867a6d6154473a302519202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3943505a616d7a859198a3acb6bec7cfd4cbc3bab2aaa29f97928b85827e7b7776757473747576787b7f83878e93999ea6aeb5b0a69f9c9fa6b0bbc7d3dfd4c7bbaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e27333f49535e69717e8a939ea8b2bec7d2ccc4b9ada2978f82808d95a0abb4bfcbd0c4baafa59e92857a6e615a50453b30261c11060000000000000000000000000000000000000000000000000000000000000000000000000002080d161d24292f35383f44464a51535659565d6162646566676767676665656463605d565a5754514c4846423b38332b28221c140b0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e18212a31363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b37322a22190e04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f181d262d333b4246484746413b352f28231c150c0b04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d6875828e9ba9a1a1a1a1a1a89a8e8174675d5145392c1f1306000000000000000000000000000000000b1824313d4a56626d75828f9793939393939393989083796d60594f443b2f261b11060000000000000000000000000000000000000000000000000000030e18212b353e47505a616b707a818a91969d9fa7a8aaacafb6b0b0afb2adaba9a8a09e98928b837b726d645c524a40372e241a0e04000000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20121f2b3844505b6674808d9aa9b2bdc9d5d1c5b8ab9e9285796d605354616e7b87959fabb8c7d2d3c7bbaea3998b7e7165564c41362a1d202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609060606060606060606060606060606060606060606060606060606060606060606060601000000000000000000000000000000000000000004101d2935404b55616c75818f97a1aab4bec7d0d4cac2b9b1a8a198928c857f7975716e69696867666768696a6e72767b81878f949fa3abb2b0aba9abb0b8c2cdd8e4d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303844505b656e7b85929ea5afbac4d0cfc4baafa59e92857a79839099a3aebac2ceccc0b9ada1978f82756c62574d42382e23170d030000000000000000000000000000000000000000000000000000000000000000000000050d14191f282f353a40454a5053545c60626669686d6f71727373747474737272716f6d68696764605d5555534d48443d38332d261d18120b03000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2a333b424648494949494949494949494949494949494949494949494949494949494949494949494947433c342a20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121821292f383f444d535454524c45403a342e271e1b160f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facadadadadaca096897c6f63554b4035291d1004000000000000000000000000000000000915222e3a46515b616d7a85919aa49f9f9f9f9fa0958d80746b61564d41382d22170d040000000000000000000000000000000000000000000000000009151f2a333d474f59616c717d848e939ea1a8abb1b5b7b9bbc0bcbcbcbdb9b8b5b2acaaa29f9490867f746e645c524940362c20160c020000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2013202d394653606c7885919eabb8c4cfd5c9beb3a99a8d8174665c50535e697683909dacb6c0ccd7cbbfb5ab9c8f8276685e5246392d20202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23161313131313131313131313131313131313131313131313131313131313131313131313130e0d0b07030000000000000000000000000000000006131f2c3945515d67717e8a939ea9b3bcc6d0d6cdc2b8b0a79f9691867f79726d6764615e565c5a5a5a5b585f6265696e757b828c9299a1a9b2b7b6b7bbc2cad4dee1d4c7bbaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17232e38424d57606c77828f97a2adb7c1ccd5c9bdb2a89e938a7e716f7c86929fa6b0bcc5d0c9beb3a99e948b7e71695f544a3f34281f150b01000000000000000000000000000000000000000000000000000000000000000000070e171f252a313a41454b51545b6063666d6f7275787a7c7e7f8080818180807f7e7e7c7a787674716d6765615f57544f46443f382f29241d150d06000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313b454d53555656565656565656565656565656565656565656565656565656565656565656565655544e463c32261b0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c151d2328333b424a50575e61615e56514b444039302c27211b150e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e5865727e8b98a3aebabac0b6ac9e9184786c605346392f24180c000000000000000000000000000000000006121d29343f46525e68707d88939fa7b1acacb1a79d928a7d70685e53493f33271f160c010000000000000000000000000000000000000000000000040d1a26313c454f59616b717e8791979da5adb2b8bcc2c4c6c5c3c2c2c3c5c5c4c2bdb9b4aea69f98928c80746e635b51483e32281e13080000000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201c28343f4a5463707c8997a1adb9c6d6d2c6b9ada197897d7063544a4d5765727f8c9aa4afbbc8d4d1c5b9ac9f92867a6d6154473b3025192c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1a1917130e08010000000000000000000000000005111d2935414c56606d7984919ea5afbbc4cfd8d0c4bbb0a69f9590847c736d67605c5554524d4f4e4d4d4f4e5355575f62696e777f879197a1a9b3bcc6c7cdd4dce6e1d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f28343f4a545f69727f8b949fa9b3bec9d3ccc3b9ada1968e81756c6a727f8c949faab4bfcacfc5bbb0a69f92867b6e665c50443c31271d120700000000000000000000000000000000000000000000000000000000000000010a1119202930363e434b51555d60666c7074797c7f828587898a8c8c8d8d8e8d8c8c8b8a89878582807d7a76726e6963605953504a423c352f271f181008000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d575f6163636363636363636363636363636363636363636363636363636363636363636363625f584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e171e272e343e454d545b60696e6e68605d55514a423e38322b26201a140d08010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3a47535f6a7683909daab4bfc8bbafa49a8c7f73655b5044372b1d12070000000000000000000000000000000000010d18232a36414c56606b73808d95a0aab4bfb9aea49e92857a6e655b50443c31281d120700000000000000000000000000000000000000000000010c16202b37424d57606b707d879299a1a9afb9bdc4c7c6bfbab8b7b5b5b6b8babec5c8c5bfbab0aaa39f928d80736d635a50443a3025190b0200000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d201f2b3844505c6674818d9aa9b3bec9d5d1c5b8ab9e9285796d6053464854616e7b87939facb9c6d2d4c7bbafa3998b7e7265564c41362a1e2c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2726231f19120b020000000000000000000000000713202d3946525e68737f8c97a1adb7c1cdd6d2c7bdb2a99f948f837a6e6a605d55514b47464242414041424347484d53575f656c727c859197a2aab4bfcad6e0e6eee1d4c7bbaea194887b6e6155483b2e22150800000000000000000103040404040404040404040404040404040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313944505c666e7b86929fa6b0bbc5cfcfc3baaea49e91847a6d60606c78829098a2aebac1cdcdc1baaea2989083786d60584e43392f23180d040000000000000000000000000000000000000000000000000000000000010a131b232b323b414650555d60676d72787c8185898c8f9297959798999a9a9a9a999898979697918f8d8a86827f7b76706b64605b544e454039312a221a1109010000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f696e707070707070707070707070707070707070707070707070707070707070707070706f6a5f54473b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101920293039404550575f666c727b7a736d67605c545048443d37312a251f19130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54626e7b88959fabbcc6c6b9ac9f93877b6e6153493f33271b0b01000000000000000000000000000000000000060d1925303a444f59606d79839098a2aebac0b9ada1978f82776c60584e43392f24180f0500000000000000000000000000000000000000000008131e28323a47535f69707d869299a3abb2bbc1c9c2bcb7b4aeacaaa8a8aaabadb3b9bbc0c7c2bcb4aea49c928c7f736c61564c4135291d140a00000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d20202d3a4653606d7985929eabb8c4cfd5c9beb3a99a8d8174665c504446535e697683909dacb6c0ccd7cbc0b5ab9c8f8276685e5246392d202c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3939393939393939393939393939393939393939393939393939393939393939393939393939393433302b241d140b0100000000000000000000030f1c28333f4a54616d7a85929fa9b2bec9d3d7ccc0b5aba1968f82796e685f58514b45403b3a363034333431373a3c42474d535b606a6f7c859298a2aebac2ced8e2ede1d4c7bbaea194887b6e6155483b2e221508000000000000060a0e10111111111111111111111111111111110d0d0a070200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e18242f39434e58606d78839098a2aeb8c2cdd1c7bdb2a89d92897d70685d5b666e7b86929fa6b0bbc5cfcabfb4aa9f948c7f726a5f554b4034291f160c01000000000000000000000000000000000000000000000000000000020b141c252d353d444d525a61676d737a7f84898e9297999c9ea1a9a4a5a6a6a7a7a7a6a5a5a4a9a19e9c9a99928f8b88827d77716c665f58514b433c342c231b130a0200000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c6f6255493c2f22160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1117222b323b424b515a61696e787f86858079726d66615a544f47433c363029241e160d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c6673808d99a7b1bccabfb4aa9c8f8276695e5341382d22170b000000000000000000000000000000000000000008131e28323d45515c666e7b86929fa5afbabeb3a99f948c7f726a60554b40352921170c0200000000000000000000000000000000000000010d19242f3a44505a616e7b869298a3abb5bdc4c6bfbab0abaaa29f9d9c9b9d9fa2a9acafb6bec4c6bfbaaea49c918a7e71685e52463d2f261b1106000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d1c2834404a5463707d8997a1adb9c6d6d2c6b9ada197897c7063544a3f424d5765727f8c9aa4afbbc8d4d1c6b9ac9f93877a6e6154473b30252c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f62564946464646464646464646464646464646464646464646464646464646464646464646464646464646413f3c362e261d12080000000000000000000006121f2b3844505b66727f8c98a2aebbc4cfdbd4c7bbafa49991847a6d675e564e45403a342e2d2a25272727262b2e31373c41495058606a6f7d86929fa6b0bcc6d0dce7e1d4c7bbaea194887b6e6155483b2e22150800000000040b11161a1d1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1a1917130e080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202935404b55606a73808c959faab4bfcad7cbc0b5aba0968d80746b6056545f69717e8b949ea9b3becad0c5bcb0a69f92877c6f675c51453d31281e13080000000000000000000000000000000000000000000000000000010b141d262e373f474f565e616c717a80858c91969a9ea2a9a8abadb3b1b2b3b3b4b4b3b3b2b1b1b2adaba9aba39f9c98948f89837e786f6a605d554e463e352d251c140a01000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808989898989898989898989898989898989898989898989898989898989898989898983776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b141b2227343d444c545c606c717b838c92928c857f79716c636059534e46423b352f2820160e0400000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7984919eabb8c2c6baaea2988b7e7164574d422f261b11060000000000000000000000000000000000000000020c16202834404b545f69717e8b939ea8b2bdbbb0a69f92867c6f675d51453e33291e140a0000000000000000000000000000000000000004111d2935414c56616c76828f98a2aab4bdc6c5bcb4aea69f9c9892908f8f9092979b9fa4acb2bac3cbbfb6ada39e92857a6d61594f41382d22170b000000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d1f2c3844515c6674818e9aa9b3bec9d5d1c4b8ab9e9185786c605346393b4854616e7b87939facb9c6d2d4c7bbafa4998b7e7265564d42362a2c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625652525252525252525252525252525252525252525252525252525252525252525252525252525252524d4c4740382e24190e030000000000000000000613202d394653606c7884919eaab3becdd6d5c9bdb2a89f93877d70685e554c443c352f2823201e191b1a1a1a1f21262b2f383f444e58606b717e8a949eaab4bfcbd6e3e1d4c7bbaea194887b6e6155483b2e221508000000050e151c2227292a2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2726231f19120a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323a45515d676f7c87929fa7b1bcc6d0cfc6bbafa3999184796d60594f4d57626c75828f97a1adb9c1cccec2bbaea3999183796d60594f433a2f24190e05000000000000000000000000000000000000000000000000000a131d262e384049515960686e767e848c92979ea1a8abadb3b5b8b9bebdbfbfc0c0c1c0bfbfbebdbeb9b8b5b5aeaca9a69e9c95908a837c736d675f584f473f372e261c130a000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d96969696969696969696969696969696969696969696969696969696969696969083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c151d262d333e464e565e666d747e8690959f9f97928b847e76706b625f58524d45413a322820160c0200000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5663707d8996a1adb9c5c5b8ac9f92857a6d6053473b3120140a00000000000000000000000000000000000000000000050e18232e39424d57626c75818e96a1abb5c0baaea3999184796d605a50453b30261c11060000000000000000000000000000000000000713202c3945525d68717e8a949faab4bcc6c5bcb3aaa29f94908a858482828385898e939aa0a8b1b9c3c8bfb9ada1978e81746b6053493f33271b0f030000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d202d3a4653606d7985929eabb8c5cfd5c9beb2a99a8d8074665b5044383a46525e697683909cacb6c0ccd7ccc0b5ab9c908376695e52463a2d2c3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5a58524a40362b1f1307000000000000000003101c28343f4a5463707d8a96a0acbcc5d0ded2c5b9aca1968d80736b60564c433b3229241d1814110e090d0a0f12151a1d262d333d464f59616c76828f98a3aebac7d3e0e1d4c7bbaea194887b6e6155483b2e2215080000040e1720272e33363737373737373737373737373737373734322f2a241c140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f1925303a444f59606d79849199a3afb9c3ced1c6bcb1a79f92877c6f675d514745505a616e7a85929ea5afbac4d0cbbfb5aba0958d80736b60564c41352920170d02000000000000000000000000000000000000000000000008121c252e38404a525b626b707a828a91969fa2a9adb2b8b9bec2c5c6cacfcbcccdcccbcbcccbcbcfc9c6c4c2bfbbb9b6b0aaa79f9d95908780796f6a6159514940382e251c12090000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161e272f383f44505860686e78818a92989fa7a9a19e96918a837d756f6a615e57524c443a32281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d6875818e9ba9b2bdc9bdb2a89b8e8174675d5145392c201302000000000000000000000000000000000000000000000007121d27303c45505a606d7a849199a3afbbbfb4aba0968e81746c61574d42382e23170d040000000000000000000000000000000004111d2935414b55606d7a85929ea6b0bcc5c6bcb3a9a298928b837e7a77757577797d81889196a0a7b1bac4c9beb3a99d93897d70655b5044372b1f13080000000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2834404b5463707d8997a2adb9c6d6d2c6b9ada197897c6f63544a3f3336424d5765727f8b9aa4afbbc8d4d2c6b9ac9f93877b6e6154473b30253946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645c52473c3023170b000000000000000006121f2b3844505c6675818e9ba8b2bdced7d6cabfb4aa9e9184786d60594f443a31292018130c0705020000000206090b141b2227343d46505a616e7b86929facb8c3ced9e5d4c7bbaea194887b6e6155483b2e22150800000b15202931393f4244444444444444444444444444444444403f3b362e261c1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17212935414c56616b74808d96a0abb5c0cbd7cbbfb4aaa0958d80736a60554b403f46525e68717e8a939ea8b2bec7d1c6bdb1a79f93887d70685d52453e32291f14080000000000000000000000000000000000000000000007101a242e37404a525c636d727d858f949ea1a8adb3b9bdc4c6cacfd1cbc7c5c3c1c0bfbfbebfc0c1c2c5c6cacfcbc7c5c2bbb7b1aba79f99928d847c706b625b524a40372e241b120800000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7afafafafafafafafafafafafafafafafafafafafafafafafafafafafaa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e161f2830394149505a616a6f7a838e939fa2aab1b3ada8a09e959089827c746e69605d564c443a3024190d0100000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb8c4c5b9aca096897c7063554b4035291d10040000000000000000000000000000000000000000000000000b151e2a333f45525d686f7d87929fa7b1bcbdb2a89d938a7e71695e544a3f34281f160c010000000000000000000000000000000613202c3945515d6774808d97a1adb8c2cbbfb4aaa29792867f76716d676968666d70757d849095a0a8b2bdc9c5bbafa59d9083786c6053463a3025190d0100000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2c3845515c6674818e9ba9b3becad6d1c4b8ab9e9184786c605346392d303b4754616e7b87939facb9c6d2d4c7bbafa4998b7f7265574d42362a3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c7979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746e64584c3f3326190d00000000000000000713202d3a4653606d7985929eabb8c4ceded3c6baaea2988c7f72665c50473d32281f170e0701000000000000000000020a1117222b343e46535f6973808d9aa8b1bdc8d4e1d4c7bbaea194887b6e6155483b2e2215080006111c27313b434a4f515151515151515151515151515151514d4b4740382e24190e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29333b46525e68707d89929da8b2bdc7d1cec5baaea3989083786d60584e433936414c56616c75818e96a1acb6c0cccfc3bbafa49a91847a6d605a50443b3025190f060000000000000000000000000000000000000000030d19222c364049525c646e737f8791979fa6adb2babec5c9cfcdc8c4c3c0bbb9b6b5b4b3b2b1b2b3b4b5b8babec1c5c6caccc7c3bcb8b1aba39f9691867d726d645c52493f362d241a0f06000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3bcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcb6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1720283139424a535b606c717c8490959da5aeb4bcbeb9b2aca79f9d948f87817b736d685d564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000006121e2b37424e5765727e8b98a3aebac7c0b6ac9e9184786c605346392f24180d01000000000000000000000000000000000000000000000000030c18212935414c56606b73808c959faab3bebaafa59f92857b6e665c50443d31281e13080000000000000000000000000000000714212d3a4754606d7a86929fa9b3becac7baaea39892857c726d64605d55545c60636b707a839096a0acb9c1cdc0b8aca095897d7063564c41362a1d110500000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d2d3a4653606d7985929fabb8c5cfd5c9bdb2a99a8d8074665b5044382b2d3a46525e697683909cabb5c0ccd7ccc0b5ab9c908376695e52463a2d3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3dfd2c5b9ac9f928685858585858585858585858585858585858585858585858585858585858585858585858585858585858585868074675a4d4134271a0e0100000000000000091623303c4956636f7c8997a2adb9c6d2dfd2c5b8ac9f92857a6d60544a3f352b20160d0500000000000000000000000000061019222a36424d57626f7c8895a0acb8c5d1ded4c7bbaea194887b6e6155483b2e221508000a16222e39434d555b5d5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5a58524a40362a1f13070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b45505a616d7a85919ea4aebac3cfd0c5bcb0a69f92867c6f665c51463d31303b44505a606d7a84919aa4afbbc3cfccc0b6aca1968e81756c61564d41362a21180c03000000000000000000000000000000000000010b151f2b343e48525b646e74808c9299a1a9b0b9bdc4cacfcbc7c2bcb8b6b5afaca9a8a7a6a5a5a5a6a7a9abadb3b4b8babfc5c7ccc8c2bdb5afa8a09892877f736e645b51483f362c21180c030000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002020304040504030201000000060f182129323a434b545c656c737e8691969fa7afbabec5c9c3bdb9b1aba69e99938e86807a6d685d5246392d201307000000000000000000000000000000000000000000000000000000000000000000000000000814212e3a47535f6a7683909daab4bfc8bbafa49a8c7f73655b5044372b1d12070000000000000000000000000000000000000000000000000000060f19242f3a444f59606d78839098a2aebac0baada2979082786d60584e433a2f24190f060000000000000000000000000006121f2b37434e5865717e8b98a2aebbc5c8bcb1a79f92867d6f6a625b53514b4a50535960686e7a84919ea5afbdc7c8bcb1a79b8e8175685e5246392d20130700000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392834404b5563707d8a97a2adbac6d3d2c5b9ada196897c6f63544a3f33282a36424d5765727f8b99a4afbbc7d4d2c6b9ac9f93877b6e6154483b313946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3e0d3c7baaea39992929292929292929292929292929292929292929292929292929292929292929292929292929292929292928d8074675a4d4134271a0e01000000000000030f1c28333f4a546673808d99a9b3becad6d5c9bdb2a89a8d8074685d5242382e23190e0400000000000000000000000000000007101a26313b47535f6a7784919daab7c4d0ddd4c7bbaea194887b6e6155483b2e221508000e1a27333f4a555f676a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a67635c52473b2f23170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17222d38414d57616c75818e97a1adb6c0ccd6cabfb4aa9f948c7f726a5f544a40342b29323e45525d68707d88939fa8b2bdc7d1c7beb2a89e938a7e71685e52463f332a1e150a00000000000000000000000000000000000007121d27313d46505a636d74808d929fa3abb3bbc2c9cfcfc7c0bbb9b1aba9aba39f9d9b9a99989899999a9c9fa2a9a8acaeb4b7bbc2c7cfc7c0bbb2aaa299938b80736d635a50483e332a1e150b0000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3bfbfbfbfbfbfbfbfbfbfbfbfbfbfbfbfbfbfc5c6cad0d7d6d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090b0d0e0f1010111211100f0e0d0c090f18212a333b444c555d666d77808b9298a1a8b1b9c0cad0d5cec8c2bcb8b0aba49f98928d847a6d6154473a2e211407000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54626e7b88959fabbcc6c6b9ac9f93877b6e6153493f33271b0c0100000000000000000000000000000000000000000000000000000008131e28323d44505c666e7b85929fa5afbabeb3a99f948c7f736a60554c41352921180c030000000000000000000000000815212e3a47535f6a7683909daab4bfcdc5b8aca0958c7f726b6058514745403f44464f565e686f7d89939eabb5c0ccc3b9ac9f92867a6d6154473a2f23180c00000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392c3845515c6774818e9ba9b3becad6d1c4b8ab9e9184786c605346392d2225303b4754616e7b87939facb9c6d2d4c8bbafa49a8c7f7265574d42363946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3e3d7cbbfb4aba39f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9a8d8074675a4d4134271a0e0100000000000006121f2b3844505b667683909ca9b6c3cfdbd2c5b9ada196887b6e62564c4130261c1107000000000000000000000000000000000009141f2b37434e586673808c99a6b3bfccd9d4c7bbaea194887b6e6155483b2e22150800101d2936424f5b677177777777777777777777777777777777736e63584b3f3226190d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e27333f49535e69717e8b939ea9b2bec8d2cdc5baaea2989082786c60584e42392e22202935414c56606b74808d96a0abb5c0cbd0c4baafa59e92857a6e615b51453c30261c110600000000000000000000000000000000000c18242f39434e58616c73808c929ca4afb5bdc4cdcfc9c0bdb5afaca79f9d999992908e8d8c8c8b8c8d8e8f9297979b9fa2aaaab0b7bbc1c8cbc3bcb4aba49f928c7f726d625a50453c30271d120700000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b8babec5ced7d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000000000000000000000010507070c10131416181a1b1c1d1d1e1e1d1d1c1b1a181618212a333c454d565d676d78818d929fa3aab2bac2cbd6dbd6cdc4beb9afa9a19e949087807a6d685d5246392d20130700000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b6673808d99a7b1bccabfb4aa9c8f8376695f5341382d22170b00000000000000000000000000000000000000000000000000000000010c162028343f4a545f69717e8a939ea8b2bdbbb0a69f92877c6f675d51453e332a1e150a0000000000000000000000000915222f3c4855626f7c88959fabbcc6c9bdb2a99d9183786d60594f463f393534383d444c56606b74818e99a4afbbc7c7baaea3998c7f7265554b4034291c1004000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346392d3a4653606d7985929fabb8c5d0d5c9bdb2a89a8d8074655b5044372b1c202d3946525e687683909cabb5c0ccd7ccc0b6ac9d908376695e53463a3946535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3e7dcd1c6bdb4aeacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaca79a8d8074675a4d4134271a0e010000000000000613202d394653606c7985929facb8c5d2ded1c4b8ab9e9184786a5f53443a2f1e150a000000000000000000000000000000000000030f1b26323e4a5764717d8a97a4b0bdcad7d4c7bbaea194887b6e6155483b2e22150800111e2a3744515d6a77848484848484848484848484848484848073675a4d4034271a0d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303944505b656e7b85929fa5afbbc4cfcfc5bbb0a69f92867b6e665b50463c30271c19242f3a444f59606d79849199a3afbbc3ceccc1b9ada2978f82766d62574d42382e23170d0300000000000000000000000000000004101d2935404b55606a717e8a929ca4aebbc0c7cfccc4bdb9afaba39f9b95908c8986838281807f7e7f80818285888a8e92989c9fa6aab0b8bdc3ccc5bdb5afa49c918b7f716c61574d42392e23180c03000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6abaeb3bcc5d0d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000000205080d111314181d1f202224262829292a2b2b2a2928272625232129333c454d575e686d79828e939da4aeb4bcc4ccd4d7cfcac1bbb2ada59d97918a827c746d685d564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eabb8c2c6baaea2988b7e7164574d422f261b11060000000000000000000000000000000000000000000000000000000000040d17232e38424d57616c74818e96a0abb5c0bbafa39991847a6d605a50453b30261c11060000000000000000000003101c28343f4a546673808d99a7b1bccec5b9ada1968a7d70665c50473d342c29282b323b444f59616e7b87939facb9c6cbbfb4ab9d908376675c5145382c1f1306000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c6053463935404b5564707d8a98a2aebac6d3d2c5b9ada196897c6f6353493f33271b1e2a36414d5665727f8b99a4afbbc7d4d2c7b8ab9f95877b6e6154483c3146535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3ede2d8cfc6bfbab9b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b3a79a8d8074675a4d4134271a0e010000000000000815222f3b4855626e7b8898a2aebac6d3dbcec1b5a89b8e827568574e4232281e0c03000000000000000000000000000000000000000a1623303c4956636f7c8996a2afbcc9d5d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c798691919191919191919191919191918e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18232e39424e58606c77828f97a2adb7c1cdd5c9beb3a99e948b7e71695f544a3f342a1e15131e28323d45515d676f7c87929fa7b1bcc6d0cabeb3a99e948b7f72695f544a3f34281f150b0100000000000000000000000000020c1a242c3845515d676f7c86929fa4adb6bfcbd1c9c1bab2ada59d99928e8983807d7a76757473727272737476787b7e81858a8f949c9ea6acb2bbc0c7c7c0bbada39f93877e70695f544b4034281f1409000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9999999999999999999999999999999999999999999fa2aab3becad0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000003090e1214191e202124292c2d2f31333535363737383736353433322f2d333b454d575f696e7a838f949ea5aebabfc6ced6d4cdc5beb9afa9a19e938e847e766f6a605d564c443a3024190d01000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5663707d8996a1adb9c5c5b8ac9f92857a6d6053473b3120140a0000000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d79849199a3afbbc0b5aba0968e81756c61574d42382e23170e0400000000000000000006121f2c3844505c667683909ca9b6c2cdc4b8ab9e9184786c60544a3f352b221d1c2029323d46525e6976828f9cacb6c0ccc5b9ac9f9286796d6053473a2d201407000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346393845515d6775818e9baab3becad6d1c4b7ab9e9184786c605346392d22171925303b4754616e7a87939facb9c6d1d4c8bcb1a7998c7f7266574d423746535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3f4eae1d8d1cbc7c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c0b3a79a8d8074675a4d4134271a0e010000000000000b1824313e4b5764717e8a97aab4bfcad6d6cabfb4aa988b7f7265584c3f3125160c00000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929d9d9d9d9d9d9d9d9d9d9d9d9b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2834404b545f6a727f8c949fa9b3bec9d3ccc4b9ada1978f82756c62574d42382d22180c0c16202935404b55606a73808c959faab4bfcbcfc5bbb0a69f92867b6e665c50443c31271d1207000000000000000000000000000a141e2c38434f59606d79849198a3aeb6bfc8d7c9c0b7afa8a19e928e86817c7673706d67686766656566666769696e7175797d82898f949da0a8afb6bec5ccbfbbafa49992867b6e665c51453b31261a0e020000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c9298a2aebac6d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000060b10141a1e21252a2d2e2f35393a3c3e4041424343444544434241403f3c3a3b454d575f696e7b8390959fa6afb7c0cbd0d8d6cbc2bbb3ada59e97918a8179716c625f58524c443a32281e13080000000000000000000000000000000000000000000000000000000000000000000000000613202c3945525d6875818e9ba8b2bdc9bdb2a89b8e8174675d5145392c20130200000000000000000000000000000000000000000000000000000000000000000a151e29333e45515d676f7c87929fa6b0bbbdb2a89e938b7e71695f544a3f342820160c0200000000000000000713202d3a4653606d7985929facb8c5cbbfb4ab998d8073665b5042382e2319101017202a36424d5764717e8a9aa4afbbc8c7bbaea399897c6f6256493c2f231609000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346393a4753606d7985929facb8c5d0d5c9bdb2a89a8d8073655b5044372b1b1114202d3946525e6876838f9cabb5c0cbd7cdc2b6aa9d908377695f53463a46535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3f0f3eae2dcd7d3d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2cdc0b3a79a8d8074675a4d4134271a0e010000000000000c1926333f4c5966727f8c99a5b2bfd0dbd3c6baaea298887c6f6255493c2f22160900000000000000000000000000000000000000000714202d3a4753606d7a8693a0adb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929faaaaaaaaaaaaaaaaaaaaa89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313a45515c666f7c86929fa6b0bcc5d0d0c4baafa59e92857a6e615a50453b2f261c1006040d18242f39434e58606d78839098a3aebac2cecdc2baaea2989083786d60584e43392f24180e04000000000000000000000006111c2630384854606b74808d96a0aab4bfc8d1c9c0b7afa59e969189817b756f6a6663605d555a595958595a5b575f6164676d71767c828991969fa4acb3bcc4ccc0b5aba2989083796d60574d42362a1e12050000000000000000000000000000000000000000000000000000000a1723303d4a5663707d7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f85929fabb8c5d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000070c11171c1f262b2d3036393a3e404547494b4d4e4f5050515150504f4e4d4b4947454d575f696e7b8491959fa7b0b8c1c9d6d8d0cbc0b9b1a9a29e938e847d746d67615a534e45413a322820160c020000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb8c4c5b9aca196897d7063554b4035291d11040000000000000000000000000000000000000000000000000000000000000000030c17212935414b55606a727f8c949fa9b3bebaafa59f92867b6e665c50443d32281e130800000000000000000916222f3c4955626f7c8898a2aebac6c7baaea399887c6f62544a3f30261c1107050e1a25303b4754606d7a86939facb9c6cbbfb5ab988c7f7265594c3f32261906000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c60534635404b5564717d8a98a2aebac6d3d2c5b9ada196897c6f6253493f33271b0a111e2a36414c5665727e8b99a3afbbc7d4d1c4b8ab9f95887b6e6155483c46535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3f0e9e0d8d2cdc9c8c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c0b3a79a8d8074675a4d4134271a0e010000000000000e1b2734414e5a6774818d9aa7b4c0cddad2c5b8ac9f9285796d6053463a2d20130700000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb7b7b7b7b7b7b7b7b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b18242f3a434f59606d79839098a3aeb8c2ced2c7beb2a89e938a7e71685e52483f33291d140a000007121d27313d44515c666e7c86929fa6b0bcc5d0cabfb4aa9f958c7f736a60554b40352920160c02000000000000000000000b17232e3842505a636f7c88939fa8b2bcc6d0c9c0b7afa59d938e847d746e696260585653514b4e4d4c4b4c4d4e4d5355555d60646a6f757c848d939aa2a9b2bbc3c7bdb4aaa0958d8074695f53463a2d2114070000000000000000000000000000000000000000000000000000000916232f3c4855606b707373737373737373737373737373737373737373737884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000030b12181c23282b31373a3b4146474b4b51535557595b5c5c5d5e5e5d5c5b5a5958565451575e696e7b849196a0a7b1b9c2cad3d6cec6bfbaaea79f97928a817a706b605d555047433c352f2820160e0400000000000000000000000000000000000000000000000000000000000000000000000006121e2b37424d5765717e8b98a3aebac7c4b7ab9e9184786c6053463a2f24180d01000000000000000000000000000000000000000000000000000000000000000000060f18242f3a434e58606c78828f97a2adb9c0baaea2989083786d60594f443a3024190f06000000000000000c1825323f4b5865727e8b98aab4bfcac5b9ac9f9286796d6053463a2d20150a00000914202c3945515d677784919daab7c4d1c1b5a89b8e8275685b4f422d22170b000000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c6053463945515d6775828e9baab4bfcad6d1c4b7ab9e9184786c605346392d22170b0e1925303b4754616e7a86929facb9c5d1d4c8bcb1a7998c7f7266574d4246535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3eae0d7cec7c1bdbcb9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b3a79a8d8074675a4d4134271a0e010000000000000f1c2936424f5c6975828f9ca8b5c2cfdbd0c4b7aa9d918477665c5044382b1f120600000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c4c4c4c4c4c4c1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2935414b55606b73808d95a0aab4bfc1c1c1c0b6aca1968e81756c61564c41362d21170b020000010b151f2834404a545f6a727f8c949faab3bec1c1c1bcb1a79f92877c6f675d51453d32281e130800000000000000000003101c28343f4a54616c7683909aa4afbac3ceccc1b7afa59d938e817a706b615e57544e4a47454041403f3f3f40414246484b51535860626b6f7980889297a1a9b2bac3c4bab0a69f93867b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000714202c38444f59606366666666666666666666666666666666666666666b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000040a0c151c23282e34383c4246484c525457555d606264666868696a6a6b6a696867666562605d5e696e7b849196a1a8b1b9c2cbd3d4ccc4bcb4aea49d9590857e756d686159514b433e373129241e160d04000000000000000000000000000000000000000000000000000000000000000000000000000814212e3a47535f697683909caab4bfc7bbb0a6998c8073655b504437281d1307000000000000000000000000000000000000000000000000000000000000000000000007131d28313d44505b666e7b85929ea5afb9beb4aa9f958d80736b60564c41352921180c030000000000010e1b2834414e5b6774818e9aa7b4c1d0c3b6aa9d908377665c5145382c1f1303000004111d2935414b556875818e9ba8b4c1cec4b7aa9d9184776a53493f33271b0f030000000000000000000000020f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140700000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c6053463a4753606d7a86929facb8c5d0d5c9bdb2a89a8d8073655b5044372b1b11060814202d3946525e6876828f9cabb5c0cbd7cdc3b7aa9d908377695f534746535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3e3d8cec5bcb5b1afacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaca79a8d8074675a4d4134271a0e01000000000000111d2a3744505d6a7783909daab6c3d0dcd0c3b6a99d9083766a544a3f34281c100300000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c5d0d0d0d0cec1b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3845515d676f7d87939fa7b1b4b4b4b4b4b4afa49a91847a6d605a50443b30241b0f0600000000030d18232e39424e58606c77828f98a2aeb4b4b4b4b4b4afa3999184796d60594f443a3024190d01000000000000000006121f2b3844505c66707d8a959facb6c0cccfc4baafa59d938e81776d686059524d47433d3a39352f333232333331363a3b4045474e545960676d747d859197a0a8b2bbbcb2a89f948d8073695f53463a2d21140700000000000000000000000000000000000000000000000000000004101c27333d474f5556595959595959595959595959595959595959595e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000060b151b1e272e34383f44464d5355565e616468676d6f71737475767677787776757473726f6d67686e7b849196a1a8b2bac3ccd4d4cbc2bab2aaa39f928d837b716c615d564f45413a312b262019130c0400000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54626e7b88949fabbcc6c4b7ab9f94887b6e6153493f3327160c010000000000000000000000000000000000000000000000000000000000000000000000010c161f28333f4a545e69707e8a929da7b1bcbcb1a79f93877d70685d52463f332a1e150b0000000000020f1c2935424f5c6875828f9ba8b5c2cdc1b4a79a8e817467544b4034281c10040000010d18242f3f4c5966727f8c99a5b2bfccc5b8ab9e928578655b5044372b1f12050000000000000000030607080f1b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21140808080807060401000000000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605346414b5564717e8a98a2aebac6d3d2c5b9aca196897c6f6253493f33271b0a0005111e2a36414c5665727e8b99a3afbbc7d4d1c4b8aca095887b6e62554846535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3ddd2c7bcb2aaa4a29f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9a8d8074675a4d4134271a0e01000000000000111e2b3844515e6b7784919eaab7c4d1dbcfc2b5a89c8f8275695c4f422e23170b0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c5d2dddddbcec1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3842505a606d79849199a4a8a8a8a8a8a8a8a8a89f93887d70685d52483e32291e120900000000000007121c27303c44505b656e7b85929fa5a8a8a8a8a8a8a8aba0968d80746b60564c4135291d110400000000000000000713202d3a4653606d7884919da7b1bec7d2c9bdb2a89e938e81776c655d564f46423b37322d2c29242626252627262a2d2f35383d43474f555d606b707c859196a0a9b3b4aaa1968f82786d60574d42362a1e1205000000000000000000000000000000000000000000000000000000000b16212c353d44484a4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000020a111720262b303940444a5053575f6166686d7175777a7c7e8081828383848483838281807e7c7a77737a849196a0a8b2bac4ccd5d3cac2b9b1a8a198928b80786e69615a524c443e352f281f1b150d0801000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b6673808d99a6b0bccabfb4aa9c908376695f5341382d22170b00000000000000000000000000000000000000000000000000000000000000000000000000040d17222d38424d57616c74818e95a0aab4bfbbafa49991847a6d615a50463c30271d12070000000003101d293643505c6976838f9ca9b6c2ccbfb3a6998c807366594d402e23180c00000000071825313e4b5864717e8b97a4b1becac6b9ac9f9386796c605346392d201306000000000000060c10121314141b2835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e2114141414141413110d070100000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c60534645515d6775828f9baab4bfcad6d1c4b7ab9e9184786a605441382d22170b00010d1925303b4754616d7a86929facb9c5d1d4c8bcb1a7998c7f7366584e43535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3d9cdc1b5aaa09995939393939393939393939393939393939393939393939393939393939393939393939393939393939393938d8074675a4d4134271a0e01000000000000121f2b3845525e6b7885919eabb8c4d1dbcec1b4a89b8e8175685b4e4235281b060000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54616c74818e969b9b9b9b9b9b9b9b9b9b9b968d80746b60564c41362c20170d00000000000000000b151e27333f49535e69717e8b939b9b9b9b9b9b9b9b9b9b9b93887d70685d5245392c2013070000000000000005121e2a36424d5764707d8a95a0acb9c2d0cfc6b9ada1968e81776c655b534c443d36302b2720201d181a1918191a1a1e2124292c32373d434b5159606a6f7b849197a1abaea29891847a6d665c50453b31261a0e0200000000000000000000000000000000000000000000000000000000050f1a232c33383c3d404040404040404040404040404040404045515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000050b141b222732373e424a51545c6064696e73777a7e818486888a8c8e8f8f909191908f8e8d8c8b89868380839196a0a8b2bac4ccd6d2c9c1b8b0a79f9691867e746d665e575046413a3229241d160d0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eabb7c2c6baaea2988b7e7165574d422f261b1106000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3b45505a606d79839198a3aebac0b5aba1968f81756d62584e43392e23180e0500000004111e2a3744515d6a7784909daab7c3cbbeb2a5988b7f7265584c3f32251907000000000a1724313d4a5764707d8a97a3b0bdcac7bbafa499877a6d6054473a2d21140700000000030a11171c1f202121212835424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e21212121212121201d18130c04000000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c6053464754606d7a86929facb8c5d0d5c9bdb2a89a8d807367584e432f261b110600000814202d3946525e6876828f9cabb5c0cbd7cdc3b7aa9d9084776a5f5347535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3d6c9bdb1a4998e8986868686868686868686868686868686868686868686868686868686868686868686868686868686868686868074675a4d4134271a0e01000000000000121f2c3945525f6c7885929fabb8c5d2dacdc0b3a79a8d8074675a4d4134271a0e0100000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b66707d8a8e8e8e8e8e8e8e8e8e8e8e8e8e8e84796d60594f443a2f241a0e050000000000000000030c17222d38414d57626c75818e8e8e8e8e8e8e8e8e8e8e8e8e8e847a6d6054473a2d211407000000000000000714212d3a46535f6976828f9ca8b1bdcbd1c6bdafa59e91847a6d655b5349413a322a251f1b1413110d070c0c0c090e1214181d1f272b313940454f585f696e7b859299a3a49f92867c6f685e544a3f332a1f140900000000000000000000000000000000000000000000000000000000000008111a21272c2f30333333333333333333333333333333333845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000070e171d262d333c434750545c60666d70767b8083878a8e91939a97999b9b9c9d9d9e9d9c9b9a99989a93908d9195a0a8b2bac4ccd6d2c8c0b7afa69f9590847c716c605c544d453e3530282018130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5563707d8996a1adb9c5c5b8ac9f92867a6d6054473b3121140a000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29333e45515d676f7c86929fa6b0bbbdb2a89e938b7e716a5f554b40342820170b02000005121e2b3845515e6b7884919eabb7c4cabeb1a4978b7e7164584b3e3125180b000000000a1623303d495663707c8996a3afbcc9ccc0b5ab94887b6e6155483b2e221508000000030c151c23282c2d2e2e2e2e35424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473a2e2e2e2e2e2e2e2d2c29241d160d040000000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c6053414c5664717e8a98a3aebac7d3d2c5b9aca196897c6f6256493d3223140a00000005111d2a36414c5665717e8b99a3afbbc7d3d1c5b8aca095887b6e625548535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c7979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746e64584c3f33261a0d00000000000000131f2c3946525f6c7985929facb8c5d2d9ccbfb3a6998c807366594d4033261a0d0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c78808181818181818181818181818181817c6f675d51473d32281e12080000000000000000000006111b262f3b45505a616d7a8181818181818181818181818181817e7164574b3e3124180b000000000000000815222e3b4855616e7b87939facb9c3cecbbfb5ab9d93897d70675d534941382f28201a140f0a06040100000000000205070c10151b1f272f353d464e575f69707d87929f9d928a7e716a5f564c42382e21180e0300000000000000000000000000000000000000000000000000000000000000080f161c2023232626262626262626262626262626262b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000008111920292f383f444e545a61666d72787d82878c90939a9b9e9fa4aca6a7a8a9a9aaabaaa9a8a7a6aca49f9d999da0a7b1bac3ccd6d7cec0b6aea59e948f837a6f6a625a514b423b3329241e160e07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6775818e9ba8b2bdc9bdb2a89b8e8174675d5145392c20130200000000000000000000000000000000000000000000000000000000000000000000000000000000020b17212935404b555f6a727f8b949ea9b3bebaafa59f92867c6e675c51453d32291d140a000006131f2c3946525f6c7985929facb8c5cabdb0a4978a7d7164574a3e3124170b000000000916222f3c4955626f7c8895a2afbbc8d2bbafa295887c6f6255493c2f2216090000000a151e262e34383a3b3b3b3b3b424e5b6875818e9ba8b4c1cedbd3c7baada094877a6d6154473b3b3b3b3b3b3b3b3a39352f281f160c0100000000000b1824313e4b5764717e8a97a4b1bdcad2c6b9ac9f9386796c605345525d6875828f9baab4bfcbd6d1c4b7ab9e9184786a6054473b2e221502000000010d1925303a4754616d7a86929facb9c5d1d4c8bcb1a7998c807366584e535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645c52473c3024170b0000000000000013202c3946535f6c7986929facb9c5d2d9ccbfb3a6998c807366594d4033261a0d0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c5d2dbdbdbcec1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b666c747575757575757575757575757575756f6a60554b40352b20160c0000000000000000000000000a141d29333e46525e686d757575757575757575757575757575716c6155493d3023170a00000000000005121e2a36424d576673808c9aa4afbbc8d3c7bbaea3998e81746b60554c41382f261d160d090200000000000000000000000000040a0d151d2429343c454d57606b727f8b94948d80736c61584e443a30261c0f06000000000000000000000000000000000000000000000000000000000000000000050b1014161719191919191919191919191919191e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000009121a232b333b414950585f626c71797f848a8f939a9d9fa4acaaacafb6b3b4b5b6b6b7b7b6b6b5b4b3b6afacaaa6aaacb1b9c3ccd5dbd0c6bcaea49d938e82796d685f585045403930292119130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb8c4c5b9aca196897d7063554b4135291d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000050f18242f39434e58606c77828f97a1acb6c0baaea2989083796d60594f443a2f261b11060005121f2b3845525e6b7885919eabb8c4cabdb1a4978a7e7164574b3e3124180b00000000091623303c4956636f7c8996a2afbcc9c8bbaea195887b6e6255483b2f221508000006111c2630383f44464747474747474e5b6875818e9ba8b4c1cedbd3c7baada094877a6d61544747474747474747474745413a31281d130700000000000b1824313e4b5764717e8a97a4b1bdcad4c7bbafa39986796c60534754606d7a86929facb9c5d0d5c9bdb2a8998d807366584e43372b1f1306000000000813202d3946525e6876828f9cabb5c0cbd7cec3b7aa9d9184776a5f53535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f626060606060606060606060606060606060606060606060606060606060606060606060606060606060605a58524a41362b1f130700000000000000121f2c3945525f6c7885929fabb8c5d2dacdc0b3a79a8d8074675a4d4134271a0e0100000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c5cececececec1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a545b60676868686868686868686868686868686260584e43392f23190d04000000000000000000000000020b17212a36414c565e6168686868686868686868686868686864615a5045392d2115080000000000000714212d3a46535f697784909dacb6c0ccd2c5b9ac9f92867b6e61594f433a2f261d140b050300000000000000000000000000000000030b1218222a333b454f59626d76828f8f82786d605a50463c32281e140a0000000000000000000000000000000000000000000000000000000000000000000000000407090a0d0d0d0d0d0d0d0d0d0d0d0d0d121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000010a131b242c353d454d535b606a6f767e848b91969c9fa4acacafb6b7b9bbc0bfc1c2c2c3c4c4c3c2c1c0bfc0bbb9b6b3b7b8bcc3ccd5ded6cabfb4aa9d928d81786d675e564e463e342e271e170f0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b37424d5765717e8b98a2aebac7c4b7ab9e9184786c6053463a2f24180d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c44505b656e7a85929aa4afbbbfb4aaa0958d80736b61564c41382d22170d0304111e2a3744515d6a7784909daab7c3cbbeb1a5988b7e7265584b3f3225180c000000000a1724303d4a5763707d8a96a3b0bdc9cabeb3aa94877a6d6154473a2e21140700000c17232e38424a5053545454545454545b6875818e9ba8b4c1cedbd3c7baada094877a6d615454545454545454545454514b433a2f24180d01000000000b1824313e4b5764717e8a97a4b1bdcad2c5b9ac9f9286796c5f534c5664717e8b98a3aebac7d3d2c5b9aca096887c6f6255493d32271b0f030000000005111d2a36414c5665717e8b99a3afbbc7d3d1c5b8aca096887c6f6255535f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625653535353535353535353535353535353535353535353535353535353535353535353535353535353534d4c4741382f241a0e0300000000000000121f2b3845525e6b7885919eabb8c4d1dacec1b4a79b8e8174685b4e4135281b060000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb8c1c1c1c1c1c1c1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424a50535a5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b56544e463d31271d11080000000000000000000000000000050f1925303a444c52545b5b5b5b5b5b5b5b5b5b5b5b5b5b5b575550483e34281d11050000000000000815222e3b4855616e7b8895a0acbec7d2c8bcb1a79b8e8175685e52473d31281d141413120f0b060b0907070401000000000000000000010710182129333d47515b626e7b86847a6d665c50483e342a20160c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000a131c252d363e474f575e656c727c838a91969ea1a8acafb6b9bbc0c4c6c8ccd2cececfd0d0d1d0cfcecdd2ccc8c6c3c0c4c5c8ced5dedfd3c6baaea2988d80786d665d554c443c3428231d150c05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f697683909caab4bfc7bcb0a6998c8073655b504437281d130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f27333f49535e68707d88939fa7b1bcbcb1a79f93887d70685e53493f33271f150b01101d293643505c6976838f9ca9b6c2ccbfb2a6998c7f7366594c4033261908000000000b1824313e4b5764717e8a97a4b1bdcac6baaea29886796d6053463a2d2013070003101c28343f4a545c6061616161616161616875818e9ba8b4c1cedbd3c7baada094877a6d6161616161616161616161605d554b4135291d1104000000000b1824313e4b5764717e8a97a4b1bdcad2c5b9ac9f9286796c5f53525d6875828f9caab4bfcbd7d1c4b7aa9e9184776a6054473b2b20150a0000000000010d1925303a4754616d7a86929facb9c5d1d4c8bdb2a8998c807366584e5f6c7986929facb9c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f62564946464646464646464646464646464646464646464646464646464646464646464646464646464646413f3c362f261d13080000000000000000111e2b3844515e6b7784919eaab7c4d1dbcfc2b5a89c8f8275695c4f422e23170b0000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929facb4b4b4b4b4b4b4b4b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f383f44464d4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4947433d342b1f150b0000000000000000000000000000000008131e29323a4146474e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4b49453e362c22170c000000000000000c1925323f4c5865727f8b98a7b1bcd0d1c5b8aca095897c6f63564d41352c26252321201f1b171917161413110d080c0a0807060400000000060f18212b353f47535f6a727f7c6f685d544a3f362c22180e04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000009121c252e373f48505960696e777f8790959ea0a8adb2b9bbc0c6c8ccd2d2d4d3d2d0cecccbcbcacbccccced0d2d4d2d0ccd0d1d4d9dfe7dfd2c5b8ac9f92857c716c605d554d453c342a21180f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7b88949fabbcc6c4b7ab9f94887b6e6153493f3327160c010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17222d38414c56616b74808d95a0aab4bfbbafa49a91857a6d655b50443c31271d12070f1c2835424f5b6875828e9ba8b5c1cdc0b3a69a8d8073675a4d403025190e020000000c1825323f4b5865727e8b98a5b1becbc5b8ab9f928578665c5044382c1f12060006121f2c3844505c666d6e6e6e6e6e6e6e6e6e75818e9ba8b4c1cedbd3c7baada094877a6e6e6e6e6e6e6e6e6e6e6e6e6d675d5145392c201306000000000b1824313e4b5764717e8a97a4b1bdcad2c5b8ac9f9285796c5f5254606d7a86929facb9c5d1d4c8bdb2a8998d807366584e43372b190f040000000000000813202d3946525e6876828f9cabb5bfcbd7cec3b7aa9e9184776a5f545f6c7985929facb8c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3939393939393939393939393939393939393939393939393939393939393939393939393939393433302b241d140b010000000000000000111e2a3744515d6a7784909daab7c3d0dccfc3b6a99c90837669544a3f34281c100300000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7985929fa8a8a8a8a8a8a8a8a8a8a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262d333839414242424242424242424242424242423c3b37322b22190d0300000000000000000000000000000000020c1720293036393a4242424242424242424242424242423e3d39342c241a100600000000000005111e2a36424d576875828f9ba8b5c2ced0c3b7aa9d9083776b6054443b342e3331302e2d2b272226242221201d191a1817151313100c070b0a08060f19232b37424e57636d726f6a5f564c42382e241a100600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000008111b242e374049515a616b707b828c92999fa7acb2b9bdc4c8ccd2d4d4d1d1cbc7c5c3c1bfbfbebdbebfc0c1c4c6c7ccd2d2d5dae1e3e9ecdfd3c6baaea29892867e746d675f574e463c332a21170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6573808c99a6b0bccabfb4aa9c908376695f5341382d22170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3b444f59606d79839098a2aebac0b6aca1978f82776c60584e43392f24180e0e1b2734414e5a6774818d9aa7b4c0cfc2b5a89b8f827568564c41362a1e11050000030f1b27333f49536773808d9aa6b3c0cdc4b7ab9e9184786b544a3f34281c1003000713202d3a4653606d787a7a7a7a7a7a7a7a7a7a818e9ba8b5c1cedbd4c8bbaea195887c7a7a7a7a7a7a7a7a7a7a7a7a796d6054473a2d211407000000000b1824313e4b5764717e8a97a4b1bdcad2c5b8ac9f9285796c5f4c5665717e8b99a3aebbc7d3d2c5b9aca096887c6f6255493c32271b090000000000000005111d2935414c5665717e8b99a3aebbc7d3d2c5b9aca096887c6f62555f6c7885929fabb8c5d2d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2726241f1a130b020000000000000000000f1c2936424f5c6975828f9ca8b5c2cfdbd0c4b7aa9d918477665c5044382b1f120600000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c7986929b9b9b9b9b9b9b9b9b9b9b9b9b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141c22282b2d343535353535353535353535353535352f2e2b2720191007000000000000000000000000000000000000050e171e252a2d2e35353535353535353535353535353531302d28221a1208000000000000000714202d3a46525e697885919eabb8c4d1ccc0b3a6998d807366594f46444041403e3c3b3937332d32312f2d2c292427252422201f1c181a18161513120f1a26313c45515b6366625f584e443a30261c12080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000007101a232d364049515b626c717d858f949fa3abb1b9bdc4c9cfd4d7d4cec8c5c4bfbbb9b7b4b3b2b1b1b1b2b3b5b7b9bbc0c4c6c9cfd3d8dee4e2d6cabfb4aaa298928b81796e695f584e453c332920170e0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eabb7c2c7baaea2988b7e7165574d422f261b110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d29323e45515c676e7c86929fa5afbabeb3a99e948b7f726a5f554b40352920170b1825323f4b5865727e8b98a9b3becac4b7ab9e918478685e5246392d201408000005121f2b3744505b6576838f9ca9b6c2cfc2b5a99c8f8276695c4f432e23170c00000915222f3c4855626f7c878787878787878787878e939eaab6c3cfdcd5c9bcb0a4988e888787878787878787878787878074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad2c5b8ab9f9285786c5f525e6876828f9cabb5bfcbd7d1c4b7aa9e9184776a5f53473b2b20150a00000000000000010d1925303a4754606d7a86929facb9c5d1d4c8bdb2a8998d807366585f6b7885929eabb8c5d1d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23202020202020202020202020202020202020202020202020202020202020202020202020201a1a17130e0801000000000000000000000e1b2834414e5b6774818e9aa7b4c1cddad2c5b8ac9f9285796d6053463a2d20130700000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800131f2c3946525f6c79868e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8175685b4e4235281b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f202728282828282828282828282828282823221f1b150f070000000000000000000000000000000000000000050c13191d20212828282828282828282828282828282423211d17100800000000000000000814212e3b4754616e7b8797a1adb9c6d2c9bdb2a8968a7d7063575553514a4e4c4b494746443f413f3e3c3a39352f3432302f2d2c282326252321201f1c17202a33404951575955534e463c32281e140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000040e19222c353f48515b636d727e8692979fa6aeb5bdc2c9ced5d8d1cbc7c3bdb8b7b5aeacaaa8a6a5a4a4a5a5a6a8aaacafb5b8b9bec4c7cdd3d8dedbd0c6bcb4aaa39f938e837b6f6a5f574d453b322920160c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414b5563707d8996a1acb9c5c5b8ac9f92867a6d6054473c3121140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17202834404b555f6a727e8b939ea8b2bdbbb0a69f92867c6f675d51453e33291d1415222f3c4855626f7b8897a2adb9c6c5b9ada196877a6e6154473b3025190d02000613202d394653606c7985929fabb8c5ccc0b6ac998c7f7366594c403326190600000915222f3c4855626f7b889494949494949494949b9ea5afbbc6d2ded8ccc0b5aaa0989594949494949494949494948d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad1c5b8ab9e9285786b5f54616d7a86929facb9c5d1d4c8bdb2a8998d807366584e43372b1f130600000000000000000813202c3945525d6875828f9cabb4bfcbd7cec3b7ab9e9184786a605e6b7885919eabb8c4d1d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23161313131313131313131313131313131313131313131313131313131313131313131313130e0d0b07030000000000000000000000000d192633404c5966737f8c99a6b2bfd1dcd3c6baaea298887c6f6255493c2f22160900000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e221508000e1b2835414e5b6874818181818181818181818181818181817f7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1615130f0a040000000000000000000000000000000000000000000002080d1113141b1b1b1b1b1b1b1b1b1b1b1b1b1b1b181715110c060000000000000000000a1724313d4a5764707d8a97a9b2bec9d2c5b9aca096877a6d656361605c545b595856545350494e4c4a4947454142403f3d3b3a38342e3331302e2d2b282226242e3740464b4c4847433c342a20160c09060100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000020c16202b343e47505a636d737f879298a1a9b0bbbfc6cfd5d9d2ccc7c0bbb9b2acaaaba39f9d9b999898979899999b9d9fa4ababadb3b7bbc2c7cdd5dad7cec6bcb4aea59d9590857c6f695f574d443b32281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6774818e9ba8b2bdc9bdb2a89b8e8175675d5145392c20130200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e18232e39434e58626d75828f96a1abb5c0baaea3989183796d605a50453b2f261c13202d394653606c7985929eabb8c5c9bdb2a8978a7d7064564c41362a1f1409070f1b27333f4953626e7b8898a2aebac6c8bbafa49a897d7063564a3d3023170a00000915222f3c4855626f7b8895a1a1a1a1a1a1a1a1a8aaafb7c1ccd7e3ddd1c6bbb2aaa4a1a1a1a1a1a1a1a1a1a1a19a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad1c5b8ab9e9285786b5f5665717e8b99a3afbbc7d3d2c5b8aca096887c6f6255483c32261b0f03000000000000000004111d2935414c5664717e8b99a3aebac7d3d2c5b9aca196897c6f625e6b7784919eaab7c4d1d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609060606060606060606060606060606060606060606060606060606060606060606060601000000000000000000000000000000000b1825313e4b5864717e8b97aab4bfcbd7d6cabfb4aa988b7f7265584c3f31261a0e02000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e221508000e1a2734404d59656f74757575757575757575757575757575726d62564a3d3124180b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060e0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f090806030000000000000000000000000000000000000000000000000000010507070f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0b0a080500000000000000000000000c1926333f4c5966727f8c99a5b2bfcfd1c4b7aa9e9184777372706e6d66696866646361605b535a59575554524c4f4d4b4a4846454041403e3d3b3938332d33312f2e353b3e3f3c3a37312a2218191816120d07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000008131e28323d464f59626c737f8b9399a3aab3bbc2cbd1d8d5d0c7c0bbb5afaca8a09d9a9992908e8c8c8b8a8b8c8d8e9193999a9ea1a9abb0b7bbc2c9cfd6d7cfc6bfbaafa7a09791857b6e695e564d443a3024190f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facb8c4c5b9ada196897d7063554c4135291d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303c46515b616d7a849199a4afbbbfb4aaa0958d80746c61574d42382d22171f2b3744505b6575828f9babb5c0ccc1b5a89b8e8275685e52463b30251a131318232b3744505b6573808c99aab3becac6b9ac9f93867a6d6054473a2d21140700000915222f3c4855626f7b8895a2adadadadadadadb5b6bbc1c9d3dde8e2d8cdc4bbb5b0aeadadadadadadadadada79a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad1c4b8ab9e9185786b5e5e6876828f9cabb5c0cbd7d1c4b7aa9e9184776a5f53473b2a20150a000000000000000000010d1924303a4754606d7a86929facb9c5d1d5c9bdb2a89a8d8073655b6a7784919daab7c4d0d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8898a3aebac7d3dbd0c1b5a89b8e817568574e42372b1e1308000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e221508000c1824303c48535d656868686868686868686868686868686865625b51463a2e2215090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4c0cdd2c5b8ab9f928581807e7d7b7978767473716f6e6c656967656462605d565c5a58575553514b4e4d4b494846443f413f3e3c3a3935303432302f2d2c29242625221e18110a0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000060f1925303a444e58616b717e8b919fa4abb4bcc5cdd7dbd6cbc3beb6afaba39f9b96918d89868481807f7e7e7e7f80828486898d91979c9fa6abb0b9bec4cdd8d8d1cbc1b9b1a9a19791847b6e685e564c41352921180c0300000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765717e8b98a2aebac6c4b7ab9e9184786c6053463a2f24190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e2a333f46525e68707d87939fa7b1bcbcb1a79d928a7d70695e544a3f33281f1b27333f495365727f8c99a4afbbc7c5b9ac9f92867a6d61564d42362a2520202429343f4a54606c7884919eabb7c4ccc0b6ac9d918477685d5245392c20130600000915222f3c4855626f7b8895a2aebabababababac1c3c6ccd3dbe5efe9dfd6cdc6c0bcbbbabababababababab3a79a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad1c4b7aa9e9184776b5e616d7a86929facb9c5d1d4c8bdb2a8998c807366584e43372b180e04000000000000000000000813202c3945525d6875828f9cabb4bfcbd7cec4b7ab9e9184786c606a7783909daab6c3d0d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb9c5d2ded1c4b8ab9e9184786a5f53473a3024190d000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e221508000814202c37414b53595b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b585651493f34291d120600000000000002070b0d0d13131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130d0c0a07020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c2936424f5c6975828f9ca8b5c2cfd3c6baada297928e8d8b8988868483817f7e7c7a7977767472716f6d686a6867656362605c555b5958565453504a4e4c4a4947464142403f3d3c3a39352f33312e2a231c130a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000030e18212935414c56606a707d87929fa3afb5bdc6cfd7d8d0cac0b9b1aca49f99928e8884807c7977757372717172727375777a7d81858a8f949c9fa6adb3bbc2ccd2d9d7cbc3bbb3a9a19691847a6e685d52453e332a1e150a0000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f697683909caab4bfc7bcb0a6998d8073665b504438281e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c18212935414c56606b73808d959faab4bfb9aea49e92857b6e665b50443d31281d222d3b4855616e7b87939facb9c3c7baaea3998c7f72695e52464036312d2d2f353d44505c66707d8996a1acb9c5c8bbafa49a8d807366564c4135291d110400000915222f3c4855626f7b8895a2aebbc7c7c7c7c7cecfd2d7dde5edf7f0e7dfd9d4d1d0c8c7c7c7c7c7c7c7c0b3a79a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad0c4b7aa9d9184776a5665727e8b99a3afbbc7d4d1c5b8aca096887c6f6255483c32261b09000000000000000000000004111d2935414c5664717e8b99a3aebac7d3d2c5b9ada196897c6f62697683909ca9b6c3cfd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844515c667783909daab6c3d1dcd2c5b9ada196887b6e62564c4135291d12070000000000000000000000000000000000040d16202d3a4653606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e22150800040f1a252f3941484d4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4b4a463f372d23180d010000000000080e1317191a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020191916130d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2a3744515d6a7784909daab7c3d0d6cabeb3a9a29f9b999896999391908e8c8b8987858482817f7d7c7a7877757372706e6d67696866646361605b545a59575654524c4f4d4c4a48474540423f3e3a352d251c1107000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000915202a333c46525e686f7c869299a3afbbc0c7d0d8d7cec6bfbaaea7a09a938e87817c77736f6d66686665656465666668676d7074787d82888f949ea1a9b0bbc0c7d0d9d5cdc4bbb2a8a09691837a6d605a50453b30261c110600000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7b87939facb9c6c4b7ab9f94887b6e62544a3f3328160c010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1925303a444f59606d78839098a2aebac0b9ada2978f82786c60584e433a2f24212d3a46535f6975828f9ca8b1bdc8bfb4ab9f92857b6e615b5146423b3a393b40454f59606d7883909da8b2bdc9c6b9ac9f93877b6e6155483b2f24190d0100000915222f3c4855626f7b8895a2aebbc1c1c1c1c1c4c5c9ced6dee8f1e7ded5cec8c5c4c1c1c1c1c1c1c1c1c0b3a79a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad0c3b7aa9d9084776a5e6876838f9cabb5c0cbd7d0c4b7aa9d9184776a5f53473a2a20150a0000000000000000000000010d19242f3a4754606d7a86929facb9c5d1d5c9bdb2a89a8d8074656976838f9ca9b6c2cfd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a546774818d9aaab4bfcbd7d5c9bdb2a89a8d8074685d5245392e23180e05000000000000000000000000000000030c161f28343f4a54606d798693a0acb9c6d3d4c7bbaea194887b6e6155483b2e221508000009131d272f373c40414242424242424242424242424242423f3d3a342d251b110600000000020a12191f2326272d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2625231e19120a01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2c3845525f6b7885929eabb8c5d1dbcfc5bbb3adaba8a6a5aba49f9e9c9b9997969892918f8d8c8a8887858382807e7d7b797876747371706e6c666967666462615e565c5a58575553514b4e4c4a463f372d23180d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000030d1a26313c46515b616d7a849198a2abb5c0ccd2d9d7cec5bcb4aea49d959087817b756f6a6763605c545959585758595a555d6063656c70767c828a91979fa6afb6bec7d0d9d6cdc4bab2a8a0958e81756c62574d42382e23170c0300000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6573808c9aa4afbbc8bfb4aa9c908376695f5342382d22170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323d44515c666e7b86929fa5afbabeb3a99f948c7f726a60554b413529212a36424d5763707d8995a0acb8c3c6baaea2988e81756d635b534d484646474b5159616b727f8c95a0acbac4c9beb3a99c8f8276695f53463a2d1e13080000000915222f3c4855626f7b8895a2aeb4b4b4b4b4b4b7b9bdc4ccd6e0eadfd5ccc3bdb8b7b4b4b4b4b4b4b4b4b4b3a79a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcad0c3b6a99d9083766a616e7b87939facb9c6d1d4c8bcb1a7998c807366584e43372b1f12060000000000000000000000000813202c3945525d6875828f9caab4bfcbd7cfc4b8ab9e9184786c6975828f9ca8b5c2cfd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3d4a5764707d8a98a3aebac7d3dacfc4b8ac9f92867a6d60544b40342820170e0600000000000000000000000000040c151e28313944505c66707d8996a3afbcc9d6d4c7bbaea194887b6e6155483b2e2215080000010b151d252c30343535353535353535353535353535353532312e29231b130900000000000a141c242a2f3334393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393933322f2a241c130a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b556c7985929facb8c5d2dfd7cdc5bebab8b5b3b1b5afacaba9a7a6a4aaa39f9d9c9a9897959792908f8d8b8a8886858381807e7c7b7977767472716f6d686a6867656362605d555b595751493f352a1e12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000010b151f2b37434e58626d75828f96a1aab4bdc7d1ddd7cdc5bcb3aaa29f928d837c746e696260585653514b4d4c4b4b4b4c4d4b5153535b60636a6f767e858f949fa4acb5bdc7d0d9d6ccc4bab1a79e938b7e71695f544a3f34281f14090000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eacb6c0c7baaea3988b7e7165574d422f261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202834404a545f69717e8b939ea8b2bdbbb0a69f92877c6f675d51453e332926313b4653606c7884919da7b1bdc7beb3aa9e938c7f736d615e5754535354555d606b707d87929fa7b1bcccc6b9ada1978a7e7164574d42362a1e0c010000000915222f3c4855626f7b8895a2a8a8a8a8a8a8a8abacb2bac4cedae5d9cec3bab2acaaa8a8a8a8a8a8a8a8a8a8a79a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcacfc3b6a99c9083766965727f8b99a4afbbc7d4d1c5b8aca095887b6f6255483c31261b0f0300000000000000000000000004111d2935414c5664717e8a98a3aebac7d3d2c5b9ada196897c6f6875828e9ba8b5c1ced6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5d0dbd3c6baaea2988c7f72665c51453e322920180f090300000000000000000002080d161e263039434e58606d7883909daab7c3d0ddd4c7bbaea194887b6e6155483b2e221508000000030b131a202427282828282828282828282828282828282524221d181109010000000008121c262e363b3f404646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646403e3b352e251c12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c677986939facb9c6d2dfdfd7cfcac6c5c1c0bec0bbb9b7b6b4b2b1b4aeacaaa9a7a5a4a9a29f9d9b9a98969a9391908e8c8b8987868482817f7d7c7a7877757372706f6d676a6866635b51463a2e2216090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000007121d27313947535f6a727f8b939ea8b2bcc6cfd9d8cec5bbb3a9a298928a80786f6b615e57544e49464540403f3e3e3f3f404045474950535860626c717a828c939aa4abb5bdc7d2ddd5ccc3b9afa59f92867b6e665c50443c31261a0e040000000000000000000000000000000000000000000000000000000000000000000004111d2935404b5563707d8996a1acbec7c5b8ac9f92867a6d6054473c3121140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e18232e39424d57626c75818e96a1abb5c0bbaea3999184796d605a50453b30262b3744505b65727f8b95a0abb5c0c5bcafa59c918c7f766e69646160606163676d747d869299a3aeb9c3c6bdb0a69e9285796d6053463b31261a0e000000000915222f3c4855626f7b88959b9b9b9b9b9b9b9b9ea1a8b2bdc9d5e1d4c8bdb2a8a09d9b9b9b9b9b9b9b9b9b9b9b9a8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcacfc2b6a99c8f837669697683909cabb5c0ccd7d0c4b7aa9d9184776a5f53473a2a20150a00000000000000000000000000010d19242f3a4754606d7a86929facb9c5d0d5c9bdb2a99a8d80746674818e9ba7b4c1ced6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6776828f9caab4bfcad6d6cabfb4aa9e9184796d60594f443b322a211a140e0906050300010507090e13191f283038424b555f6a727f8b95a0acb8c5d1ded4c7bbaea194887b6e6155483b2e2215080000000001090f14181a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b181815120d060000000000020e19242e3840474b4d53535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534c4b4640372e24190d020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798699a4afbbc7d4e0dcd3ccc7c3c2c0c2c4c5c7c6c4c3c1bfbebfbab8b7b5b4b2b0b3adabaaa8a6a5aca49f9e9c9b9997969992918f8d8c8a8987858482807f7d7b7a787675726d63574a3e3125180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000c18232f3943505a626e7c86929fa5afbac4ced8dbd0c6bcb3a9a29792867e746d666059534d47433c3a38342e32323132332f35393a3f44464e545a61686d7880889399a4abb5c0ccd7dcd5cbc1baaea2989083786d60574d42372b20150a000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6774818e9ba8b2bdc9bdb2a89b8e8175685d5245392c2013020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121c27303c45505a606d7a849199a3afbbbfb5aba0968e81746c61574d42382e27333f4953606d78839099a3afbbc3c1b7ada39c918c827b75706e6d6c6e70747980879298a2abb4bfcbbfb5ab9f948b7e71665c5145382a1f1409000000000915222f3c4855626f7b888e8e8e8e8e8e8e8e8e9196a1acb9c5d2ded1c5b8aca096918e8e8e8e8e8e8e8e8e8e8e8e8d8074675a4d4134271a0e010000000b1824313e4b5764717e8a97a4b1bdcacfc2b5a89c8f8275696e7b87939facb9c6d2d4c8bcb1a7998c7f7366584e43372b180e0400000000000000000000000000000813202c3945515d6775828f9baab4bfcbd6cfc4b8ab9e9185786c74818d9aa7b4c0cdd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935404b5565717e8b98a2aebac6d3dbd0c6b9ada1968d80746b61564d443c332b261f1a1413120f0b0d1113141a1e252a313a424a545d676e7c86929fa7b1bcc8d4e0d4c7bbaea194887b6e6155483b2e22150800000000000004080c0e0e0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0c0b09060100000000000007131f2a36404a52585a60606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605957524940352a1e13070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0b5c0cbd7ded3cac2bbb7b5b3b5b7b9babfbebfc1c3c5c6c7c5c4c2c0bfbdbebab8b6b5b3b1b6afacaba9a7a6a4aba39f9e9c9a9997959892908f8d8b8a88868583817f7266594c3f3326190c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000004101c2934404b55616c76828f98a2aeb7c1ccd6ddd6cabfb4aaa29792857c716c605c544f46423b37322d2c2823262524252624292c2d33373c434750565e666c737e879399a4afbbc0cad3ddd6cabfb4aa9f958c8073695f53463c32261b0f040000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a85929facb8c4c5b9ada196897d7063564c4135291d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105070709090a0a09080706040000000b151e2a333e45525d686f7c87929fa6b0bbbdb2a89d938a7e71695e544a3f34282d3844515c666f7c87929fa8b2bbc5bfb5ada39c948f86817d7b79797a7c81858d9399a2aab4bdc6c2bbaea3999082776c60544b403428180e03000000000815212e3b4854616e7b8181818181818181818184919eabb7c4d1ddd0c4b7aa9d9184818181818181818181818181817e7164584b3e3125180b000000000b1824313e4b5764717e8a97a4b1bdcacec2b5a89b8f827568727f8b9aa4afbbc8d4d1c5b8aca095887b6e6255483c31261a0800000000000000000000000000000004111d2935414c5564717e8a98a3aebac7d3d2c6b9ada197897c6f73808d9aa6b3c0cdd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3a4754606d7a85929facb8c1d0d9d5c9bdb2a89d928a7d70695e564e453d37312b2621201f1b17191e2021262b30363c434c545c666d79839198a2aeb9c3ced9e5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000b17232f3b47525c64676c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c66635b52463b2f23160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798699a3afbbc7d3d8ccc2b8b0aaa9a7a8aaacaeb4b1b3b4b6b8b9bebdbfc0c2c4c5c7c6c5c3c2c0bec0bbb9b8b6b4b3b1b4aeacaaa9a7a5a4aaa29f9d9b9a9896959791908e84786b5e5145382b1e120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000006131f2c3845515c67717e8a949faab4bfc9d3dfd4cbc2baaea29892857c6f6a615a504a423d36312b27201f1c181918181819181d2022272b32373e444c545b606c717e87939fa4aeb8c2cdd6dbd0c5bcb1a79f92877b6e61584e43372b21160a000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5764717e8b98a2aebac6c4b8ab9e9184786c6053463a2f24190d01000000000000000000000000000000000000000000000000000000000000000000000000000000030506080d1113141516171616151413100c0707050c18212935414c56606b737f8c949fa9b3bebaafa59f92857b6e665c50443d322834404a54606a73808d96a0a9b3bbc5bfb5ada69e98928e8a87868687898d92979fa4abb4bcc6c2b8b0a69f92877c6f655b5042392e23180600000000000714202d3a46525e696e75757575757575757575818e9ba8b4c1ced9cdc0b3a69a8d8075757575757575757575757575716c6256493d3024170b000000000b1824313e4b5764717e8a97a4b1bdcacec1b4a89b8e8175687683909cacb6c0ccd8d0c3b7aa9d9084776a5f53473a2a20150a000000000000000000000000000000010d19242f3a4754606d7a86929facb8c5d0d5c9beb3a99a8d807373808c99a6b3bfccd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945515d6774818e9aa5afbdc7d2dacfc4baaea49e92857b6e685f574f46423c37312e2d2b2722252a2d2e31373a41464e555d666d78818f95a0aab4bfcbd5dfe1d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1926333f4b58646e737979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979736d63574b3e3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844515c667986929facb9c5d2d3c7bbb0a69f9c9a9c9d9fa3aba4a6a8a9abadb3b0b2b4b5b7b9bbc0bec0c1c3c5c6c8c6c4c3c1bfbebfbab9b7b5b4b2b0b4aeabaaa8a6a5a3a9a19e9d9184786b5e5145382b1e120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000004111d2935414c56606d7984919ea6b0bcc6d0dcd8cfc2b9aea49f92867c6f6a605850443f38302a251f1b1313100c070b0b0c070d1013171b1f272b323a424a505a626c717e8b929da6b0bbc5cfdad7cec2bbafa3998e81756a5f53473d32271b0f04000000000000000000000000000000000000000000000000000000000000000714212d3a46535f6976838f9caab4bfc7bcb1a7998d8073665b504438281e13080000000000000000000000000000000000000000000000000000000000000000000000000000060b0f121316191d2021222323232322201f1c181514120e0f19242f3a434f59606d78829097a2adbac0baada2979083786d60594f443a2f2e39424e58606d79849197a1a9b3bcc5bfb8b0aaa29f9b9799929299969a9ea1a9afb5bdc6c2b9b0a69f948d80736a5f53493f30271d1207000000000005121e2a36424d575e6168686868686868686875818e9ba8b4c1ced9cdc0b3a69a8d807368686868686868686868686864625a5045392d211508000000000b1824313e4b5764717e8a97a4b1bdcacec1b4a79b8e81746e7b87939facb9c6d2d4c8bcb1a7998c7f7366584e43372b1f1206000000000000000000000000000000000813202c3945515d6775828f9baab4bfcad6cfc4b7aa9d918477727f8c99a5b2bfccd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414b55626f7c88939eabb5c0ccd7d6ccc0b9ada19790837a6e6a6059534d46423d3a3937332d3036393a3d42474c525860676d78818e939ea7b1bcc6d0dde7e1d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a67738086868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686867f7366594c403326190d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a5f6c7885929fabb8c5d2d0c3b7aa9f948f8d8f9192999697999b9d9ea1a9a3a5a7a9aaacafb5b1b3b5b6b8babebdbfc1c2c4c5c7c7c5c4c2c0bfbdbebab8b7b5b3b2b0b3adaa9d9184776a5e5144372b1e110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000713202c3945525d68737f8c96a1acb8c2ced8dcd1c6bdb1a79c928a7e716a60584e463e342e261e1a140f0a06040000000000000104060b0f151b20282f383f44505a626c73808d949ea9b3bec9d5e0d7cbc0b5ab9f93877c6f62594f44382c20150a000000000000000000000000000000000000000000000000000000000000030f1b27333f4953616e7b87939facb9c6c4b8ab9f95887b6e62544a3f3328160c01000000000000000000000000000000000000000000000000000000000000000000000002080d11171b1f2023252a2d2e2f3030302f2f2d2c292321211e1a14131e28313d44505c666e7b85929fa5afbabeb3a99f948c80736b60564c413529303c45515d676f7c859297a2aab3bbc1c2bcb4aeaca8aba39f9fa3aba7abadb3bbc0c6bfbab1a79f948f82786d60584e41382d1e150b000000000000020e1a25303b454d52545b5b5b5b5b5b5b5b6875818e9ba8b4c1ced9cdc0b3a69a8d8073675b5b5b5b5b5b5b5b5b5b5b585650483f34291d1105000000000b1824313e4b5764717e8a97a4b1bdcacdc0b4a79a8d8174727e8b9aa4afbbc8d4d1c5b8aca095887b6e6255483c31261a0f020000000000000000000000000000000004111d2935414b5564717e8a98a2aebac7d3d1c5b8aca095877b727f8b98a5b2becbd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3a47535f6a75828f99a4afbbc5cfdad5c9beb3a99f9590847c706b615f57534d4a4746443f43444146474a4d53565e616a6f7a818e939ea5afb9c3ced7e2efe1d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393938c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e45525e6b7885919eabb8c4d1cfc2b5a99c8f828082848687898b8c8e9092979597989a9c9e9fa3aba4a6a8aaabadb3b0b2b4b6b7b9bbc0bec0c2c3c5c6cac6c5c3c2c0bebdbeb6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000004101c2834404b55606d7a85929fa8b2bdcad4e0d7cbbfb4ab9f958d80736c61584e463d3428231c150c090300000000000000000000000000030a0e161d262d333f48505a606d78828f97a1adb9c1ced8dcd1c7bbafa49a8f82756b6054483c32271b0f01000000000000000000000000000000000000000000000000000000000005121f2b3744505b65737f8c9aa4afbbc8bfb4aa9d9083766a5f5342382d22170b0000000000000000000000000000000000000000000000000000000000000000000000060b13191b22272b2d2f3036393a3c3c3d3d3c3b3a38342f2e2d2a251f1c181f28343f4a545e69717e8a939da8b2bdbcb0a69f92877d6f685d52453f332935404b555f6a6f7c859298a1a9afb9bec5bfbab8b5b5afacacaeb5b4b8b9bec5c2bcb4aea79f959082796d665c51463c2f261b0c030000000000000009141f29333b4246484e4e4e4e4e4e4e5b6875818e9ba8b4c1ced9cdc0b3a69a8d8073675a4e4e4e4e4e4e4e4e4e4e4b49453f362d22170c01000000000b1824313e4b5764717e8a97a4b1bdcacdc0b3a79a8d807475828f9cacb6c0ccd8d0c3b7aa9d9083776a5f53473a2a20150a0000000000000000000000000000000000010d18242f3a4753606d7a86929facb8c5d0d4c8bcb1a7988b7e717e8b98a4b1becbd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d2b37434e58626f7c87939fa9b3bec9d5dacfc5bbb1a79f9691857d756e69615f57575453504950504c525456575f62686d737c848f939ea5afb7c1cbd1d5dce3e1d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9a9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f998c7f7366594c403326190d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071d2a3744505d6a7783909daab6c3d0cdc0b3a69a8d80747577797b7c7e8081838587888a8c8d8f9192999698999b9d9fa2a9a4a5a7a9abacafb5b1b3b5b7b8babec5ced0cecdcbcfc3b6a99c908376695d5043362a1d100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000006131f2c3845515c67727f8c98a2aebac4cedcddd3c7baaea3999083786d605a50463d342b2217110a030000000000000000000000000000000000040b141c2228363f44505c666d7a85929ea5afbcc6d0dcd8ccc0b6ac9e94897c6f63584e43372b1d120700000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eacb6c0c7baaea3988b7e7265574e422f261c1106000000000000000000000000000000000000000000000000000000000000000000020a11171e252a2d3337393c4041464748494a4949484745403f3b3a36312c28231c232e38424d57616c74818e96a0abb5bfbbafa39991847a6d605a50453c302f39434e585f6a6f7c8692979ea5adb3babec5c5c1c0bbb9b9bbbfc0c5c5c3bcb8b1aaa39f959083796d675d544b40342a1d140a0000000000000000020d17212930363a3b4242424242424e5b6875818e9ba8b4c1ced9cdc0b3a69a8d8073675a4d4242424242424242423e3d39342d241b110600000000000b1824313e4b5764717e8a97a4b1bdcaccc0b3a6998d80737a86929facb9c5d2d4c8bcb1a7998c7f7366584e43372b180e030000000000000000000000000000000000000713202c3945515d6775828f9baab4bfcad6cec1b4a89b8e81757e8a97a4b1bdcad6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23160906060606060606060606060606060606060606060606060606060606060606060606060606060606060101000000000000000000000000010f1b26323c47535f6a74818e97a1adb9c1cbd4d7cdc2b9b1a8a0979287817b746e69676461605b535d5d565e616366696e737a808691969ea6afb7c1c0c1c5cad2dae3d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9aa6acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaca6998c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1c2835424f5b6875828e9ba8b5c1cecec1b5a89b8e827569666c6e7071737576787a7c7d7f8182848687898b8d8e9092979597999a9c9e9fa3aba5a6a8aaabaeb4bcbfc7d0d9d8cfc2b5a99c8f8276695c4f4336291c100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000713202d3a4653606d7985919eaab4beccd6dfd5c9bdb2a89f92867c6f665c50483e342b221910060000000000000000000000000000000000000000020a11172428343f4a545e68717e8a939eaab4bfcbd6ddd2c7beb0a69c9083766a605447392f23180c0000000000000000000000000000000000000000000000000000000004101d2935404b5563707c8996a0acbec7c5b8ac9f92867a6d6054473c3121140a000000000000000000000000000000000000000000000000000000000000000000060b141c22283036383f4446494c4c525455565656565553514b4b4846423b38342e271e26303b45505a606d79849199a3aebbc0b5aba1968e81756c62574d42392e313c464e58606a6f7d858e939ea1a9aeb3b9babfc0c1c2c2c1c0bfbdb9b7b1aca79f98928c837a6d675d554b42392e22180b02000000000000000000050f171f252a2d2e3535353535424e5b6875818e9ba8b4c1ced9cdc0b3a69a8d8073675a4d40353535353535353531302d29221b12090000000000000b1824313e4b5764717e8a97a4b1bdcaccbfb2a6998c7f737d8a98a3aebac7d3d1c4b8aca095887b6e6255483c31261a080000000000000000000000000000000000000004111d2935404b5564717e8a98a2aebac6d3d1c5b8ab9e9285787d8a97a3b0bdcad6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f23161212121212121212121212121212121212121212121212121212121212121212121212121212121212120e0e0b0803000000000000000000000a15202b37434e58616d7a85929ea5afb9c2ccd6d4cbc2bab2a9a299938e87817b7774706d6c656a696a6b686d7073777b80858d9299a0a8b0b8b9b5b3b5b9c0c8d2ddd4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b2a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0d2d0c3b6a99d9083766a5b6061636466686a676d6f7072747677797b7c7e8082838587888a8c8e8f91929996989a9b9d9fa2aaadb5bfc9d4dbcec1b4a89b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000006131f2b37434e5865717e8b97a1adbcc5d0ded9cec5b9aca1968c7f736a5f544a3f362c221910070000000000000000000000000000000000000000000000061217232e38424c56616c75818e98a3aebac5d0dbd9d0c1b7ab9f94887c6f62554b4034291c10040000000000000000000000000000000000000000000000000000000613202c3945515d6774818e9ba8b2bdc9bdb2a99b8e8175685d5245392c20130200000000000000000000000000000000000000000000000000000000000000020a11171d262d333a41464950535659565e61626363636262605c555854534d4644403930292429333e45515d676f7c87929fa6b0bbbdb2a89e938b7e71695f544a403428343c464e58606b6f7a818a92979fa2aaacaeb4b3b4b5b5b4b4b2b2adaba7a09d9590867f786d685d554c433930271d10060000000000000000000000050d141a1e20212828282835424e5b6875818e9ba8b4c1ced9cdc0b3a69a8d8073675a4d4034282828282828282524211d171109000000000000000b1824313e4b5764717e8a97a4b1bdcaccbfb2a5998c7f74818e9aaab4bfcbd7d0c3b7aa9d908377695f53473a2a20150900000000000000000000000000000000000000010d18242f3a4753606d7a86929facb8c5d0d2c6b9ada197887b7d8996a3b0bcc9d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f231f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1b1a18140f08010000000000000000040f1b26313c46525e68707e8a939da6b0bac4ccd5d4ccc4bbb3aba49f99928e8884817d7a797877767777787a7d7f83888d92989fa3abb2bab6aea8a6a8aeb6c0cbd5d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3c0c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6bfb2a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98abb5c0ccd1c4b8ab9e918578675d53545658595b555d606264656769666d6e7071737577787a7c7d7f8183848688898b8d8f9092989ba3adb8c3cfd9ccc0b3a6998d8073665a4d4033271a0d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000815222e3b4754606a7784919da9b3beced7e2d4c8bcb1a79e9184796d60584e42382e241a10070000000000000000000000000000000000000000000000000006111c26303a44505a616e7b86929fa9b3becad6e2d3c7bcb0a69a8d8074675c5145382c1f14090000000000000000000000000000000000000000000000000000000714202d3a4753606d7a85929facb8c4c5b9ada196897d7063564c4135291d1104000000000000000000000000000000000000000000000000000000000000020b141b22272f383f444c52535b60626669686d6f6f70706f6e6d676865615e5753514a423d352f282935404b55606a727f8c949fa9b3bebaafa59f92867b6e665c51443d322a343d464f5960686d757e858d92989c9fa3aba7a8a8a8a8a7a6a8a19e9a95918b837b726d665d564c433a31271e150b0000000000000000000000000002090e1214151b1b1b2835424e5b6875818e9ba8b4c1ced9cdc0b3a69a8d8073675a4d4034271b1b1b1b1b1b181715110c0600000000000000000b1824313e4b5764717e8a97a4b1bdcacbbeb2a5988b7f7884919eabb7c4d1d4c8bcb1a7998c7f7266574d42372b180e0300000000000000000000000000000000000000000713202c3945515d6775828e9baab4bfcad5c9beb3a9988b7e7c8996a2afbcc9d5cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c2f2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c282724201a130b0200000000000000000a15202a36414c56616c74818e949fa8b2bac3ccd7d6cdc5bdb5afaba39f9a96918d8a878685848383848587898c9095999fa2aaaeb4bdb8aea49c9a9ca4aeb9c3ced9c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3c0cdd2d2d2d2d2d2d2d2d2d8d3d0cfc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9bfb2a6998c7f7366594c403326190d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8999a4afbbc7d2c6b9ac9f93867a6d605348494b4d4e4c51545557595a545c6061636566686a686d6f7172747678797b7d7e808283858b919ba7b3c0ccd8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000003101c28343f4a54626f7c8995a0acbbc4cfe0ded1c5b8aca0958b7e71675c51463c30261c12080000000000000000000000000000000000000000000000000000000a141e28323e46525e6973808d97a2adbac7d1dcd8cdc2b8ab9f9285796d6053473b30251a0e020000000000000000000000000000000000000000000000000005121e2a36424d5764717e8b98a2aebac6c4b8ab9e9184796d6053463a2f24190d010000000000000000000000000000000000000000000000000000000000000a141d262d333c424a50565e61656c6f7376787a7b7c7d7c7c7b7a7775726e6964605c544f45413a312c2f39434e58606c77828f97a1adb9c0baaea2989083786d60594f443a302b343d474f565e616c717a80858b8f9299989a9b9c9c9b9a999796918d89847e786e6a605c544c443a31281f150c03000000000000000000000000000000020507080f0f1b2835424e5b6875818e9ba8b4c1ced9cdc0b3a69a8d8073675a4d4034271a0f0f0f0f0f0b0b0805010000000000000000000b1824313e4b5764717e8a97a4b1bdcacbbeb1a5988b7e7b8896a1acb9c5d2d1c4b8aca095887b6e6155483c31261a0800000000000000000000000000000000000000000004101d2935404b5564717d8a98a2aebac6d3cfc1b4a89b8e817c8895a2afbbc8d5cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256493c3939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393433302b251d140b0100000000000000030d1925303a44505a606d79829096a0a8b1b9c1cbd1d7d0c7c0bbb5afaca8a09e9a9799929190909091929796999d9fa7abaeb4babfbab0a69c928d929ca7b1bcc8d4c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3c0d0d9e4dfdfdfdfe6dcd4cdc7c4c2bcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcb2a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86939facb9c6d2c8bbafa49a8a7d7063574a3d3e4042414547494a4c4e4a50535456585a5b565d606264666769666d6e7072737577787f8b98a5b2becbd5c9bdb2a896897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000006121f2c3844505c6674808d9aa8b1bdcdd6e1d5c9beb3a99d9083786c60554b40342a1e140a00000000000000000000000000000000000000000000000000000000020c16202a36424d57616d7a85929fabb5c0cbd7dfd3c6baada2978a7e7164574d42362a1e1205000000000000000000000000000000000000000000000000000714212d3a46535e6976828f9caab4bfc8bcb1a7998d8073665c504438281e130800000000000000000000000000000000000000000000000000000000000006111b262f383f444e545b60686d72787c7f8385878889898989888684827e7b76716d666059524c433e352c313c44505b656e7a85929ea4aeb9bfb4aa9f958d80736b60564c41362a2b343d444c525a61686d737a7e8286898b8d8e8f8f8e8d8c8a8884817d77716c665f57504a423a32281f160d030000000000000000000000000000000000000000020e1b2835414e5b6874818e9ba7b4c1cedacdc0b3a79a8d8074675a4d4134271a0e0202020200000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcacbbeb1a4988b7e7f8b98a8b2bdc9d5d0c3b6aa9d908377695f53473a2a201509000000000000000000000000000000000000000000010d18242f3a4753606d7986929facb8c5d0d1c4b7aa9e91847c8895a1aebbc8d4cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6256494545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454541403c362f261d1308000000000000000008131e28323e45515c676d7a849196a0a7b0bbc0c7cfd5d2ccc7c0bbb9b2acaaa7aba39f9e9d9c9d9e9ea2a9a6aaabb1b8babec3bab2a89f948d808d95a0acb8c5d1c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9aaab4bec7d2dde8f0f4e9ded4cac2bbb7b6b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0a6998c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d677784919daab7c4d1ccc0b6ac9a8d817467584e4337332f35393a3c3d3f413f444648494b4d4f4c52545557595b545c6061636567686a74808d9aa7b3c0cdd2c5b9ada196877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000713202d3a4653606d7985929eabb8c3cededfd2c6b9ada1978a7e71665b5043392e22180c020000000000000000000000000000000000000000000000000000000000050e1a25303b46525d6873808d99a3afbbc7d3e0d6cabeb3a99c8f8276695e52463a2d201407000000000000000000000000000000000000000000000000000815212e3b4854616e7b87939facb9c5c4b8ab9f95887b6e62544a3f3428160c0100000000000000000000000000000000000000000000000000000000000a1317222d38414950585f666c727a7f84898c8f929795969696959993918f8b87837e79706b605d564f473e3627333f49535e68707d8a929da7b1bcbcb1a79f93887d70685e52463f342a2b323a414650565e61676d72767a7c7e8081828281817f7d7b7874706b65605b544e443f38302820160d04000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4c0cddacdc0b4a79a8d8174675a4e4134271b090502000100000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcacabeb1a4978b7e828f9ba8b5c2ced4c8bcb1a7998c7f7266574d42372b1e12060000000000000000000000000000000000000000000007131f2c3945515d6775818e9baab4bfcad2c5b9aca096887c8895a2afbbc8d5cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625652525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252524e4c4841382f251a0f0300000000000000020c16202834404b555e686e7b8491959ea6afb5bdc2c9ced4d1cbc7c4bdb9b7b4b5afacabaaa9aaaaabadb3b2b6b8bcc3c6c0b9b1a8a1968f827883909daab7c3d1c7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d98a2acb6c0ccd8dde7f1e4d8cdc2b8b0aba9a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3998c7f7366594c403326190d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556774818e9aabb4bfcbd2c4b7ab9e9184786a5f53473b3025292c2d2f31322e34383a3b3d3e4042414547494a4c4e4a51535556585a5b667683909ca9b6c3cfd1c4b8ab9e918478695e52463a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000a1723303d4a5663707d8997a1adb9c6d2dfd8ccc0b6ac9e9285796d60544a3f30271d10060000000000000000000000000000000000000000000000000000000000000009141f2935414c56616e7b86929facb9c4cfdadbcfc5b9ac9f93877b6e6154483b2e23180c00000000000000000000000000000000000000000000000007131f2c38444f5966737f8c9aa4afbbc8bfb4aa9d9083766a5f5342382e23170b000000000000000000000000000000000000000000000000000000000008121c2527333f49535b606a6e787f868c9196999c9ea1a9a2a3a3aba49f9e9b9894908a847d746d68615950483e352d38414d56616c74808d95a0aab4bfbbafa49a91857a6d615b51463c31272930363e444c52555d6065676d6f7274757575757473706e696763605953504a423c342e261e160e0400000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3c0ccd9cec1b4a79b8e8174685b4e4131261a14110e090d0d0c0c0b090601000000000000000b1824313e4b5764717e8a97a4b1bdcacabdb1a4978a7e85929eabb8c5d1d1c4b8ab9f95887b6e6155483c31261a0e020000000000000000000000000000000000000000000004101d2935404b5564717d8a98a2aebac6d3c9bdb2a8978a7d8a97a4b0bdcad6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f625f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5b59534b41362b2014080000000000000000050e18232e39434c565f696e7b838f949fa3abb0b9bdc4c8cdd1d3cec9c5c4c0c0bbb9b8b7b6b6b7b8b9bebfc3c4c7c3bcb8afa7a09691847b74808d9aabb5c0cbc7bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7c86929aa4afbbc1cbd5dfe9dfd3c7bbb0a69f9c9696969696969696969696969696969696969696969696969696969696969696969696969696969696968c7f7366594c403326190d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3d4a5764707d8a99a3aebac7d2c5b9ada196887b6f62574d42362a1e202122242623282b2d2e3032333035393a3c3e3f41404446484a4b53606c7985929fabb8c5d2cec2b5a89b8f827568564d42362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000006121e2b37424e576874818e9ba9b3bec9d5e0d4c8bbafa49a8c8073665c5142382d1e150b0000000000000000000000000000000000000000000000000000000000000000030d1924303a46525e6975828e9ba9b2bec9d5e0d4c7bbafa4998c7f7265544a4034281c100400000000000000000000000000000000000000000000000915222f3b4854606b7784919eacb6c0c7baaea3988b7e7265584e4330261c110600000000000000000000000000000000000000000000000000000000040e1a242e373f44505b656c727c838c92989ea1a8a9abadb3afb0afb5afacaaa8a69f9c969189817a706b615a50473e352f3b444f59606d79839098a3aebac0b6aca1978f82756d62584e43392f23252a323a41464c5154555d6063656768696968676664615f5756544f46443f382f28231c140c040000000000000000000000000000000000000000000000000d192633404c5966737f8c99a6b2bfccd9cfc3b6a99c90837669584e43372b23201e1a1b1a1919191815120d060000000000000b1824313e4b5764717e8a97a4b1bdcad0c3b6aa9d90839097a1adb9c6d2d0c3b6aa9d908377695f53463a2a1f15090000000000000000000000000000000000000000000000000c18242f3a4753606d7985929facb8c5d0cec3b6aa9d9083909daab6c3d0d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645d53483c3024180b00000000000000000007121d27303a444d575f696e7a828c92999fa6acb2b8bcc3c5c8cecfd1d1d1cbc7c5c4c3c3c3c4c5c6cac8c5c2bcb7b1aba59d9590847b6e707d8a99a3afbbc1c1bbaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000815212e3a47535f6a707e88939fa5afb9c3cdd7e1ddd0c4b7ab9f948f898989898989898989898989898989898989898989898989898989898989898989898989898989898989897f7366594c403326190d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5d0c9bdb2a89a8d8074695e52463b30261c14161719171c1f202123252724292c2d2f31332e34383a3b414c5663707d8997a2adbac6d3c9bdb2a8998c7f7266594c3f3025190e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000814212e3a47535f6a7884919eabb8c4cfdadfd2c6b9ac9f93877b6e61544b402f261c0c0300000000000000000000000000000000000000000000000000000000000000000008131e2a36424d5763707c8997a1adb9c6d2dfd7ccc0b5ab9c8f8276665c5144382c1f12060000000000000000000000000000000000000000000004101d2935404b55636f7c8996a0acbec7c5b9ac9f92867a6d6054473c3121140a00000000000000000000000000000000000000000000000000000000020c16202c363f49525c606c777f8690959fa2aaadb2b6b8b9bebcbcbcc0bbb9b7b5b0aba8a09e938e847d706c61594f473d33323e45515c676f7c86929fa6b0bbbeb2a99e948b7f726a5f554b40342920202930363a4145474b515456585a5b5c5c5b5a595755534d4948443d38332d261d17110a02000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2bed1dcd1c5b8ab9e9285786a5f53473c342e2d2a25282726262524221e18110901000000000b1824313e4b5764717e8a97a4b1bdcad1c4b8aba0959095a0a9b3becad4c8bcb1a7998c7f7266574d42362a180e0300000000000000000000000000000000000000000000000007131f2c3845515d6775818e9baab4bfcad1c4b8aca0959095a0acb8c4d1d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e2d5c8bcafa295897c7878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878746f64594c4033271a0e000000000000000000000b151e29323b454d565e686d777f8790949ea0a8abb1b7b8bdc0c2c4c6c7ccd2c9c9d2ccc7c6c4c2c0bdb8b7b1aba79f9d938e837b6e696d7a86929facb4b4b4b4aea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e58616c73808c939ea7b1bbc5cfd9dccfc2b6a99c8f827d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6776828f9ca9b3becacfc4b9ac9f92867b6e61574d42382e23171107060b1012131516181a191d202122242623282c2f3846525e6875828e9ba9b3becad2c5b9aca096887b6f6255483c2f221509000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000815222f3b4855626e7b8896a1adb9c5d2e1d8ccc0b6ac9c908376695e5242392e1d140a00000000000000000000000000000000000000000000000000000000000000000000020e1a25303b4653606c7884919eabb8c4cfdbddd2c5b8ac9f9285796d6053463a2d2013070000000000000000000000000000000000000000000006131f2c3945515d6774818e9aa8b2bdc9beb3a99b8e8275685d5245392c2013020000000000000000000000000000000000000000000000000000000008131e28323e48515b636e74808c92989fa7aeb4b9bdc2c5c6c5c3c2c2c3c5c6c4c2bcb7b2aca59d9691877e706b61594f453c3134404b555f6a727f8b949ea9b3bebbb0a69f92867c6f675c51453e32291d1e252a2f35393a414547494b4d4e4f4f4e4e4c4a4846423d3c38332b28221c140b060000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97abb5c0cbd7d2c6b9ada197887b6e62584e45403b3a36303434333232312e29231b1309000000000b1824313e4b5764717e8a97a4b1bdcad4c8bcb1a7a09da0a7b1bbc5cfd1c4b8ab9f95887b6e6155483b31261a080000000000000000000000000000000000000000000000000004101d2935404b5564707d8a98a2aebac6d3c8bcb1a7a09da0a7b1bcc8d4d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3dfd2c5b8ac9f928685858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858174675b4e4134281b0e00000000000000000000030c172029333b444d565d656c727c838b91969d9fa7aaacb2b3b6b7b9bbc0bcbcbcbbc0bbb9b7b5b4b1acaaa79f9d95908981796e695f677683909ca8a8a8a8a8a8a194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000030f1b26313c46505a606c77818f95a0a9b3bdc7d1dcd0c4b7ab9f948a7e7170707070707070707070707070707070707070707070707070707070707070707070707070707070706e695f53463a2d211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935404b5564717e8b97a2adbac7d2c7baaea3988d8074695e544a3f34282318120c07030607080a0b080d1113141617141b222d38424e58616d7a86929facb9c5d0d1c4b7aa9e9184776a5f53473a2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000030f1b27333f495365727f8b98a8b2bdc9d5e0d4c8bbafa49a8b7f7265574d4230271d0b02000000000000000000000000000000000000000000000000000000000000000000000009141f2b3844505b6674808d9aa9b3becad6dfd3c6baaea298897c6f6356493c2f24180c000000000000000000000000000000000000000000000714202d3a4753606d7985929fabb8c4c6b9ada1978a7d7063564c4135291d1104000000000000000000000000000000000000000000000000000000020b1924303a44505a636d73808d929fa3aab1babfc6c8c5beb9b8b6b5b5b7b8babfc6c7c4bdb9afa9a19992877d706b60574d42372f39434e58626d75828f97a1acb6c0baaea3989083796d60594f443b2f261b191e24292c2f35393a3c3f414242424241403d3b3a37312f2c271f1c17110a02000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8999a3afbbc7d3d5c9beb3a99a8d80746a5f57514b474642424140403f3f3e3a342d251b11060000000b1824313e4b5764717e8a97a4b1bdcad9cdc3b9b1abaaabb1b9c3cdd7d0c3b6a99d908376695f53463a2a1f140900000000000000000000000000000000000000000000000000000c18242f3a4753606d7985929facb8c5d0cdc3b9b1acaaacb1b9c3cdd9d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3dfd3c6baaea29892929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292928e8175685b4e4235281b0f0000000000000000000000050e172129323b444c535b606a6f787e848a9095999da0a8a7a9abacafb5afafafafb5afacaaa9a7a8a09d9a95908a837d746d675f576673808c999b9b9b9b9b9b9b94887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343e44505b656d79839197a2abb5c0cbd7d3c7bbb0a69f92867c6f68636363636363636363636363636363636363636363636363636363636363636363636363636363615f574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3a4753606d7985929facb6c0cccbbfb4aa9f92867b6e665c50443e3529241d18120d0706030002000205070c11171d262d333f4a545f6a73808d99a3aebac7d4c8bcb1a79a8d807467584e43372b1f1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000005121f2b3744505b6575828f9ba8b5c2cfdadfd2c6b9ac9f93877b6e6154483b3021150b000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54636f7c8997a2adb9c6d2dfd6cabfb4aa998c7f7366554b4035291d1004000000000000000000000000000000000000000005121e2a36424d5764717e8a98a2aebac6c4b8ab9e9185796d6053463a3024190d010000000000000000000000000000000000000000000000000000000a141d2935414c56616c727f8c929ca4aeb4bcc2c7c0bbb9b3adaba9a8a8aaacaeb4b8bcc2c9c0bbb2aba39992867d70695f53463e32313c46515b616d7a85919aa4afbbbfb4aaa0958d80746b61564c41382d221713191d2024292c2d303234353636353433312e2d2b2622201c160f0b060000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7986929facb9c5d2dacfc5b8ac9f92867c6f69605c5554524d4f4e4d4c4c4c4a463f372d23180d0100000b1824313e4b5764717e8a97a4b1bdcad7d5cbc3bcb8b6b8bcc3cbd5d4c8bcb1a7988c7f7265574d42362a180e03000000000000000000000000000000000000000000000000000007131f2c3845515c6775818e9baab3becad6cbc3bcb8b6b8bcc3cbd5dfd6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3e2d6cabfb4aaa29f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9b8e8175685b4e4235281b0f000000000000000000000000060f172029323a414950585f656c71787e83888c9196979a9c9e9fa4aba2a3a3a2aba49f9e9c9a9795918d88837e78706b605c5556636f7c898e8e8e8e8e8e8e8e8e887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000030e182227333f49535d676e7b859299a3afbbc1cbd4cdc2baaea29891847a6d665c5656565656565656565656565656565656565656565656565656565656565656565656565655534d453b31261a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2c3945515d6774808d9aa4afbbc7d1c6baaea3998f82786d605a50473f352f28231c1815120f0a0e090e1214181c23282f383f44505b666f7c87929fabb4bfcbd1c4b8ab9f95887c6f6255493c31261a0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000613202d394653606c7985929fabb8c5d2deddd0c3b7aa9d908377695e52463a2d201403000000000000000000000000000000000000000000000000000000000000000000000000000b17222d394653606c7885929eabb8c5d1dedbd0c2b6a99c8f8376675d5145382c1f130600000000000000000000000000000000000000000714212d3a46535e6976828f9caab4bec8bcb1a79a8d8073665c504438281e130800000000000000000000000000000000000000000000000000000006111b262f3846525d68717e8a919ca4aebabfc6c4beb6afaca9a19e9d9b9c9d9fa3aaabb1babfc5c4bdb4aba39892867b6e615a50443a30343f46525e68707d88939fa7b1bcbcb1a79d928a7d70685e53493f33271f160d1113181d20212325272829292827262422211e1a1613100b03000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c677784909daab7c3cfdad3c6baaea29891847b736d6764615e575c5b5a5959585651493f34291e120600000b1824313e4b5764717e8a97a4b1bdcad7ddd5cdc8c4c3c4c8cdd5ddd1c4b8ab9f95877b6e6154483b31261a0800000000000000000000000000000000000000000000000000000004101c2934404b5564707d8a98a2aebac6d3d5cdc8c4c3c4c8cdd5dde7d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3e7dbd0c5bcb4aeacabababababababababababababababababababababababababababababababababababababababababababababababa89b8e8175685b4e4235281b0f00000000000000000000000000060e1720282f383f444e535b60666d71777b8084878a8d8f9193999595969695959993918f8d8a8784807b76716c656059514b53606d7981818181818181818181817a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000000000000000000061017222d38414b555f69707d87929fa5afb9c3cdd6cabfb4aaa1968f82786d605a504a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4846423b332a1f14090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b55626f7c87939fabb5c0cbcbbfb4ab9f948d80736c615951454039342e2924211f1b1c1b1c1a1e2123292e343b4149505c606c78839099a3afbdc6d1c9bdb2a89d9083766a5f54473b2a20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000815222e3b4855616e7b8897a2adbac6d3dfd8ccc0b6ac9a8d807467574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3744505b6575828f9ba8b5c2d0dcdfd2c5b9ac9f92867a6d6053473a2d20140700000000000000000000000000000000000000000815212e3b4854616e7b87939facb9c5c4b8ab9f95887b6f62544a3f3428160c020000000000000000000000000000000000000000000000000000000b17222d38414f59616d7a85929ea3adb6bfcbc3bab2aca49f9b9792908f8f9092989d9fa7aeb4bcc5c6bdb4aaa2988f82766c61564c41352a36414c56606b73808d95a0aab4bfb9aea49e92857a6e655b50443c31281d1207070d11131416181a1b1c1c1b1b19171514120e0907040000000000000000000000000000000000000000000000000000000000000000000004101c2934404b556874818e9ba9b3becad6d6cabfb4aaa19691867f7975716e696a686767666565625b51463a2e22150900000b1824313e4b5764717e8a97a4b1bdcad7e6dfd9d4d1d0d1d4d9dfdcd0c3b6a99d908376695e53463a291f1409000000000000000000000000000000000000000000000000000000000c18232f3a4653606d7985929fabb8c5d0dbd9d4d1d0d1d4d9dfe7e3d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3ece2d7cec5bfbab8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b4a89b8e8175685b4e4235281b0f0000000000000000000000000000050e161d262d333c414950545c60646a6f73777b7d808384868888898989888887868482817e7a77736e6a64605b534f4545515c666d75757575757575757575756e685e5246392d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3a434d57606b727f8c939ea7b1bbc4cfd0c6bcb2a89f948d80736c61584e443d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a36312a21180e0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3947535f6a75818e99a3afbbc5cfc6bdb0a69d928a7e716b635b514b444039352f2e2b26292828262b2d2f34383f444d535b606e74808d959fabb5c0cfd2c5b9ada1968b7e7164584e43372b180e0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000a1724313d4a5764707d8a97a9b3becad6e0d4c8bbafa49a8a7d7064574a3d30251a0e0200000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495365727f8b98aab4bfcbd6e0d3c7baaea398897c6f6256493c2f2316090000000000000000000000000000000000000007131f2c38434f5966737f8c9aa4afbbc8bfb4ab9d9083776a5f5342382e23170b000000000000000000000000000000000000000000000000000000030f1b27333f4953606b74818e97a1adb5bfc8c3b9b1a8a19a938e898583828284868b90959fa2aab4bcc5c6bcb4aa9f948a7e71685d52463a2f303a444f59606d79839098a2aebac0b9ada1978f82776c60584e43392f24180f0501040607090c0e0f0f0f0f0e0d0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000c18232f3e4b5864717e8b97a1adb9c7d1dbd0c6bcb2a8a198928c85827e7b78777574737372726d62564a3e3124180b00000b1824313e4b5764717e8a97a4b1bdcad7e4eae4e0dddddde0e4e0d4c7bcb1a7988c7f7265574d42362a1e12050000000000000000000000000000000000000000000000000000000007131f2c3845515c6775818e9baab3becad6e2e0dedddee0e4eaf1e3d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6e3e3e9e0d7d0cac6c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000040b141b22272f383f444a5053585f6266696e71747678797b7b7c7c7c7c7b7b79777674716e6867625f58535049413d404b545c606868686868686868686868615e564c41362a1e110500000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d28313c454f59626d74818e959fa9b3bdc6d1cec4bab0a69d928a7e716a60564c42392e3030303030303030303030303030303030303030303030303030303030302e2d2a261f180f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2b37434e58626e7b87929fa9b3bec9cfc2b8aea49f92867d726d605d55514a45403c3a373136353531373a3b40454a50565e656c73808c929da7b1bdc7d1c8bdb1a89e9184796d6053473c32261b070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000d1a2633404d596673808c99a6b3bfd0dbdfd2c6b9ac9f93867a6d6154473a2e2114090000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3c4955626f7c8898a3aebac7d3e0d7cbbfb4aa978b7e7164584b3e31251806000000000000000000000000000000000000000915222f3b4854606b7784919eacb6c0c7baaea3998b7f7265584e4330261c110600000000000000000000000000000000000000000000000000000005121f2b3744505b656f7c88939fa9b3bec7c4bab1a7a0969188817d79767575777a7e838b9298a2aab4bcc6c6bcb0a69e92857a6d61554b413529323d45515c666e7b86929fa5afbabeb3a99f948c7f726a5f554b40352921170b02000000000001020303020100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929eabb5c0cbd7d7cec4bab2aaa29f97928e8a8785838281807f7f7f7265584c3f3225190c00000b1824313e4b5764717e8a97a4b1bdcad7e4f5f0eceae9eaeceaddd1c4b8ab9f95877b6e6154483b31251a0e020000000000000000000000000000000000000000000000000000000004101c2834404b5564707d8a98a2aebac6d3dfeceae9eaecf0f5f0e3d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdcad6d6d6d6d6d6dbd6d3d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2cec1b4a89b8e8175685b4e4235281b0f00000000000000000000000000000000020a11171d262d33383f44464e5355575e61646769666d6e6f6f70706f6e6e6d66696764615e5655534e46443f382f39424b51535b5b5b5b5b5b5b5b5b5b5b54524c443b3025190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000020b161f2a333d47515b606d79839097a1abb4bfcbd7ccc2b8aea49f92867c6f685e544a403428232323232323232323232323232323232323232323232323232323232322211e1a140e0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010f1a26313c47535f6974818e97a1adb9c1cccac0baaea29892877f746d67605c54514b48474344434142434246484b51545c60686e777f8c929ca4aeb9c2cfccc4b8aca0958b7e71675c5145382a20150a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100030f1c28333f4a546875828f9ba8b5c2cedbddd1c4b7aa9e918477685e5246392d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000613202d3a4653606d7986929facb8c5d2dfdcd1c0b3a6998d8073665a4d402d22170b00000000000000000000000000000000000004101d2935404b55636f7c8996a0acbec7c5b9ac9f92867a6d6154473c3121140a000000000000000000000000000000000000000000000000000000000613202d394653606c7883909aa4afbbc5c7bdb2a8a09590847d75706c666869676d71787f869298a2aab4bfcbc2b9ada1978d8074675d5145392c2834404b545f69717e8b939ea8b2bdbbb0a69f92867c6f675d51453e33291d140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515d6773808d99a3afbbc4cdd7d6ccc4bcb4aea9a29f9b979792908f8e8d8c8c83776a5d5144372a1e1104000b1824313e4b5764717e8a97a4b1bdcad7e4f0f0f0f0f0f0f0e4d8ccc0b6ac9d908376695e53463a291f14090000000000000000000000000000000000000000000000000000000000000c18232e3a4653606d7985929fabb8c5d0dbe6f2f0f0f0f0f0f0e3d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdc9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c1b4a89b8e8175685b4e4235281b0f000000000000000000000000000000000000060b141b22272e34383c4347484d5254575a545c606162626363626261605c545a5754524d4847433c37332d2730394045464e4e4e4e4e4e4e4e4e4e4e4746413b32291e140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18212b353f45515c676e7b859199a3aebac0cad4cac0baaea39891847a6d665c51443f342b201717171717171717171717171717171717171717171717171717171514120e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202b37424d57616d7a85929ea5afbac3cecabfb4aaa299938c8179726d66605d5555534e504f4e4f504d5355555c60666d717a828c929ca4aeb6c0cbcec4baafa59d9184786d60554b4034291c10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110006121f2b3844505b667784919eaab7c4d1dddbcfc2b5a89c8f827569564c41362a1d110500000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667783909daab6c3d0dddbcec1b5a89b8e82756853493f33271b0f03000000000000000000000000000000000006131f2c3845515d6774818e9aa8b2bdc9beb3a99b8e8275685d5246392d20130200000000000000000000000000000000000000000000000000000005111d2935414c5663707d8995a0acb6c0ccc0b5aba09690837a706b63605b54555d60656c727c869298a3aebac4c9beb3a99f92857a6d6054473c32262e39424d57626c75818e96a1abb5c0baaea3999184796d605a50453b2f261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b55616e7b86929fa8b2bbc5cdd6d6cec6bfbab3adaba8a9a29f9d9b9a9a998e8174675b4e4134281b0e01000b1824313e4b5764717e8a97a4b1bdcad7e3e3e3e3e3e3e3e3e0d4c8bbafa49a8c7f7265574d42362a170d0300000000000000000000000000000000000000000000000000000000000007131f2c3845515c6774818e9ba9b3becad6e2e3e3e3e3e3e3e3e3d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdb4a89b8e8175685b4e4235281b0f00000000000000000000000000000000000000020a11171c23282b31373a3c4246484a4d4b5153555556565655555453514b4e4b4746413b3a37312b27221e272e34383a42424242424242424242423b3936302920170d020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a232934404b555e696f7d87929fa4aeb8c2ccd6cbbfb4aaa1969082786d605a50463d32291e150b0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e1a26313c46525e68717e8a939ea8b2bcc5cfc6bcb4aba49f938e847f79716d6765625f585d5c5b5b5d575f6165676d72787e858f949ca4adb6bfc8d0c6bcb2a89d92897d70665c5043392f23180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000613202d394653606c7986929facb9c5d2dfd9ccc0b3a6998d8073665a4d403025190d0100000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546874818e9ba7b4c1cedaddd0c3b7aa9d908477655b5044372b1f120500000000000000000000000000000000000714202d3a4753606d7985929fabb8c3c6b9ada1978a7d7063564c4135291d11050000000000000000000000000000000000000000000000000000000713202d3946525d6875818e9ba7b1bec7c7bbafa49991847a6e68605953504a4b51535b606a707d86929fa8b2bdc9c5baaea2988b7e7165584e43372b27303c45505a606d7a849199a4afbbbfb4aba0968e81746c61574d42382d22170d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3946525e6974818e96a0a9b3bbc3cad0d6d0cac5bebab8b5b3adabaaa8a7aa988b7e7165584b3e3225180b00000b1824313e4b5764717e8a97a4b1bdcad6d6d6d6d6d6d6d6d6d6d2c6b9ac9f93877b6e6154483b31251a080000000000000000000000000000000000000000000000000000000000000004101c2834404b5563707d8a97a2adbac6d3d6d6d6d6d6d6d6d6d6d6cabdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0a89b8e8175685b4e4235281b0f000000000000000000000000000000000000000000060b11171c1f262b2e30363a3b3e414045464848494949494848464540413e3b3936302e2b261f1b17151d23282c2d35353535353535353535352e2d2a251e170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081118232f39434d57606b717e8b929da6b0bac4ced0c6bcb2a89f948d80746c62584e443b30271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915202a36414c56616c75828f96a0aab3bcc6cec6bdb5afa59e96918b847e7a76726f6a6b6a696868696a696e7275797e848a92979fa6adb6bfc8d2c7beb4aaa1968e81746b60544a3f31271d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000814212e3b4754616e7b8799a3afbbc7d3e0d7cabeb1a4978b7e7164584b3e3125180800000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3f4c5966727f8c99a5b2bfccd8dfd2c5b8ac9f9285796c605346392d2013060000000000000000000000000000000005121e2a36424d5764717e8a98a2aebac6c4b8ab9e9185796d6053463a3024190d010000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c3cbbfb4aa9f93877c6f685e564f46443f4145495058606b737f8c96a0acb9c5cabfb4aa9d9083776a5f53473b2e212a333f45525d686f7d87939fa7b1bcbdb2a89d938a7e71695e544a3f33281f160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2a36424d57606d79849197a1a9b1babfc6cacfd3d0cac6c5c1bebab8b6b5aea298887b6f6255483c2f22150900000b1824313e4b5764717e8a97a4b1bdc9c9c9c9c9c9c9c9c9c9c9ccc0b6ac9c908376695e52463a291f140900000000000000000000000000000000000000000000000000000000000000000c18232e3a4653606d7985929fabb8c5cfc9c9c9c9c9c9c9c9c9c9c9bdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a97a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a39b8e8175685b4e4235281b0f0000000000000000000000000000000000000000000000060b10151a1f21252a2d2e312e34383a3b3c3c3d3d3c3b3b3a38342e312e2d2a25211f1a150f0b0b12181c1f20282828282828282828282821201e19140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313b454f59626c74808d949fa8b2bcc6d0cec4bab0a69d928b7e716a60564d42392e231810070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d1925303a44505a606d79849198a2aab4bcc6cec7c0bbafa9a19e96918b86827f7b7978777674757677787b7e82858b91969ea1a9b0b8bfc8d0c7c0b6aca2989184796d60594f42382e1f150b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000916232f3c4956626f7c8995abb5c0cbd7e3d5c8bcafa295897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000061724313d4a5764707d8a97a3b0bdd2dde0d3c7baaea298877b6e6154483b2e211508000000000000000000000000000000000714202d3a46525e6976828f9caab3bec8bcb1a79a8d8073665c504438281e130800000000000000000000000000000000000000000000000000000004101c2934404b5565727f8b98a3aebac7c7baaea3988e81746a60564c443d383335383f444f59606d7984919eaab4becac5b8ab9f95887c6f6255493c2e23212935414c56606b73808c959faab3bebaafa59f92857b6e665b50443d31281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a25303b45515d676f7c859297a0a7aeb4babec5c6cad0d0d2d0cac6c5c3b8ac9f9285796d6053463a2d20130700000b1824313e4b5764717e8a97a4b1bdbdbdbdbdbdbdbdbdbdbdbdbdbbafa49a8b7f7265574d42362a170d03000000000000000000000000000000000000000000000000000000000000000007131f2c3845515c6674818e9ba9b3bebdbdbdbdbdbdbdbdbdbdbdbdbdb0a3978a7d7064574a3d3124170a000a1724313d4a5764707d8a969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696968e8175685b4e4235281b0f00000000000000000000000000000000000000000000000000030a0f12151a1e20212423282c2d2e2f2f30302f2f2e2d2c28232421201e1914120f09030000070c1013131b1b1b1b1b1b1b1b1b1b1b1414110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f29333d46505a606d78828f96a1aab4bfcad6ccc2b8aea49f92867c6f685e544b40342823190f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323e45515d676e7b869298a3aab4bcc4ccccc1bbb2ada8a19e99928f8c88868483828182838485888b8e92979ea0a8adb3bbc2cacfc6beb6afa49a92867c6f675d51473d30261c0d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000a1724313d4a5764707d8a97a3b0bdd1dce2d6cabeb3a994877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995acb6c0ccd8e2d6cabfb4aa96897c706356493d3023160a000000000000000000000000000000000815212e3b4854616e7b87939facb9c5c4b8ab9f95887c6f62544a3f3428160c0200000000000000000000000000000000000000000000000000000006131f2c3845515c677683909daab4bfcbc5b8ac9f92867a6d61584e443b322b28292d333d45515c67717e8b98a2aebac6c8bcb1a7998d807366544a3f34281c24303a444f59606d78839098a2aebac0baada2979082786c60584e433a2f24190f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2935404b555f6a6f7c8590959fa2aaadb3b8babfc2c4c5c7cbd1cbc3b6a99c908376665c5044382b1f120600000b1824313e4b5764717e8a97a4b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0ac9f93877b6e6154473b30251a0800000000000000000000000000000000000000000000000000000000000000000004101c2834404b5463707d8a97a2adb0b0b0b0b0b0b0b0b0b0b0b0b0b0b0a3978a7d7064574a3d3124170a000a1724313d4a5764707e8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8175685b4e4235281b0f0000000000000000000000000000000000000000000000000000000306090e12141517181c1f202222232323222221201f1c18181414110e0806020000000000000406070f0f0f0f0f0f0f0f0f0f0f0807050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17202b343f44505c666d7a849198a2aebac0cad3cac0baaea39891847a6e665c51453f352b21170d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202935414c555f69707d869298a2aab2bac2cacdc4bdb9b2acaba39f9c98999291908f8e8e90919297989b9ea2a9acb2b9bec5cdccc4bdb4aca49f93887e706a5f554b41352b1e140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000c1825323f4b5865727e8b98a5b1becbd8dfd2c6b9ada19786796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b879aa4afbbc8d4e0dbd0bdb0a3978a7d7064574a3d3124170a00000000000000000000000000000007131f2c38434e5866727f8c99a4afbbc7bfb5ab9d9083776a5f5342382e23170c000000000000000000000000000000000000000000000000000000000714202d3a4753606d7986929facb9c5cabeb3aa9b8e8175685e52463c3229201c1b222934404b55606d7985929fabb8c5cdc3b6a99c908376665c5044382c1f1e28323d44505c666e7b85929fa5afbabeb3a99f948c7f736a60554c41352921180c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d18242f3a434e58606a6f7b838c92989fa2a9acaeb4b5b7b9bbc0bebfc0b3a69a8d807367544a3f34281c100300000b1824313e4b5764717e8a97a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3ab9c908376695e52463a291f1409000000000000000000000000000000000000000000000000000000000000000000000c18232e3a4653606d7985929fa3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3978a7d7064574a3d3124170a000814212e3b4754616e7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f6255493c2f22160900000000000000000000000000000000000000000000000000000000000002050708070c10131315151616161615151313100c07080705020000000000000000000000000202020202020202020202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e192228343f4a545e686f7c86929fa4aeb8c1ccd7cbbfb4aaa1969082786d605b51473d33291f150b0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e19242f3a434d57606b707d869298a1a8b0babfc5cec9c4bdb9b4aeaca9aba39f9e9d9c9b9b9c9d9ea2a9a8abadb3b9bdc4c9cec9c1bab2aba39a938b7f726c61584e433a2f231a0c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000d1a2633404d596673808c99a6b3bfccd9ded1c5b8ab9e928578675c5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939facb9c6d2dfd7cabdb1a4978a7e7164574b3e3124180b0000000000000000000000000000000915222e3b4854606a7784919dabb5c0c7bbaea3998b7f7265584e4330261c1106000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8999a3aebac7c6baaea2988a7d7063564c41342b20170f1118232f3945515d6774818e9ba7b4c1cfc5b8ac9f9285796d6053463a2d20162028343f4a545f69717e8a939ea8b2bdbbb0a69f92877c6f675d51453e332a1e150a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313c464e5860696e787f868d92979b9fa2aaa8aaacafb5b1b2b3b3a9978a7d7164574a3e2e23170b0000000b1824313e4b5764717e8a969696969696969696969696969696969696998b7f7265574d42362a1e11050000000000000000000000000000000000000000000000000000000000000000000007121f2c3844515c6674818e969696969696969696969696969696969696968a7d7064574a3d3124170a000714202d3946525e686e7070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706f6a5f53473b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000406070809090a0a090808070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071017232e38424c565f6a717e8a929ca6b0bac3ced1c6bcb2a99f948e81746d62594f453b31271d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313c454f59616b707d8691969fa6aeb4bcc1c7ccc9c6bfbab9b6b4aeacabaaa9a7a8a9aaabadb3b5b8b9bec5c9cec9c4bdb9afa8a19992887f726d625a50463c31281d1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000d1a2734404d5a6773808d9aa6b3c0cdd9ddd0c4b7aa9d9184776a554b4034281c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844515c667885929eabb8c5d1ded7cbbeb1a4988b7e7165584b3e3225180b000000000000000000000000000004101d2935404b55626f7c8996a0acbdc7c5b9ac9f92867a6d6154473c3121150a00000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98abb4bfcbc5b8ab9f9285796d6053463a3020190e0507121d2935404b5564707d8a97a9b3bec9c6baaea298887c6f6255493c2f221617232e38424d57616c74818e96a0abb5c0bbafa39991847a6d605a50453b30261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a343d464e575e666d727b80858a8e9298989b9d9fa3aba4a5a6a7a197877b6e6154483b2e2115060000000b1824313e4b5764717e8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a877b6e6154473b30251a0e020000000000000000000000000000000000000000000000000000000000000000000004101c2834404a5463707d898a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a7d7064574a3d3124170a0005111e2a36414c565e61636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363625f584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303a444e58616c73808d949ea8b2bcc5d0cfc4bbb0a69d938b7f726b60574d43392f2318110700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a333d474f59616b707c848f949fa2aab0b7bbc1c6cacbc7c5c2bfbab9b7b6b5b4b5b6b7b8b9bec1c5c6cacec8c4beb9b2aca59e9691877e726d625b51483e342a1f160c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000e1b2734414e5a6774818d9aa7b4c0cddaddd0c3b6aa9d9083776a5d50442e23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a546b7884919eabb7c4d1ded8cbbfb2a5988c7f7265594c3f3226190c000000000000000000000000000006131f2c3845515d6774818e9aa8b2bdc9beb3a99b8f8275685e5246392d20130300000000000000000000000000000000000000000000000000000000020f1c2835424f5b6875828e9ba8b5c1d1c2b6a99c8f8376665c5044382b1f120700010c18242f3b4854616e7b8797a1adb9c6cabfb4aa988b7e7265584b3f322518111c26303b45505a606d79849199a3afbbc0b5aba0968e81756c61574d42382e23170e0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18222b343d454d545c60686e73797e8285898c8f9192999697989a9a9b928578695e53463a2d2114070000000814212e3b4754616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d70695e52463a291f14090000000000000000000000000000000000000000000000000000000000000000000000000c18232e3a4653606d787d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7a6e6154473b2e21140800010d1925303b444c525457575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575755534e463c32261b0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005090d0f1013131313131313131313131313130a090703000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e29323c46505a606c78828f96a0a9b3bdc7d2cdc2b9afa59f92877d6f695e554b40342923190f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18212b353d474f59616a6f7a828b92989ea6aab0b8babec5c6cacfcbc7c5c4c3c2c1c1c3c4c5c6cacfcec8c5c3bcb8b2ada8a09e938f847c716c625b51493f362c22190d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000e1b2835414e5b6874818e9ba7b4c1cedadccfc3b6a99c908376695d5043362a1d07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e44515e6a7784919daab7c4d0ddd9ccbfb2a6998c7f7366594c403326190d00000000000000000000000000000714202d3a4753606d7985929fabb8c3c6b9ada1978a7d7063564c41362a1d110500000000000000000000000000000000000000000000000000000000030f1c28333f4a546a7784919daab7c4cdc0b3a69a8d807367544a3f34281c100300000714202d3a46525e697885929eabb8c5d0c1b4a79a8e8174675b4e4134281b0a151e29333e45515d676f7c87929fa6b0bbbdb2a89e938a7e71695f544a3f342820160c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061019222b333b424a51565e61676d7175797c7f82848688898b8c8d8d8e8f827569574d42362a1e12050000000714202d3a46525e696e7070707070707070707070707070707070707070706b60564d42362a170d0200000000000000000000000000000000000000000000000000000000000000000000000007121f2c3844515c666d7070707070707070707070707070707070707070706e685e5246392d201407000008141e29323b4146474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4947433c342a20150a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1015191c1c2020202020202020202020202020161613100b040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17202a343e44505b666d79849197a2abb5c0ccd7cbc0bbaea39991857b6e675c51453f352b21170d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a232c353d474f585f686d787f868f939c9ea6abaeb3b8b9bec1c3c4c6c9cfc8c9c9d1cbc7c5c4c2c0bcb8b7b1aca9a19e96918a817a6f6a615a51493f372d241a10070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000f1b2835424e5b6875818e9ba8b4c1cedbdccfc2b5a99c8f8276695c4f4336291c1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000071e2a3744515d6a7784909daab7c3d0ddd9cdc0b3a69a8d8073675a4d4034271a0d0000000000000000000000000005111e2a36424d5764717e8a97a2adbac6c5b8ab9e9285796d6053463a3025190d010000000000000000000000000000000000000000000000000000000006121f2b3844505b667885929fabb8c5cabdb1a4978a7e7164574b3e2e23170b00000005121e2a36424d576976828f9ca9b5c2cec1b5a89b8e8275685b4f4235281c0f0c17212935414b55606a727f8c949fa9b3bebaafa59f92867b6e665c50443d32281e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000710192129303940444d52555d6064676d6f727577797b7d7e7f808181827e7164584b3e31251a0e0200000005111e2a36424d575e6163636363636363636363636363636363636363636360594f443b302519050000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a545c60636363636363636363636363636363636363636363615e564c41362a1e11050000020d1720293036393b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b37322a22180e040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c141b212628292d2d2d2d2d2d2d2d2d2d2d2d2d2d2322201b160f070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e182228333f4a545d676e7b859299a4afbbc1cbd7cbbfb5aba1979083796d605b51473d33291f150b010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a232c353d464e565e666c727b82898f949a9fa2aaabadb3b4b6b8b9bebbbcbcbcbbbfbbb9b7b5b3b1acaaa7a09d97918c847d756d68605850483f372d251b1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000f1c2935424f5c6875828f9ba8b5c2cedbdbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2a3743505d6a7683909da9b6c3d0dcdacdc0b4a79a8d8174675a4e4134271b0e000000000000000000000000000714202d3a46525e6976828f9ca9b3bec8bcb1a79a8d8073665c504438281e130800000000000000000000000000000000000000000000000000000000000613202d394653606c7986939facb9c6c9bcafa396897c706356493d30231606000000020e1a2530424e5b6875818e9ba8b4c1cec2b6a99c8f8376695c504336291d10060f18242f3a434e58606c78828f97a2adb9c0baaea2989083786d60594f443a3024190f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f171e272e343b41464b5153555c60636568666d6e70717273747575716c6256493d301f140900000000020e1a25303b454d5254575757575757575757575757575757575757575756544f473d32291f140900000000000000000000000000000000000000000000000000000000000000000000000000000c18232e39424a515357575757575757575757575757575757575757575754524c443b3025190d01000000050e171e252a2d2e3030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302f2e2b26201810070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c161e262d3235363939393939393939393939393939302f2c27211911070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061017222d38424c555f69707d87939fa5afb9c3cdd1c6bdb3a99f958e81746d62594f453b31271d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a232c343c444c545b60696e757c82898e92989b9ea1a9a7a9abadb3aeafafafafb5aeacaaa9a6a7a09d9995908b847f79706b615d564e463e362d251b130900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000f1c2935424f5c6875828f9ba8b5c2cedbdbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2a3743505d6a7683909da9b6c3d0dcdacdc1b4a79a8e8174675b4e4134281b0e000000000000000000000000000814212e3b4754616e7b87939facb9c5c4b8aca095887c6f62544a3f3428160c0200000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8799a4afbbc7c8bbafa295887c6f6255493c2f22160900000000091b2734414e5a6774818d9aa7b4c0cdc3b7aa9d9084776a5d5144372a1e110007131d28313d44505b666e7b85929ea5afbabeb4aa9f958c80736b60564c41352921180c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c151c23283036394045474b51535659545c60626364656767686864625a5045392d210d03000000000009141f29333b4246474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4948443d352b20170d02000000000000000000000000000000000000000000000000000000000000000000000000000007121c2730394044464a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4746413b32291e14080000000000050d14191e202124242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242422211f1b150e070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e2830383e414346464646464646464646464646463d3b38322b23190f04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3a434d57616b727f8c939ea7b1bbc5cfcfc4bbb1a79d938b7f726b60574d43392f24181108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a222a323a424a50575e616a6f757c81858a8f9297989a9c9ea1a9a1a2a3a3a2aba39f9e9c9a9795918c88837e79726d676159524c443c342d241b12090100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000f1b2835424e5b6875818e9ba8b4c1cedbdccfc2b5a99c8f8276695c4f4336291c1003000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909daab6c3d0dddacdc0b3a79a8d8074675a4d4134271a0e00000000000000000000000006131f2b37434e5866727f8c99a4afbbc7bfb5ab9d9083776a5f5342382e23170c0000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8894abb5c0ccc7bbaea194887b6e6155483b2e221508000000000d1a2733404d5a6673808d99a6b3c0ccc4b7ab9e9184786b5e5145382b1e1205010c161f28333f4a545e69707e8a929da8b1bdbcb1a79f93877d70685d52463f332a1e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181f252a2f35393a404546494c4a5153555658595a5a5b5c585650483e34291d11000000000000020d17202930363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b38332b23190e05000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e272e34383a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3936302920170d0200000000000002080d1114141717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171615130f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101b26303a42494e4f53535353535353535353535353534948443d352b21160b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d28313c454f59636d75818e95a0a9b3bdc6d1cdc2b9afa59f92877d70695e554b40352923190f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008101820282f383f444d525860626a6f74797e8285888b8e909197949595969695959992918f8d8a8784807b77716d67605c554f46413a322b221b1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000e1b2835414e5b6874818e9ba7b4c1cedadccfc3b6a99c908376695d5043362a1d0700000000000000000000000000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919daab7c4d0ddd9ccc0b3a6998d8073665a4d4033271a0d0000000000000000000000000815222e3b4754606a7784919dabb5c0c7bbaea3998b7f7265584e4330261c11060000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbbd1c7baada094877a6d6154473a2e211407000000000c1926333f4c5966727f8c99a5b2bfccc5b8ab9f9285786c5f5245392c1f120600040d17222d38424d57616c74818e95a0abb4bfbbafa49991847a6d615a50453c30271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c14191d24292c2e34383a3c3f404446484a4b4c4d4e4e4f4b49453e362d22170c00000000000000050e171f252a2d2e3030303030303030303030303030303030303030302f2c27211911070000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151c23282c2d3030303030303030303030303030303030303030302e2d2a251e170e05000000000000000000010507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0908060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915212d38424c545a5c606060606060606060606060606056544f473d32271b10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b161f2a333e47515b606d79839097a1abb5bfcbd7cbc1bbafa39992857b6e675d51453f352b21180d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e161d262d333b42464e54586062676d7175797b7f818385868788898989888887868482807d7a77736e6a65605c55514b433e3530282019100900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000e1b2734414e5a6774818d9aa7b4c0cddadcd0c3b6a99d9083766a5d50432e23180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a546b7884919eabb7c4d1ded9ccbfb3a6998c807366594d4033261a0d000000000000000000000004101c2934404b55626f7c8996a0acbdc7c5b9ac9f92867a6d6154473c3221150a000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895abb5c0cbc7baaea194877b6e6154483b2e211508000000000d1a2633404d596673808c99a6b3bfccc4b8ab9e9185786b5e5245382b1f1205000006111c262f3b45505a606d79839199a3aebac0b5aba1968f81756c62574e42392e23180e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080e12181d1f23282c2d302e34383a3b3d3e3f404142423e3d39342d241b10060000000000000000050d141a1e202124242424242424242424242424242424242424242322201c160f0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f2024242424242424242424242424242424242424242421201e19140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1926323e49545e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6360594f44382c201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18212c353f45515d676e7b859299a3aebbc0cbd7cbc0b5aba1979083796d605b51473d33291f160c010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b141c222830363d43474e54555d6064656c6f727476787a7b7b7c7c7c7c7b7b79777673706d6866625f5853514b4540393129241e160e070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000d1a2734404d5a6773808d9aa6b3c0cdd9ddd0c3b7aa9d9084776a544b4034281c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b667885929eabb8c5d1ded8ccbfb2a5998c7f7266594c3f3326190c000000000000000000000006131f2c3845515c6774818d9aa8b2bdc9beb3a99b8f8275685e5246392d201303000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8799a3afbbc7c8bbaea295887b6f6255483c2f221509000000010e1a2734414d5a6774808d9aa7b3c0cdc4b7aa9d9184776a5e5144372b1e11040000000a141d29333e45515d676f7c86929fa6b0bbbdb2a89e938b7e716a5f544b40342820170b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c1013181c1f202323282c2d2f3031323434353531302d29221b12090000000000000000000002090e1114141717171717171717171717171717171717171717161613100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c1012131717171717171717171717171717171717171717171414110d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1c2835414e5a6670767979797979797979797979797979706b6054483b2f22160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a232935404b555e696f7d87929fa5afb8c2ccd1c7bdb3a9a0958e81756d62594f453b31281d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f252a32383d43474b5153535b6062656769676d6e6e6f70706f6e6e6d66696764615e5655534e46454039342f271f19130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000d1a2633404d596673808c99a6b3bfccd9ded1c5b8ab9e928578665c5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7986929facb9c5d2dfd8cbbeb2a5988b7f7265584c3f3225190c00000000000000000000000714202d3a4753606d7985929fabb8c3c6b9ada1978a7d7064564c41362a1d1105000000000000000000000000000000000000000000000000000000000000000613202d394653606c7986929facb9c5c9bcafa296897c6f6356493c30231609000000020e1b2835414e5b6874818e9ba7b4c1cec3b6a99c908376695d5043362a1d1003000000020b17212935404b555f6a727f8c949fa9b3bebaafa59f92867c6e665c51453d32291d140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004070c10131316181c1f2022232526272728292524211d17100900000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09070400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a080705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c69768286868686868686868686868686867d706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081118242f39434d57606b727f8b929da6b0bac4cecfc5bbb1a79e938c7f726b60574d43392f2418110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141a20272b32373940454749505355585b555d606162626363626261605c545a5754524c4847433c38342e29231d150d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000c1925323f4c5865727f8b98a5b2becbd8dfd2c6b9ac9f9386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8799a3afbbc7d4e0d7cabdb0a4978a7d7164574a3e3124170b0000000000000000000005111e2a36424d5664717e8a97a2adbac6c5b8ab9e9285796d6053463a3025190d010000000000000000000000000000000000000000000000000000000000000005121f2b3744505b657885929eabb8c5c9bdb0a3968a7d7063574a3d3024170800000004101c2934404b556875828f9ba8b5c2cec2b5a89b8f8275685c4f4235291c0f0200000000050f18242f39434e58606c77828f97a1adb9c0baaea2989083796d60594f443a2f261b110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607070c101213151718191a1b1b1c181715110c060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f939393939393939393939393897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313b454f59626d74818e949fa8b2bcc6d0cdc3b9afa59f92877d70695f554b403529231a0f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e161b20272b2f35383a3f4446484c4e4b5153545556565655555453504a4d4a4746413b3a37312c28231d18120b03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000a1724313d4a5764707d8a97a3b0bdd1dce0d4c8bbafa49a877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895abb5c0cbd7e3d8ccc0b6ac96897c6f6356493c30231609000000000000000000000714202d3a46525e6976828f9ca9b3bec8bcb1a79a8d8074665c514438291e13080000000000000000000000000000000000000000000000000000000000000000030f1b27333f49536a7784919daab7c4cbbeb2a5988b7f7265584c3f3024190d01000006131f2c3845515c677784909daab7c3cec1b4a79b8e8174685b4e4135281b0e02000000000007121d27313c44505b656e7a85929ea4aeb9bfb4aaa0958d80736b60564c41382d22170d030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607080a0b0c0d0e0f0f0b0a080500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060a0e1011131313131313131313131313131311100e0b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060809131313131313131313131313131313100f0d09050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9c9f9f9f9f9f9f9f9f9f9f96897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f29333d47515b606d78829096a1aab4bfcad6cbc1bbafa39992857b6e675d51453f352c21180d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f151b1d24292c2d3337393c3f41404547484849494949484846443f403d3a3936302e2b261f1c18120c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000916232f3c4956626f7c8995abb5c0cbd7e3d8ccc0b6ac95897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdd1dce0d4c8bbafa49a877b6e6154483b2e211508000000000000000000000814212e3b4754616e7b86929facb9c5c5b8aca095887c6f62544a403428170c020000000000000000000000000000000000000000000000000000000000000000000b17222d424f5b6875828e9ba8b5c1cfc1b4a89b8e817568564c4135291d110500000714202d3a4753606d7986929facb9c5cbc0b5ab998c7f7266594c3f3326190c000000000000010b151f27333f49535e68707d8a929da7b1bcbcb1a79f93887d70685e53493f33271f150b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b11161a1d1e20202020202020202020202020201e1d1b17110b04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f1315162020202020202020202020202020201c1c1915100a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9acacacacacacacaca396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17212b353f44515c666e7a849198a2aebac0cad7cbc0b5aba2979083796d605b51473e332a1f160b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f12181d1f22272b2d2f322f35393a3b3b3c3d3d3c3b3b3a38342e312e2d2a25211f1a15100c0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000814212e3b4754616e7a8799a3afbbc7d3e0ddd2bdb1a4978a7e7164574b3e3124180800000000000000000000000000000000000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1becbd8dfd2c6b9ac9f9386796d6053463a2d20130700000000000000000006131f2b37434e5866727f8c99a3afbbc7c0b5ab9d9083776a5f5342392e23180c00000000000000000000000000000000000000000000000000000000000000000000061925323f4c5865727f8b98a9b3becac4b7aa9d918477685d5246392d20140a00000916232f3c4956626f7c8999a3afbbc7c7bbafa399897c6f6356493c3023160900000000000000030d17222d38414c56616b74808d95a0aab4bfbbafa49a91857a6d655b50443c31271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003070b0d0e13131313131313131313131313131313130e0d0b0803000000000000000000000000000000000000000000000000000000000407090a13131313131313131313131313131313130e0d0b08030000000000000000000000000000000000000000000000000000000000000000050e161c2227292a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b2a27221d160e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f151b1f22232d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5b9b9b9b9b9b9afa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f19232834404a545e686f7c86929fa4aeb8c2ccd1c7bdb3a9a0958e81756d63594f453c31281d140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c1013171b1f20222524292c2d2e2f2f30302f2f2e2d2b28232421201d1914120f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000613202d394653606c7986929facb9c5d2dfd9ccc0b3a6998d8073665a4d403025190d01000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4c0cddaded1c4b8ab9e918578665c5145382c1f13060000000000000000000815222e3b4754606a7784919dabb5c0c7bbafa3998b7f7265584e4330271c1207000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7c8897a2adbac6c6b9ac9f93877a6d6154473d2f261c110709121e2b37424d5765727f8b98abb5c0cbc5b9ac9f92867a6d6053473a2d201407000000000000000006111b262f3b444f59606d79839098a2aebac0b6aca1978f82776c60584e43392f24180e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080e13171a1a20202020202020202020202020202020201b1a18140f0801000000000000000000000000000000000000000000000000050b1014161720202020202020202020202020202020201b1a18140f08010000000000000000000000000000000000000000000000000000000000040e1720272e33363739393939393939393939393939393736332e2720170e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101920272b2e2f3939393939393939393939393939393635322d261e160c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2c6c6c6c6bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071118232e39424c56606a717e8a929da6b0bac3cecfc5bbb1a79e938c7f726b61574d433a2f261b11060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004060b0f12131519181d20202122232323222221201f1c17171413110d0806020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110006121f2b3844505b667784919eaab7c4d1dddbcfc2b5a89c8f827569564c41362a1d110500000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d57697683909ca9b6c3cfdcdcd0c3b6a99d9083766a544b4034281c1004000000000000000004101c2834404b55626f7c8995a0acbdc7c5b9ac9f92867a6d6154473c3221150b00000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7985929fabb8c5c8bbafa49a8b7e7265584e42382d221813131a252d3a47535f697683909ca9b6c3d1c3b6aa9d908377675d5145392c1f13060000000000000000000a141d29323e45515c676e7c86929fa5afbbbeb3a99e948b7f726a5f554b40352920170b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b13191f2426272d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d282724201a130b02000000000000000000000000000000000000000000000810161c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d282724201a130b02000000000000000000000000000000000000000000000000000000000b16202932393f4344464646464646464646464646464644433f39322920100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f19222b32373b3c46464646464646464646464646464643413e3830281e140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfd2d2c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121c27303b444e58616c73808d949fa8b2bcc5d0cdc3b9afa59f93877d70695f554b41382d22170f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003050609070d11131415151616161615151312100b06070705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100030f1c28333f4a546875828f9ba8b5c2cedbded1c4b7ab9e918478685e5246392d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535e697885929eabb8c5d1dedacdc0b4a79a8d8174675a4e412e23180c00000000000000000006131f2c3845515c6774818d9aa7b1bccabeb3a99b8f8275685e5246392d201303000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6575828f9ba9b3bec9c0b6ac9d9083776a60544a3f3329242020262b37424d57616e7b88949fabb7c4c9bdb2a89a8d817467554b4035291d1004000000000000000000020b17202834404b555f6a727f8b939ea9b2bdbbb0a69f92867c6f675d51453e32291d140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b141d242b30333439393939393939393939393939393939393433302b251d140b01000000000000000000000000000000000000000008111a21282c2f3039393939393939393939393939393939393433302b251d140b01000000000000000000000000000000000000000000000000000006111c27323b434a4f515353535353535353535353535353514f4a443b3222190e040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202b343d4347495353535353535353535353535353534f4e49423a30261b1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e29323c46505a606d78828f96a0aab4bec7d2cbc1bbafa49992857b6e675d53493f332721180d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070808090a0a0908080706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000b17222d404c5966737f8c99a6b2bfcfdbded2c5b9aca196877a6d6154473a2e2114090000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8797a1adb9c6d2dfd8ccc0b6ac988b7e7265584b3f322518070000000000000000000713202d3a4653606d7985929fabb8c3c6b9ada1978a7d7064564c41362a1e11050000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495364717e8b97a1adb9c7c7b8ab9f95897c6f665b50443d352f2d2d31364046535f6973808d99a6b0bcc7c5b9aca196897d7063564a3d2f24180c0000000000000000000000050e18232e39434e58626d75828f96a1abb5c0baaea3989183796d605a50443b2f261c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131d262f363c3f41464646464646464646464646464646464641403c362f261d13080000000000000000000000000000000000000005101a232c33383c3d464646464646464646464646464646464641403c362f261d130800000000000000000000000000000000000000000000000000000a16222e39434d555b5d60606060606060606060606060605e5b554d44342b20150a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323d464e54566060606060606060606060606060605c5a544c42382d211509000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17202b343e44505c666d7a849198a2acb6c0ccd7ccc0b5aba2979183796d655b50443e332a1f160b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000061724313d4a5764707d8a97a9b3becad6e1d5c9bdb2a8978a7d7164574a3e31251a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a9b3becad6e0d4c8bbafa49a897c6f6256493c2f231609000000000000000005111e2a36414c5664717d8a97a2adbac6c5b8ab9e9285796d6053463a3025190d010000000000000000000000000000000000000000000000000000000000000000000000000b17222d3a4653606d7985929eabb5c0c8bcb1a79d9083786c60594f45403a393a3b4246525c616e7b86929facb8c2cbc0b5ab9e9184786c605346392d20130700000000000000000000000007121d27303c46515b616d7a849199a4afbbbfb4aaa0958d80746c61564d42382d22170d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e19242f3840474c4d53535353535353535353535353535353534e4c4841382f251a0f030000000000000000000000000000000000000b16212c353e44484a53535353535353535353535353535353534e4c4841382f251a0f03000000000000000000000000000000000000000000000000000e1a27333f4a555f676a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a675f55463c32271b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5860626c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69665e54493e3225190d00000000000000000000000000010406070a090703000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e192228343f4a545d686e7c86929aa4afbbc1cbd2c7bdb3a9a0958f81776c605a50463c31281d140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000815212e3b4854616e7b8797a2adb9c6d2dfdacec0b3a79a8d807467574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576774818e9aa7b4c1cfdadfd2c6b9ac9f93867a6d6053473a2d20140700000000000000000714202d3946525e6875828f9ca9b3bec8bcb1a79a8d8074665c514538291e13080000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6773808d99a3afbbc6c3b8ab9f958b7f726b6059514b474646484d535b636e76828f98a3aebac7c7bbafa3998c7f73665b5044382b1f1206000000000000000000000000000b151e2a343f46525e68707d87939fa7b1bcbcb1a79d928a7d70695e544a3f33281f160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2b36404a52585a60606060606060606060606060606060605b58534a41362b201401000000000000000000000000000000000004101c28333e474f555760606060606060606060606060606060605b59534a41362b20140200000000000000000000000000000000000000000000000000101d2936434f5b6771777979797979797979797979797979777167584e43372b1c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4754606a6f7979797979797979797979797979797670665a4e4135281c0f000000000000000000000001080d111314161613100b0400000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071017232e38424c565f6a707d88939fa5afb9c3cdd0c5bbb1a79e938c7f736c61584e433a2f261c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e11141414110e090200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e11141414110e090200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000714212d3a46535e697885929eabb8c5d1deddd0c3b7aa9d908477695e53463a2d211409000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535e697784919daab7c4d0ddddd0c4b7aa9d918477675d5145392c20130600000000000000000814212e3b4754616e7a86929facb9c5c5b8aca095887c6f62544b403428170d020000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b55616e7b87929faab4bfc8bcb1a79f92867d706b605d5554525354575f616d73808c949eaab4bfcbbfb4ab9f92867b6e61544a3f33281c0f0300000000000000000000000000030c18222935414c56606b73808d959faab4bfb9aea49e92857b6e665b50443d31281d130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724303c47525c64676c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645c53483c301e130800000000000000000000000000000000000714202c38444f5961636c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645d53483c301e130800000000000000000000000000000000000000000000000000111e2a3744515d6a7783868686868686868686868686868683776a605447382e23170c00000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54626f7c8686868686868686868686868686868276695c4f4336291c1000000000000000000000040c13191d20212322201b160c06000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303a444e58616c737f8c939ea7b1bbc5cfcdc3b9afa59f93887e706a5f564c42382d22171006000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d141a1e2021201e1a140d0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d141a1e2021201e1a140d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000005121e2a36424d576875828e9ba8b5c1ced9ded1c5b8aca095877b6e6154483b31261a0e010000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8795a0acb8c5d1ded7cbc0b5ab9a8d817467554b4035291d11040000000000000006131f2b37434e5865727f8c99a3afbbc7c0b5ab9d9083776a5f5442392e23180c0000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3946525e6975828e98a2aebac2c2baaea29892867d736d6763615e606164696e767f8c929ca6b0bcc6c7baaea3998f8275695e5242382d22170b000000000000000000000000000000060f1925303a444f59606d78839098a2aebac0b9ada1978f82786c60584e433a2f24180f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a26333f4c58646e747979797979797979797979797979797979746f64584c3a2f24190d01000000000000000000000000000000000916232f3c4855616b707979797979797979797979797979797979746f64594c3a3024190d010000000000000000000000000000000000000000000000000c1926333f4c5966727f8c9a939393939393939393939395887c6f62544a3f34281c1003000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c6674808d939393939393939393939393988b7e7164584b3e3125180b000000000000000000050d161e24292c2d302f2c272117110a0300000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e28323c464f59606c77818e95a0a9b3bdc7d1cbc1bbafa49a92867c6e685d544a3f332822180e0400000000000000000000000000000000000000000000000000000000000000000000000000000000050e171f252a2d2e2d2a251f18120c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c12181f252a2d2e2d2a251f170e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000020e1a25313f4b5865727e8b98a8b2bdc9d5e0d4c8bcb1a7988c7f7265574d42362a1d1207000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727f8c98a8b1bdc8d4e0d4c7bbafa3998a7d7064574a3d2f24180d01000000000000000815222e3b4754606a7784909dabb5c0c7bbafa3998c7f7265584e4330271d120700000000000000000000000000000000000000000000000000000000000000000000000000000007121d2a36424d57616e7b86929fa7b1bdc6bfb4aaa29892878079746f6d686d6e71757b828c919ca4aeb8c2c9bdb2a89f92867b6e62564d422f261c11060000000000000000000000000000000008131e28323d44515c666e7b86929fa5afbabeb3a99f948c7f726a60554b40352921170c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556774808686868686868686868686868686868686817467564c4135291d1104000000000000000000000000000000000a1724303d4a5763707d8686868686868686868686868686868686817467564c4135291d11040000000000000000000000000000000000000000000000000815212e3b4854616e7b87939f9f9f9f9f9f9f9f9f9fa79a8d8074665c5044382c1f130800000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985919e9f9f9f9f9f9f9f9f9f9f9f9286796d6053473a2d2014070000000000000000050e171f282f35393a3d3b383228231c150c03000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c16202a343e44505b656d79839097a1abb5c0cbd7ccc0b6aca29891847a6d665b50443e342a20160c020000000000000000000000000000000000000000000000000000000000000000000000000000020d17202930363a3b3a363029241d160d0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d161d242930363a3b3a36302920170d0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000915222e3b4855616e7b8896a0acb9c5d2ded9cec3b6a99d908376695f5346392f24180c00000000000000000000000000000000000000000000000000000000000000000000000a14202d3a46525e697683909da9b6c3ced9dfd2c5b9ac9f92867a6d6054473a2d2114070000000000000004101c2834404b54626f7c8895a0acbdc7c5b9ac9f92867a6e6154473c3221150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a25303b46535f69727f8c959fabb4bdc6bcb4aaa299928d85807c7a79797b7d82868f949ca3adb6bfc8c0b9aca0968c80736a5f53443b301d140a0000000000000000000000000000000000020c16202834404a545f69717e8b939ea8b2bdbbb0a69f92877c6f675d51453e33291e140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d67778390939393939393939393939393939393908477685d5245392c20130600000000000000000000000000000003101c28343f4a546673808d939393939393939393939393939393918477685d5245392c2013070000000000000000000000000000000000000000000000000714202d3a46525e6976838f9caab4acacacacacacacab9e9285796d6053463a2f24190d0100000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b5563707d8997a1adacacacacacacacb3a99b8e8175675d5145392c20130600000000000000060f172029313a4145474948443d342e261e150d030000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030303030303030303030303030303030300040d182227333f49535d676e7b859299a3afbbc0cbd2c7beb4aaa0968f82786c605a50463c32281e140a000000000000000000000000000000000000000000000000000000000000000000000000000009141f29333b42464746423b352f281f18100701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010710181f282f353b42464746423b33291f140900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000714212d3a46535f697784919eaab7c4cedaddd1c4b8ab9f95887b6e61554b4035291c110600000000000000000000000000000000000000000000000000000000000000000006111b2834404a54616e7b87939facb9c6d2dfdcd0c3b6a99d908376685d5245392c2013070000000000000006131f2c3845515c6674808d9aa7b1bccabeb3a99c8f8275685e5246392d201403000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2a36424d57606c78839099a3abb5bec6bcb4aba39f97928d89878686878a8e92989fa6adb5bfc8c0b6ada39e9184796d60574e4232291f0b02000000000000000000000000000000000000040e18232e39424d57626c75818e96a1abb5c0bbaea3999184796d605a50453b30261c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f93867a6d6054473a2d21140600000000000000000000000000000006121f2b3844505c6676838f9c9f9f9f9f9f9f9f9f9f9f9f9f9f9f93867a6d6054473a2d21140600000000000000000000000000000000000000000000000005121e2a36424d5765717e8b98a3aebab9b9b9b9b9b9ada1978a7d7063564c4135291d110400000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515d6774818e9ba9b3beb9b9b9b9b9b9ada1978a7d7063554b4035291d1104000000000000070f182129323a434c515456544f443f3830271f150d0300000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005080a0b10101010101010101010101010101010101010100f17222d38414b555f69707d87929fa5afb9c2cdd0c5bcb2a89e948c80736c61584e443a30261c1106000000000000000000000000000000000000000000000000000000000000000000000000020e1a25303b454d5254524d454039312a2218130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c1318222a313940454d5254524d453b30251a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000005121e2a36424d576774818d9aa8b2bdc9d5e0d4c8bcb1a7998d8073675d5145382e23170c0100000000000000000000000000000000000000000000000000000000000000000b17222d3844515c6673808c9aa4afbbc8d4e0d4c8bcb1a7998c807366564c4135291d1104000000000000000713202d3a4653606d7985929eabb8c3c6b9ada2978a7d7164564c41362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000000000000030e1a26313b44505b666e7c869299a4acb6bfc6bdb5afa9a19e9a969992939a979b9fa3aab0b8bfc9c0b6aea49c91897d70675c51453c3120170d000000000000000000000000000000000000000007121c27303c45505a606d7a849199a3afbbbfb5aba0968e81746c61574d42382e23170d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8999a3afacacacacacacacacacacacafa499897d7063564a3d2d22170b0000000000000000000000000000000713202d3a4653606d7985929facacacacacacacacacacacacafa49a897d7063564a3d2d22170b000000000000000000000000000000000000000000000000020e1a25303b4754606d7a86929facb9c5cfc6c6c9beb3a99b8e8175685d5245392c2014090000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7985929facb8c4cfc6c6c6c5b8ab9e9285796d6053463a2f24180d010000000000071018212a333b444c555d60636059504a423931271f150b01000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c111417171d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1b262f39434d57606b727f8b939da7b1bbc4cfcec3bab0a69c928a7e716a5f564c42382e23171007000000000000000000000000000000000000000000000000000000000000000000000005111e2a36424d575e615e57514b433c3429241d160d060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d161d2429343c434b51575e615e574d42362a1e1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000020e1a26313c4956636f7c8996a1acb9c5d2ded8cdc2b8ab9e9285796d60544a3f34281d120700000000000000000000000000000000000000000000000000000000000000030f1b27333f4953606d7985919eacb6c0ccd8ddd1c4b8ab9f95887b6e6255483b2f24190d0100000000000005111e2a36414c5664717d8a97a2adb9c6c5b8ab9e9285796d6053463b3025190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f28333f4a545f6a717e87939aa4aeb5bdc3c0bbb3adaba7aba39f9fa4aca8acaeb4bcc2c4bdb9aea49c928c7f736b60554b40332a200e050000000000000000000000000000000000000000000b151e2a333e45525d686f7c87929fa6b0bbbdb2a89d938a7e71695e544a3f342820160c0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495366737f8c99abb5c0b9b9b9b9b9b9b9b9b9c0b5ab998c7f736653493f33271b0f0300000000000000000000000000000916222f3c4955626f7c8898a2aebab9b9b9b9b9b9b9b9b9c0b6ac998c807366544a3f33281c0f030000000000000000000000000000000000000000000000000914202c3945525d6875828e9ba9b3becad6dacfc5b8ac9f92867a6d6054473b31251a0e020000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5664717e8a98a2aebac6d6d2d5c9bdb2a89a8d8074665c5044382c1d13070000000000071019222a333c454d565e676d706b605c544b433931271d1207000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c2123242a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a28313b454f59626d74818e959fa9b2bcc6d1ccc1b8aea49f92867c6f685d544a3f342822180e05000000000000000000000000000000000000000000000000000000000000000000000714202d3a46525e696e69605d554e463f352f281f1810070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010710181f282f353f464e555d60696e695e52463a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000913202d394653606c7884919eabb7c2cdd8dfd2c6b9ada2978b7e71665c5044392f24180c030000000000000000000000000000000000000000000000000000000000020b17212b3744505b65717e8a97a1adbec7d2ddd7cbc0b5ab9d9083776a5f53473a2e1e1308000000000000000714202d3946525e6875828f9ca9b3bec8bcb1a79a8d8074665c514538291e140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b17222d38424e58616c717e88939fa3abb1bbbfc5beb9b8b3b4aeacacafb6b5b8babfc6c0bab2ada49d928d80736d63594f43392f21180e00000000000000000000000000000000000000000000030c18212935414c56606b737f8c949fa9b3bebaafa59f92857b6e665c50443d32281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6575828f9ca8b5c2d1c6c6c6c6c6c6c6d2c2b5a89c8f8275655b5044372b1f120500000000000000000000000000000c1825323f4b5865727e8b98aab4bfcac6c6c6c6c6c6c6d2c2b5a99c8f8276665b5044382b1f120600000000000000000000000000000000000000000000000004111d2935414c5664707d8a97a2adbac6d3dfd3c7baaea3988b7e7165574d42362a1e1205000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e6875828f9caab4bfcad6ded2c5b9aca096897c6f62544a3f34281c0c0100000000040f19222b343c454d575e686d7a7c736d665c554b43392f24180f050000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121a22282d30313636363636363636363636363636363636363636363636363636333d47515b606d79839096a1aab4bfcbd7cabfbaaea29891847a6d665c50443e342a20160c030000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7b756d675f585045403a312a2218130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c1318222a313a404550585f676d757b6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000005121f2b3744505b6573808d99a7b1bcc8d4e0d6cabeb3a99d9184786d60554b4035291e150b00000000000000000000000000000000000000000000000000000000000a141d28343f4a54606c7883909da9b3bed0d9e0d4c7bbafa3998b7f7265574e42372b1e0c01000000000000000814212e3b4754616e7a86929facb9c5c5b8aca095887c6f62544b403428170d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3c46505a626c727f8b9299a0a7aeb5bbc0c7c5c0bfbab9b9bbc0c1c5c4c2bbb7afa8a19e928d80746e635b51473d31271d0f060000000000000000000000000000000000000000000000060f19242f3a434f59606d78829097a2adb0b0b0ada2979083786d60594f443a2f24190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7985929fabb8c5d2d2d2d2d2d2d2d2d1c5b8ab9e9285796c605346392d2013060000000000000000000000000005111d2a36414c566874818e9ba7b4c1d0dbd2d2d2d2d2d2d2c5b8ab9f9285796c605346392d201306000000000000000000000000000000000000000000000000010d19242f3a4653606d7985929fabb8c4cedad6cbbfb4aa9c908376695e53463a2d21160a000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9c5d0dbddd1c4b7aa9e9184776a605442382e23170c00000000000a16212b343d464e575f696e7a838680786d675d554b40352921170d0300000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101a242c33393c3e434343434343434343434343434343434343434343434343434343434345515c676e7a849198a3aebac0cad6cabfb4aaa0968f82786d605a50463c32281e150a0000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d81796f6a625a514b433c3429241d160d06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070d161d2429343c434b515a626a6f79817d7064574a3d3124170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000030f1b27333f4953626f7b88959fabb8c3ced9dbcfc5b8aca0968b7e72675d51453c30271d120700000000000000000000000000000000000000000000000000000006111b262f3844505c66717e8a95a0abbbc4cfe2dfd2c5b9ac9f92867a6e6154473c31261a0e0000000000000006131f2b37434e5865727f8c99a3afbbc7c0b5ab9d9084776a605442392e23180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2a343e48505a626d727f8790959fa3abafb5b8bcbfc0c1c2c2c1c0bebcb8b6b0aba59d96918a80776c605c524940352b1f150b0000000000000000000000000000000000000000000000000008131e28313d44505c666e7b85929fa5a3a3a3a3a99f948c80736b60564c4135291d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8897a2adbac6d3dfe4e0dfe0e4dfd2c6b9ada297887b6e6255483b2f221507000000000000000000000000000713202d3946525e687784919eaab7c4d1dddfdfdfdfdfdfd3c6baaea298887b6f6255483c2f2215080000000000000000000000000000000000000000000000000008131f2c3845515c6674818e9aa8b2bdc9d5dcd0c6b9ac9f93877b6e6154483d32271b0f00000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727e8b99a3aebbc7d3e2d4c8bcb1a7998c807366584e4330261c110600000000030f1b27323d464e585f696e7b8490938d82796d675d51453f33291f140900000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17222c363e45494a5050505050505050505050505050505050505050505050505050505050504b555e686f7c86929fa4aeb8c2ccd0c6bcb2a89f948d80736c61584e443a30261c110600000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86837c716c605d554e463f352f281f181008010000000000000000000000000000000000000000000000000000000000000000000000000000000000010810181f282f353f464e555d606c717c83867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000b17222d3847535f6a7683909da8b2bdc8d4e1d4c8bdb2a89e9185796d60584e42392e2318110700000000000000000000000000000000000000000000000000060f17222d38414d57606d7884919ea7b1bccdd6e1d4c7bcb1a79c8f8275685e5246392a201509000000000000000815222e3b47545f6a7783909dabb5c0c7bbafa3998c7f7265584e4330271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b18222c363f48515b626d727c838c92999fa3ababb1b2b4b4b5b5b4b4b2b1acaaa69f9c938e847d746c655b504a40372e231a0d0300000000000000000000000000000000000000000000000000010c161f28343f4a545e69717e8a93969696969696969692877d6f685d5245392c2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a9b3becad6ddd8d4d2d4d8ddd6cabeb3a9978b7e7164584b3e2f24180d010000000000000000000000000714212e3a4754616d7a8796a0acb9c5d2dee0dedddedfe1d6cabeb4aa988b7e7265584b3f3025190d0100000000000000000000000000000000000000000000000004101c2834404b54636f7c8996a1acb9c5d2ded4c8bbafa49a8c7f7366584e43372b1c120700000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535e697683909cabb5bfcbd7ddd1c4b8ab9f95887b6e6255483d3222150a000000000007131f2c38434e58606a6f7b8491969f948f82796d605b51453b31251a0e04000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111c28333e485055575d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d56606a717e8b929da6b0bbc7d3cec4bab0a69c928a7e716a5f564c42382e23170c06000000000000000000000000000000000000000000000000000000000000000613202c3945515d6776828f867e756d675f585145413a312a2219130c04000000000000000000000000000000000000000000000000000000000000000000000000000000040c1319222a313a414551585f676d757e868f8275675d5145392c201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000006111b2b37434e5864717d8a96a0acb9c4cfdad9cec3b9ada1978c80736a60544b403428231910070000000000000000000000000000000000000000000000060f182127333f49535f69727f8b96a0acb9c3cddfdcd1c4b8ab9f95897c6f63564c41362a1e110500000000000004101c2834404b54626f7c8895a0acbdc7c5b9ac9f92867a6e6154473c3221150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a242d363f49515b626a6f787f878e92999d9fa7a5a7a8a8a8a8a7a5a7a09d99948f89817a706b605b53493f382e251c1108000000000000000000000000000000000000000000000000000000040d17232e38424d57616c74818a8a8a8a8a8a8a8a8a8a8a847a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c566874818e9ba7b4c1cfd9d2ccc8c6c8ccd2d9cfc0b4a79a8d817467554b4035291d11040000000000000000000000000a1724303d4a5763707d8a96a8b2bdc8d4d9d4d1d0d1d2d5dad0c1b4a79b8e817468564c41362a1d1105000000000000000000000000000000000000000000000000000c18232e394653606c7884919eabb7c3cdd9d8ccc0b6ac9d9184776a605447392e23180c00000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b87939facb9c6d1dcd7cbc0b5ab9d908376695f53473a2e21140300000000000915222e3b4854606a6f7c859196a0a69f948e81756d62574d42362a20150a000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212d3945505a616469696969696969696969696969696969696969696969696969696969696969696969696c74808d949fabb7c3d0d6ccc2b8aea49f92867c6f685e544a3f342822170c0000000000000000000000000000000000000000000000000000000000000004101d2935404b5565727f8b928b81796f6a625b514b433c3429241e160d0700000000000000000000000000000000000000000000000000000000000000000000000000070d161e2429343c434b515b626a6f79818b928b7e7265554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000f1a26313c4653606c7884919ea9b3bec9d5dfd5c9beb3a99f92877c6f665c51453f352b22191107000000000000000000000000000000000000000000060f18212a333c44505b656e7b86929fa8b2bdcbd5e1d4c8bdb2a89d9083766b6054443b3025190e0200000000000006131f2c3845515c6674808d9aa7b1bcbebeb3a99c8f8275685e5246392d2014030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121b242d373f4951585f666d737c81878c909596999a9b9c9b9b9a989695908c88827d746d686159504941382d261c130a000000000000000000000000000000000000000000000000000000000006111c26303b45505a606d797d7d7d7d7d7d7d7d7d7d7d7d7b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e687784919daab7c4d0d0c7c0bbb9bbc0c7d0d0c3b6aa9d908377675d5145392c201306000000000000000000000003101c28343f4a546673808d99a6b3c0ced5cdc8c4c3c5c6c9cfd1c4b7aa9e918477685e5246392d2013070000000000000000000000000000000000000000000000000007121f2b3744505b6573808d99a7b1bcc8d4ddd2c7b8aca096897c6f62544a4034281c100400000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5866727f8c9aa4afbbc8d4e0d4c7bbafa3998b7f7265574d42372b1e120600000000000916232f3c4956626f7c859297a1a8b0a69e938b7e72695e53463c32271b0f010000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303c4955616c717676767676767676767676767676767676767676767676767676767676767676767676767678838f9ca9b6c2cfdcd4cac0baaea29891847a6d665c50443e34281d1105000000000000000000000000000000000000000000000000000000000000010d18242f3b4854616e7b8795938e847c726d605d554e463f352f281f19100801000000000000000000000000000000000000000000000000000000000000000000010810191f282f353f464e555d606d727c848e9395877b6e6154483b2f24180d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000a151f2b3844505b66727e8b97a1adb9c3cdd9dacfc4bbafa3999083796d605a50473d342b2318120b030000000000000000000000000000000000020a1117212a333c454f59606c77828f98a2aebac3ceddd9cfc7b8aca0968a7d7064594f4332291e1408000000000000000713202d3a4653606d7985929eabb1b1b1b1ada2978a7d7164564c41362a1e1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b252d373f464e545c606a6f757b7f83878a8c8d8e8f8f8e8d8b898783807b76706b605d564f443f382f261b140a010000000000000000000000000000000000000000000000000000000000000a141e29333e45515d676d7070707070707070707070706e695e53463a2d21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8796a0acb8c5d2c7beb6afacafb6bec6cec5b9ac9f92867a6d6053473a2d201407000000000000000000000006121f2b3844505c6676838f9ca9b6c2cfcbc3bcb8b7b8b9bec5cdc5b8aca096877a6d6154473a2e21140600000000000000000000000000000000000000000000000000030f1b27333f4953626f7b8895a0acb8c7d2ddd4c8bdb2a89a8d8074665c5144382c1f13080000000000000000000000000000000000000000000000000000000000000000000815212e3b47535f6a7784919dacb6c0ccd8dfd2c5b9ac9f92867a6e6154473c31261a0e0200000000000714212e3a4754616d7a828b9298a3abafa59f92867b6e61584e43372b1e13080000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717e838383838383838383838383838383838383838383838383838383838383838383838383838383909daab7c3d0dddcd6cabfb4aaa1968f82786d605a5045392d211508000000000000000000000000000000000000000000000000000000000000000714212d3a46535e697784909d9691867e756d675f585145413a312a2219130c0400000000000000000000000000000000000000000000000000000000000000040c1319222b313a414551585f676d757e8691969d908377695e53463a2d1d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000030f1c28333f4a54606d7985919ea7b1bcc8d4dfd7cbc0b5aba0958d80746c62594f473d3528231c150c08020000000000000000000000000001080b141b2227333c454d57616b727f8c949faab4bfccd5dcd1c7bdb0a69d9184786c6053463d3220170d0200000000000005111e2a36414c5664707d8a97a1a5a5a5a5a5a59f9285796d6053463b3025190e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b252d343c424a51585f62696e73777a7d7f8181828281817f7d7a77736e6a636059524c433e332d261d140a0200000000000000000000000000000000000000000000000000000000000000020c17212935404b555d60636363636363636363636363615e574d42362a1e120500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a8b2bdc8ccc0b6aca49fa4acb4bcc6c7bbafa399897c706356493d3023160900000000000000000000000713202d3a4653606d7985929facb8c5cdc3b9b1acaaabadb3bbc5c8bdb2a8968a7d7063574a3d2e23170c00000000000000000000000000000000000000000000000000000b17222d3847535f6a7783909dabb5c0ccd7d9cec3b8ab9e9285796d6053463a3024190d0100000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54626f7c8895a0acbec7d2ddd6cabfb4aa9c8f8276685e5246392a1f15090000000000000713202d3946525e686d757f869299a3afaea3988e81756a6054473a2f24190d0100000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b909090909090909090909090909090909090909090909090909090909090909090909090909095a0acb8c5d1dee7dbd0c6bcb2a89f948d80746c6155493d3023170a0000000000000000000000000000000000000000000000000000000000000005121e2a36424d576673808d99a098928b81796f6a625b514c433c3429241e160d070000000000000000000000000000000000000000000000000000000000070d161e2429343c434c515b626a6f79818b9298a0998d807366574d42362a1e0c0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000b17222d3845515c67717e8b95a0acb8c1cdd6dcd1c7bdb1a79d928b7e716b60594f473e342e271e19140f0a0602000000000000000205090e13191d262d333d454e575f69707d87929fa6b0bcc6d0ded7cbc0b5ab9f948a7d70665b5044382b1f1205000000000000000713202d3946525e6875828f9898989898989898988d8174675c514538291e1408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b222a303940444e53575e6166686e707274757575757472706e6866625f58544f45413a3127221b140b02000000000000000000000000000000000000000000000000000000000000000000050f18242f39434b515357575757575757575757575754534d453b31251a0e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b546673808d99a6b3c0cec8bbafa49a939aa2aab4bfcac0b5ab998c7f7266594c3f31261a0e02000000000000000000000916222f3c4955626f7c8898a2aebac6c8bcb1a7a09d9ea1a9b3bec9c0b3a6998d807366544a3f34281c10030000000000000000000000000000000000000000000000000006111b2b37434e5865727f8c99a4afbbc7d4dfd2c6b9ada1978a7d7064564c4135291d11040000000000000000000000000000000000000000000000000000000000000006121f2b3844505b6673808d9aa7b1bcd0d9dfd3c6baaea2988a7e7164564c41362a180e0300000000000005111d2a36414c565e616d727d87929fa5afaa9e93887c6f62564c4135291d110400000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b989c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9da0a7b1bcc8d4e0ede2d8cec4bab0a69d928a7e7164574b3e3124180b00000000000000000000000000000000000000000000000000000000000000020e1a25313c4956636f7c8997a1a39f938e847c726d605d554e463f352f281f1910080100000000000000000000000000000000000000000000000000020810191f282f353f464e555d606d727c848e939fa3a197897c6f6256493c31251a0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000006111c2934404b55606c7883909da5afbbc5d0d9d9cfc3b9aea49f92877d6f6b605950444039302a251e1a15120f090b0a0a0a0b090e12141a1e24292f383f444f575f696e7b859299a3afb8c2ced7d9cfc7bbafa3998f82766c61544a3f33281c0f03000000000000000714212e3a4754616d7a868b8b8b8b8b8b8b8b8b8b897c6f62554b403428170d020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010910181e272e343c43474d5354565e6163666768696868676563615e5655534e48443d352f281f17110a02000000000000000000000000000000000000000000000000000000000000000000000007121d2831394045474a4a4a4a4a4a4a4a4a4a4a4a4846423b33291f1409000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c667683909ca9b6c3cfc6b9ac9f93869298a2aebac7c2b5a89b8f827568574d42362a1e1205000000000000000000000c1825323f4b5865727e8b98aab4bfcac4b8aca095909297a1adb9c6c2b6a99c8f8376665c5044382c1f120600000000000000000000000000000000000000000000000000000f1a26313c4754616e7b87939facb9c6d0dcd6cabeb3a99b8e8275685d5245392c201409000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eabb8c3cededfd2c5b8ac9f92857a6d6053473b3025190700000000000000010d1925303a444c525b626b727f8c939eaaafa59b8e8174685d5245392c20130600000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9aaacb1b9c3ced9e4f0eae0d6ccc2b8aea49a8e8174675b4e4134281b0e01000000000000000000000000000000000000000000000000000000000000000913202d394653606c7985929eaba59e9691867f756d675f585145413a312b2219130c040000000000000000000000000000000000000000000000040c1319222b313a4145515860676d757f8691969ea5ab9e9285796c605346392d2013090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000c18232f3944505b666f7c89939ea9b3bec7d2ddd5cbc0bbaea39992867d6f6b615a514a423d36302b26211f1a181817161718181a1e21252a2f353c41495059606a6e7b849197a2abb5c0cad4dcd1c7bdb2a89f92877c6e62594f42382d22170b00000000000000000815222e3b4855616e7b7e7e7e7e7e7e7e7e7e7e7e7e716a605443392e23180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c151c232831373b4246484c525457595a5b5c5c5b5a585654524c4847433c383329241e160d0600000000000000000000000000000000000000000000000000000000000000000000000000010c161f282f35393a3d3d3d3d3d3d3d3d3d3d3d3d3b3a36312921170d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb8c5cfc2b5a89c8f8286929facb8c5c5b8ab9e928578695f53463a2d21140700000000000000000005111d2a36414c566875818e9ba8b4c1d0c3b7aa9d908385929eabb8c5c5b8ac9f9285796d6053463a2d20130700000000000000000000000000000000000000000000000000000a15202d3a46525e6976828f9caab4bfcbd6dacfc5b9ac9f92867a6d6054473c31261a0e02000000000000000000000000000000000000000000000000000000000004101c2834404b5563707c8996a1adb9c5d2dfd5c9beb3a99b8e8175675d514539291e1408000000000000000008131e29323a41465159626d75828f98a2aeac9f92867a6d6054473a2d22170b00000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b7b8bcc3cbd5dfe7e7e7e8ded4cac0b4a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000000000000000000000000000006121f2b3844505b6674818e9babafa8a098928b817a6f6a625b524c433d3429241e160d07000000000000000000000000000000000000000000070e161e2429343d434c525b626a6f7a818b9298a0a8afab9b8e8174665b5044382b1f12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000007121d28333f4a54606b75818e97a1acb6c0ccd8ddd7cbbfb5aba29892867d716c605c544e46413b37312e2b2625242423242425262b2d31363a41454e535b606b707c859196a1a9b3bdc7d1dcd7cbc0b5aba0968d80746a5f53473e2f261c110600000000000000000714212d3a46535f696e7272727272727272727272716c62584e4330271d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121820262b31363a3b4146474a4c4e4e4f4f4e4e4c4a4746413b3a37312c272119130c04000000000000000000000000000000000000000000000000000000000000000000000000000000040d161d24292c2d3030303030303030303030302e2d2a251f170f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8998a3aebac7cec2b5a89b8f8284919eaab7c4c6b9ada197887b6e6155483b2e2215070000000000000000000713202d3946525e687784919eaab7c4cec1b4a89b8e8183909daab6c3c6baaea298887c6f6255493c2f221608000000000000000000000000000000000000000000000000000005111e2a36424d5764717e8b98a3aebac7d3e0d3c7baaea3998b7e7265574d42372b1e1205000000000000000000000000000000000000000000000000000000000006131f2c3845515c6774818e9aa8b2bdc9d5dfd2c6b9ada197897d7063554b4035291d10040000000000000000020c17202930363f47515b616d7a86929facaea2988b7e716453493f33271b0f03000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2bec3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c5c8ced5dbdbdbdbdbdbdbdacdc1b4a79a8e8174675b4e4134281b0e0100000000000000000000000000000000000000000000000000000000000000030f1c28333f4a5464717d8a99a3aeb2aaa39f938e847c726d605d564e463f352f282019100802000000000000000000000000000000000002081019202830353f464e565d606d727c848e939fa3aab2aea3998a7d7164544a3f33281c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000010b17222d38424f59616e7a85929aa4afbbc3ccd6dcd1c6bdb4aaa29892867e746d666058524c47433c3a37313231303030313231373a3b42464c52575f656c727d859197a1a8b2bbc5cfd9d5ccc3bbafa3999184796d60584e43352c1d140a00000000000000000005121e2a36424d575f61656565656565656565656565625a50463d321e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c151b1f252a2d3036393b3d3f4142424242413f3d3b3936302e2b26201c160d08010000000000000000000000000000000000000000000000000000000000000000000000000000000000040c12181d202024242424242424242424242421211e1a140d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98aab4bfcbcec1b4a89b8e8183909ca9b6c3c9beb3a9978a7e7164574b3e2f24180c0000000000000000000714212e3a4754616d7a8796a0acb9c5cdc0b4a79a8d80838f9ca9b6c2cabfb4aa988b7f7265584c3f3025190e0200000000000000000000000000000000000000000000000000020e1a25303b4754606d7a86929facb8c5cfdbd7cbbfb4ab9c908376695f53463a2d21160a00000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929fabb8c4cfdaded1c5b8ab9e9285796d6053463a2f24180d01000000000000000008110e171e252a353f46525d6874818e9ba8b1aa9b8e8175655b5044372b1f1205000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2becbcecececececececececececececececececececececececececececececececececececececececececececececdc1b4a79a8e8174675b4e4134281b0e0100000000000000000000000000000000000000000000000000000000000000000b17222d3a4754606d7a86929facb9b4aea59e9691877f756d6860585145413a322b2219130c04000000000000000000000000000000040c1319222b323a4145515860686d757f8791969ea5aeb4b9ac9f92867a6d6054473a2d22170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000006111c262f3d46525e68707d88939fa7b1bac4ced7d8cfc5bcb4aaa298928a80786f6a615e56534e484743403f3e3d3d3d3e3f404246484d53565d606a6e777f879297a1a9b2bac4cdd7d6cdc3bab0a69f92877c6f675d51463c31231a0b02000000000000000000020e1a26313b454d53555858585858585858585858585650483f342b200c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f141a1e21252a2d2e303334353635353432302e2d2a25211f1a15100b05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d1013141717171717171717171717171514120e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576875828f9ba8b5c2d0cdc0b4a79a8d81828e9ba8b5c1cfc0b3a79a8d807467554b4035291d100400000000000000000a1724313d4a5764707d8a97a8b2bdc9ccbfb3a6998c80828f9ba8b5c2d0c1b4a89b8e817568564d41362a1e110500000000000000000000000000000000000000000000000000000914202c3945515d6775828e9ba9b3becad6dcd1c6b7ab9f94887b6e6155483d32271b0f0707070707070707070707070707070707070707070707070707070707111d2935414c5664707d8a97a2adbac6d6e0d4c8bdb2a89a8d8074665c5044382c1d1207000000000000000007111a232a3135383935414c56636f7c8995a0acab9e9285796c605346392d201306000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2bec1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1b4a79a8e8174675b4e4134281b0e0100000000000000000000000000000000000000000000000000000000000000000613202c3945525d6876828f9ca9b6bfbaafa8a099928b817a6f6a625b524c443d3429241e160e0600000000000000000000000000060e161e2429343d444c525b626a6f7a818b9299a0a8afbabfb6a99c8f8276675d5145392c1c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000a141d2a36414c56616b74808d95a0a8b2bcc5cfd8d7cec5bcb4aaa29f928d837c746e68625f5855534e4d4b4b4a494a4b4b4d4d5355575e61686d737b828c9299a1a9b2bbc4ccd6d7cec4bbb2a89f948c7f726a60554b41342a201108000000000000000000000009141f29333b4246484b4b4b4b4b4b4b4b4b4b4b4b49453f362d22190f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e1214191e20212426272829292827252321201e1914120f0a03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070a0a0a0a0a0a0a0a0a0a0a0a080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f697885919eabb8c4d1ccc0b3a6998d80808d9aa7b3c0cdc3b6aa9d908377675d5145382c1f13060000000000000003101c28343f4a546673808d99a6b3c0cecbbfb2a5988c7f818e9ba7b4c1cec4b7ab9e918478685e5246392d201407000000000000000000000000000000000000000000000000000004111d2935414c5564707d8a97a2adb9c6d2dfd3c7bcb0a6998c807366594f43382c1d13131313131313131313131313131313131313131313131313131313131313202c3945525d6875828f9ba9b3becad6ded2c5b8aca096897c6f62544a3f34281c0c0100000000000000030e19232c353c41454646464854606b7784919daaada197877b6e6154483b2e211508000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4b4a79a8e8174675b4e4134281b0e01000000000000000000000000000000000000000000000000000000000000000004111d2935414c5665727f8c98a8b2bdc1bab2aba39f938e847c726d605d564e463f3530282017110a02000000000000000000020a1117202830353f464e565d606d727c848f939fa3abb2bac1bdb2a8988b7f7265554c4135291d0a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000020b1925303b444f59606d78839096a1a9b3bcc6cfd7d7cec5bcb4aea49d959087817a746e6a66625f585a585757565757585a575f6165696e747a80868f949fa3abb3bbc4cdd6d6cec5bcb3a9a0968f82786c60584e433a2f22180e000000000000000000000000030d18212931363a3b3f3f3f3f3f3f3f3f3f3f3f3e3d39342d241b10070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205080e11141417191b1b1c1c1b1b19171414110d080602000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8897a1adb9c6d2cbbfb2a5988c7f7f8c99a5b2bfccc5b9ac9f92867a6d6053473a2d2014070000000000000006121f2c3844505c6676838f9ca9b6c2cfcabeb1a4978b7e808d9aa6b3c0cdc5b9aca196877a6e6154473b2e2114070000000000000000000000000000000000000000000000000000010d19242f3a4653606d7985929eabb8c4cedad8cdc2b7aa9e9184776b605448392e2320202020202020202020202020202020202020202020202020202020202020212d3a4754606d7a86929facb9c5d0dbddd1c4b7aa9e9184776a605442382e23170c000000000000000008141f2a353e464d51525353534f596774818e9aa7b3a996897d7063564a3d3023170a000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a79a8e8174675b4e4134281b0e010000000000000000000000000000000000000000000000000000000000000000010d19242f3b4855616e7b8896a0acb8c1bab6b4aea59e9691877f756d6860585145413a3227221b140b0400000000000000040b141b2227323a4145515860686d757f8791969ea5aeb4b6bbc1b8aca096887b6e6155483b2f24190d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000008141e29323e45515c666e7b849197a2aab4bcc5ced6d7cec6bfbaaea7a09a938e86817b76726e6a6967656463636364656769696e72767b80858d92999fa6afb5bdc5cdd6d6cdc5bcb4aaa19791847a6d665b50463d31281d0f0600000000000000000000000000060f181f262a2d2e323232323232323232323232302d29221b120900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0c0e0f0f0f0f0e0c0a08070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a9b3bec9d5cabdb1a4978a7e7e8b97a4b1becac7bbafa399897c6f6356493c30231609000000000000000713202d3a4653606d7985929facb8c5d2c9bcb0a396897d7f8c98a5b2bfcbc9bdb2a8978a7d7064574a3d2e23180c00000000000000000000000000000000000000000000000000000008131f2c3845515c6674818d9aa8b2bdc9d5ded2c5b9aca096897c6f63554b40342d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d36424d5765717e8b98a3aebac7d7e1d4c7bcb1a7998c7f7366584e4330261c110600000000000000000d1925313c4650585d5f606060606066737f8c99a6b2a5988b7f7265584c3f3225190c000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b989b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9a8e8174675b4e4134281b0e010000000000000000000000000000000000000000000000000000000000000000000814212d3a47535f697784919daab7b7afaaa8acafa8a099928b817a6f6a625b524c443d332d261d160e060000000000060e161d262d333d444c525b626a6f7a818b9299a0a8aeaca8aab0b8b7aa9d918477695f53473a2d1e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001010101010101010101010105121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000020d17202834404b545e696f7c859298a3aab3bcc4cdd8d8d0cac0b9b1aca49f98928e87837f7b787673727170707071727376787b7f83878d92989fa3abb0bbc0c7cfd6d7ccc4bbb3aaa29891857b6e685e544a3f342b1f160c000000000000000000000000000000060d141a1e212225252525252525252525252524211d171109000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c556774818d9aa7b4c0cfdac9bcb0a396897d7d8996a3b0bcd0cbc0b5ab988c7f7265594c3f31251a0e020000000000000916222f3c4955626f7c8898a2aebac6d3ccc0b6ac95887c7e8b97a4b1becacec0b3a69a8d807367544b4034281c1004000000000000000000000000000000000000000000000000000004101c2834404b54636f7c8996a1acb9c5d2ded5c9bdb2a89a8d8174675c51453a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a46525e6976838f9caab4bfcbd7ddd1c4b8ab9f95887b6e6155483d3222150a000000000000000000101d2935414d58626a6c6c6c6c6c6c6c717e8b97a4b1a6998c807366594d4033261a0d000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8174675b4e4134281b0e0100000000000000000000000000000000000000000000000000000000000000000006121e2b37424d576773808d9aa9b3afa59e9b9fa3ababa39f938f847c726d605d564e443f382f282017110a0200020a111720282f383f444e565d606d727c848f939fa3abaaa29f9b9ea6b0b3a99a8d807367574d42372b1e1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a0e0e0e0e0e0e0e0e0e0e0e0e0e121e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000050e18232e39424d575f6a707d869298a2aab3bbc3ccd2d9d6cbc3beb6afaaa39f9a93908c888582807e7e7d7c7d7e7e808285888c9093999fa2aaaeb4bdc2cbd1d9d1cbc2bab2a9a19892867c6f695f564c42382d22190d040000000000000000000000000000000003090e1214151818181818181818181818181715110c060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001050707090a0b0b0b0c0c0b0b0a0907070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d677784909daab7c3d0d6cabfb4aa95887c7c8895aab4bfcad1c2b5a89b8f827568574d42362a1e12050000000000000c1825323f4b5865727e8b98aab4bfcad4c8bbafa49a877b7d8a96a3b0bdd2cfc3b6a99c908376665c5145382c1f13060000000000000000000000000000000000000000000000000000000c18232e394653606c7884919eabb7c3cdd9d9cec4b8ab9f9285796d60534646464646464646464646464646464646464646464646464646464646464646464646464754616e7b87939facb9c6d1dcd7cbc0b5ab9d908376695f53463a2d211403000000000000000000121f2b3845515d6a7479797979797979797d8996a3afa79a8d8074675a4d4134271a0e000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181818181817f7165584b3e3225180b00000000000000000000000000000000000000000000000000000000000000000000020e1a26313d495663707c8997a2adaa9e938e9299a1a8aea59e9691877f756d6860585049413a3227221b140b050b141b2227323a4149505860686d757f8791969ea5aea7a098928f939eaaada297897c706356493d31261a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b101416171a1a1a1a1a1a1a1a1a1a1a1a1a1a1e2b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000007121d27303b454e58606b707e869298a1a9b1bbc0c7d0d7d5d0c7c0bbb4aeaca49f9d9997928f8d8b8a8a898a8a8b8d8f9197989c9fa4abaeb4babfc6cfd7d7cfc7c0bbb0a8a09792867d706a5f574d443a2f261c100700000000000000000000000000000000000000020507080c0c0c0c0c0c0c0c0c0c0c0b0b0905010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507070a080d11131416171718181918181717161413110d080a07070401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86939facb9c6d2d3c7baaea298877a7a8798a2aebac6d1c4b8ab9e918578695e53463a2d211407000000000005111e2a36414c566875818e9ba8b4c1d0d2c6b9ac9f9386797c8995acb6c0ccd2c5b9ac9f9286796d6053463a2d20130700000000000000000000000000000000000000000000000000000007121f2b3744505b6573808d99a7b1bcc8d4dfd3c6baada2978a7d716456535353535353535353535353535353535353535353535353535353535353535353535353535865727f8c99a4afbbc7d4e0d3c7bbafa3998b7f7265574d42372b1e1205000000000000000000131f2c3946525f6c798586868686868686898f99a5b4a79b8e8174685b4e4135281b0e000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4855616b70757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575716d62564a3d3124170b00000000000000000000000000000000000000000000000000000000000000000000000913202d3a4653606d7985929faba89b8e818791969ea6aea8a199928c827a6f6a605b534c443d332d261d160e161d262d333d444c535b606a6f7a828c9299a1a8aea59d959086828f9ba8ab9f9285796d6053463a2d2013090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c2023242727272727272727272727272727272b3845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000b151e29333c464f59616c707d869197a0a7afb6bec4cbd1d9d2ccc6bfbab6afaca9a9a19e9c9a989796969697989a9c9ea1a9a9acafb5babec5cbd1d8d1cbc4bdb5afa69f9691857c706b60584e453b32281d140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306080d1113141719191d2021222424252525252524242221201d1919171413110d080503000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8999a4afbbc7d4d2c5b8ac9f9285797985929facb8c5d2c6b9ada197877b6e6154483b2e21150700000000000713202d3946525e687784919eaab7c4d1d1c4b8ab9e9185787b879aa4afbbc8d3c7baaea398897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000030f1b27333f4953626e7b8895a0abb8c7d2ddd6cabeb3a99b8f8275686060606060606060606060606060606060606060606060606060606060606060606060606060606a7783909dabb5c0ccd7dfd2c5b9ac9f92867a6d6154473c31261a0e02000000000000000000131f2c3946525f6c7985929393939393939699a1abb4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202c38444f59616368686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686865625a50453a2e211509000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c6675818e9baba6998c7f7c848f949fa3ababa39f938f847c726c655d564f443f382f28201720282f383f444f565e656c727c848f939fa3abaaa29f938e837b818e9ba7ab9b8e8175665c5044382c1f1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a22282d3031343434343434343434343434343434343845515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000030c17212a343d47505a616b707c8590959fa4acb3bbc0c7cfd4d8d1cbc7c0bbb9b6b3adaba9a6a5a4a3a3a3a4a5a6a9abadb3b6b9bbc0c7cad0d7d4cfc6bfbab2aba39f9490847b6f6a60594f463c332920160b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607080808080808080808080808080808080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b101213191e20212426252a2d2e2f3031313232323131302f2e2d2a25262321201d1913120f0b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546673808c99abb5c0ccd7d0c4b7aa9d9184777784919daab7c4d0c9beb2a9978a7d7164574a3e2e23180c00000000000714212e3a4754616d7a8796a0acb9c5d2d0c3b6a99d9083767986939facb9c6d2cbbfb4aa988c7f7265594c3f30251a0e020000000000000000000000000000000000000000000000000000000b17222d3847535f6a7783909dabb5c0ccd7dbcfc5b9ac9f92867a6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6e7b8895a0acbdc7d2ddd6cabfb4aa9c8f8275685e5246392a1f140900000000000000000000131f2c3946525f6c7985929f9f9f9f9f9fa3a5abb3b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c28333e474f55575b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b585650483f34291d1105000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a5464717e8a99a4a99d9083767a828b9299a0a8aea69e9691877f776d6860595049413a32272227323a4149505960686d777f8791969ea6aea7a098928a81797985929eaba3998a7e7164544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101a232c33393c3d414141414141414141414141414141414145515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000050f18222b353e485059606a6f7b838d939aa1a9afb5bdc1c8ccd2d6d2ccc8c6c3beb9b8b6b3b1b1b0afb0b1b1b3b5b8b9bec3c6c7ccd2d5d1cbc7c1bcb4aea8a199928c827a6e6960584f473d342a21170e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c1013141515151515151515151515151515151414110e080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090f11171c1f20252a2d2e30333036393a3c3d3e3e3e3f3f3e3e3d3c3a39363033302d2c2924201f1b17110e09020000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c6676828f9ca9b5c2d2ddcfc2b5a99c8f827676828f9ca9b5c2cfcfc0b3a79a8d807467554b4034281c1004000000000a1724313d4a5764707d8a97a8b2bdc9d5cec1b5a89b8e82757885929eabb8c5d1d1c1b5a89b8e827568574d42362a1e120500000000000000000000000000000000000000000000000000000006111b2b37434e5865727f8c99a4afbbc7d4e0d3c7bbaea3998b7f7979797979797979797979797979797979797979797979797979797979797979797979797979797979808d99a7b1bcd0d9dfd3c6baaea2988a7e7164564c41362a180e0300000000000000000000131f2c3946525f6c7985929facacacacacafb1b6bdb4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b16212c353e44484a4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4b4a453f362d22180c010000000000000000000000000000000000000000000000000000000000000000000000000c17232e3a4754616d7a86939fac9f93877a6e757f8791969ea5aea8a199928c827a6f6b605b534c443d332d333d444c535b606b6f7a828c9299a1a8ada49d9590867e746f7c8997a1ac9f92867a6d6154473a2e23170c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222c363e44494a4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d515e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000061019232c363e474f585f696e79808891979fa3abb0b9bbc0c7cacfd2d4d2cfc9c6c5c2c0bebdbdbcbdbdbec0c2c4c6c9cfd2d4d2cfc9c7c0bbb9afaaa39f96918780786e685f574e463d352b22190f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f2022222222222222222222222222222221201e19140d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10151a1c23282b2d3036393a3d4042414647494a4a4b4b4c4b4b4a4a49474641423f3d3a3935302d2b27221b1a140f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929fabb8c5d2dacdc1b4a79a8e817474818e9aa7b4c1cdd0c3b6a99d908376675c5145382c1f130600000003101c28343f4a546673808d99a6b3c0ced9cdc0b3a69a8d80737784909daab7c3d0d1c4b8ab9e918478695e52463a2d201407000000000000000000000000000000000000000000000000000000000f1a26313c4754616e7b87939facb9c6d0dbd7cbbfb5ab9b918b86868686868686868686868686868686868686868686868686868686868686868686868686868686868d929ca8b9c3cde2dfd2c5b8ac9f9285796d6053473a3025190d0100000000000000000000131f2c3946525f6c7985929facb8b9b9b9bcbdc1c1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101a232c33383c3d4242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242423e3d3a342d241b1106000000000000000000000000000000000000000000000000000000000000000000000000000613202d3946525e687683909ca9a49a8b7e716d727c848e939fa2aaaba39f948f847d726c655e564f443f383f444f565e656c727d848f949fa3aba9a29f928d837b716c73808c99a9a99c908376685e5246392d1c11060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c28333e485055575a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5e6b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000007111a242c353d464e575f676d747d858d92999ea6acafb6b9bec4c6c9cfd1d2d2d1cfcdcbcac9c9c9cacbcdcfd1d2d2d0cfc9c5c4beb9b5afaca59e98928d847d736d665e564d453c342b231910070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d151d23292c2d2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2d2a251e170e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10171c20262b2e34383a3c4146474a4c4f4c5254555757585858585857575554524c4f4c4a4745413c3937332d2a251f1b160f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7c8898a2aebac6d3d8cbbfb2a5988c7f72727f8c99a5b2bfcfd2c5b9ac9f9286796d6053463a2d20130700000006121f2c3844505c667683909ca9b6c3cfd8cbbeb1a5988b7e7275828f9ca8b5c2cfd2c5b9ada196877b6e6154483b2e211507000000000000000000000000000000000000000000000000000000000915202d3946525e6876828f9caab4bfcad6dcd1c6bdada39b989393939393939393939393939393939393939393939393939393939393939393939393939393939393999ca4aeb9cbd5dfd5c9beb3a99b8e8174675d514539291e13080000000000000000000000131f2c3946525f6c7985929facb8c5c6c6c9cacec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a21282c2f3035353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353532312e29221b1209000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5666727f8c99a8ac9c8f8275676a6f7a818b9298a0a7aea69e9691877f776d68605950494149505960686d777f8791969ea6aea79f97928a80796e69697783909daaa8998c7f7266564c4135291d0a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202d3944505a616467676767676767676767676767676767676767676b7884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000008111a232b343c454d555c606b707a81878f949c9fa4acadb3b8b9bec2c4c6c7ccd2cccdcececfcececdccd1cbc7c5c4c2bdb9b7b3adaba39f9b938e86807a6f6b605c544c443c332b221911070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f272f34383a3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3936302920170d0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e161c22282d3137383f4446494c525457595c565e616263646465656564646362615e565b595654524c4946443f3836302c27211b150d0802000000000000000000000000000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98aab4becad6d6cabeb3a9968a7d70707d8a97a9b3becad3c7baaea399897c6f6256493c2f2316090000000713202d3a4653606d7985929facb8c5d2d5c9bdb2a896897c7074818d9aa7b4c0cdd5c9bdb2a8978a7e7164574a3e2f24180c0000000000000000000000000000000000000000000000000000000005111e2a36414d5664717e8b98a2aebac7d3e0d8cfbfb5ada7a5a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a6a8aeb6c0cadddfd2c6b9ada197897d7063554b403529170c020000000000000000000000131f2c3946525f6c7985929facb8c5d2d2d6dbcec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810161c2023242828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282524211d181109000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303c4855626f7b8896a1ac9f9286796d60676d757e8691959da5aea8a199928c827a6f6b605b534c535b606b6f7a828c9299a1a8aca49f9590857e746d67616e7b8795a0aca196887b6f6255483c3025190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303c4955616c707474747474747474747474747474747474747474747884919eabb7c4d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000081119222a333b434b515960686d747c82898f939a9ea1a9abadb3b5b7b9bbc0bfc0c0c1c2c2c2c1c0bfbfc0bbb9b7b5b2adaba9a19e99928f89817b736d676059504a423b322a2119100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2731394045474848484848484848484848484848484746413b32291e14080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141a21282c33393c43474a505356565e616366686a686d6f7071717172727171706f6d686a686663605d565553504946423b38322b272019130c04000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414d566875818e9ba8b4c1d0dbd3c6baada297877b6e6e7b8797a2adbac6d3cbbfb4ab988b7f7265584c3f3025190e0200000916222f3c4955626f7c8898a2aebac6d3d2c5b9aca196877a6d727f8c98a5b2bfced9cfc0b3a79a8d807467554b4035291d1004000000000000000000000000000000000000000000000000000000020e1925303b4754606d7a86929facb8c5cfdae1d0c7bfb8b3b2acacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacb3b4b9c0c8d1dcded1c4b8ab9e9185796d6053463a2f241807000000000000000000000000131f2c3946525f6c7985929facb8c5d2dfe2dbcec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b101416171b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b181715110c0600000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3a47535f6a7884919eaba2988a7d70635d606c717c838e939fa2aaaba39f948f847d726c655e565e656c727d848f949fa3aba9a19a938d837b716c605c65727e8b98a7ab9e9184786a5f53473a2e1e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8080808080808080808080808080808080808080808086929facb8c5d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000710182129303940454f565e616a6e757d82878d92979b9ea1a9a8aaacafb5b2b3b3b4b5b5b5b4b3b3b2b5afacaaa8a8a19e9a97918c87827c756e69605d554f443f38302920180f07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232f39434b515355555555555555555555555555555554524c443b3025190e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f262b33383e44494e53545c606366686d70737577797a7c7d7d7e7e7f7e7e7d7d7c7a79777572706d686662605b53524d48433d373229241e160e07000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e687884919eabb7c4d1ded2c5b8ab9f9285796c697885929fabb8c5d2d1c1b5a89b8e827568564d42362a1e110500000c1925323f4c5865727f8b98aab4bfcad6d1c4b7ab9e91847868707d8a96a8b2bdc9d5d0c3b6a99d908376675d5145382c1f1306000000000000000000000000000000000000000000000000000000000814202c3945515d6775818e9ba9b3becad6e2d9d0c9c3c0beb9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9c0c1c5cad1dae1d4c8bdb2a89a8d8074665c5044382b1d1207000000000000000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0b0b09050100000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e586774808d9aaaaa9a8e8174655b5a626a6f79818a9298a0a7afa69e9691877f776d6860686d777f8791969ea6afa69f97928880786e69615a5d6775828f9ca8aa9a8d807467584e43372b1f0c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d9298a2aebac6d0c3b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000000000000060f171e272e343d444c52585f626b70767b80858a8e9197999c9e9fa4aba5a6a7a7a8a9a8a7a7a6a5aba39f9d9b9896918e8a85807b756f6a615f57514c433d342e261e170e060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2934404b555c60616161616161616161616161616161615e564c41362a1e110500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c141c232831373e44485055585f62666d6f73777a7d7f82848587888a8a8b8b8b8b8b8a8a88878584827f7d7a76736f6c65615e57544e47433c3530282018120b0300000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8796a1acb9c5d2dccfc2b5a99c8f8276656976828f9ca9b5c2cfd1c4b7ab9e918478695e52463a2d2014070005111e2a36414c566875818e9ba8b4c1d0dbcec1b5a89b8e8175686d7a8796a0acb9c5d2d2c5b9ac9f92867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000004111d2935414b5563707d8a97a1adb9c6d2dfe2dbd4cfcccbc6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6cccdd0d5dce3ded1c5b8aca096887c6f62544a3f34281c1003000000000000000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26313d4a5663707d8998a2ab9e9184786c6053585f676d747e8690959da4ada8a199928c827a706b707a828c9299a1a8aca49f9490857d736d665f5753606d7a86929faca298897d7063564a3d31261a0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9fa2aab4bfcad0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000060c151d2328323a41464e53596063696e73797d8185888c8f9193999799999a9b9b9c9b9b9a9999979992918f8c8884817d79736e69626058534d45413a3128231c140c05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c676d6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e685e5246392d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e171e262e343c42464f555a61646a6e73797c8084878a8c8f91929895969797989898979796959892918e8c8986837f7c78736e69626058544e45413a3228231d150c05000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a8b2bdc9d5d9ccbfb3a6998c8073666673808c99a6b3bfced2c5b9aca196877a6e6154473b2e211407000714202d3946525e687784919eaab7c4d1d6cbbfb4aa988b7f7265687784919eaab7c4d1d3c7bbaea399897c6f6356493c3023160900000000000000000000000000000000000000000000000000000000010d18242f3a4653606d7985929eabb8c4ced9e5e6e0dcd9d8d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d9dadde1e7eaddd0c4b7aa9d9184776a605442382e23170b00000000000000000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a13202d3a4653606d7985929faca197887c6f62554e555d606c717b838d929fa2a9aba39f948f847d757d848f949fa3aba9a19a938d827b706b605c544d5364707d8a98a3ac9f9285796d6053463a2d20130a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7acaeb4bcc5d0d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000030b1218202930363c43474f54575f61676d7174787c7f828486888a8c8d8d8e8f8f8f8e8d8c8c8a888684827f7b7874706d66615e57544e46423b352f281f17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d797b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081019202930383f444d535961636c70767b8085898d909596999b9d9fa2aaa3a4a4a4a5a5a4a4a3aaa29f9d9b999a93908c88847f7b756f6a626058524c443e342e271e170e06000000000000000000000000000000000000000000000000000000000004101d2935404b556773808d9aa6b3c0cedad5c9bdb2a8968a7d706363707d8a96a8b2bdc9d5c9bdb2a8978a7d7064574a3d2e23180c000814212e3b4754616e7a8796a0acb9c5d2d3c7baaea398897c6f626875818e9ba8b4c1d1d7cbbfb5ab998c7f7266594c3f31261a0e020000000000000000000000000000000000000000000000000000000007131f2c3844515c6674818d9aa8b2bdc9d5e1edece8ebe3ddd7d4d2c9c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8cacbced3dae1e7e9edece0d3c7bcb0a6998c7f7366584e4330261c110600000000000000000000000000131f2c3946525f6c7985929facb8c5d2dadadacec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6775828f9baca9998c807366574d4b515a61696e79808a92979fa6afa69f969187828791969fa6afa69f97928880786e696159514a505b6574818e9aaaac9b8f8275675c5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b8babfc5ced7d0c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000070e171e252a31373d44484d53555c6064656c6f7275777a7c7e7f8080818282828180807f7d7b797775726e6a6764605c54524d47433d363129241e160d0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8888888888888888888888888888888275695c4f4236291c0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a222a323a424a50575f616b70777d83888d9297999da0a7a6a8aaacaeb4b0b0b1b1b2b1b1b0b0b4aeacaaa8aca49f9d9996918c86827c756f6a605d5650454039302920180f060000000000000000000000000000000000000000000000000000000006131f2c3845515d677683909da9b6c3d0dcd2c5b9aca096877a6d61616d7a8796a1acb9c5d2cec0b3a69a8d807367544a4034281c10040a1724313d4a5764707d8a97a8b2bdc9d5d2c5b8ac9f9286796d6065727f8c98abb5c0cbd7d1c2b5a89b8f827568574d42362a1e12050000000000000000000000000000000000000000000000000000000004101c2834404a54636f7c8996a0acb9c5d2deeaf5ebe2d9d2ccc7c6bcbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbdbec2c8cfd8e1ebf6eaddd0c4b7ab9f94887b6e6155483c3222140a0000000000000000000000000000131f2c3946525f6c7985929facb8c5cececececec1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b5565717e8b9aa4aa9d908377695e52464550575f666d747d8590949fa4aca9a199928e9299a1a9aba39f948f857d736d665e574f444653606c7884919eaba49a8b7e7165554b4034281c10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c5c6cad0d7d3d0c3b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000050c131920262b33383c42464b5153535b60626669676d6f717273747475767574747372716f6d676865625f585753514a46423b37322a261f19130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7b88949494949494949494949494948f8376695c504336291d1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a232c343c444c545c60696e767d838a90949a9ea1a9aaacb1b2b5b7b8babfbdbdbebebebebebdbdbfbab8b7b5b6afaca9a8a19e99928f89827c746d68615a514b423b322a21180f060000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5d2ddd1c4b7aa9e918477685e5e687884919eabb7c4d1cfc3b6a99c908376665c5144382c1f1206101c28343f4a546673808d99a6b3c0ced9cfc3b6a99c908376665c636f7c8999a3afbbc7d4d1c5b8ab9e928578695f53463a2d21140700000000000000000000000000000000000000000000000000000000000c18232e394854606b7784919eaab7c3cdd8e4eee3d9d0c7c0bbb9afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafb0b2b6bdc6cfdae4efe3d7cbbfb5ab9c908376695f53463a2d2114020000000000000000000000000000131f2c3946525f6c7985929facb8c1c1c1c1c1c1c1b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3b4754616e7a87939faca095877b6e6154483e454d545c606c707b838d939aa1a9aba39f9b9fa3aba9a199928c827a706b605c544d453e4955626f7c8896a1ac9f93877a6e6154473b2e23180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3c0c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c3b6aa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000002080d151a21272c3137394045464950535559555d60626466666768686968686766666462605c555955534e4a4644403936302b27201a140d0801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8894a1a1a1a1a1a1a1a1a1a1a19d9083766a5d5043372a1d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a232c353e464e565e666d727b828a90959c9fa6abadb3b7b8bcbfc2c4c5c7cad0cacacbcbcbcacad0cac7c5c4c1c0bbb9b6b2acaba39f9c948f88817a716c605c544d443c332a21180f060000000000000000000000000000000000000000000000000000091623303c4956636f7c8999a3aebbc7d3dbcec1b4a89b8e81756856566875818e9ba8b5c1d1d2c5b8ac9f9286796d6053463a2d201307121f2c3844505c667683909ca9b6c3cfd9cdc0b3a69a8d80736754606d7a86929facb9c5d2d2c6b9ada197887b6e6155483b2e221507000000000000000000000000000000000000000000000000000000000007121c2c38434f596673808c99a7b1bcc8d4e3e8ddd2c7bdb5afaca3a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a3a6acb4bdc8d3deede0d3c7bbaea3998b7e7265574d42362a1e12050000000000000000000000000000131f2c3946525f6c7985929facb4b4b4b4b4b4b4b4b4a89b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e687783909daaa7988b7e7265554b403c424b515a61696e78808891979fa6afaca8acafa69e9691877f786e686059504a423b414d5666737f8c99a9a99d908376685e5246392d1d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7b3b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b6aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000030a0f161c1f262b2e34383a3f4446484c4b51535557595a5a5b5c5c5c5b5a5959575553514b4c4847433d3a38342e2a251f1b160e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adaeaeaeaeaeaeaeaeaa9d9083776a5d5044372a1d0800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a232c353e474f585f686d787f868f949da0a7abb0b8b9bec3c5c8ceced0d2d3d6dbdbd6d3d2d2d4d8dbd6d3d2d0d2ccc8c6c3bdb9b5afaca69e9c938e857e746d665e564e453c332a21180d04000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99abb5bfcbd7d7cbbfb4aa988b7f7265585965727f8c98abb5c0cbd3c7baaea398887c6f6255493c2f22160813202d3a4653606d7985929facb8c5d2d5c9bdb2a8978a7d7064575d677783909daab7c3d0d5c9beb3a9978a7e7164574b3e2f24180d0100000000000000000000000000000000000000000000000000000000000f1b27323d4855626e7b88959fabb8c7d1dce3d7ccc0b5aba49f9695959595959595959595959595959595959595959595959595959595959595979aa2acb6c2cedaecdfd2c5b9ac9f92867a6d6154473b31261a0e020000000000000000000000000000131f2c3946525f6c7985929fa7a7a7a7a7a7a7a7a7a7a79b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c5666737f8c99a9a99c8f8276675d51453939404550575e666d737d858f949fa3abb2aba39f948f847d736c665e564f443f383946525e687783909daaa9998c7f7366564c41362a1e0b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa7adadadadadadadadadadadadadadadadadadadadadadadadadadadadaa9d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000050b10141a1d23282c2d3337393c3f404547484b4c4d4d4e4f4f4f4e4d4d4c4a484645403f3b3a37312d2c28231c1a140f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793aab4bfbbbbbbbbbbbbb7aa9d9184776a5e51442f24190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18222c353e474f59616a6f7a828c92989fa6abb1b7bcc2c6c9cfd1d4d7d4d2d0cccac9d0cac6c5c6c8ccd2cacccfd2d3d7d4d2cec9c7c0bbb9b0aaa59d97918a81786e685f574e453c332a1f160b02000000000000000000000000000000000000000000000006121e2b37424d576975828f9ca8b5c2d1dcd3c7baaea398897c6f625656636f7c8999a3afbbc7d3cbbfb4aa988b7f7265584c3f3025190d16222f3c4955626f7c8898a2aebac6d3d2c5b9aca196877a6e6154556774818e9aa7b4c1d0dacfc0b4a79a8d817467554b4035291d110400000000000000000000000000000000000000000000000000000000000a16212e3a47535f697783909dabb5c0cbd7e0d4c7bbafa4999389888888888888888888888888888888888888888888888888888888888888888a909aa6b2becbd7e2d6cabeb4aa9c8f8275685e524639291f1409000000000000000000000000000000131f2c3946525f6c7986929b9b9b9b9b9b9b9b9b9b9b9b9b8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1925303c4955626f7c8896a1ac9f92867a6d6053473a2e343e454d545c606b707a828c9299a1a8a199928c827a706b605b544c443d342e3b4754616e7a87939faca196887c6f6255493c3025190e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d9aa0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09d9083776a5d5044372a1d1100000000000000000000000000000000000000000000000000000000000000000003090e12181c1f22272b2d2f2f35383a3c3e3f4041414243424141403f3e3c3a38342e2f2e2b26201f1c18120e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798698a2aebac6c7c7c7c7c4b8ab9e9185786b564c4135291d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a343d474f59616b707c8490949fa2aab0b8bcc3c7cdd2d5d6d3d1cbc7c5c3c0bdbcbbbfbab8b9bbc0bcbdbfc2c5c7cbd1d2d5d5d1cbc7c1bbb7afa9a19e938e837a6e6a5f574e453c31281d140a00000000000000000000000000000000000000000000000814212e3a47535f697885929eabb8c5d1ded2c5b9ac9f9286796d605353606d7a86929facb9c5d2d0c1b4a89b8e817568564c41362a1e111925323f4c5865727f8b98aab4bfcad6d1c4b7ab9e918478685e525865717e8b98aab4bfcad6d0c3b6aa9d908377675d5145392c201306000000000000000000000000000000000000000000000000000000000006121e2b37424d5765727f8b99a3afbbc7d4dfd2c6b9ac9f93877d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7e8a97a3b0bdcad6dfd3c6baaea2988a7e7164564c413529180d03000000000000000000000000000000131f2c3946525f6c79868e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8175685b4e4235281b0f000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000813202d394653606c7884919eaba3988a7d7064544a3f3328333b424a505960686e787f8791969e9691877f776d686059504a423b322834404b5565717e8b9aa4ab9e9184786a5f53473b2e1e140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d93939393939393939393939393939393939393939393939393939393939393939083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000070c1013171b1f202224292c2d2f313333343535363535343333312f2d2c282322211f1a1312100c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667985929facb8c5d2d4d4d2c5b9ac9f928679685d5245392c2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313c464f59616b707d8691969fa6aeb4bcc2c8cdd3d8d6d0cac6c5c0bbb9b6b3b0afaeb4aeacacafb6afb0b2b6b9babfc5c6c9cfd5d7d4ccc7c1bbb3ada59d9590847c6e6a5f574d433a2f261b1106000000000000000000000000000000000000000000000815222f3b4855626e7b8897a1adb9c6d2dcd0c3b6a99d908376665c51515d677783909daab6c3d0d1c4b7aa9e918477685e5246392d20131e2a36414c566875818e9ba8b4c1d0dbcec1b4a89b8e817568564c55626f7c8898a2aebac6d3d2c5b9ac9f92867a6d6053473a2d2014060000000000000000000000000000000000000000000000000000000000020e1a26313c4754616e7a86929facb9c5d0dbd4c7bbafa4998a7e716f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f727f8c98a5b2bfcbd8ded2c5b8ab9f9285796d6053473a3025190d010000000000000000000000000000000e1b2834414e5b6774818181818181818181818181818181817e7165584b3e3225180b000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6574818e9aaaaa9b8e8174665b5044382b2930383f444f565e666c727d848f938f847c726c655e564f443f382f292c3845515c6775828f9bacaa9a8e817467584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808686868686868686868686868686868686868686868686868686868686868686868683776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000000004060b0f121315181d1f20222426272728292929282726262422201f1c181514120f0a060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546b7784919eaab7c4d1dde0d3c7baaea399877a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d19242f3a434e58616b707d869298a1a8b0babfc6ced4d9d7d0cac6bfbab8b5afaca9a6a4a2a1aaa29f9fa4aca2a3a6a9acaeb4b8b9bec5c9cfd6d7d3cdc4beb9afa79f9691857c6e695f564c41382d22170b020000000000000000000000000000000000000000000b1825313e4b5864717e8b97a9b3becad6dacdc0b3a79a8d807467544b4b556774818d9aa7b4c0d0d2c5b9aca096877a6d6154473a2e2114202d3946525e687784919eaab7c4d1d6cabfb4aa988b7f7265584c53606d7985929facb8c5d2d4c7bbafa399897c706356493d2d22170b0000000000000000000000000000000000000000000000000000000000000915202d3946525e6876828f9caab4bfcad6d7ccc0b5ab9c8f827568626262626262626262626262626262626262626262626262626262697683909da9b6c3d0dcd5c9beb2a99b8e8174675d514538281e1308000000000000000000000000000000000d1a2733404c58646e74747474747474747474747474747474716d62564a3d3124170b000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495364707d8a98a3ab9e9285796c605346392d20262e343d444c545b606b6f7a8289827a6f6a605b534c443d332d26202d3a4653606d7985929faca3988a7d7063574a3d32261b0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d797a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000030506070c1013141518191a1a1b1c1c1c1b1a1a1917151313100c07080602000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e43505d697683909ca9b6c3cfdce3d7cbbfb4ab94887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2935414c555f6a707d869298a2aab2bac2cad0d8d9d1cbc5bebab4aeacaba39f9d99979695949892939a959697999c9fa3aaabadb3b9bdc4cad0d7d6cfc9c0b9b1a9a19791857b6e685d53493f33271d140a000000000000000000000000000000000000000005111d2935414c566774818e9aa7b4c1cfdad5c9beb3a9978a7e7164574b4b5865717e8b98aab4becad5c9bdb2a8978a7d7064574a3d2e2317212e3b4754616e7a8796a0acb9c5d2d3c7baaea298887c6f625549505c667683909ca9b6c3cfd7cbc0b5ab998c7f736653493f33271b0f03000000000000000000000000000000000000000000000000000000000005111e2a36414c5664717e8b98a2aebac6d3ddd2c5b9ac9f92867a6d6155555555555555555555555555555555555555555555555555616e7b88959fabb8c4d1ddd2c6b9ada197897d7063554b403529160c02000000000000000000000000000000000b1824303c48535c646768686868686868686868686868686865625a50453a2e211509000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3a4753606d7a86929faca197897c6f6256493c31261c2328323b424a505960686d757c756d6860585049413a3228221c23303d4a5663707d8998a2ac9f92867a6d6053473a2d20140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c666d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d675d5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090b0c0d0e0e0f100f0e0e0d0c0b09070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061c2835424f5b6875828e9ba8b5c1cedbe7dcd1bcafa296897c6f6356493c30231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313a45515d676e7c869298a3aab4bcc4ccd6dbd7cfc7c0bbb3aeaaa29f9a9992908d8a8988878685868788898a8c8f9298999ea1a9adb2babec5ced5dad5cbc2bbb2a9a19791847a6d655b50443c2f261b1106000000000000000000000000000000000000000713202d3946525d687784919daab7c4d0ddd2c6b9ada197877b6e6154484855626f7b8898a2aebac6d3cec0b3a6998d807366544a3f34281c24313d4a5764707d8a97a8b2bdc9d5d2c5b8ac9f9285796d6053464a546773808d9aa6b3c0cfdad1c2b5a89c8f8275655b5044372b1f12050000000000000000000000000000000000000000000000000000000000020e1925303b4753606d7a86929facb8c5cfdad3c7bbafa3998b7e7265574d4949494949494949494949494949494949494949494e5866737f8c99a7b1bcc8d4ded1c4b8ab9e9184786c605346392f24180600000000000000000000000000000000000814202b36414a53585b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b585650483f34291d1105000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945515d6775828f9ca8a9998d807366574d42362a1e1720292f383f444f565d616b706b605d564e443f382f2920171f2b37434e586774808d9aaaa89c8f8275675d5145392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b545c6060606060606060606060606060606060606060606060606060606060606060606060605d554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6b3c0cdd9e3d6cabdb0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a43505a606d79849198a2aab4bcc6ced6ddd5cdc5bdb5afaaa29f98928d8a8683807d7c7b7a7979797a7b7c7d7f8386898d92979ea1a8adb3bcc3cbd3dbd4cdc4bbb3a9a0968f82776c60584e41382d22170b000000000000000000000000000000000000000714212e3a4754616d7a86939facb9c6d2ded1c5b8ab9e928578695e53464653606c7985929fabb8c5d2cfc2b6a99c8f8376665c5044382b1f2834404a546673808d99a6b3c0ced9cfc3b6a99c908376665c50444b5764717e8a97a9b3becad6d1c5b8ab9e9285796c605346392d2013060000000000000000000000000000000000000000000000000000000000000814202c3945515d6775818e9ba9b3bec9d5d7cbc0b5ab9c908376695e53463c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c47535f6a7784919daab7c2cdd8d4c8bcb1a79a8d8073665b5044382b1d12070000000000000000000000000000000000030f1a252f3841484c4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4b4a453f362d22180c01000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b5565727e8b98a7aa9d908477695f53463a2d2114171d262d333d444c525960636059524c443d332d261d1715212e3a47535f6a7884919eaba7988b7e7265554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e39424b51535353535353535353535353535353535353535353535353535353535353535353535353514b43392f24180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926323f4c5965727f8c98a5b2bfcbd8e4d8cbbeb1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c56616c75818f96a0aab4bcc6cfd8ddd4cbc3bbb3aba39f98928c86807d7a7673716f6e6e6d666d6d6e6f707376797c80858b91969fa2a9b1b9c1c9d2dad6cdc4bbb2a89e948c7f736a5f53493f33271c12070000000000000000000000000000000000000a1724303d4a5763707d8a9aa4afbbc8d4dbcec2b5a89b8f827568574d4244505b6676838f9ca9b6c2cfd2c5b8ac9f9285796d6053463a2d202c3844515c667683909ca9b6c3cfd9ccc0b3a6998d807366544a3f4855616e7b8897a1adb9c6d2d2c6b9ada297887b6e6255483b2f22150800000000000000000000000000000000000000000000000000000000000004111d2935404b5563707d8a97a1adb9c6d2dcd1c6b9ac9f93877b6e6154483c322f2f2f2f2f2f2f2f2f2f2f2f2f2f2f333f4953626f7c8895a0acb8c5d4ded1c5b8aca095887c6f62544a3f33281c0f0300000000000000000000000000000000000008131d262f363c40414141414141414141414141414141413e3d3a342d241b110600000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3b4854616e7b8795a0aca095887b6e6155483b2f24190b141c2228323a41464f5456544f45413a3227221b140b15222f3c4855626f7b8896a1aca095877b6e6154483b2f24180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d273039404546474747474747474747474747474747474747474747474747474747474747474747474745403931271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c10131413100c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1bdcfdae6d9cdc0b3a69a8d8073675a4d4034271a08000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c17202c3945525d68717e8a939ea8b2bcc5cfd8dfd4cbc2b9b1a9a299928c85807a74706d676664636261605c606162636466676d7073797f848b9297a0a7afb7c0c8d2dcd6cdc3bab0a69f92877c6e655b5044392e23180c000000000000000000000000000000000003101c28343f4a546673808d99acb6c0ccd8d7ccc0b5ab998c7f7266594c3f3f4a546673808d99a6b3c0cfd3c6baaea298887c6f6255493c2f222d3a4653606d7985929facb8c5d2d5c9bdb2a8978a7d7064574a3d46535f697885929eabb8c5d1d6cabeb3a9978b7e7164584b3e2f24190d010000000000000000000000000000000000000000000000000000000000010d18242f3a4653606d7985929eabb8c3ced9d4c8bbafa49a8c7f7266584e43372b222222222222222222222222222b3744505b6573808d9aa7b1bcc8d4d8ccc0b6ac9d9184776a5f5342382d22170b00000000000000000000000000000000000000010b141d252b30333435353535353535353535353535353532312e29221b12090000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535e697783909daaa7988b7f7265564c4135291d110a1117202830353d44484948443d3530282017110a111d2a36414c5666727f8c99a8aa9d908377695e52463a2d1d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e272e34383a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a38352f271f150b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f201f1c18120f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a9b3bec9d5e1dbcec2b5a89b8f8275685c4f423024190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e2a36424d57606d7a85919ea5afbac3ced7e1d6cdc2b9b1a7a0979287807a736d6863605d555756555453515354555657555c6063676d72797e8590959ea5aeb6c0cad4ded5ccc1bbaea3999083776c60544a4034281c11060000000000000000000000000000000006121f2c3844505c6676838f9ca9b6c2d2ddd4c7bbafa499897c706356493d3d4a5764707d8a97a8b2bdc9d5cabfb4aa988b7e7265584b3f30252f3c4955626f7c8898a2aebac7d3d2c5b9aca096877a6d6154473a424d576976828f9ca9b5c2cfdbcfc1b4a79a8e817467564c4135291d110400000000000000000000000000000000000000000000000000000000000007131f2c3844505c6674808d9aa8b2bdc8d4d8ccc0b6ac9d9184776a5f5347382d221716161616161616161616202d394653606c7884919eabb7c3ced9d4c8bbafa49a8c7f7266584e432f261c11060000000000000000000000000000000000000000020b131a202427282828282828282828282828282828282524211d181109000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576673808d99a9a99c8f8276685d5245392c201306060e161e242932383b3d3b383229241e160e060713202d3946525e687683909ca9a9998c807366574d42362a1e0b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151d23282c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c29241d150d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d151d23292c2d2c29231d1b150e0902000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8797a1adb9c6d2dfddd0c3b6aa9d9083776a564c4135291d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a46525e6974808d97a1adb7c1ccd5e0d9cfc5bbb1a79f9590857d736d68615e5654514c4a4948474644464748494a4b5153555d60666d717b838e939da4aeb8c2ccd6ded7cbbfb5ab9f948b7e71665c5144382e23170b000000000000000000000000000000000713202d3a4653606d7985929facb8c5d2dfd2c6b9ac9f93867a6d6054473a3b4754616e7b8796a1adb9c5d2d0c1b4a79b8e817468564c413529323f4c5865727f8b98aab4bfcad6d1c4b7aa9e918477685e524639404d596673808c99a6b3bfcedad0c3b7aa9d908477685d5245392c20130600000000000000000000000000000000000000000000000000000000000003101c28343f4a54626f7c8996a0acb9c5d2ddd2c7b8aca095887c6f62544a3f33281c0f09090909090909101c2834404b5563707c8996a1adb9c5d5dfd2c6b9ac9f93877b6e6154483c3221140a0000000000000000000000000000000000000000000001080f14181a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b181715110c0600000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a25313c4956626f7c8997a1ac9f92867a6d6054473a2e23170b00040c131921272c2f302f2c272119130c04000714212e3a4754616d7a86939faca197897c6f6256493c30251a0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f2020202020202020202020202020202020202020202020202020202020202020202020201f1d18120b03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f272f34383a38342f2b26201a140d070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d687885919eabb8c4d1deded2c5b8ab9f928578685d5245392c2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c56616e7b86929fa9b3bec9d3dedcd1c7bdb3a99f9590837b706b605d56524c4745413e3c3b3b3a383a3a3b3c3d4045474b51545c60696e79818d929da6b0bac4ced8dcd1c6bdb0a69e9184796d60544a3f34281c10030000000000000000000000000000000916232f3c4956626f7c8998a2aebac6d3ddd0c3b7aa9d908477675d5145393a46525e697884919eabb8c4d1d0c4b7aa9d918477685e5246392d36414c566875818e9ba8b4c1d0dbcec1b4a89b8e817568564c41363d4a5763707d8a96a8b2bdc9d5d2c6b9ac9f93867a6d6054473a2d211406000000000000000000000000000000000000000000000000000000000000000c17232e384754606a7784919eaab7c2cdd8d4c8bcb1a79a8d8073665b5044382b1f1207000000000006131f2c3845515c6774818e9aa8b2bdc9d5d7cbbfb5ab9c908376695e53463a2d21140200000000000000000000000000000000000000000000000003080b0d0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0b0b0905010000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a1117202d394653606c7985929eaba3998a7d7164544a3f34281c10030002080d161b20222322201b160d08020004101c2834404a5464717e8b99a4ab9e9285796c605346392d2017110a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c101313141414141414141414141414141414141414141414141414141414141414141414141413100c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313940454745403937322a251f18130b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c566976838f9ca9b6c2cfdcdfd3c6baada297877a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e6874808d99a3aebbc4cfdbe3d7cbc0b5aba1979083796e696059524c46413a39352f302f2e2d2c2d2e2f302f34383a40454b51575f676d75808d949fa8b2bcc6d0dbd8cfc2b9aca1968b7e71665c5044382b1f12070000000000000000000000000000000c1925323f4c5865727f8b98aab4bfcad6dacdc1b4a79a8e817467554c413536424d576875828f9ba8b5c2d2d1c5b8aca096877a6d6154473a2e3946525e687884919eabb7c4d1d6cabfb4aa988b7e7265584b3f303a4754616d7a8796a1acb9c5d2d4c8bbafa49a897d7063564a3d2d22170b0000000000000000000000000000000000000000000000000000000000000006111c2b37434e586673808c99a7b1bcc8d4d9cec3b8ab9e9184786c605346392f23180c00000000000713202d3a4653606d7985929fabb8c4cfdad3c7bbaea3998b7e7265574d42362a1e1205000000000000000000000000000000000000000000000000000000010102020202020202020202020202020200000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c151c2328323a44505b6674818e9ba7ab9b8e8175665c5044382b1f1206000000040b101316161613100b0400000006121f2c3844515c6675828e9baba79b8e8174665b50443a3128231c150c0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004060707070707070707070707070707070707070707070707070707070707070707070707070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232f39434b5153514b47433c363029241d17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f414e5a6774818d9aa7b4c0cddae2d6cabeb3a995897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929fabb4bfcdd6e1dfd4c7bbafa39992857b6e675f574f45413a36302c2924232221201f2021222323292c2f353940454d555d606d78828f96a0aab4bfcad6e1d5c9bdb2a89e9184786d6053463a2f24180d010000000000000000000000000005121e2a36424d576875828e9ba8b5c1d0dbd6cabfb4aa988b7e7165584b3e2f303f4c5966727f8c99abb5c0ccd4c8bdb2a8968a7d7063574a3d2d3b4754616e7a8796a1acb9c5d2d3c6baaea298887c6f6255493c2f3946525e687884919eabb7c4d1d8ccc0b6ac998c807366544a3f33281c0f03000000000000000000000000000000000000000000000000000000000000000f1b27323d4855616e7b88959fabb8c7d1dcd2c5b9ada196897c7063554b4034291c100400000004111d2935414c5664717d8a97a2adbac6d6dfd2c5b9ac9f92867a6d6154473b31251a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdcd6c9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080f171e262e343d444c525a64717d8a97a4ab9e9285796d6053463a2d20130600000000000407090a09070400000000000713202d3a4653606d7985929faba4978a7d71645a524c433d342e261e170f0801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2934404b555c605c55534e46423b352f28231c140c0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081926323f4c5965727f8c98a5b2bfced9e5dbd0beb1a4988b7e7165584b3e3225180900000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e5865727f8c98a2aebdc6d1dfe1d5c9bdb2a89f92877d70695e554d453d352f2a25201d19161514131213141516181c1f24292e343c434b515c666d7a849198a2aebac6d1dcdacec4b9aca096897d7063554b4035291d1004000000000000000000000000000714212d3a46535e697884919eabb8c4d1ded3c6baaea298887b6f6255483c2f303d495663707c8999a4afbbc7d4cebfb3a6998c807366544a3f333d4a5764707d8a97a8b2bdc9d5d2c5b8ac9f9285796d6053463a2d36414c566875828e9ba8b5c1d2ddd2c2b5a99c8f8276665b5044382b1f1206000000000000000000000000000000000000000000000000000000000000000a16212d3a47535f697683909dabb5c0cbd7d5c9bdb2a89a8e8174675c5145382c1f13080000000713202c3945525d6875828f9ba9b3becad6d6cabeb3aa9b8f8275685d524639291f140900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdbd6c9bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c1319212930383f444f565d606c717c8895a2ada297897c6f6356493c2e23170b00000000000000000000000000000000000a1623303d495663707d8998a2aea295887c716c605d564f443f3830292119130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003061313131313131313131313131313130f0f0c09040000000000000000000000000000000000000106090b0c13131313131313131313131313130808060200000000000000000000000000000000000000000306080913131313131313131313131313130f0e0c090400000000000006131f2c3845515c676d67625f58524d45403a342e261e1b150e090200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a8b2bdc9d5e1dacdc0b3a79a8d8074675a4d413025190e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3a47535f6a7783909daab4bfcfd8e2dacfc5b9aca0968c7f726b60574d433b3329241e1913110d0808080706070708070c1013181d23283139404a545d686f7c86929faab4bfcbd7e0d5c9bdb2a89b8e8174675d5145392c201306000000000000000000000000000815212e3b4854616e7b8796a1adb9c5d2dfd2c5b8ac9f9285796c605346392d2d3a4754606d7a86939facb9c6d2cfc2b5a99c8f8276665b504438404a546773808d9aa6b3c0cedacfc2b6a99c8f8376665c5044382b303f4c5965727f8c98abb5c0ccd7d2c5b8ab9f9285796c605346392d2013060000000000000000000000000000000000000000000000000000000000000006121e2b37424d5765727f8b99a3afbbc7d3dacfc4b8ab9f9285796d6053473a3024190d0100000714212d3a4754606d7a86929facb9c5d0dbd3c6baaea2988a7d7164564c413529170d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cececec9bcafa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d161e2429333b424a505960686d757e86929facb3a99a8d807367544a3f34281c100300000000000000000000000000000003101c28343f4a546773808d9aaab3ac9f92867e756d686059504a423b3329241e160d06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b10122020202020202020202020202020201c1b1915100902000000000000000000000000000000070d1216181920202020202020202020202020201514120e090300000000000000000000000000000000030a0f12151520202020202020202020202020201c1b18150f0902000000000714202d3a4753606d79766f6a615e57514b443f38302b262019140d07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8796a0acb9c5d2dedccfc2b6a99c8f837669564d42362a1e110500000000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a0acbcc6d0e1e1d5c9beb3a99e9184786d60594f453b31292119130d0804010000000000000000000004070c12181f282f38424c565f6a74808d98a3aebac7d1dcd9cec4b8ac9f92857a6d6053473a2d201408000000000000000000000000000b1824313e4b5764717e8a97a8b2bdc9d5dccfc2b6a99c8f8376665b5044382b2c3945515d677784909daab7c3d0d2c5b8ab9f9285796c6053463944515c667683909ca9b6c3cfd9ccc0b3a6998d807366544a3f3428303d495663707c8999a4afbbc7d4d3c6baaea298887b6f6255483c2f22150800000000000000000000000000000000000000000000000000000000000000020e1a26313c4754616d7a86929facb9c5d0dbd3c6baada2978a7d7164564c4135291d11040005121e2a36424d5765717e8b98a3aebac7d7ded2c5b8ab9f9285796d6053473a3024190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c1c1c1c1c1bcafa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f282f353e454d545c606b6f7a818b9298a2aeaaa29d918477665c5044382b1f120600000000000000000000000000000006121f2b3844505c667784919ea2aaaea298928b817a6f6b605c544d453e352f281f17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c03000000000000000000000000010911181e2225252d2d2d2d2d2d2d2d2d2d2d2d2d2d22211e1a150e060000000000000000000000000000060e151a1f21222d2d2d2d2d2d2d2d2d2d2d2d2d2d282725201b140c030000000a1724313d4a5764707d827c746e69605d55504a423e37312a251f18120b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525d687784919eaab7c4d1ddded1c5b8ab9e928578695e52463a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b5566737f8c99a7b1bcced8e2dfd2c6b9ada1978b7e72665c50473d33291f180f080100000000000000000000000000000000070d161d26303a444e58616e7b86929fabb5c0cbd7dfd3c6baaea2988a7d7164574a3e3025190d01000000000000000000000004111d2935404b556774808d9aa7b3c0cfdad9ccc0b3a6998d807366544a3f33282935414b556874818e9ba7b4c1d0d3c6baaea298887b6f6255483c4653606d7985929facb8c5d2d4c8bdb2a8968a7d7063574a3d2e232d3a4753606d7a86939facb9c6d2d6cabeb3aa988b7e7165584b3e3025190d01000000000000000000000000000000000000000000000000000000000000000915202d3946525e6875828f9caab4bfcad6d6cabeb3a99b8f8275685d5245392c201409000714202d3a46525e6976838f9caab4bfcbd7d5c9bdb2a89a8e8174675c514538281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b4b4b4b4b4b4b4afa396897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c141c2328313a414550575f666d737d848e939fa2aaa69f98928b81786d6053463a2d2013070000000000000000000000000000000713202d3a4653606d78818b92989fa7aaa29f938e847d736d665f575045413a3128231c140c05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c141c23282b3939393939393939393939393939393634312c261e150c02000000000000000000000009131b23292e313239393939393939393939393939392f2e2b2620180f0600000000000000000000000006101820262b2e2f39393939393939393939393939393534312c251e150c0200000a1724313d4a5764707d8a87817b736d67605c544f47433c363029241d17110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c566875818e9ba8b4c1d1dcdfd2c6b9ada297877a6e6154473b2e2114060000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6776838f9ca9b6c2cddceaded1c5b8ab9e9285796d60544a3f352b20170d0600000000000000000000000000000000000000040c141e28323c46525e6974818d99a3afbbc7d3e0d6cabfb4aa9a8d817467564c41362a1d110500000000000000000000000613202c3945515d677783909daab6c3d0ddd5c9bdb2a8978a7d7064574a3d2d22242f3f4b5865727e8b98aab4bfcad6cabeb3aa988b7e7165584b3e4956626f7c8998a2aebac7d3d2c5b8aca096877a6d6154473a2e212c3945515d677784909daab7c3d0dbd0c1b4a79b8e817468564c4135291d11050000000000000000000000000000000000000000000000000000000000000005111e2a36414c5664717e8a98a2aebac6d3dbd0c5b9ac9f92867a6d6054473b30251a0e020815212e3b4854616e7b87939facb9c6d1dcd2c5b9ada196897d7063554b403429160c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca8a8a8a8a8a8a8a8a8a396897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070f171e262e343d434c515a61696e78808791969ea5aba39f9490857e756d665c5044382b1f120600000000000000000000000000000006121f2b3844505c666d757e8690959fa3aba59e96918780786e69615a514c433d342e261e170f0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e262e343846464646464646464646464646464642413d3730271e14090000000000000000000007111b252d343a3e3f46464646464646464646464646463b3a37312a21180e0300000000000000000000030e18222a31373a3c464646464646464646464646464642413d3730271e140900000a1724313d4a5764707d8a938e868079716d666159534e46423b352f28221c140b0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1924303f4c5965727f8c98abb5c0cbd7e2d6cabeb3a9968a7d7063574a3d2d22170b000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facb8c5d2dfe1d4c8bdb2a8998c7f72675c5142382e23190e05000000000000000000000000000000000000000000020c16202a36424d56616e7b86929facb9c5d2dfdbd0c3b7aa9d908477685e5246392d20130700000000000000000000000714202d3a4753606d7a86929facb9c5d2dfd2c5b9aca196877a6e6154473b2e21222f3c4955626f7c8898a2aebac7d3d0c1b4a79a8e817467564c414c5865727f8b98aab4bfcad6d1c4b7aa9e918477685e5246392d202935404b556774818e9aa7b4c1d0dcd0c4b7aa9d918477685e5246392d20130700000000000000000000000000000000000000000000000000000000000000010d1925303a4753606d7a85929facb8c4cfdad3c7baaea3998b7e7165574d42362a1e1206121f2b37434e5865727f8c99a4afbbc7d4ded1c4b8ab9e9184786c605346392f231806000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9b9b9b9b9b9b9b9b9b9b9b96897c706356493d3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c1318212930383f444e555d606c717b838c9299a1a8a8a099928c827b716c605c544a3f34281c100300000000000000000000000000000003101c28343f4a545c606c717b838c9299a1a8a8a199928c837b716c605d554e443f3830292118130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2630383f445353535353535353535353535353534f4d49423930261b10040000000000000000010d18232d373f464a4c53535353535353535353535353534847423c332a201509000000000000000000000a15202a343c43474853535353535353535353535353534f4d48423930251b0f04000a1724313d4a5764707d8a9798928c857e78706b625f58524d454039332d261d1b150e0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081623303c4956636f7c8999a3afbbc7d4e0dbcfbfb3a6998c807366544a3f33281c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8998a3aebac7d3e0ded1c5b8aca096877b6e61554b4030261c11070000000000000000000000000000000000000000000000040e1925303b46535e6976828f9ca9b5c2d0dbdfd2c6b9ac9f93867a6d6154473a2e21140700000000000000000000000a1623303d495663707c8999a3afbbc7d4ded1c4b7ab9e918478685e5246392d20202d3a4653606d7985929facb8c5d2d0c4b7aa9d918477685d52454d566875818e9ba8b4c1d0dbcec1b4a79b8e817468564c41362a1d242f3f4b5865727e8b98aab4bfcbd6d1c5b8aca096877a6d6154473a2e21140600000000000000000000000000000000000000000000000000000000000000000813202c3945515d6775818e9ba9b3bec9d5d7cbbfb4ab9c8f8376695e52463a2d20150a15212e3a47535f6a7783909dabb5c0ccd7d4c8bcb1a79a8d8073665b5044382b1f1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828e8e8e8e8e8e8e8e8e8e8e8e8e897c706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d161d2429333b424a505860676d757e8590959fa3aba59d9691877f786e69615a504a42382e23170b00000000000000000000000000000000000b17232e38424a505a61696e78808791969ea5aba39f9590857e756d676058504a423b3329241d160d06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e38424a505f60606060606060606060606060605c5a544b42372c211509000000000000000006121e29343f49515658606060606060606060606060606055534d453c31261a0e020000000000000000030f1a26313c464e535560606060606060606060606060605b59534b42372c201509000a1724313d4a5764707d8a97a29f97918b837d766f6a615e56514b443f382f2b262019140c0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5d2dfdccfc2b6a99c8f8276665b5044382b1f12060000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98aab4bfcbd6e3ddd0c4b7aa9d918477685e5243392f1e140a0000000000000000000000000000000000000000000000000009141f2a36424d5766727f8c99aab4becad6e0d4c8bbafa49a897d7063564a3d3023170a00000000000000000000030f1c28333f4a5466737f8c99abb5c0cbd7dbcec1b5a89b8e827568564c41362a1e1f2c3844505c667683909ca9b6c3cfd2c6b9ac9f93867a6d605447525e687884919eabb7c4d1d6cabeb4aa988b7e7265584b3f302519222f3c4955626f7c8898a3aebac7d3d4c8bdb2a8968a7d7063574a3d2e23170b000000000000000000000000000000000000000000000000000000000000000004101d2935404b5563707d8997a1adb9c6d2dcd1c6b9ac9f93877b6e6154483c31261a0f1b27333f4953626f7b8895a0acbdc7d2ddd1c5b8aca095887c6f62544a3f33281c0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d192633404c5966737f81818181818181818181818181817c6e6255483b2f2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f282f353e454d545c606a6f7a818a92989fa7a9a19e938e847c736d665e5750443f3830261c1106000000000000000000000000000000000006111c2630383f4450575f666d737d848e939fa2a9a79f98928a817a6f6a605c544d453e352f281f17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69655d54493d3125190c00000000000000000916222e3a46515b62656c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5f574d42372b1e1206000000000000000006121f2b37434e585f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c68655d53483d3125180c000a1724313d4a5764707d8a97a3a9a19e95908a827c746e69605d55504a423d37312a251f18120b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d677783909daab6c3d1dcded2c5b8ab9f9285796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b4c0d0dce7dacdc1b4a79a8e817467564d4131271d0c0200000000000000000000000000000000000000000000000000020e1a25313c4956626f7c8998a2aebac6d3dfd8ccc0b6ac988b7e7265584b3f3225180c0000000000000000000006121f2b3844505b6676828f9ca9b5c2d1dcd7cbbfb5ab988c7f7265594c3f3025191c28343f4a546773808d9aa6b3c0cfd4c8bbafa49a897d7063564a54616e7a8796a1acb9c5d2d3c6baaea298887b6f6255483c2f2215202d3a4653606d7986929facb8c5d2d9cec0b3a6998d807366544a3f34281c100300000000000000000000000000000000000000000000000000000000000000010d18242f3a4653606d7985919eabb8c3ced9d4c8bbafa49a8c7f7265584e43372b1f121f2b3744505b6573808d99a7b1bcd0d9d8ccc0b6ac9d9084776a5f5342382d22170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1825323e4b57636d7375757575757575757575757575756e6a5f53473a2e21140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b141c2228313a414550575e666d737c848e939fa2aaa69f97928a81796f6a605c544d453e342e261e140a000000000000000000000000000000000000000a141e262e343e454d545c606b6f7a818a92979fa6aaa29f938e847c736d665e575045403a3128221c140b0500000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667679797979797979797979797979797570655a4d4134281b0f02000000000000000b1825313e4a56626d72797979797979797979797979797976695f53473a2e21140800000000000000000815212e3a47535f6a767979797979797979797979797979756f65594d4134271b0e000a1724313d4a5764707d8a97a3b3ada7a09d948f87817b736d67605b544f47433c363029241d17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556673808d99abb5bfcbd7dfd3c6baaea298887b6f6255483c2f221509000000000000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9b5c2cfdce2d6cabeb3a9978a7e7164574b3e3024150b0000000000000000000000000000000000000000000000000000000913202d3a4653606d7985929fabb8c5d2deddd2c0b3a79a8d8074675a4d4134271a0e000000000000000000000613202d394653606c7985929fabb8c5d2ded3c7bbaea399897c6f6356493c30231617232e3e4a5764717e8a97a9b3bec9d5ccc0b6ac998c7f736653495764707d8a97a8b2bdc9d5d2c5b8ab9f9285796c605346392d20131f2c3844515c667683909da9b6c3d0dccfc2b6a99c8f8376665c5044382b1f1206000000000000000000000000000000000000000000000000000000000000000007121f2b3844505c6674808d9aa8b2bdc8d4d8ccc0b6ac9d9083776a5f53473a2e2113202d394653606c7884919eabb7c3cdded4c8bbafa49a8c7f7266584e432f261c1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a16222f3b46515b63666868686868686868686868686868625f584e43372b1f1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070f171d262d333d434b515a61696e787f8791969ea5aaa39f948f857e746d676058504a423b3328231c140c0200000000000000000000000000000000000000020c141c2328333b424a505960676d747e8590949fa3aba59e9691877f786e69615a514b433d332d261d170f0701000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986868686868686868686868686868275695c4f4236291c0f03000000000000000c1925323f4c5865727f86868686868686868686868686867b6e6255483b2f22150800000000000000000915222f3c4855626f7c86868686868686868686868686868175685b4f4235281c0f000a1724313d4a5764707d8a97a3b0b9b1aca69f99938e868079716c666059534e46413b352f28221c140b0a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3d4a5663707d8999a3aebbc7d3e0d6cabeb4aa988b7e7165584b3e31261a0e020000000000000000000000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919eaab7c4d1dddfd3c6baada297877b6e6154473b2e21140800000000000000000000000000000000000000000000000000000006121f2b3844505c6675828f9ca8b5c2cfdbdbcfc2b5a89c8f8275695c4f4236291c0f000000000000000000000915222f3c4855626f7b8897a2adbac6d3dfd2c5b9ac9f9286796d6053473a2d201415222e3b4855616e7b8897a1adb9c6d2d2c2b5a89c8f8275655b50546773808d9aa6b3c0cedacfc2b6a99c8f8276665b5044382b1f121c2834404a546774808d9aa7b3c0cfdbd2c5b8ac9f9285796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54626f7c8996a0acb8c5d1ddd2c7b8aca095887b6f6255483d32271c2834404a54636f7c8996a1acb9c5d2dfd2c6b9ac9f93877b6e6154483c3221140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161e2a3540495157595b5b5b5b5b5b5b5b5b5b5b5b5b5b55534e463c31261a0f0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c121821292f383f444e555d606c717b828c9299a0a8a7a098928b827a706c605d554e443f3830292117110a02000000000000000000000000000000000000000000020a1117212930383f444f555d606c717b828c9299a0a8a8a099928c827b716c605d554e443f382f292118120c040000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d79869393939393939393939393938f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b939393939393939393939393887b6e6255483b2f22150800000000000000000915222f3c4855626f7b889393939393939393939393938e8275685b4f4235281c0f000a1724313d4a5764707d8a97a3b0bdbcb8b0aba49f98928c847e78706b625f58524d454039332d261d1a150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929facb9c5d2dfdbd0c1b4a79b8e817468574d42372b1e12060000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b657985929facb8c5d2dfded2c5b8ab9f928578695e52463a2d20140700000000000000000000000000000000000000000000000000000003101c28343f4a546673808d99a6b3c0ccd9ddd0c3b6aa9d9083776a5d5044372a1d11000000000000000000000c1825323f4b5865727e8b98a9b3becad6ddd0c3b6aa9d908377675c5145382c1f1314212d3a46535f697885929eabb8c5d1d2c5b8ab9f9285796c60535c667683909ca9b6c3cfd8ccc0b6ac998c807366544a3f33281c0f18232e3e4b5764717e8a97a9b3becad6d3c6baaea298887c6f6255493c2f2216080000000000000000000000000000000000000000000000000000000000000000000b17232e384754606a7784919daab7c2cdd8d4c8bcb1a7998d807366584e43382c1f2c3844515c6674818d9aa8b2bdc9d5d7cbbfb4ab9c8f8376695e53463a2d21140200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101920272b2e3740464b4c4e4e4e4e4e4e4e4e4e4e4e4e4e4e4847433c332a20150900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d161d2429333b424a505860676d747e8590949fa3aba49f9590867f776e68615a514b433d342e261e170f0600000000000000000000000000000000000000000000000000060f181e262e343d434c515a61696e787f8791969da5aba39f9490857e746d676058504a423b3329241d160d0600000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939f9f9f9f9f9f9f9f9f9f9c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b989f9f9f9f9f9f9f9f9f9f95887b6e6255483b2f22150800000000000000000915222f3c4855626f7b88959f9f9f9f9f9f9f9f9f9f9b8e8275685b4f4235281c0f000a1724313d4a5764707d8a97a3b0bdc8c2bdb5afaaa29f97918b837d766f6a615e56514b443f382f2b262019140c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d677683909ca9b6c3cfdbded1c4b7ab9e918478695f53473a2e211406000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c778698a2aebac6d3e0ddd1c4b7aa9e9184776b574d42362a1e1105000000000000000000000000000000000000000000000000000000000b17232e3f4c5965727f8c98a5b2bfcbd8ddd0c4b7aa9d9184776a5e5144372b1e1100000000000000000005111e2a36414c566874818e9ba7b4c1d0dbdacdc0b3a79a8d807467554b4034291c10121e2a36424d576975828f9ca8b5c2cfd3c6baada297887b6e6255606d7986929facb8c5d2d4c8bbafa49a8a7d7063574a3d2d22170b15222e3b4855616e7b8897a2adbac6d3d6cabfb4aa988b7e7265584b3f3025190d01000000000000000000000000000000000000000000000000000000000000000006111c2b37434e5866737f8c99a7b1bcc7d4d9cdc3b7ab9e9184786a605448382e232d3a4653606d7985929eabb8c4cedad3c7baaea3998b7e7165574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f19222b32383b3c3f393e4042424242424242424242424242423b3a37312a21180e030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f282f353e454d545b606a6f79818a92979fa6a9a19a938d837c726c655e56504540393128231c140c05000000000000000000000000000000000000000000000000000000060c151c2328313a414550575e666c727c848e939ea2a9a69f97928a81796f6a605b544d453e352f281f17110a020000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acacacacacacacaca89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5acacacacacacacaca195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2acacacacacacacaca89b8e8275685b4f4235281c0f000a1724313d4a5764707d8a97a3b0bdd0d0c7c0bbb4aea9a19e959089827c746e68605d55504a423d37312a251e18120b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556673808c99a9b3becad6dfd2c5b9ada196887b6e6255483b2e23170b000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d798693aab4bfcad6e2dcd0c3b6a99d9083766a5d504330251a0e0200000000000000000000000000000000000000000000000000000000061825313e4b5864717e8b97a4b1becad7ded1c4b8ab9e9185786b5e5245382b1f120000000000000000000713202d3946525e687784919eaab7c4d1ddd6cabeb3a9978a7e7164574b3e2f23180c0e1a2631404c5966737f8c99a6b2bfced6cabeb3a9978b7e716458626f7c8998a3aebac7d3d2c6b9ac9f93867a6d6154473a2e21140613202d394653606c7985929fabb8c5d2dbd0c1b4a89b8e817568564c41362a1e11050000000000000000000000000000000000000000000000000000000000000000000f1b27323d4855616e7b88959fabb8c7d1dcd2c5b9aca196897c6f62544a3f342935404b5563707d8a97a1adb9c6d6dfd2c5b9ac9f92867a6d6054473b31251a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a16202b343d4347494b46443f382f3535353535353535353535352f2e2b2620180f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b141c22283139404550575e666c727c848e939fa2a9a59e97918880796f6a605b534d443e352f281f17110a090909090908060300000000000000000000000000000104060709090909090a11171f282f353e454d545b606a6f79818a92979fa6a9a29f938e847c726c665e57504540393127221b140b0500000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9b9b9b9b9b9b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2b9b9b9b9b9b9aea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aeb9b9b9b9b9b9b5a89b8e8275685b4f4235281c0f000a1724313d4a5764707d8a97a3b0bfc6ccd2ccc6bfbab2ada7a09d948f87817b736d67605b544f47433c363029241d17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3c4956636f7c8997a2adb9c6d2dfd5c9bdb2a8988b7e7265544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1adbad0dbe7dbcfc2b5a89c8f8275695c4f4236291c0900000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0bdc9d6ded2c5b8ab9f9285786c5f5245392c1f120000000000000000000714212e3a4754616d7a8796a0acb9c5d2ded2c6b9ada297887b6e6155483b2e221507091723303d4a5663707d8996a8b2bdc8d4cfc0b4a79a8d8174675565727f8b98aab4bfcbd6d0c4b7aa9d918477685d5246392d201307121f2b3744505b6576828f9ca9b5c2cfdcd1c4b7aa9e918477685e5246392d2014070000000000000000000000000000000000000000000000000000000000000000000a15212d3a46535f697683909dabb5c0cbd7d5c9bdb2a89a8d8074665c5044382c3945515d6775818e9ba9b3becad6d6cabeb3a99b8f8275685d524539291f14090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323d464e54565853504a423d36302823282828282828282822211f1a150e060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070e171d262d333c434b515a61696e787f8791969da5aaa29f938f857d746d675f585049413b3229241d16151515151515151515120f0a030000000000000000000001070d1013141515151515151515161e2429333b424a505860676d747e858f949fa3aba59d9691877f786e69615a514b433c332d261d170e07010000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6c6c6c6c2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2bec6c6c6c6bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc6c6c6c6c1b5a89b8e8275685b4f4235281c0f000a1724313d4a5764707d8a97a9aeb4bbc0c7d0d0cac4beb9b1aca69f99928e867f79716c666059534e46413b352f28221c140b0a03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929eabb8c5d1dcdacfc2b5a89b8f8275665c5044382b1f12060000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1dbcec1b4a89b8e8175685b4e4235281b0f02000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afbcc8d5dfd2c5b9ac9f9286796c5f5346392c20130000000000000000000a1724313d4a5764707d8a97a8b2bdc8d4ded1c5b8ab9e928578695f53463a2d2114070714212e3a4754616d7a8796a0acb8c5d2d0c3b7aa9d908477675d6875818e9ba8b5c1d0dccec1b4a79b8e817468564c4135291d11050f1b27333f49536673808c99a6b3bfcfdad2c5b9aca096877a6e6154473b2e21140700000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727f8b99a3afbbc7d3dacec4b8ab9e9285796d6053463a2f3a4753606d7a85929facb8c5cfdad3c6baada2978a7d7064564c413529170d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b38434e58606265605b544f46423b342e271e1a1b1b1b1b1b1514120f090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121820292f383f444e555d606c717b828c9299a0a8a79f98928b827a706b605c554e443f382f29222222222222222222222222211f1a150e060000000000000000040c12181d2020222222222222222222222222292f383f444e555d606c717b828c9299a0a8a8a099928c827b716c605d554e443f382f292018120b0300000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d2d2cfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd2d2c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d2d2cec1b5a89b8e8275685b4f4235281c0f000a1724313d4a5764707d8a979fa2aaafb5bdc2c8cecfc9c3bcb8b0aba39f98928c847e78706b625f58524c454039332d261d1a150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c6675818e9babb5bfcbd7ded2c5b8ab9f9285796d6053463a2d2013090000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1dacdc0b3a79a8d8074675a4d4134271a0e01000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a1aebbc8d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000004101c2834404b556773808d9aa6b3c0ced9dbcfc2b5a89c8f827569574d42372b1e12050713202d3946525d687784919eaab7c4d1d2c6b9ac9f93867a6d60697884919eabb7c4d1d6cabeb3a9988b7e7165584b3e3024190d010b17222d3d4a5764707d8a97a8b2bdc9d5d5c9bdb2a8978a7d7064574a3d2e23180c000000000000000000000000000000000000000000000000000000000000000000020e1a26313b4754616d7a86929facb9c5d0dbd2c6b9ada197897d7063554b4035414c5664717e8a98a2aebac6d7ded2c5b8ab9f9285796d6053463a3024190d0100000000000000000000000000000000000000000000000000000000000000000103040404040404040404040404040404040100000000000000000000000000000815222e3b4754606a6f726c666059524d454039302b261f18130b06080806020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d151d2429333b424a505860676d747e858f949fa3aba39f9590867e756d686059514b433c332d2f2f2f2f2f2f2f2f2f2f2f2f2f2f2e2b2620181006000000000000040d161d24292c2d2f2f2f2f2f2f2f2f2f2f2f2f2f2f2d333d434b515a61696e787f8791969da4aba39f948f857e746d6760585049413b3229241d150d06000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000916222f3c4955626f7c858d92989fa4abb0b8bcc3c9cfcec8c2bdb5afaaa29f96918b837d756f6a615e56514b443f382f2b262019130c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a5464717d8a99a3aebbc7d3dfd3c6baada297897c6f6256493c31261a0e0200000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000006131f2c3845515c677683909ca9b6c3cfdcd8ccc0b6ac998c7f7366594c4031261a0e0205111d2935414c566875818e9ba8b4c1d1d4c7bbafa499897c70636e7b8796a1acb9c5d2d3c6baada297887b6f6255483c2f221508000614212e3b4754616e7a8796a1adb9c5d2d9cec0b3a69a8d807367544a4034281c10040000000000000000000000000000000000000000000000000000000000000000000914202d3946525e6875828f9caab4bfcad6d5c9beb3a99b8e8174675d51453946525e6875828f9caab4bfcad6d5c9bdb2a89a8e8174675c514538281e130800000000000000000000000000000000000000000000000000000000000000060a0e10111111111111111111111111111111110d0d0a070200000000000000000006131f2b37434e58626f7c7e786f6b615e57514b433e373129241d17110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f272f353e454d545b606a6f79818a92979fa6a8a199928c837b716c615e564f45403c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3a37312a2218100600000000010c161f282f35393a3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c404550575e666c727c848d929ea1a9a69f97928a81796f6a605b534d443e352f271f17110a0200000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000815212e3b47535f6a6f7a80868e93999fa6acb1b9bdc4cad0cfc7c0bbb4aea9a19e959089827c746e68605d55504a423d37312a251e18120b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3a4754606d7a86929facb9c5d1dcd6cabeb3a9998c807366574d42372b1e120600000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000713202d3a4653606d7986929facb9c5d2dfd4c8bbafa49a897d7063564a3d3023170900010d1924303f4c5865727f8b98abb4bfcbd7ccc0b5ab998c7f7266717d8a97a8b2bdc9d5d2c5b8ab9f9285796c605346392d201306000714202d3946525e687884919eabb7c4d1dccfc3b6a99c908376665c5144382c1f120600000000000000000000000000000000000000000000000000000000000000000005111d2a36414c5664717e8a98a2aebac6d3dacfc5b8ab9f9285796d6053473a4754616d7a86929facb9c5d0dbd2c5b9ada196897c7063554b403428160c020000000000000000000000000000000000000000000000000000000000040b11161a1d1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1a1917130e0800000000000000030d15212e3b47535f6a75828b837d756e69605c554f47423c352f27221b140b08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b141b22273139404550575e666c727c848e939fa2a9a59e96918780786e69625a524c48484848484848484848484848484848484848484847433c342a22180e0400000007121d2831394045474848484848484848484848484848484848484848484d545b606a6f79818a92979fa6a9a29f938e847c726c655e56504540393127221b140b05000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0006131f2b37434e585f676d737b81878f949da0a7adb2babec5cbd1cbc6bfbab2ada7a09d948f87817a736d67605b544f47433c363029241d17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6776828f9cabb5bfcbd7dbd0c3b7aa9d908477695f53473a2d21140800000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000000091623303c4956636f7c8998a3aebac7d3dfd2c6b9ac9f93867a6d6054473a2d21140700000816232f3c4956626f7c8999a3aebac7d3d2c2b5a89b8f82756873808d99a6b3c0cedacfc2b5a99c8f8276665b5044382b1f12060005111e2a36414c566875828f9ba8b5c2d2ddd2c5b8ac9f9286796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000010d1925303a4753606d7985929facb8c4cfdad3c6baaea2988a7d7164554c424d5765727e8b99a3aebbc7d3ded1c4b7ab9e9184786c605346392e2318060000000000000000000000000000000000000000000000000000000000050e151c2227292a2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2726231f19120a02000000000009141f2b37424e57626f7c88949089817b726d676159534d45413a332d261d19130c06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070e171d262d333c434b515a61696e787f8791969da5a9a29f938e847d736d665f57555555555555555555555555555555555555555555555555534e463c342a20150a0000010d18242f39434b5153555555555555555555555555555555555555555555555555585f676d747d858f949fa3aaa59d9691877f776e69615a514b433c332d261d170e070100000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00030f1b26323c464e555d60696e747c828990959ea1a8aeb3bbc0c7cfd0cac4bdb9b1aca69e99928e867f79716c666059534e46413a352f27221b140b0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5565727f8b99a3aebbc7d3ded1c5b8aca095887b6e6155483b3025190d01000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000c1926323f4c5965727f8c98aab4bfcbd7ddd0c4b7aa9d918477685d5245392c20130700000713202d3a4653606d7986929facb9c5d2d1c4b7ab9e9184786775828f9ca8b5c2cfd8ccc0b6ac998c807366544a3f33281c0f0300020e1925303f4c5966727f8c99acb6c0ccd8d3c7baaea398897c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000008131f2c3845515d6774818e9ba9b3bec9d5d6cabeb4aa9b8e8275675d5146525e697683909cabb5bfcbd7d4c8bcb1a7998d8073655b5044372b1f120700000000000000000000000000000000000000000000000000000000040e1720272e33363737373737373737373737373737373734322f2a241c140a00000000020e1a25313a47535f6a75828e9b9d938e867f79706b625f57514b443f382f2a251e17110a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121820292f383f444e555d606c707b828c9299a0a8a8a197928a817a6f6b626262626262626262626262626262626262626262626262626262625f584e463c31261b0f030004101d2935404b555d60626262626262626262626262626262626262626262626262626262626c707a828b9298a2a9a8a099928c827b706c605d554e443f382f292018120b03000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000a15202a343c434c51575e616a6f767d838b91969fa2aaafb5bdc1c7cdcfc9c3bcb8b0aba39f98928c847e78706b625f58524c454039332d261d1a150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a4754616d7a86929facb9c5cfdad4c8bcb1a7988c7f7265564c41362a1e1105000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000005121e2b37424d576875828f9ba8b5c2d1dcdacec1b4a79b8e817468564c4135291d1104000006131f2c3845515c677683909da9b6c3d0d2c6b9ac9f93867a6d7784919eaab7c4d1d4c8bbafa49a897d7063564a3d2d22170b000000081623303d495663707c899aa4afbbc8d4d6cbbfb4aa988b7f7265584c3f30251a0e0200000000000000000000000000000000000000000000000000000000000000000004101d2935404b5563707d8997a1adb9c6d2dbd0c5b8ac9f92867a6d60544854616e7b87939facb9c6d1dcd1c5b8aca095887c6f6253493f33271b0f03000000000000000000000000000000000000000000000000000000000b15202931393f4244444444444444444444444444444444403f3b362e261c120800000005121e2a36424d57626e7b87939fa59e98928c847d756e69605d555049413c363028231c150c09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d151d2429323b414950585f676d747e858f949fa3abaca19691857e756f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6a5f584e43372b1f1206000613202c3945515d676d6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f777f869297a2adaba39f948f857e746d675f585049413b3229241d150d060000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000040e18222a313a41454d52585f626b70787e848c92989fa3abafb8bcc2c8cecec8c1bdb5afaaa29f96918b837d756e6a615e56514b443f382f2b262019130c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000813202d3946525e6875828f9ba9b3bec9d5d9cec3b6a99c908376685e5246392d201409000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000714212d3a46535f697885929eabb8c5d1ded6cabfb4aa988b7e7265584b3f2f24190d01000004101c2834404b556774808d9aa7b3c0d0d4c8bbafa49a887b6f7986929facb9c5d2d2c6b9ac9f93867a6d6054473a2d2114060000000714212d3a4754606d7a86939facb9c6d2dcd0c1b5a89b8e827568574d42362a1e1205000000000000000000000000000000000000000000000000000000000000000000000c18242f3a4653606d7985919eabb8c3ced9d3c7baaea3988b7e7164564d5765727f8c9aa4afbbc8d4d8ccc0b6ac9d9083776a5f5341382d22170b0000000000000000000000000000000000000000000000000000000006111c27313b434a4f515151515151515151515151515151514d4b4740382e24190e0200000714212d3a46535e6974818e99a4afaaa29f96918a827b736d67605b534e46413a342e261e1a140c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171f272f353e444d535b606a6f79818a92979fa6aeb5ab9e91847d7c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c766a5f53473a2e211509000714202d3a4753606d797b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c7e85929eabb5aea69f97928a81796f6a605b534c443e352f271f17110a02000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000710181f282f353b42464e535960666c71797f858d92999ea5abb1b9bdc3c9cfcfc7c0bbb4aea8a19e959089827c746d68605d555049413d37312a251e18120b060000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c5664707d8a97a1adb9c6d2dfd2c6b9ac9f93867a6e6154473b31261a0e020000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000815222e3b4855616e7b8897a1adb9c6d2dfd3c6baaea298887c6f6255493c2f221608000000000c18232e3e4b5864717e8b97a9b3becad6ccc0b6ac978a7d707a8799a3aebbc7d3d0c3b7aa9d908477685d5245392c2013070000000613202c3945515d677784919daab7c4d0ddd1c4b7ab9e918478695e52463a2d2014070000000000000000000000000000000000000000000000000000000000000000000007121f2b3844505c6673808d9aa8b1bdc8d4d6cbbfb4aa9c8f8275685d535f697783909dacb6c0ccd8d4c8bbafa49a8c7f7265584e432f261b1106000000000000000000000000000000000000000000000000000000000a16222e39434d555b5d5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5a58524a40362a1f13070005111e2a36414c56616e7b86929fabb5b4aea8a09e948f87807a716c656058524c443f38302a251f18120b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141b2227313940454f565e656c727c838e929ea2a9b0bbb9aca196918a8888888888888888888888888888888888888888888888888888888888888888887c6f6255483c31261a0e05111e2a36414c5665727f8888888888888888888888888888888888888888888888888888888888888888888a9297a2adb9bbb0a9a19e928e837c726c655e564f4540393127221b140b020000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000070d161e242930363c43474f545b60676d727a80878f939d9fa7acb2b9bec5cbd0cbc5bfbab2ada7a09d948f87817a736d67605b534f47423c363029231d17110a020000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a4653606d7985929eabb8c3ced9d4c7bbafa4998b7e7265574d42362a1e12050000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000b1825313e4b5864717e8b97a9b3bec9d5dfd2c5b8ac9f9285796d6053463a2d201307000000000715222f3b4855626e7b8897a2adbac6d3d2beb2a5988b7f727c8895abb5bfcbd7cdc1b4a79a8e817467564c4135291d110400000004111d2935414c556874818e9ba7b4c1d1dcd2c5b9ada196877b6e6154483b2e2115070000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54626f7c8895a0acb8c5d1dcd0c5b9ac9f92867a6d6155616e7b88959fabbec7d2ddd2c6b9ac9f93877b6e6154483c3121140a00000000000000000000000000000000000000000000000000000000000e1a27333f4a555f676a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a67635c52473b2f23170a000714202d3946525e6874808d99a3aebdbfbab2aca69e99928d857e786f6a615e56504a423d363129241d150d08000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262d333c434b515961686e777f8691959da5adb3bbc2bdb2a8a19e9695959595959595959595959595959595959595959595959595959595959595958c7f7366574d42362a1e120714202d3946525e687683909595959595959595959595959595959595959595959595959595959595959595979ea2a9b3bec2bbb3ada59d9591867f776e686159514b433c332d261d140a0000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000040c13191f252a32373d424a50555d60686d747b828990959ea0a8adb3babfc6ccd0cac4bdb9b1aca69e99928d857f79716c656059534e46413a342f27221b140b09030000000000000000000000000000000000000000000000000000000000000000000000000008131f2c3844515c6674808d9aa7b1bcc8d4d7ccc0b5ab9c908376695f53463a2d21160a0000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000004111d2935414c566774818e9aa7b4c1cfdadccfc3b6a99c908376665c5044382c1f1206000000000613202d394653606c7985929fabb8c5d2ccbfb3a6998c80737d8a96a3b0bdd1d6cabeb3a9988b7e7165584b3e2f24190d01000000010d19242f3f4b5865727e8b98abb4bfcbd7d5c9bdb2a8978a7d7164574a3e2f23180c00000000000000000000000000000000000000000000000000000000000000000000000b17232e384754606a7784919daab7c2cdd8d3c7bbaea3998b7e71655766727f8c99a7b1bcd0d9d7cbbfb4aa9c8f8276695e52463a2d2014020000000000000000000000000000000000000000000000000000000000101d2936424f5b677177777777777777777777777777777777736e63584b3f3226190d000814212e3b4754616e7a86929faab2bac2c4bdb9b0aba39f97918b837c746d68605c544f46423b352f271f1a1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f383f444e555d606b707a828c9299a0a8afb9bebcbcbcbab2acaba3a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a29d908377695f53463a2d21140814212e3b4754616e7a86939fa2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a4abadb3bbbcbcbcbeb9afa8a099928c827a706b605d554e443f382f261b110600000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000001080d141a20262b2f383f444b51565e61696e757c838a91969ea1a9aeb4bbc0c7d0cfc9c3bcb8b0aba39f98928c847e78706b625f57524c454039332d261d1a150d0802000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a54626f7c8895a0acb8c7d1dcd2c7b7ab9f94887b6e6155483d32271b0f0100000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000613202c3945525d687784909daab7c3d0ddd9cdc0b3a69a8d807367544a3f34281c10030000000005121f2b3744505b6576828f9ca9b5c2cfcdc1b4a79a8e81747e8b98a4b1becbd3c6baada297887b6e6255483b2f22150800000000000816232f3c4956626f7c8999a3aebac7d3dacfc0b3a79a8d807467554b4034291c10040000000000000000000000000000000000000000000000000000000000000000000006111c2b37434e5866737f8c99a6b0bcc7d3d7cbbfb5ab9c8f8276685f697783909daab7c3cdddd3c7baaea3988b7e7165574d42362a1e12050000000000000000000000000000000000000000000000000000000000111e2a3744515d6a77848484848484848484848484848484848073675a4d4034271a0d000b1825313e4b5864717e8b9298a1a8b0b8c0c9c1bdb5aea9a19e959087817a726d666059534d454039312c241a1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38414950585f676d747d858f949fa3abb1afafafafafafafafafafafaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaca095887b6e6155483b302519111d2935414c5665717e8b99a4afaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeafafafafafafafafafafafb1aba39f948f857d746d675f58504941382d22170b00000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000003090e151b1d262d333940454c52575f626b6f767e848b92979fa3aaafb5bdc2c8cecdc8c1bdb5afaaa29f96918b837d756e6a615e56514b443f382f2b262019130c0701000000000000000000000000000000000000000000000000000000000000000000000c18232e3947545f6a7783909dabb5c0cbd7d3c7bcb0a6998c7f7366584e43382b1d130700000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000714212d3a4754606d7a86939facb9c6d2dfd5c9bdb2a8978a7d7164574a3e2e23170c0000000000030f1b27333f49536673808c99a6b3bfcecfc2b5a89c8f82757f8c99a5b2bfccd2c5b8ab9f9285796c605346392d20130600000000000713202d3a4653606d7986929facb9c5d2dcd0c3b6a99d908376675c5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000f1b27323c4855616e7b88949fabb7c6d1dcd1c5b9ac9f92867a6d626e7b8895a0acb8c4d1dfd2c5b9ac9f92867a6d6054473b30251a0e020000000000000000000000000000000000000000000000000000000000131f2c3946525f6c798691919191919191919191919191918e8175685b4e4235281b0f000a1724303d4956616c717e8691969fa6aebabfc5c6bfbbb3ada79f99938e857f78706b615e57514b433e362c241a10060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f49535b606a6f79808a92979fa6a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3acafb1a7988c7f7265564c41362a1e13202c3945525d6876828f9cabb5afaca3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a69f97928a80796f6a605b53493f33271b0f03000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000040a0b141c22282f353a41464d535960636c71797f858d92989fa4abb0b8bcc3c9cfcfc7c0bbb4aea8a19e959089827b746d68605c555049413d37312a251e18120b0600000000000000000000000000000000000000000000000000000000000000000007121c2b37434e5865727f8c99a3afbbc7d3d8cdc2b7aa9e9184776a6054473a2f24180d01000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000a1723303d4a5663707d899aa4afbbc8d4dfd2c5b9ada196877b6e6154483b2e2115060000000000000b17222d3d4a5763707d8a96a8b2bdc9d0c3b6aa9d908377808d9aa7b3c0cdcfc2b5a89c8f8275655b5044372b1f1205000000000006131f2c3845515c667683909da9b6c3d0dcd2c5b9ac9f9286796d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000a15212d3a46535f697683909cabb5bfcbd7d3c7bbafa3998b7e7166737f8c99a7b1bcc8d4d6cabeb3a99b8e8275685d524539291f1409000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929d9d9d9d9d9d9d9d9d9d9d9d9b8e8175685b4e4235281b0f000815212d3945505a626c717c848f949ca4aeb4bcc3cbc4beb9b1aba49f97928b837d756e69605d5550483e362c22170c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b656c727c838d92969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969fa4aba99c908376685e5246392d2014212d3a4754606d7a86929facaba39f96969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696928d837c726c655b5044372b1f1205000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000020a11171d242930363c42474f545a61666d727a80868e93999fa6acb1b9bdc4cad0cbc5bebab2ada7a09d948f87817a726d67605b534f47423c363029231d17110a0200000000000000000000000000000000000000000000000000000000000000000f1b26323c4754616e7a86929facb9c5cfdbd2c5b9aca096897c6f62554b4035291d1104000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000003101c28343f4a546673808c99acb6c0ccd8ded1c4b8ab9e918478695e52463a2d2014070000000000000614212e3a4754616d7a8796a1acb9c5d1c4b8ab9e918578818e9ba7b4c1ceccc0b5ab998c7f736653493f33271b0f03000000000004101c2834404b546774808d9aa7b3c0d0dbd3c7baaea399897c6f6356493c30231609000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727e8b99a3aebbc7d3d7cbc0b5ab9c8f8276697783909daab7c3cdd9d3c6baada2978a7d7064564c413529170d02000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929faaaaaaaaaaaaaaaaaaaaa89b8e8175685b4e4235281b0f0005111d28343e48505a626a6f7a828d929fa2aab2bac1ccc9c2bdb5afa9a29f959089817b736d67615a50483e34281d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c787f868989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898a9399a4ac9f93867a6e6154473b2f241c2934404b5564717e8a99a3aea399928a898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989867f786c605346392d201306000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000060b12181e252a31373d434850545c60686d737b81878f949da0a7adb2babec5cbd0cac4bdb9b1aca69e99928d857f79716c656059534d46413a342f27221b140b03000000000000000000000000000000000000000000000000000000000000000a15202d3946525e6875828f9ca9b3becad6d4c8bdb2a89a8d8174675d5145392c20160a000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000006121f2b3844505c6676838f9ca9b6c2d2dddbcec2b5a89b8f827568574d42362a1e12050000000000000713202d3946525e687884919eabb7c4d1c5b9ac9f928679828f9ca8b5c2cfc7bbafa499897d7063564a3d2d22170b000000000000000c18232e3e4b5864717e8b97a9b3becad6d7cbbfb4ab988c7f7265594c3f31261a0e0200000000000000000000000000000000000000000000000000000000000000000000020e1a26313b4754616d7a86929facb9c5d0dbd1c5b9ac9f92867a6e7b8895a0acb8c5d5ded2c5b8ab9f9285796d6053463a2f24190d01000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb7b7b7b7b7b7b7b7b4a89b8e8175685b4e4235281b0f00000c17222d363f48505860686d78808a9298a0a8afbbc0c7d0c7c0bbb3ada7a09d938e868079716c615a5045392d211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a7d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d87939faca4998b7e7165554c4135291f2c3845515c6775828e9babac9f92877d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d7a6d6054473a2d211407000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000000000000001070c13191f262b32383e424a51565d60696e747c828990959ea1a8aeb4bbc0c7cfcfc9c3bcb8b0aba39f98928c847e78706b625f57524c454039332d261d150d0300000000000000000000000000000000000000000000000000000000000005111e2a36414c5664717d8a97a2adb9c6d1d9cec3b8ab9f92857a6d6053473d32271b0f020000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000713202d3a4653606d7985929facb8c5d2dfd7cbc0b5ab988c7f7265594c3f30251a0e0200000000000005111e2a36414c566875828e9ba8b5c1d1c7baaea399867983909ca9b6c3cfc6b9ac9f93867a6d6054473a2d211406000000000000000715222f3b4855626e7b8897a2adbac6d3dcd1c2b5a89b8f827568574d42362a1e120500000000000000000000000000000000000000000000000000000000000000000000000914202d3946525e6875828f9caab4becad6d3c7bbaea3998a7e727f8c98a7b1bcc8d4d5c9bdb2a89a8e8174665c514538281e130800000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c4c4c4c4c4c4c1b4a89b8e8175685b4e4235281b0f000006101b242d363f464e565e666d737e8691969ea5afb5bdc5cdccc5bebab1aca59e98928c847e716c6155493d3024170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945525d686d707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707076838f9cacab9c8f8275675d5145392c202d3a4753606d7985929facac9c8f837670707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706d685d5245392c201307000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000002080d151a21272c303940444c52575e616a6f767d838b91969fa2aaafb5bdc1c7cdcdc8c1bdb5afaaa29f96918a837d756e69615e56514b443f382f271f150b010000000000000000000000000000000000000000000000000000000000010d1925303b4653606d7985929eabb4bfcbd7d3c6baaea2988b7e7265594f43382c1e14080000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000916222f3c4955626f7c8898a2aebac6d3dfd4c7bbafa399897c6f6356493c3023160900000000000000010d1925303f4c5965727f8c98abb5c0cbcbbfb4ab94877b84919daab7c4d0c3b7aa9d908477675d5145392c201306000000000000000613202d394653606c7985929fabb8c5d2ded1c4b8ab9e918578695f53463a2d211407000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5664717e8a98a2aebac6d3d7cbbfb5ab9b8e817683909ca9b6c3ced9d2c5b9aca196897c6f63544b403428160c0100000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c5d0d0d0d0cec1b4a89b8e8175685b4e4235281b0f00000009121b242d343d444c545c606c717c848f939fa4abb3bbc3cbd0cac3bcb8afaaa29f96918a7e7164574b3e3124180b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c565d606363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636365727f8b9aa4ac9f92867a6d6054473a2e28343f4a5463707d8a98a2aea49a8b7f726563636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363605d564c4135291d1104000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000003090e161b1e272e343a41454d52585f626b70787e848c92989fa3abafb8bcc2c9cecfc7c0bbb3aea8a19e959089827b746d68605c555049413931271d120700000000000000000000000000000000000000000000000000000000000008141f2c3845515c6773808d99a3aebac7d2d6cabeb3aa9d9083776b6054483b3025190d0100000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000c1925323f4c5865727f8b98aab4bfcad6dfd2c5b9ac9f92867a6d6053473a2d2014070000000000000000081623303c4956636f7c8999a3afbbc7d1bbafa295887c85919eabb8c4cdc1b4a79a8e817467554c4135291d11040000000000000005121f2b3744505b6576828f9ca9b6c2cfdcd2c6b9ada197887b6e6155483b2e2215070000000000000000000000000000000000000000000000000000000000000000000000010d1925303a4753606d7985929fabb8c4cfdad1c5b8ab9f92857a87929facb9c5d2ded1c4b7ab9e9184786c605346392e2318060000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c5d2dddddbcec1b4a89b8e8175685b4e4235281b0f0000000009121b222b323a424a505a616a6e79818c9399a1a9b1b9c0cbd1cec8c0b6aea49d928d80736c6155493d3024170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1924303a444c525456565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656616e7b87939faca3998a7e7164554b40342b3844505c6674818e9baaac9f93877b6e615656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565654524c443a3024190d01000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000040a0c151c23282f353b42464e535960666c71797f858d92999ea5abb1b9bdc4cacfcbc5bebab2aca79f9d938f87807a726d67605b534b43392f23180c00000000000000000000000000000000000000000000000000000000000004101c2834404b55616e7b86929fabb5c0ccd7d0c5b8aca095897c6f63564c41362a1d130700000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000005111e2a36424d576875818e9ba8b4c1d0dbddd0c3b6aa9d908377675d5145392c20130600000000000000000714202d3a4753606d7a86929facb9c5c9bcafa396897d85929facb8c5cabeb3a9978b7e7164584b3e2f24190d0100000000000000030f1b27333f49536673808d99a6b3c0cfdad5c9beb3a9978a7e7164574b3e2f24180d01000000000000000000000000000000000000000000000000000000000000000000000008131f2c3845515d6774818e9ba9b2bdc9d5d3c6baada2978d818d99a3afbbc7d4d4c8bcb1a7998d8073655b5044372b1f12070000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f0000000000091019202930383f4450585f676d777f8792979fa7afbabfc6c9c0b7aea49d928d80746e645a5045392d211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323a414547494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949525e697683909da9ab9b8e8275675c5145382d3a4653606d7985929eaba99d908376695e524949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494949494745413a32281e130800000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000000030b12181e242930363c43474f545b60676d737a80878f939d9fa7acb2b9bec5cbd0cac4bdb9b1aba69e99928d857f79716c655c554b4034291c10040000000000000000000000000000000000000000000000000000000000000c18232e3946525e6874818e99a4afbbc7d4d4c8bcb1a79b8e8175685e52463a2f24180d00000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000714202d3a46525e697884919eabb7c4d1dedacdc0b4a79a8d817467554b4035291d1004000000000000000006131f2c3945515d677783909daab7c3cabdb0a4978a7d86939facb9c6c6b9ada197887b6e6255483b2f2215080000000000000000000b17222d3d4a5764707d8a97a9b2bdc9d5dacfc0b3a79a8d807467554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b5563707d8996a1adb9c5d2d6cabeb3a99d928d929dabb5c0cbd7d1c4b8aca095887b6f6253493f33271b0f030000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f000000000000070e171e262e343e464e555d656c727d8590959da5aeb4bdc0b7aea49d928d80746e645c52483e34281d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c1620283035393a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d424d5766727f8c99a7ac9f9285796d6053463a2e3d495663707c8997a1ada7988c7f7265574d423d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a3935302820160c0200000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000000000000000000000000000000000070c13191f252a32373d424a50555d60686d747b828990959ea0a8adb3babfc6cccec9c3bcb8b0aba39f98928c847e776d675c5145382c1f130600000000000000000000000000000000000000000000000000000000000007121d2a36414d56626e7b87939facb9c2cdd8cec3b9ac9f92867a6e61554b4135291d1207000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000814212e3b4754616e7b8796a1acb9c5d2ded6cabeb3a9978b7e7164584b3e2f24180d01000000000000000004101d2935404b556774818e9aa7b4c1d0bfb2a6998c7f8c9aa4afbbc8c5b8ab9e928578695f53473a2e2114080000000000000000000614212e3b4754616e7b8796a1adb9c5d2ddd0c3b6aa9d908377675d5145392c2013060000000000000000000000000000000000000000000000000000000000000000000000000c18242f394653606c7884919eabb8c3ced9d0c5bcaea49d9a9da4aebdc7d1d7ccc0b5ab9d9083776a5f5341382d22170b000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c5d2dfe7dbcec1b4a89b8e8175685b4e4235281b0f00000000000000050c141c2328343c434c535b606b707b838e939fa3abb2b7afa59d928d80746e645c524a40362c22170c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e161e24292c2d30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303b4855616e7b8895a0aca2988a7d7063544a3f37434e586774808d9aa9aca095887b6e6155483b30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302d2c29241e160e040000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000000001080d141a20262b2f383f444b51565e61696e757c838a91969ea1a9aeb4bbc0c7d0cdc8c1bdb5afaaa29f96918a83796d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000e1925303b47535f6975828f9ba6b0bbc7d3d3c7bbaea3998c8073675d5145392e23180c000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000b1724313e4a5764717d8a97a8b2bdc9d5dfd3c6baada297887b6e6255483b2f221507000000000000000000000c18242f3e4b5865717e8b98aab4bfcac5b8ab9f9285929facb6c0ccc2b5a89c8f827569574d42372b1e12060000000000000000000714202d3a46525e697885919eabb8c4d1ded2c5b9ac9f92867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000007121f2b3844505b6673808d9aa7b1bcc8d4d7cec0b6aea9a7a9aeb6c0cfd9d4c7bbafa4998c7f7265584e432f261b1106000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c5d2dbdbdbcec1b4a89b8e8175685b4e4235281b0f0000000000000000020a1117222a313a4149505960696e79818b9299a1a8afa59d938d80776c605c524a40382e241a10060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13191d2021232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232d3a46535f697783909daaaa9a8e8174665c50443b4754606a7884919eabaa9d908377695f53463a2d2323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232321201d19130c04000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000000000000000003090e151b1d262d333940454c52575f626b6f767e848b92979fa3aaafb6bec2c8cecfc7c0bbb3aea8a19e95877a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000008141f2b37424d57626f7c89949fabb7c3cdd7cbbfb5ab9f92857a6d60554b4034281c11060000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000004101d2935404b556774808d9aa7b3c0cedaded2c5b8ab9f9285796c605346392d201306000000000000000000000715222f3c4855626f7b8898a2aebac6c6baaea2989298a2aebec7cbc0b5ab998c7f7366594c4031261a0e0200000000000000000005111e2a36424d576875828f9ba8b5c2d2ddd3c7bbafa399897c706356493d30231609000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54626f7c8895a0acb8c7d2ddd2c8c0b9b5b4b5b9c0c8d2dfd2c6b9ac9f93877b6e6154473c3121140a00000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c5cececececec1b4a89b8e8175685b4e4235281b0f00000000000000000000060f181f282f383f444f575e676d747e8791969fa59d938e81776c655b504a40382e261c12090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1113141616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161e2a36424d5766737f8c99a8ab9e9285796d6053463c4955626f7c8896a1ada8998c7f7366574d42362a1e1616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161413110d080200000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000000000000000040a0b141c22282f353a41464d535960636c71797f858d92989fa4acb0b8bcc3cbd1cbc5bebab2aca793877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000020e1a26313c4754606a76828f9ca7b1bcc8d4d1c6baada2978c7f72675c5145382e23170b0000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000006131f2c3945515d677683909da9b6c3d0dcdccfc2b5a99c8f8276655b5044372b1f1205000000000000000000000613202d394653606c7985929facb8c5cabeb4aaa29fa2aab4bed0c7bbafa399897c706356493d3023160900000000000000000000020e1a25303f4c5966727f8c99acb6c0ccd8d7cbc0b5ab998c7f7266594c3f31261a0e020000000000000000000000000000000000000000000000000000000000000000000000000b17222d3847535f6a7784919dacb6c0ccd8dad2cbc5c2c0c2c5cbd2dad6cbbfb4aa9c8f8276695e52463a2d20140200000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8c1c1c1c1c1c1c1b4a89b8e8175685b4e4235281b0f0000000000000000000000060d161d262d333d454d555c606d727c848f949d938e81776c655b53493f382f261d140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010407070a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0e1a26313c4855626f7b8896a0aca197897c6f635649424e576673808d99a8aca096887b6e6255483b31261a0e0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a07070401000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000000000000000000000000020a11171d242930363c42474f545a61666d727a80868e939a9fa6acb1b9c3ced7d0cac4bdada093877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000915202b37434e5863707d8995a0acb8c4ced6cabeb3a99e9185796d60544a3f34281d120700000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000714202d3a4753606d7a86929facb9c5d2dfd9ccbfb3a6998c80736653493f33271b0f030000000000000000000006121f2b3844505b6676838f9ca9b6c2d0c5bcb4aeabaeb4bcc5d0c5b9ac9f92867a6d6053473a2d2014070000000000000000000000091723303d4a5663707d899aa4afbbc8d4dcd1c2b5a89c8f827569574d42372b1e120600000000000000000000000000000000000000000000000000000000000000000000000006111c2b37434e5866727f8c9aa4afbbc8d4e0dcd6d1cecdced1d6dce0d3c7baaea3988b7e7164564d42362a1e110500000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb4b4b4b4b4b4b4b4b4a89b8e8175685b4e4235281b0f000000000000000000000000040b141b2227333b434b515b626a6f7a828d928e81786c655b534941382d261d140b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915212e3a47535f6a7784919daaa99a8d807467584e47535f6a7784919daaaa9d9184776a5f53473a2e1f1409000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000000000000000000000000000000000000000000000000000060b12181e252a31373d434850545c60686d737b81878f949da0a7b1bcc6d0dbd6cebaada093877a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000000030f1b27323d4855616b7783909da8b2bdc9d5cfc5b9ada1978b7e72665c5044392e23180c01000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000a1623303d495663707c8999a3afbbc7d3e0d4c8bdb2a8968a7d7063574a3d2d22170b0000000000000000000000030f1c28333f4a546673808d99a6b3c0cfcec5bebab8babec5ced0c3b6aa9d908377675d5145392c20130600000000000000000000000714212d3a4754606d7a86939facb9c6d2ded1c5b8ab9e928578695f53473a2e211408000000000000000000000000000000000000000000000000000000000000000000000000000f1b26323c4854616e7b87939facb9c6d1dce7e2dddbdadbdde2e3dfd2c5b8ac9f92867a6d6054473b3025190e0200000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929fa8a8a8a8a8a8a8a8a8a8a89b8e8175685b4e4235281b0f00000000000000000000000000020a1117212931394045515860686d78808981786c665b534941382f261b140b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e586673808d99a8ab9e9184786a5f544855626e7b8895a0aca8998d807366584e43372b1f0e03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000000000000000000000000001070c13191f262b32383e424a51565d60696e747c82899095a0aab4bfcad6d3c6baada093877a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000000000a15202c38444f5964717e8a96a0acb9c4ced5c9beb3a99e9184786d60554b4034281e1308000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000030f1b27333f495366727f8c99abb5c0cbd7ded2c5b9aca096877a6d6154473a2e2114060000000000000000000000000b17222d3e4a5764717d8a97a9b2bec9d5d0cac6c5c6cad0d7cdc0b4a79a8d817467554b4035291d110400000000000000000000000713202c3945525d687784919daab7c4d0ddd2c6b9ada197887b6e6255483b2f221508000000000000000000000000000000000000000000000000000000000000000000000000000a15212d3a46535e697683909cabb4bfcbd7d6d6d6d6d6d6d6d6d6d6cabeb3a99b8e8175675d514539291f14090000000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7986929b9b9b9b9b9b9b9b9b9b9b9b9b8e8175685b4e4235281b0f000000000000000000000000000000060f171f272f343f464e565e666d737c786d665b544a41382f261d140a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1a26313c4955626f7c8896a1aca196887c6f62554d5766727f8c99a8aca196887c6f6255493c31261a0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000000000000000000000000000000000002080d151a21272c303940444c52575e616a6f767d839098a2aebac6d3d3c6baada093877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000004101c27333d4653606d7884919ea8b2bdc9d5cfc4b9aca0968b7e71675c51453a2f24190d020000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000005121f2b3744505b6575828f9ca8b5c2d1dcddd1c4b7aa9e918477685e5246392d2013070000000000000000000000000615212e3b4854616e7b8797a1adb9c6d2dbd6d3d2d3d6dbd5c9beb3a9978b7e7164584b3e2f24180d01000000000000000000000004111d2935414c566875818e9ba8b4c1d1dcd6cabeb3a9978b7e7164584b3e2f24190d0100000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5765727e8b99a3aebac7c9c9c9c9c9c9c9c9c9c9c9c6b9ada2978a7d7064554c413529170d020000000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c79868e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8175685b4e4235281b0f00000000000000000000000000000000050d151d2329343d444c545c606b706d665c544a42382f261d140b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15222e3b4754606a7884919eaba8998c80736657525e697683909da9ab9e9184786a5f54473b2a20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000000000000000000000000000000001070d141a20262b30383f444b51575e616a6f767d85929facb8c5d2d3c6baada093877a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000b161f2b3844505c66727f8b96a1acb9c3cdd5c9bdb2a89e9184796d60554c4135291e14080000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000613202d394653606c7985929eabb8c5d1d6d6cec1b4a89b8e817568564c41362a1d11050000000000000000000000000714202d3a46525e697885919eabb8c4d1d6d6d6d6d6d6d6d2c6b9ada197887b6e6155483b2e221507000000000000000000000000010d19242f3f4c5865727f8b98abb5bfcbd7dacfc0b4a79a8d817467554c4135291d1104000000000000000000000000000000000000000000000000000000000000000000000000020e1a25313b4754616d7a86929facb9bdbdbdbdbdbdbdbdbdbdbdbdbdb8ab9e9285796d6053463a2f24190d0100000000000000000000000000000000000000000000000000000000000000000000000e1b2835414e5b6874818181818181818181818181818181817f7265584b3f3225180c0000000000000000000000000000000000030b1218222b323a424a50596063605c544a42382f261d140b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e586773808d9aa9aa9d908477695f54616e7b87939faca99a8d807367584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000000000000000000000000000000000000000000000000000000000060c13181f252a32373e424a50555d60696e747c828a9298a2aebac6d3d3c6baada093877a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54606d7984919ea7b1bcc8d4cec4b9aca1968b7f72675d51453b3025190b0200000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000815222f3b4855626e7b8897a2adb9c6c9c9c9cbbfb4aa988b7f7265584c3f3025190d0100000000000000000000000005121e2a36424d576875828f9ba8b5c2d2c9c9c9c9c9c9c9c9c5b8ab9e928578695f53463a2d211407000000000000000000000000000816232f3c4956626f7c8999a3aebbc7c9c9c9c3b7aa9d908477675d5145392c201306000000000000000000000000000000000000000000000000000000000000000000000000000914202d3946525d6875828f9ba9b3b0b0b0b0b0b0b0b0b0b0b0b0b0b2a89a8d8174665c514438281e13080000000000000000000000000000000000000000000000000000000000000000000000000e1a2734404d59656f74757575757575757575757575757575726d62564a3d3124180b00000000000000000000000000000000000001071019202930383f444f545653504a42382f261d140b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323c4956636f7c8997a1aca095887b6e615665727f8b9aa4ada196897c6f6356493c32261b0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000000000000000000000000000000030a11171d242930363c43474f545c60676d737b81878f949fa2aab4bfcad6dbc6baada093877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000000000b17232e3845515c66717e8a95a0acb8c2d0d5c9bdb2a89e92857a6d60564c41362a1d140a00000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000b1825323e4b5865717e8b98a9b3bebdbdbdbdbdbaaea398897c6f6256493c2f23160800000000000000000000000000020e1a25303f4c5966727f8c99acb6c0bdbdbdbdbdbdbdbdbdbdb5a89b8f827568574d42372b1e1205000000000000000000000000000713202d3a4653606d7986929facb9bdbdbdbdbdb9ac9f93867a6d6054473a2d2114060000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c5664717d8a97a2a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a196897c6f63544a403428160c010000000000000000000000000000000000000000000000000000000000000000000000000c1824303c48535d656868686868686868686868686868686865625b51463a2e2215090000000000000000000000000000000000000000070e171e262e343d44484946443f3830261d140b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a13202d394653606c7884919eaba7998c7f72665e6876838f9cacab9e9184786c605346392d20130a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000000000000000000000040a0c151c23282f353b42464e545961666d727a80868e939a9fa6aeb4bcc6d0d7cfcabaada093877a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000006111c2834404b54606c7883909da6b0bec7d2cec4b9ada1978c8073685e52463d2f261c1106000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130005111d2a36414c566874818e9ba7b0b0b0b0b0b0b0b0ac9f9286796d6053463a2d2013070000000000000000000000000000091623303d495663707c899aa4afb0b0b0b0b0b0b0b0b0b0b0b5ab998c7f7266594c3f31261a0e020000000000000000000000000006131f2c3845515c677783909daab0b0b0b0b0b0b0afa499897d7063564a3d2d22170b00000000000000000000000000000000000000000000000000000000000000000000000000010d1924303a4753606d79859296969696969696969696969696969696969184786c605346392e231806000000000000000000000000000000000000000000000000000000000000000000000000000814202c37414b53595b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b585651493f34291d1206000000000000000000000000000000000000000000050c151c232832383b3d3a38342e261e140b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6574818d9aa9a99d90837669616d7a86929faca99a8d8074655b5044372b1f12050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000000000000000000000003090e151b1e262e343a41454d52585f626b70787e858d92989fa4acb0babfc6ced1cbc5beb9b2a093877a6d6054473a2d2114070000000000000000000000000000000000000000000000000000000000000000000000000c18232e3944505b66707d8a949facb6c0ccd6cabeb3a99f92867a6e61584e42382d22170b020000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000713202d3946525e687784919da3a3a3a3a3a3a3a3a3a39d908376665c5145382c1f130600000000000000000000000000000714212d3a4754606d7a86939fa3a3a3a3a3a3a3a3a3a3a3a3a3a399897c706356493d30231609000000000000000000000000000004101c2834404b556774818d9aa3a3a3a3a3a3a3a3a3ab998c7f736653493f33271b0f030000000000000000000000000000000000000000000000000000000000000000000000000008131f2c3845515c6774818a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8073655b5044372b1f120700000000000000000000000000000000000000000000000000000000000000000000000000040f1a252f3941484d4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4b4a463f372d23180d0100000000000000000000000000000000000000000000030a111721272c2f302d2b28231c140c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495363707d8997a1ac9f93877b6e64717e8b99a3ada197897d706353493f33271b0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000000000000001070d141a20262b30383f444b51575e616a6f767d848b92979fa2aaafb6bec2cad0cfc6bfbab3ada8a093877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000000000007121d28333f4a54616b76828f9aa4afbbc5d0cfc5baaea2988e81746a60544a3f33281e14080000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000714212e3a4754616d7a87969696969696969696969696968d807367544b4034281c100400000000000000000000000000000613202c3945515d6777849196969696969696969696969696969692867a6d6053473a2d2014070000000000000000000000000000000c18232e3e4b5864717e8b9696969696969696969696968f8276655b5044372b1f12050000000000000000000000000000000000000000000000000000000000000000000000000004101c2934404b55616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7a6d6153493f33271b0f03000000000000000000000000000000000000000000000000000000000000000000000000000009131d272f373c40414242424242424242424242424242423f3d3a342d251b110600000000000000000000000000000000000000000000000000060c161b202223201f1c17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3a4653606d7985929eaba49a8b7e726775828f9babab9e9285796d6053463a2d22170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000000000000000000000000000000000000000060c13181f252a32373e424a50555d60696e747c828a91959ea1a9aeb4bbc0c7d0cdc7c1bdb4aea9a29e9691877a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424f59626f7c87939fa9b3becad6cabfb4aa9f93877c6f665b50443b3025190d0400000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000a1724303d4a5763707d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a7e7164574a3e2e23180c00000000000000000000000000000004111d2935414c556874818a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8377675d5145392c1f13060000000000000000000000000000000715222f3b4855626e7c888a8a8a8a8a8a8a8a8a8a8a8a8a85796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000000000000000c18232f3946525e696e707070707070707070707070707070707070706d685e5241382d22170b000000000000000000000000000000000000000000000000000000000000000000000000000000010b151d252c30343535353535353535353535353535353532312e29231b1309000000000000000000000000000000000000000000000000000000040b101316161312100b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c6674818e9aaaac9c8f82766d7a86929facaa9a8e8174665c5044382b1b1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000000000000030a11171d242930363c43474f545c60676d737b81878f949da0a8adb3babfc6cccec9c2bcb7afaba39f97928b847e71685d5245392c2013060000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3e4754606a74818e97a2adbac3d0d0c6bbafa4999083786c60564c41362a20160c01000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000815222e3b4855616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7a6d6054473a2d211407000000000000000000000000000000010d19242f3b4855616e7b7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f62554b4035291d10040000000000000000000000000000000613202d394653606c787d7d7d7d7d7d7d7d7d7d7d7d7d7d7d786d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000007121d2a36424d575e6163636363636363636363636363636363636363615e564c412f261b110600000000000000000000000000000000000000000000000000000000000000000000000000000000030b131a202427282828282828282828282828282828282524221d1811090100000000000000000000000000000000000000000000000000000000000407090a070603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a5463707d8a98a2ac9f92867a717d8a98a3aea2988a7d7063544a3f34281c0a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000040a0c151c23282f353b42464e545961666d727a80868e939a9fa6acb1b9bec5cacfcac4bdb9b0aba59e99928d857f79716c61564c4135291d110400000000000000000000000000000000000000000000000000000000000000000000000000000a141d2b37434e58616d7a85929fa7b1bec7d2ccc0b5aba0958b7f72685e52463d32281e1308000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000714212d3a46535f696e7070707070707070707070707070706d685d5245392c201306000000000000000000000000000000000814212d3a46535f696e70707070707070707070707070707070706f6a5f5343392f24180c0000000000000000000000000000000006121f2b3844505b666c7070707070707070707070707070706d665c5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000010e1a25303b454d52545757575757575757575757575757575757575754524c443a301d140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000001090f14181a1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b181815120d0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3a4653606d7985929faba3998a7e75818e9baaab9f9285796d6053463a2e23170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000000000000002090e151b1e262e343a41454d52585f626b70787e858d92989fa4acb0b8bdc3c9cfcbc5bebab2aca69f9c938e86807a726d66615a50433a2f24190d010000000000000000000000000000000000000000000000000000000000000000000000000000020b1b27323c46525e68727f8b95a0acb6c0ccd2c7bdb1a79f92857a6e61594f443a2f24190e050000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130005121e2a36424d575f61636363636363636363636363636363605d564c4135291d11040000000000000000000000000000000005121e2b37424d575f616363636363636363636363636363636363625f584e4331271d120700000000000000000000000000000000030f1c28333f4a545b60636363636363636363636363636363605c544b4034281c100400000000000000000000000000000000000000000000000000000000000000000000000000000009141f29333b4246484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4746413a32291e0b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080c0e0e0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0c0b09060100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c6675818e9baaab9b8f827985929fabaa9b8e8175665c5145382c1c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000000000000001070d141a20262b30383f444b51575e616a6f767d848b92979fa2aaafb6bec2c8cecfc6bfbab3ada8a09e949089817b736d68605c5450483e31281e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a36414c56606d7883909aa4afbbc4cfd0c3baada2978e81746b60564c41352920170d0200000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300020e1a26313b454d535557575757575757575757575757575754524c433a2f24190d0100000000000000000000000000000000020e1a26313c454d5355575757575757575757575757575757575755534e463c321f150b0100000000000000000000000000000000000b17222d38424a505357575757575757575757575757575753514b42392e23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000030d17212930363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a3936302920170c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b5464717d8a98a2ac9f92867d8a97a2ada2988a7d7064544b4034281c0a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000000000000000000000060c13181f252a32373e424a50555d60696e747c828a91959ea1a9aeb4bbc0c7d0cdc7c1bdb4aea9a29f96918a837c756e69605d56514a423e362c1f160c0100000000000000000000000000000000000000000000000000000000000000000000000000000000040d1925303a44505c666f7d88939fa9b2bec9d5cabeb3a99e93897d70685d52453e32291f140800000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000009141f29333b4246484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4745413a31281e130800000000000000000000000000000000000009141f2a333c4246484a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4947433c342a200d0300000000000000000000000000000000000006111c262f383f44464a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4645403930271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000050f171f252a2d2e303030303030303030303030303030303030302e2d2a251e170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3a4753606d7986929faca2989184919ea9ac9f9286796d6053473a2e23180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000000000000030a11171d242930363c43474f545c60676d737b81878f949da0a8adb3babfc6cccec9c2bcb8afaba39f97928c847e766f6a615f57524c444039302c241a0d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28343f4a54606b74818e97a1adb9c1cdd0c5bcafa59e91847a6d605a50443b3025191107000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000030d18212931363a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a39352f281f160c01000000000000000000000000000000000000030e18212a31373a3b3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c3b37322a22180e00000000000000000000000000000000000000000a141d262d3338393d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a38342e271e150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d141a1e20212424242424242424242424242424242424242421201d19130c0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2c3945515d6775828f9babaaa0969196a0acab9b8e8275675d5145392c1d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1925323f4c5865727f8b98a5b2becbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000000000000040a0c151c23282f353b42464e545961666d727a80868e939a9fa6acb1b9bec5cacfcac4bdb9b1aba59e99928d857f79716c626058534d45413a342e271e1a120800000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b17232e38424f59606d7a84919ea5afbbc5cfcec1b9ada1968e81756c61564d41362a23190e050000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000060f181f262a2d2e3030303030303030303030303030302d2c29241e160d040000000000000000000000000000000000000000060f181f262b2d2e30303030303030303030303030303030302f2e2b26201810070000000000000000000000000000000000000000020b141c22282b2d3030303030303030303030303030302d2c28231d150c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415171717171717171717171717171717171717171413110d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b5564717e8a99a3aea8a09ea0a8aea3998a7e7164554b4035291d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0f03000000000000000c1926323f4c5965727f8c98a5b2bfcbd8d4c8bbaea195887b6e6255483b2f22150800000000000000000915222f3c4855626f7b8895a2aebbc8d5dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000000000000002090e151b1e262e343a41454d52585f626b70787e858d92989fa4acb0b8bdc3c9cfcbc5bebab2aca79f9d938e86807a726d66615a544e46423b353028231c150c0800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303d45525d68707d8a939ea9b3becad5c9bdb2a89e938a7e71685e52463f352b20170c0300000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000060d141a1e212224242424242424242424242424242421201d19130c0400000000000000000000000000000000000000000000060e141a1e2122242424242424242424242424242424242422211f1b150e0700000000000000000000000000000000000000000000020a11171c1f20242424242424242424242424242424201f1c18120b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a07070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3a4754606d7a86929facb2acaaacb2ac9f92867a6d6054473a2f24180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4236291c0a00000000000000000d192633404c5966737f8c99a6b2bfccd9d5c8bbaea295887b6f6255483c2f2215060000000000000000091623303c4956636f7c8996a2afbcc9d5dbcec1b5a89b8e8275685b4f4235281c0f000000000000000000000001070d141a20262b30383f444b51575e616a6f767d838b92979fa2aaafb6bec2c8cecfc6bfbbb3ada8a09e959089817b736d68605c545047433d363129241e18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e2935414c56616c75818e97a1adb9c0cccfc4baafa59e92857a6e615b51473d33291e150b00000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000003090e1214151717171717171717171717171717171413110d080100000000000000000000000000000000000000000000000003090e12141517171717171717171717171717171717171615130f0a0400000000000000000000000000000000000000000000000000060b0f12131717171717171717171717171717171313100c0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202c3945515d6775828f9cabb5b9b7b9b5ab9c8f8275675d5145392c1d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f8275695c4f4232261b0f03000000000000010d1a2734404d5a6773808d9aa6b3c0cdd9d6c9bdb0a3968a7d7063574a3d2d22170b00000000000000000a1724303d4a5763707d8a96a3b0bdc9d6dbcec1b5a89b8e8275685b4f4235281c0f00000000000000000000060c13181f252a32373e424a50555d60696e747c828a91959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea9a29f96918a837c756e69605d56514b423e38322a261f19130c0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c19242f3a43505a616e7a85929ea5afbac3cfccc1b9ada1978f82756d62594f453b30271d1207000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0706040100000000000000000000000000000000000000000000000000000000020507080a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0908060300000000000000000000000000000000000000000000000000000000000306060a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5565717e8b99a3afbbc4bbafa3998b7e7164554c4135291d0b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dbcfc2b5a89c8f827569584e43372b1f1409000000000000010e1b2834414e5b6774818e9aa7b4c1cddad8cbbeb2a5988b7f726553493f33271b0f03000000000000000b1824313e4b5764717e8a97a4b1bdcad7dbcec1b5a89b8e8275685b4f4235281c0f0000000000000000030a11171d242930363c43474f545c60676d737b81878f949da0a7adb3babfc6cccec9c2bcb8afaba39f97928c847e766f6b615f57524c454039302b27201a140d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313e46525e68707e8a939da8b2bdc7d1cabeb3a99e948c7f726b60574d42392e231811080000000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a4754616d7a86929facb9c5b9ac9f92867a6d6154473a2f24190d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ddd0c3b7aa9d9083776a5f54473b31251a0e04000000000005111e2a36414c566976828f9ca9b5c2cfdcdacdc1b4a79a8e8174655b5044372b1f150a000000000000000c1926333f4c5966727f8c99a5b2bfccd8dacdc1b4a79a8e8174675b4e4134281b0e000000000000040a0c151c23282f353b42464e535961666d727a80868e939a9fa6acb1b9bec5cad0cac4bdb9b1aba59e99928d857f79716c636059534d45413a342e271e1b160e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a36414c56616c74818e96a0abb5c0cbcfc5bbb0a69f92877d70695e544b403428231a100700000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000813202d3946525e6876828f9cacb6c0b6ac9c8f8276685e5246392d1e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ded1c4b8aca095887c6f62574d42362a20160d03000000000713202d3946525e687885919eabb8c4d1deded1c4b8ab9e9184786c6053463c31261a1107010000000006121e2a36424d576875828e9ba8b5c1cedbd9ccc0b3a6998d8073665a4d4033271a0d0000000000070e151b1e262e343a41454d52585f626b70787e858d92989fa4acb0b8bcc3c9cfcbc5bebab2aca79f9d938e86807a726d66615a544f46423b353028231d150c0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d1925303b44505a606d79849199a3afbbc1cccdc1bbafa39992857b6e665c51453f352c22190f06000000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c5665727e8b9aa4afbbafa49a8b7e7265564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e0d4c8bcb1a79a8e8174695e53463d32281f150c070506080f17212e3a4754616d7a8797a1adb9c6d2dfdfd2c6b9ada197897c6f62584e43372b2318120b060606070e18212d3a46535f697884919eabb7c4d1ded8cbbfb2a5988c7f7265594c3f3226190c0000000007101820262b30383f444b51575e616a6f767d838b92979fa2aaafb6bec2c8cecfc6bfbbb3ada8a09e959089827b746d68605c545048433d363129241e18120b030000000000000000000000000000000000000000000407090a0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b08141e29323e45515d676f7c87929fa6b0bac4cecbc0b5aba1979083786d605a50473e342b21180e050000000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303b4754616e7b87939facb9ac9f93877b6e6154473b3025190d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e4d9cdc3b9ac9f92867b6e61594f443a31271e181311131419212a36414c5664717d8a97a9b2bec9d5e1e1d5c9beb2a99b8e81746a5f53473f3529231d1713121313182028343f4a54616e7b8896a1acb9c5d2ded7cabeb1a4978b7e7164584b3e3125180b000000071119222a32373e424a50555d60696e747c828a91959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea9a29f96918a837c756e69615d56514b423e38322a261f19130c07000000000000000000000000000000000000000000050b1013161617171717171717171717171717171717171717171717171717171717171717171717171717202935404b55606a727f8c939ea8b2bcc6d0c7bdb3a99f958d80746c62594f463d332a20170d0500000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202d3946525e687683909ca9b6a99c908376685e5246392d1e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe0d3c7baaea3988e81746b60564c4339302924201d1f202429333b46525e6875828f9ca8b5c2cfdae6e6dacfc4b9ac9f93877c6f625b51473e342f2722201f1f202429323b44505c6673808c99a8b2bdc9d5e1d5c9bdb2a8968a7d7063574a3d3024170a0000050f19232b343c43474f545c60676d737b81878f949da0a7adb3babfc6cccec9c2bcb8afaba39f97928c847e766f6b615f57524c454039302c27211a140d0802000000000000000000000000000000000000000000070f161c2022232424242424242424242424242424242424242424242424242424242424242424242424242424242f3a434e58606c77828f96a0aab4bfcacfc5bbb1a79d928b7e716b61584e453c322920160e05000000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414d5665727f8c98a7b1a7988c7f7265564d41362a1e0c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe3d7cbbfb4aa9f93877d70685d554b423b352f2d292c2d2f353c454e58616d7a86929facb9c5d2dfece7e0d4c7bbafa4998f82756d635950454039332d2d2b2c2d2f353b444d57606d7884919eabb8c4cedadfd2c5b9ada196887b6e6155483b2e22150800000b16212b353d464e535961666d727a80868e939a9fa6acb1b9bec5cad0cac4bdb9b1aba59e99928d857f79716c636059534d46413a342e271e1b160e09030000000000000000000000000000000000000000000007111921272c2f3031313131313131313131313131313131313131313131313131313131313131313131313131313131313d44505b656d7a849198a2aebabfc9cdc2b9aea49f92877d706a60574d443b322820170e050000000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1925303b4854616e7b8795a0ab9f95877b6e6154483b3025190e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfe7dcd1c6bbafa49991847a6d675c544d45403a3935383a3b41454e57606a74808d99a3afbbc7d3e0e3dcd5d1ccc0b5ab9e948c7f726b615a514b443f3b3a38383a3b40454d565f69727f8c96a1adb9c5d6e0ded1c4b7ab9e918478695f53463a2d2114070004101c27323d474f585f626b70787e858d92989fa4acb0b8bcc3c9cfcbc5bebab2aca79f9d938f86807a726d67615a544f46423b353028231d150c0a040000000000000000000000000000000000000000000000050f19232b33383b3d3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3e3f49535d686f7c86929fa4aeb7c1cbcbc0bbafa39992867c6f695f564d443a322920170f0600000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212d3a46535e697783909daa9d908377695e53463a2d1f1408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3dfebe2d7ccc0b5aba1968f82796d665f57514b4746414547484c52585f696f7c88939fabb5c0cbd7e3dad2cac5c1c0bdb0a69f93877d716c605c5550494746444546484b51575f686e7b86929fa9b2bdc9d5e8dacec1b4a79b8e817468574d42372b1e1205000713202c38444f59606a6f767d838b92979fa2aaafb6bec2c8cecfc6bfbbb3ada8a19e959089827b746d68605c555048433d363129241e18120b03000000000000000000000000000000000000000000000000000b16212b353d4448494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4c565f6a717e8b929ca5afb9c2cfcbc0b5aba29892857b6e685e564c443b322921180f06000000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d5766727f8c99a7998c7f7266574d42362a1e0d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ebe2d9d2ccc7bdb2a89f948f82786e69605d5554524c515354565d606a6e7b84919aa4afbdc7d1dcdfd2c8c0b9b5b3b8baafa49992877e736d67605b53545350515354555d60696e7a839098a2aebbc4cfdadfd3c7bbb0a6978b7e7164584b3e31261a0e02000916222f3b4854606b707c828a91959ea1a9aeb4bbc0c7d0cdc8c1bdb5aea9a29f96918a837c756e69615e56514b433e38322a261f19130c07000000000000000000000000000000000000000000000000000004101c27333d474f54565757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575758616c73808d939ea6b0bdc6d1c7bdb4aaa19791847a6e685e564c443b332921180c030000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a25313b4855626e7b8895a095887b6e6255483b31251a0e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3e4d9d0c7c0bbb9bbb0a69e948f837b726d6763615d565c606164686d737c849196a1acb6c0cfd9e1d7cdc0b6aea8a6abaeb3aba399928b8079716c656361605c5c606164676d737b849095a0aab4bfcdd6e0dcd0c3b7ab9f94877b6e6154483b2e21150900000a1623303d495663707d888f949da0a7adb3babfc6cccec9c2bcb8afaba39f97928c847e786f6b615f57524c454039302c27211a140d08020000000000000000000000000000000000000000000000000000000713202c38444f596063646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646c77818e949fabb4bfcbcfc6bcb3a9a19690837a6d685e564d453b33291e150b0000000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000914212e3a47535f697784919d908477695f53473a2e1f140900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ddd2c7beb6afacafb6b0a69e9590857f7a74706d686b676d6e71757a80869196a1a8b2bec7d2e1dbcfc5bbaea49c999fa2aab3aba39f928d847e7874706e6d66676d6e71747a80869196a0a7b1bcc6d0dfdfd4c8bcb1a79c8f8276695e53463a2d21140700000a1724313d4a5764707d8a9a9fa6acb1b9bec5cad0cac4bdb9b1aba59e99928d857f79716c656059534d46413a342e271e1b160e090300000000000000000000000000000000000000000000000000000000000916222f3b4854606b7071717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717179839099a3aebac7d3cec5bbb2a8a09590837a6e685e574d453b30271d120700000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121e2b37424d576673808c998c807366574d42372b1e120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d8ccc0b6aca49fa4acb4b0a79f98928c85817d7a7978797a7b7e81858d9298a1a8b2bac4d0d9e0d6cabeb3a99c928d9298a2aeb4aea49c96918a84817d7a797878797b7e81858c9298a0a8b1b9c3ced8e1d6cdc4b8aba095897d7063574d42362a1e120500000a1724313d4a5764707d8a97acb0b8bcc3c9cfcbc5bebab2aca79f9d938f86807a726d67605b534f46423c353028231d150c0a04000000000000000000000000000000000000000000000000000000000000000a1623303d495663707d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7f86929facb9c5d2d7cdc4bab1a7a09590837a6e695f574d42392e23180c00000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313c4855626f7c8896887c6f6255483c31261a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d4c8bbafa49a939aa2aab4b1aaa29f97928d8a8786858586878a8e92979fa3aab2bac4ccd6e1d8cec6b9ada2978d8086929fa9b2baaea8a19e96918d898786858586878a8e92979fa2aab2bac3cbd5e0d9cfc4bbb0a69d9083776b6054453b31251a0e0200000a1724313d4a5764707d8a97a3b0bdc8cecfc7c0bbb3ada8a19e959089827b746d68605c555049413d373129251e18120b03000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a77838a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8b9299a3aebac7d3dfd6ccc3b9b1a7a09590847b6e695f544b4034281c1004000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915212e3b47535f6a77849184776a5f53473a2a2015090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3d2c6b9ac9f93869298a2aebab3aea9a19e9a96999291929894979b9fa2a9aeb4bcc4ccd6ded9cfc6bcb1a79e92857a7f8c96a1abb5bab2aca9a19e9a96999391929794979b9ea2a9aeb4bcc4ccd5ddd8d1c7bdb3a99f948a7e7164594f4433291f14090000000a1724313d4a5764707d8a97a3b0bdcdc8c1bdb5afa9a29f96918a837c756e69615e56514b443f382f2b261f19130c070000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a778390979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797989fa3abb4bfcbd7e3ded5cbc3b9b1a7a09691847b6e665c5145382c1f1306000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e586773808d807366584e43372b180e030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3cec1b4a79b8e8186929fa5afb9bab3adaba7aba39f9e9fa2aaa4a8abadb3babfc6cfd6dfd7d0c7bdb4aaa0958c7f7379849199a3afbbbdb9b2adaba7aba49f9e9fa2a9a4a7abadb3babfc6ced5ded7cfc6bfb5aba1978f82786c6053463d3320170d030000000a1724313d4a5764707d8a97a3b0bdc3bcb8afaba39f97928c847e786f6b615f57524c454039332d261d1a140d0802000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909da4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a5acaeb4bdc6d1dce7e7ddd5cbc3b9b1a8a0969184796d6053463a2d201307000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26323c4956626f7c897c6f6256493c31261b09000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6d3ccbfb2a6998c7f7f8c939ea7b0b8beb9b8b4b4aeacabacaeb4b1b4b8babec5cbd1d8d9d5cdc5bdb5aba3989083796d6f7d87929fa3afb6bebdb9b8b4b5afacababadb3b1b4b8b9bec5cad0d8d9d4cdc5bdb5aea39991857a6e665b5044382b1f1205000000000a1724313d4a5764707d8a97a3b0bdb9b1aba59e99928d857f79716c656059534d46413a342e27221b140b09030000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909daab0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b1b9babfc6cfd8e2edefe7ddd5cbc3bab2a8a196867a6d6053473a2d201407000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a13202d394653606c7883786c605346392d20130a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c6ceccbfb2a6998c7f79818f959fa6afb9bec5c0bfbab9b8b8babfbdc1c5c6cacfd7d7d4cec9c2bbb3aba39992867c6f666b727f8c919fa4acb2bbc0c4c0c0bbb9b8b8babebdc1c5c6cacfd6d7d3cec8c2bbb3aba39f92877d70685e544a3f33281c0f03000000000a1724313d4a5764707d8a97a3b0b2aca79f9d938f87807a726d67605b534f47423c353028231d17110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909daab6bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbec5c7cbd1d8e1eaf4f0efe7ddd5ccc3bab2a893867a6d6053473a2d201407000815212e3b4854616e7b8794a1aebac7d4e1d9cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4dfd2c5b9ac9f9286796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b656e7b6e655b5044372b1f1205000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb9c1c1c1bfb2a6998c7f73798390949ea5adb3babfc5c7c5c4c5c6cad0ced2d3d3d2d1cbc7c4bdb9b1a9a29992877e716a5f626d737f8b939aa1a8afb5bbc0c7c7c6c4c5c6cad0ced1d2d3d2d1cbc7c3bcb8b0a9a299928b7f726b60564c42382d22170b00000000000a1724313d4a5764707d8a97a3aea8a19e959089827b746d68605c555049413d373129251e18120b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909daab6c3cacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacbd2d3d7dce2eae3e3e3e3e3e7ded5ccb9ada093867a6d6053473a2d201407000815212e3b4854616e7b8794a1aebac7d4d6d6cdc0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7d4d6d2c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f49535f6a6e6a5f53493f33271b0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0acb4b4b4b4b4b2a6998c7f736d7a828e939ea1a9aeb4b8bcc1c3c5c7cbd1c9d1cbc7c5c3c0bbb9b2aca79f9792877e716c61585b636d737f8891969fa4abafb5b8bcc1c3c5c7cbd0c9d0cac6c5c4bfbab9b1aca69f9792877e726d63594f443b2f261c110600000000000a1724313d4a5764707d8a97aaa29f96918a837d756e69615e56514b443f382f2b261f19130c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909daab6c3d0d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d3c6b9ada093867a6d6053473a2d201407000815212e3b4854616e7b8794a1aebac7c9c9c9c9c0b3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebac7c9c9c9c5b9ac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38414e585f625f584e41382d22170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0a8a8a8a8a8a8a8a6998c7f73686d79818a92979fa2aaacb1b4b7b9bbc0bcbcbcbfbab9b6b5afaca8a09e9590857e716c615a50515b636d727d848e93999fa3abacb1b4b6b8babfbbbcbcbebab8b7b4aeaca7a09d9490857d716c635b51473d32291d140a0000000000000a1724313d4a5764707d8a979f98928c847e78706b625f57524c454039332d261d1a150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909daab6c3c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c6b9ada093867a6d6053473a2d201407000815212e3b4854616e7b8794a1aebabdbdbdbdbdbdb3a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aebabdbdbdbdbdb9ac9f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3c464e5355534e463c2f261b110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939b9b9b9b9b9b9b9b9b998c7f7366676d757e858d92989da0a7a8aaacafb5afafafb4aeacaaaba39f9c96918b837b706c615a504849515b626b707981878e92999da0a7a7a9acaeb4afafafb3adabaaaba39f9c95908a837c706b625a51493f352b20170b020000000000000a1724313d4a5764707d8a99928d857f79716c656059534d46413a342f27221b140b09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909daab6bdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdb9ada093867a6d6053473a2d201407000815212e3b4854616e7b8794a1aeb0b0b0b0b0b0b0b0a69a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aeb0b0b0b0b0b0b0ac9f9286796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2a343c43474847433c342a1d140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d79868e8e8e8e8e8e8e8e8e8e8e8c7f73665c606c717a80858c9095989b9d9fa3aba2a3a2aaa39f9d9a99928f8b847e786e69615a50483e4049515960676d747b81868c9095989a9d9fa3aaa2a3a2a9a29f9d9a99928f8b837d766e6a605950483f372d23190e05000000000000000a1724313d4a5764707d8a8f87807a726d67605b534f47423c363029231d17110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909daab0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0ada093867a6d6053473a2d201407000815212e3b4854616e7b8794a1a3a3a3a3a3a3a3a3a3a39a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1a3a3a3a3a3a3a3a3a39f9286796c5f5346392c201300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b18222a31373a3b3a37312a22180b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c78818181818181818181818181817e7064575a61686d737a7f83888c8e90929995959695959892908e8b86827e79716d665e5750483e36373f474f555d60696e747b7f83888b8e90929894959695949792918e8a86827e78706b625f584f473f362d251c110700000000000000000a1724313d4a5764707d89827b746d68605c555049413d37312a251e18120b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909da3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a093867a6d6053473a2d201407000815212e3b4854616e7b87949696969696969696969696968d8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b879496969696969696969696969286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1820262b2e2f2e2b2620180f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b666c75757575757575757575757575706c615550565e61686d72777b7f818486878889898988878683817e7a76716d66605c544d453e362c2d353d434b51575f62696e73777b7e818385878888898987868584817d7a76716c666159534e463d352d241c130a0000000000000000000916222f3c4955626f7c7c756e69615e56514b443f382f2b261f19130c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969693867a6d6053473a2d201407000815212e3b4854616e7b878a8a8a8a8a8a8a8a8a8a8a8a8a8a8073675a4d4034271a0d01000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b878a8a8a8a8a8a8a8a8a8a8a8a8a87796c5f5346392c2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e151a1f2122211f1a150e060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a545b606868686868686868686868686864615a50444c52565d6066696e727577797a7b7c7c7c7b7a797774716d6864605c54504a423b332c23232b313a41454d53575e6166696e727476797a7b7c7c7c7b7a787774706d6764605b544f47433c332b231b120a010000000000000000000815212e3b47535f6a6f706b625f57524c454039332d261d1a150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111d2a3744505d6a77838a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a867a6d6053473a2d201407000714202d3a4753606d797d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6e6255483b2f22150800000000000000000000000000000000000000000000000000000000000714202d3a4753606d797d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7063574a3d3024170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f12141514120f0a03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424a50535b5b5b5b5b5b5b5b5b5b5b5b5b575550483e41464c5254575f616568666d6e6e6f706f6e6e6d666765615e5653514a443f383029211a191f282f353c42474d5354575f616567666d6d6e6f706f6e6d676a6764605d5553504a423e37312a21191109000000000000000000000006131f2b37434e585f62636059534d46413a342f27221b140b09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d786d6053463a2d2013070006131f2c3845515d676d7070707070707070707070707070706e6a5f53473a2e211408000000000000000000000000000000000000000000000000000000000006131f2c3845515d676d7070707070707070707070707070706b6155483c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000206080808060200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f383f44464e4e4e4e4e4e4e4e4e4e4e4e4e4a49443e36363a4145474d535559545c6061626263626261605c545854524c46444039342e261e170f0d161d242931373b4246484d535558545c60616162636261605c555b5754514b46443f382f2b2620180f07000000000000000000000000030f1b26323c464e535556544f47423c363029231d17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3b4854606b6f707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070706d665c5044382b1f12060004101d2935404b555d60636363636363636363636363636363625f584e43372b1f1206000000000000000000000000000000000000000000000000000000000004101d2935404b555d6063636363636363636363636363636361594f44382c20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262d333839424242424242424242424242423d3c39332c2a3035393c4246484c4b51535455565656555453504a4b4746413a38342e28231c140c05040c13181f262b31363a3c4246484b4a505354555556565453514b4e4a4745413a38332d261d1a150e0600000000000000000000000000000a15202a343c4347494948443d37312a251e18120b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2c38434f59606363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363605c544a3f34281c100300000c18242f39434b515357575757575757575757575757575755534e463c31261a0f020000000000000000000000000000000000000000000000000000000000000c18242f39434b5153575757575757575757575757575757554f473e33281c10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141c22282b2d3535353535353535353535353531302d28221e24292c31373a3b3f4045464748494949484746443f3e3a3936302c28231c17110a02000001070d151a1f252a2d31373a3b3f3f4446474849494948474540413d3a39352f2b28221c140b0903000000000000000000000000000000040e18222a32373b3c3d3b38322b262019130c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323d474f54565757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575753504a42382e23170b00000007121d2731394045474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4847433c332a2015090000000000000000000000000000000000000000000000000000000000000007121d2731394045474a4a4a4a4a4a4a4a4a4a4a4a4a4a4a48443e352c21160b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f20282828282828282828282828282423201c1713191d20262b2d2e2e34383a3b3b3c3d3c3b3b3a38342e2e2d2a251f1c18120b0600000000000003090e141a1e21262b2d2e2e34383a3a3b3c3d3c3b3a38342f312d2c29241f1c17110a0200000000000000000000000000000000000007101820262b2e2f302f2c27211a150d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a16212b353d4348494a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a46443f3830261c1106000000010b151f272f35383a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3b3a37312a21180e0300000000000000000000000000000000000000000000000000000000000000010b151f272f35383a3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3c38332c231a1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131b1b1b1b1b1b1b1b1b1b1b1b1b171614100b080d11141a1e212223282c2d2e2f2f302f2f2e2d2c282321201e1913100c070000000000000000000003090e12141a1e212223282b2d2e2e2f302f2e2d2c29232421201d18130f0b06000000000000000000000000000000000000000000070e151b1f21222322201b160e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f19232b32383b3c3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3a38342e261e140a0000000000030d151d24292c2d3030303030303030303030303030302f2e2b2620180f06000000000000000000000000000000000000000000000000000000000000000000030d151d24292c2d3030303030303030303030303030302f2c28211a11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060f0f0f0f0f0f0f0f0f0f0f0f0f0a0a080400000104090e121415181c1f2021222323232221201f1c171413110d080400000000000000000000000000000205090e121415171c1f20212222232321201f1c18171413110d0703000000000000000000000000000000000000000000000000040a0f131516161613100b0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101921272c2f30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302d2b28231c140c02000000000000030b12181d1f2024242424242424242424242424242422211f1a150e060000000000000000000000000000000000000000000000000000000000000000000000030b12181d1f2024242424242424242424242424242423201c1610080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002020202020202020202020202000000000000000000020507070c101313141516161615141312100c0607050100000000000000000000000000000000000000020507060b1012131415161616151413100c070706040100000000000000000000000000000000000000000000000000000000030608090a090704000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161b1f222324242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424201f1c17110a02000000000000000001070c1013141717171717171717171717171717171514120f09030000000000000000000000000000000000000000000000000000000000000000000000000001070c1013141717171717171717171717171717171614100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070808090a09080807060300000000000000000000000000000000000000000000000000000000000306070708090a090807060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f131516171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171717171312100b06000000000000000000000000000406070a0a0a0a0a0a0a0a0a0a0a0a0a0a0a080806020000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070a0a0a0a0a0a0a0a0a0a0a0a0a0a0a09070400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030709090a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a07060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 m_StreamData: serializedVersion: 2 offset: 0 diff --git a/Assets/Resources/Fonts/WarioWareV2 SDF 1.mat b/Assets/Resources/Fonts/WarioWareV2 SDF 1.mat index 34e37b89f..38f4a059a 100644 --- a/Assets/Resources/Fonts/WarioWareV2 SDF 1.mat +++ b/Assets/Resources/Fonts/WarioWareV2 SDF 1.mat @@ -102,7 +102,7 @@ Material: - _WeightBold: 0.75 - _WeightNormal: 0 m_Colors: - - _ClipRect: {r: -10, g: -10, b: -10, a: 10} + - _ClipRect: {r: -10, g: -10, b: -7, a: 10} - _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0} - _FaceColor: {r: 1, g: 1, b: 1, a: 1} - _GlowColor: {r: 0, g: 1, b: 0, a: 0.5} diff --git a/Assets/Resources/Fonts/WarioWareV2 SDF 2.mat b/Assets/Resources/Fonts/WarioWareV2 SDF 2.mat index 9c07171ba..f5ca3ee10 100644 --- a/Assets/Resources/Fonts/WarioWareV2 SDF 2.mat +++ b/Assets/Resources/Fonts/WarioWareV2 SDF 2.mat @@ -102,7 +102,7 @@ Material: - _WeightBold: 0.75 - _WeightNormal: 0 m_Colors: - - _ClipRect: {r: -10, g: -10, b: -10, a: 10} + - _ClipRect: {r: -10, g: -10, b: -7, a: 10} - _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0} - _FaceColor: {r: 1, g: 1, b: 1, a: 1} - _GlowColor: {r: 0, g: 1, b: 0, a: 0.5} diff --git a/Assets/Resources/Fonts/WarioWareV2 SDF 3.mat b/Assets/Resources/Fonts/WarioWareV2 SDF 3.mat index f8163ce8e..75f295aa6 100644 --- a/Assets/Resources/Fonts/WarioWareV2 SDF 3.mat +++ b/Assets/Resources/Fonts/WarioWareV2 SDF 3.mat @@ -102,7 +102,7 @@ Material: - _WeightBold: 0.75 - _WeightNormal: 0 m_Colors: - - _ClipRect: {r: -10, g: -10, b: -10, a: 10} + - _ClipRect: {r: -10, g: -10, b: -7, a: 10} - _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0} - _FaceColor: {r: 1, g: 1, b: 1, a: 1} - _GlowColor: {r: 0, g: 1, b: 0, a: 0.5} diff --git a/Assets/Resources/Fonts/WarioWareV2 SDF 4.mat b/Assets/Resources/Fonts/WarioWareV2 SDF 4.mat index 5cabd75ca..8d50a07f4 100644 --- a/Assets/Resources/Fonts/WarioWareV2 SDF 4.mat +++ b/Assets/Resources/Fonts/WarioWareV2 SDF 4.mat @@ -102,7 +102,7 @@ Material: - _WeightBold: 0.75 - _WeightNormal: 0 m_Colors: - - _ClipRect: {r: -10, g: -10, b: -10, a: 10} + - _ClipRect: {r: -10, g: -10, b: -7, a: 10} - _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0} - _FaceColor: {r: 1, g: 1, b: 1, a: 1} - _GlowColor: {r: 0, g: 1, b: 0, a: 0.5} diff --git a/Assets/Resources/Fonts/WarioWareV2 SDF 5.mat b/Assets/Resources/Fonts/WarioWareV2 SDF 5.mat index 159f272a5..425d16e71 100644 --- a/Assets/Resources/Fonts/WarioWareV2 SDF 5.mat +++ b/Assets/Resources/Fonts/WarioWareV2 SDF 5.mat @@ -102,7 +102,7 @@ Material: - _WeightBold: 0.75 - _WeightNormal: 0 m_Colors: - - _ClipRect: {r: -10, g: -10, b: -9.431391, a: 10} + - _ClipRect: {r: -10, g: -10, b: -10, a: 10} - _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0} - _FaceColor: {r: 1, g: 1, b: 1, a: 1} - _GlowColor: {r: 0, g: 1, b: 0, a: 0.5} diff --git a/Assets/Resources/Fonts/rodin/FOT-Rodin Pro B SDF Dynamic_Outline.asset b/Assets/Resources/Fonts/rodin/FOT-Rodin Pro B SDF Dynamic_Outline.asset index b8c5a10d8..4afe9f96f 100644 --- a/Assets/Resources/Fonts/rodin/FOT-Rodin Pro B SDF Dynamic_Outline.asset +++ b/Assets/Resources/Fonts/rodin/FOT-Rodin Pro B SDF Dynamic_Outline.asset @@ -370,6 +370,10 @@ MonoBehaviour: m_LigatureGlyphID: 9817 - m_ComponentGlyphIDs: 19000000100000001a000000 m_LigatureGlyphID: 9805 + - m_ComponentGlyphIDs: e8030000ef030000c4030000ae030000ef030000 + m_LigatureGlyphID: 11956 + - m_ComponentGlyphIDs: e8030000dc030000 + m_LigatureGlyphID: 11955 m_GlyphPairAdjustmentRecords: - m_FirstAdjustmentRecord: m_GlyphIndex: 79 @@ -7571,6 +7575,261 @@ MonoBehaviour: m_XAdvance: 0 m_YAdvance: 0 m_FeatureLookupFlags: 1334653216 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -14.400001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 634 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -14.400001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 635 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -10.8 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 636 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -10.8 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 637 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 1.8000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 660 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -2.7 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 928 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.8000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 939 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.8000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 955 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 970 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 1.8000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 981 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 1.8000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 982 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 999 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -60 + m_SecondAdjustmentRecord: + m_GlyphIndex: 944 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -40 + m_SecondAdjustmentRecord: + m_GlyphIndex: 966 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -80 + m_SecondAdjustmentRecord: + m_GlyphIndex: 7887 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -140 + m_SecondAdjustmentRecord: + m_GlyphIndex: 7888 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 1946038560 m_MarkToBaseAdjustmentRecords: [] m_MarkToMarkAdjustmentRecords: [] m_ShouldReimportFontFeatures: 0 diff --git a/Assets/Resources/Fonts/rodin/FOT-Rodin Pro DB SDF Dynamic.asset b/Assets/Resources/Fonts/rodin/FOT-Rodin Pro DB SDF Dynamic.asset index 3e7a629cc..9c9552f07 100644 --- a/Assets/Resources/Fonts/rodin/FOT-Rodin Pro DB SDF Dynamic.asset +++ b/Assets/Resources/Fonts/rodin/FOT-Rodin Pro DB SDF Dynamic.asset @@ -132,6 +132,12 @@ MonoBehaviour: m_LigatureGlyphID: 11868 - m_ComponentGlyphIDs: 4f00000054000000 m_LigatureGlyphID: 8029 + - m_ComponentGlyphIDs: e8030000ef030000c4030000ae030000ef030000 + m_LigatureGlyphID: 11956 + - m_ComponentGlyphIDs: e8030000dc030000 + m_LigatureGlyphID: 11955 + - m_ComponentGlyphIDs: cb030000a0030000c0030000 + m_LigatureGlyphID: 8052 m_GlyphPairAdjustmentRecords: - m_FirstAdjustmentRecord: m_GlyphIndex: 79 @@ -208,6 +214,1281 @@ MonoBehaviour: m_XAdvance: 0 m_YAdvance: 0 m_FeatureLookupFlags: -1702022880 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -12.6 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 634 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -12.6 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 635 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -12.6 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 636 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -12.6 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 637 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 928 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 939 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 955 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 970 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.8000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 999 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -40 + m_SecondAdjustmentRecord: + m_GlyphIndex: 944 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -40 + m_SecondAdjustmentRecord: + m_GlyphIndex: 966 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -100 + m_SecondAdjustmentRecord: + m_GlyphIndex: 7887 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -120 + m_SecondAdjustmentRecord: + m_GlyphIndex: 7888 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 1000 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -20 + m_SecondAdjustmentRecord: + m_GlyphIndex: 7891 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 877 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 634 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 877 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 635 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 877 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 636 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 877 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 637 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 634 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 635 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 636 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 637 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 660 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 847 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 851 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 852 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 862 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 872 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 873 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 878 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 879 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 880 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 909 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 926 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 967 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 660 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 967 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.6000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 959 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 971 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 1.8000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 634 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 971 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 1.8000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 635 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 971 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 1.8000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 636 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 971 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 1.8000001 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 637 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -10.8 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 660 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 879 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 880 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 926 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 930 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 937 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 953 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 960 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 961 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 963 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 977 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 978 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -10.8 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 986 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 997 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 864 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 877 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 864 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.2000003 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 878 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 864 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 879 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 864 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 880 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 864 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.4 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 909 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 877 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -40 + m_SecondAdjustmentRecord: + m_GlyphIndex: 7887 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 877 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -60 + m_SecondAdjustmentRecord: + m_GlyphIndex: 7888 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -20 + m_SecondAdjustmentRecord: + m_GlyphIndex: 858 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -20 + m_SecondAdjustmentRecord: + m_GlyphIndex: 859 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -40 + m_SecondAdjustmentRecord: + m_GlyphIndex: 864 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -20 + m_SecondAdjustmentRecord: + m_GlyphIndex: 868 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -20 + m_SecondAdjustmentRecord: + m_GlyphIndex: 877 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -20 + m_SecondAdjustmentRecord: + m_GlyphIndex: 894 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -20 + m_SecondAdjustmentRecord: + m_GlyphIndex: 905 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -40 + m_SecondAdjustmentRecord: + m_GlyphIndex: 920 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -40 + m_SecondAdjustmentRecord: + m_GlyphIndex: 7887 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 916 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -80 + m_SecondAdjustmentRecord: + m_GlyphIndex: 7888 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 967 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -20 + m_SecondAdjustmentRecord: + m_GlyphIndex: 934 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 967 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -60 + m_SecondAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 967 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -40 + m_SecondAdjustmentRecord: + m_GlyphIndex: 7888 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 971 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -40 + m_SecondAdjustmentRecord: + m_GlyphIndex: 930 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 971 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -40 + m_SecondAdjustmentRecord: + m_GlyphIndex: 957 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 971 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -80 + m_SecondAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 971 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -100 + m_SecondAdjustmentRecord: + m_GlyphIndex: 7888 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -60 + m_SecondAdjustmentRecord: + m_GlyphIndex: 7888 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 988 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -40 + m_SecondAdjustmentRecord: + m_GlyphIndex: 7891 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 864 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -40 + m_SecondAdjustmentRecord: + m_GlyphIndex: 858 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 864 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -40 + m_SecondAdjustmentRecord: + m_GlyphIndex: 859 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 864 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -20 + m_SecondAdjustmentRecord: + m_GlyphIndex: 894 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 864 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: -80 + m_SecondAdjustmentRecord: + m_GlyphIndex: 7888 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: -1861144288 m_MarkToBaseAdjustmentRecords: [] m_MarkToMarkAdjustmentRecords: [] m_ShouldReimportFontFeatures: 0 diff --git a/Assets/Resources/Games/airboarder.prefab b/Assets/Resources/Games/airboarder.prefab new file mode 100644 index 000000000..faad3d482 --- /dev/null +++ b/Assets/Resources/Games/airboarder.prefab @@ -0,0 +1,3123 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &199414332929341915 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4282064293073332267} + m_Layer: 0 + m_Name: Player + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4282064293073332267 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 199414332929341915} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 4.2, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 4214217034035880541} + - {fileID: 5830605052482316582} + m_Father: {fileID: 6788947284919293199} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &999186384291081479 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7590887620224905535} + - component: {fileID: 7368235579329988962} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &7590887620224905535 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 999186384291081479} + m_LocalRotation: {x: -0.042956725, y: -0.17348297, z: -0.0075744325, w: 0.98387045} + m_LocalPosition: {x: 0, y: 5, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2677427256397037315} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: -5, y: -20, z: 0} +--- !u!108 &7368235579329988962 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 999186384291081479} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 1 + m_Shape: 0 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 0.25 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + 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_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 2 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &1215422233952891257 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3104724556747080712} + - component: {fileID: 723254299125788594} + - component: {fileID: 7436077393083887575} + m_Layer: 0 + m_Name: vsn_mesh_1_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3104724556747080712 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1215422233952891257} + m_LocalRotation: {x: -0, y: -0.9919021, z: -0, w: 0.12700473} + m_LocalPosition: {x: -0.00029361, y: 0.000028945, z: 1.999} + m_LocalScale: {x: 209.80533, y: 209.80533, z: 209.80533} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 5254664032251897646} + m_Father: {fileID: 8154153378120042038} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: -165.407, z: 0} +--- !u!33 &723254299125788594 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1215422233952891257} + m_Mesh: {fileID: -1677165586242444022, guid: 669fa6d6b4096764387b9cf777fbf915, type: 3} +--- !u!23 &7436077393083887575 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1215422233952891257} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 0 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: d308d6053cbc091489ae82391d36d476, 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 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &2013167086446020755 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6887818625373377000} + - component: {fileID: 8627881037816012048} + m_Layer: 0 + m_Name: CPU1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6887818625373377000 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2013167086446020755} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -4.6, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 305587567084456861} + - {fileID: 2334222912782459213} + m_Father: {fileID: 6788947284919293199} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &8627881037816012048 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2013167086446020755} + m_Enabled: 0 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 0} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &2882644589364985837 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4475688631540571435} + - component: {fileID: 9105702199878946262} + m_Layer: 0 + m_Name: airboarder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4475688631540571435 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2882644589364985837} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 3.93, y: -2.8, z: 8.54} + m_LocalScale: {x: 2.0592587, y: 2.0592587, z: 2.0592587} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4247666789870766831} + - {fileID: 9145231469005479427} + - {fileID: 8154153378120042038} + - {fileID: 2677427256397037315} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &9105702199878946262 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2882644589364985837} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fc3cd787ab89a54aa7eec99799e86a0, type: 3} + m_Name: + m_EditorClassIdentifier: + SoundSequences: [] + scheduledInputs: [] + wantsCrouch: 0 + bgMaterial: {fileID: 2100000, guid: d308d6053cbc091489ae82391d36d476, type: 2} + floorMaterial: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + cameraPivot: {fileID: 2677427256397037315} + cameraPos: {fileID: 2677427256397037315} + cameraFOV: 25 + archBasic: {fileID: 6590728124445756167} + wallBasic: {fileID: 4600485667161481742} + floor: {fileID: 6175185380924501080} + CPU1: {fileID: 1975474441940497211} + CPU2: {fileID: 1643307588540728724} + Player: {fileID: 4556547465341807253} + Dog: {fileID: 1277837141357529178} + Tail: {fileID: 1527716338421172878} + Floor: {fileID: 2741264063845894407} + cpu1CantBop: 0 + cpu2CantBop: 0 + playerCantBop: 0 + startBeat: 0 + switchBeat: 0 + startFloor: 1 +--- !u!1 &3550516441994710030 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4522032203519345872} + m_Layer: 0 + m_Name: WallFinePosition + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4522032203519345872 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3550516441994710030} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.25, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7560210517393434621} + m_Father: {fileID: 9145231469005479427} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4957977851139062575 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5254664032251897646} + - component: {fileID: 7397568393436942907} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5254664032251897646 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4957977851139062575} + m_LocalRotation: {x: 0.5988837, y: 0.16783243, z: 0.16220455, w: 0.7660681} + m_LocalPosition: {x: -0, y: 0.302, z: -2.54} + m_LocalScale: {x: 1, y: 1, z: 1.7865} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3104724556747080712} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 59.669, y: 63.371, z: 62.899} +--- !u!108 &7397568393436942907 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4957977851139062575} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 1 + m_Shape: 0 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + 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_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &5263416151098873631 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2677427256397037315} + m_Layer: 0 + m_Name: airCam + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2677427256397037315 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5263416151098873631} + m_LocalRotation: {x: 0.058832005, y: -0.53599083, z: 0.037480127, w: 0.841337} + m_LocalPosition: {x: 15, y: 4, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3041313458763079256} + - {fileID: 3596070473536993749} + - {fileID: 7590887620224905535} + m_Father: {fileID: 4475688631540571435} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 8, y: -65, z: 0} +--- !u!1 &5394125054486367733 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3596070473536993749} + - component: {fileID: 7998239260032225908} + m_Layer: 0 + m_Name: BackgroundPlane + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &3596070473536993749 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5394125054486367733} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 10} + m_LocalScale: {x: 8000, y: 8000, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2677427256397037315} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7998239260032225908 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5394125054486367733} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: d308d6053cbc091489ae82391d36d476, 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 7482667652216324306, guid: 311925a002f4447b3a28927169b83ea6, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &6174176853209375996 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8154153378120042038} + m_Layer: 0 + m_Name: Sky + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8154153378120042038 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6174176853209375996} + 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: 3104724556747080712} + - {fileID: 1798043517605732004} + - {fileID: 6450464862444400699} + m_Father: {fileID: 4475688631540571435} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6310973729586797245 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4247666789870766831} + m_Layer: 0 + m_Name: MovingObjects + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4247666789870766831 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6310973729586797245} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.87, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6788947284919293199} + - {fileID: 6667017858785471495} + m_Father: {fileID: 4475688631540571435} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6487284518632088781 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8940920552412959252} + m_Layer: 0 + m_Name: ArchFinePosition + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8940920552412959252 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6487284518632088781} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.53, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8644837133873799696} + m_Father: {fileID: 9145231469005479427} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6707612264994879636 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6788947284919293199} + m_Layer: 0 + m_Name: airboarders + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6788947284919293199 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6707612264994879636} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -1, y: 0, z: 0.78} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6887818625373377000} + - {fileID: 2304490371475323270} + - {fileID: 4282064293073332267} + m_Father: {fileID: 4247666789870766831} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7147084581281717594 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3041313458763079256} + - component: {fileID: 3989233943624912286} + m_Layer: 0 + m_Name: Camera + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &3041313458763079256 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7147084581281717594} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 6.34} + m_LocalScale: {x: 1, y: 1, z: 8.956697} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2677427256397037315} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &3989233943624912286 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7147084581281717594} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 1, g: 1, b: 1, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 2000 + field of view: 30 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 0 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!1 &7292280111615509311 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2304490371475323270} + m_Layer: 0 + m_Name: CPU2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2304490371475323270 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7292280111615509311} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.25, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6889036039374323400} + - {fileID: 6084645098647949564} + m_Father: {fileID: 6788947284919293199} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8404534327873962576 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9145231469005479427} + m_Layer: 0 + m_Name: Environment + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9145231469005479427 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8404534327873962576} + 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: 6843636135936194274} + - {fileID: 4522032203519345872} + - {fileID: 8940920552412959252} + m_Father: {fileID: 4475688631540571435} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &267703836530257014 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6887818625373377000} + m_Modifications: + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 0.9999999 + objectReference: {fileID: 0} + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.y + value: 0.99999994 + objectReference: {fileID: 0} + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.z + value: 0.99999994 + objectReference: {fileID: 0} + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.x + value: 0.000021828784 + objectReference: {fileID: 0} + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.y + value: -0.00299883 + objectReference: {fileID: 0} + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.z + value: -0.000053091644 + objectReference: {fileID: 0} + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 59.691696 + objectReference: {fileID: 0} + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -156.58969 + objectReference: {fileID: 0} + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -154.42084 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.y + value: -0.55 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.y + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.z + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 180 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 0.9999999 + objectReference: {fileID: 0} + - target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.y + value: 0.9999999 + objectReference: {fileID: 0} + - target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.z + value: 0.99999994 + objectReference: {fileID: 0} + - target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0.43519548 + objectReference: {fileID: 0} + - target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 128.22536 + objectReference: {fileID: 0} + - target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 180 + objectReference: {fileID: 0} + - target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0014555797 + objectReference: {fileID: 0} + - target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0014553501 + objectReference: {fileID: 0} + - target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.z + value: -0.00012458238 + objectReference: {fileID: 0} + - target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 26.951088 + objectReference: {fileID: 0} + - target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 25.432802 + objectReference: {fileID: 0} + - target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 32.699562 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.y + value: 0.99999994 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.x + value: -0.000011850246 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.y + value: -1.0635972e-10 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.z + value: -0.00006796107 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 29.426844 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -11.638364 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 34.794968 + objectReference: {fileID: 0} + - target: {fileID: -5546437562569359665, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -5546437562569359665, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -5546437562569359665, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -5546437562569359665, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -5546437562569359665, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001552491 + objectReference: {fileID: 0} + - target: {fileID: -5546437562569359665, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5546437562569359665, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -15.946705 + objectReference: {fileID: 0} + - target: {fileID: -5315867602706669865, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -89.98021 + objectReference: {fileID: 0} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_CastShadows + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_ReceiveShadows + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_UpdateWhenOffscreen + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_Materials.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_Materials.Array.data[1] + value: + objectReference: {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_Materials.Array.data[2] + value: + objectReference: {fileID: 2100000, guid: 21a244208ca5883499c02785947c32eb, type: 2} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_Materials.Array.data[3] + value: + objectReference: {fileID: 2100000, guid: 21a244208ca5883499c02785947c32eb, type: 2} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_Materials.Array.data[4] + value: + objectReference: {fileID: 2100000, guid: 21a244208ca5883499c02785947c32eb, type: 2} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_Materials.Array.data[5] + value: + objectReference: {fileID: 2100000, guid: f58d76d5af0485d4c9cbdd39dbc2c269, type: 2} + - target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -71.71055 + objectReference: {fileID: 0} + - target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 115.95907 + objectReference: {fileID: 0} + - target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -31.898987 + objectReference: {fileID: 0} + - target: {fileID: -3673476394703291053, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.x + value: -0.000019310237 + objectReference: {fileID: 0} + - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0025961706 + objectReference: {fileID: 0} + - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.z + value: 0.00038391133 + objectReference: {fileID: 0} + - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -75.18267 + objectReference: {fileID: 0} + - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 8.446224 + objectReference: {fileID: 0} + - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 109.15193 + objectReference: {fileID: 0} + - target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.y + value: 0.99999994 + objectReference: {fileID: 0} + - target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 1.2096696 + objectReference: {fileID: 0} + - target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 15.73625 + objectReference: {fileID: 0} + - target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -31.016027 + objectReference: {fileID: 0} + - target: {fileID: -2240725241546395484, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0000143014295 + objectReference: {fileID: 0} + - target: {fileID: -2240725241546395484, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0017634439 + objectReference: {fileID: 0} + - target: {fileID: -2240725241546395484, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.z + value: -0.00065276027 + objectReference: {fileID: 0} + - target: {fileID: -2240725241546395484, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -90.000206 + objectReference: {fileID: 0} + - target: {fileID: -1593081406422785238, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -46.420708 + objectReference: {fileID: 0} + - target: {fileID: -1593081406422785238, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -67.4381 + objectReference: {fileID: 0} + - target: {fileID: -1593081406422785238, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 128.24156 + objectReference: {fileID: 0} + - target: {fileID: -1326856960798226984, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -0.000007316483 + objectReference: {fileID: 0} + - target: {fileID: -1326856960798226984, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -0.000010240673 + objectReference: {fileID: 0} + - target: {fileID: -1326856960798226984, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -28.50919 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.y + value: 0.99999994 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.x + value: -0.00285833 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.y + value: 4.6566126e-11 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.z + value: -0.00014242729 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.w + value: 0.8412099 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.x + value: -0.17813602 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.y + value: 0.5063012 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.z + value: -0.06551843 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -14.232529 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 57.336376 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -35.905334 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.x + value: 0.00023749859 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0012651699 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.z + value: 0.00024293795 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.w + value: 0.78280616 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.x + value: -0.41258737 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.y + value: -0.24122374 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.z + value: 0.39849374 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -15.629818 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -39.889194 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 80.49676 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_Name + value: neo_airboy + objectReference: {fileID: 0} + - target: {fileID: 4108420948615836622, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -0.15570568 + objectReference: {fileID: 0} + - target: {fileID: 4108420948615836622, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 17.07026 + objectReference: {fileID: 0} + - target: {fileID: 4108420948615836622, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0.507061 + objectReference: {fileID: 0} + - target: {fileID: 4250918724240952483, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 12.268569 + objectReference: {fileID: 0} + - target: {fileID: 4250918724240952483, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -4.864055 + objectReference: {fileID: 0} + - target: {fileID: 4250918724240952483, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 28.615183 + objectReference: {fileID: 0} + - target: {fileID: 5307233405938488542, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5307233405938488542, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7096549898355155914, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8589286667285037113, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -13.3639965 + objectReference: {fileID: 0} + - target: {fileID: 8589286667285037113, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 69.6086 + objectReference: {fileID: 0} + - target: {fileID: 8589286667285037113, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0.54148036 + objectReference: {fileID: 0} + - target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.x + value: 0.00279524 + objectReference: {fileID: 0} + - target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.y + value: 7.4505804e-11 + objectReference: {fileID: 0} + - target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.z + value: 7.4505804e-11 + objectReference: {fileID: 0} + - target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0.0000002134434 + objectReference: {fileID: 0} + - target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0.0000019209908 + objectReference: {fileID: 0} + - target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0.0000012806606 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 333100bf553a5924d870acafacb4f53a, type: 3} +--- !u!4 &305587567084456861 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + m_PrefabInstance: {fileID: 267703836530257014} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1114213100936499495 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + m_PrefabInstance: {fileID: 267703836530257014} + m_PrefabAsset: {fileID: 0} +--- !u!95 &1975474441940497211 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1114213100936499495} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 8f4b96d8a00d1d1469c6fc1556d78383, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1001 &2267938930607798607 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8154153378120042038} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalScale.x + value: 0.43400735 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalScale.y + value: 0.4340074 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalScale.z + value: 0.43400735 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalPosition.x + value: 15.087 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalPosition.y + value: -3.2226 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalPosition.z + value: -15.707 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalRotation.w + value: 0.5984718 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalRotation.y + value: 0.8011439 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 106.479 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -530081578707376959, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalPosition.x + value: -3.7 + objectReference: {fileID: 0} + - target: {fileID: -530081578707376959, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_Name + value: cloud_model + objectReference: {fileID: 0} + - target: {fileID: 5521721997653780584, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_CastShadows + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5521721997653780584, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + propertyPath: m_ReceiveShadows + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ff59f8d97b493cd48be0648a02466412, type: 3} +--- !u!4 &1798043517605732004 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: ff59f8d97b493cd48be0648a02466412, type: 3} + m_PrefabInstance: {fileID: 2267938930607798607} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2877353907410208422 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6887818625373377000} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalPosition.x + value: -0.49999952 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalPosition.y + value: -0.9800001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalPosition.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalRotation.y + value: -1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 270 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_Name + value: airboy_shadow_model + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} +--- !u!4 &2334222912782459213 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + m_PrefabInstance: {fileID: 2877353907410208422} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4463438238432265654 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4282064293073332267} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.y + value: -0.55 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.y + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.z + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 180 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_UpdateWhenOffscreen + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_Materials.Array.data[2] + value: + objectReference: {fileID: 2100000, guid: 21a244208ca5883499c02785947c32eb, type: 2} + - target: {fileID: 919132149155446097, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_Name + value: neo_airboy + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 333100bf553a5924d870acafacb4f53a, type: 3} +--- !u!1 &3544395287158831335 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + m_PrefabInstance: {fileID: 4463438238432265654} + m_PrefabAsset: {fileID: 0} +--- !u!95 &4556547465341807253 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3544395287158831335} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 8f4b96d8a00d1d1469c6fc1556d78383, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!4 &4214217034035880541 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + m_PrefabInstance: {fileID: 4463438238432265654} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6051633967365814039 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2304490371475323270} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalPosition.x + value: -0.33 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalPosition.y + value: -0.9800001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalRotation.y + value: -1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 270 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_Name + value: airboy_shadow_model + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} +--- !u!4 &6084645098647949564 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + m_PrefabInstance: {fileID: 6051633967365814039} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6296244597491437261 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4282064293073332267} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalPosition.x + value: -0.04 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalPosition.y + value: -0.9800001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalRotation.y + value: -1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 270 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + propertyPath: m_Name + value: airboy_shadow_model + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} +--- !u!4 &5830605052482316582 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 94df92b5e5343dd40b32bcc24267b22b, type: 3} + m_PrefabInstance: {fileID: 6296244597491437261} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6345709014570522915 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2304490371475323270} + m_Modifications: + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 0.9999999 + objectReference: {fileID: 0} + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.y + value: 0.99999994 + objectReference: {fileID: 0} + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.z + value: 0.99999994 + objectReference: {fileID: 0} + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 57.381756 + objectReference: {fileID: 0} + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -158.12123 + objectReference: {fileID: 0} + - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -155.6617 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.y + value: -0.55 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.y + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalRotation.z + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 180 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0.056753226 + objectReference: {fileID: 0} + - target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -167.16196 + objectReference: {fileID: 0} + - target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 180.00005 + objectReference: {fileID: 0} + - target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 14.577116 + objectReference: {fileID: 0} + - target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -31.999496 + objectReference: {fileID: 0} + - target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 82.04556 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.y + value: 0.99999994 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -9.457023 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -2.1630514 + objectReference: {fileID: 0} + - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -5.0018635 + objectReference: {fileID: 0} + - target: {fileID: -5546437562569359665, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0.33671144 + objectReference: {fileID: 0} + - target: {fileID: -5315867602706669865, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -89.98021 + objectReference: {fileID: 0} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_UpdateWhenOffscreen + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_Materials.Array.data[2] + value: + objectReference: {fileID: 2100000, guid: 21a244208ca5883499c02785947c32eb, type: 2} + - target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.y + value: 0.99999994 + objectReference: {fileID: 0} + - target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -57.961338 + objectReference: {fileID: 0} + - target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 30.606495 + objectReference: {fileID: 0} + - target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 81.31543 + objectReference: {fileID: 0} + - target: {fileID: -3673476394703291053, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.y + value: 0.9999999 + objectReference: {fileID: 0} + - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.z + value: 1.0000001 + objectReference: {fileID: 0} + - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -61.45762 + objectReference: {fileID: 0} + - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 28.064795 + objectReference: {fileID: 0} + - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 107.300316 + objectReference: {fileID: 0} + - target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -31.128532 + objectReference: {fileID: 0} + - target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -44.02721 + objectReference: {fileID: 0} + - target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -6.3419 + objectReference: {fileID: 0} + - target: {fileID: -2240725241546395484, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -90.000206 + objectReference: {fileID: 0} + - target: {fileID: -1593081406422785238, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 51.2752 + objectReference: {fileID: 0} + - target: {fileID: -1593081406422785238, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -60.27567 + objectReference: {fileID: 0} + - target: {fileID: -1593081406422785238, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 104.51579 + objectReference: {fileID: 0} + - target: {fileID: -1326856960798226984, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -0.7646533 + objectReference: {fileID: 0} + - target: {fileID: -1326856960798226984, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0.4124572 + objectReference: {fileID: 0} + - target: {fileID: -1326856960798226984, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 18.184895 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.y + value: 0.99999994 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -13.488705 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 64.16658 + objectReference: {fileID: 0} + - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -17.684101 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -26.74528 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -52.560722 + objectReference: {fileID: 0} + - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 67.72485 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_Name + value: neo_airboy + objectReference: {fileID: 0} + - target: {fileID: 4108420948615836622, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -1.0677625 + objectReference: {fileID: 0} + - target: {fileID: 4108420948615836622, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 45.990498 + objectReference: {fileID: 0} + - target: {fileID: 4108420948615836622, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 1.0316931 + objectReference: {fileID: 0} + - target: {fileID: 4250918724240952483, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 9.325476 + objectReference: {fileID: 0} + - target: {fileID: 4250918724240952483, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -9.525562 + objectReference: {fileID: 0} + - target: {fileID: 4250918724240952483, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -0.36550474 + objectReference: {fileID: 0} + - target: {fileID: 7096549898355155914, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8589286667285037113, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -17.940163 + objectReference: {fileID: 0} + - target: {fileID: 8589286667285037113, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 117.38793 + objectReference: {fileID: 0} + - target: {fileID: 8589286667285037113, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -46.5822 + objectReference: {fileID: 0} + - target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0.000001520802 + objectReference: {fileID: 0} + - target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -63.68238 + objectReference: {fileID: 0} + - target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0.0000008404543 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 333100bf553a5924d870acafacb4f53a, type: 3} +--- !u!1 &6111689721467200626 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + m_PrefabInstance: {fileID: 6345709014570522915} + m_PrefabAsset: {fileID: 0} +--- !u!95 &1643307588540728724 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6111689721467200626} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 8f4b96d8a00d1d1469c6fc1556d78383, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!4 &6889036039374323400 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} + m_PrefabInstance: {fileID: 6345709014570522915} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6445710665402126601 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9145231469005479427} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_LocalScale.x + value: 0.79999995 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_LocalScale.y + value: 0.79999995 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_LocalScale.z + value: 0.79999995 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_LocalPosition.x + value: -4.946726 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_LocalPosition.y + value: -0.93000007 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_LocalRotation.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 180 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -530081578707376959, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_Name + value: floor_model + objectReference: {fileID: 0} + - target: {fileID: 5521721997653780584, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_Materials.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5521721997653780584, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 5c5aa636b730eba44b9a80ea76a7bc4e, type: 2} + - target: {fileID: 5521721997653780584, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + propertyPath: m_Materials.Array.data[1] + value: + objectReference: {fileID: 2100000, guid: 5c5aa636b730eba44b9a80ea76a7bc4e, type: 2} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} +--- !u!1 &6175185380924501080 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + m_PrefabInstance: {fileID: 6445710665402126601} + m_PrefabAsset: {fileID: 0} +--- !u!137 &2869356886031971554 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6175185380924501080} + 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_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: [] + 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: 0 + 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!95 &2741264063845894407 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6175185380924501080} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 46c60c07fc359a4479c6d02795a8c62e, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!4 &6843636135936194274 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: ddff1c9d4886fd746bbd2b69bf51f546, type: 3} + m_PrefabInstance: {fileID: 6445710665402126601} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6560821162583690220 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4247666789870766831} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalScale.x + value: 0.3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalScale.y + value: 0.3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalScale.z + value: 0.3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalPosition.x + value: 1.58 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalPosition.y + value: 1.25 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalPosition.z + value: 6.76 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalRotation.w + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalRotation.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalRotation.y + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalRotation.z + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -5753736428927592002, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -50.072083 + objectReference: {fileID: 0} + - target: {fileID: -3245233592455056840, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -2963908931572145563, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -3.3152828 + objectReference: {fileID: 0} + - target: {fileID: -2227038991508331596, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 12.854649 + objectReference: {fileID: 0} + - target: {fileID: -514115290740646892, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -89.98021 + objectReference: {fileID: 0} + - target: {fileID: -392227465415712912, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 12.854649 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_Name + value: dog + objectReference: {fileID: 0} + - target: {fileID: 4460099139919623193, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -50.071766 + objectReference: {fileID: 0} + - target: {fileID: 7618572999720859317, guid: 2b191f0019f7a454da1d277016908992, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2b191f0019f7a454da1d277016908992, type: 3} +--- !u!1 &6326943707554100925 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: 2b191f0019f7a454da1d277016908992, type: 3} + m_PrefabInstance: {fileID: 6560821162583690220} + m_PrefabAsset: {fileID: 0} +--- !u!95 &1277837141357529178 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6326943707554100925} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 88950fa3d23de6b4599cb96af1c0abe2, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!4 &6667017858785471495 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2b191f0019f7a454da1d277016908992, type: 3} + m_PrefabInstance: {fileID: 6560821162583690220} + m_PrefabAsset: {fileID: 0} +--- !u!1 &8977430744736698965 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2853740255613884857, guid: 2b191f0019f7a454da1d277016908992, type: 3} + m_PrefabInstance: {fileID: 6560821162583690220} + m_PrefabAsset: {fileID: 0} +--- !u!95 &1527716338421172878 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8977430744736698965} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 88950fa3d23de6b4599cb96af1c0abe2, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1001 &6777388439690958800 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8154153378120042038} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_LocalScale.x + value: 1.9483035 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_LocalScale.y + value: 1.9483035 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_LocalScale.z + value: 1.9483035 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_LocalPosition.x + value: -190.8 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_LocalPosition.y + value: 15.5 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_LocalPosition.z + value: 3.7 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_Name + value: mothership_model + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5521721997653780584, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 50453eb304d2d674697c11f75f7b1ee7, type: 2} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} +--- !u!1 &5967119084978137729 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + m_PrefabInstance: {fileID: 6777388439690958800} + m_PrefabAsset: {fileID: 0} +--- !u!95 &7862264567670553171 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5967119084978137729} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 838274a197f21a044af50f828404a813, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!4 &6450464862444400699 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 0fda9d12bd084a047aa0dd724e70fc36, type: 3} + m_PrefabInstance: {fileID: 6777388439690958800} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8025970981515624470 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4522032203519345872} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalScale.x + value: 0.9 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalScale.y + value: 0.8999999 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalScale.z + value: 0.8999999 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalPosition.x + value: -140.99988 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalPosition.y + value: -1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalPosition.z + value: 0.7999998 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalRotation.y + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalRotation.z + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 180 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -7354428685041398851, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7354428685041398851, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7354428685041398851, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -3587129595347350760, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -3587129595347350760, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -3587129595347350760, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -2019586970861291604, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -0.0727005 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_Name + value: Wall + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1384821189051959488, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 90 + objectReference: {fileID: 0} + - target: {fileID: 1384821189051959488, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1384821189051959488, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2850169530957890038, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 88.4807 + objectReference: {fileID: 0} + - target: {fileID: 2850169530957890038, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -89.93463 + objectReference: {fileID: 0} + - target: {fileID: 2850169530957890038, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -90.915955 + objectReference: {fileID: 0} + - target: {fileID: 4225604991599758282, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -89.98021 + objectReference: {fileID: 0} + - target: {fileID: 4452395710510657974, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 35ed2295779a9214993f4719b9fa7912, type: 2} + - target: {fileID: 4452395710510657974, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_Materials.Array.data[1] + value: + objectReference: {fileID: 2100000, guid: a8381275f858de342b6da7d85f663236, type: 2} + - target: {fileID: 5186385085610866718, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5186385085610866718, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0.16343711 + objectReference: {fileID: 0} + - target: {fileID: 5186385085610866718, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5746128911342212884, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5996647784272953943, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5996647784272953943, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 4.00696 + objectReference: {fileID: 0} + - target: {fileID: 5996647784272953943, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8078603837876992818, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -0.10196886 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} +--- !u!1 &7178900278045326663 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + m_PrefabInstance: {fileID: 8025970981515624470} + m_PrefabAsset: {fileID: 0} +--- !u!95 &1170907712128525147 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7178900278045326663} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: d3a3f979e17936b46ad2433e0e386026, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!114 &4600485667161481742 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7178900278045326663} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 880c2da5c9a9de040b78025a28c90867, type: 3} + m_Name: + m_EditorClassIdentifier: + game: {fileID: 9105702199878946262} + targetBeat: 0 + appearBeat: 0 + normalizedWall: 0 + cueStart: 0 + wallAnim: {fileID: 1170907712128525147} +--- !u!4 &7560210517393434621 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: cdd45697068de0942941fd70c7b8b9a2, type: 3} + m_PrefabInstance: {fileID: 8025970981515624470} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8102566095830517243 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8940920552412959252} + m_Modifications: + - target: {fileID: -8766383658213384184, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -36.031143 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalPosition.x + value: -139.99998 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalPosition.y + value: -1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalPosition.z + value: 0.7999998 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalRotation.y + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalRotation.z + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 180 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -7958247470785735037, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0.0000053814147 + objectReference: {fileID: 0} + - target: {fileID: -7958247470785735037, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 25.506542 + objectReference: {fileID: 0} + - target: {fileID: -7958247470785735037, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -0.0000035034375 + objectReference: {fileID: 0} + - target: {fileID: -5147326476637436832, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 50.789276 + objectReference: {fileID: 0} + - target: {fileID: -1678005120720012587, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 35ed2295779a9214993f4719b9fa7912, type: 2} + - target: {fileID: -159968170859025008, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -159968170859025008, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -159968170859025008, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_Name + value: Arch + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2655114101700337920, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 1.9787562e-15 + objectReference: {fileID: 0} + - target: {fileID: 2655114101700337920, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -143.0289 + objectReference: {fileID: 0} + - target: {fileID: 2655114101700337920, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 3.983838e-15 + objectReference: {fileID: 0} + - target: {fileID: 2978568521074353718, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2978568521074353718, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2978568521074353718, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6542873122286168406, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 2.3241096 + objectReference: {fileID: 0} + - target: {fileID: 6542873122286168406, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 10.974154 + objectReference: {fileID: 0} + - target: {fileID: 6542873122286168406, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 45.6156 + objectReference: {fileID: 0} + - target: {fileID: 6570937167159203763, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 44.725834 + objectReference: {fileID: 0} + - target: {fileID: 6570937167159203763, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 51.63467 + objectReference: {fileID: 0} + - target: {fileID: 6570937167159203763, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 124.990654 + objectReference: {fileID: 0} + - target: {fileID: 7505648016901801114, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -89.98021 + objectReference: {fileID: 0} + - target: {fileID: 7688517518177890494, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -12.880856 + objectReference: {fileID: 0} + - target: {fileID: 7688517518177890494, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -143.32394 + objectReference: {fileID: 0} + - target: {fileID: 7688517518177890494, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 49.123066 + objectReference: {fileID: 0} + - target: {fileID: 7980539796491867384, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -25.586695 + objectReference: {fileID: 0} + - target: {fileID: 7980539796491867384, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -34.68457 + objectReference: {fileID: 0} + - target: {fileID: 7980539796491867384, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -0.94666636 + objectReference: {fileID: 0} + - target: {fileID: 8369734185194120076, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -39.322746 + objectReference: {fileID: 0} + - target: {fileID: 8369734185194120076, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 101.15428 + objectReference: {fileID: 0} + - target: {fileID: 8369734185194120076, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -79.170746 + objectReference: {fileID: 0} + - target: {fileID: 8373497436259496942, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0.00027642952 + objectReference: {fileID: 0} + - target: {fileID: 8373497436259496942, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 66.64242 + objectReference: {fileID: 0} + - target: {fileID: 8373497436259496942, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0.000061934195 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} +--- !u!4 &8644837133873799696 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + m_PrefabInstance: {fileID: 8102566095830517243} + m_PrefabAsset: {fileID: 0} +--- !u!1 &8985650195640826026 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + m_PrefabInstance: {fileID: 8102566095830517243} + m_PrefabAsset: {fileID: 0} +--- !u!95 &8289865541076859572 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8985650195640826026} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 4464fa6dd045f9345bcdb7f9d2d7d8f3, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!114 &6590728124445756167 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8985650195640826026} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7418df1ca9a5218468aa02006816659f, type: 3} + m_Name: + m_EditorClassIdentifier: + archBasic: {fileID: 0} + anim: {fileID: 8289865541076859572} + game: {fileID: 9105702199878946262} + targetBeat: 0 + appearBeat: 0 + normalizedStart: 0 diff --git a/Assets/Resources/Games/airboarder.prefab.meta b/Assets/Resources/Games/airboarder.prefab.meta new file mode 100644 index 000000000..8bf6ed857 --- /dev/null +++ b/Assets/Resources/Games/airboarder.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f2ce9fed12107be429d7207df74bcd08 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Games/bonOdori.prefab b/Assets/Resources/Games/bonOdori.prefab index 857a596f0..a54273d26 100644 --- a/Assets/Resources/Games/bonOdori.prefab +++ b/Assets/Resources/Games/bonOdori.prefab @@ -2527,7 +2527,7 @@ Transform: - {fileID: 8498522789000248656} - {fileID: 4149122258595339136} m_Father: {fileID: 8473313144218655437} - m_RootOrder: 10 + m_RootOrder: 14 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!212 &1488502930672050118 SpriteRenderer: @@ -2642,7 +2642,7 @@ Transform: - {fileID: 728648227757501950} - {fileID: 1010951526018178842} m_Father: {fileID: 8473313144218655437} - m_RootOrder: 9 + m_RootOrder: 13 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!212 &6358609534666224376 SpriteRenderer: @@ -3336,7 +3336,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 8473313144218655437} - m_RootOrder: 11 + m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -3363,7 +3363,7 @@ MeshRenderer: m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: - - {fileID: 2100000, guid: c4b8a644bebf7844ba934921adfad6a8, type: 2} + - {fileID: 2100000, guid: 42519c954cb2f3d4994c58eb3a10c89e, type: 2} m_StaticBatchInfo: firstSubMesh: 0 subMeshCount: 0 @@ -3408,7 +3408,7 @@ MonoBehaviour: m_text: m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: 7fb4e6758a49be74fbd1ed730f8a25e1, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: c4b8a644bebf7844ba934921adfad6a8, type: 2} + m_sharedMaterial: {fileID: 2100000, guid: 42519c954cb2f3d4994c58eb3a10c89e, type: 2} m_fontSharedMaterials: [] m_fontMaterial: {fileID: 0} m_fontMaterials: [] @@ -5321,7 +5321,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 8473313144218655437} - m_RootOrder: 14 + m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -5348,7 +5348,7 @@ MeshRenderer: m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: - - {fileID: 2100000, guid: 24d0a9ca5cfbd304ab20e5f8bad1e021, type: 2} + - {fileID: 2100000, guid: b1901940ca0e0a342bdd90b6b6cd2a64, type: 2} m_StaticBatchInfo: firstSubMesh: 0 subMeshCount: 0 @@ -5393,7 +5393,7 @@ MonoBehaviour: m_text: m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: 7fb4e6758a49be74fbd1ed730f8a25e1, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: 24d0a9ca5cfbd304ab20e5f8bad1e021, type: 2} + m_sharedMaterial: {fileID: 2100000, guid: b1901940ca0e0a342bdd90b6b6cd2a64, type: 2} m_fontSharedMaterials: [] m_fontMaterial: {fileID: 0} m_fontMaterials: [] @@ -5821,7 +5821,7 @@ Transform: - {fileID: 3684883812708883783} - {fileID: 1736186089157390354} m_Father: {fileID: 8473313144218655437} - m_RootOrder: 8 + m_RootOrder: 12 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!212 &3197049386973504900 SpriteRenderer: @@ -5927,7 +5927,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 8473313144218655437} - m_RootOrder: 12 + m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -5954,7 +5954,7 @@ MeshRenderer: m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: - - {fileID: 2100000, guid: 42519c954cb2f3d4994c58eb3a10c89e, type: 2} + - {fileID: 2100000, guid: 131dc823f1ff8e947985d9b9da4622df, type: 2} m_StaticBatchInfo: firstSubMesh: 0 subMeshCount: 0 @@ -5999,7 +5999,7 @@ MonoBehaviour: m_text: m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: 7fb4e6758a49be74fbd1ed730f8a25e1, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: 42519c954cb2f3d4994c58eb3a10c89e, type: 2} + m_sharedMaterial: {fileID: 2100000, guid: 131dc823f1ff8e947985d9b9da4622df, type: 2} m_fontSharedMaterials: [] m_fontMaterial: {fileID: 0} m_fontMaterials: [] @@ -7036,17 +7036,17 @@ Transform: - {fileID: 4389590328865582082} - {fileID: 3859919625309255425} - {fileID: 7025149057808423635} + - {fileID: 3070629536816959270} + - {fileID: 8895179119127956590} + - {fileID: 6419318073471297395} + - {fileID: 392734652595288100} - {fileID: 8387568492357112863} - {fileID: 298275253940792191} - {fileID: 8867001238483373209} - {fileID: 2258391813358905482} - {fileID: 825448749115441003} - - {fileID: 3070629536816959270} - - {fileID: 8895179119127956590} - - {fileID: 6419318073471297395} - - {fileID: 392734652595288100} - {fileID: 7792706461787782859} - - {fileID: 8372816604436776220} + - {fileID: 3749870086284794031} m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -7095,9 +7095,9 @@ MonoBehaviour: Text8: {fileID: 8377596423482452501} Text9: {fileID: 6822964464956298578} Text10: {fileID: 964903139672564571} + DarkPlane: {fileID: 8600589182512249935} Player: {fileID: 8728714290611780215} Judge: {fileID: 7587793407961933664} - DarkPlane: {fileID: 8996654706491595582} CPU1: {fileID: 9028841130226857946} CPU2: {fileID: 395900234149378562} CPU3: {fileID: 6515992849541950419} @@ -7418,7 +7418,7 @@ Transform: - {fileID: 2213005750114308325} - {fileID: 1960765599488996696} m_Father: {fileID: 8473313144218655437} - m_RootOrder: 7 + m_RootOrder: 11 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!212 &3815436267245979119 SpriteRenderer: @@ -7746,6 +7746,90 @@ SpriteRenderer: m_WasSpriteAssigned: 1 m_MaskInteraction: 0 m_SpriteSortPoint: 0 +--- !u!1 &6470292465310625288 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3749870086284794031} + - component: {fileID: 5715612614130958639} + m_Layer: 0 + m_Name: DarkPlane + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3749870086284794031 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6470292465310625288} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.14252424, y: 0.13447765, z: 0} + m_LocalScale: {x: 30, y: 30, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8473313144218655437} + m_RootOrder: 16 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &5715612614130958639 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6470292465310625288} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 80 + m_Sprite: {fileID: 7482667652216324306, guid: 311925a002f4447b3a28927169b83ea6, type: 3} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 --- !u!1 &6513712857886115642 GameObject: m_ObjectHideFlags: 0 @@ -9103,7 +9187,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 8473313144218655437} - m_RootOrder: 13 + m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -9130,7 +9214,7 @@ MeshRenderer: m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: - - {fileID: 2100000, guid: 131dc823f1ff8e947985d9b9da4622df, type: 2} + - {fileID: 2100000, guid: 24d0a9ca5cfbd304ab20e5f8bad1e021, type: 2} m_StaticBatchInfo: firstSubMesh: 0 subMeshCount: 0 @@ -9175,7 +9259,7 @@ MonoBehaviour: m_text: m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: 7fb4e6758a49be74fbd1ed730f8a25e1, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: 131dc823f1ff8e947985d9b9da4622df, type: 2} + m_sharedMaterial: {fileID: 2100000, guid: 24d0a9ca5cfbd304ab20e5f8bad1e021, type: 2} m_fontSharedMaterials: [] m_fontMaterial: {fileID: 0} m_fontMaterials: [] @@ -9336,7 +9420,7 @@ MeshRenderer: m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: - - {fileID: 2100000, guid: b1901940ca0e0a342bdd90b6b6cd2a64, type: 2} + - {fileID: 2100000, guid: c4b8a644bebf7844ba934921adfad6a8, type: 2} m_StaticBatchInfo: firstSubMesh: 0 subMeshCount: 0 @@ -9381,7 +9465,7 @@ MonoBehaviour: m_text: m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: 7fb4e6758a49be74fbd1ed730f8a25e1, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: b1901940ca0e0a342bdd90b6b6cd2a64, type: 2} + m_sharedMaterial: {fileID: 2100000, guid: c4b8a644bebf7844ba934921adfad6a8, type: 2} m_fontSharedMaterials: [] m_fontMaterial: {fileID: 0} m_fontMaterials: [] @@ -9492,7 +9576,7 @@ Transform: - {fileID: 8850645232796680541} - {fileID: 668698683872560763} m_Father: {fileID: 8473313144218655437} - m_RootOrder: 6 + m_RootOrder: 10 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!212 &7826307452119399042 SpriteRenderer: @@ -10775,90 +10859,6 @@ SpriteRenderer: m_WasSpriteAssigned: 1 m_MaskInteraction: 0 m_SpriteSortPoint: 0 ---- !u!1 &8996654706491595582 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8372816604436776220} - - component: {fileID: 2039583697981896909} - m_Layer: 0 - m_Name: darkPlane - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8372816604436776220 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8996654706491595582} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.42, y: 0.2984, z: 0} - m_LocalScale: {x: 1.0302529, y: 1.0297667, z: 0.063} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 8473313144218655437} - m_RootOrder: 16 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &2039583697981896909 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8996654706491595582} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 499 - m_Sprite: {fileID: 21300000, guid: 59d0a99e845d9d5469ee62d08bc2ffd4, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 0} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 1, y: 1} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 --- !u!1 &9098412705190635225 GameObject: m_ObjectHideFlags: 0 @@ -11269,182 +11269,14 @@ PrefabInstance: m_Modification: m_TransformParent: {fileID: 8473313144218655437} m_Modifications: - - target: {fileID: 162537035602944018, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 186290410701868798, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1067445009950523494, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1228709536526969669, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1425199174796183788, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1437292580865365289, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2145296231242359637, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2777326978127973966, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalPosition.x - value: 2.26 - objectReference: {fileID: 0} - - target: {fileID: 2777326978127973966, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalPosition.y - value: 3.16 - objectReference: {fileID: 0} - - target: {fileID: 2777326978127973966, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalPosition.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2777326978127973966, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalRotation.w - value: 0.7976258 - objectReference: {fileID: 0} - - target: {fileID: 2777326978127973966, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalRotation.x - value: -0.08772299 - objectReference: {fileID: 0} - - target: {fileID: 2777326978127973966, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalRotation.y - value: -0.065447204 - objectReference: {fileID: 0} - - target: {fileID: 2777326978127973966, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalRotation.z - value: 0.59313947 - objectReference: {fileID: 0} - - target: {fileID: 2777326978127973966, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: -3.572 - objectReference: {fileID: 0} - - target: {fileID: 2777326978127973966, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: -12.056 - objectReference: {fileID: 0} - - target: {fileID: 2777326978127973966, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 73.649 - objectReference: {fileID: 0} - - target: {fileID: 2855681964349592359, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3363750418460717314, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3823119450285429334, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - target: {fileID: 4173234281557742145, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} propertyPath: m_Name value: Player objectReference: {fileID: 0} - - target: {fileID: 5071905116422310494, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalPosition.x - value: 3.78 - objectReference: {fileID: 0} - - target: {fileID: 5071905116422310494, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalPosition.y - value: 3.42 - objectReference: {fileID: 0} - - target: {fileID: 5071905116422310494, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalRotation.w - value: 0.99925244 - objectReference: {fileID: 0} - - target: {fileID: 5071905116422310494, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 5071905116422310494, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 5071905116422310494, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalRotation.z - value: 0.038659822 - objectReference: {fileID: 0} - - target: {fileID: 5071905116422310494, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 11.673 - objectReference: {fileID: 0} - - target: {fileID: 5071905116422310494, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: -3.138 - objectReference: {fileID: 0} - - target: {fileID: 5071905116422310494, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 4.431 - objectReference: {fileID: 0} - - target: {fileID: 5470850460750212986, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5518371166212149914, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalScale.x - value: 0.90708435 - objectReference: {fileID: 0} - - target: {fileID: 5518371166212149914, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalScale.y - value: 0.8513504 - objectReference: {fileID: 0} - - target: {fileID: 5518371166212149914, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalPosition.x - value: 1.54 - objectReference: {fileID: 0} - - target: {fileID: 5518371166212149914, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalPosition.y - value: 2.95 - objectReference: {fileID: 0} - - target: {fileID: 5518371166212149914, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalRotation.w - value: 0.9999729 - objectReference: {fileID: 0} - - target: {fileID: 5518371166212149914, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 5518371166212149914, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 5518371166212149914, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalRotation.z - value: 0.0073725386 - objectReference: {fileID: 0} - - target: {fileID: 5518371166212149914, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0.845 - objectReference: {fileID: 0} - target: {fileID: 5555807300909840729, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} propertyPath: m_SortingOrder value: 40 objectReference: {fileID: 0} - - target: {fileID: 6772323682815721983, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_FlipY - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6772323682815721983, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7884700402236255744, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - target: {fileID: 8037711602339975357, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} propertyPath: m_RootOrder value: 6 @@ -11489,22 +11321,6 @@ PrefabInstance: propertyPath: m_LocalEulerAnglesHint.z value: 0 objectReference: {fileID: 0} - - target: {fileID: 8497435412259451718, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8612183851691726993, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8820739013514521759, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalPosition.x - value: -0.08 - objectReference: {fileID: 0} - - target: {fileID: 8820739013514521759, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} - propertyPath: m_LocalPosition.y - value: 1.91 - objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 1c1593c25c3527d46b6a8f4eb5938942, type: 3} --- !u!1001 &3048219450652628524 diff --git a/Assets/Resources/Games/builtToScaleDS.prefab b/Assets/Resources/Games/builtToScaleDS.prefab index 844401fe3..1ce30ea98 100644 --- a/Assets/Resources/Games/builtToScaleDS.prefab +++ b/Assets/Resources/Games/builtToScaleDS.prefab @@ -28,8 +28,8 @@ Transform: m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: - - {fileID: 9192953979162497955} - {fileID: 8319323761679134309} + - {fileID: 794646928585569113} m_Father: {fileID: 3337760827311893485} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -359,7 +359,7 @@ Transform: - {fileID: 842141362349511046} - {fileID: 835389391171181030} m_Father: {fileID: 4631944531018638297} - m_RootOrder: 1 + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &2589862644963098560 GameObject: @@ -402,6 +402,100 @@ Transform: m_Father: {fileID: 1557051792312115487} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2594221142956942938 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 794646928585569113} + - component: {fileID: 8980473610542090131} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &794646928585569113 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2594221142956942938} + m_LocalRotation: {x: 0.8329767, y: -0.2017449, z: -0.1333785, w: 0.4976535} + m_LocalPosition: {x: 0.251, y: 3.843, z: -0.689} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4631944531018638297} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 50.828, y: -137.958, z: -132.076} +--- !u!108 &8980473610542090131 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2594221142956942938} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 1 + m_Shape: 0 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1.1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 0.25 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + 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_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 2 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 2 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 --- !u!1 &3090516112524541089 GameObject: m_ObjectHideFlags: 0 @@ -1464,9 +1558,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: SoundSequences: [] - EligibleHits: [] scheduledInputs: [] - firstEnable: 0 camPos: {fileID: 90712470157425058} cameraFoV: 13 environmentRenderer: {fileID: 3593377758750892331} @@ -1482,102 +1574,16 @@ MonoBehaviour: shooterMaterial: {fileID: 2100000, guid: 97aebf98db2a0bb4a974fbbbbf03fda8, type: 2} objectMaterial: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2} gridPlaneMaterial: {fileID: 2100000, guid: 3df450e97190f504d9ac4f14283b2e0a, type: 2} - elevatorMaterial: {fileID: 0} + elevatorMaterial: {fileID: 2100000, guid: f8523e095c9f2194d8ae47687a42305a, type: 2} + beltMaterial: {fileID: 2100000, guid: eafa15cb3393da547b21d564d4e71546, type: 2} + firstPatternLights: + - {fileID: 2100000, guid: da6d7e38b05966f40b51e566d6b339a8, type: 2} + - {fileID: 2100000, guid: 19e1f16b6cfe97b44abbebd8638abba7, type: 2} + - {fileID: 2100000, guid: 9dd5968860c25854c81d2bab1f5413d6, type: 2} + secondPatternLights: + - {fileID: 2100000, guid: 30ee7eac2a3457f469ba20a22c6dede1, type: 2} + - {fileID: 2100000, guid: bb162603bc9317b4c99d15b50be9b8ff, type: 2} beltSpeed: 4.33 ---- !u!1 &8373923870426321472 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 9192953979162497955} - - component: {fileID: 5275571480854674939} - m_Layer: 0 - m_Name: Light - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &9192953979162497955 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8373923870426321472} - m_LocalRotation: {x: 0.83511287, y: 0.16274606, z: -0.33740744, w: 0.4028107} - m_LocalPosition: {x: 0, y: 5, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 4631944531018638297} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 128.5, y: 44, z: 0} ---- !u!108 &5275571480854674939 -Light: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8373923870426321472} - m_Enabled: 1 - serializedVersion: 10 - m_Type: 1 - m_Shape: 0 - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_Intensity: 1 - m_Range: 10 - m_SpotAngle: 30 - m_InnerSpotAngle: 21.80208 - m_CookieSize: 10 - m_Shadows: - m_Type: 0 - m_Resolution: -1 - m_CustomResolution: -1 - m_Strength: 1 - m_Bias: 0.05 - m_NormalBias: 0.4 - m_NearPlane: 0.2 - m_CullingMatrixOverride: - 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_UseCullingMatrixOverride: 0 - m_Cookie: {fileID: 0} - m_DrawHalo: 0 - m_Flare: {fileID: 0} - m_RenderMode: 0 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_RenderingLayerMask: 1 - m_Lightmapping: 4 - m_LightShadowCasterMode: 0 - m_AreaSize: {x: 1, y: 1} - m_BounceIntensity: 1 - m_ColorTemperature: 6570 - m_UseColorTemperature: 0 - m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} - m_UseBoundingSphereOverride: 0 - m_UseViewFrustumForShadowCasterCull: 1 - m_ShadowRadius: 0 - m_ShadowAngle: 0 --- !u!1 &8451088964468361308 GameObject: m_ObjectHideFlags: 0 @@ -1826,6 +1832,10 @@ PrefabInstance: propertyPath: m_Layer value: 0 objectReference: {fileID: 0} + - target: {fileID: -5864696771290800692, guid: 21a743717f79155429b45d3a0fd77c68, type: 3} + propertyPath: m_LocalPosition.x + value: 138 + objectReference: {fileID: 0} - target: {fileID: -4863704078625465896, guid: 21a743717f79155429b45d3a0fd77c68, type: 3} propertyPath: m_Layer value: 0 @@ -2123,7 +2133,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -947387224812249842, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} propertyPath: m_LocalEulerAnglesHint.y - value: 0.0000036424658 + value: 0.0000033637534 objectReference: {fileID: 0} - target: {fileID: -944302891571569470, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} propertyPath: m_Layer @@ -2137,9 +2147,21 @@ PrefabInstance: propertyPath: m_Layer value: 0 objectReference: {fileID: 0} + - target: {fileID: 364309268697413728, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} + propertyPath: m_LocalPosition.x + value: -0.000000017798401 + objectReference: {fileID: 0} + - target: {fileID: 364309268697413728, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} + propertyPath: m_LocalPosition.y + value: 0.5258911 + objectReference: {fileID: 0} + - target: {fileID: 364309268697413728, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} + propertyPath: m_LocalPosition.z + value: -0.117873535 + objectReference: {fileID: 0} - target: {fileID: 364309268697413728, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} propertyPath: m_LocalEulerAnglesHint.y - value: 0.0000036424663 + value: 0.0000033637539 objectReference: {fileID: 0} - target: {fileID: 919132149155446097, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} propertyPath: m_Name @@ -2203,7 +2225,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} propertyPath: m_LocalEulerAnglesHint.x - value: 7.016709e-15 + value: 1.7452948 objectReference: {fileID: 0} - target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} propertyPath: m_LocalEulerAnglesHint.y @@ -2211,7 +2233,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} propertyPath: m_LocalEulerAnglesHint.z - value: -180 + value: -0.000015258789 objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} @@ -2323,6 +2345,18 @@ PrefabInstance: propertyPath: m_Layer value: 0 objectReference: {fileID: 0} + - target: {fileID: -3631897138051517956, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 1.019213e-22 + objectReference: {fileID: 0} + - target: {fileID: -3631897138051517956, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 1.390904e-12 + objectReference: {fileID: 0} + - target: {fileID: -3631897138051517956, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -2.2417196e-20 + objectReference: {fileID: 0} - target: {fileID: -3203485738917446855, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} propertyPath: m_Layer value: 0 @@ -2330,7 +2364,7 @@ PrefabInstance: - target: {fileID: -1003055794911221338, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} propertyPath: m_Materials.Array.data[0] value: - objectReference: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2} + objectReference: {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2} - target: {fileID: -1003055794911221338, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} propertyPath: m_Materials.Array.data[1] value: @@ -2351,6 +2385,34 @@ PrefabInstance: propertyPath: m_IsActive value: 0 objectReference: {fileID: 0} + - target: {fileID: 2043205891256864238, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -89.98021 + objectReference: {fileID: 0} + - target: {fileID: 3042270054197743208, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -0.000015258788 + objectReference: {fileID: 0} + - target: {fileID: 3042270054197743208, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -179.99998 + objectReference: {fileID: 0} + - target: {fileID: 3042270054197743208, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 4406523010655556583, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -4.0711103e-13 + objectReference: {fileID: 0} + - target: {fileID: 4406523010655556583, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -8.1422206e-13 + objectReference: {fileID: 0} + - target: {fileID: 4406523010655556583, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 3.546283e-20 + objectReference: {fileID: 0} - target: {fileID: 7226848437003788013, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} propertyPath: m_Layer value: 0 @@ -2461,6 +2523,18 @@ PrefabInstance: propertyPath: m_LocalEulerAnglesHint.z value: 0 objectReference: {fileID: 0} + - target: {fileID: -7969190219602097434, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -0.000000091862304 + objectReference: {fileID: 0} + - target: {fileID: -7969190219602097434, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -2.1839556e-16 + objectReference: {fileID: 0} + - target: {fileID: -7969190219602097434, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -5.132258e-14 + objectReference: {fileID: 0} - target: {fileID: -7204237955642933900, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} propertyPath: m_Layer value: 0 @@ -2473,6 +2547,14 @@ PrefabInstance: propertyPath: m_Layer value: 0 objectReference: {fileID: 0} + - target: {fileID: -1869871334352211690, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 89.98021 + objectReference: {fileID: 0} + - target: {fileID: -1869871334352211690, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -0.0000008680054 + objectReference: {fileID: 0} - target: {fileID: -685714951338797429, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} propertyPath: m_Layer value: 0 @@ -2489,6 +2571,10 @@ PrefabInstance: propertyPath: m_IsActive value: 0 objectReference: {fileID: 0} + - target: {fileID: 2728175015023002165, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -89.98021 + objectReference: {fileID: 0} - target: {fileID: 3394299690235127225, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} propertyPath: m_Layer value: 0 @@ -2509,6 +2595,30 @@ PrefabInstance: propertyPath: m_Materials.Array.data[3] value: objectReference: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2} + - target: {fileID: 4798639761827837329, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -0.00000006127327 + objectReference: {fileID: 0} + - target: {fileID: 4798639761827837329, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -4.0691905e-13 + objectReference: {fileID: 0} + - target: {fileID: 4798639761827837329, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -5.9031007e-16 + objectReference: {fileID: 0} + - target: {fileID: 5219957376676899290, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -0.000007851365 + objectReference: {fileID: 0} + - target: {fileID: 5219957376676899290, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0.0000009891345 + objectReference: {fileID: 0} + - target: {fileID: 5219957376676899290, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -45.771156 + objectReference: {fileID: 0} - target: {fileID: 5833730649146179553, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} propertyPath: m_Layer value: 0 @@ -2517,6 +2627,18 @@ PrefabInstance: propertyPath: m_Layer value: 0 objectReference: {fileID: 0} + - target: {fileID: 8667595228939439361, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0.0000042472684 + objectReference: {fileID: 0} + - target: {fileID: 8667595228939439361, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0.0000013062643 + objectReference: {fileID: 0} + - target: {fileID: 8667595228939439361, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -38.218197 + objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} --- !u!4 &5903939180778773926 stripped @@ -2829,10 +2951,14 @@ PrefabInstance: propertyPath: m_Layer value: 0 objectReference: {fileID: 0} + - target: {fileID: 3783149753680359203, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3} + propertyPath: m_Materials.Array.size + value: 2 + objectReference: {fileID: 0} - target: {fileID: 3783149753680359203, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3} propertyPath: m_Materials.Array.data[0] value: - objectReference: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2} + objectReference: {fileID: 2100000, guid: f8523e095c9f2194d8ae47687a42305a, type: 2} - target: {fileID: 3783149753680359203, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3} propertyPath: m_Materials.Array.data[1] value: @@ -2967,14 +3093,62 @@ PrefabInstance: propertyPath: m_IsActive value: 1 objectReference: {fileID: 0} + - target: {fileID: -6725864900740283272, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -89.98021 + objectReference: {fileID: 0} + - target: {fileID: -4582022389678750781, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0.0000009932132 + objectReference: {fileID: 0} + - target: {fileID: -4582022389678750781, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -1.8263537e-20 + objectReference: {fileID: 0} + - target: {fileID: -4582022389678750781, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 7.2141267e-22 + objectReference: {fileID: 0} - target: {fileID: -3487895895819380211, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} propertyPath: m_Layer value: 0 objectReference: {fileID: 0} + - target: {fileID: -2623360714175404741, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 89.98021 + objectReference: {fileID: 0} + - target: {fileID: -2623360714175404741, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -0.0000008680054 + objectReference: {fileID: 0} + - target: {fileID: -2099288412364085233, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -0.0000034150944 + objectReference: {fileID: 0} + - target: {fileID: -2099288412364085233, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -0.00000047354183 + objectReference: {fileID: 0} + - target: {fileID: -2099288412364085233, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0.0000031419652 + objectReference: {fileID: 0} - target: {fileID: -244648530497092133, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} propertyPath: m_Layer value: 0 objectReference: {fileID: 0} + - target: {fileID: 55471896798365850, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -47.373425 + objectReference: {fileID: 0} + - target: {fileID: 55471896798365850, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 25.834826 + objectReference: {fileID: 0} + - target: {fileID: 55471896798365850, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -33.344215 + objectReference: {fileID: 0} - target: {fileID: 308257133709792796, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} propertyPath: m_Layer value: 0 @@ -3015,10 +3189,50 @@ PrefabInstance: propertyPath: m_Materials.Array.data[3] value: objectReference: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2} + - target: {fileID: 4518858451777631492, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2} + - target: {fileID: 6096549794379710491, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -0.000006518555 + objectReference: {fileID: 0} + - target: {fileID: 6096549794379710491, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0.0000008680054 + objectReference: {fileID: 0} + - target: {fileID: 6096549794379710491, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -1.6191626e-15 + objectReference: {fileID: 0} - target: {fileID: 8813323920513627783, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} propertyPath: m_Layer value: 0 objectReference: {fileID: 0} + - target: {fileID: 9156511915099979942, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -0.0000004268868 + objectReference: {fileID: 0} + - target: {fileID: 9156511915099979942, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0.00000066414475 + objectReference: {fileID: 0} + - target: {fileID: 9156511915099979942, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0.0000018876924 + objectReference: {fileID: 0} + - target: {fileID: 9181040827110084542, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: -19.721653 + objectReference: {fileID: 0} + - target: {fileID: 9181040827110084542, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 49.642414 + objectReference: {fileID: 0} + - target: {fileID: 9181040827110084542, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -73.99892 + objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} --- !u!4 &8251119247562495620 stripped diff --git a/Assets/Resources/Games/dogNinja.prefab b/Assets/Resources/Games/dogNinja.prefab index f265f9753..8a38c146a 100644 --- a/Assets/Resources/Games/dogNinja.prefab +++ b/Assets/Resources/Games/dogNinja.prefab @@ -97,17 +97,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 5ac06902fd6630045a550c76211fcc63, type: 3} m_Name: m_EditorClassIdentifier: - inList: 0 - state: - gameObject: {fileID: 119991411479083905} - early: 0 - perfect: 0 - late: 0 - createBeat: 0 - eligibleHitsList: [] - aceTimes: 0 - isEligible: 0 - triggersAutoplay: 1 + game: {fileID: 4542966729274958099} startBeat: 0 type: 0 fromLeft: 0 @@ -115,12 +105,12 @@ MonoBehaviour: direction: 0 sfxNum: curve: {fileID: 0} - barelyCurve: {fileID: 0} + LeftCurve: {fileID: 2592536718110886033} + RightCurve: {fileID: 8538313959133990924} BarelyLeftCurve: {fileID: 5959598018215963193} BarelyRightCurve: {fileID: 4156529297438955755} - HalvesLeftBase: {fileID: 8462363345267808632} - HalvesRightBase: {fileID: 997672822965154321} - ObjectParent: {fileID: 0} + HalvesLeftBase: {fileID: 3507681361263350449} + HalvesRightBase: {fileID: 5646879835731180444} objectLeftHalves: - {fileID: -5050977528292827191, guid: 1c59b9cd0adef0941bc4bd4bde66a759, type: 3} - {fileID: -6734710479057769413, guid: 1c59b9cd0adef0941bc4bd4bde66a759, type: 3} @@ -544,24 +534,13 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 6f3ef60f47c093b45a623a707f33c877, type: 3} m_Name: m_EditorClassIdentifier: - inList: 0 - state: - gameObject: {fileID: 0} - early: 0 - perfect: 0 - late: 0 - createBeat: 0 - eligibleHitsList: [] - aceTimes: 0 - isEligible: 0 - triggersAutoplay: 1 startBeat: 0 objPos: {x: 0, y: 0, z: 0} lefty: 0 rotSpeed: 140 fallLeftCurve: {fileID: 7764367815067799206} fallRightCurve: {fileID: 7122240029612248645} - halvesParent: {fileID: 2078672318315355962} + sr: {fileID: 7206843505938361017} --- !u!1 &1203023033644261752 GameObject: m_ObjectHideFlags: 0 @@ -1292,6 +1271,7 @@ GameObject: serializedVersion: 6 m_Component: - component: {fileID: 9090671386772390765} + - component: {fileID: 7679373660039658227} m_Layer: 0 m_Name: Bird m_TagString: Untagged @@ -1307,15 +1287,65 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2345899427382000280} 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_LocalPosition: {x: -5.1111, y: 4.7888, z: 0} + m_LocalScale: {x: 1.17, y: 1.17, z: 1.17} m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 6141650836764449341} - - {fileID: 3508355828836896233} + m_Children: [] m_Father: {fileID: 6570085815560366024} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7679373660039658227 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2345899427382000280} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 10 + m_Sprite: {fileID: -6878904103022551539, guid: 1c59b9cd0adef0941bc4bd4bde66a759, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 6.69, y: 6.3} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 --- !u!1 &2488711815545919274 GameObject: m_ObjectHideFlags: 0 @@ -1669,45 +1699,38 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: SoundSequences: - - name: hereWeGo + - name: here_we_go sequence: game: 1 - force: 0 + force: 1 clips: - - clip: here + - clip: dogNinja/here beat: 0 pitch: 0 volume: 0 looping: 0 offset: 0 parameters: [] - - clip: we + - clip: dogNinja/we beat: 0.5 pitch: 0 volume: 0 looping: 0 offset: 0 parameters: [] - - clip: go + - clip: dogNinja/go beat: 1 pitch: 0 volume: 0 looping: 0 offset: 0 parameters: [] - EligibleHits: [] scheduledInputs: [] - firstEnable: 0 DogAnim: {fileID: 1770250701376598399} BirdAnim: {fileID: 4964290445827434540} - ObjectBase: {fileID: 119991411479083905} - FullBird: {fileID: 3439822116337821266} + ObjectBase: {fileID: 4494871422713187218} WhichObject: {fileID: 1780506401517458247} - WhichLeftHalf: {fileID: 8550182553065708291} - WhichRightHalf: {fileID: 7206843505938361017} - cutEverythingText: {fileID: 8405214087581042494} - CurveFromLeft: {fileID: 2592536718110886033} - CurveFromRight: {fileID: 8538313959133990924} + CutEverythingText: {fileID: 8405214087581042494} ObjectTypes: - {fileID: 0} - {fileID: -2307065246004786754, guid: 1c59b9cd0adef0941bc4bd4bde66a759, type: 3} @@ -1728,6 +1751,8 @@ MonoBehaviour: - {fileID: 2196219148037962045, guid: 4e56f90ec52abea4ea8c4c7bb6df84d5, type: 3} - {fileID: -6292424158522327523, guid: 4e56f90ec52abea4ea8c4c7bb6df84d5, type: 3} - {fileID: 2053246660185171032, guid: 4e56f90ec52abea4ea8c4c7bb6df84d5, type: 3} + queuePrepare: 0 + preparing: 0 --- !u!1 &3156757135167865752 GameObject: m_ObjectHideFlags: 0 @@ -1888,7 +1913,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 0 + m_IsActive: 1 --- !u!4 &6570085815560366024 Transform: m_ObjectHideFlags: 0 @@ -1897,7 +1922,7 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 3439822116337821266} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalPosition: {x: 0, y: 69, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: @@ -4165,108 +4190,13 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 6f3ef60f47c093b45a623a707f33c877, type: 3} m_Name: m_EditorClassIdentifier: - inList: 0 - state: - gameObject: {fileID: 0} - early: 0 - perfect: 0 - late: 0 - createBeat: 0 - eligibleHitsList: [] - aceTimes: 0 - isEligible: 0 - triggersAutoplay: 1 startBeat: 0 objPos: {x: 0, y: 0, z: 0} lefty: 1 rotSpeed: -140 fallLeftCurve: {fileID: 7191847337805905266} fallRightCurve: {fileID: 5028931464679965393} - halvesParent: {fileID: 2078672318315355962} ---- !u!1 &8597163618617364548 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3508355828836896233} - - component: {fileID: 5092057247171099703} - m_Layer: 0 - m_Name: Bird1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3508355828836896233 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8597163618617364548} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -5.1111, y: 4.7888, z: 0} - m_LocalScale: {x: 1.17, y: 1.17, z: 1.17} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 9090671386772390765} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &5092057247171099703 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8597163618617364548} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 10 - m_Sprite: {fileID: -6837453462447269357, guid: 1c59b9cd0adef0941bc4bd4bde66a759, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 6.69, y: 6.3} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 + sr: {fileID: 8550182553065708291} --- !u!1 &8691542995859896262 GameObject: m_ObjectHideFlags: 0 @@ -4455,90 +4385,6 @@ MonoBehaviour: handleType: 0 leftHandleLocalPosition: {x: 2.6498117, y: 0.019104965, z: 0} rightHandleLocalPosition: {x: -2.6498117, y: -0.019104965, z: -0} ---- !u!1 &9014789612631171718 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6141650836764449341} - - component: {fileID: 4708541773062853748} - m_Layer: 0 - m_Name: Bird2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6141650836764449341 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9014789612631171718} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -5.1111, y: 4.7888, z: 0} - m_LocalScale: {x: 1.17, y: 1.17, z: 1.17} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 9090671386772390765} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &4708541773062853748 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9014789612631171718} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 10 - m_Sprite: {fileID: -6878904103022551539, guid: 1c59b9cd0adef0941bc4bd4bde66a759, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 6.69, y: 6.3} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 --- !u!1 &9069277017458690841 GameObject: m_ObjectHideFlags: 0 @@ -4730,15 +4576,17 @@ MonoBehaviour: m_lineSpacingMax: 0 m_paragraphSpacing: 0 m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 + m_TextWrappingMode: 1 m_wordWrappingRatios: 0.4 m_overflowMode: 0 m_linkedTextComponent: {fileID: 0} parentLinkedComponent: {fileID: 0} m_enableKerning: 1 + m_ActiveFontFeatures: 6e72656b m_enableExtraPadding: 0 checkPaddingRequired: 0 m_isRichText: 1 + m_EmojiFallbackSupport: 1 m_parseCtrlCharacters: 1 m_isOrthographic: 0 m_isCullingEnabled: 0 diff --git a/Assets/Resources/Games/freezeFrame.prefab b/Assets/Resources/Games/freezeFrame.prefab new file mode 100644 index 000000000..0fca8dbb3 --- /dev/null +++ b/Assets/Resources/Games/freezeFrame.prefab @@ -0,0 +1,4642 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &13480209877519584 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4457344208359885021} + - component: {fileID: 8907569076361826622} + m_Layer: 0 + m_Name: CrowdLeft1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4457344208359885021 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 13480209877519584} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -1.2549, y: 0.24000001, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8935655604652975893} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8907569076361826622 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 13480209877519584} + m_Enabled: 0 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 195559496, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 1 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.15, y: 0.78} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &129123263258282206 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8988391328266269649} + - component: {fileID: 3263218144907836310} + m_Layer: 0 + m_Name: NearCarSpawn + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8988391328266269649 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 129123263258282206} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -4.154, y: -0.7992, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4081947959393927734} + m_Father: {fileID: 6386940571783240861} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!210 &3263218144907836310 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 129123263258282206} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 15 +--- !u!1 &242158280295395108 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 521531893964354563} + - component: {fileID: 8068415642287592339} + m_Layer: 0 + m_Name: IntroLights + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &521531893964354563 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 242158280295395108} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.022701263, y: -1.4884001, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1526928188766612865} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8068415642287592339 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 242158280295395108} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 656717597, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.75, y: 1.11} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &282728546564802310 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7463900639265258934} + - component: {fileID: 7105463539155723667} + m_Layer: 0 + m_Name: CameraManBox + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7463900639265258934 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 282728546564802310} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.055999756, y: -0.0059999973, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2178984478846197068} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7105463539155723667 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 282728546564802310} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: -2109308074, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.11, y: 1.11} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &430298957038504787 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4819073297766695559} + - component: {fileID: 8905933292560264663} + m_Layer: 0 + m_Name: Crosshair + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4819073297766695559 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 430298957038504787} + 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: 942164475091835567} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8905933292560264663 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 430298957038504787} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 2 + m_Sprite: {fileID: -1979073095, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.47, y: 0.47} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &563347670780648430 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3014753989501719204} + - component: {fileID: 1021873884812913769} + m_Layer: 0 + m_Name: Mask + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3014753989501719204 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 563347670780648430} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 7, y: 7, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2867792699060761294} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!331 &1021873884812913769 +SpriteMask: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 563347670780648430} + 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: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10758, guid: 0000000000000000f000000000000000, type: 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 + m_Sprite: {fileID: 7482667652216324306, guid: ef2fa2a75dc283e40b9d4fe1f20dc6fb, type: 3} + m_MaskAlphaCutoff: 0.2 + m_FrontSortingLayerID: 0 + m_BackSortingLayerID: 0 + m_FrontSortingLayer: 0 + m_BackSortingLayer: 0 + m_FrontSortingOrder: 0 + m_BackSortingOrder: 0 + m_IsCustomRangeActive: 0 + m_SpriteSortPoint: 0 +--- !u!1 &1705911682783808342 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8740949623345519868} + - component: {fileID: 12040450027172817} + m_Layer: 0 + m_Name: ThumbsDown + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &8740949623345519868 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1705911682783808342} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -1.2799988, y: 0.25300002, z: 0} + m_LocalScale: {x: 0.7481596, y: 0.7481596, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 124577241450515788} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &12040450027172817 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1705911682783808342} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -121672256, guid: 85ac1aa20afc71449aeb86caa7cd43a3, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.92, y: 1.92} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &1719810215401430395 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2503171951136057177} + - component: {fileID: 8608735403942770796} + m_Layer: 0 + m_Name: CrowdLeft2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2503171951136057177 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1719810215401430395} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -2.0501997, y: 0.24000001, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8935655604652975893} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8608735403942770796 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1719810215401430395} + m_Enabled: 0 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 1911284742, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 1 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.22, y: 0.78} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &1725178932715753335 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 113885895132791906} + - component: {fileID: 6609010637366901022} + m_Layer: 0 + m_Name: Fill + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &113885895132791906 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1725178932715753335} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28.4476, y: 28.31763, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2867792699060761294} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &6609010637366901022 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1725178932715753335} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: -974970060, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.19, y: 0.19} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 2 + m_SpriteSortPoint: 0 +--- !u!1 &2339258793516237663 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 288538381066341845} + - component: {fileID: 7952856357242108503} + m_Layer: 0 + m_Name: CameraFlash + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &288538381066341845 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2339258793516237663} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.13, y: -0.04, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2178984478846197068} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7952856357242108503 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2339258793516237663} + m_Enabled: 0 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 30 + m_Sprite: {fileID: 1536648942, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.39, y: 0.39} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &2412312412886421685 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5748557686448435121} + m_Layer: 0 + m_Name: Photos + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5748557686448435121 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2412312412886421685} + 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: 8941123681116837132} + - {fileID: 8969506421832096707} + - {fileID: 8894655211737985771} + - {fileID: 7087926668563711825} + - {fileID: 3049071692386412401} + - {fileID: 8261302870812890760} + m_Father: {fileID: 5075697845134623456} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2491232084451456730 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8809265513560845344} + - component: {fileID: 1464395107307215329} + m_Layer: 0 + m_Name: ThumbsSide + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &8809265513560845344 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2491232084451456730} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -1.1210003, y: 0.45200008, z: 0} + m_LocalScale: {x: 0.7481596, y: 0.7481596, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 124577241450515788} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1464395107307215329 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2491232084451456730} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -1837687530, guid: 85ac1aa20afc71449aeb86caa7cd43a3, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 2, y: 1.92} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &2583222666066298307 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 624538055433141821} + - component: {fileID: 496982983663390433} + m_Layer: 0 + m_Name: Batsu + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &624538055433141821 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2583222666066298307} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.006000519, y: -0.0059999973, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5574428789769551378} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &496982983663390433 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2583222666066298307} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 782137592, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.91, y: 1.91} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &2820577870717311429 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1937447601545966762} + - component: {fileID: 5644107873904221238} + m_Layer: 0 + m_Name: Billboards + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1937447601545966762 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2820577870717311429} + 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: 8917240060794522086} + - {fileID: 2682641345646511489} + m_Father: {fileID: 6386940571783240861} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!210 &5644107873904221238 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2820577870717311429} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 6 +--- !u!1 &2828486947789763505 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2867792699060761294} + - component: {fileID: 2007610467457146309} + - component: {fileID: 3012127615110314241} + m_Layer: 0 + m_Name: Shutter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2867792699060761294 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2828486947789763505} + 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: 113885895132791906} + - {fileID: 3014753989501719204} + m_Father: {fileID: 5075697845134623456} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &2007610467457146309 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2828486947789763505} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 0fe33399f7aef9e4081d9fbe91fa0dc1, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!210 &3012127615110314241 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2828486947789763505} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -1 +--- !u!1 &2991779980310244205 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2504743698331136487} + - component: {fileID: 8567634574885427442} + m_Layer: 0 + m_Name: Grass + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2504743698331136487 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2991779980310244205} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0040016174, y: -0.033, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7810898820791750162} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8567634574885427442 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2991779980310244205} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 5 + m_Sprite: {fileID: 1165356311, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 4.47, y: 0.71} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &3058268075542221001 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1526928188766612865} + - component: {fileID: 2562669983466301606} + - component: {fileID: 6236964783844886020} + - component: {fileID: 2000552876576705434} + m_Layer: 0 + m_Name: IntroSign + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1526928188766612865 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3058268075542221001} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.01599884, y: -3.27, z: 0} + m_LocalScale: {x: 1.01, y: 1.01, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 521531893964354563} + m_Father: {fileID: 6386940571783240861} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &2562669983466301606 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3058268075542221001} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 321067060, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 4.47, y: 4.15} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!210 &6236964783844886020 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3058268075542221001} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 20 +--- !u!95 &2000552876576705434 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3058268075542221001} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 9726e5407b6fc2e44ad0bd615f8adcf3, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &3100193094915817927 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7995071989631868365} + - component: {fileID: 9005668291590927481} + m_Layer: 0 + m_Name: CloudLarge3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7995071989631868365 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3100193094915817927} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 1.9720001, y: 1.0146, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2118820179236867170} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &9005668291590927481 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3100193094915817927} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -5 + m_Sprite: {fileID: -1482192636, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.94, y: 0.63} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &3107282551572751970 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2496501863425691099} + - component: {fileID: 5541721068685180611} + m_Layer: 0 + m_Name: freezeFrame + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2496501863425691099 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3107282551572751970} + 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: 6386940571783240861} + - {fileID: 7317861912236617668} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &5541721068685180611 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3107282551572751970} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 45e462f2ab1f95f479bd65404910cbb4, type: 3} + m_Name: + m_EditorClassIdentifier: + SoundSequences: [] + scheduledInputs: [] + CameraMan: {fileID: 7779439029299122055} + Photographs: + - {fileID: 1110570573985526351} + - {fileID: 1082794658528427136} + - {fileID: 580088428761044392} + - {fileID: 1234431945055133714} + - {fileID: 6425704405185708082} + - {fileID: 133632035877188043} + Photograph1: {fileID: 1110570573985526351} + Photograph2: {fileID: 1082794658528427136} + Photograph3: {fileID: 580088428761044392} + Results: {fileID: 4555122272015214930} + IntroSign: {fileID: 2000552876576705434} + Overlay: {fileID: 3606395399065485749} + Crosshair: {fileID: 430298957038504787} + Shutter: {fileID: 2007610467457146309} + DimRect: {fileID: 7781305826881837383} + StickyLayer: {fileID: 160569071225203997} + FarCarSpawn: {fileID: 8245320964870806743} + FarCarPrefab: {fileID: 2075028642364583115, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + NearCarSpawn: {fileID: 8988391328266269649} + NearCarPrefab: {fileID: 9201264650996470607, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + WalkerSpawn: {fileID: 8412325503887380808} + WalkerPrefab: {fileID: 1328053298846351541, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + Crowd: {fileID: 1853177351793662963} + CrowdFarLeft: {fileID: 8608735403942770796} + CrowdLeft: {fileID: 8907569076361826622} + CrowdRight: {fileID: 8505150135402833821} + CrowdFarRight: {fileID: 338498887141336203} + CrowdSprites: + - {fileID: 2029395457, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 195559496, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 1911284742, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -1284001560, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + Billboards: {fileID: 2820577870717311429} +--- !u!1 &3413838453500902853 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2118820179236867170} + m_Layer: 0 + m_Name: Clouds + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2118820179236867170 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3413838453500902853} + 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: 6741389329321809387} + - {fileID: 4622893396926190104} + - {fileID: 7995071989631868365} + - {fileID: 1936285650263768593} + - {fileID: 2327956467991165752} + m_Father: {fileID: 7810898820791750162} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3606395399065485749 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 942164475091835567} + m_Layer: 0 + m_Name: LensOverlay + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &942164475091835567 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3606395399065485749} + 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: 7243058853324013427} + - {fileID: 4819073297766695559} + m_Father: {fileID: 5075697845134623456} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3812301929414566309 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7915501572399954734} + - component: {fileID: 4555122272015214930} + - component: {fileID: 7862158408221922823} + m_Layer: 0 + m_Name: Results + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7915501572399954734 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3812301929414566309} + 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: 124577241450515788} + - {fileID: 5574428789769551378} + m_Father: {fileID: 5075697845134623456} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &4555122272015214930 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3812301929414566309} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: e0f2568bfdac1194dbd4108bd8a0a494, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!210 &7862158408221922823 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3812301929414566309} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 10 +--- !u!1 &3898659964125122610 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2682641345646511489} + - component: {fileID: 6009982263431533528} + m_Layer: 0 + m_Name: Board02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2682641345646511489 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3898659964125122610} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -1.45, y: 0.32, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1937447601545966762} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &6009982263431533528 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3898659964125122610} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 233320279, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.51, y: 1.35} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &3920722750310932672 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2700544976256380134} + - component: {fileID: 8505150135402833821} + m_Layer: 0 + m_Name: CrowdRight1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2700544976256380134 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3920722750310932672} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 1.2509995, y: 0.24000001, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8935655604652975893} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8505150135402833821 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3920722750310932672} + m_Enabled: 0 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 2029395457, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.22, y: 0.78} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &3924008982633951575 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8245320964870806743} + - component: {fileID: 9209995620758958603} + m_Layer: 0 + m_Name: FarCarSpawn + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8245320964870806743 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3924008982633951575} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 2.417, y: 0.22900002, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1744863049105100390} + m_Father: {fileID: 7810898820791750162} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!210 &9209995620758958603 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3924008982633951575} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 4 +--- !u!1 &4179075985246305488 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2800026646159535503} + - component: {fileID: 338498887141336203} + m_Layer: 0 + m_Name: CrowdRight2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2800026646159535503 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4179075985246305488} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 2.049, y: 0.24000001, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8935655604652975893} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &338498887141336203 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4179075985246305488} + m_Enabled: 0 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 1911284742, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.22, y: 0.78} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &4599310548451039337 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1775672442971507474} + - component: {fileID: 5749778448893176393} + m_Layer: 0 + m_Name: Sky + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1775672442971507474 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4599310548451039337} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0030021667, y: 0.80399996, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7810898820791750162} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &5749778448893176393 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4599310548451039337} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -10 + m_Sprite: {fileID: 34256148, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 4.47, y: 1.11} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5068255801319668665 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5959285487193447150} + - component: {fileID: 5012518638479791452} + m_Layer: 0 + m_Name: ThumbsUp + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &5959285487193447150 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5068255801319668665} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -1.2880003, y: 0.211, z: 0} + m_LocalScale: {x: 0.74815965, y: 0.74815965, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 124577241450515788} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &5012518638479791452 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5068255801319668665} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: -447564954, guid: 85ac1aa20afc71449aeb86caa7cd43a3, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.9, y: 1.92} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5153082200745958328 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9150337121030862983} + - component: {fileID: 6207448978040446098} + m_Layer: 0 + m_Name: CrowdMiddle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9150337121030862983 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5153082200745958328} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.026901245, y: 0.21490002, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8935655604652975893} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &6207448978040446098 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5153082200745958328} + m_Enabled: 0 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: -1715518271, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 2.07, y: 0.63} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5335604678014268086 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4289704079311310754} + - component: {fileID: 5438807700583852882} + m_Layer: 0 + m_Name: CameraManArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4289704079311310754 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5335604678014268086} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.04019928, y: 0.1049, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2178984478846197068} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &5438807700583852882 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5335604678014268086} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 20 + m_Sprite: {fileID: 514287739, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.88, y: 0.71} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5517220166804582313 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2327956467991165752} + - component: {fileID: 1382304184973321470} + m_Layer: 0 + m_Name: CloudSmall2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2327956467991165752 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5517220166804582313} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.72999966, y: 0.9150001, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2118820179236867170} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1382304184973321470 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5517220166804582313} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -5 + m_Sprite: {fileID: -56352506, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.7, y: 0.47} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5637163542029902378 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5574428789769551378} + m_Layer: 0 + m_Name: Symbols + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5574428789769551378 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5637163542029902378} + 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: 6053654335242885600} + - {fileID: 624538055433141821} + - {fileID: 7270263952416939904} + m_Father: {fileID: 7915501572399954734} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5769040243679021970 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6741389329321809387} + - component: {fileID: 543744575157676279} + m_Layer: 0 + m_Name: CloudLarge1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6741389329321809387 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5769040243679021970} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -1.552, y: 1.064, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2118820179236867170} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &543744575157676279 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5769040243679021970} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -5 + m_Sprite: {fileID: -1482192636, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.94, y: 0.63} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5819949547242327752 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6386940571783240861} + m_Layer: 0 + m_Name: Main + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6386940571783240861 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5819949547242327752} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 4.175, y: 4.175, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7810898820791750162} + - {fileID: 8935655604652975893} + - {fileID: 1937447601545966762} + - {fileID: 1526928188766612865} + - {fileID: 8988391328266269649} + - {fileID: 8412325503887380808} + m_Father: {fileID: 2496501863425691099} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5907397506796319154 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7270263952416939904} + - component: {fileID: 1731266601606201758} + m_Layer: 0 + m_Name: Sankaku + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &7270263952416939904 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5907397506796319154} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.006000519, y: -0.009, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5574428789769551378} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1731266601606201758 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5907397506796319154} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 180920831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.99, y: 1.91} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5962956600892343430 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4622893396926190104} + - component: {fileID: 8193358799956325551} + m_Layer: 0 + m_Name: CloudLarge2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4622893396926190104 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5962956600892343430} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.3600006, y: 0.824, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2118820179236867170} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8193358799956325551 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5962956600892343430} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -5 + m_Sprite: {fileID: -1482192636, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.94, y: 0.63} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &6206559118588095651 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6053654335242885600} + - component: {fileID: 1317237840967168137} + m_Layer: 0 + m_Name: Maru + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &6053654335242885600 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6206559118588095651} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0013008118, y: -0.0040000007, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5574428789769551378} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1317237840967168137 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6206559118588095651} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -647017332, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.9, y: 1.91} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &6232735316188413728 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3078705427965341069} + - component: {fileID: 5178160916649814543} + m_Layer: 0 + m_Name: TrackNear + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3078705427965341069 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6232735316188413728} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0009994508, y: -0.755, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7810898820791750162} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &5178160916649814543 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6232735316188413728} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 10 + m_Sprite: {fileID: 1080376568, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 4.46, y: 1.19} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &6244010250765788642 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8935655604652975893} + - component: {fileID: 4711448498436929905} + - component: {fileID: 1853177351793662963} + m_Layer: 0 + m_Name: Crowd + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8935655604652975893 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6244010250765788642} + 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: 9150337121030862983} + - {fileID: 2700544976256380134} + - {fileID: 2800026646159535503} + - {fileID: 4457344208359885021} + - {fileID: 2503171951136057177} + m_Father: {fileID: 6386940571783240861} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!210 &4711448498436929905 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6244010250765788642} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 5 +--- !u!95 &1853177351793662963 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6244010250765788642} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 96457d000e5156540ae2c34a7abbcb00, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &6482653240107112613 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 950790536312684235} + - component: {fileID: 7870247780246964762} + m_Layer: 0 + m_Name: CameraManLegs + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &950790536312684235 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6482653240107112613} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.15520096, y: -0.2755, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2178984478846197068} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7870247780246964762 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6482653240107112613} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 4 + m_Sprite: {fileID: -2070367421, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.63} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &6583513999733809257 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7243058853324013427} + - component: {fileID: 7418632667048317189} + m_Layer: 0 + m_Name: Lens + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7243058853324013427 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6583513999733809257} + 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: 942164475091835567} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7418632667048317189 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6583513999733809257} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -631038606, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 4.32, y: 2.71} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &6666108529186972535 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7810898820791750162} + - component: {fileID: 2326478920860455907} + m_Layer: 0 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7810898820791750162 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6666108529186972535} + 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: 1775672442971507474} + - {fileID: 4275115637416939976} + - {fileID: 2504743698331136487} + - {fileID: 3078705427965341069} + - {fileID: 2118820179236867170} + - {fileID: 8245320964870806743} + m_Father: {fileID: 6386940571783240861} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!210 &2326478920860455907 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6666108529186972535} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -1 +--- !u!1 &7235611812270185101 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7066131896045607248} + - component: {fileID: 5472400105166572903} + m_Layer: 0 + m_Name: CameraManHead + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7066131896045607248 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7235611812270185101} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.1350021, y: 0.0949, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2178984478846197068} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &5472400105166572903 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7235611812270185101} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 10 + m_Sprite: {fileID: -1242169489, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.63} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &7316050621034248111 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1936285650263768593} + - component: {fileID: 7268450594637103797} + m_Layer: 0 + m_Name: CloudSmall1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1936285650263768593 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7316050621034248111} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 1.2304994, y: 1.1140001, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2118820179236867170} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7268450594637103797 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7316050621034248111} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -5 + m_Sprite: {fileID: -56352506, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.7, y: 0.47} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &7337181884846518664 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2178984478846197068} + - component: {fileID: 7779439029299122055} + - component: {fileID: 2958261148838618890} + m_Layer: 0 + m_Name: CameraMan + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2178984478846197068 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7337181884846518664} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 1.602, y: -0.72646713, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7463900639265258934} + - {fileID: 7066131896045607248} + - {fileID: 4289704079311310754} + - {fileID: 8896716166786106000} + - {fileID: 950790536312684235} + - {fileID: 288538381066341845} + m_Father: {fileID: 5075697845134623456} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &7779439029299122055 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7337181884846518664} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 6f99a0016bae01145b48ad10c0b4c989, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!210 &2958261148838618890 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7337181884846518664} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 5 +--- !u!1 &7368814096352629112 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7317861912236617668} + - component: {fileID: 160569071225203997} + m_Layer: 0 + m_Name: HUD + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7317861912236617668 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7368814096352629112} + 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: 5075697845134623456} + m_Father: {fileID: 2496501863425691099} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &160569071225203997 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7368814096352629112} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2430b0a2323860c41973e7787c3ba3f5, type: 3} + m_Name: + m_EditorClassIdentifier: + Sticky: 1 + CameraOffset: 10 +--- !u!1 &7697718562928945111 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8412325503887380808} + - component: {fileID: 2332327198711072870} + m_Layer: 0 + m_Name: WalkerSpawn + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8412325503887380808 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7697718562928945111} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 3.307, y: -0.0004, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8877804933773721013} + m_Father: {fileID: 6386940571783240861} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!210 &2332327198711072870 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7697718562928945111} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 19 +--- !u!1 &7781305826881837383 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7803579224751788501} + - component: {fileID: 2687266070878099199} + m_Layer: 0 + m_Name: DimRect + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &7803579224751788501 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7781305826881837383} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0002, y: -0.0246, z: 0} + m_LocalScale: {x: 4.4924, y: 2.6532, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5075697845134623456} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &2687266070878099199 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7781305826881837383} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -10 + m_Sprite: {fileID: 7482667652216324306, guid: ef2fa2a75dc283e40b9d4fe1f20dc6fb, type: 3} + m_Color: {r: 0, g: 0, b: 0, a: 0.5019608} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &8189872221506100170 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5075697845134623456} + - component: {fileID: 3745130951095273336} + - component: {fileID: 3664060779867015130} + - component: {fileID: 3371387319702832257} + m_Layer: 0 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5075697845134623456 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8189872221506100170} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 4.175, y: 4.175, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7915501572399954734} + - {fileID: 942164475091835567} + - {fileID: 2178984478846197068} + - {fileID: 5748557686448435121} + - {fileID: 2867792699060761294} + - {fileID: 7803579224751788501} + m_Father: {fileID: 7317861912236617668} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 18, y: 10.799999} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!223 &3745130951095273336 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8189872221506100170} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 25 + m_SortingLayerID: 0 + m_SortingOrder: 100 + m_TargetDisplay: 0 +--- !u!114 &3664060779867015130 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8189872221506100170} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!210 &3371387319702832257 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8189872221506100170} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 50 +--- !u!1 &8224454848829925126 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8896716166786106000} + - component: {fileID: 8041779487488323124} + m_Layer: 0 + m_Name: CameraManTorso + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8896716166786106000 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8224454848829925126} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.2649002, y: -0.0348, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2178984478846197068} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8041779487488323124 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8224454848829925126} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 5 + m_Sprite: {fileID: 1482626733, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.47, y: 0.71} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &8387327731480066405 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 124577241450515788} + m_Layer: 0 + m_Name: Thumbs + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &124577241450515788 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8387327731480066405} + 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: 5959285487193447150} + - {fileID: 8740949623345519868} + - {fileID: 8809265513560845344} + m_Father: {fileID: 7915501572399954734} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8740401004184249537 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8917240060794522086} + - component: {fileID: 6988783482346958334} + m_Layer: 0 + m_Name: Board01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8917240060794522086 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8740401004184249537} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 1.45, y: 0.32, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1937447601545966762} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &6988783482346958334 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8740401004184249537} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 811814910, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.51, y: 1.35} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &9149096239067950710 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4275115637416939976} + - component: {fileID: 3730707371329755334} + m_Layer: 0 + m_Name: TrackFar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4275115637416939976 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9149096239067950710} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.004299164, y: 0.272, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7810898820791750162} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3730707371329755334 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9149096239067950710} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 1911583261, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 4.47, y: 0.39} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1001 &8244657318298534 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5748557686448435121} + m_Modifications: + - target: {fileID: 2320061434944716667, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_Name + value: Photograph3 + objectReference: {fileID: 0} + - target: {fileID: 6045409898540892531, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8870642042190759657, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_SortingOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.x + value: 1.3971 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.y + value: 0.3496 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.w + value: 0.9961947 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.z + value: 0.08715578 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 10 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} +--- !u!114 &580088428761044392 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 581431794165700110, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + m_PrefabInstance: {fileID: 8244657318298534} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6e32d9c0a4600404e87df2a5807e2d62, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &8894655211737985771 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + m_PrefabInstance: {fileID: 8244657318298534} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &511005878768085646 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5748557686448435121} + m_Modifications: + - target: {fileID: 2320061434944716667, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_Name + value: Photograph2 + objectReference: {fileID: 0} + - target: {fileID: 6045409898540892531, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8870642042190759657, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_SortingOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.x + value: -1.1979 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.y + value: -0.2992 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.w + value: 0.9990483 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.z + value: 0.043619405 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 5 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} +--- !u!114 &1082794658528427136 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 581431794165700110, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + m_PrefabInstance: {fileID: 511005878768085646} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6e32d9c0a4600404e87df2a5807e2d62, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &8969506421832096707 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + m_PrefabInstance: {fileID: 511005878768085646} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &538218842123789377 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5748557686448435121} + m_Modifications: + - target: {fileID: 884331472161643951, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_SortingOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 2320061434944716667, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_Name + value: Photograph1 + objectReference: {fileID: 0} + - target: {fileID: 6045409898540892531, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7499617330364883273, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8870642042190759657, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_SortingOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.w + value: 0.9990483 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.z + value: -0.043619405 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -5 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} +--- !u!114 &1110570573985526351 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 581431794165700110, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + m_PrefabInstance: {fileID: 538218842123789377} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6e32d9c0a4600404e87df2a5807e2d62, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &8941123681116837132 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + m_PrefabInstance: {fileID: 538218842123789377} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &705772674391943109 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5748557686448435121} + m_Modifications: + - target: {fileID: 2320061434944716667, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_Name + value: Photograph6 + objectReference: {fileID: 0} + - target: {fileID: 6045409898540892531, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7499617330364883273, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8870642042190759657, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_SortingOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.x + value: 0.292 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.y + value: -0.895 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.w + value: 0.9961947 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.z + value: -0.08715578 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -10 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} +--- !u!114 &133632035877188043 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 581431794165700110, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + m_PrefabInstance: {fileID: 705772674391943109} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6e32d9c0a4600404e87df2a5807e2d62, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &8261302870812890760 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + m_PrefabInstance: {fileID: 705772674391943109} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1671744996873737122 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8412325503887380808} + m_Modifications: + - target: {fileID: 1328053298846351541, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + propertyPath: m_Name + value: Walker + objectReference: {fileID: 0} + - target: {fileID: 1328053298846351541, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6944636835018804305, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7784322127376215575, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7784322127376215575, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7784322127376215575, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7784322127376215575, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7784322127376215575, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7784322127376215575, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7784322127376215575, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7784322127376215575, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7784322127376215575, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7784322127376215575, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7784322127376215575, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} +--- !u!4 &8877804933773721013 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7784322127376215575, guid: 2ed65f53577660448ba4f8b0fde49438, type: 3} + m_PrefabInstance: {fileID: 1671744996873737122} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1815017113110885916 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5748557686448435121} + m_Modifications: + - target: {fileID: 2320061434944716667, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_Name + value: Photograph4 + objectReference: {fileID: 0} + - target: {fileID: 6045409898540892531, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7499617330364883273, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8870642042190759657, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_SortingOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.y + value: 0.524 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.w + value: 0.9961947 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.z + value: -0.08715578 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -10 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} +--- !u!114 &1234431945055133714 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 581431794165700110, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + m_PrefabInstance: {fileID: 1815017113110885916} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6e32d9c0a4600404e87df2a5807e2d62, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &7087926668563711825 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + m_PrefabInstance: {fileID: 1815017113110885916} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5853862846720153148 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5748557686448435121} + m_Modifications: + - target: {fileID: 2320061434944716667, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_Name + value: Photograph5 + objectReference: {fileID: 0} + - target: {fileID: 6045409898540892531, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7499617330364883273, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8870642042190759657, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_SortingOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.x + value: 0.298 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.y + value: 0.855 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.w + value: 0.9961947 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalRotation.z + value: 0.08715578 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 10 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} +--- !u!4 &3049071692386412401 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8893874458938880333, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + m_PrefabInstance: {fileID: 5853862846720153148} + m_PrefabAsset: {fileID: 0} +--- !u!114 &6425704405185708082 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 581431794165700110, guid: ded39dfb8985a1b46bd392c1bf7cd667, type: 3} + m_PrefabInstance: {fileID: 5853862846720153148} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6e32d9c0a4600404e87df2a5807e2d62, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1001 &7839151042763646741 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8988391328266269649} + m_Modifications: + - target: {fileID: 6084288726060573987, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6084288726060573987, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6084288726060573987, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6084288726060573987, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6084288726060573987, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6084288726060573987, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6084288726060573987, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6084288726060573987, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6084288726060573987, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6084288726060573987, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6084288726060573987, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9201264650996470607, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + propertyPath: m_Name + value: NearCar + objectReference: {fileID: 0} + - target: {fileID: 9201264650996470607, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} +--- !u!4 &4081947959393927734 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6084288726060573987, guid: 896c419b7cd23ee4da5472c50a3ecc36, type: 3} + m_PrefabInstance: {fileID: 7839151042763646741} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8669962430966463370 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8245320964870806743} + m_Modifications: + - target: {fileID: 2075028642364583115, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_Name + value: FarCar + objectReference: {fileID: 0} + - target: {fileID: 2075028642364583115, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2474116073957625541, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: SubModule.enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3936155148052734441, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5580641685281620075, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6946551013102958060, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6946551013102958060, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6946551013102958060, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6946551013102958060, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6946551013102958060, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6946551013102958060, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6946551013102958060, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6946551013102958060, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6946551013102958060, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6946551013102958060, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6946551013102958060, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8785100233753835939, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + propertyPath: m_Enabled + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} +--- !u!4 &1744863049105100390 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6946551013102958060, guid: 4a2f3e693b7572442b1c884bab276bc4, type: 3} + m_PrefabInstance: {fileID: 8669962430966463370} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/Resources/Games/freezeFrame.prefab.meta b/Assets/Resources/Games/freezeFrame.prefab.meta new file mode 100644 index 000000000..f7e4b0494 --- /dev/null +++ b/Assets/Resources/Games/freezeFrame.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2fa53bdd67c2486419278d6d2d1c3b47 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: ntrfreezeframe/common + assetBundleVariant: diff --git a/Assets/Resources/Games/powerCalligraphy.prefab b/Assets/Resources/Games/powerCalligraphy.prefab index 3e22eb180..05be47235 100644 --- a/Assets/Resources/Games/powerCalligraphy.prefab +++ b/Assets/Resources/Games/powerCalligraphy.prefab @@ -1,341 +1,5 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: ---- !u!1 &21196765463215582 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7808201683492369668} - - component: {fileID: 7298317632605550797} - m_Layer: 0 - m_Name: line10-1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7808201683492369668 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 21196765463215582} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.25, y: -3.3, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 8292317720239422396} - m_RootOrder: 10 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &7298317632605550797 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 21196765463215582} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 2 - m_Sprite: {fileID: 582952446, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 0} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &187286048310576359 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4807590636798542179} - - component: {fileID: 3166996684585222225} - m_Layer: 0 - m_Name: line05-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4807590636798542179 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 187286048310576359} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -1.03, y: 0.36, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 8292317720239422396} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &3166996684585222225 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 187286048310576359} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 1130663883, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &366092608835574512 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1656222599941520634} - - component: {fileID: 6607864957733979767} - m_Layer: 0 - m_Name: line02-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1656222599941520634 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 366092608835574512} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.3, y: 0.2, z: 0} - m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 42956781868563777} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &6607864957733979767 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 366092608835574512} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 2114601721, guid: f53a4ec2735ed354da3b4cabab849c15, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &573617982118382641 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7577364485865636828} - - component: {fileID: 6469335741404151129} - m_Layer: 0 - m_Name: line09-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7577364485865636828 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 573617982118382641} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.5, y: -1.1, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 3181075586293323536} - m_RootOrder: 8 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &6469335741404151129 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 573617982118382641} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 1254064485, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 --- !u!1 &678133560532831064 GameObject: m_ObjectHideFlags: 0 @@ -504,705 +168,6 @@ SpriteRenderer: m_WasSpriteAssigned: 1 m_MaskInteraction: 0 m_SpriteSortPoint: 0 ---- !u!1 &1167297692422345271 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 860594500505055069} - - component: {fileID: 8277915868410958558} - m_Layer: 0 - m_Name: line01-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &860594500505055069 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1167297692422345271} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.45, y: -0.36, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 8368712257050324559} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &8277915868410958558 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1167297692422345271} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: -621564299, guid: ad40b2614844fbc47802e876fe0d3273, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &1275767210379431816 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8271221766866941291} - - component: {fileID: 8822458977282590456} - m_Layer: 0 - m_Name: line07-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8271221766866941291 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1275767210379431816} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.8, y: -0.3, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 3181075586293323536} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &8822458977282590456 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1275767210379431816} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 283160622, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &1436712407796118736 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8544487973233749208} - - component: {fileID: 1297445876880253250} - m_Layer: 0 - m_Name: line06-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8544487973233749208 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1436712407796118736} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.4, y: 0.4, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 3181075586293323536} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &1297445876880253250 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1436712407796118736} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 912336089, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &1522914056597294617 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3607268533529132158} - - component: {fileID: 8648065421937614385} - m_Layer: 0 - m_Name: line01-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3607268533529132158 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1522914056597294617} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.4, y: -0.1, z: 0} - m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 664206551566054589} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &8648065421937614385 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1522914056597294617} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 2 - m_Sprite: {fileID: 1653516715, guid: 601a210af9469ec4c9a88674c4ed436d, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &1678554922541396856 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8368712257050324559} - m_Layer: 0 - m_Name: character - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8368712257050324559 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1678554922541396856} - 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: 860594500505055069} - - {fileID: 4160746803213047804} - m_Father: {fileID: 7838543868829238164} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1710956124809094959 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 42956781868563777} - m_Layer: 0 - m_Name: character - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &42956781868563777 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1710956124809094959} - 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: 8220088717972055573} - - {fileID: 8630088773758218481} - - {fileID: 1656222599941520634} - - {fileID: 7492361711591000625} - m_Father: {fileID: 235812222023674450} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &2052488333798182072 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4180583366548115695} - - component: {fileID: 6197917307075290055} - - component: {fileID: 8230789907369726927} - - component: {fileID: 2633795428800313457} - m_Layer: 0 - m_Name: paper_re - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!4 &4180583366548115695 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2052488333798182072} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0.1, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 1 - m_Children: - - {fileID: 5686101206258109559} - m_Father: {fileID: 4474880414361242374} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &6197917307075290055 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2052488333798182072} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: -2 - m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 1 - m_Size: {x: 6.23, y: 8.03} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!114 &8230789907369726927 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2052488333798182072} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} - m_Name: - m_EditorClassIdentifier: - targetBeat: 0 - characterType: 0 - paperAnim: {fileID: 2633795428800313457} - fudePosAnim: {fileID: 4347490169930534314} - fudeAnim: {fileID: 6423473967584127419} - scrollSpeed: {x: 0, y: 0, z: 0} - onGoing: 0 ---- !u!95 &2633795428800313457 -Animator: - serializedVersion: 5 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2052488333798182072} - m_Enabled: 1 - m_Avatar: {fileID: 0} - m_Controller: {fileID: 9100000, guid: 444b7f482707cd84b8ec0448c8441b44, type: 2} - m_CullingMode: 0 - m_UpdateMode: 2 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_StabilizeFeet: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorStateOnDisable: 0 - m_WriteDefaultValuesOnDisable: 0 ---- !u!1 &2370076425966565601 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5284868148337031578} - - component: {fileID: 1989881363938954668} - m_Layer: 0 - m_Name: line10-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5284868148337031578 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2370076425966565601} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.2, y: -1.9, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 3181075586293323536} - m_RootOrder: 9 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &1989881363938954668 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2370076425966565601} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: -428493417, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &2599302430572474253 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8191234602326410122} - - component: {fileID: 8588800349757275525} - m_Layer: 0 - m_Name: line01-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8191234602326410122 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2599302430572474253} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.5, y: 1.8, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 3181075586293323536} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &8588800349757275525 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2599302430572474253} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: -1959236509, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 --- !u!1 &2662027512870423090 GameObject: m_ObjectHideFlags: 0 @@ -1287,258 +252,6 @@ SpriteRenderer: m_WasSpriteAssigned: 1 m_MaskInteraction: 0 m_SpriteSortPoint: 0 ---- !u!1 &2765770116298804559 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3674715402839046664} - - component: {fileID: 6179751286794422031} - m_Layer: 0 - m_Name: line01-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3674715402839046664 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2765770116298804559} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.5, y: 1.8, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 8292317720239422396} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &6179751286794422031 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2765770116298804559} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: -1959236509, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &2773088242474655215 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4500788116515044146} - - component: {fileID: 7478040926180397928} - m_Layer: 0 - m_Name: line08-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4500788116515044146 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2773088242474655215} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.2, y: -0.3, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 3181075586293323536} - m_RootOrder: 7 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &7478040926180397928 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2773088242474655215} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 1091740618, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &2897091971194688657 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6409543936761266294} - - component: {fileID: 6817492224267917520} - m_Layer: 0 - m_Name: line01-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6409543936761266294 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2897091971194688657} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.4, y: 0.3, z: 0} - m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 668265437961711222} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &6817492224267917520 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2897091971194688657} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: -826016376, guid: d4745e98e2ce2764aab4a5103bf0a015, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 --- !u!1 &3043737854792928661 GameObject: m_ObjectHideFlags: 0 @@ -1551,6 +264,7 @@ GameObject: - component: {fileID: 2525132525736822902} - component: {fileID: 4875815582367856927} - component: {fileID: 5898750877800088884} + - component: {fileID: 92620770516290320} m_Layer: 0 m_Name: paper m_TagString: Untagged @@ -1659,433 +373,21 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} m_Name: m_EditorClassIdentifier: - targetBeat: 0 - characterType: 0 - paperAnim: {fileID: 4875815582367856927} - fudePosAnim: {fileID: 4347490169930534314} - fudeAnim: {fileID: 6423473967584127419} + startBeat: 0 + AnimPattern: [] scrollSpeed: {x: 0, y: 0, z: 0} onGoing: 0 ---- !u!1 &3212291265690776178 -GameObject: +--- !u!210 &92620770516290320 +SortingGroup: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1564694693292837565} - - component: {fileID: 107393575422242460} - m_Layer: 0 - m_Name: line02-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1564694693292837565 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3212291265690776178} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.4, y: -1, z: 0} - m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 2981447254059757221} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &107393575422242460 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3212291265690776178} + m_GameObject: {fileID: 3043737854792928661} m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: -1252207459, guid: 4e19a9e61101a3440a89a24aadffea91, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &3310839133974709457 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6584820607984216487} - - component: {fileID: 4497750593097487237} - m_Layer: 0 - m_Name: line03-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6584820607984216487 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3310839133974709457} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.3, y: 1.3, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 8292317720239422396} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &4497750593097487237 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3310839133974709457} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 26309253, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &3422479327962148060 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8630088773758218481} - - component: {fileID: 3201972237821231700} - m_Layer: 0 - m_Name: line01-1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8630088773758218481 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3422479327962148060} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0.2, y: 0.3, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 42956781868563777} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &3201972237821231700 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3422479327962148060} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 3 - m_Sprite: {fileID: -959949763, guid: f53a4ec2735ed354da3b4cabab849c15, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 0} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &3503373656812854413 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6917576360558583692} - - component: {fileID: 5636481155541442049} - m_Layer: 0 - m_Name: line01-1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6917576360558583692 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3503373656812854413} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.45, y: -0.36, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 5686101206258109559} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &5636481155541442049 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3503373656812854413} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 2 - m_Sprite: {fileID: 1965924717, guid: e406dc765cc8c294e9adbc852c372be7, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 0} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &3549603849207119795 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2989087173071819182} - - component: {fileID: 6140178569352184338} - m_Layer: 0 - m_Name: line10-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2989087173071819182 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3549603849207119795} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.2, y: -1.9, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 8292317720239422396} - m_RootOrder: 9 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &6140178569352184338 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3549603849207119795} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: -428493417, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 + m_SortingOrder: 0 --- !u!1 &3699624212735921119 GameObject: m_ObjectHideFlags: 0 @@ -2118,216 +420,6 @@ Transform: m_Father: {fileID: 637382826217532765} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &3736422934495096058 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3181075586293323536} - m_Layer: 0 - m_Name: character - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3181075586293323536 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3736422934495096058} - 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: 8191234602326410122} - - {fileID: 7336459887755395536} - - {fileID: 1256059601657678520} - - {fileID: 4796659702006504722} - - {fileID: 1586043440607314199} - - {fileID: 8544487973233749208} - - {fileID: 8271221766866941291} - - {fileID: 4500788116515044146} - - {fileID: 7577364485865636828} - - {fileID: 5284868148337031578} - - {fileID: 7912396229824206362} - m_Father: {fileID: 1351944029980107559} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &3836706407812745199 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1256059601657678520} - - component: {fileID: 5024097050614399297} - m_Layer: 0 - m_Name: line03-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1256059601657678520 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3836706407812745199} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.3, y: 1.3, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 3181075586293323536} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &5024097050614399297 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3836706407812745199} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 26309253, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &3898396248611073112 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5689636191234217125} - - component: {fileID: 8524737760796859950} - m_Layer: 0 - m_Name: line01-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5689636191234217125 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3898396248611073112} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.8, y: 0, z: 0} - m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 5686101206258109559} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &8524737760796859950 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3898396248611073112} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 322477732, guid: e406dc765cc8c294e9adbc852c372be7, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 --- !u!1 &3915510414087142068 GameObject: m_ObjectHideFlags: 0 @@ -2479,208 +571,6 @@ Transform: m_Father: {fileID: 4580293426434208483} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &4524464802100749316 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2981447254059757221} - m_Layer: 0 - m_Name: character - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2981447254059757221 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4524464802100749316} - 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: 3453403169967693372} - - {fileID: 1564694693292837565} - - {fileID: 5657314086440059186} - m_Father: {fileID: 5774348071064104039} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &4565352083621794741 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7492361711591000625} - - component: {fileID: 2935774222690142656} - m_Layer: 0 - m_Name: line02-1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7492361711591000625 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4565352083621794741} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0.2, y: 0.3, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 42956781868563777} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &2935774222690142656 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4565352083621794741} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 3 - m_Sprite: {fileID: 229994197, guid: f53a4ec2735ed354da3b4cabab849c15, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 0} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &4602674286218968578 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7912396229824206362} - - component: {fileID: 5192417378611350773} - m_Layer: 0 - m_Name: line10-1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7912396229824206362 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4602674286218968578} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.25, y: -3.3, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3181075586293323536} - m_RootOrder: 10 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &5192417378611350773 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4602674286218968578} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 2 - m_Sprite: {fileID: 582952446, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 0} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 --- !u!1 &4714056575665057956 GameObject: m_ObjectHideFlags: 0 @@ -2765,823 +655,6 @@ SpriteRenderer: m_WasSpriteAssigned: 1 m_MaskInteraction: 0 m_SpriteSortPoint: 0 ---- !u!1 &4723748339366028945 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4003371712650499283} - - component: {fileID: 1504025089954043581} - m_Layer: 0 - m_Name: line04-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4003371712650499283 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4723748339366028945} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.4, y: 0.8, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 8292317720239422396} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &1504025089954043581 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4723748339366028945} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 2129426473, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &4725777365459375915 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5774348071064104039} - - component: {fileID: 8856695510935203101} - - component: {fileID: 3577929651803050376} - - component: {fileID: 8591215113774978399} - m_Layer: 0 - m_Name: paper_onore - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!4 &5774348071064104039 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4725777365459375915} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0.1, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 1 - m_Children: - - {fileID: 2981447254059757221} - m_Father: {fileID: 4474880414361242374} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &8856695510935203101 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4725777365459375915} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: -2 - m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 1 - m_Size: {x: 6.23, y: 8.03} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!114 &3577929651803050376 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4725777365459375915} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} - m_Name: - m_EditorClassIdentifier: - targetBeat: 0 - characterType: 3 - paperAnim: {fileID: 8591215113774978399} - fudePosAnim: {fileID: 4347490169930534314} - fudeAnim: {fileID: 6423473967584127419} - scrollSpeed: {x: 0, y: 0, z: 0} - onGoing: 0 ---- !u!95 &8591215113774978399 -Animator: - serializedVersion: 5 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4725777365459375915} - m_Enabled: 1 - m_Avatar: {fileID: 0} - m_Controller: {fileID: 9100000, guid: 45f20a81a09189347b0bc20639c519c2, type: 2} - m_CullingMode: 0 - m_UpdateMode: 2 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_StabilizeFeet: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorStateOnDisable: 0 - m_WriteDefaultValuesOnDisable: 0 ---- !u!1 &4749159847167500933 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3453403169967693372} - - component: {fileID: 6806829818532844902} - m_Layer: 0 - m_Name: line01-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3453403169967693372 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4749159847167500933} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.34, y: 0.78, z: 0} - m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 2981447254059757221} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &6806829818532844902 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4749159847167500933} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 2 - m_Sprite: {fileID: -1942423425, guid: 4e19a9e61101a3440a89a24aadffea91, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &4761390389874204197 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8176491621452033095} - - component: {fileID: 5840772695766545376} - m_Layer: 0 - m_Name: line02-1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8176491621452033095 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4761390389874204197} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0.2, y: 0.3, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 664206551566054589} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &5840772695766545376 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4761390389874204197} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 3 - m_Sprite: {fileID: -2112578622, guid: 601a210af9469ec4c9a88674c4ed436d, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 0} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &5177406390751562341 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8292317720239422396} - m_Layer: 0 - m_Name: character - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8292317720239422396 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5177406390751562341} - 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: 3674715402839046664} - - {fileID: 5292148340136183742} - - {fileID: 6584820607984216487} - - {fileID: 4003371712650499283} - - {fileID: 4807590636798542179} - - {fileID: 6001133302614033537} - - {fileID: 2126280080299300292} - - {fileID: 5817378093385878824} - - {fileID: 8272527073772095352} - - {fileID: 2989087173071819182} - - {fileID: 7808201683492369668} - m_Father: {fileID: 3914369449114185974} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &5194580906762008960 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 664206551566054589} - m_Layer: 0 - m_Name: character - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &664206551566054589 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5194580906762008960} - 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: 3607268533529132158} - - {fileID: 5124761198467170342} - - {fileID: 8176491621452033095} - m_Father: {fileID: 7290530264282809947} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &5253865715511378469 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8220088717972055573} - - component: {fileID: 1970798983841378207} - m_Layer: 0 - m_Name: line01-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8220088717972055573 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5253865715511378469} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.45, y: 0.7, z: 0} - m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 42956781868563777} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &1970798983841378207 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5253865715511378469} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 2 - m_Sprite: {fileID: 689517499, guid: f53a4ec2735ed354da3b4cabab849c15, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &5264038916288818845 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 668265437961711222} - m_Layer: 0 - m_Name: character - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &668265437961711222 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5264038916288818845} - 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: 6409543936761266294} - - {fileID: 6087862179233419426} - - {fileID: 8938955785842227998} - m_Father: {fileID: 3560576577106735143} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &5434885997949318606 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1586043440607314199} - - component: {fileID: 882663560858038425} - m_Layer: 0 - m_Name: line05-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1586043440607314199 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5434885997949318606} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -1.03, y: 0.36, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 3181075586293323536} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &882663560858038425 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5434885997949318606} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 1130663883, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &5486396673301669636 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 235812222023674450} - - component: {fileID: 4565657383431673371} - - component: {fileID: 7265019384153802321} - - component: {fileID: 151426227030823503} - m_Layer: 0 - m_Name: paper_sun - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!4 &235812222023674450 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5486396673301669636} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0.1, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 1 - m_Children: - - {fileID: 42956781868563777} - m_Father: {fileID: 4474880414361242374} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &4565657383431673371 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5486396673301669636} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: -2 - m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 1 - m_Size: {x: 6.23, y: 8.03} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!114 &7265019384153802321 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5486396673301669636} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} - m_Name: - m_EditorClassIdentifier: - targetBeat: 0 - characterType: 4 - paperAnim: {fileID: 151426227030823503} - fudePosAnim: {fileID: 4347490169930534314} - fudeAnim: {fileID: 6423473967584127419} - scrollSpeed: {x: 0, y: 0, z: 0} - onGoing: 0 ---- !u!95 &151426227030823503 -Animator: - serializedVersion: 5 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5486396673301669636} - m_Enabled: 1 - m_Avatar: {fileID: 0} - m_Controller: {fileID: 9100000, guid: 7f4aea0b6c4c84647a22dce17cfbe800, type: 2} - m_CullingMode: 0 - m_UpdateMode: 2 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_StabilizeFeet: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorStateOnDisable: 0 - m_WriteDefaultValuesOnDisable: 0 ---- !u!1 &5739937175091253922 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5686101206258109559} - m_Layer: 0 - m_Name: character - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5686101206258109559 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5739937175091253922} - 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: 5689636191234217125} - - {fileID: 6917576360558583692} - m_Father: {fileID: 4180583366548115695} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &5813499711186931251 GameObject: m_ObjectHideFlags: 0 @@ -3631,144 +704,29 @@ MonoBehaviour: SoundSequences: [] scheduledInputs: [] basePapers: - - {fileID: 2052488333798182072} - - {fileID: 8274195909923328061} - - {fileID: 7468674648703135237} - - {fileID: 4725777365459375915} - - {fileID: 5486396673301669636} - - {fileID: 6443585645582624835} - - {fileID: 5923038353657902479} - - {fileID: 7426043494563681895} + - {fileID: 8761030453000934461, guid: 9d789b8e6b933294fa7c4a51773a4e0b, type: 3} + - {fileID: 3774049005728139305, guid: f7a33e3cba987aa4181c9206fadea292, type: 3} + - {fileID: 3522147905795316729, guid: be60362a8480b894c97ac7ca6fc4dd08, type: 3} + - {fileID: 3690194260999955401, guid: 839d559753a422649a93044314aaa6ae, type: 3} + - {fileID: 5459074327126753857, guid: 4083a37fcad142b4398af1c6b7e8a7d4, type: 3} + - {fileID: 6271697657141521623, guid: 660d7014915a8d64098cad68dde7bc37, type: 3} + - {fileID: 4057754358475847228, guid: cdf6b70c8e62dfe4d857d857374f3c08, type: 3} + - {fileID: 3172098273894748904, guid: d1f9b2ba14264984eb340d312a866725, type: 3} + fudePosCntls: + - {fileID: 9100000, guid: e5975b53365f4844fa381834e7fedddb, type: 2} + - {fileID: 9100000, guid: 31a09d366e276e84b84b478ae82aa36f, type: 2} + - {fileID: 9100000, guid: 77f6c2b1272b6a243bdf6503c85b10b0, type: 2} + - {fileID: 9100000, guid: edb61733739b828439684aadcd488b50, type: 2} + - {fileID: 9100000, guid: a8399fce1f28f1f458c59af51b6d8984, type: 2} + - {fileID: 9100000, guid: 5f177e11df69719468cd43da143c95f1, type: 2} + - {fileID: 9100000, guid: 39a2eabe4a7b21e4d81c4fe36c2a13a7, type: 2} + - {fileID: 9100000, guid: f48491b79b5d9ee4ab15846353b187d3, type: 2} + - {fileID: 9100000, guid: 35243381a5f225f41819c5b0230fda15, type: 2} paperHolder: {fileID: 5519490823886977826} - endPaper: {fileID: 5898750877800088884} - scrollSpeed: {x: 6, y: -10, z: 0} ---- !u!1 &5923038353657902479 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1351944029980107559} - - component: {fileID: 7762719350854815659} - - component: {fileID: 8973067099013975504} - - component: {fileID: 593693715779965490} - m_Layer: 0 - m_Name: paper_face - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!4 &1351944029980107559 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5923038353657902479} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0.1, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 1 - m_Children: - - {fileID: 3181075586293323536} - m_Father: {fileID: 4474880414361242374} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &7762719350854815659 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5923038353657902479} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: -2 - m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 1 - m_Size: {x: 6.23, y: 8.03} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!114 &8973067099013975504 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5923038353657902479} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} - m_Name: - m_EditorClassIdentifier: - targetBeat: 0 - characterType: 6 - paperAnim: {fileID: 593693715779965490} + endPaper: {fileID: 4875815582367856927} fudePosAnim: {fileID: 4347490169930534314} fudeAnim: {fileID: 6423473967584127419} - scrollSpeed: {x: 0, y: 0, z: 0} - onGoing: 0 ---- !u!95 &593693715779965490 -Animator: - serializedVersion: 5 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5923038353657902479} - m_Enabled: 1 - m_Avatar: {fileID: 0} - m_Controller: {fileID: 9100000, guid: 0c31a273cf822064a9631b1f68e6104b, type: 2} - m_CullingMode: 0 - m_UpdateMode: 2 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_StabilizeFeet: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorStateOnDisable: 0 - m_WriteDefaultValuesOnDisable: 0 + scrollSpeed: {x: 6, y: -10, z: 0} --- !u!1 &6023311813748602782 GameObject: m_ObjectHideFlags: 0 @@ -3797,180 +755,12 @@ Transform: m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: + - {fileID: 2812549213709502772} - {fileID: 1672921316959716958} - - {fileID: 4474880414361242374} - {fileID: 5519490823886977826} m_Father: {fileID: 5813499711186931250} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &6162794706446613623 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8272527073772095352} - - component: {fileID: 6535807936584650325} - m_Layer: 0 - m_Name: line09-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8272527073772095352 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6162794706446613623} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.5, y: -1.1, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 8292317720239422396} - m_RootOrder: 8 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &6535807936584650325 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6162794706446613623} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 1254064485, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &6192786242490518283 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5124761198467170342} - - component: {fileID: 3848374571399738237} - m_Layer: 0 - m_Name: line02-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5124761198467170342 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6192786242490518283} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.1, y: 0.5, z: 0} - m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 664206551566054589} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &3848374571399738237 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6192786242490518283} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: -397528732, guid: 601a210af9469ec4c9a88674c4ed436d, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 --- !u!1 &6220743858290386625 GameObject: m_ObjectHideFlags: 0 @@ -4055,172 +845,6 @@ SpriteRenderer: m_WasSpriteAssigned: 1 m_MaskInteraction: 0 m_SpriteSortPoint: 0 ---- !u!1 &6443585645582624835 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3560576577106735143} - - component: {fileID: 173701232961305703} - - component: {fileID: 2561870803819618162} - - component: {fileID: 8961466428048820820} - m_Layer: 0 - m_Name: paper_kokoro - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!4 &3560576577106735143 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6443585645582624835} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0.1, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 1 - m_Children: - - {fileID: 668265437961711222} - m_Father: {fileID: 4474880414361242374} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &173701232961305703 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6443585645582624835} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: -2 - m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 1 - m_Size: {x: 6.23, y: 8.03} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!114 &2561870803819618162 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6443585645582624835} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} - m_Name: - m_EditorClassIdentifier: - targetBeat: 0 - characterType: 5 - paperAnim: {fileID: 8961466428048820820} - fudePosAnim: {fileID: 4347490169930534314} - fudeAnim: {fileID: 6423473967584127419} - scrollSpeed: {x: 0, y: 0, z: 0} - onGoing: 0 ---- !u!95 &8961466428048820820 -Animator: - serializedVersion: 5 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6443585645582624835} - m_Enabled: 1 - m_Avatar: {fileID: 0} - m_Controller: {fileID: 9100000, guid: de75fac2650958246ba9488efce99f5e, type: 2} - m_CullingMode: 0 - m_UpdateMode: 2 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_StabilizeFeet: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorStateOnDisable: 0 - m_WriteDefaultValuesOnDisable: 0 ---- !u!1 &6800129918788813938 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4474880414361242374} - m_Layer: 0 - m_Name: Prefabs - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4474880414361242374 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6800129918788813938} - 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: 4180583366548115695} - - {fileID: 7838543868829238164} - - {fileID: 7290530264282809947} - - {fileID: 5774348071064104039} - - {fileID: 235812222023674450} - - {fileID: 3560576577106735143} - - {fileID: 1351944029980107559} - - {fileID: 3914369449114185974} - m_Father: {fileID: 637382826217532765} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &6854551435124601147 GameObject: m_ObjectHideFlags: 0 @@ -4305,174 +929,6 @@ SpriteRenderer: m_WasSpriteAssigned: 1 m_MaskInteraction: 0 m_SpriteSortPoint: 0 ---- !u!1 &6972606757273406736 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8938955785842227998} - - component: {fileID: 5428330330734818395} - m_Layer: 0 - m_Name: line01-2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8938955785842227998 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6972606757273406736} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0.2, y: 0.3, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 668265437961711222} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &5428330330734818395 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6972606757273406736} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 2 - m_Sprite: {fileID: 229994197, guid: f53a4ec2735ed354da3b4cabab849c15, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 0} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &7165492604042206352 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5817378093385878824} - - component: {fileID: 4071222876829827937} - m_Layer: 0 - m_Name: line08-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5817378093385878824 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7165492604042206352} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.2, y: -0.3, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 8292317720239422396} - m_RootOrder: 7 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &4071222876829827937 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7165492604042206352} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 1091740618, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 --- !u!1 &7215827396965205491 GameObject: m_ObjectHideFlags: 0 @@ -4483,8 +939,9 @@ GameObject: m_Component: - component: {fileID: 4580293426434208483} - component: {fileID: 6423473967584127419} + - component: {fileID: 6433100017780520295} m_Layer: 0 - m_Name: fude + m_Name: sprite m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 @@ -4528,807 +985,17 @@ Animator: m_AllowConstantClipSamplingOptimization: 1 m_KeepAnimatorStateOnDisable: 0 m_WriteDefaultValuesOnDisable: 0 ---- !u!1 &7426043494563681895 -GameObject: +--- !u!210 &6433100017780520295 +SortingGroup: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3914369449114185974} - - component: {fileID: 4995413557582058058} - - component: {fileID: 5673019463499322372} - - component: {fileID: 8862095173489801868} - m_Layer: 0 - m_Name: paper_face_kr - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!4 &3914369449114185974 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7426043494563681895} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0.1, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 1 - m_Children: - - {fileID: 8292317720239422396} - m_Father: {fileID: 4474880414361242374} - m_RootOrder: 7 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &4995413557582058058 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7426043494563681895} + m_GameObject: {fileID: 7215827396965205491} m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 m_SortingLayer: 0 - m_SortingOrder: -2 - m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 1 - m_Size: {x: 6.23, y: 8.03} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!114 &5673019463499322372 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7426043494563681895} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} - m_Name: - m_EditorClassIdentifier: - targetBeat: 0 - characterType: 7 - paperAnim: {fileID: 8862095173489801868} - fudePosAnim: {fileID: 4347490169930534314} - fudeAnim: {fileID: 6423473967584127419} - scrollSpeed: {x: 0, y: 0, z: 0} - onGoing: 0 ---- !u!95 &8862095173489801868 -Animator: - serializedVersion: 5 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7426043494563681895} - m_Enabled: 1 - m_Avatar: {fileID: 0} - m_Controller: {fileID: 9100000, guid: 5ba354e9a8bd298428bd42bcab85cab9, type: 2} - m_CullingMode: 0 - m_UpdateMode: 2 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_StabilizeFeet: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorStateOnDisable: 0 - m_WriteDefaultValuesOnDisable: 0 ---- !u!1 &7468674648703135237 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7290530264282809947} - - component: {fileID: 6178613506926251723} - - component: {fileID: 4049152708050984620} - - component: {fileID: 7452552646210302037} - m_Layer: 0 - m_Name: paper_chikara - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!4 &7290530264282809947 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7468674648703135237} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0.1, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 1 - m_Children: - - {fileID: 664206551566054589} - m_Father: {fileID: 4474880414361242374} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &6178613506926251723 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7468674648703135237} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: -2 - m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 1 - m_Size: {x: 6.23, y: 8.03} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!114 &4049152708050984620 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7468674648703135237} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} - m_Name: - m_EditorClassIdentifier: - targetBeat: 0 - characterType: 2 - paperAnim: {fileID: 7452552646210302037} - fudePosAnim: {fileID: 4347490169930534314} - fudeAnim: {fileID: 6423473967584127419} - scrollSpeed: {x: 0, y: 0, z: 0} - onGoing: 0 ---- !u!95 &7452552646210302037 -Animator: - serializedVersion: 5 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7468674648703135237} - m_Enabled: 1 - m_Avatar: {fileID: 0} - m_Controller: {fileID: 9100000, guid: 817f6e26e22e2854d9575e0095056cf0, type: 2} - m_CullingMode: 0 - m_UpdateMode: 2 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_StabilizeFeet: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorStateOnDisable: 0 - m_WriteDefaultValuesOnDisable: 0 ---- !u!1 &7524376961919841833 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5657314086440059186} - - component: {fileID: 3344242438109521181} - m_Layer: 0 - m_Name: line02-1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5657314086440059186 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7524376961919841833} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0.2, y: 0.3, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 2981447254059757221} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &3344242438109521181 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7524376961919841833} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 3 - m_Sprite: {fileID: 1625912491, guid: 4e19a9e61101a3440a89a24aadffea91, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 0} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &7816430470112140880 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6087862179233419426} - - component: {fileID: 736108393029112294} - m_Layer: 0 - m_Name: line01-1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6087862179233419426 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7816430470112140880} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0.2, y: 0.3, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 668265437961711222} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &736108393029112294 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7816430470112140880} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 2 - m_Sprite: {fileID: 1178504388, guid: d4745e98e2ce2764aab4a5103bf0a015, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 0} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &8049980196527209778 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4796659702006504722} - - component: {fileID: 2006133056857529927} - m_Layer: 0 - m_Name: line04-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4796659702006504722 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8049980196527209778} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.4, y: 0.8, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 3181075586293323536} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &2006133056857529927 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8049980196527209778} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 2129426473, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &8223828818216430603 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5292148340136183742} - - component: {fileID: 3273528743781896670} - m_Layer: 0 - m_Name: line02-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5292148340136183742 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8223828818216430603} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 1.6, y: 0, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 8292317720239422396} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &3273528743781896670 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8223828818216430603} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: -393905871, guid: 46240fc17d4a3c244b8421a030f579f5, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &8273643291785909255 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4160746803213047804} - - component: {fileID: 2030296077821064942} - m_Layer: 0 - m_Name: line01-1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4160746803213047804 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8273643291785909255} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.45, y: -0.36, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 8368712257050324559} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &2030296077821064942 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8273643291785909255} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 2 - m_Sprite: {fileID: 200246606, guid: ad40b2614844fbc47802e876fe0d3273, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 0} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &8274195909923328061 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7838543868829238164} - - component: {fileID: 2672730926995253177} - - component: {fileID: 624205592674416599} - - component: {fileID: 7730938937389451918} - m_Layer: 0 - m_Name: paper_comma - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!4 &7838543868829238164 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8274195909923328061} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0.1, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 1 - m_Children: - - {fileID: 8368712257050324559} - m_Father: {fileID: 4474880414361242374} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &2672730926995253177 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8274195909923328061} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: -2 - m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 1 - m_Size: {x: 6.23, y: 8.03} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!114 &624205592674416599 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8274195909923328061} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} - m_Name: - m_EditorClassIdentifier: - targetBeat: 0 - characterType: 1 - paperAnim: {fileID: 7730938937389451918} - fudePosAnim: {fileID: 4347490169930534314} - fudeAnim: {fileID: 6423473967584127419} - scrollSpeed: {x: 0, y: 0, z: 0} - onGoing: 0 ---- !u!95 &7730938937389451918 -Animator: - serializedVersion: 5 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8274195909923328061} - m_Enabled: 1 - m_Avatar: {fileID: 0} - m_Controller: {fileID: 9100000, guid: a236d6f31008448439761534488a5a76, type: 2} - m_CullingMode: 0 - m_UpdateMode: 2 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_StabilizeFeet: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorStateOnDisable: 0 - m_WriteDefaultValuesOnDisable: 0 + m_SortingOrder: 5 --- !u!1 &8376708635690674870 GameObject: m_ObjectHideFlags: 0 @@ -5339,8 +1006,9 @@ GameObject: m_Component: - component: {fileID: 1672921316959716958} - component: {fileID: 4347490169930534314} + - component: {fileID: 6903380614502385795} m_Layer: 0 - m_Name: fudePos + m_Name: fude m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 @@ -5360,7 +1028,7 @@ Transform: m_Children: - {fileID: 4580293426434208483} m_Father: {fileID: 637382826217532765} - m_RootOrder: 0 + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!95 &4347490169930534314 Animator: @@ -5383,7 +1051,18 @@ Animator: m_AllowConstantClipSamplingOptimization: 1 m_KeepAnimatorStateOnDisable: 0 m_WriteDefaultValuesOnDisable: 0 ---- !u!1 &8395854973089326080 +--- !u!210 &6903380614502385795 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8376708635690674870} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 71 +--- !u!1 &8859299778204397953 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -5391,247 +1070,26 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 2126280080299300292} - - component: {fileID: 8891919068055750031} + - component: {fileID: 2812549213709502772} m_Layer: 0 - m_Name: line07-0 + m_Name: shift m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &2126280080299300292 +--- !u!4 &2812549213709502772 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8395854973089326080} + m_GameObject: {fileID: 8859299778204397953} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.8, y: -0.3, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 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: 8292317720239422396} - m_RootOrder: 6 + m_Father: {fileID: 637382826217532765} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &8891919068055750031 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8395854973089326080} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 283160622, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &8660941709573495524 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6001133302614033537} - - component: {fileID: 8507432751600428063} - m_Layer: 0 - m_Name: line06-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6001133302614033537 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8660941709573495524} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.4, y: 0.4, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 8292317720239422396} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &8507432751600428063 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8660941709573495524} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 912336089, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!1 &9075597212938886558 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7336459887755395536} - - component: {fileID: 2662834411614806884} - m_Layer: 0 - m_Name: line02-0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7336459887755395536 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9075597212938886558} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 1.6, y: -0.1, z: 0} - m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 3181075586293323536} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &2662834411614806884 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9075597212938886558} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: -393905871, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.63, y: 0.95} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 diff --git a/Assets/Resources/Games/rhythmRally.prefab b/Assets/Resources/Games/rhythmRally.prefab index 69e440832..d339f67d5 100644 --- a/Assets/Resources/Games/rhythmRally.prefab +++ b/Assets/Resources/Games/rhythmRally.prefab @@ -7297,6 +7297,10 @@ PrefabInstance: propertyPath: m_CastShadows value: 1 objectReference: {fileID: 0} + - target: {fileID: -1851684669048352328, guid: cebeb8610d89fb34688750080a285ddb, type: 3} + propertyPath: m_ReceiveShadows + value: 1 + objectReference: {fileID: 0} - target: {fileID: -1851684669048352328, guid: cebeb8610d89fb34688750080a285ddb, type: 3} propertyPath: m_Materials.Array.data[0] value: diff --git a/Assets/Resources/Models/Games/Airboarder.meta b/Assets/Resources/Models/Games/Airboarder.meta new file mode 100644 index 000000000..eda2a1384 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ea7de910b53529948998655d02445352 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations.meta b/Assets/Resources/Models/Games/Airboarder/Animations.meta new file mode 100644 index 000000000..d6611bcda --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 19f415d4872b45b42a4d712203c1f015 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/arch.meta b/Assets/Resources/Models/Games/Airboarder/Animations/arch.meta new file mode 100644 index 000000000..e2e5668b2 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/arch.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bea7f78ae51c62242bfb6789c577164b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/arch/arch.controller b/Assets/Resources/Models/Games/Airboarder/Animations/arch/arch.controller new file mode 100644 index 000000000..424a48c82 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/arch/arch.controller @@ -0,0 +1,219 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-8672832660157761820 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: idle + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 0 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: a934fd8b9c8c22e4fad742014afbbb4f, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-1891003415174242613 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: break + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 0 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 097e4120edbde8a49af1ee5d43c739a6, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-1793289606080654395 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: movement + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 817453574679570227} + m_Position: {x: 260, y: 60, z: 0} + - serializedVersion: 1 + m_State: {fileID: -8672832660157761820} + m_Position: {x: 260, y: 0, 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: -8672832660157761820} +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: arch + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: movement + m_StateMachine: {fileID: -1793289606080654395} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: miss fx + m_StateMachine: {fileID: 2782592689605945269} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &817453574679570227 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: move + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 0 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: ac8fa3c8e5818f54a9641ca919dd5191, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &2782592689605945269 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: miss fx + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 5773130082680349530} + m_Position: {x: 280, y: 30, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6285518713359575881} + m_Position: {x: 282.93604, y: 215.39151, z: 0} + - serializedVersion: 1 + m_State: {fileID: -1891003415174242613} + m_Position: {x: 280, y: 110, 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: 5773130082680349530} +--- !u!1102 &5773130082680349530 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: idle + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 0 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: a934fd8b9c8c22e4fad742014afbbb4f, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &6285518713359575881 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: shake + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 0 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 1102bcbac87470b48b0615389d924561, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/PrepareIdle.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/arch/arch.controller.meta similarity index 64% rename from Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/PrepareIdle.anim.meta rename to Assets/Resources/Models/Games/Airboarder/Animations/arch/arch.controller.meta index c0aaf447c..e7ac5a88a 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/PrepareIdle.anim.meta +++ b/Assets/Resources/Models/Games/Airboarder/Animations/arch/arch.controller.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 -guid: f9b4fb8d229e1d840b1663408bebfd18 +guid: 4464fa6dd045f9345bcdb7f9d2d7d8f3 NativeFormatImporter: externalObjects: {} - mainObjectFileID: 0 + mainObjectFileID: 9100000 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/arch/break.anim b/Assets/Resources/Models/Games/Airboarder/Animations/arch/break.anim new file mode 100644 index 000000000..3af53903d --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/arch/break.anim @@ -0,0 +1,32821 @@ +%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: break + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: 4.125 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: wall_high_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 4.125 + 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: wall_high_model_skeleton/wall_root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 4.125 + 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: wall_high_model_skeleton/wall_root/block01Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.083333336 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: -0.0004035316, y: 0.0005695839, z: -0.0007044115, w: 0} + outSlope: {x: -0.0004035316, y: 0.0005695839, z: -0.0007044115, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.00003362763, y: 0.00004746532, z: -0.000058700953, w: 1} + inSlope: {x: -0.08476104, y: 0.15284766, z: -0.17449996, w: -0.0025420187} + outSlope: {x: -0.08476104, y: 0.15284766, z: -0.17449996, w: -0.0025420187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.008391135, y: 0.025718918, z: -0.025852665, w: 0.99929965} + inSlope: {x: 0.014364893, y: 0.2729782, z: -0.26800793, w: -0.013388873} + outSlope: {x: 0.014364893, y: 0.2729782, z: -0.26800793, w: -0.013388873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.0055416916, y: 0.036248446, z: -0.051340777, w: 0.9980078} + inSlope: {x: 0.009805189, y: -0.0025753751, z: -0.33952355, w: -0.017214058} + outSlope: {x: 0.009805189, y: -0.0025753751, z: -0.33952355, w: -0.017214058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.005049248, y: 0.035270873, z: -0.06516929, w: 0.9972379} + inSlope: {x: 0.3775912, y: -0.713218, z: 0.16221178, w: 0.008055212} + outSlope: {x: 0.3775912, y: -0.713218, z: 0.16221178, w: 0.008055212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.025924236, y: -0.02318637, z: -0.037823133, w: 0.99867904} + inSlope: {x: 0.75697577, y: -1.4072177, z: 0.7013925, w: -0.027828429} + outSlope: {x: 0.75697577, y: -1.4072177, z: 0.7013925, w: -0.027828429} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: 0.058032077, y: -0.08199729, z: -0.006719909, w: 0.9949189} + inSlope: {x: 0.8753033, y: -1.1620817, z: 0.7276788, w: -0.13328362} + outSlope: {x: 0.8753033, y: -1.1620817, z: 0.7276788, w: -0.13328362} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.09886619, y: -0.12002653, z: 0.02281677, w: 0.9875721} + inSlope: {x: 0.70734584, y: -0.819343, z: 0.3670437, w: -0.16211775} + outSlope: {x: 0.70734584, y: -0.819343, z: 0.3670437, w: -0.16211775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.11697755, y: -0.15027586, z: 0.023867058, w: 0.9814091} + inSlope: {x: 0.434181, y: -0.72656167, z: 0.010368239, w: -0.16336653} + outSlope: {x: 0.434181, y: -0.72656167, z: 0.010368239, w: -0.16336653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.13504794, y: -0.18057334, z: 0.02368079, w: 0.9739582} + inSlope: {x: 0.15816863, y: -0.89068484, z: 0.031566188, w: -0.19236079} + outSlope: {x: 0.15816863, y: -0.89068484, z: 0.031566188, w: -0.19236079} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 0.13015828, y: -0.22449963, z: 0.026497575, w: 0.965379} + inSlope: {x: -0.23209427, y: -0.8247282, z: -0.10187729, w: -0.1510706} + outSlope: {x: -0.23209427, y: -0.8247282, z: -0.10187729, w: -0.1510706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08941906, y: -0.26638052, z: 0.008899517, w: 0.95967} + inSlope: {x: -0.7315582, y: -0.35916477, z: -0.10616711, w: -0.03273295} + outSlope: {x: -0.7315582, y: -0.35916477, z: -0.10616711, w: -0.03273295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.033013403, y: -0.28595987, z: -0.005784732, w: 0.9576553} + inSlope: {x: -0.9227153, y: -0.058972448, z: -0.26852363, w: -0.04741428} + outSlope: {x: -0.9227153, y: -0.058972448, z: -0.26852363, w: -0.04741428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.23384057, y: -0.29147324, z: -0.08099056, w: 0.92401433} + inSlope: {x: -0.789365, y: 0.048410974, z: -0.2038179, w: -0.20261472} + outSlope: {x: -0.789365, y: 0.048410974, z: -0.2038179, w: -0.20261472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49207237, y: -0.26539415, z: -0.1617077, w: 0.81319207} + inSlope: {x: -1.0209788, y: 0.17019348, z: -0.3408086, w: -0.63296044} + outSlope: {x: -1.0209788, y: 0.17019348, z: -0.3408086, w: -0.63296044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: -0.62666094, y: -0.23528586, z: -0.20726725, w: 0.7134262} + inSlope: {x: -1.1096452, y: 0.3315916, z: -0.39024746, w: -0.9838245} + outSlope: {x: -1.1096452, y: 0.3315916, z: -0.39024746, w: -0.9838245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.6733167, y: -0.22068645, z: -0.22331879, w: 0.6693809} + inSlope: {x: -0.24800962, y: 0.06405975, z: -0.0737683, w: -0.22526512} + outSlope: {x: -0.24800962, y: 0.06405975, z: -0.0737683, w: -0.22526512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: -0.6473283, y: -0.22994758, z: -0.21341458, w: 0.69465417} + inSlope: {x: 0.58207405, y: -0.18216136, z: 0.20198324, w: 0.54841053} + outSlope: {x: 0.58207405, y: -0.18216136, z: 0.20198324, w: 0.54841053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: -0.58487093, y: -0.24267365, z: -0.18933144, w: 0.75045925} + inSlope: {x: -0.13120797, y: 0.05193919, z: -0.023654956, w: -0.09224799} + outSlope: {x: -0.13120797, y: 0.05193919, z: -0.023654956, w: -0.09224799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.64733243, y: -0.22261943, z: -0.2060769, w: 0.6992379} + inSlope: {x: -0.5879594, y: 0.19185555, z: -0.16648524, w: -0.5361698} + outSlope: {x: -0.5879594, y: 0.19185555, z: -0.16648524, w: -0.5361698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.67370486, y: -0.21386155, z: -0.2135997, w: 0.6743591} + inSlope: {x: -0.13970797, y: 0.049434923, z: -0.034984604, w: -0.12623969} + outSlope: {x: -0.13970797, y: 0.049434923, z: -0.034984604, w: -0.12623969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0.6589747, y: -0.21849987, z: -0.20899227, w: 0.68871796} + inSlope: {x: 0.30367768, y: -0.09434348, z: 0.0946641, w: 0.29139966} + outSlope: {x: 0.30367768, y: -0.09434348, z: 0.0946641, w: 0.29139966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.6513574, y: -0.22106178, z: -0.20698728, w: 0.69571656} + inSlope: {x: -0.2574006, y: 0.075709656, z: -0.0836474, w: -0.24376208} + outSlope: {x: -0.2574006, y: 0.075709656, z: -0.0836474, w: -0.24376208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3333335 + value: {x: -0.67385113, y: -0.21420206, z: -0.21421221, w: 0.67391044} + inSlope: {x: -0.023291752, y: 0.0072662886, z: -0.0073839463, w: -0.022703819} + outSlope: {x: -0.023291752, y: 0.0072662886, z: -0.0073839463, w: -0.022703819} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.6641777, y: -0.21723047, z: -0.21113518, w: 0.6834477} + inSlope: {x: -0.0054438002, y: 0.001744505, z: -0.0017178627, w: -0.0053100493} + outSlope: {x: -0.0054438002, y: 0.001744505, z: -0.0017178627, w: -0.0053100493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.6746488, y: -0.21393764, z: -0.21446586, w: 0.6731152} + inSlope: {x: -0.046831805, y: 0.014813444, z: -0.014968833, w: -0.046122987} + outSlope: {x: -0.046831805, y: 0.014813444, z: -0.014968833, w: -0.046122987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: -0.6720043, y: -0.21476324, z: -0.21363384, w: 0.67575705} + inSlope: {x: -0.049110282, y: 0.015715811, z: -0.01569489, w: -0.048944343} + outSlope: {x: -0.049110282, y: 0.015715811, z: -0.01569489, w: -0.048944343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.125 + value: {x: -0.6746844, y: -0.21429157, z: -0.21499665, w: 0.6727975} + inSlope: {x: 0.0022931136, y: -0.014189082, z: -0.015778383, w: -0.007259854} + outSlope: {x: 0.0022931136, y: -0.014189082, z: -0.015778383, w: -0.007259854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.6774183, y: -0.21527737, z: -0.21817671, w: 0.6686995} + inSlope: {x: -0.0019640997, y: 0.00041628044, z: -0.00088870863, w: -0.0021486364} + outSlope: {x: -0.0019640997, y: 0.00041628044, z: -0.00088870863, w: -0.0021486364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block02Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.041666668 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: 0.00039170557, y: 0.0004774975, z: 0.00025210716, w: 0} + outSlope: {x: 0.00039170557, y: 0.0004774975, z: 0.00025210716, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.000032642132, y: 0.00003979146, z: 0.000021008931, w: 1} + inSlope: {x: 0.04517642, y: 0.42796192, z: 0.25020364, w: -0.010329009} + outSlope: {x: 0.04517642, y: 0.42796192, z: 0.25020364, w: -0.010329009} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.0037647015, y: 0.03566349, z: 0.020850303, w: 0.99913925} + inSlope: {x: 0.14328927, y: 1.8358886, z: 0.11758542, w: -0.14279793} + outSlope: {x: 0.14328927, y: 1.8358886, z: 0.11758542, w: -0.14279793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.011973416, y: 0.15303051, z: 0.009819791, w: 0.9881002} + inSlope: {x: 0.17759186, y: 2.7953594, z: -0.27241302, w: -0.43285125} + outSlope: {x: 0.17759186, y: 2.7953594, z: -0.27241302, w: -0.43285125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.0264855, y: 0.48601526, z: -0.03500727, w: 0.87284714} + inSlope: {x: 0.067628086, y: 2.4164114, z: -0.4474864, w: -1.3601116} + outSlope: {x: 0.067628086, y: 2.4164114, z: -0.4474864, w: -1.3601116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.029177422, y: 0.581923, z: -0.053164825, w: 0.8109795} + inSlope: {x: 0.448366, y: 2.0646276, z: -0.11480992, w: -1.4871072} + outSlope: {x: 0.448366, y: 2.0646276, z: -0.11480992, w: -1.4871072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.06384932, y: 0.6580675, z: -0.04457476, w: 0.7489216} + inSlope: {x: 0.85579824, y: 1.7313435, z: 0.1830612, w: -1.5832763} + outSlope: {x: 0.85579824, y: 1.7313435, z: 0.1830612, w: -1.5832763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.17699762, y: 0.8357636, z: -0.03173072, w: 0.5188104} + inSlope: {x: 0.8869655, y: 1.0413085, z: -0.0533946, w: -1.961795} + outSlope: {x: 0.8869655, y: 1.0413085, z: -0.0533946, w: -1.961795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 0.23941688, y: 0.89285004, z: -0.059421375, w: 0.37678584} + inSlope: {x: 0.6495975, y: 0.35439992, z: -0.58430755, w: -1.3201108} + outSlope: {x: 0.6495975, y: 0.35439992, z: -0.58430755, w: -1.3201108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2926401, y: 0.9066083, z: -0.11483893, w: 0.2814875} + inSlope: {x: 0.6178326, y: 0.067500085, z: -0.6802866, w: -1.13761} + outSlope: {x: 0.6178326, y: 0.067500085, z: -0.6802866, w: -1.13761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0.3179574, y: 0.90758294, z: -0.1433582, w: 0.23376228} + inSlope: {x: 0.58054495, y: 0.10041411, z: -0.28893933, w: -1.3977826} + outSlope: {x: 0.58054495, y: 0.10041411, z: -0.28893933, w: -1.3977826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.37993857, y: 0.91926795, z: -0.10272149, w: 0.006437891} + inSlope: {x: 0.40613693, y: -0.106970154, z: 0.4232751, w: -1.9165995} + outSlope: {x: 0.40613693, y: -0.106970154, z: 0.4232751, w: -1.9165995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.42421803, y: 0.8500712, z: -0.03755609, w: -0.3098509} + inSlope: {x: 0.113542914, y: -0.7116132, z: 0.35212877, w: -1.8392584} + outSlope: {x: 0.113542914, y: -0.7116132, z: 0.35212877, w: -1.8392584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0.42725408, y: 0.8174624, z: -0.023303563, w: -0.38557243} + inSlope: {x: 0.5286309, y: -0.9080205, z: -0.302018, w: -1.3316178} + outSlope: {x: 0.5286309, y: -0.9080205, z: -0.302018, w: -1.3316178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.5324934, y: 0.7212816, z: -0.13973697, w: -0.42033008} + inSlope: {x: 1.4603968, y: -1.3512232, z: -1.8454947, w: 0.14484009} + outSlope: {x: 1.4603968, y: -1.3512232, z: -1.8454947, w: 0.14484009} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.75645477, y: 0.30264825, z: -0.54645497, w: -0.19382258} + inSlope: {x: 0.27414468, y: -1.8382794, z: -1.1992745, w: 1.5803313} + outSlope: {x: 0.27414468, y: -1.8382794, z: -1.1992745, w: 1.5803313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: 0.76339495, y: 0.22597331, z: -0.59224015, w: -0.12416037} + inSlope: {x: 0.06076938, y: -1.8291757, z: -0.98662955, w: 1.7512901} + outSlope: {x: 0.06076938, y: -1.8291757, z: -0.98662955, w: 1.7512901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.7615189, y: 0.15021686, z: -0.62867415, w: -0.047881678} + inSlope: {x: 0.07227094, y: -2.1580825, z: -0.5372248, w: 1.3772725} + outSlope: {x: 0.07227094, y: -2.1580825, z: -0.5372248, w: 1.3772725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.7694175, y: 0.04613328, z: -0.63700885, w: -0.009387776} + inSlope: {x: 0.025603518, y: -2.497663, z: -0.16363904, w: 0.93793327} + outSlope: {x: 0.025603518, y: -2.497663, z: -0.16363904, w: 0.93793327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: 0.7636525, y: -0.057921812, z: -0.64231074, w: 0.030279463} + inSlope: {x: -0.059298135, y: -1.2352574, z: -0.020959694, w: 0.90329504} + outSlope: {x: -0.059298135, y: -1.2352574, z: -0.020959694, w: 0.90329504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.764476, y: -0.05680503, z: -0.6387555, w: 0.06588685} + inSlope: {x: -0.090465635, y: -0.10999401, z: -0.05502182, w: 0.511667} + outSlope: {x: -0.090465635, y: -0.10999401, z: -0.05502182, w: 0.511667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: 0.74749553, y: -0.07710703, z: -0.65489304, w: 0.080125116} + inSlope: {x: -0.20929947, y: -0.24048209, z: -0.18923083, w: 0.17435896} + outSlope: {x: -0.20929947, y: -0.24048209, z: -0.18923083, w: 0.17435896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.701051, y: -0.124937594, z: -0.6920123, w: 0.11847796} + inSlope: {x: -0.23628175, y: -0.21712284, z: -0.16701214, w: 0.1936107} + outSlope: {x: -0.23628175, y: -0.21712284, z: -0.16701214, w: 0.1936107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: 0.6911111, y: -0.1339064, z: -0.69885385, w: 0.12664053} + inSlope: {x: -0.19551286, y: -0.14548874, z: -0.11311614, w: 0.28817233} + outSlope: {x: -0.19551286, y: -0.14548874, z: -0.11311614, w: 0.28817233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.68475825, y: -0.13706167, z: -0.70143867, w: 0.14249232} + inSlope: {x: -0.119871974, y: -0.12891728, z: -0.0737551, w: 0.095846504} + outSlope: {x: -0.119871974, y: -0.12891728, z: -0.0737551, w: 0.095846504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.6783451, y: -0.14933048, z: -0.7076241, w: 0.12967853} + inSlope: {x: -0.047703177, y: -0.055141464, z: -0.052809376, w: -0.100051746} + outSlope: {x: -0.047703177, y: -0.055141464, z: -0.052809376, w: -0.100051746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: 0.6787219, y: -0.13609345, z: -0.7108491, w: 0.12453447} + inSlope: {x: 0.04255978, y: 0.24952042, z: -0.0073613976, w: -0.007884607} + outSlope: {x: 0.04255978, y: 0.24952042, z: -0.0073613976, w: -0.007884607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2083335 + value: {x: 0.6811994, y: -0.12246348, z: -0.71074647, w: 0.12573667} + inSlope: {x: 0.04054211, y: 0.22429258, z: -0.026012527, w: -0.14941052} + outSlope: {x: 0.04054211, y: 0.22429258, z: -0.026012527, w: -0.14941052} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2916667 + value: {x: 0.68401265, y: -0.10709383, z: -0.7147047, w: 0.09927123} + inSlope: {x: 0.054880753, y: 0.30969933, z: -0.034750633, w: -0.30171162} + outSlope: {x: 0.054880753, y: 0.30969933, z: -0.034750633, w: -0.30171162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0.6906746, y: -0.024734462, z: -0.72242606, w: 0.021386893} + inSlope: {x: -0.00035195705, y: 0.5852026, z: -0.04031112, w: -0.589887} + outSlope: {x: -0.00035195705, y: 0.5852026, z: -0.04031112, w: -0.589887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: 0.6899316, y: -0.0025438706, z: -0.7238664, w: -0.002352755} + inSlope: {x: -0.0075996295, y: 0.27882397, z: -0.016008921, w: -0.29847243} + outSlope: {x: -0.0075996295, y: 0.27882397, z: -0.016008921, w: -0.29847243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: 0.6902196, y: -0.0004907868, z: -0.7235851, w: -0.0046140794} + inSlope: {x: 0.005054004, y: 0.024473388, z: 0.004970319, w: -0.025991827} + outSlope: {x: 0.005054004, y: 0.024473388, z: 0.004970319, w: -0.025991827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: 0.6906697, y: 0.003674993, z: -0.7231517, w: -0.0036759344} + inSlope: {x: 0.018380608, y: -0.11486168, z: 0.018236127, w: 0.13278079} + outSlope: {x: 0.018380608, y: -0.11486168, z: 0.018236127, w: 0.13278079} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: 0.6919942, y: -0.00903159, z: -0.72182626, w: 0.005413383} + inSlope: {x: 0.019429905, y: -0.14415516, z: 0.019349081, w: 0.12706259} + outSlope: {x: 0.019429905, y: -0.14415516, z: 0.019349081, w: 0.12706259} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8333335 + value: {x: 0.69213223, y: 0.00007465947, z: -0.7217707, w: -0.0003764604} + inSlope: {x: 0.0020392, y: 0.03309634, z: 0.0018882807, w: -0.01638239} + outSlope: {x: 0.0020392, y: 0.03309634, z: 0.0018882807, w: -0.01638239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.625 + value: {x: 0.6936947, y: 0.000071653514, z: -0.7202691, w: -0.00037196119} + inSlope: {x: 0.00095987413, y: 0.000009003302, z: 0.0009233961, w: -0.00000901126} + outSlope: {x: 0.00095987413, y: 0.000009003302, z: 0.0009233961, w: -0.00000901126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.694174, y: 0.00007627972, z: -0.71980715, w: -0.0003754614} + inSlope: {x: 0.00095844636, y: 0.00000954423, z: 0.00092411396, w: -0.0000050326535} + outSlope: {x: 0.00095844636, y: 0.00000954423, z: 0.00092411396, w: -0.0000050326535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block03Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 4.125 + 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: wall_high_model_skeleton/wall_root/block04Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: -0.0011850796, y: 0, z: 0, w: 0} + outSlope: {x: -0.0011850796, 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.125 + value: {x: 0.0031891905, y: 0.0077254516, z: 0.014156426, w: 0.9998649} + inSlope: {x: 0.122823656, y: 0.30138484, z: 0.5540265, w: -0.017243383} + outSlope: {x: 0.122823656, y: 0.30138484, z: 0.5540265, w: -0.017243383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: 0.017434249, y: 0.042457897, z: 0.07816623, w: 0.9958833} + inSlope: {x: 0.17102918, y: 0.41441548, z: 0.7673695, w: -0.08092547} + outSlope: {x: 0.17102918, y: 0.41441548, z: 0.7673695, w: -0.08092547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.043806527, y: 0.08945274, z: 0.16985615, w: 0.98042244} + inSlope: {x: 0.44513422, y: 0.17103279, z: 0.5604037, w: -0.13181952} + outSlope: {x: 0.44513422, y: 0.17103279, z: 0.5604037, w: -0.13181952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.118592545, y: 0.093487605, z: 0.22533238, w: 0.9625078} + inSlope: {x: 0.5943731, y: 0.025744833, z: 0.43639392, w: -0.1779006} + outSlope: {x: 0.5943731, y: 0.025744833, z: 0.43639392, w: -0.1779006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0.26507166, y: 0.095897034, z: 0.32901415, w: 0.9012716} + inSlope: {x: 0.5726764, y: -0.0057979557, z: 0.39040312, w: -0.3102687} + outSlope: {x: 0.5726764, y: -0.0057979557, z: 0.39040312, w: -0.3102687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.2887632, y: 0.09555084, z: 0.34505656, w: 0.8879312} + inSlope: {x: 0.005217463, y: 0.13447168, z: 0.17294009, w: -0.08150215} + outSlope: {x: 0.005217463, y: 0.13447168, z: 0.17294009, w: -0.08150215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.26550642, y: 0.10710301, z: 0.3434258, w: 0.89447975} + inSlope: {x: -0.52404135, y: 0.18430772, z: -0.17148247, w: 0.19950047} + outSlope: {x: -0.52404135, y: 0.18430772, z: -0.17148247, w: 0.19950047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.21094261, y: 0.101094835, z: 0.32793993, w: 0.9152805} + inSlope: {x: -0.97027063, y: -0.1941574, z: 0.18309961, w: 0.1717473} + outSlope: {x: -0.97027063, y: -0.1941574, z: 0.18309961, w: 0.1717473} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: 0.11694317, y: 0.0882963, z: 0.36313033, w: 0.9201437} + inSlope: {x: -1.1394374, y: -0.15500587, z: 0.39883488, w: 0.0022730632} + outSlope: {x: -1.1394374, y: -0.15500587, z: 0.39883488, w: 0.0022730632} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06928409, y: 0.081812896, z: 0.3792609, w: 0.91905797} + inSlope: {x: -1.1448371, y: -0.15730344, z: 0.37281114, w: -0.053426675} + outSlope: {x: -1.1448371, y: -0.15730344, z: 0.37281114, w: -0.053426675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0.021540029, y: 0.075187676, z: 0.39419794, w: 0.9156915} + inSlope: {x: 0.28174233, y: -0.21522956, z: -0.23431565, w: 0.08608909} + outSlope: {x: 0.28174233, y: -0.21522956, z: -0.23431565, w: 0.08608909} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.092762455, y: 0.0638771, z: 0.35973465, w: 0.92623204} + inSlope: {x: 1.5297352, y: -0.27239853, z: -0.9285966, w: 0.2345383} + outSlope: {x: 1.5297352, y: -0.27239853, z: -0.9285966, w: 0.2345383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.25860205, y: 0.030633727, z: 0.22536336, w: 0.93882793} + inSlope: {x: 1.2841166, y: -0.25386384, z: -1.1323805, w: -0.07350547} + outSlope: {x: 1.2841166, y: -0.25386384, z: -1.1323805, w: -0.07350547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.4622581, y: -0.009560379, z: 0.028209195, w: 0.8862451} + inSlope: {x: 1.1667547, y: -0.20788407, z: -1.1334267, w: -0.57052696} + outSlope: {x: 1.1667547, y: -0.20788407, z: -1.1334267, w: -0.57052696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.68084943, y: -0.012405366, z: -0.12343889, w: 0.72184} + inSlope: {x: 0.9147922, y: 0.04537402, z: -0.6236664, w: -0.9685724} + outSlope: {x: 0.9147922, y: 0.04537402, z: -0.6236664, w: -0.9685724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: 0.74163276, y: 0.00011046377, z: -0.16179767, w: 0.65100104} + inSlope: {x: 0.46293032, y: 0.32873446, z: -0.185406, w: -0.5655687} + outSlope: {x: 0.46293032, y: 0.32873446, z: -0.185406, w: -0.5655687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: 0.78365034, y: 0.050812908, z: -0.16898353, w: 0.59561294} + inSlope: {x: 0.31389552, y: 0.40374738, z: -0.049216717, w: -0.4613705} + outSlope: {x: 0.31389552, y: 0.40374738, z: -0.049216717, w: -0.4613705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: 0.81992525, y: 0.10130319, z: -0.17404713, w: 0.5358805} + inSlope: {x: 0.24075276, y: 0.31450412, z: -0.05752284, w: -0.4422309} + outSlope: {x: 0.24075276, y: 0.31450412, z: -0.05752284, w: -0.4422309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.8285453, y: 0.11075474, z: -0.17742573, w: 0.5193902} + inSlope: {x: 0.13651383, y: 0.0052038506, z: -0.14770654, w: -0.26650098} + outSlope: {x: 0.13651383, y: 0.0052038506, z: -0.14770654, w: -0.26650098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.83385795, y: 0.09265636, z: -0.19525595, w: 0.50790834} + inSlope: {x: 0.05991114, y: -0.21790564, z: -0.21286972, w: -0.14044449} + outSlope: {x: 0.05991114, y: -0.21790564, z: -0.21286972, w: -0.14044449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2083335 + value: {x: 0.84101635, y: 0.085585825, z: -0.21053506, w: 0.4909599} + inSlope: {x: 0.03238681, y: 0.15836194, z: 0.03916949, w: -0.0670535} + outSlope: {x: 0.03238681, y: 0.15836194, z: 0.03916949, w: -0.0670535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: 0.84038764, y: 0.13666731, z: -0.1899816, w: 0.48885342} + inSlope: {x: -0.06795202, y: 0.09837627, z: 0.023008304, w: 0.09833818} + outSlope: {x: -0.06795202, y: 0.09837627, z: 0.023008304, w: 0.09833818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: 0.80917066, y: 0.13180177, z: -0.20009078, w: 0.53650236} + inSlope: {x: -0.22556037, y: 0.06927346, z: 0.022666981, w: 0.3311258} + outSlope: {x: -0.22556037, y: 0.06927346, z: 0.022666981, w: 0.3311258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8333335 + value: {x: 0.72925055, y: 0.15528142, z: -0.17560259, w: 0.64284134} + inSlope: {x: -0.6276277, y: 0.1258545, z: 0.22762454, w: 0.7389902} + outSlope: {x: -0.6276277, y: 0.1258545, z: 0.22762454, w: 0.7389902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9166667 + value: {x: 0.6760188, y: 0.16306703, z: -0.15596852, w: 0.7014853} + inSlope: {x: -0.31086886, y: 0.040599268, z: 0.108219594, w: 0.32594213} + outSlope: {x: -0.31086886, y: 0.040599268, z: 0.108219594, w: 0.32594213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9583335 + value: {x: 0.6748206, y: 0.16326484, z: -0.15576723, w: 0.70263666} + inSlope: {x: -0.027963664, y: 0.0034407373, z: 0.0034704204, w: 0.026829265} + outSlope: {x: -0.027963664, y: 0.0034407373, z: 0.0034704204, w: 0.026829265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.125 + value: {x: 0.6743799, y: 0.1629279, z: -0.15614311, w: 0.7030545} + inSlope: {x: 0.20714289, y: -0.04695096, z: -0.048397385, w: -0.20188075} + outSlope: {x: 0.20714289, y: -0.04695096, z: -0.048397385, w: -0.20188075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.2083335 + value: {x: 0.6980147, y: 0.15756285, z: -0.16156763, w: 0.6795921} + inSlope: {x: 0.09614511, y: -0.022027843, z: -0.021975629, w: -0.09719938} + outSlope: {x: 0.09614511, y: -0.022027843, z: -0.021975629, w: -0.09719938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.375 + value: {x: 0.6891776, y: 0.15955764, z: -0.15962267, w: 0.68854654} + inSlope: {x: -0.0013554109, y: -0.0001226667, z: -0.00027090358, w: 0.001322509} + outSlope: {x: -0.0013554109, y: -0.0001226667, z: -0.00027090358, w: 0.001322509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.68899953, y: 0.1598112, z: -0.15948072, w: 0.6886987} + inSlope: {x: 0.02183398, y: -0.004983206, z: -0.0051484304, w: -0.021851147} + outSlope: {x: 0.02183398, y: -0.004983206, z: -0.0051484304, w: -0.021851147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block05Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: -0.0014749932, y: 0, z: 0, w: 0} + outSlope: {x: -0.0014749932, 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.125 + value: {x: 0.0031791017, y: 0.016335966, z: 0.020879867, w: 0.9996435} + inSlope: {x: 0.18721595, y: 0.68146396, z: 0.76874566, w: -0.0455811} + outSlope: {x: 0.18721595, y: 0.68146396, z: 0.76874566, w: -0.0455811} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: 0.028041964, y: 0.09699283, z: 0.107251175, w: 0.9890921} + inSlope: {x: 0.29994524, y: 0.95799094, z: 1.0316265, w: -0.21431354} + outSlope: {x: 0.29994524, y: 0.95799094, z: 1.0316265, w: -0.21431354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06404809, y: 0.20474531, z: 0.23714796, w: 0.9474904} + inSlope: {x: 0.1379055, y: 0.45148456, z: 1.1160886, w: -0.38277778} + outSlope: {x: 0.1379055, y: 0.45148456, z: 1.1160886, w: -0.38277778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: 0.06585553, y: 0.22074556, z: 0.3334744, w: 0.9141823} + inSlope: {x: 0.018350955, y: 0.18013462, z: 1.134419, w: -0.45861548} + outSlope: {x: 0.018350955, y: 0.18013462, z: 1.134419, w: -0.45861548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.06727135, y: 0.24110998, z: 0.470696, w: 0.84604126} + inSlope: {x: 0.004800884, y: 0.14269435, z: 1.0559587, w: -0.62847847} + outSlope: {x: 0.004800884, y: 0.14269435, z: 1.0559587, w: -0.62847847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 0.06745338, y: 0.24674024, z: 0.5140324, w: 0.81874293} + inSlope: {x: 0.7834568, y: -0.21339059, z: 0.9535473, w: -0.62870705} + outSlope: {x: 0.7834568, y: -0.21339059, z: 0.9535473, w: -0.62870705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.13255936, y: 0.22332746, z: 0.55015826, w: 0.793649} + inSlope: {x: 1.8646975, y: -0.74797195, z: 0.78342557, w: -0.6802834} + outSlope: {x: 1.8646975, y: -0.74797195, z: 0.78342557, w: -0.6802834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22284481, y: 0.18440925, z: 0.57931787, w: 0.76205266} + inSlope: {x: 1.5251151, y: -1.2093244, z: 1.0282154, w: -0.9266785} + outSlope: {x: 1.5251151, y: -1.2093244, z: 1.0282154, w: -0.9266785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0.25965235, y: 0.12255038, z: 0.6358429, w: 0.7164258} + inSlope: {x: 0.8469538, y: -1.4999866, z: 1.2777946, w: -1.1842808} + outSlope: {x: 0.8469538, y: -1.4999866, z: 1.2777946, w: -1.1842808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.41623855, y: -0.31086528, z: 0.8246776, w: 0.22364068} + inSlope: {x: 0.17916763, y: -1.3432053, z: -0.043332882, w: -2.0409064} + outSlope: {x: 0.17916763, y: -1.3432053, z: -0.043332882, w: -2.0409064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0.4214258, y: -0.3652936, z: 0.8185745, w: 0.13746528} + inSlope: {x: 0.06790627, y: -1.2622287, z: -0.24824098, w: -2.0833435} + outSlope: {x: 0.06790627, y: -1.2622287, z: -0.24824098, w: -2.0833435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.4218974, y: -0.41605106, z: 0.80399084, w: 0.05002864} + inSlope: {x: -0.43665296, y: -0.64181495, z: 0.0235627, w: -0.98275596} + outSlope: {x: -0.43665296, y: -0.64181495, z: 0.0235627, w: -0.98275596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.38503808, y: -0.41877812, z: 0.82053804, w: 0.05556903} + inSlope: {x: -0.96695757, y: 0.04122395, z: 0.44455335, w: 0.32196718} + outSlope: {x: -0.96695757, y: 0.04122395, z: 0.44455335, w: 0.32196718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.25105575, y: -0.39680246, z: 0.87488353, w: 0.11873338} + inSlope: {x: -1.1033688, y: 0.2166866, z: 0.3478874, w: 0.49375486} + outSlope: {x: -1.1033688, y: 0.2166866, z: 0.3478874, w: 0.49375486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: -0.3587152, y: -0.19781943, z: 0.8482358, w: 0.3356889} + inSlope: {x: -1.0567422, y: 0.49029166, z: -0.44167238, w: 0.27563474} + outSlope: {x: -1.0567422, y: 0.49029166, z: -0.44167238, w: 0.27563474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: -0.40226552, y: -0.17706668, z: 0.8286455, w: 0.34666488} + inSlope: {x: -0.4216465, y: 0.0038605928, z: -0.19612259, w: 0.020384088} + outSlope: {x: -0.4216465, y: 0.0038605928, z: -0.19612259, w: 0.020384088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.39385238, y: -0.19749771, z: 0.83189225, w: 0.33738756} + inSlope: {x: 0.20472433, y: -0.48721123, z: 0.07251689, w: -0.2249167} + outSlope: {x: 0.20472433, y: -0.48721123, z: 0.07251689, w: -0.2249167} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2083335 + value: {x: -0.31930465, y: -0.3545901, z: 0.84102464, w: 0.25492766} + inSlope: {x: 0.20578417, y: -0.40336192, z: -0.023567732, w: -0.21946521} + outSlope: {x: 0.20578417, y: -0.40336192, z: -0.023567732, w: -0.21946521} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.31280264, y: -0.3861963, z: 0.82778984, w: 0.26032847} + inSlope: {x: -0.004314772, y: -0.09960382, z: -0.07166134, w: 0.07494006} + outSlope: {x: -0.004314772, y: -0.09960382, z: -0.07166134, w: 0.07494006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8333335 + value: {x: -0.3505108, y: -0.39281934, z: 0.76961493, w: 0.36128655} + inSlope: {x: -0.17507441, y: 0.05837496, z: -0.26396972, w: 0.45376554} + outSlope: {x: -0.17507441, y: 0.05837496, z: -0.26396972, w: 0.45376554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.0416667 + value: {x: -0.40052718, y: -0.3638218, z: 0.6759777, w: 0.5002658} + inSlope: {x: -0.30669641, y: 0.25927293, z: -0.7336972, w: 0.9256822} + outSlope: {x: -0.30669641, y: 0.25927293, z: -0.7336972, w: 0.9256822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.0833335 + value: {x: -0.41361773, y: -0.35186654, z: 0.64241433, w: 0.5407533} + inSlope: {x: 0.105395675, y: -0.1847628, z: -0.893304, w: 1.0030485} + outSlope: {x: 0.105395675, y: -0.1847628, z: -0.893304, w: 1.0030485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.125 + value: {x: -0.39174432, y: -0.37921858, z: 0.6015358, w: 0.58385307} + inSlope: {x: 0.54712, y: -0.6362743, z: -1.0153049, w: 0.99991786} + outSlope: {x: 0.54712, y: -0.6362743, z: -1.0153049, w: 0.99991786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: -0.36802444, y: -0.40488935, z: 0.55780566, w: 0.6240797} + inSlope: {x: 0.38806486, y: -0.39931327, z: -0.649182, w: 0.59259826} + outSlope: {x: 0.38806486, y: -0.39931327, z: -0.649182, w: 0.59259826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.2083335 + value: {x: -0.35940552, y: -0.41249475, z: 0.5474372, w: 0.63323635} + inSlope: {x: 0.20680603, y: -0.1822434, z: -0.25263286, w: 0.217046} + outSlope: {x: 0.20680603, y: -0.1822434, z: -0.25263286, w: 0.217046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.3333335 + value: {x: -0.3330188, y: -0.43475512, z: 0.515008, w: 0.659434} + inSlope: {x: 0.21589622, y: -0.17224553, z: -0.26595664, w: 0.20321006} + outSlope: {x: 0.21589622, y: -0.17224553, z: -0.26595664, w: 0.20321006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.375 + value: {x: -0.3240668, y: -0.4418195, z: 0.5038147, w: 0.6677926} + inSlope: {x: -0.023732953, y: 0.014804572, z: -0.26358807, w: 0.19674774} + outSlope: {x: -0.023732953, y: 0.014804572, z: -0.26358807, w: 0.19674774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.4166667 + value: {x: -0.3349966, y: -0.43352136, z: 0.49304232, w: 0.67582965} + inSlope: {x: -0.20164487, y: 0.15874714, z: -0.12776552, w: 0.09784322} + outSlope: {x: -0.20164487, y: 0.15874714, z: -0.12776552, w: 0.09784322} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5416667 + value: {x: -0.3460018, y: -0.42355353, z: 0.50866896, w: 0.6649369} + inSlope: {x: 0.005222072, y: 0.0020853253, z: 0.36015812, w: -0.27483934} + outSlope: {x: 0.005222072, y: 0.0020853253, z: 0.36015812, w: -0.27483934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5833335 + value: {x: -0.3445474, y: -0.42471778, z: 0.5273823, w: 0.6502075} + inSlope: {x: -0.21520206, y: 0.075026765, z: 0.38807076, w: -0.3829405} + outSlope: {x: -0.21520206, y: 0.075026765, z: 0.38807076, w: -0.3829405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.6666667 + value: {x: -0.37969607, y: -0.41055673, z: 0.55860096, w: 0.61256754} + inSlope: {x: -0.35736826, y: 0.18240488, z: 0.47262222, w: -0.5331413} + outSlope: {x: -0.35736826, y: 0.18240488, z: 0.47262222, w: -0.5331413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.75 + value: {x: -0.4081595, y: -0.39353913, z: 0.59562373, w: 0.56900364} + inSlope: {x: -0.159767, y: 0.0888713, z: 0.16163066, w: -0.21296047} + outSlope: {x: -0.159767, y: 0.0888713, z: 0.16163066, w: -0.21296047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.8333335 + value: {x: -0.40588695, y: -0.3958645, z: 0.5920842, w: 0.5726983} + inSlope: {x: 0.027060654, y: -0.027703669, z: -0.042338885, w: 0.043805875} + outSlope: {x: 0.027060654, y: -0.027703669, z: -0.042338885, w: 0.043805875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.9166667 + value: {x: -0.4036499, y: -0.3981559, z: 0.58856773, w: 0.5763043} + inSlope: {x: 0.008633835, y: 0.020630438, z: -0.14701839, w: 0.16776434} + outSlope: {x: 0.008633835, y: 0.020630438, z: -0.14701839, w: 0.16776434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.9583335 + value: {x: -0.4040553, y: -0.3952844, z: 0.5780828, w: 0.58848095} + inSlope: {x: 0.04393299, y: 0.020446539, z: -0.02576933, w: 0.07063665} + outSlope: {x: 0.04393299, y: 0.020446539, z: -0.02576933, w: 0.07063665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4 + value: {x: -0.39998883, y: -0.396452, z: 0.58642024, w: 0.58219075} + inSlope: {x: 0.08127874, y: -0.024324033, z: 0.10636744, w: -0.066645026} + outSlope: {x: 0.08127874, y: -0.024324033, z: 0.10636744, w: -0.066645026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.39676565, y: -0.39600277, z: 0.5844855, w: 0.5866308} + inSlope: {x: -0.007314233, y: 0.011064333, z: 0.025139904, w: -0.022476282} + outSlope: {x: -0.007314233, y: 0.011064333, z: 0.025139904, w: -0.022476282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block06Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: -0.00071894267, y: -0.0015864983, z: -0.0003610764, w: 0} + outSlope: {x: -0.00071894267, y: -0.0015864983, z: -0.0003610764, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.00000829626, y: 0, z: -0, w: 1} + inSlope: {x: 0.038373593, y: 0.023225578, z: 0.1063009, w: -0.0005500317} + outSlope: {x: 0.038373593, y: 0.023225578, z: 0.1063009, w: -0.0005500317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.0031678432, y: 0.0018693607, z: 0.008843363, w: 0.99995416} + inSlope: {x: 0.29699638, y: -0.004001379, z: 0.6294587, w: -0.020199535} + outSlope: {x: 0.29699638, y: -0.004001379, z: 0.6294587, w: -0.020199535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.024741406, y: -0.00033344858, z: 0.0524549, w: 0.9983167} + inSlope: {x: 0.5176214, y: -0.05699638, z: 1.0441699, w: -0.06768965} + outSlope: {x: 0.5176214, y: -0.05699638, z: 1.0441699, w: -0.06768965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.25011924, y: -0.039130583, z: 0.4989807, w: 0.8288109} + inSlope: {x: 0.44636172, y: -0.10616494, z: 0.85375524, w: -0.6537045} + outSlope: {x: 0.44636172, y: -0.10616494, z: 0.85375524, w: -0.6537045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26853588, y: -0.04365625, z: 0.5338792, w: 0.800597} + inSlope: {x: 0.82510716, y: -0.10868878, z: 0.73547566, w: -0.7903379} + outSlope: {x: 0.82510716, y: -0.10868878, z: 0.73547566, w: -0.7903379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.3679518, y: -0.052916635, z: 0.58362436, w: 0.7219376} + inSlope: {x: 1.1607684, y: -0.11370213, z: 0.5237161, w: -1.023386} + outSlope: {x: 1.1607684, y: -0.11370213, z: 0.5237161, w: -1.023386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.41560888, y: -0.05766316, z: 0.60391337, w: 0.6776672} + inSlope: {x: 1.2040977, y: 0.3694057, z: 0.7876407, w: -1.4765482} + outSlope: {x: 1.2040977, y: 0.3694057, z: 0.7876407, w: -1.4765482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.46829334, y: -0.022132814, z: 0.6492611, w: 0.59889185} + inSlope: {x: 1.144305, y: 1.741375, z: 1.463522, w: -2.7071013} + outSlope: {x: 1.144305, y: 1.741375, z: 1.463522, w: -2.7071013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.5109676, y: 0.08745133, z: 0.7258735, w: 0.4520755} + inSlope: {x: 0.76698375, y: 2.3901062, z: 1.427669, w: -3.4836342} + outSlope: {x: 0.76698375, y: 2.3901062, z: 1.427669, w: -3.4836342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.5322086, y: 0.17704265, z: 0.7682335, w: 0.30858907} + inSlope: {x: 0.34480673, y: 2.0646403, z: 0.7189504, w: -3.5689788} + outSlope: {x: 0.34480673, y: 2.0646403, z: 0.7189504, w: -3.5689788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.48100108, y: 0.44509828, z: 0.6848761, w: -0.31854397} + inSlope: {x: -0.9290981, y: 1.0423739, z: -1.6904564, w: -3.581263} + outSlope: {x: -0.9290981, y: 1.0423739, z: -1.6904564, w: -3.581263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.43627048, y: 0.48191336, z: 0.60283405, w: -0.46262157} + inSlope: {x: -0.23593679, y: 0.5971904, z: -1.7602732, w: -2.208953} + outSlope: {x: -0.23593679, y: 0.5971904, z: -1.7602732, w: -2.208953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.46133977, y: 0.49486414, z: 0.5381866, w: -0.5026233} + inSlope: {x: 1.2959887, y: 0.12555638, z: -1.2922595, w: -0.027790636} + outSlope: {x: 1.2959887, y: 0.12555638, z: -1.2922595, w: -0.027790636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.5442695, y: 0.49237642, z: 0.49514568, w: -0.46493757} + inSlope: {x: 1.9263036, y: -0.12740219, z: -1.0933571, w: 0.9556945} + outSlope: {x: 1.9263036, y: -0.12740219, z: -1.0933571, w: 0.9556945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.93613005, y: 0.32392126, z: 0.087575376, w: -0.10519565} + inSlope: {x: 0.6443616, y: -0.97799945, z: -1.5671921, w: 1.4167824} + outSlope: {x: 0.6443616, y: -0.97799945, z: -1.5671921, w: 1.4167824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.924764, y: 0.02532557, z: -0.28710404, w: 0.24847822} + inSlope: {x: -0.7332926, y: -1.3263233, z: -1.3268061, w: 1.3313106} + outSlope: {x: -0.7332926, y: -1.3263233, z: -1.3268061, w: 1.3313106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.84749204, y: -0.07770571, z: -0.38608402, w: 0.35589072} + inSlope: {x: -1.0265553, y: -0.882009, z: -0.9289232, w: 1.284755} + outSlope: {x: -1.0265553, y: -0.882009, z: -0.9289232, w: 1.284755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: 0.75552636, y: -0.12946817, z: -0.4465243, w: 0.46155602} + inSlope: {x: -1.2221935, y: -0.60671496, z: -0.6428486, w: 1.2085152} + outSlope: {x: -1.2221935, y: -0.60671496, z: -0.6428486, w: 1.2085152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2916667 + value: {x: 0.1494021, y: -0.3031035, z: -0.53187674, w: 0.7764756} + inSlope: {x: -1.8635166, y: -0.25698233, z: 0.20320019, w: 0.39759272} + outSlope: {x: -1.8635166, y: -0.25698233, z: 0.20320019, w: 0.39759272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3333335 + value: {x: 0.07136594, y: -0.31259724, z: -0.5214981, w: 0.7907146} + inSlope: {x: -1.4110792, y: 0.08823816, z: 0.16592708, w: 0.3058471} + outSlope: {x: -1.4110792, y: 0.08823816, z: 0.16592708, w: 0.3058471} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: 0.0013811053, y: -0.27189466, z: -0.51605725, w: 0.81225383} + inSlope: {x: -0.74026525, y: 0.5640961, z: 0.06258118, w: 0.22986701} + outSlope: {x: -0.74026525, y: 0.5640961, z: 0.06258118, w: 0.22986701} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.75 + value: {x: -0.24312298, y: -0.075710416, z: -0.4690312, w: 0.8456766} + inSlope: {x: -0.69678783, y: 0.6247412, z: 0.20935196, w: -0.02817462} + outSlope: {x: -0.69678783, y: 0.6247412, z: 0.20935196, w: -0.02817462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8333335 + value: {x: -0.2960331, y: -0.017085146, z: -0.46411708, w: 0.8346663} + inSlope: {x: -0.533623, y: 0.8366145, z: -0.21206707, w: -0.29342556} + outSlope: {x: -0.533623, y: 0.8366145, z: -0.21206707, w: -0.29342556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3 + value: {x: -0.3728418, y: 0.13044655, z: -0.51279247, w: 0.7622444} + inSlope: {x: -0.42611188, y: 0.8697052, z: -0.24598172, w: -0.5227423} + outSlope: {x: -0.42611188, y: 0.8697052, z: -0.24598172, w: -0.5227423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.0833335 + value: {x: -0.4068765, y: 0.20205158, z: -0.53118503, w: 0.7151707} + inSlope: {x: -0.39006472, y: 0.84590554, z: -0.19607821, w: -0.60653174} + outSlope: {x: -0.39006472, y: 0.84590554, z: -0.19607821, w: -0.60653174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.125 + value: {x: -0.4227213, y: 0.23696645, z: -0.5388808, w: 0.6890291} + inSlope: {x: -0.23826735, y: 0.9173147, z: -0.5329473, w: -0.90740997} + outSlope: {x: -0.23826735, y: 0.9173147, z: -0.5329473, w: -0.90740997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: -0.42673206, y: 0.27849442, z: -0.57559735, w: 0.6395532} + inSlope: {x: 0.18242455, y: 1.0507789, z: -0.7371869, w: -0.9864981} + outSlope: {x: 0.18242455, y: 1.0507789, z: -0.7371869, w: -0.9864981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.2083335 + value: {x: -0.40751922, y: 0.32453153, z: -0.6003132, w: 0.60682076} + inSlope: {x: 0.48049715, y: 1.0868374, z: -0.5640719, w: -0.8164824} + outSlope: {x: 0.48049715, y: 1.0868374, z: -0.5640719, w: -0.8164824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.25 + value: {x: -0.38669068, y: 0.36906412, z: -0.6226033, w: 0.57151306} + inSlope: {x: 0.41074914, y: 0.7580282, z: -0.25193843, w: -0.44796693} + outSlope: {x: 0.41074914, y: 0.7580282, z: -0.25193843, w: -0.44796693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.3333335 + value: {x: -0.36389425, y: 0.3933491, z: -0.6087448, w: 0.5850532} + inSlope: {x: 0.22503218, y: 0.1366873, z: 0.30816466, w: 0.36868894} + outSlope: {x: 0.22503218, y: 0.1366873, z: 0.30816466, w: 0.36868894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.4583335 + value: {x: -0.33866122, y: 0.4005603, z: -0.5755989, w: 0.6273324} + inSlope: {x: 0.041137308, y: -0.37213013, z: -0.048010044, w: 0.20963141} + outSlope: {x: 0.041137308, y: -0.37213013, z: -0.048010044, w: 0.20963141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5416667 + value: {x: -0.34387484, y: 0.3473511, z: -0.60125685, w: 0.6321294} + inSlope: {x: 0.034380134, y: -0.46501082, z: -0.4753409, w: -0.17879571} + outSlope: {x: 0.034380134, y: -0.46501082, z: -0.4753409, w: -0.17879571} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5833335 + value: {x: -0.33856034, y: 0.3346642, z: -0.6259074, w: 0.6177513} + inSlope: {x: 0.29800564, y: -0.020040318, z: -0.46123344, w: -0.29106915} + outSlope: {x: 0.29800564, y: -0.020040318, z: -0.46123344, w: -0.29106915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.625 + value: {x: -0.3190411, y: 0.345681, z: -0.63969296, w: 0.6078736} + inSlope: {x: 0.3348552, y: 0.20247819, z: -0.1724409, w: -0.114103064} + outSlope: {x: 0.3348552, y: 0.20247819, z: -0.1724409, w: -0.114103064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.75 + value: {x: -0.3083534, y: 0.3499433, z: -0.6380986, w: 0.6126077} + inSlope: {x: -0.10369167, y: -0.20395434, z: 0.0529747, w: 0.117157415} + outSlope: {x: -0.10369167, y: -0.20395434, z: 0.0529747, w: 0.117157415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.8333335 + value: {x: -0.3221348, y: 0.32703736, z: -0.6314462, w: 0.6249412} + inSlope: {x: -0.010368943, y: -0.07276793, z: 0.00968077, w: 0.043718386} + outSlope: {x: -0.010368943, y: -0.07276793, z: 0.00968077, w: 0.043718386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.875 + value: {x: -0.31549922, y: 0.33085987, z: -0.6343254, w: 0.6233967} + inSlope: {x: 0.06819567, y: 0.026019786, z: -0.03480519, w: -0.014080604} + outSlope: {x: 0.06819567, y: 0.026019786, z: -0.03480519, w: -0.014080604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4 + value: {x: -0.32075262, y: 0.32351974, z: -0.63028634, w: 0.6286429} + inSlope: {x: -0.0047647255, y: -0.022476926, z: 0.015457476, w: 0.024705} + outSlope: {x: -0.0047647255, y: -0.022476926, z: 0.015457476, w: 0.024705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.3200737, y: 0.32196817, z: -0.6308164, w: 0.6292535} + inSlope: {x: 0.0054359646, y: -0.012416887, z: -0.0042314692, w: 0.0048823543} + outSlope: {x: 0.0054359646, y: -0.012416887, z: -0.0042314692, w: 0.0048823543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block07Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: 0, y: 0.41761664, z: 0, w: -0.0036334991} + outSlope: {x: 0, y: 0.41761664, z: 0, w: -0.0036334991} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0, y: 0.017400693, z: -0, w: 0.9998486} + inSlope: {x: 0, y: 0.7711919, z: 0, w: -0.0248065} + outSlope: {x: 0, y: 0.7711919, z: 0, w: -0.0248065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0, y: 0.21311092, z: -0, w: 0.977028} + inSlope: {x: 0, y: 1.984725, z: 0, w: -0.4387185} + outSlope: {x: 0, y: 1.984725, z: 0, w: -0.4387185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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, y: 0.55533105, z: -0, w: 0.8316294} + inSlope: {x: 0, y: 2.2167997, z: 0, w: -1.4897443} + outSlope: {x: 0, y: 2.2167997, z: 0, w: -1.4897443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 8.57896e-17, y: 0.7967768, z: -8.57896e-17, w: 0.60427374} + inSlope: {x: -3.0256156e-17, y: 1.5603215, z: 3.0256156e-17, w: -2.0544424} + outSlope: {x: -3.0256156e-17, y: 1.5603215, z: 3.0256156e-17, w: -2.0544424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 7.9306696e-17, y: 0.93154144, z: -7.9306696e-17, w: 0.3636352} + inSlope: {x: -6.068058e-17, y: 0.6454133, z: 6.068058e-17, w: -1.6364032} + outSlope: {x: -6.068058e-17, y: 0.6454133, z: 6.068058e-17, w: -1.6364032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 6.35626e-17, y: 0.99924666, z: -6.35626e-17, w: 0.03880942} + inSlope: {x: -9.430879e-17, y: 0.06288239, z: 9.430879e-17, w: -1.6030623} + outSlope: {x: -9.430879e-17, y: 0.06288239, z: 9.430879e-17, w: -1.6030623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: 4.567348e-17, y: 0.9737073, z: -4.567348e-17, w: -0.2278028} + inSlope: {x: -1.322009e-16, y: -0.41845125, z: 1.322009e-16, w: -1.7405536} + outSlope: {x: -1.322009e-16, y: -0.41845125, z: 1.322009e-16, w: -1.7405536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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: 3.958841e-17, y: 0.9521522, z: -3.958841e-17, w: -0.30562437} + inSlope: {x: -1.09729055e-16, y: -0.411709, z: 1.09729055e-16, w: -1.3803022} + outSlope: {x: -1.09729055e-16, y: -0.411709, z: 1.09729055e-16, w: -1.3803022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 3.652939e-17, y: 0.9393982, z: -3.652939e-17, w: -0.34282798} + inSlope: {x: -7.3290776e-17, y: -0.31971705, z: 7.3290776e-17, w: -0.87721205} + outSlope: {x: -7.3290776e-17, y: -0.31971705, z: 7.3290776e-17, w: -0.87721205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 1.0159671e-17, y: 0.78518337, z: -1.0159671e-17, w: -0.61926335} + inSlope: {x: -3.162874e-17, y: -0.22748128, z: 3.162874e-17, w: -0.28905547} + outSlope: {x: -3.162874e-17, y: -0.22748128, z: 3.162874e-17, w: -0.28905547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 6.638506e-19, y: 0.7125068, z: -6.638506e-19, w: -0.7016652} + inSlope: {x: -1.31427816e-17, y: -0.10644446, z: 1.31427816e-17, w: -0.10819326} + outSlope: {x: -1.31427816e-17, y: -0.10644446, z: 1.31427816e-17, w: -0.10819326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: -0, y: 0.70080614, z: 0, w: -0.7133518} + inSlope: {x: 0, y: -0.0002825263, z: 0, w: -0.0002775195} + outSlope: {x: 0, y: -0.0002825263, z: 0, w: -0.0002775195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0, y: 0.7003677, z: 0, w: -0.71378225} + inSlope: {x: 0, y: -0.00028324235, z: 0, w: -0.00027752027} + outSlope: {x: 0, y: -0.00028324235, z: 0, w: -0.00027752027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: 0, y: 0.0017182152, z: 0, w: 0} + outSlope: {x: 0, y: 0.0017182152, 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.20833334 + value: {x: 0, y: -0.04296726, z: -0, w: 0.9990765} + inSlope: {x: 0, y: -0.60823977, z: 0, w: -0.027869944} + outSlope: {x: 0, y: -0.60823977, z: 0, w: -0.027869944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0, y: -0.22542913, z: -0, w: 0.9742596} + inSlope: {x: 0, y: -0.5527122, z: 0, w: -0.12608603} + outSlope: {x: 0, y: -0.5527122, z: 0, w: -0.12608603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0, y: -0.28224242, z: -0, w: 0.95934314} + inSlope: {x: 0, y: -0.1239821, z: 0, w: -0.036442287} + outSlope: {x: 0, y: -0.1239821, z: 0, w: -0.036442287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0833335 + value: {x: 0, y: -0.31782323, z: -0, w: 0.94815004} + inSlope: {x: 0, y: -0.00014913097, z: 0, w: -0.000049352697} + outSlope: {x: 0, y: -0.00014913097, z: 0, w: -0.000049352697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0, y: -0.31812662, z: -0, w: 0.94804823} + inSlope: {x: 0, y: -0.0001480585, z: 0, w: -0.000050068094} + outSlope: {x: 0, y: -0.0001480585, z: 0, w: -0.000050068094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0.26393482, z: -0, w: 0.96454054} + inSlope: {x: 0, y: -0.0000743866, z: 0, w: 0.00002002716} + outSlope: {x: 0, y: -0.0000743866, z: 0, w: 0.00002002716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 0, y: 0.2638915, z: -0, w: 0.9645524} + inSlope: {x: 0, y: -0.00007474424, z: 0, w: 0.000020027166} + outSlope: {x: 0, y: -0.00007474424, z: 0, w: 0.000020027166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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, y: 0.25099266, z: -0, w: 0.96798897} + inSlope: {x: 0, y: -0.49861652, z: 0, w: 0.12500018} + outSlope: {x: 0, y: -0.49861652, z: 0, w: 0.12500018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0, y: 0.1803658, z: -0, w: 0.9835996} + inSlope: {x: 0, y: 0.079343095, z: 0, w: -0.015925877} + outSlope: {x: 0, y: 0.079343095, z: 0, w: -0.015925877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0, y: 0.31201234, z: -0, w: 0.95007807} + inSlope: {x: 0, y: 1.4922026, z: 0, w: -0.4900515} + outSlope: {x: 0, y: 1.4922026, z: 0, w: -0.4900515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0, y: 0.43789715, z: -0, w: 0.89902514} + inSlope: {x: 0, y: -0.12951389, z: 0, w: 0.058966026} + outSlope: {x: 0, y: -0.12951389, z: 0, w: 0.058966026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0, y: 0.37119386, z: -0, w: 0.92855537} + inSlope: {x: 0, y: -0.65911216, z: 0, w: 0.272162} + outSlope: {x: 0, y: -0.65911216, z: 0, w: 0.272162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0, y: 0.33621863, z: -0, w: 0.94178396} + inSlope: {x: 0, y: -0.42677814, z: 0, w: 0.15240756} + outSlope: {x: 0, y: -0.42677814, z: 0, w: 0.15240756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0, y: 0.25305808, z: -0, w: 0.9674511} + inSlope: {x: 0, y: 0.05101365, z: 0, w: -0.013598394} + outSlope: {x: 0, y: 0.05101365, z: 0, w: -0.013598394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0, y: 0.34820163, z: -0, w: 0.93741965} + inSlope: {x: 0, y: 0.47431302, z: 0, w: -0.17441958} + outSlope: {x: 0, y: 0.47431302, z: 0, w: -0.17441958} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0, y: 0.3464189, z: -0, w: 0.93807995} + inSlope: {x: 0, y: -0.21116841, z: 0, w: 0.07784267} + outSlope: {x: 0, y: -0.21116841, z: 0, w: 0.07784267} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0, y: 0.23709257, z: -0, w: 0.97148705} + inSlope: {x: 0, y: -0.014781626, z: 0, w: 0.0036170413} + outSlope: {x: 0, y: -0.014781626, z: 0, w: 0.0036170413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.4166667 + value: {x: 0, y: 0.23707655, z: -0, w: 0.971491} + inSlope: {x: 0, y: -0.0000184178, z: 0, w: 0.0000042915262} + outSlope: {x: 0, y: -0.0000184178, z: 0, w: 0.0000042915262} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5833335 + value: {x: 0, y: 0.20908001, z: -0, w: 0.97789854} + inSlope: {x: 0, y: -0.32491916, z: 0, w: 0.06946927} + outSlope: {x: 0, y: -0.32491916, z: 0, w: 0.06946927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.75 + value: {x: 0, y: 0.18085873, z: -0, w: 0.98350906} + inSlope: {x: 0, y: 0.00006222731, z: 0, w: -0.000011444106} + outSlope: {x: 0, y: 0.00006222731, z: 0, w: -0.000011444106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0, y: 0.18088211, z: -0, w: 0.9835048} + inSlope: {x: 0, y: 0.00006258512, z: 0, w: -0.000011444135} + outSlope: {x: 0, y: 0.00006258512, z: 0, w: -0.000011444135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.23879455, z: 0, w: -0.9710702} + inSlope: {x: 0, y: -0.000054001808, z: 0, w: 0.000014305115} + outSlope: {x: 0, y: -0.000054001808, z: 0, w: 0.000014305115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0, y: -0.23883541, z: 0, w: -0.9710601} + inSlope: {x: 0, y: -0.00005471708, z: 0, w: 0.000013589863} + outSlope: {x: 0, y: -0.00005471708, z: 0, w: 0.000013589863} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0, y: -0.26324895, z: 0, w: -0.96472794} + inSlope: {x: 0, y: -1.022555, z: 0, w: 0.30023664} + outSlope: {x: 0, y: -1.022555, z: 0, w: 0.30023664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0, y: -0.4019499, z: 0, w: -0.91566163} + inSlope: {x: 0, y: -1.8535036, z: 0, w: 0.815487} + outSlope: {x: 0, y: -1.8535036, z: 0, w: 0.815487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.537645, z: 0, w: -0.84317136} + inSlope: {x: 0, y: -1.2355274, z: 0, w: 0.7741739} + outSlope: {x: 0, y: -1.2355274, z: 0, w: 0.7741739} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.000002335375, y: -0.7056924, z: -0.0000024186227, w: -0.7085183} + inSlope: {x: 0.0047105444, y: -0.47588798, z: -0.0033066703, w: 0.47142908} + outSlope: {x: 0.0047105444, y: -0.47588798, z: -0.0033066703, w: 0.47142908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: 0.036038436, y: -0.8334499, z: 0.0060797147, w: -0.5513851} + inSlope: {x: 0.043650724, y: -0.19405736, z: 0.03863945, w: 0.2963303} + outSlope: {x: 0.043650724, y: -0.19405736, z: 0.03863945, w: 0.2963303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: 0.03490021, y: -0.90596074, z: 0.0114833815, w: -0.42176455} + inSlope: {x: -0.011659138, y: -0.18089785, z: 0.011617485, w: 0.3890501} + outSlope: {x: -0.011659138, y: -0.18089785, z: 0.011617485, w: 0.3890501} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: 0.029438453, y: -0.9924308, z: 0.021645641, w: -0.11724297} + inSlope: {x: -0.041271515, y: -0.11056795, z: 0.043991096, w: 0.9522425} + outSlope: {x: -0.041271515, y: -0.11056795, z: 0.043991096, w: 0.9522425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.875 + value: {x: 0.01579285, y: -0.978646, z: 0.03521838, w: 0.20189695} + inSlope: {x: -0.04639589, y: 0.2854065, z: 0.03444583, w: 1.3853102} + outSlope: {x: -0.04639589, y: 0.2854065, z: 0.03444583, w: 1.3853102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: 0.011197529, y: -0.87689954, z: 0.034951106, w: 0.4792705} + inSlope: {x: 0.0010285022, y: 0.14295861, z: -0.007892698, w: 0.26590297} + outSlope: {x: 0.0010285022, y: 0.14295861, z: -0.007892698, w: 0.26590297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.3333335 + value: {x: 0.011175952, y: -0.87373775, z: 0.034743488, w: 0.48502612} + inSlope: {x: -0.00028352093, y: -0.000019311921, z: -0.0001546295, w: -0.000018239034} + outSlope: {x: -0.00028352093, y: -0.000019311921, z: -0.0001546295, w: -0.000018239034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.011222304, y: -0.87375003, z: 0.034771413, w: 0.48500088} + inSlope: {x: 0.000077605546, y: -0.000015735686, z: 0.000045955356, w: -0.000033617147} + outSlope: {x: 0.000077605546, y: -0.000015735686, z: 0.000045955356, w: -0.000033617147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0.17585196, z: -0, w: 0.98441666} + inSlope: {x: 0.00000004582594, y: 0.000043272972, z: -0.00000004582594, w: -0.000008583069} + outSlope: {x: 0.00000004582594, y: 0.000043272972, z: -0.00000004582594, w: -0.000008583069} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.00000004009873, y: 0.17589006, z: -0.00000004009873, w: 0.9844098} + inSlope: {x: 0.000000045828354, y: 0.000043630607, z: -0.000000045828354, w: -0.000007867816} + outSlope: {x: 0.000000045828354, y: 0.000043630607, z: -0.000000045828354, w: -0.000007867816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00000004698551, y: 0.21245927, z: -0.00000004698551, w: 0.97716993} + inSlope: {x: 0.000000071989135, y: 0.8106928, z: -0.000000071989135, w: -0.18236573} + outSlope: {x: 0.000000071989135, y: 0.8106928, z: -0.000000071989135, w: -0.18236573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.00000006120787, y: 0.42151538, z: -0.00000006120787, w: 0.90682125} + inSlope: {x: 0.0000000877877, y: 1.4388599, z: -0.0000000877877, w: -0.6700649} + outSlope: {x: 0.0000000877877, y: 1.4388599, z: -0.0000000877877, w: -0.6700649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.00000007663321, y: 0.65876424, z: -0.00000007663321, w: 0.7523495} + inSlope: {x: 0.000000060380046, y: 0.65923524, z: -0.000000060380046, w: -0.5727179} + outSlope: {x: 0.000000060380046, y: 0.65923524, z: -0.000000060380046, w: -0.5727179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: 0.00000009891165, y: 0.8063818, z: -0.00000009891165, w: 0.59139526} + inSlope: {x: 0.000000052572833, y: 0.10433212, z: -0.000000052572833, w: -0.14173853} + outSlope: {x: 0.000000052572833, y: 0.10433212, z: -0.000000052572833, w: -0.14173853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: 0.00000011715636, y: 0.8113746, z: -0.00000011715636, w: 0.58452654} + inSlope: {x: 0.000000055056937, y: 0.0023245835, z: -0.000000055056937, w: -0.0032258066} + outSlope: {x: 0.000000055056937, y: 0.0023245835, z: -0.000000055056937, w: -0.0032258066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.00000013856683, y: 0.8439927, z: -0.00000013856683, w: 0.53635466} + inSlope: {x: 0.00000004902514, y: 0.09579188, z: -0.00000004902514, w: -0.1505596} + outSlope: {x: 0.00000004902514, y: 0.09579188, z: -0.00000004902514, w: -0.1505596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.0833335 + value: {x: 0.00000016746391, y: 0.8526306, z: -0.00000016746391, w: 0.52251416} + inSlope: {x: 0.00000005427625, y: 0.0004763608, z: -0.00000005427625, w: -0.00077605323} + outSlope: {x: 0.00000005427625, y: 0.0004763608, z: -0.00000005427625, w: -0.00077605323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.00000022398842, y: 0.8531259, z: -0.00000022398842, w: 0.52170515} + inSlope: {x: 0.00000005425168, y: 0.00047636213, z: -0.00000005425168, w: -0.0007782012} + outSlope: {x: 0.00000005425168, y: 0.00047636213, z: -0.00000005425168, w: -0.0007782012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg4 + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.0000064502165, z: 0.0128} + inSlope: {x: -0, y: -0.0001879227, z: -0} + outSlope: {x: -0, y: -0.0001879227, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0, y: -0.000014280329, z: 0.0128} + inSlope: {x: -0, y: -0.0001879227, z: -0} + outSlope: {x: -0, y: -0.0004851031, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0, y: -0.00003449296, z: 0.0128} + inSlope: {x: -0, y: -0.0004851031, z: -0} + outSlope: {x: -0, y: -0.0006642852, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0, y: -0.00006217151, z: 0.0128} + inSlope: {x: -0, y: -0.0006642852, z: -0} + outSlope: {x: -0, y: -0.00072546926, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0, y: -0.0000923994, z: 0.0128} + inSlope: {x: -0, y: -0.00072546926, z: -0} + outSlope: {x: -0, y: -0.0006686545, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: -0, y: -0.000120259996, z: 0.0128} + inSlope: {x: -0, y: -0.0006686545, z: -0} + outSlope: {x: -0, y: -0.00049384555, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0, y: -0.0001408369, z: 0.0128} + inSlope: {x: -0, y: -0.00049384555, z: -0} + outSlope: {x: -0, y: -0.00020307122, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: -0, y: -0.0001492982, z: 0.0128} + inSlope: {x: -0, y: -0.00020307122, z: -0} + outSlope: {x: -0, y: -0.00005863686, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: -0, y: -0.00036708778, z: 0.0128} + inSlope: {x: -0, y: -0.00008306875, z: -0} + outSlope: {x: -0, y: -0.00007927432, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.125 + value: {x: -0, y: -0.00039483054, z: 0.0128} + inSlope: {x: -0, y: 0.000005042572, z: -0} + outSlope: {x: -0, y: 0.000005041649, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.75 + value: {x: -0, y: -0.0003503789, z: 0.0128} + inSlope: {x: -0, y: 0.000116207375, z: -0} + outSlope: {x: -0, y: 0.00009345603, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0, y: -0.0003382013, z: 0.0128} + inSlope: {x: -0, y: 0.0000018641424, z: -0} + outSlope: {x: -0, y: 0.0000018641424, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block01Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.0000064502165, z: -0.0128} + inSlope: {x: 0.00024545207, y: -0.0011645831, z: 0.0001859951} + outSlope: {x: 0.00024545207, y: -0.0011645831, z: 0.0001859951} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.00001022717, y: -0.000054974516, z: -0.012792249} + inSlope: {x: 0.00024545207, y: -0.0011645831, z: 0.0001859951} + outSlope: {x: 0.0007187599, y: -0.0030770828, z: 0.0001859951} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.0000401755, y: -0.0001831863, z: -0.0127845} + inSlope: {x: 0.0007187599, y: -0.0030770828, z: 0.0001859951} + outSlope: {x: 0.0011656743, y: -0.004128693, z: 0.00018599512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.00008874526, y: -0.0003552152, z: -0.01277675} + inSlope: {x: 0.0011656743, y: -0.004128693, z: 0.00018599512} + outSlope: {x: 0.0015861943, y: 0.0012562696, z: 0.00018599509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.0001548367, y: -0.0003028706, z: -0.012769001} + inSlope: {x: 0.0015861943, y: 0.0012562696, z: 0.00018599509} + outSlope: {x: 0.0019803217, y: 0.0036972899, z: -0.00009658815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.00023735009, y: -0.0001488169, z: -0.012773025} + inSlope: {x: 0.0019803217, y: 0.0036972899, z: -0.00009658815} + outSlope: {x: 0.0019603171, y: 0.0013091115, z: -0.000096588126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.00031903, y: -0.000094270574, z: -0.012777049} + inSlope: {x: 0.0019603171, y: 0.0013091115, z: -0.000096588126} + outSlope: {x: -0.0015405454, y: 0.0011815969, z: -0.000096616764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: 0.0002548406, y: -0.00004503738, z: -0.012781075} + inSlope: {x: -0.0015405454, y: 0.0011815969, z: -0.000096616764} + outSlope: {x: 0.0015039349, y: 0.0012681521, z: -0.00009658808} + tangentMode: 0 + weightedMode: 0 + 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.00031750457, y: 0.000007802318, z: -0.012785099} + inSlope: {x: 0.0015039349, y: 0.0012681521, z: -0.00009658808} + outSlope: {x: 0.01954552, y: 0.0014471683, z: -0.020940002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.0011319009, y: 0.00006810098, z: -0.0136576} + inSlope: {x: 0.01954552, y: 0.0014471683, z: -0.020940002} + outSlope: {x: 0.026285047, y: 0.0017322946, z: -0.025907543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: 0.002227111, y: 0.0001402799, z: -0.01473708} + inSlope: {x: 0.026285047, y: 0.0017322946, z: -0.025907543} + outSlope: {x: 0.022892604, y: 0.003290866, z: -0.027046783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.00318097, y: 0.00027739938, z: -0.01586403} + inSlope: {x: 0.022892604, y: 0.003290866, z: -0.027046783} + outSlope: {x: 0.012295971, y: 0.0042036846, z: -0.021479763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.003693302, y: 0.00045255286, z: -0.01675902} + inSlope: {x: 0.012295971, y: 0.0042036846, z: -0.021479763} + outSlope: {x: 0.009605923, y: 0.0030771708, z: -0.016905576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.0040935487, y: 0.0005807684, z: -0.01746342} + inSlope: {x: 0.009605923, y: 0.0030771708, z: -0.016905576} + outSlope: {x: 0.008095859, y: -0.000088670335, z: -0.0092452895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.004430876, y: 0.0005770738, z: -0.017848639} + inSlope: {x: 0.008095859, y: -0.000088670335, z: -0.0092452895} + outSlope: {x: 0.0027682316, y: -0.0051219068, z: -0.011661609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.004546219, y: 0.0003636609, z: -0.01833454} + inSlope: {x: 0.0027682316, y: -0.0051219068, z: -0.011661609} + outSlope: {x: -0.000029740318, y: -0.0060983994, z: -0.012978223} + tangentMode: 0 + weightedMode: 0 + 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.00454498, y: 0.000109560795, z: -0.018875299} + inSlope: {x: -0.000029740318, y: -0.0060983994, z: -0.012978223} + outSlope: {x: -0.000029733208, y: -0.0047909734, z: -0.00769201} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: 0.004543741, y: -0.0000900629, z: -0.019195799} + inSlope: {x: -0.000029733208, y: -0.0047909734, z: -0.00769201} + outSlope: {x: -0.00036434393, y: -0.003592054, z: -0.003606718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.0045285597, y: -0.00023973189, z: -0.019346079} + inSlope: {x: -0.00036434393, y: -0.003592054, z: -0.003606718} + outSlope: {x: -0.0004923818, y: 0.0025690882, z: -0.0010262484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.004508044, y: -0.00013268649, z: -0.01938884} + inSlope: {x: -0.0004923818, y: 0.0025690882, z: -0.0010262484} + outSlope: {x: -0.0005491453, y: 0.009671281, z: 0.00062304555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: 0.004485163, y: 0.00027028317, z: -0.01936288} + inSlope: {x: -0.0005491453, y: 0.009671281, z: 0.00062304555} + outSlope: {x: -0.0005346033, y: 0.008957663, z: 0.0013418477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.004462888, y: 0.0006435193, z: -0.019306969} + inSlope: {x: -0.0005346033, y: 0.008957663, z: 0.0013418477} + outSlope: {x: -0.00044872976, y: 0.0050811637, z: 0.0011294169} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.0044441908, y: 0.00085523457, z: -0.019259911} + inSlope: {x: -0.00044872976, y: 0.0050811637, z: 0.0011294169} + outSlope: {x: -0.00029162434, y: 0.003151856, z: -0.0002669623} + tangentMode: 0 + weightedMode: 0 + 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.004429406, y: 0.001118633, z: -0.019282157} + inSlope: {x: -0.00006321427, y: 0.003169708, z: -0.00026693332} + outSlope: {x: 0.00023649953, y: 0.0051126275, z: -0.0002669623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: 0.00443926, y: 0.0013316589, z: -0.019293278} + inSlope: {x: 0.00023649953, y: 0.0051126275, z: -0.0002669623} + outSlope: {x: 0.00060750847, y: 0.0060490207, z: -0.0010300807} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2916666 + value: {x: 0.004819358, y: 0.002831145, z: -0.019989729} + inSlope: {x: 0.0024519132, y: 0.0068179243, z: -0.0049447394} + outSlope: {x: 0.0033957271, y: 0.0077400818, z: -0.0060902196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4166666 + value: {x: 0.005420604, y: 0.0038234838, z: -0.02091441} + inSlope: {x: 0.006341835, y: 0.007764101, z: -0.008744896} + outSlope: {x: 0.008344143, y: 0.0060456377, z: -0.010296459} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.0057682768, y: 0.0040753856, z: -0.021343429} + inSlope: {x: 0.008344143, y: 0.0060456377, z: -0.010296459} + outSlope: {x: 0.006936156, y: 0.003155282, z: -0.010964652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.0060572834, y: 0.004206856, z: -0.021800289} + inSlope: {x: 0.006936156, y: 0.003155282, z: -0.010964652} + outSlope: {x: -0.0025513482, y: -0.00047512338, z: 0.0035997427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5416666 + value: {x: 0.005950977, y: 0.004187059, z: -0.0216503} + inSlope: {x: -0.0025513482, y: -0.00047512338, z: 0.0035997427} + outSlope: {x: -0.004796109, y: -0.0029079309, z: 0.005582646} + tangentMode: 0 + weightedMode: 0 + 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.0054647927, y: 0.003799809, z: -0.02099682} + inSlope: {x: -0.0030746155, y: -0.0027273658, z: 0.004895272} + outSlope: {x: -0.0026269862, y: -0.0009797268, z: 0.0046509844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.005024117, y: 0.003859136, z: -0.02025505} + inSlope: {x: -0.0029365052, y: 0.0014810844, z: 0.0043165884} + outSlope: {x: -0.0034146055, y: 0.0018853158, z: 0.0043380014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.004491051, y: 0.004207228, z: -0.01946957} + inSlope: {x: -0.0017152228, y: 0.00048890495, z: 0.0024179888} + outSlope: {x: -0.0013892966, y: -0.0007724434, z: 0.0016857783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2083333 + value: {x: 0.004317566, y: 0.004055931, z: -0.01929369} + inSlope: {x: -0.0007487611, y: -0.00034046304, z: 0.00069743424} + outSlope: {x: -0.00064768427, y: 0.00071889505, z: 0.0007313905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: 0.0039557638, y: 0.004261257, z: -0.01875491} + inSlope: {x: -0.00095620926, y: 0.00023918822, z: 0.0011817432} + outSlope: {x: -0.00082564674, y: 0.0001700875, z: 0.00097057153} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: 0.0038832894, y: 0.0042577917, z: -0.018690165} + inSlope: {x: -0.000016264883, y: -0.00014205667, z: -0.000054874316} + outSlope: {x: -0.00001627213, y: -0.00014205748, z: -0.00005487463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.003859731, y: 0.004200576, z: -0.0187384} + inSlope: {x: -0.000025355914, y: -0.000009841956, z: -0.000048351474} + outSlope: {x: -0.000025355914, y: -0.000009841956, z: -0.000048351474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block02Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.001062566, y: 0.02032738, z: -0.0019184109} + inSlope: {x: -0.0007285434, y: -0.0005683136, z: 0.0018877422} + outSlope: {x: -0.0007285434, y: -0.0005683136, z: 0.0018877422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.00103221, y: 0.0203037, z: -0.001839755} + inSlope: {x: -0.0007285434, y: -0.0005683136, z: 0.0018877422} + outSlope: {x: 0.0007285434, y: -0.0013264846, z: -0.0011300147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.001062566, y: 0.02024843, z: -0.0018868389} + inSlope: {x: 0.0007285434, y: -0.0013264846, z: -0.0011300147} + outSlope: {x: 0.036345284, y: -0.0015172578, z: -0.012539593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.0025769528, y: 0.02018521, z: -0.002409322} + inSlope: {x: 0.036345284, y: -0.0015172578, z: -0.012539593} + outSlope: {x: 0.069779806, y: -0.001140518, z: -0.02128987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.005484445, y: 0.020137688, z: -0.0032964} + inSlope: {x: 0.069779806, y: -0.001140518, z: -0.02128987} + outSlope: {x: 0.070061274, y: -0.002093983, z: -0.02427831} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: 0.014079209, y: 0.01947752, z: -0.006229857} + inSlope: {x: 0.06768432, y: -0.0083649745, z: -0.023438677} + outSlope: {x: 0.0675278, y: -0.011009268, z: -0.027078168} + tangentMode: 0 + weightedMode: 0 + 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.016892869, y: 0.019018799, z: -0.0073581147} + inSlope: {x: 0.0675278, y: -0.011009268, z: -0.027078168} + outSlope: {x: 0.068059, y: -0.013319524, z: -0.033295374} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.028378898, y: 0.0160833, z: -0.01327263} + inSlope: {x: 0.06856557, y: -0.02228497, z: -0.036395997} + outSlope: {x: 0.06573265, y: -0.024412552, z: -0.03718919} + tangentMode: 0 + weightedMode: 0 + 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.03841233, y: 0.011593749, z: -0.01990615} + inSlope: {x: 0.05713603, y: -0.03144217, z: -0.043411195} + outSlope: {x: 0.052990373, y: -0.031725626, z: -0.039143093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: 0.04062026, y: 0.010271849, z: -0.02153711} + inSlope: {x: 0.052990373, y: -0.031725626, z: -0.039143093} + outSlope: {x: 0.043780267, y: -0.0018772592, z: -0.025552299} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.042444438, y: 0.01019363, z: -0.02260179} + inSlope: {x: 0.043780267, y: -0.0018772592, z: -0.025552299} + outSlope: {x: 0.036817685, y: 0.006675822, z: -0.016233094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: 0.04541925, y: 0.01075398, z: -0.02386919} + inSlope: {x: 0.034577783, y: 0.006772563, z: -0.014184507} + outSlope: {x: 0.03633692, y: 0.000006237027, z: -0.016060632} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.04849216, y: 0.01060158, z: -0.025203653} + inSlope: {x: 0.037412893, y: -0.0036638242, z: -0.015966445} + outSlope: {x: 0.03735504, y: -0.0077702594, z: -0.015857521} + tangentMode: 0 + weightedMode: 0 + 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.051562537, y: 0.009762635, z: -0.026521154} + inSlope: {x: 0.03633406, y: -0.012364419, z: -0.015762512} + outSlope: {x: 0.034312166, y: -0.015044102, z: -0.015681282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: 0.05299221, y: 0.009135798, z: -0.02717454} + inSlope: {x: 0.034312166, y: -0.015044102, z: -0.015681282} + outSlope: {x: 0.027789978, y: -0.00044666204, z: -0.015614632} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.054150127, y: 0.009117187, z: -0.02782515} + inSlope: {x: 0.027789978, y: -0.00044666204, z: -0.015614632} + outSlope: {x: 0.021308005, y: 0.00669563, z: -0.015561919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: 0.055812318, y: 0.0096431095, z: -0.029120348} + inSlope: {x: 0.01858465, y: 0.0059265285, z: -0.015522894} + outSlope: {x: 0.019471856, y: 0.0010929087, z: -0.015498703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.05662365, y: 0.009688647, z: -0.02976613} + inSlope: {x: 0.019471856, y: 0.0010929087, z: -0.015498703} + outSlope: {x: 0.020623416, y: -0.0037383018, z: -0.01548799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2916666 + value: {x: 0.05835504, y: 0.009199538, z: -0.031056933} + inSlope: {x: 0.020930003, y: -0.008000343, z: -0.015491309} + outSlope: {x: 0.020857388, y: -0.012124821, z: -0.015509003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.06007438, y: 0.008023009, z: -0.03235068} + inSlope: {x: 0.020406779, y: -0.016111866, z: -0.015540976} + outSlope: {x: 0.019576281, y: -0.019961433, z: -0.015586295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.061655387, y: 0.006240587, z: -0.03366685} + inSlope: {x: 0.018367847, y: -0.022816671, z: -0.01600167} + outSlope: {x: 0.017232988, y: -0.017697388, z: -0.020254344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5416666 + value: {x: 0.06295115, y: 0.0047514318, z: -0.035371114} + inSlope: {x: 0.013865331, y: -0.01804237, z: -0.020648021} + outSlope: {x: 0.005313367, y: 0.008644908, z: -0.01478734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.06317254, y: 0.005111637, z: -0.035987254} + inSlope: {x: 0.005313367, y: 0.008644908, z: -0.01478734} + outSlope: {x: 0.0026225303, y: 0.017343938, z: -0.0104303835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: 0.06328181, y: 0.0058343005, z: -0.03642185} + inSlope: {x: 0.0026225303, y: 0.017343938, z: -0.0104303835} + outSlope: {x: 0.002622416, y: 0.011754581, z: -0.009798212} + tangentMode: 0 + weightedMode: 0 + 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.06339108, y: 0.006324074, z: -0.03683011} + inSlope: {x: 0.002622416, y: 0.011754581, z: -0.009798212} + outSlope: {x: 0.0036381844, y: 0.007381139, z: -0.009286061} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.06354267, y: 0.006631622, z: -0.03721703} + inSlope: {x: 0.0036381844, y: 0.007381139, z: -0.009286061} + outSlope: {x: 0.00402409, y: 0.0030757457, z: -0.008894128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.06371034, y: 0.006759778, z: -0.037587617} + inSlope: {x: 0.00402409, y: 0.0030757457, z: -0.008894128} + outSlope: {x: 0.004192089, y: -0.0011616623, z: -0.008621872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7916666 + value: {x: 0.06388501, y: 0.0067113754, z: -0.03794686} + inSlope: {x: 0.004192089, y: -0.0011616623, z: -0.008621872} + outSlope: {x: 0.0041418374, y: -0.0053309626, z: -0.008469528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.06405759, y: 0.0064892517, z: -0.03829976} + inSlope: {x: 0.0041418374, y: -0.0053309626, z: -0.008469528} + outSlope: {x: 0.0038738286, y: -0.009432258, z: -0.008437508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.064219, y: 0.0060962415, z: -0.03865132} + inSlope: {x: 0.0038738286, y: -0.009432258, z: -0.008437508} + outSlope: {x: 0.0033876833, y: -0.013465532, z: -0.008524941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.06446901, y: 0.0049891504, z: -0.03933467} + inSlope: {x: 0.0026125666, y: -0.0131046325, z: -0.007875351} + outSlope: {x: 0.0026124597, y: 0.0047282455, z: -0.0043574567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.06469708, y: 0.005425302, z: -0.039566662} + inSlope: {x: 0.0028612465, y: 0.0057393727, z: -0.0012104393} + outSlope: {x: 0.0028612628, y: 0.00065881026, z: -0.0012104462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0833333 + value: {x: 0.064816296, y: 0.005452752, z: -0.0396171} + inSlope: {x: 0.0028612628, y: 0.00065881026, z: -0.0012104462} + outSlope: {x: 0.0030044117, y: -0.0023420288, z: 0.00009057981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: 0.06506666, y: 0.005152962, z: -0.03960955} + inSlope: {x: 0.0030042971, y: -0.004852915, z: 0.00009057981} + outSlope: {x: 0.00279729, y: -0.0061840676, z: 0.00009058033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2083333 + value: {x: 0.065183215, y: 0.0048952936, z: -0.039605778} + inSlope: {x: 0.00279729, y: -0.0061840676, z: 0.00009058033} + outSlope: {x: 0.002797274, y: 0.00066956395, z: 0.00009057981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2916667 + value: {x: 0.06539313, y: 0.004980652, z: -0.03948869} + inSlope: {x: 0.0022406343, y: 0.0013790389, z: 0.0027194545} + outSlope: {x: 0.002240647, y: -0.0031264806, z: 0.0036130277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: 0.06564457, y: 0.004272337, z: -0.03873129} + inSlope: {x: 0.0012646914, y: -0.0040562022, z: 0.0053122533} + outSlope: {x: 0.000012588476, y: -0.0017025914, z: 0.005187482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: 0.06564509, y: 0.0042013954, z: -0.038515143} + inSlope: {x: 0.000012588476, y: -0.0017025914, z: 0.005187482} + outSlope: {x: 0.000012474036, y: 0.0034301882, z: 0.002120243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5833333 + value: {x: 0.065646134, y: 0.0045006145, z: -0.038433593} + inSlope: {x: 0.000012588548, y: 0.0037510728, z: -0.00016307892} + outSlope: {x: 0.000012588476, y: -0.0019978199, z: -0.00016307799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: 0.06564718, y: 0.0042698216, z: -0.038447183} + inSlope: {x: 0.000012474036, y: -0.0035411955, z: -0.00016307799} + outSlope: {x: 0.000012588548, y: -0.0015573179, z: -0.00016307892} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7083333 + value: {x: 0.06564771, y: 0.0042049335, z: -0.038453978} + inSlope: {x: 0.000012588548, y: -0.0015573179, z: -0.00016307892} + outSlope: {x: 0.000012588476, y: 0.00048288252, z: -0.00016307799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4 + value: {x: 0.06566392, y: 0.0041935393, z: -0.038538646} + inSlope: {x: 0.000012588548, y: -0.000010049382, z: -0.000031643034} + outSlope: {x: 0.000012588405, y: -0.000010049266, z: -0.00003164267} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.06566548, y: 0.004192283, z: -0.0385426} + inSlope: {x: 0.000012588548, y: -0.000010049382, z: -0.000031643034} + outSlope: {x: 0.000012588548, y: -0.000010049382, z: -0.000031643034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block03Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.016607521, z: 0.014694099} + inSlope: {x: -0, y: -0.00044577598, z: -0} + outSlope: {x: -0, y: -0.00044577598, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0, y: 0.01634362, z: 0.014694099} + inSlope: {x: -0, y: -0.00007032381, z: -0} + outSlope: {x: -0, y: -0.00007032381, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0, y: 0.0162805, z: 0.014694099} + inSlope: {x: -0, y: -0.000007810622, z: -0} + outSlope: {x: -0, y: -0.000007810622, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block04Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.02889578, z: 0.0033410888} + inSlope: {x: 0.00047522545, y: -0.00075868604, z: -0.0004757738} + outSlope: {x: 0.00047522545, y: -0.00075868604, z: -0.0004757738} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.00001980106, y: 0.028864168, z: 0.0033212649} + inSlope: {x: 0.00047522545, y: -0.00075868604, z: -0.0004757738} + outSlope: {x: 0.0014885081, y: -0.0025629615, z: -0.0013055492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.00008182224, y: 0.028757378, z: 0.003266867} + inSlope: {x: 0.0014885081, y: -0.0025629615, z: -0.0013055492} + outSlope: {x: 0.0025960382, y: -0.004798794, z: -0.0019526912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.00018999049, y: 0.02855743, z: 0.0031855048} + inSlope: {x: 0.0025960382, y: -0.004798794, z: -0.0019526912} + outSlope: {x: 0.0037978147, y: -0.0074652093, z: -0.0024171562} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.0003482328, y: 0.028246379, z: 0.00308479} + inSlope: {x: 0.0037978147, y: -0.0074652093, z: -0.0024171562} + outSlope: {x: 0.0050744936, y: -0.010563071, z: -0.002698968} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.00055967, y: 0.02780625, z: 0.002972333} + inSlope: {x: 0.0050744936, y: -0.010563071, z: -0.002698968} + outSlope: {x: 0.005776448, y: -0.014091853, z: -0.0027981373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: 0.001056584, y: 0.026466928, z: 0.0027426349} + inSlope: {x: 0.0061494876, y: -0.018051857, z: -0.0027146179} + outSlope: {x: 0.006489598, y: -0.022442885, z: -0.002406212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: 0.001904808, y: 0.02311441, z: 0.002536134} + inSlope: {x: 0.007071002, y: -0.031055782, z: -0.0009129598} + outSlope: {x: 0.007312292, y: -0.035134546, z: -0.000350139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.003170129, y: 0.016238479, z: 0.002551379} + inSlope: {x: 0.007838624, y: -0.04737798, z: 0.0003719977} + outSlope: {x: 0.0079481965, y: -0.051460996, z: 0.0002905439} + tangentMode: 0 + weightedMode: 0 + 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.0038356709, y: 0.01177986, z: 0.002565487} + inSlope: {x: 0.008024801, y: -0.055545814, z: 0.000048050857} + outSlope: {x: 0.008068543, y: -0.06010039, z: -0.00038721837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: 0.00417186, y: 0.0092756795, z: 0.0025493528} + inSlope: {x: 0.008068543, y: -0.06010039, z: -0.00038721837} + outSlope: {x: 0.00556154, y: -0.06279439, z: -0.0021679176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.0044035907, y: 0.006659245, z: 0.002459023} + inSlope: {x: 0.00556154, y: -0.06279439, z: -0.0021679176} + outSlope: {x: 0.0014792911, y: 0.03585781, z: -0.00627986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.004465228, y: 0.008153321, z: 0.002197362} + inSlope: {x: 0.0014792911, y: 0.03585781, z: -0.00627986} + outSlope: {x: 0.00405039, y: 0.0241262, z: -0.004508883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: 0.004633994, y: 0.009158579, z: 0.0020094921} + inSlope: {x: 0.00405039, y: 0.0241262, z: -0.004508883} + outSlope: {x: 0.017188072, y: -0.0037623292, z: 0.00089157297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.005350164, y: 0.009001815, z: 0.002046641} + inSlope: {x: 0.017188072, y: -0.0037623292, z: 0.00089157297} + outSlope: {x: 0.02415027, y: -0.012575906, z: 0.004348581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.0063564256, y: 0.008477819, z: 0.0022278319} + inSlope: {x: 0.02415027, y: -0.012575906, z: 0.004348581} + outSlope: {x: 0.024900608, y: -0.018587282, z: 0.0058621983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: 0.00739395, y: 0.0077033495, z: 0.0024720898} + inSlope: {x: 0.024900608, y: -0.018587282, z: 0.0058621983} + outSlope: {x: 0.024149567, y: -0.023419978, z: 0.0054323254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: 0.009311529, y: 0.005678844, z: 0.0029289078} + inSlope: {x: 0.021872327, y: -0.025168156, z: 0.005531307} + outSlope: {x: 0.01615721, y: 0.0054236883, z: 0.015396815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.009984747, y: 0.005904832, z: 0.003570443} + inSlope: {x: 0.01615721, y: 0.0054236883, z: 0.015396815} + outSlope: {x: 0.011276475, y: 0.010809814, z: 0.01780866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.0104546, y: 0.00635524, z: 0.00431247} + inSlope: {x: 0.011276475, y: 0.010809814, z: 0.01780866} + outSlope: {x: 0.009938659, y: 0.009483384, z: 0.015569586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: 0.0108687105, y: 0.0067503806, z: 0.004961202} + inSlope: {x: 0.009938659, y: 0.009483384, z: 0.015569586} + outSlope: {x: 0.011488044, y: 0.0035858275, z: 0.015559844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.01134738, y: 0.006899791, z: 0.00560953} + inSlope: {x: 0.011488044, y: 0.0035858275, z: 0.015559844} + outSlope: {x: 0.012277949, y: -0.0016938988, z: 0.015597567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2916666 + value: {x: 0.01238597, y: 0.006627314, z: 0.006912874} + inSlope: {x: 0.012648251, y: -0.0048455475, z: 0.015682712} + outSlope: {x: 0.012789807, y: -0.0059096604, z: 0.015815176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.01344817, y: 0.006177485, z: 0.008238307} + inSlope: {x: 0.012702982, y: -0.0048862314, z: 0.015995208} + outSlope: {x: 0.012092869, y: -0.0017753808, z: 0.016222516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4166666 + value: {x: 0.013952039, y: 0.0061035105, z: 0.008914244} + inSlope: {x: 0.012092869, y: -0.0017753808, z: 0.016222516} + outSlope: {x: 0.009078723, y: 0.0045923907, z: 0.016497256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.01461112, y: 0.006498346, z: 0.010302439} + inSlope: {x: 0.0067392034, y: 0.0048836563, z: 0.016819412} + outSlope: {x: 0.005836549, y: -0.0021735784, z: 0.01718907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5416666 + value: {x: 0.014854309, y: 0.0064077806, z: 0.011018651} + inSlope: {x: 0.005836549, y: -0.0021735784, z: 0.01718907} + outSlope: {x: 0.0063707996, y: -0.0063902545, z: 0.0176061} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: 0.015400889, y: 0.005801718, z: 0.01247442} + inSlope: {x: 0.0067471284, y: -0.008155239, z: 0.01733235} + outSlope: {x: 0.002067606, y: 0.0023949072, z: 0.013195222} + tangentMode: 0 + weightedMode: 0 + 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.01548704, y: 0.0059015057, z: 0.01302422} + inSlope: {x: 0.002067606, y: 0.0023949072, z: 0.013195222} + outSlope: {x: -0.0017419305, y: 0.010021687, z: 0.0096909525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.0152490605, y: 0.0067035793, z: 0.013745282} + inSlope: {x: -0.0039695874, y: 0.009228067, z: 0.007614505} + outSlope: {x: -0.0046152063, y: 0.0028015736, z: 0.0069669406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7916666 + value: {x: 0.01505676, y: 0.0068203113, z: 0.01403557} + inSlope: {x: -0.0046152063, y: 0.0028015736, z: 0.0069669406} + outSlope: {x: -0.0037665581, y: -0.0020321808, z: 0.0077085537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.01489982, y: 0.006735637, z: 0.01435676} + inSlope: {x: -0.0037665581, y: -0.0020321808, z: 0.0077085537} + outSlope: {x: -0.0030139189, y: -0.0053749518, z: 0.008040455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.0146551095, y: 0.005970187, z: 0.015210152} + inSlope: {x: -0.00072792865, y: -0.0057511604, z: 0.0053215497} + outSlope: {x: 0.0011954509, y: 0.0038168943, z: 0.0026471925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.01482852, y: 0.006322238, z: 0.015354051} + inSlope: {x: 0.0029663886, y: 0.0046323305, z: 0.0008064064} + outSlope: {x: 0.002262019, y: -0.0007689314, z: 0.0010454218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3333333 + value: {x: 0.01459186, y: 0.0060769487, z: 0.015625274} + inSlope: {x: -0.0038781886, y: -0.00079410855, z: -0.00005247136} + outSlope: {x: -0.0030885541, y: -0.00031505525, z: -0.000052471063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: 0.01426221, y: 0.005917232, z: 0.015016081} + inSlope: {x: -0.00049584295, y: -0.0016303222, z: -0.0045191487} + outSlope: {x: -0.0013120911, y: -0.0021813542, z: -0.0049742223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.8333333 + value: {x: 0.01377105, y: 0.005146942, z: 0.013839969} + inSlope: {x: -0.0026116946, y: -0.0059066615, z: -0.006197114} + outSlope: {x: -0.0023416856, y: -0.005877674, z: -0.0063534616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.875 + value: {x: 0.01367348, y: 0.0049020383, z: 0.013575241} + inSlope: {x: -0.0023416856, y: -0.005877674, z: -0.0063534616} + outSlope: {x: -0.0019655763, y: -0.001704537, z: -0.0058243447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9166667 + value: {x: 0.01359158, y: 0.004831016, z: 0.01333256} + inSlope: {x: -0.0019655763, y: -0.001704537, z: -0.0058243447} + outSlope: {x: -0.001483446, y: 0.0062201163, z: -0.0021924102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3 + value: {x: 0.01349248, y: 0.005292909, z: 0.01325371} + inSlope: {x: -0.00089495484, y: 0.004865332, z: 0.00030000627} + outSlope: {x: 0.00016367881, y: -0.00036151815, z: 0.000948227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.0416667 + value: {x: 0.0134993, y: 0.0052778455, z: 0.01329322} + inSlope: {x: 0.00016367881, y: -0.00036151815, z: 0.000948227} + outSlope: {x: 0.00016367975, y: -0.00338466, z: 0.00012697268} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: 0.01351976, y: 0.0048441766, z: 0.01344182} + inSlope: {x: 0.00016367881, y: -0.0028194755, z: 0.0022065311} + outSlope: {x: 0.00047939483, y: -0.0012503862, z: 0.0022586717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.625 + value: {x: 0.013570586, y: 0.0047082137, z: 0.013530122} + inSlope: {x: 0.000029010716, y: 0.00027374216, z: -0.000024805022} + outSlope: {x: 0.000029010716, y: 0.00028558678, z: -0.000024833633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.013585089, y: 0.0047472, z: 0.013517711} + inSlope: {x: 0.000029010884, y: -0.000014233644, z: -0.000024833775} + outSlope: {x: 0.000029010884, y: -0.000014233644, z: -0.000024833775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block05Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.02889578, z: -0.007478603} + inSlope: {x: -0.00034639533, y: -0.0012689208, z: -0.00007854938} + outSlope: {x: -0.00034639533, y: -0.0012689208, z: -0.00007854938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.00001443314, y: 0.02884291, z: -0.007481876} + inSlope: {x: -0.00034639533, y: -0.0012689208, z: -0.00007854938} + outSlope: {x: 0.0006014323, y: -0.0026166916, z: -0.00007854938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.00001062654, y: 0.02873388, z: -0.007485149} + inSlope: {x: 0.0006014323, y: -0.0026166916, z: -0.00007854938} + outSlope: {x: 0.004010188, y: -0.0021328926, z: -0.00007854939} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.0001777177, y: 0.028645009, z: -0.0074884216} + inSlope: {x: 0.004010188, y: -0.0021328926, z: -0.00007854939} + outSlope: {x: 0.009837032, y: 0.0031852908, z: -0.0004927253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.0005875941, y: 0.02877773, z: -0.0075089517} + inSlope: {x: 0.009837032, y: 0.0031852908, z: -0.0004927253} + outSlope: {x: 0.012572064, y: 0.0035916145, z: -0.00089315436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.001618222, y: 0.028837198, z: -0.0076049026} + inSlope: {x: 0.012163006, y: -0.0021643636, z: -0.0014096687} + outSlope: {x: 0.011746658, y: -0.0060297213, z: -0.0020421844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.0042839907, y: 0.02481919, z: -0.008486317} + inSlope: {x: 0.009555097, y: -0.026379382, z: -0.004046274} + outSlope: {x: 0.009094823, y: -0.03068829, z: -0.0032219966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.00502241, y: 0.02218267, z: -0.008698689} + inSlope: {x: 0.008627244, y: -0.032588225, z: -0.0018749302} + outSlope: {x: 0.008247323, y: -0.014125435, z: 0.0033193573} + tangentMode: 0 + weightedMode: 0 + 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.0057130777, y: 0.02121233, z: -0.008315048} + inSlope: {x: 0.008328691, y: -0.009162708, z: 0.0058879964} + outSlope: {x: 0.008951792, y: -0.014118989, z: 0.0019389027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.007859172, y: 0.01617238, z: -0.008184991} + inSlope: {x: 0.010884042, y: -0.032784443, z: 0.00035671215} + outSlope: {x: 0.0109589435, y: -0.03685319, z: 0.0002747296} + tangentMode: 0 + weightedMode: 0 + 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.009239194, y: 0.011055229, z: -0.008167322} + inSlope: {x: 0.011122951, y: -0.045024924, z: -0.00012541289} + outSlope: {x: 0.011212073, y: -0.049487762, z: -0.00012539876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.010177439, y: 0.0068133306, z: -0.008177772} + inSlope: {x: 0.011305811, y: -0.052317765, z: -0.0001254127} + outSlope: {x: 0.011404334, y: 0.017722052, z: -0.0032645587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.010652619, y: 0.007551749, z: -0.008313796} + inSlope: {x: 0.011404334, y: 0.017722052, z: -0.0032645587} + outSlope: {x: 0.011507789, y: 0.031354096, z: -0.0070127887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: 0.01113211, y: 0.008858168, z: -0.008605995} + inSlope: {x: 0.011507789, y: 0.031354096, z: -0.0070127887} + outSlope: {x: 0.011615502, y: 0.025380086, z: -0.008069042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.012104769, y: 0.010800419, z: -0.009227368} + inSlope: {x: 0.011728317, y: 0.02123393, z: -0.006843902} + outSlope: {x: 0.011845704, y: 0.017150419, z: -0.0064117014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.013600169, y: 0.01243381, z: -0.01001754} + inSlope: {x: 0.012076075, y: 0.008983935, z: -0.0062423144} + outSlope: {x: 0.012026665, y: 0.004900565, z: -0.006208082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.015096939, y: 0.01253597, z: -0.01079489} + inSlope: {x: 0.011931851, y: -0.0032659178, z: -0.0062407264} + outSlope: {x: 0.011929934, y: -0.0073495456, z: -0.0063076746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: 0.01659297, y: 0.011106879, z: -0.011597331} + inSlope: {x: 0.012016566, y: -0.015516028, z: -0.0065426505} + outSlope: {x: 0.012105143, y: -0.01959937, z: -0.006710393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.017606689, y: 0.009303465, z: -0.012164939} + inSlope: {x: 0.012224126, y: -0.023682559, z: -0.0069122184} + outSlope: {x: 0.012373449, y: -0.027765967, z: -0.0071477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.01812225, y: 0.0081465505, z: -0.01246276} + inSlope: {x: 0.012373449, y: -0.027765967, z: -0.0071477} + outSlope: {x: 0.012552492, y: -0.03207181, z: -0.0074164937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.019077089, y: 0.005364921, z: -0.012978669} + inSlope: {x: 0.010363664, y: -0.034687262, z: -0.0049653244} + outSlope: {x: -0.0029860812, y: 0.01787666, z: 0.0003278163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9166666 + value: {x: 0.01871663, y: 0.0068795276, z: -0.0128093595} + inSlope: {x: -0.0056649735, y: 0.018473929, z: 0.0037356126} + outSlope: {x: -0.005402631, y: 0.012259115, z: 0.0052204696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.01849152, y: 0.007390325, z: -0.01259184} + inSlope: {x: -0.005402631, y: 0.012259115, z: 0.0052204696} + outSlope: {x: -0.0051503894, y: 0.008004749, z: 0.004782719} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.01827692, y: 0.007723856, z: -0.01239256} + inSlope: {x: -0.0051503894, y: 0.008004749, z: 0.004782719} + outSlope: {x: -0.004908476, y: 0.003913185, z: 0.0038541623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.0180724, y: 0.007886905, z: -0.012231969} + inSlope: {x: -0.004908476, y: 0.003913185, z: 0.0038541623} + outSlope: {x: -0.004676646, y: -0.000015621245, z: 0.0037060971} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: 0.01769191, y: 0.0077286884, z: -0.01192993} + inSlope: {x: -0.004455119, y: -0.0037815785, z: 0.003542855} + outSlope: {x: -0.0042439187, y: -0.0073847435, z: 0.0033645565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2083333 + value: {x: 0.01734663, y: 0.006977863, z: -0.01165763} + inSlope: {x: -0.0040428126, y: -0.010635092, z: 0.003170655} + outSlope: {x: -0.0034905558, y: -0.005957497, z: 0.0029616107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: 0.017201189, y: 0.0067296335, z: -0.011534229} + inSlope: {x: -0.0034905558, y: -0.005957497, z: 0.0029616107} + outSlope: {x: -0.0011220052, y: 0.0063440776, z: 0.0027374213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3333333 + value: {x: 0.01718455, y: 0.0072254515, z: -0.011316089} + inSlope: {x: 0.0007226399, y: 0.0055555557, z: 0.00249794} + outSlope: {x: 0.0016442554, y: -0.00024541808, z: 0.0022430376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: 0.01725306, y: 0.0072152256, z: -0.011222629} + inSlope: {x: 0.0016442554, y: -0.00024541808, z: 0.0022430376} + outSlope: {x: 0.0016425387, y: -0.005359029, z: 0.001972786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: 0.01735925, y: 0.0067282794, z: -0.0110653} + inSlope: {x: 0.0009060035, y: -0.006327691, z: 0.001803138} + outSlope: {x: 0.0012825655, y: 0.002353244, z: 0.0017973484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.01749636, y: 0.006872952, z: -0.010915509} + inSlope: {x: 0.002008091, y: 0.0011188866, z: 0.0017976059} + outSlope: {x: 0.0027122316, y: -0.0017326992, z: 0.0018014213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7083333 + value: {x: 0.01811574, y: 0.0066316244, z: -0.01061262} + inSlope: {x: 0.004699448, y: -0.00054416864, z: 0.0018372128} + outSlope: {x: 0.005319604, y: -0.0006455027, z: 0.0018573725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9166667 + value: {x: 0.019464951, y: 0.0061945245, z: -0.010214049} + inSlope: {x: 0.007590966, y: -0.004175655, z: 0.0019768772} + outSlope: {x: 0.008106253, y: -0.005839427, z: 0.0020172005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3 + value: {x: 0.02016107, y: 0.0056255576, z: -0.01004413} + inSlope: {x: 0.008600648, y: -0.007815785, z: 0.0020608767} + outSlope: {x: 0.009073889, y: -0.010104542, z: 0.0021090705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.0833333 + value: {x: 0.02092936, y: 0.004775665, z: -0.0097524645} + inSlope: {x: 0.009365079, y: -0.010292913, z: 0.004890923} + outSlope: {x: 0.00726069, y: -0.0034568529, z: 0.009089825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: 0.02143244, y: 0.0044986675, z: -0.008995789} + inSlope: {x: 0.004813204, y: -0.0031910646, z: 0.009070341} + outSlope: {x: 0.0029505843, y: 0.009870852, z: 0.0057887584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.25 + value: {x: 0.02162506, y: 0.005240996, z: -0.008620228} + inSlope: {x: 0.0016723219, y: 0.007945046, z: 0.0032247242} + outSlope: {x: 0.00092387974, y: 0.0019307289, z: 0.0023102858} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.2916667 + value: {x: 0.021663556, y: 0.005321443, z: -0.008523966} + inSlope: {x: 0.00092387974, y: 0.0019307289, z: 0.0023102858} + outSlope: {x: 0.00092388503, y: -0.0019689063, z: 0.003045356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.375 + value: {x: 0.02175808, y: 0.005087366, z: -0.008241672} + inSlope: {x: 0.0013446782, y: -0.0036489416, z: 0.003729708} + outSlope: {x: 0.0024047995, y: -0.0009029943, z: 0.0008340152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.4583333 + value: {x: 0.02196793, y: 0.005105598, z: -0.008262874} + inSlope: {x: 0.002631636, y: 0.001340566, z: -0.0013428691} + outSlope: {x: 0.0017306295, y: 0.00088794535, z: -0.0024980688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.5 + value: {x: 0.02204004, y: 0.0051425956, z: -0.00836696} + inSlope: {x: 0.0017306295, y: 0.00088794535, z: -0.0024980688} + outSlope: {x: 0.00066158164, y: -0.0020711476, z: -0.0026315637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.625 + value: {x: 0.022077931, y: 0.004687953, z: -0.008774916} + inSlope: {x: -0.00041370312, y: -0.004897318, z: -0.004929104} + outSlope: {x: -0.0004136459, y: -0.0057371985, z: -0.006603929} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.7083333 + value: {x: 0.02204346, y: 0.004200573, z: -0.009303797} + inSlope: {x: -0.00041370548, y: -0.005959934, z: -0.006089224} + outSlope: {x: -0.00066444266, y: 0.0003748505, z: -0.0034023363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.75 + value: {x: 0.022015775, y: 0.004216192, z: -0.009445561} + inSlope: {x: -0.00066444266, y: 0.0003748505, z: -0.0034023363} + outSlope: {x: -0.00066444266, y: 0.0047118096, z: -0.0010712364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.8333333 + value: {x: 0.021984193, y: 0.0045743105, z: -0.009493893} + inSlope: {x: -0.00009349858, y: 0.0038830524, z: -0.000088720655} + outSlope: {x: -0.00009344083, y: -0.0013203023, z: 0.0006183088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.875 + value: {x: 0.021980299, y: 0.004519298, z: -0.00946813} + inSlope: {x: -0.00009344083, y: -0.0013203023, z: 0.0006183088} + outSlope: {x: -0.00009349805, y: -0.0038937302, z: 0.0010499218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.9583333 + value: {x: 0.021972511, y: 0.004229908, z: -0.009374127} + inSlope: {x: -0.00009344136, y: -0.0030516358, z: 0.0012061547} + outSlope: {x: -0.00009349805, y: 0.00038909836, z: 0.0010868862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.021960825, y: 0.0042372323, z: -0.009305905} + inSlope: {x: -0.00009344029, y: -0.0006267881, z: -0.00014177691} + outSlope: {x: -0.00009349858, y: -0.00092829106, z: -0.00014177852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.02195693, y: 0.0041985535, z: -0.009311812} + inSlope: {x: -0.00009349858, y: -0.00092829106, z: -0.00014177852} + outSlope: {x: -0.00009349858, y: -0.00092829106, z: -0.00014177852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block06Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.03785232, z: -0.00204458} + inSlope: {x: -0.00023898568, y: -0.0009593582, z: -0.0001316893} + outSlope: {x: -0.00023898568, y: -0.0009593582, z: -0.0001316893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.000009957736, y: 0.037812345, z: -0.002050067} + inSlope: {x: -0.00023898568, y: -0.0009593582, z: -0.0001316893} + outSlope: {x: -0.0006907601, y: -0.0009593582, z: -0.00036950468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.00003873941, y: 0.037772372, z: -0.002065463} + inSlope: {x: -0.0006907601, y: -0.0009593582, z: -0.00036950468} + outSlope: {x: -0.0011032396, y: -0.0009593583, z: -0.0005688715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.000084707724, y: 0.0377324, z: -0.002089166} + inSlope: {x: -0.0011032396, y: -0.0009593583, z: -0.0005688715} + outSlope: {x: -0.001476424, y: -0.00047641745, z: -0.00072991126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.0001462254, y: 0.037712548, z: -0.002119579} + inSlope: {x: -0.001476424, y: -0.00047641745, z: -0.00072991126} + outSlope: {x: -0.0018103133, y: -0.0021138957, z: -0.0008525278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: -0.00022165511, y: 0.03762447, z: -0.002155101} + inSlope: {x: -0.0018103133, y: -0.0021138957, z: -0.0008525278} + outSlope: {x: -0.0021049052, y: -0.0064696874, z: -0.0009367453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.0003093595, y: 0.0373549, z: -0.002194132} + inSlope: {x: -0.0021049052, y: -0.0064696874, z: -0.0009367453} + outSlope: {x: -0.0023602033, y: -0.010763285, z: -0.0009826078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: -0.00040770127, y: 0.03690643, z: -0.002235074} + inSlope: {x: -0.0023602033, y: -0.010763285, z: -0.0009826078} + outSlope: {x: -0.0025762068, y: -0.0149949575, z: -0.0009900709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: -0.0007501785, y: 0.0345134, z: -0.002353366} + inSlope: {x: -0.0028903293, y: -0.023272824, z: -0.0008898248} + outSlope: {x: -0.0029884423, y: -0.027318465, z: -0.00078208884} + tangentMode: 0 + weightedMode: 0 + 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.001507135, y: 0.02524864, z: -0.0024255859} + inSlope: {x: -0.0030294464, y: -0.046542697, z: 0.00033230407} + outSlope: {x: -0.004999202, y: -0.048048522, z: 0.0034429724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: -0.001715435, y: 0.02324662, z: -0.002282129} + inSlope: {x: -0.004999202, y: -0.048048522, z: 0.0034429724} + outSlope: {x: -0.0069119986, y: -0.04976375, z: 0.0069514522} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.002003435, y: 0.021173129, z: -0.0019924848} + inSlope: {x: -0.0069119986, y: -0.04976375, z: 0.0069514522} + outSlope: {x: -0.007937107, y: -0.052941546, z: 0.0068784677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.002334148, y: 0.01896723, z: -0.0017058819} + inSlope: {x: -0.007937107, y: -0.052941546, z: 0.0068784677} + outSlope: {x: -0.010426764, y: -0.048821572, z: 0.0029636647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: -0.002768596, y: 0.016933, z: -0.001582396} + inSlope: {x: -0.010426764, y: -0.048821572, z: 0.0029636647} + outSlope: {x: -0.023645261, y: -0.030200372, z: -0.0036129802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.0037538158, y: 0.01567465, z: -0.001732937} + inSlope: {x: -0.023645261, y: -0.030200372, z: -0.0036129802} + outSlope: {x: -0.031947613, y: -0.027853416, z: -0.007688949} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.005084967, y: 0.0145140905, z: -0.00205331} + inSlope: {x: -0.031947613, y: -0.027853416, z: -0.007688949} + outSlope: {x: -0.032740906, y: -0.03164718, z: -0.008728138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: -0.00644917, y: 0.01319546, z: -0.002416982} + inSlope: {x: -0.032740906, y: -0.03164718, z: -0.008728138} + outSlope: {x: -0.03169949, y: -0.03587109, z: -0.0070633185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: -0.009104285, y: 0.010012271, z: -0.002955507} + inSlope: {x: -0.032023303, y: -0.040525455, z: -0.005861283} + outSlope: {x: -0.031669963, y: -0.045610342, z: -0.006633276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.01042387, y: 0.008111836, z: -0.003231894} + inSlope: {x: -0.031669963, y: -0.045610342, z: -0.006633276} + outSlope: {x: -0.029427394, y: -0.04803651, z: -0.009411129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.01165001, y: 0.0061103175, z: -0.003624024} + inSlope: {x: -0.029427394, y: -0.04803651, z: -0.009411129} + outSlope: {x: -0.0107613765, y: -0.0029101206, z: -0.018201087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: -0.0120984, y: 0.0059890626, z: -0.0043824017} + inSlope: {x: -0.0107613765, y: -0.0029101206, z: -0.018201087} + outSlope: {x: 0.004179117, y: 0.030012015, z: -0.026566744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.011924271, y: 0.0072395657, z: -0.0054893517} + inSlope: {x: 0.004179117, y: 0.030012015, z: -0.026566744} + outSlope: {x: 0.007818011, y: 0.02931384, z: -0.029782448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.01159852, y: 0.008460974, z: -0.006730286} + inSlope: {x: 0.007818011, y: 0.02931384, z: -0.029782448} + outSlope: {x: 0.005880008, y: 0.021260627, z: -0.028540775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: -0.010860899, y: 0.010729579, z: -0.01027614} + inSlope: {x: 0.005922723, y: 0.014959673, z: -0.028338486} + outSlope: {x: 0.005946728, y: 0.011014548, z: -0.028412186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.010114259, y: 0.011602229, z: -0.01382959} + inSlope: {x: 0.0060002576, y: 0.0029256274, z: -0.028428752} + outSlope: {x: 0.0060291397, y: -0.0012191975, z: -0.028371874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.009610537, y: 0.0113251805, z: -0.016189719} + inSlope: {x: 0.006060193, y: -0.005429982, z: -0.0282712} + outSlope: {x: 0.0060929405, y: -0.009707575, z: -0.028127315} + tangentMode: 0 + weightedMode: 0 + 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.009101356, y: 0.010335209, z: -0.018525839} + inSlope: {x: 0.0061274013, y: -0.014051755, z: -0.02793963} + outSlope: {x: 0.006163547, y: -0.018462373, z: -0.027708668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.008586147, y: 0.008610122, z: -0.020823449} + inSlope: {x: 0.0062014875, y: -0.022939702, z: -0.027433945} + outSlope: {x: 0.006241127, y: -0.027368113, z: -0.027115943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7916666 + value: {x: -0.0083261, y: 0.007469785, z: -0.02195328} + inSlope: {x: 0.006241127, y: -0.027368113, z: -0.027115943} + outSlope: {x: 0.006282494, y: -0.013561565, z: -0.026165493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: -0.008064329, y: 0.006904719, z: -0.02304351} + inSlope: {x: 0.006282494, y: -0.013561565, z: -0.026165493} + outSlope: {x: 0.0063256416, y: 0.019431915, z: -0.02323845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9166666 + value: {x: -0.007535325, y: 0.008489334, z: -0.02489182} + inSlope: {x: 0.0063704597, y: 0.018598897, z: -0.021121006} + outSlope: {x: 0.0064170617, y: 0.013017972, z: -0.02010477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.0069985567, y: 0.00940911, z: -0.02657077} + inSlope: {x: 0.006465374, y: 0.009056633, z: -0.020190028} + outSlope: {x: 0.0065154377, y: 0.0050189686, z: -0.021090677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0833333 + value: {x: -0.0064534466, y: 0.009655952, z: -0.02834143} + inSlope: {x: 0.006567217, y: 0.00090523105, z: -0.021405168} + outSlope: {x: 0.0066207233, y: -0.0032847913, z: -0.021526525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: -0.0058994163, y: 0.009204461, z: -0.030136298} + inSlope: {x: 0.0066759842, y: -0.007550969, z: -0.021550272} + outSlope: {x: 0.0067329854, y: -0.011893432, z: -0.021476235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2083333 + value: {x: -0.0056188763, y: 0.008708904, z: -0.031031137} + inSlope: {x: 0.0067329854, y: -0.011893432, z: -0.021476235} + outSlope: {x: 0.0066949097, y: -0.016311977, z: -0.02130428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.005339921, y: 0.008029236, z: -0.03191882} + inSlope: {x: 0.0066949097, y: -0.016311977, z: -0.02130428} + outSlope: {x: 0.00629039, y: -0.020806748, z: -0.021034542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3333333 + value: {x: -0.004831474, y: 0.0061973166, z: -0.03362401} + inSlope: {x: 0.0059123477, y: -0.023159381, z: -0.01989008} + outSlope: {x: 0.0056056487, y: 0.010681208, z: -0.008947202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: -0.004597905, y: 0.0066423677, z: -0.03399681} + inSlope: {x: 0.0056056487, y: 0.010681208, z: -0.008947202} + outSlope: {x: 0.0053702514, y: 0.018674718, z: -0.0020176468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0.004157217, y: 0.008085367, z: -0.03420825} + inSlope: {x: 0.005206266, y: 0.015957301, z: -0.0030569} + outSlope: {x: 0.005113575, y: 0.010241756, z: -0.00361295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.0037319749, y: 0.008774481, z: -0.03450631} + inSlope: {x: 0.0050922176, y: 0.0062969276, z: -0.0035404516} + outSlope: {x: 0.005142279, y: 0.0022428788, z: -0.0034817066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: -0.003298397, y: 0.008787906, z: -0.03479461} + inSlope: {x: 0.0052635996, y: -0.0019206582, z: -0.0034375126} + outSlope: {x: 0.005456268, y: -0.006193416, z: -0.0034075289} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.003071052, y: 0.008529847, z: -0.03493659} + inSlope: {x: 0.005456268, y: -0.006193416, z: -0.0034075289} + outSlope: {x: 0.0057203798, y: -0.010575697, z: -0.003391927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7083333 + value: {x: -0.0028327038, y: 0.008089194, z: -0.03507792} + inSlope: {x: 0.0057203798, y: -0.010575697, z: -0.003391927} + outSlope: {x: 0.0060557155, y: -0.01506709, z: -0.0033902484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: -0.002311113, y: 0.006728384, z: -0.03536099} + inSlope: {x: 0.006462441, y: -0.017592281, z: -0.0034034092} + outSlope: {x: 0.007202091, y: 0.0011136289, z: -0.0034303223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.8333333 + value: {x: -0.002011027, y: 0.0067747855, z: -0.03550392} + inSlope: {x: 0.007202091, y: 0.0011136289, z: -0.0034303223} + outSlope: {x: 0.008222049, y: 0.005383462, z: -0.0034720737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.875 + value: {x: -0.001668441, y: 0.006999097, z: -0.035648588} + inSlope: {x: 0.008222049, y: 0.005383462, z: -0.0034720737} + outSlope: {x: 0.009031374, y: 0.0035105257, z: -0.00352752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9166667 + value: {x: -0.001292133, y: 0.007145369, z: -0.03579557} + inSlope: {x: 0.009031374, y: 0.0035105257, z: -0.00352752} + outSlope: {x: 0.009626306, y: -0.0010328332, z: -0.0035976355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9583333 + value: {x: -0.00089103845, y: 0.0071023344, z: -0.03594547} + inSlope: {x: 0.009626306, y: -0.0010328332, z: -0.0035976355} + outSlope: {x: 0.010006708, y: -0.005373792, z: -0.003682072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3 + value: {x: -0.0004740915, y: 0.006878426, z: -0.03609889} + inSlope: {x: 0.010006708, y: -0.005373792, z: -0.003682072} + outSlope: {x: 0.010172745, y: -0.009426938, z: -0.0037804912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.0416667 + value: {x: -0.00005022631, y: 0.006485636, z: -0.03625641} + inSlope: {x: 0.010172745, y: -0.009426938, z: -0.0037804912} + outSlope: {x: 0.010124419, y: -0.013192055, z: -0.0038932948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.125 + value: {x: 0.0007958465, y: 0.005273907, z: -0.0365876} + inSlope: {x: 0.010181347, y: -0.015889462, z: -0.0040552635} + outSlope: {x: 0.014229873, y: -0.008183598, z: -0.0049461266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: 0.001388759, y: 0.0049329232, z: -0.03679369} + inSlope: {x: 0.014229873, y: -0.008183598, z: -0.0049461266} + outSlope: {x: 0.017067762, y: -0.003076813, z: -0.004792575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.25 + value: {x: 0.0027961778, y: 0.004614315, z: -0.03711192} + inSlope: {x: 0.016710322, y: -0.004569789, z: -0.0028449385} + outSlope: {x: 0.013157833, y: 0.0006726824, z: 0.0007206903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.2916667 + value: {x: 0.003344422, y: 0.0046423436, z: -0.03708189} + inSlope: {x: 0.013157833, y: 0.0006726824, z: 0.0007206903} + outSlope: {x: 0.008358274, y: 0.0043458533, z: 0.0025929548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.3333333 + value: {x: 0.003692682, y: 0.0048234197, z: -0.03697385} + inSlope: {x: 0.008358274, y: 0.0043458533, z: 0.0025929548} + outSlope: {x: 0.007476418, y: 0.0018305363, z: 0.0029894772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.375 + value: {x: 0.0040042, y: 0.0048996923, z: -0.036849286} + inSlope: {x: 0.007476418, y: 0.0018305363, z: 0.0029894772} + outSlope: {x: 0.006757952, y: -0.0025577496, z: 0.0026632638} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.5 + value: {x: 0.004734339, y: 0.004512887, z: -0.03667763} + inSlope: {x: 0.004874659, y: -0.002700686, z: 0.0007283006} + outSlope: {x: 0.0037377977, y: -0.0021976046, z: -0.0018264164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.5833333 + value: {x: 0.0050130626, y: 0.004334731, z: -0.0367277} + inSlope: {x: 0.0029515785, y: -0.0020781404, z: 0.0006247353} + outSlope: {x: 0.002358122, y: -0.00010763147, z: 0.00062473177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.625 + value: {x: 0.005111318, y: 0.0043302462, z: -0.036701668} + inSlope: {x: 0.002358122, y: -0.00010763147, z: 0.00062473177} + outSlope: {x: 0.0018220533, y: 0.0026870677, z: 0.00062467455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.7083333 + value: {x: 0.0052432087, y: 0.004477403, z: -0.03664961} + inSlope: {x: 0.0013433269, y: 0.0008446916, z: 0.0006247353} + outSlope: {x: 0.00092197716, y: -0.0010082797, z: 0.0013121198} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.875 + value: {x: 0.0053371117, y: 0.004254372, z: -0.036491256} + inSlope: {x: 0.00045937925, y: -0.0006881891, z: 0.000588168} + outSlope: {x: 0.00060719374, y: -0.00007381425, z: 0.0005882252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.0054860166, y: 0.004189026, z: -0.0363285} + inSlope: {x: 0.00036628387, y: -0.00029371373, z: 0.00046011145} + outSlope: {x: 0.00036628387, y: -0.00029371373, z: 0.00046011145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block07Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.0002706767, z: 0} + inSlope: {x: 0.012894035, y: -0, z: -0.00783511} + outSlope: {x: 0.012894035, y: -0, z: -0.00783511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.0005372515, y: 0.0002706767, z: -0.0003264629} + inSlope: {x: 0.012894035, y: -0, z: -0.00783511} + outSlope: {x: 0.032610152, y: -0, z: -0.019329146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.0018960079, y: 0.0002706767, z: -0.001131844} + inSlope: {x: 0.032610152, y: -0, z: -0.019329146} + outSlope: {x: 0.047179203, y: -0, z: -0.027037825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.0038618078, y: 0.0002706767, z: -0.00225842} + inSlope: {x: 0.047179203, y: -0, z: -0.027037825} + outSlope: {x: 0.056601133, y: -0, z: -0.030961048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.0062201885, y: 0.0002706767, z: -0.0035484638} + inSlope: {x: 0.056601133, y: -0, z: -0.030961048} + outSlope: {x: 0.060876016, y: -0, z: -0.03109899} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.008756689, y: 0.0002706767, z: -0.004844255} + inSlope: {x: 0.060876016, y: -0, z: -0.03109899} + outSlope: {x: 0.060003623, y: -0, z: -0.027451469} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.01125684, y: 0.0002706767, z: -0.005988066} + inSlope: {x: 0.060003623, y: -0, z: -0.027451469} + outSlope: {x: 0.063279115, y: -0, z: -0.02035046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: 0.013893469, y: 0.0002706767, z: -0.0068360018} + inSlope: {x: 0.063279115, y: -0, z: -0.02035046} + outSlope: {x: 0.073313504, y: -0, z: -0.016969262} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.02009835, y: 0.0002706767, z: -0.008335021} + inSlope: {x: 0.075603604, y: -0, z: -0.019007197} + outSlope: {x: 0.07003082, y: -0, z: -0.025315225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: 0.0230163, y: 0.0002706767, z: -0.009389821} + inSlope: {x: 0.07003082, y: -0, z: -0.025315225} + outSlope: {x: 0.057247896, y: -0, z: -0.035893388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.02540163, y: 0.0002706767, z: -0.01088538} + inSlope: {x: 0.057247896, y: -0, z: -0.035893388} + outSlope: {x: 0.0507941, y: -0, z: -0.04472784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.029713457, y: 0.0002706767, z: -0.014486119} + inSlope: {x: 0.052689776, y: -0, z: -0.04168989} + outSlope: {x: 0.060311623, y: -0, z: -0.03594627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.0425713, y: 0.0002706767, z: -0.020908501} + inSlope: {x: 0.05565957, y: -0, z: -0.02635058} + outSlope: {x: 0.049838766, y: -0, z: -0.024100272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.04950696, y: 0.0002706767, z: -0.02445353} + inSlope: {x: 0.02867762, y: -0, z: -0.019784879} + outSlope: {x: 0.012042515, y: -0, z: -0.020071238} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.0511459, y: 0.0002706767, z: -0.02721261} + inSlope: {x: 0.018247455, y: -0, z: -0.0135542415} + outSlope: {x: 0.028838338, y: -0, z: -0.012594234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.06018385, y: 0.0002706767, z: -0.03107644} + inSlope: {x: 0.019793719, y: -0, z: -0.01610809} + outSlope: {x: 0.016964165, y: -0, z: -0.018068863} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.06373118, y: 0.0002706767, z: -0.036848508} + inSlope: {x: 0.0037209354, y: -0, z: -0.011320048} + outSlope: {x: 0.0026103996, y: -0, z: -0.010989143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2083333 + value: {x: 0.06482409, y: 0.0002706767, z: -0.039747227} + inSlope: {x: 0.0032469302, y: -0, z: 0.00040632405} + outSlope: {x: 0.0032714019, y: -0, z: 0.00040626447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.7916667 + value: {x: 0.06546658, y: 0.0002706767, z: -0.039477047} + inSlope: {x: -0.000022659257, y: -0, z: 0.000023860885} + outSlope: {x: -0.000022659257, y: -0, z: 0.000023918104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.06545903, y: 0.0002706767, z: -0.03946908} + inSlope: {x: -0.000022659387, y: -0, z: 0.000023918243} + outSlope: {x: -0.000022659387, y: -0, z: 0.000023918243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.0002706767, z: -0.0134622} + inSlope: {x: 0.00033287948, y: -0, z: -0.00033768654} + outSlope: {x: 0.00033287948, y: -0, z: -0.00033768654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.00001386998, y: 0.0002706767, z: -0.01347627} + inSlope: {x: 0.00033287948, y: -0, z: -0.00033768654} + outSlope: {x: 0.0010419698, y: -0, z: -0.0011205482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.00005728539, y: 0.0002706767, z: -0.013522959} + inSlope: {x: 0.0010419698, y: -0, z: -0.0011205482} + outSlope: {x: 0.0018160563, y: -0, z: -0.0020652008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.0001329544, y: 0.0002706767, z: -0.01360901} + inSlope: {x: 0.0018160563, y: -0, z: -0.0020652008} + outSlope: {x: 0.002655139, y: -0, z: -0.0031706425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.0002435852, y: 0.0002706767, z: -0.01374112} + inSlope: {x: 0.002655139, y: -0, z: -0.0031706425} + outSlope: {x: 0.0035592201, y: -0, z: -0.0044378485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.000391886, y: 0.0002706767, z: -0.01392603} + inSlope: {x: 0.0035592201, y: -0, z: -0.0044378485} + outSlope: {x: 0.004528295, y: -0, z: -0.0058665555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.00058056496, y: 0.0002706767, z: -0.01417047} + inSlope: {x: 0.004528295, y: -0, z: -0.0058665555} + outSlope: {x: 0.005562371, y: -0, z: -0.007456314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: 0.0008123304, y: 0.0002706767, z: -0.01448115} + inSlope: {x: 0.005562371, y: -0, z: -0.007456314} + outSlope: {x: 0.0066614277, y: -0, z: -0.0088483095} + tangentMode: 0 + weightedMode: 0 + 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.00108989, y: 0.0002706767, z: -0.0148498295} + inSlope: {x: 0.0066614277, y: -0, z: -0.0088483095} + outSlope: {x: 0.007276563, y: -0, z: -0.009276239} + tangentMode: 0 + weightedMode: 0 + 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.006443635, y: 0.0002706767, z: -0.022513138} + inSlope: {x: 0.008853045, y: -0, z: -0.013137068} + outSlope: {x: 0.008661884, y: -0, z: -0.012818196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.009638614, y: 0.0002706767, z: -0.02729531} + inSlope: {x: 0.0012343717, y: -0, z: -0.0015523308} + outSlope: {x: 0.0003781847, y: -0, z: 0.00058279093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0833333 + value: {x: 0.00922672, y: 0.0002706767, z: -0.02663708} + inSlope: {x: -0.0009898605, y: -0, z: 0.0015684187} + outSlope: {x: -0.00097652245, y: -0, z: 0.0014601488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.0416667 + value: {x: 0.008762325, y: 0.0002706767, z: -0.026038459} + inSlope: {x: -0.000000014305087, y: -0, z: -0.00006225574} + outSlope: {x: -0.000000028610174, y: -0, z: -0.00006231296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.008762307, y: 0.0002706767, z: -0.02610964} + inSlope: {x: -0.000000014305169, y: -0, z: -0.00007713347} + outSlope: {x: -0.000000014305169, y: -0, z: -0.00007713347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.000270677, z: 0.0132667} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0, y: 0.000270677, z: 0.0132667} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.005750505, y: 0.0002706767, z: -0.008659227} + inSlope: {x: -0.00016173362, y: -0, z: -0.00014837265} + outSlope: {x: -0.00016173362, y: -0, z: -0.00014837265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.00574055, y: 0.0002706767, z: -0.008661106} + inSlope: {x: 0.0008324715, y: -0, z: 0.0007987543} + outSlope: {x: 0.0013519186, y: -0, z: 0.0035924988} + tangentMode: 0 + weightedMode: 0 + 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.00579688, y: 0.0002706767, z: -0.008511419} + inSlope: {x: 0.0013519186, y: -0, z: 0.0035924988} + outSlope: {x: 0.0033387311, y: -0, z: 0.008096531} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.006454706, y: 0.0002706767, z: -0.007488868} + inSlope: {x: 0.007103516, y: -0, z: 0.0071499785} + outSlope: {x: 0.0086127175, y: -0, z: 0.0026068948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.0116134, y: 0.0002706767, z: -0.0075831446} + inSlope: {x: 0.01071457, y: -0, z: -0.0037821184} + outSlope: {x: 0.010529518, y: -0, z: -0.004814534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.01562028, y: 0.0002706767, z: -0.010040849} + inSlope: {x: 0.014832458, y: -0, z: -0.009985194} + outSlope: {x: 0.015060496, y: -0, z: -0.010665618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7916666 + value: {x: 0.01791721, y: 0.0002706767, z: -0.01175305} + inSlope: {x: 0.004744553, y: -0, z: -0.0038675915} + outSlope: {x: -0.00015612572, y: -0, z: 0.000033473905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.75 + value: {x: 0.018182099, y: 0.0002706767, z: -0.009821661} + inSlope: {x: 0.0022127968, y: -0, z: 0.0032102617} + outSlope: {x: 0.0025807235, y: -0, z: 0.0032921298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.5833333 + value: {x: 0.02142827, y: 0.0002706767, z: -0.008145692} + inSlope: {x: 0.0029923553, y: -0, z: -0.0010340349} + outSlope: {x: 0.002491431, y: -0, z: -0.0014944525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.021749228, y: 0.0002706767, z: -0.008284672} + inSlope: {x: 0.000014133507, y: -0, z: 0.00023390382} + outSlope: {x: 0.000014133507, y: -0, z: 0.00023390382} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0018227359, y: 0.0002706767, z: -0.0015373799} + inSlope: {x: 0.000041434763, y: 0.0000035597384, z: -0.000037751197} + outSlope: {x: 0.000041434763, y: 0.0000035597384, z: -0.000037751197} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.0018227359, y: 0.00029199658, z: -0.001541886} + inSlope: {x: -0.00039494256, y: 0.00009065504, z: 0.0006630418} + outSlope: {x: -0.007765903, y: 0.00010245154, z: 0.0015930047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: -0.0021463148, y: 0.0002962654, z: -0.0014755109} + inSlope: {x: -0.007765903, y: 0.00010245154, z: 0.0015930047} + outSlope: {x: -0.019474866, y: 0.00011495718, z: 0.0038489753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.002957768, y: 0.0003010553, z: -0.0013151368} + inSlope: {x: -0.019474866, y: 0.00011495718, z: 0.0038489753} + outSlope: {x: -0.026769707, y: 0.00012817197, z: 0.004367972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.004073173, y: 0.00030639578, z: -0.001133138} + inSlope: {x: -0.026769707, y: 0.00012817197, z: 0.004367972} + outSlope: {x: -0.029650489, y: 0.0001420924, z: 0.0029793615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: -0.005308609, y: 0.0003123163, z: -0.001008998} + inSlope: {x: -0.029650489, y: 0.0001420924, z: 0.0029793615} + outSlope: {x: -0.028117117, y: 0.0001567196, z: -0.00031694397} + tangentMode: 0 + weightedMode: 0 + 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.006480156, y: 0.0003188463, z: -0.001022204} + inSlope: {x: -0.028117117, y: 0.0001567196, z: -0.00031694397} + outSlope: {x: -0.026601316, y: 0.00017205403, z: -0.005622963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: -0.007588543, y: 0.0003260152, z: -0.0012564939} + inSlope: {x: -0.026601316, y: 0.00017205403, z: -0.005622963} + outSlope: {x: -0.029577626, y: 0.00018809938, z: -0.012601538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.008820946, y: 0.0003338527, z: -0.001781559} + inSlope: {x: -0.029577626, y: 0.00018809938, z: -0.012601538} + outSlope: {x: -0.027986795, y: 0.00020485211, z: -0.018323224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.009987062, y: 0.00034238817, z: -0.002545026} + inSlope: {x: -0.027986795, y: 0.00020485211, z: -0.018323224} + outSlope: {x: -0.021548359, y: 0.00022230973, z: -0.022341477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: -0.010884909, y: 0.00035165108, z: -0.0034759198} + inSlope: {x: -0.021548359, y: 0.00022230973, z: -0.022341477} + outSlope: {x: -0.01026287, y: 0.00024047476, z: -0.024656326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.011312529, y: 0.0003616709, z: -0.0045032687} + inSlope: {x: -0.01026287, y: 0.00024047476, z: -0.024656326} + outSlope: {x: 0.00040343322, y: 0.0002593493, z: -0.025267927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.01021806, y: 0.00045548027, z: -0.012106121} + inSlope: {x: 0.0062347185, y: 0.0003874535, z: -0.02704516} + outSlope: {x: 0.0067028683, y: 0.0004112814, z: -0.027121207} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: -0.0093432525, y: 0.0005054179, z: -0.015486899} + inSlope: {x: 0.007251012, y: 0.00035140815, z: -0.026933525} + outSlope: {x: 0.0073311925, y: 0.000121389734, z: -0.026669795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: -0.008734364, y: 0.0005068506, z: -0.01769366} + inSlope: {x: 0.0072821337, y: -0.00008700443, z: -0.026292436} + outSlope: {x: 0.007113239, y: -0.00027238575, z: -0.026223587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: -0.007836475, y: 0.00045346568, z: -0.02100729} + inSlope: {x: 0.007288099, y: -0.0005741007, z: -0.026719157} + outSlope: {x: 0.007393062, y: -0.0006904397, z: -0.026623446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0833333 + value: {x: -0.005973904, y: 0.00024170641, z: -0.02726619} + inSlope: {x: 0.007390365, y: -0.00092692394, z: -0.022677697} + outSlope: {x: 0.0072843507, y: -0.0009051727, z: -0.021195104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: -0.005372756, y: 0.00016814019, z: -0.028961059} + inSlope: {x: 0.007143174, y: -0.000860413, z: -0.019481698} + outSlope: {x: 0.0069669466, y: -0.00079264364, z: -0.017537108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2083333 + value: {x: -0.0050824676, y: 0.0001351135, z: -0.029691769} + inSlope: {x: 0.0069669466, y: -0.00079264364, z: -0.017537108} + outSlope: {x: 0.0067554056, y: -0.00070185005, z: -0.01536166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.004800992, y: 0.000105869694, z: -0.03033184} + inSlope: {x: 0.0067554056, y: -0.00070185005, z: -0.01536166} + outSlope: {x: 0.0065088146, y: -0.00058804953, z: -0.012954916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2916667 + value: {x: -0.004529791, y: 0.00008136759, z: -0.03087163} + inSlope: {x: 0.0065088146, y: -0.00058804953, z: -0.012954916} + outSlope: {x: 0.0062270616, y: -0.00045123597, z: -0.010317403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3333333 + value: {x: -0.004270331, y: 0.000062566156, z: -0.03130152} + inSlope: {x: 0.0062270616, y: -0.00045123597, z: -0.010317403} + outSlope: {x: 0.005910111, y: -0.00029140402, z: -0.007600808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: -0.004024076, y: 0.0000504243, z: -0.03161822} + inSlope: {x: 0.005910111, y: -0.00029140402, z: -0.007600808} + outSlope: {x: 0.005558027, y: -0.0001118099, z: -0.0062207673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.0037924908, y: 0.000045765544, z: -0.03187742} + inSlope: {x: 0.005558027, y: -0.0001118099, z: -0.0062207673} + outSlope: {x: 0.0052917823, y: -0.0000038648545, z: -0.0054081553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.003348637, y: 0.000045443474, z: -0.03230479} + inSlope: {x: 0.0053607244, y: -0.0000038648323, z: -0.0048487377} + outSlope: {x: 0.005457298, y: 0.000049753096, z: -0.00454341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.003121249, y: 0.000047516525, z: -0.032494098} + inSlope: {x: 0.005457298, y: 0.000049753096, z: -0.00454341} + outSlope: {x: 0.0055599115, y: 0.000082131344, z: -0.0044911364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5833333 + value: {x: -0.0028895868, y: 0.00005093865, z: -0.032681227} + inSlope: {x: 0.0055599115, y: 0.000082131344, z: -0.0044911364} + outSlope: {x: 0.0056684767, y: 0.000111981564, z: -0.004692755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: -0.0026534, y: 0.000055604556, z: -0.03287676} + inSlope: {x: 0.0056684767, y: 0.000111981564, z: -0.004692755} + outSlope: {x: 0.005783078, y: 0.00013930695, z: -0.0051474855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7083333 + value: {x: -0.00216645, y: 0.00006824676, z: -0.03333505} + inSlope: {x: 0.0059037325, y: 0.00016410623, z: -0.0058514434} + outSlope: {x: 0.006030324, y: 0.00018637875, z: -0.006158626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.875 + value: {x: -0.00112723, y: 0.0001038255, z: -0.03433342} + inSlope: {x: 0.006446292, y: 0.00023803889, z: -0.0057911566} + outSlope: {x: 0.006596973, y: 0.00025020892, z: -0.0056071365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3 + value: {x: -0.0002827695, y: 0.00013620159, z: -0.03500622} + inSlope: {x: 0.0069163707, y: 0.0002669658, z: -0.005147257} + outSlope: {x: 0.007085086, y: 0.0002715548, z: -0.004871512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.0416667 + value: {x: 0.00001244297, y: 0.0001475164, z: -0.0352092} + inSlope: {x: 0.007085086, y: 0.0002715548, z: -0.004871512} + outSlope: {x: 0.0072598555, y: 0.00027362278, z: -0.0045645502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.0833333 + value: {x: 0.0003149358, y: 0.0001589173, z: -0.03539939} + inSlope: {x: 0.0072598555, y: 0.00027362278, z: -0.0045645502} + outSlope: {x: 0.0074405544, y: 0.0002731552, z: -0.0042276112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.25 + value: {x: 0.0016046999, y: 0.0002032753, z: -0.03600682} + inSlope: {x: 0.00806636, y: 0.0002566127, z: -0.003030962} + outSlope: {x: 0.0089404145, y: 0.00024604483, z: -0.002570853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.375 + value: {x: 0.0027938988, y: 0.0002322891, z: -0.036254045} + inSlope: {x: 0.009937586, y: 0.00021733406, z: -0.0012824226} + outSlope: {x: 0.00976501, y: 0.00019918538, z: -0.0012824797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.5 + value: {x: 0.003918386, y: 0.0002544983, z: -0.03629734} + inSlope: {x: 0.008077618, y: 0.00015531793, z: 0.00012170768} + outSlope: {x: 0.0065627163, y: 0.00012959291, z: 0.0020133553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.5833333 + value: {x: 0.0043835198, y: 0.0002641207, z: -0.03610421} + inSlope: {x: 0.0046004993, y: 0.00010134497, z: 0.0026217944} + outSlope: {x: 0.0023464563, y: 0.00007064612, z: 0.0024832487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4 + value: {x: 0.004472599, y: 0.0002689609, z: -0.03592432} + inSlope: {x: -0.000035612517, y: -0.000018163437, z: -0} + outSlope: {x: -0.000035605157, y: -0.00001676502, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.004468148, y: 0.00026711728, z: -0.03592432} + inSlope: {x: -0.000035605564, y: -0.000010715912, z: -0} + outSlope: {x: -0.000035605564, y: -0.000010715912, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0060693687, y: 0.0002706767, z: 0.0041303537} + inSlope: {x: -0.00010808944, y: -0, z: -0.00006850004} + outSlope: {x: -0.00010808944, y: -0, z: -0.00006850004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.0060678762, y: 0.0002706767, z: 0.0041294056} + inSlope: {x: 0.00065711944, y: -0, z: 0.00041640023} + outSlope: {x: 0.0034491522, y: -0, z: 0.0021725055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: 0.0062115905, y: 0.0002706767, z: 0.004219927} + inSlope: {x: 0.0034491522, y: -0, z: 0.0021725055} + outSlope: {x: 0.0093680145, y: -0, z: 0.0060123364} + tangentMode: 0 + weightedMode: 0 + 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.0066019245, y: 0.0002706767, z: 0.004470441} + inSlope: {x: 0.0093680145, y: -0, z: 0.0060123364} + outSlope: {x: 0.014071167, y: -0, z: 0.009283277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: 0.007188223, y: 0.0002706767, z: 0.004857244} + inSlope: {x: 0.014071167, y: -0, z: 0.009283277} + outSlope: {x: 0.01752356, y: -0, z: 0.011963674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.008740265, y: 0.0002706767, z: 0.005941295} + inSlope: {x: 0.019725427, y: -0, z: 0.014053543} + outSlope: {x: 0.020676546, y: -0, z: 0.015552878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2916666 + value: {x: 0.01190302, y: 0.0002706767, z: 0.008662213} + inSlope: {x: 0.016025778, y: -0, z: 0.016507631} + outSlope: {x: 0.011974302, y: -0, z: 0.015644759} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.012679949, y: 0.0002706767, z: 0.009905388} + inSlope: {x: 0.0066719977, y: -0, z: 0.014191416} + outSlope: {x: 0.002187111, y: -0, z: 0.012478635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.01365468, y: 0.0002706767, z: 0.016414968} + inSlope: {x: 0.0047805733, y: -0, z: 0.0056078103} + outSlope: {x: 0.005448465, y: -0, z: 0.0043944083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: 0.01390848, y: 0.0002706767, z: 0.016095579} + inSlope: {x: -0.0011457517, y: -0, z: -0.002567048} + outSlope: {x: -0.0011700197, y: -0, z: -0.0026282603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.2916667 + value: {x: 0.013341693, y: 0.0002706767, z: 0.014894756} + inSlope: {x: -0.000030155123, y: -0, z: -0.000014448137} + outSlope: {x: -0.000030155123, y: -0, z: -0.000014476748} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.01331656, y: 0.0002706767, z: 0.01488271} + inSlope: {x: -0.000030155295, y: -0, z: -0.00001444822} + outSlope: {x: -0.000030155295, y: -0, z: -0.00001444822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg4 + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block05Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block06Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block07Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg4 + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 24 + 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: 4096435371 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4134279922 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4155404485 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4074858048 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4079160439 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4049973806 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4037531673 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4175287068 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2535812651 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 237780881 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2032865031 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3880753828 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4134279922 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4155404485 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4079160439 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4049973806 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4037531673 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4175287068 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2535812651 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 237780881 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2032865031 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3880753828 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3191469815 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 681244544 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2336008963 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3191469815 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4096435371 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4074858048 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 681244544 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4079160439 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4049973806 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4037531673 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 237780881 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3880753828 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 4.125 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7071068 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.7071068 + inSlope: 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: wall_high_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7071067 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.7071067 + inSlope: 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: wall_high_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0 + inSlope: -0.0004035316 + outSlope: -0.0004035316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.00003362763 + inSlope: -0.08476104 + outSlope: -0.08476104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.008391135 + inSlope: 0.014364893 + outSlope: 0.014364893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.0055416916 + inSlope: 0.009805189 + outSlope: 0.009805189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.005049248 + inSlope: 0.3775912 + outSlope: 0.3775912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.025924236 + inSlope: 0.75697577 + outSlope: 0.75697577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.058032077 + inSlope: 0.8753033 + outSlope: 0.8753033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.09886619 + inSlope: 0.70734584 + outSlope: 0.70734584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.11697755 + inSlope: 0.434181 + outSlope: 0.434181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.13504794 + inSlope: 0.15816863 + outSlope: 0.15816863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.13015828 + inSlope: -0.23209427 + outSlope: -0.23209427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08941906 + inSlope: -0.7315582 + outSlope: -0.7315582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.033013403 + inSlope: -0.9227153 + outSlope: -0.9227153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.23384057 + inSlope: -0.789365 + outSlope: -0.789365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.49207237 + inSlope: -1.0209788 + outSlope: -1.0209788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0.62666094 + inSlope: -1.1096452 + outSlope: -1.1096452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.6733167 + inSlope: -0.24800962 + outSlope: -0.24800962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -0.6473283 + inSlope: 0.58207405 + outSlope: 0.58207405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -0.58487093 + inSlope: -0.13120797 + outSlope: -0.13120797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.64733243 + inSlope: -0.5879594 + outSlope: -0.5879594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.67370486 + inSlope: -0.13970797 + outSlope: -0.13970797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.6589747 + inSlope: 0.30367768 + outSlope: 0.30367768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.6513574 + inSlope: -0.2574006 + outSlope: -0.2574006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.67385113 + inSlope: -0.023291752 + outSlope: -0.023291752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.6641777 + inSlope: -0.0054438002 + outSlope: -0.0054438002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.6746488 + inSlope: -0.046831805 + outSlope: -0.046831805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.6720043 + inSlope: -0.049110282 + outSlope: -0.049110282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0.6746844 + inSlope: 0.0022931136 + outSlope: 0.0022931136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.6774183 + inSlope: -0.0019640997 + outSlope: -0.0019640997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0 + inSlope: 0.0005695839 + outSlope: 0.0005695839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.00004746532 + inSlope: 0.15284766 + outSlope: 0.15284766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.025718918 + inSlope: 0.2729782 + outSlope: 0.2729782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.036248446 + inSlope: -0.0025753751 + outSlope: -0.0025753751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.035270873 + inSlope: -0.713218 + outSlope: -0.713218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.02318637 + inSlope: -1.4072177 + outSlope: -1.4072177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.08199729 + inSlope: -1.1620817 + outSlope: -1.1620817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.12002653 + inSlope: -0.819343 + outSlope: -0.819343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.15027586 + inSlope: -0.72656167 + outSlope: -0.72656167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.18057334 + inSlope: -0.89068484 + outSlope: -0.89068484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.22449963 + inSlope: -0.8247282 + outSlope: -0.8247282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.26638052 + inSlope: -0.35916477 + outSlope: -0.35916477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.28595987 + inSlope: -0.058972448 + outSlope: -0.058972448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.29147324 + inSlope: 0.048410974 + outSlope: 0.048410974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.26539415 + inSlope: 0.17019348 + outSlope: 0.17019348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0.23528586 + inSlope: 0.3315916 + outSlope: 0.3315916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.22068645 + inSlope: 0.06405975 + outSlope: 0.06405975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -0.22994758 + inSlope: -0.18216136 + outSlope: -0.18216136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -0.24267365 + inSlope: 0.05193919 + outSlope: 0.05193919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.22261943 + inSlope: 0.19185555 + outSlope: 0.19185555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.21386155 + inSlope: 0.049434923 + outSlope: 0.049434923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.21849987 + inSlope: -0.09434348 + outSlope: -0.09434348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.22106178 + inSlope: 0.075709656 + outSlope: 0.075709656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.21420206 + inSlope: 0.0072662886 + outSlope: 0.0072662886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.21723047 + inSlope: 0.001744505 + outSlope: 0.001744505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.21393764 + inSlope: 0.014813444 + outSlope: 0.014813444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.21476324 + inSlope: 0.015715811 + outSlope: 0.015715811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0.21429157 + inSlope: -0.014189082 + outSlope: -0.014189082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.21527737 + inSlope: 0.00041628044 + outSlope: 0.00041628044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0 + inSlope: -0.0007044115 + outSlope: -0.0007044115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.000058700953 + inSlope: -0.17449996 + outSlope: -0.17449996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.025852665 + inSlope: -0.26800793 + outSlope: -0.26800793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.051340777 + inSlope: -0.33952355 + outSlope: -0.33952355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.06516929 + inSlope: 0.16221178 + outSlope: 0.16221178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.037823133 + inSlope: 0.7013925 + outSlope: 0.7013925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.006719909 + inSlope: 0.7276788 + outSlope: 0.7276788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.02281677 + inSlope: 0.3670437 + outSlope: 0.3670437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.023867058 + inSlope: 0.010368239 + outSlope: 0.010368239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.02368079 + inSlope: 0.031566188 + outSlope: 0.031566188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.026497575 + inSlope: -0.10187729 + outSlope: -0.10187729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.008899517 + inSlope: -0.10616711 + outSlope: -0.10616711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.005784732 + inSlope: -0.26852363 + outSlope: -0.26852363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.08099056 + inSlope: -0.2038179 + outSlope: -0.2038179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.1617077 + inSlope: -0.3408086 + outSlope: -0.3408086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0.20726725 + inSlope: -0.39024746 + outSlope: -0.39024746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.22331879 + inSlope: -0.0737683 + outSlope: -0.0737683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -0.21341458 + inSlope: 0.20198324 + outSlope: 0.20198324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -0.18933144 + inSlope: -0.023654956 + outSlope: -0.023654956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.2060769 + inSlope: -0.16648524 + outSlope: -0.16648524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.2135997 + inSlope: -0.034984604 + outSlope: -0.034984604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.20899227 + inSlope: 0.0946641 + outSlope: 0.0946641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.20698728 + inSlope: -0.0836474 + outSlope: -0.0836474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.21421221 + inSlope: -0.0073839463 + outSlope: -0.0073839463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.21113518 + inSlope: -0.0017178627 + outSlope: -0.0017178627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.21446586 + inSlope: -0.014968833 + outSlope: -0.014968833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.21363384 + inSlope: -0.01569489 + outSlope: -0.01569489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0.21499665 + inSlope: -0.015778383 + outSlope: -0.015778383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.21817671 + inSlope: -0.00088870863 + outSlope: -0.00088870863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 1 + inSlope: -0.0025420187 + outSlope: -0.0025420187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.99929965 + inSlope: -0.013388873 + outSlope: -0.013388873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.9980078 + inSlope: -0.017214058 + outSlope: -0.017214058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9972379 + inSlope: 0.008055212 + outSlope: 0.008055212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.99867904 + inSlope: -0.027828429 + outSlope: -0.027828429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.9949189 + inSlope: -0.13328362 + outSlope: -0.13328362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.9875721 + inSlope: -0.16211775 + outSlope: -0.16211775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9814091 + inSlope: -0.16336653 + outSlope: -0.16336653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.9739582 + inSlope: -0.19236079 + outSlope: -0.19236079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.965379 + inSlope: -0.1510706 + outSlope: -0.1510706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.95967 + inSlope: -0.03273295 + outSlope: -0.03273295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.9576553 + inSlope: -0.04741428 + outSlope: -0.04741428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.92401433 + inSlope: -0.20261472 + outSlope: -0.20261472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.81319207 + inSlope: -0.63296044 + outSlope: -0.63296044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.7134262 + inSlope: -0.9838245 + outSlope: -0.9838245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.6693809 + inSlope: -0.22526512 + outSlope: -0.22526512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.69465417 + inSlope: 0.54841053 + outSlope: 0.54841053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.75045925 + inSlope: -0.09224799 + outSlope: -0.09224799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.6992379 + inSlope: -0.5361698 + outSlope: -0.5361698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.6743591 + inSlope: -0.12623969 + outSlope: -0.12623969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.68871796 + inSlope: 0.29139966 + outSlope: 0.29139966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.69571656 + inSlope: -0.24376208 + outSlope: -0.24376208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.67391044 + inSlope: -0.022703819 + outSlope: -0.022703819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.6834477 + inSlope: -0.0053100493 + outSlope: -0.0053100493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.6731152 + inSlope: -0.046122987 + outSlope: -0.046122987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.67575705 + inSlope: -0.048944343 + outSlope: -0.048944343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.6727975 + inSlope: -0.007259854 + outSlope: -0.007259854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.6686995 + inSlope: -0.0021486364 + outSlope: -0.0021486364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0 + inSlope: 0.00039170557 + outSlope: 0.00039170557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.000032642132 + inSlope: 0.04517642 + outSlope: 0.04517642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0037647015 + inSlope: 0.14328927 + outSlope: 0.14328927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.011973416 + inSlope: 0.17759186 + outSlope: 0.17759186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.0264855 + inSlope: 0.067628086 + outSlope: 0.067628086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.029177422 + inSlope: 0.448366 + outSlope: 0.448366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.06384932 + inSlope: 0.85579824 + outSlope: 0.85579824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.17699762 + inSlope: 0.8869655 + outSlope: 0.8869655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.23941688 + inSlope: 0.6495975 + outSlope: 0.6495975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.2926401 + inSlope: 0.6178326 + outSlope: 0.6178326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.3179574 + inSlope: 0.58054495 + outSlope: 0.58054495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.37993857 + inSlope: 0.40613693 + outSlope: 0.40613693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.42421803 + inSlope: 0.113542914 + outSlope: 0.113542914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.42725408 + inSlope: 0.5286309 + outSlope: 0.5286309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.5324934 + inSlope: 1.4603968 + outSlope: 1.4603968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.75645477 + inSlope: 0.27414468 + outSlope: 0.27414468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.76339495 + inSlope: 0.06076938 + outSlope: 0.06076938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.7615189 + inSlope: 0.07227094 + outSlope: 0.07227094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.7694175 + inSlope: 0.025603518 + outSlope: 0.025603518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.7636525 + inSlope: -0.059298135 + outSlope: -0.059298135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.764476 + inSlope: -0.090465635 + outSlope: -0.090465635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.74749553 + inSlope: -0.20929947 + outSlope: -0.20929947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.701051 + inSlope: -0.23628175 + outSlope: -0.23628175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.6911111 + inSlope: -0.19551286 + outSlope: -0.19551286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.68475825 + inSlope: -0.119871974 + outSlope: -0.119871974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.6783451 + inSlope: -0.047703177 + outSlope: -0.047703177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.6787219 + inSlope: 0.04255978 + outSlope: 0.04255978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.6811994 + inSlope: 0.04054211 + outSlope: 0.04054211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.68401265 + inSlope: 0.054880753 + outSlope: 0.054880753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.6906746 + inSlope: -0.00035195705 + outSlope: -0.00035195705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.6899316 + inSlope: -0.0075996295 + outSlope: -0.0075996295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.6902196 + inSlope: 0.005054004 + outSlope: 0.005054004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.6906697 + inSlope: 0.018380608 + outSlope: 0.018380608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.6919942 + inSlope: 0.019429905 + outSlope: 0.019429905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.69213223 + inSlope: 0.0020392 + outSlope: 0.0020392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: 0.6936947 + inSlope: 0.00095987413 + outSlope: 0.00095987413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.694174 + inSlope: 0.00095844636 + outSlope: 0.00095844636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0 + inSlope: 0.0004774975 + outSlope: 0.0004774975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00003979146 + inSlope: 0.42796192 + outSlope: 0.42796192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.03566349 + inSlope: 1.8358886 + outSlope: 1.8358886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.15303051 + inSlope: 2.7953594 + outSlope: 2.7953594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.48601526 + inSlope: 2.4164114 + outSlope: 2.4164114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.581923 + inSlope: 2.0646276 + outSlope: 2.0646276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.6580675 + inSlope: 1.7313435 + outSlope: 1.7313435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.8357636 + inSlope: 1.0413085 + outSlope: 1.0413085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.89285004 + inSlope: 0.35439992 + outSlope: 0.35439992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9066083 + inSlope: 0.067500085 + outSlope: 0.067500085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.90758294 + inSlope: 0.10041411 + outSlope: 0.10041411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.91926795 + inSlope: -0.106970154 + outSlope: -0.106970154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.8500712 + inSlope: -0.7116132 + outSlope: -0.7116132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.8174624 + inSlope: -0.9080205 + outSlope: -0.9080205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.7212816 + inSlope: -1.3512232 + outSlope: -1.3512232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.30264825 + inSlope: -1.8382794 + outSlope: -1.8382794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.22597331 + inSlope: -1.8291757 + outSlope: -1.8291757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.15021686 + inSlope: -2.1580825 + outSlope: -2.1580825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.04613328 + inSlope: -2.497663 + outSlope: -2.497663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -0.057921812 + inSlope: -1.2352574 + outSlope: -1.2352574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.05680503 + inSlope: -0.10999401 + outSlope: -0.10999401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.07710703 + inSlope: -0.24048209 + outSlope: -0.24048209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.124937594 + inSlope: -0.21712284 + outSlope: -0.21712284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -0.1339064 + inSlope: -0.14548874 + outSlope: -0.14548874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.13706167 + inSlope: -0.12891728 + outSlope: -0.12891728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.14933048 + inSlope: -0.055141464 + outSlope: -0.055141464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.13609345 + inSlope: 0.24952042 + outSlope: 0.24952042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.12246348 + inSlope: 0.22429258 + outSlope: 0.22429258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.10709383 + inSlope: 0.30969933 + outSlope: 0.30969933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.024734462 + inSlope: 0.5852026 + outSlope: 0.5852026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.0025438706 + inSlope: 0.27882397 + outSlope: 0.27882397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.0004907868 + inSlope: 0.024473388 + outSlope: 0.024473388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.003674993 + inSlope: -0.11486168 + outSlope: -0.11486168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.00903159 + inSlope: -0.14415516 + outSlope: -0.14415516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.00007465947 + inSlope: 0.03309634 + outSlope: 0.03309634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: 0.000071653514 + inSlope: 0.000009003302 + outSlope: 0.000009003302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00007627972 + inSlope: 0.00000954423 + outSlope: 0.00000954423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0 + inSlope: 0.00025210716 + outSlope: 0.00025210716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.000021008931 + inSlope: 0.25020364 + outSlope: 0.25020364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.020850303 + inSlope: 0.11758542 + outSlope: 0.11758542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.009819791 + inSlope: -0.27241302 + outSlope: -0.27241302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.03500727 + inSlope: -0.4474864 + outSlope: -0.4474864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.053164825 + inSlope: -0.11480992 + outSlope: -0.11480992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.04457476 + inSlope: 0.1830612 + outSlope: 0.1830612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.03173072 + inSlope: -0.0533946 + outSlope: -0.0533946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.059421375 + inSlope: -0.58430755 + outSlope: -0.58430755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.11483893 + inSlope: -0.6802866 + outSlope: -0.6802866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.1433582 + inSlope: -0.28893933 + outSlope: -0.28893933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.10272149 + inSlope: 0.4232751 + outSlope: 0.4232751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.03755609 + inSlope: 0.35212877 + outSlope: 0.35212877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.023303563 + inSlope: -0.302018 + outSlope: -0.302018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.13973697 + inSlope: -1.8454947 + outSlope: -1.8454947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.54645497 + inSlope: -1.1992745 + outSlope: -1.1992745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.59224015 + inSlope: -0.98662955 + outSlope: -0.98662955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0.62867415 + inSlope: -0.5372248 + outSlope: -0.5372248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.63700885 + inSlope: -0.16363904 + outSlope: -0.16363904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -0.64231074 + inSlope: -0.020959694 + outSlope: -0.020959694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.6387555 + inSlope: -0.05502182 + outSlope: -0.05502182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.65489304 + inSlope: -0.18923083 + outSlope: -0.18923083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.6920123 + inSlope: -0.16701214 + outSlope: -0.16701214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -0.69885385 + inSlope: -0.11311614 + outSlope: -0.11311614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.70143867 + inSlope: -0.0737551 + outSlope: -0.0737551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.7076241 + inSlope: -0.052809376 + outSlope: -0.052809376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.7108491 + inSlope: -0.0073613976 + outSlope: -0.0073613976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.71074647 + inSlope: -0.026012527 + outSlope: -0.026012527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.7147047 + inSlope: -0.034750633 + outSlope: -0.034750633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.72242606 + inSlope: -0.04031112 + outSlope: -0.04031112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.7238664 + inSlope: -0.016008921 + outSlope: -0.016008921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.7235851 + inSlope: 0.004970319 + outSlope: 0.004970319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.7231517 + inSlope: 0.018236127 + outSlope: 0.018236127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.72182626 + inSlope: 0.019349081 + outSlope: 0.019349081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.7217707 + inSlope: 0.0018882807 + outSlope: 0.0018882807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: -0.7202691 + inSlope: 0.0009233961 + outSlope: 0.0009233961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.71980715 + inSlope: 0.00092411396 + outSlope: 0.00092411396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 1 + inSlope: -0.010329009 + outSlope: -0.010329009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.99913925 + inSlope: -0.14279793 + outSlope: -0.14279793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9881002 + inSlope: -0.43285125 + outSlope: -0.43285125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.87284714 + inSlope: -1.3601116 + outSlope: -1.3601116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.8109795 + inSlope: -1.4871072 + outSlope: -1.4871072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.7489216 + inSlope: -1.5832763 + outSlope: -1.5832763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5188104 + inSlope: -1.961795 + outSlope: -1.961795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.37678584 + inSlope: -1.3201108 + outSlope: -1.3201108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.2814875 + inSlope: -1.13761 + outSlope: -1.13761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.23376228 + inSlope: -1.3977826 + outSlope: -1.3977826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.006437891 + inSlope: -1.9165995 + outSlope: -1.9165995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.3098509 + inSlope: -1.8392584 + outSlope: -1.8392584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.38557243 + inSlope: -1.3316178 + outSlope: -1.3316178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.42033008 + inSlope: 0.14484009 + outSlope: 0.14484009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.19382258 + inSlope: 1.5803313 + outSlope: 1.5803313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.12416037 + inSlope: 1.7512901 + outSlope: 1.7512901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0.047881678 + inSlope: 1.3772725 + outSlope: 1.3772725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.009387776 + inSlope: 0.93793327 + outSlope: 0.93793327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.030279463 + inSlope: 0.90329504 + outSlope: 0.90329504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.06588685 + inSlope: 0.511667 + outSlope: 0.511667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.080125116 + inSlope: 0.17435896 + outSlope: 0.17435896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.11847796 + inSlope: 0.1936107 + outSlope: 0.1936107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.12664053 + inSlope: 0.28817233 + outSlope: 0.28817233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.14249232 + inSlope: 0.095846504 + outSlope: 0.095846504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.12967853 + inSlope: -0.100051746 + outSlope: -0.100051746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.12453447 + inSlope: -0.007884607 + outSlope: -0.007884607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.12573667 + inSlope: -0.14941052 + outSlope: -0.14941052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.09927123 + inSlope: -0.30171162 + outSlope: -0.30171162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.021386893 + inSlope: -0.589887 + outSlope: -0.589887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.002352755 + inSlope: -0.29847243 + outSlope: -0.29847243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.0046140794 + inSlope: -0.025991827 + outSlope: -0.025991827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.0036759344 + inSlope: 0.13278079 + outSlope: 0.13278079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.005413383 + inSlope: 0.12706259 + outSlope: 0.12706259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.0003764604 + inSlope: -0.01638239 + outSlope: -0.01638239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: -0.00037196119 + inSlope: -0.00000901126 + outSlope: -0.00000901126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0003754614 + inSlope: -0.0000050326535 + outSlope: -0.0000050326535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0.0011850796 + outSlope: -0.0011850796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0031891905 + inSlope: 0.122823656 + outSlope: 0.122823656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.017434249 + inSlope: 0.17102918 + outSlope: 0.17102918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.043806527 + inSlope: 0.44513422 + outSlope: 0.44513422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.118592545 + inSlope: 0.5943731 + outSlope: 0.5943731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.26507166 + inSlope: 0.5726764 + outSlope: 0.5726764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.2887632 + inSlope: 0.005217463 + outSlope: 0.005217463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.26550642 + inSlope: -0.52404135 + outSlope: -0.52404135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.21094261 + inSlope: -0.97027063 + outSlope: -0.97027063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.11694317 + inSlope: -1.1394374 + outSlope: -1.1394374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.06928409 + inSlope: -1.1448371 + outSlope: -1.1448371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.021540029 + inSlope: 0.28174233 + outSlope: 0.28174233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.092762455 + inSlope: 1.5297352 + outSlope: 1.5297352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.25860205 + inSlope: 1.2841166 + outSlope: 1.2841166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.4622581 + inSlope: 1.1667547 + outSlope: 1.1667547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.68084943 + inSlope: 0.9147922 + outSlope: 0.9147922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.74163276 + inSlope: 0.46293032 + outSlope: 0.46293032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.78365034 + inSlope: 0.31389552 + outSlope: 0.31389552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.81992525 + inSlope: 0.24075276 + outSlope: 0.24075276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.8285453 + inSlope: 0.13651383 + outSlope: 0.13651383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.83385795 + inSlope: 0.05991114 + outSlope: 0.05991114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.84101635 + inSlope: 0.03238681 + outSlope: 0.03238681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.84038764 + inSlope: -0.06795202 + outSlope: -0.06795202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.80917066 + inSlope: -0.22556037 + outSlope: -0.22556037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.72925055 + inSlope: -0.6276277 + outSlope: -0.6276277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 0.6760188 + inSlope: -0.31086886 + outSlope: -0.31086886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: 0.6748206 + inSlope: -0.027963664 + outSlope: -0.027963664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.6743799 + inSlope: 0.20714289 + outSlope: 0.20714289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.6980147 + inSlope: 0.09614511 + outSlope: 0.09614511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0.6891776 + inSlope: -0.0013554109 + outSlope: -0.0013554109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.68899953 + inSlope: 0.02183398 + outSlope: 0.02183398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0077254516 + inSlope: 0.30138484 + outSlope: 0.30138484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.042457897 + inSlope: 0.41441548 + outSlope: 0.41441548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.08945274 + inSlope: 0.17103279 + outSlope: 0.17103279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.093487605 + inSlope: 0.025744833 + outSlope: 0.025744833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.095897034 + inSlope: -0.0057979557 + outSlope: -0.0057979557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.09555084 + inSlope: 0.13447168 + outSlope: 0.13447168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.10710301 + inSlope: 0.18430772 + outSlope: 0.18430772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.101094835 + inSlope: -0.1941574 + outSlope: -0.1941574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.0882963 + inSlope: -0.15500587 + outSlope: -0.15500587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.081812896 + inSlope: -0.15730344 + outSlope: -0.15730344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.075187676 + inSlope: -0.21522956 + outSlope: -0.21522956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.0638771 + inSlope: -0.27239853 + outSlope: -0.27239853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.030633727 + inSlope: -0.25386384 + outSlope: -0.25386384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.009560379 + inSlope: -0.20788407 + outSlope: -0.20788407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.012405366 + inSlope: 0.04537402 + outSlope: 0.04537402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.00011046377 + inSlope: 0.32873446 + outSlope: 0.32873446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.050812908 + inSlope: 0.40374738 + outSlope: 0.40374738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.10130319 + inSlope: 0.31450412 + outSlope: 0.31450412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.11075474 + inSlope: 0.0052038506 + outSlope: 0.0052038506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.09265636 + inSlope: -0.21790564 + outSlope: -0.21790564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.085585825 + inSlope: 0.15836194 + outSlope: 0.15836194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.13666731 + inSlope: 0.09837627 + outSlope: 0.09837627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.13180177 + inSlope: 0.06927346 + outSlope: 0.06927346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.15528142 + inSlope: 0.1258545 + outSlope: 0.1258545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 0.16306703 + inSlope: 0.040599268 + outSlope: 0.040599268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: 0.16326484 + inSlope: 0.0034407373 + outSlope: 0.0034407373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.1629279 + inSlope: -0.04695096 + outSlope: -0.04695096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.15756285 + inSlope: -0.022027843 + outSlope: -0.022027843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0.15955764 + inSlope: -0.0001226667 + outSlope: -0.0001226667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.1598112 + inSlope: -0.004983206 + outSlope: -0.004983206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.014156426 + inSlope: 0.5540265 + outSlope: 0.5540265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.07816623 + inSlope: 0.7673695 + outSlope: 0.7673695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.16985615 + inSlope: 0.5604037 + outSlope: 0.5604037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.22533238 + inSlope: 0.43639392 + outSlope: 0.43639392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.32901415 + inSlope: 0.39040312 + outSlope: 0.39040312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.34505656 + inSlope: 0.17294009 + outSlope: 0.17294009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.3434258 + inSlope: -0.17148247 + outSlope: -0.17148247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.32793993 + inSlope: 0.18309961 + outSlope: 0.18309961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.36313033 + inSlope: 0.39883488 + outSlope: 0.39883488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.3792609 + inSlope: 0.37281114 + outSlope: 0.37281114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.39419794 + inSlope: -0.23431565 + outSlope: -0.23431565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.35973465 + inSlope: -0.9285966 + outSlope: -0.9285966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.22536336 + inSlope: -1.1323805 + outSlope: -1.1323805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.028209195 + inSlope: -1.1334267 + outSlope: -1.1334267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.12343889 + inSlope: -0.6236664 + outSlope: -0.6236664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.16179767 + inSlope: -0.185406 + outSlope: -0.185406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -0.16898353 + inSlope: -0.049216717 + outSlope: -0.049216717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -0.17404713 + inSlope: -0.05752284 + outSlope: -0.05752284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.17742573 + inSlope: -0.14770654 + outSlope: -0.14770654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.19525595 + inSlope: -0.21286972 + outSlope: -0.21286972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.21053506 + inSlope: 0.03916949 + outSlope: 0.03916949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.1899816 + inSlope: 0.023008304 + outSlope: 0.023008304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.20009078 + inSlope: 0.022666981 + outSlope: 0.022666981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.17560259 + inSlope: 0.22762454 + outSlope: 0.22762454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: -0.15596852 + inSlope: 0.108219594 + outSlope: 0.108219594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0.15576723 + inSlope: 0.0034704204 + outSlope: 0.0034704204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0.15614311 + inSlope: -0.048397385 + outSlope: -0.048397385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: -0.16156763 + inSlope: -0.021975629 + outSlope: -0.021975629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: -0.15962267 + inSlope: -0.00027090358 + outSlope: -0.00027090358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.15948072 + inSlope: -0.0051484304 + outSlope: -0.0051484304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.9998649 + inSlope: -0.017243383 + outSlope: -0.017243383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.9958833 + inSlope: -0.08092547 + outSlope: -0.08092547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.98042244 + inSlope: -0.13181952 + outSlope: -0.13181952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.9625078 + inSlope: -0.1779006 + outSlope: -0.1779006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.9012716 + inSlope: -0.3102687 + outSlope: -0.3102687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.8879312 + inSlope: -0.08150215 + outSlope: -0.08150215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.89447975 + inSlope: 0.19950047 + outSlope: 0.19950047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.9152805 + inSlope: 0.1717473 + outSlope: 0.1717473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.9201437 + inSlope: 0.0022730632 + outSlope: 0.0022730632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.91905797 + inSlope: -0.053426675 + outSlope: -0.053426675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.9156915 + inSlope: 0.08608909 + outSlope: 0.08608909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.92623204 + inSlope: 0.2345383 + outSlope: 0.2345383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.93882793 + inSlope: -0.07350547 + outSlope: -0.07350547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.8862451 + inSlope: -0.57052696 + outSlope: -0.57052696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.72184 + inSlope: -0.9685724 + outSlope: -0.9685724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.65100104 + inSlope: -0.5655687 + outSlope: -0.5655687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.59561294 + inSlope: -0.4613705 + outSlope: -0.4613705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.5358805 + inSlope: -0.4422309 + outSlope: -0.4422309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.5193902 + inSlope: -0.26650098 + outSlope: -0.26650098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.50790834 + inSlope: -0.14044449 + outSlope: -0.14044449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.4909599 + inSlope: -0.0670535 + outSlope: -0.0670535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.48885342 + inSlope: 0.09833818 + outSlope: 0.09833818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.53650236 + inSlope: 0.3311258 + outSlope: 0.3311258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.64284134 + inSlope: 0.7389902 + outSlope: 0.7389902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 0.7014853 + inSlope: 0.32594213 + outSlope: 0.32594213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: 0.70263666 + inSlope: 0.026829265 + outSlope: 0.026829265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.7030545 + inSlope: -0.20188075 + outSlope: -0.20188075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.6795921 + inSlope: -0.09719938 + outSlope: -0.09719938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0.68854654 + inSlope: 0.001322509 + outSlope: 0.001322509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.6886987 + inSlope: -0.021851147 + outSlope: -0.021851147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0.0014749932 + outSlope: -0.0014749932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0031791017 + inSlope: 0.18721595 + outSlope: 0.18721595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.028041964 + inSlope: 0.29994524 + outSlope: 0.29994524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.06404809 + inSlope: 0.1379055 + outSlope: 0.1379055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.06585553 + inSlope: 0.018350955 + outSlope: 0.018350955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.06727135 + inSlope: 0.004800884 + outSlope: 0.004800884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.06745338 + inSlope: 0.7834568 + outSlope: 0.7834568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.13255936 + inSlope: 1.8646975 + outSlope: 1.8646975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.22284481 + inSlope: 1.5251151 + outSlope: 1.5251151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.25965235 + inSlope: 0.8469538 + outSlope: 0.8469538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.41623855 + inSlope: 0.17916763 + outSlope: 0.17916763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.4214258 + inSlope: 0.06790627 + outSlope: 0.06790627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.4218974 + inSlope: -0.43665296 + outSlope: -0.43665296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.38503808 + inSlope: -0.96695757 + outSlope: -0.96695757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.25105575 + inSlope: -1.1033688 + outSlope: -1.1033688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -0.3587152 + inSlope: -1.0567422 + outSlope: -1.0567422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.40226552 + inSlope: -0.4216465 + outSlope: -0.4216465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.39385238 + inSlope: 0.20472433 + outSlope: 0.20472433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.31930465 + inSlope: 0.20578417 + outSlope: 0.20578417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.31280264 + inSlope: -0.004314772 + outSlope: -0.004314772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.3505108 + inSlope: -0.17507441 + outSlope: -0.17507441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: -0.40052718 + inSlope: -0.30669641 + outSlope: -0.30669641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: -0.41361773 + inSlope: 0.105395675 + outSlope: 0.105395675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0.39174432 + inSlope: 0.54712 + outSlope: 0.54712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.36802444 + inSlope: 0.38806486 + outSlope: 0.38806486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: -0.35940552 + inSlope: 0.20680603 + outSlope: 0.20680603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.3330188 + inSlope: 0.21589622 + outSlope: 0.21589622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: -0.3240668 + inSlope: -0.023732953 + outSlope: -0.023732953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -0.3349966 + inSlope: -0.20164487 + outSlope: -0.20164487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5416667 + value: -0.3460018 + inSlope: 0.005222072 + outSlope: 0.005222072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -0.3445474 + inSlope: -0.21520206 + outSlope: -0.21520206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.37969607 + inSlope: -0.35736826 + outSlope: -0.35736826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: -0.4081595 + inSlope: -0.159767 + outSlope: -0.159767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.40588695 + inSlope: 0.027060654 + outSlope: 0.027060654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9166667 + value: -0.4036499 + inSlope: 0.008633835 + outSlope: 0.008633835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9583335 + value: -0.4040553 + inSlope: 0.04393299 + outSlope: 0.04393299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.39998883 + inSlope: 0.08127874 + outSlope: 0.08127874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.39676565 + inSlope: -0.007314233 + outSlope: -0.007314233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.016335966 + inSlope: 0.68146396 + outSlope: 0.68146396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.09699283 + inSlope: 0.95799094 + outSlope: 0.95799094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.20474531 + inSlope: 0.45148456 + outSlope: 0.45148456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.22074556 + inSlope: 0.18013462 + outSlope: 0.18013462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.24110998 + inSlope: 0.14269435 + outSlope: 0.14269435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.24674024 + inSlope: -0.21339059 + outSlope: -0.21339059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.22332746 + inSlope: -0.74797195 + outSlope: -0.74797195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.18440925 + inSlope: -1.2093244 + outSlope: -1.2093244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.12255038 + inSlope: -1.4999866 + outSlope: -1.4999866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.31086528 + inSlope: -1.3432053 + outSlope: -1.3432053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.3652936 + inSlope: -1.2622287 + outSlope: -1.2622287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.41605106 + inSlope: -0.64181495 + outSlope: -0.64181495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.41877812 + inSlope: 0.04122395 + outSlope: 0.04122395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.39680246 + inSlope: 0.2166866 + outSlope: 0.2166866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -0.19781943 + inSlope: 0.49029166 + outSlope: 0.49029166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.17706668 + inSlope: 0.0038605928 + outSlope: 0.0038605928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.19749771 + inSlope: -0.48721123 + outSlope: -0.48721123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.3545901 + inSlope: -0.40336192 + outSlope: -0.40336192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.3861963 + inSlope: -0.09960382 + outSlope: -0.09960382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.39281934 + inSlope: 0.05837496 + outSlope: 0.05837496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: -0.3638218 + inSlope: 0.25927293 + outSlope: 0.25927293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: -0.35186654 + inSlope: -0.1847628 + outSlope: -0.1847628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0.37921858 + inSlope: -0.6362743 + outSlope: -0.6362743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.40488935 + inSlope: -0.39931327 + outSlope: -0.39931327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: -0.41249475 + inSlope: -0.1822434 + outSlope: -0.1822434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.43475512 + inSlope: -0.17224553 + outSlope: -0.17224553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: -0.4418195 + inSlope: 0.014804572 + outSlope: 0.014804572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -0.43352136 + inSlope: 0.15874714 + outSlope: 0.15874714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5416667 + value: -0.42355353 + inSlope: 0.0020853253 + outSlope: 0.0020853253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -0.42471778 + inSlope: 0.075026765 + outSlope: 0.075026765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.41055673 + inSlope: 0.18240488 + outSlope: 0.18240488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: -0.39353913 + inSlope: 0.0888713 + outSlope: 0.0888713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.3958645 + inSlope: -0.027703669 + outSlope: -0.027703669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9166667 + value: -0.3981559 + inSlope: 0.020630438 + outSlope: 0.020630438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9583335 + value: -0.3952844 + inSlope: 0.020446539 + outSlope: 0.020446539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.396452 + inSlope: -0.024324033 + outSlope: -0.024324033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.39600277 + inSlope: 0.011064333 + outSlope: 0.011064333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.020879867 + inSlope: 0.76874566 + outSlope: 0.76874566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.107251175 + inSlope: 1.0316265 + outSlope: 1.0316265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.23714796 + inSlope: 1.1160886 + outSlope: 1.1160886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.3334744 + inSlope: 1.134419 + outSlope: 1.134419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.470696 + inSlope: 1.0559587 + outSlope: 1.0559587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.5140324 + inSlope: 0.9535473 + outSlope: 0.9535473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.55015826 + inSlope: 0.78342557 + outSlope: 0.78342557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.57931787 + inSlope: 1.0282154 + outSlope: 1.0282154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.6358429 + inSlope: 1.2777946 + outSlope: 1.2777946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.8246776 + inSlope: -0.043332882 + outSlope: -0.043332882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.8185745 + inSlope: -0.24824098 + outSlope: -0.24824098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.80399084 + inSlope: 0.0235627 + outSlope: 0.0235627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.82053804 + inSlope: 0.44455335 + outSlope: 0.44455335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.87488353 + inSlope: 0.3478874 + outSlope: 0.3478874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.8482358 + inSlope: -0.44167238 + outSlope: -0.44167238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.8286455 + inSlope: -0.19612259 + outSlope: -0.19612259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.83189225 + inSlope: 0.07251689 + outSlope: 0.07251689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.84102464 + inSlope: -0.023567732 + outSlope: -0.023567732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.82778984 + inSlope: -0.07166134 + outSlope: -0.07166134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.76961493 + inSlope: -0.26396972 + outSlope: -0.26396972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.6759777 + inSlope: -0.7336972 + outSlope: -0.7336972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: 0.64241433 + inSlope: -0.893304 + outSlope: -0.893304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.6015358 + inSlope: -1.0153049 + outSlope: -1.0153049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.55780566 + inSlope: -0.649182 + outSlope: -0.649182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.5474372 + inSlope: -0.25263286 + outSlope: -0.25263286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.515008 + inSlope: -0.26595664 + outSlope: -0.26595664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0.5038147 + inSlope: -0.26358807 + outSlope: -0.26358807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0.49304232 + inSlope: -0.12776552 + outSlope: -0.12776552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5416667 + value: 0.50866896 + inSlope: 0.36015812 + outSlope: 0.36015812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 0.5273823 + inSlope: 0.38807076 + outSlope: 0.38807076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.55860096 + inSlope: 0.47262222 + outSlope: 0.47262222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 0.59562373 + inSlope: 0.16163066 + outSlope: 0.16163066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.5920842 + inSlope: -0.042338885 + outSlope: -0.042338885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9166667 + value: 0.58856773 + inSlope: -0.14701839 + outSlope: -0.14701839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9583335 + value: 0.5780828 + inSlope: -0.02576933 + outSlope: -0.02576933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.58642024 + inSlope: 0.10636744 + outSlope: 0.10636744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.5844855 + inSlope: 0.025139904 + outSlope: 0.025139904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.9996435 + inSlope: -0.0455811 + outSlope: -0.0455811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.9890921 + inSlope: -0.21431354 + outSlope: -0.21431354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9474904 + inSlope: -0.38277778 + outSlope: -0.38277778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.9141823 + inSlope: -0.45861548 + outSlope: -0.45861548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.84604126 + inSlope: -0.62847847 + outSlope: -0.62847847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.81874293 + inSlope: -0.62870705 + outSlope: -0.62870705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.793649 + inSlope: -0.6802834 + outSlope: -0.6802834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.76205266 + inSlope: -0.9266785 + outSlope: -0.9266785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.7164258 + inSlope: -1.1842808 + outSlope: -1.1842808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.22364068 + inSlope: -2.0409064 + outSlope: -2.0409064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.13746528 + inSlope: -2.0833435 + outSlope: -2.0833435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.05002864 + inSlope: -0.98275596 + outSlope: -0.98275596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.05556903 + inSlope: 0.32196718 + outSlope: 0.32196718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.11873338 + inSlope: 0.49375486 + outSlope: 0.49375486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.3356889 + inSlope: 0.27563474 + outSlope: 0.27563474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.34666488 + inSlope: 0.020384088 + outSlope: 0.020384088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.33738756 + inSlope: -0.2249167 + outSlope: -0.2249167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.25492766 + inSlope: -0.21946521 + outSlope: -0.21946521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.26032847 + inSlope: 0.07494006 + outSlope: 0.07494006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.36128655 + inSlope: 0.45376554 + outSlope: 0.45376554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.5002658 + inSlope: 0.9256822 + outSlope: 0.9256822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: 0.5407533 + inSlope: 1.0030485 + outSlope: 1.0030485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.58385307 + inSlope: 0.99991786 + outSlope: 0.99991786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.6240797 + inSlope: 0.59259826 + outSlope: 0.59259826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.63323635 + inSlope: 0.217046 + outSlope: 0.217046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.659434 + inSlope: 0.20321006 + outSlope: 0.20321006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0.6677926 + inSlope: 0.19674774 + outSlope: 0.19674774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0.67582965 + inSlope: 0.09784322 + outSlope: 0.09784322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5416667 + value: 0.6649369 + inSlope: -0.27483934 + outSlope: -0.27483934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 0.6502075 + inSlope: -0.3829405 + outSlope: -0.3829405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.61256754 + inSlope: -0.5331413 + outSlope: -0.5331413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 0.56900364 + inSlope: -0.21296047 + outSlope: -0.21296047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.5726983 + inSlope: 0.043805875 + outSlope: 0.043805875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9166667 + value: 0.5763043 + inSlope: 0.16776434 + outSlope: 0.16776434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9583335 + value: 0.58848095 + inSlope: 0.07063665 + outSlope: 0.07063665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.58219075 + inSlope: -0.066645026 + outSlope: -0.066645026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.5866308 + inSlope: -0.022476282 + outSlope: -0.022476282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0.00071894267 + outSlope: -0.00071894267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.00000829626 + inSlope: 0.038373593 + outSlope: 0.038373593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0031678432 + inSlope: 0.29699638 + outSlope: 0.29699638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.024741406 + inSlope: 0.5176214 + outSlope: 0.5176214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.25011924 + inSlope: 0.44636172 + outSlope: 0.44636172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.26853588 + inSlope: 0.82510716 + outSlope: 0.82510716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.3679518 + inSlope: 1.1607684 + outSlope: 1.1607684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.41560888 + inSlope: 1.2040977 + outSlope: 1.2040977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.46829334 + inSlope: 1.144305 + outSlope: 1.144305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.5109676 + inSlope: 0.76698375 + outSlope: 0.76698375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.5322086 + inSlope: 0.34480673 + outSlope: 0.34480673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.48100108 + inSlope: -0.9290981 + outSlope: -0.9290981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.43627048 + inSlope: -0.23593679 + outSlope: -0.23593679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.46133977 + inSlope: 1.2959887 + outSlope: 1.2959887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.5442695 + inSlope: 1.9263036 + outSlope: 1.9263036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.93613005 + inSlope: 0.6443616 + outSlope: 0.6443616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.924764 + inSlope: -0.7332926 + outSlope: -0.7332926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.84749204 + inSlope: -1.0265553 + outSlope: -1.0265553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.75552636 + inSlope: -1.2221935 + outSlope: -1.2221935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.1494021 + inSlope: -1.8635166 + outSlope: -1.8635166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.07136594 + inSlope: -1.4110792 + outSlope: -1.4110792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.0013811053 + inSlope: -0.74026525 + outSlope: -0.74026525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: -0.24312298 + inSlope: -0.69678783 + outSlope: -0.69678783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.2960331 + inSlope: -0.533623 + outSlope: -0.533623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.3728418 + inSlope: -0.42611188 + outSlope: -0.42611188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: -0.4068765 + inSlope: -0.39006472 + outSlope: -0.39006472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0.4227213 + inSlope: -0.23826735 + outSlope: -0.23826735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.42673206 + inSlope: 0.18242455 + outSlope: 0.18242455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: -0.40751922 + inSlope: 0.48049715 + outSlope: 0.48049715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: -0.38669068 + inSlope: 0.41074914 + outSlope: 0.41074914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.36389425 + inSlope: 0.22503218 + outSlope: 0.22503218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583335 + value: -0.33866122 + inSlope: 0.041137308 + outSlope: 0.041137308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5416667 + value: -0.34387484 + inSlope: 0.034380134 + outSlope: 0.034380134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -0.33856034 + inSlope: 0.29800564 + outSlope: 0.29800564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: -0.3190411 + inSlope: 0.3348552 + outSlope: 0.3348552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: -0.3083534 + inSlope: -0.10369167 + outSlope: -0.10369167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.3221348 + inSlope: -0.010368943 + outSlope: -0.010368943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.875 + value: -0.31549922 + inSlope: 0.06819567 + outSlope: 0.06819567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.32075262 + inSlope: -0.0047647255 + outSlope: -0.0047647255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.3200737 + inSlope: 0.0054359646 + outSlope: 0.0054359646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0.0015864983 + outSlope: -0.0015864983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0 + inSlope: 0.023225578 + outSlope: 0.023225578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0018693607 + inSlope: -0.004001379 + outSlope: -0.004001379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00033344858 + inSlope: -0.05699638 + outSlope: -0.05699638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.039130583 + inSlope: -0.10616494 + outSlope: -0.10616494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.04365625 + inSlope: -0.10868878 + outSlope: -0.10868878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.052916635 + inSlope: -0.11370213 + outSlope: -0.11370213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.05766316 + inSlope: 0.3694057 + outSlope: 0.3694057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.022132814 + inSlope: 1.741375 + outSlope: 1.741375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.08745133 + inSlope: 2.3901062 + outSlope: 2.3901062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.17704265 + inSlope: 2.0646403 + outSlope: 2.0646403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.44509828 + inSlope: 1.0423739 + outSlope: 1.0423739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.48191336 + inSlope: 0.5971904 + outSlope: 0.5971904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.49486414 + inSlope: 0.12555638 + outSlope: 0.12555638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.49237642 + inSlope: -0.12740219 + outSlope: -0.12740219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.32392126 + inSlope: -0.97799945 + outSlope: -0.97799945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.02532557 + inSlope: -1.3263233 + outSlope: -1.3263233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.07770571 + inSlope: -0.882009 + outSlope: -0.882009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -0.12946817 + inSlope: -0.60671496 + outSlope: -0.60671496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.3031035 + inSlope: -0.25698233 + outSlope: -0.25698233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.31259724 + inSlope: 0.08823816 + outSlope: 0.08823816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.27189466 + inSlope: 0.5640961 + outSlope: 0.5640961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: -0.075710416 + inSlope: 0.6247412 + outSlope: 0.6247412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.017085146 + inSlope: 0.8366145 + outSlope: 0.8366145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.13044655 + inSlope: 0.8697052 + outSlope: 0.8697052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: 0.20205158 + inSlope: 0.84590554 + outSlope: 0.84590554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.23696645 + inSlope: 0.9173147 + outSlope: 0.9173147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.27849442 + inSlope: 1.0507789 + outSlope: 1.0507789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.32453153 + inSlope: 1.0868374 + outSlope: 1.0868374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: 0.36906412 + inSlope: 0.7580282 + outSlope: 0.7580282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.3933491 + inSlope: 0.1366873 + outSlope: 0.1366873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583335 + value: 0.4005603 + inSlope: -0.37213013 + outSlope: -0.37213013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5416667 + value: 0.3473511 + inSlope: -0.46501082 + outSlope: -0.46501082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 0.3346642 + inSlope: -0.020040318 + outSlope: -0.020040318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: 0.345681 + inSlope: 0.20247819 + outSlope: 0.20247819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 0.3499433 + inSlope: -0.20395434 + outSlope: -0.20395434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.32703736 + inSlope: -0.07276793 + outSlope: -0.07276793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.875 + value: 0.33085987 + inSlope: 0.026019786 + outSlope: 0.026019786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.32351974 + inSlope: -0.022476926 + outSlope: -0.022476926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.32196817 + inSlope: -0.012416887 + outSlope: -0.012416887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: -0.0003610764 + outSlope: -0.0003610764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0 + inSlope: 0.1063009 + outSlope: 0.1063009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.008843363 + inSlope: 0.6294587 + outSlope: 0.6294587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0524549 + inSlope: 1.0441699 + outSlope: 1.0441699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.4989807 + inSlope: 0.85375524 + outSlope: 0.85375524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.5338792 + inSlope: 0.73547566 + outSlope: 0.73547566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.58362436 + inSlope: 0.5237161 + outSlope: 0.5237161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.60391337 + inSlope: 0.7876407 + outSlope: 0.7876407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6492611 + inSlope: 1.463522 + outSlope: 1.463522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.7258735 + inSlope: 1.427669 + outSlope: 1.427669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.7682335 + inSlope: 0.7189504 + outSlope: 0.7189504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.6848761 + inSlope: -1.6904564 + outSlope: -1.6904564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.60283405 + inSlope: -1.7602732 + outSlope: -1.7602732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.5381866 + inSlope: -1.2922595 + outSlope: -1.2922595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.49514568 + inSlope: -1.0933571 + outSlope: -1.0933571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.087575376 + inSlope: -1.5671921 + outSlope: -1.5671921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.28710404 + inSlope: -1.3268061 + outSlope: -1.3268061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.38608402 + inSlope: -0.9289232 + outSlope: -0.9289232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -0.4465243 + inSlope: -0.6428486 + outSlope: -0.6428486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.53187674 + inSlope: 0.20320019 + outSlope: 0.20320019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.5214981 + inSlope: 0.16592708 + outSlope: 0.16592708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.51605725 + inSlope: 0.06258118 + outSlope: 0.06258118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: -0.4690312 + inSlope: 0.20935196 + outSlope: 0.20935196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.46411708 + inSlope: -0.21206707 + outSlope: -0.21206707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.51279247 + inSlope: -0.24598172 + outSlope: -0.24598172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: -0.53118503 + inSlope: -0.19607821 + outSlope: -0.19607821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0.5388808 + inSlope: -0.5329473 + outSlope: -0.5329473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.57559735 + inSlope: -0.7371869 + outSlope: -0.7371869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: -0.6003132 + inSlope: -0.5640719 + outSlope: -0.5640719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: -0.6226033 + inSlope: -0.25193843 + outSlope: -0.25193843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.6087448 + inSlope: 0.30816466 + outSlope: 0.30816466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583335 + value: -0.5755989 + inSlope: -0.048010044 + outSlope: -0.048010044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5416667 + value: -0.60125685 + inSlope: -0.4753409 + outSlope: -0.4753409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -0.6259074 + inSlope: -0.46123344 + outSlope: -0.46123344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: -0.63969296 + inSlope: -0.1724409 + outSlope: -0.1724409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: -0.6380986 + inSlope: 0.0529747 + outSlope: 0.0529747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.6314462 + inSlope: 0.00968077 + outSlope: 0.00968077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.875 + value: -0.6343254 + inSlope: -0.03480519 + outSlope: -0.03480519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.63028634 + inSlope: 0.015457476 + outSlope: 0.015457476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.6308164 + inSlope: -0.0042314692 + outSlope: -0.0042314692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 1 + inSlope: -0.0005500317 + outSlope: -0.0005500317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.99995416 + inSlope: -0.020199535 + outSlope: -0.020199535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9983167 + inSlope: -0.06768965 + outSlope: -0.06768965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.8288109 + inSlope: -0.6537045 + outSlope: -0.6537045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.800597 + inSlope: -0.7903379 + outSlope: -0.7903379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.7219376 + inSlope: -1.023386 + outSlope: -1.023386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.6776672 + inSlope: -1.4765482 + outSlope: -1.4765482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.59889185 + inSlope: -2.7071013 + outSlope: -2.7071013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.4520755 + inSlope: -3.4836342 + outSlope: -3.4836342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.30858907 + inSlope: -3.5689788 + outSlope: -3.5689788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.31854397 + inSlope: -3.581263 + outSlope: -3.581263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.46262157 + inSlope: -2.208953 + outSlope: -2.208953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.5026233 + inSlope: -0.027790636 + outSlope: -0.027790636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.46493757 + inSlope: 0.9556945 + outSlope: 0.9556945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.10519565 + inSlope: 1.4167824 + outSlope: 1.4167824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.24847822 + inSlope: 1.3313106 + outSlope: 1.3313106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.35589072 + inSlope: 1.284755 + outSlope: 1.284755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.46155602 + inSlope: 1.2085152 + outSlope: 1.2085152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.7764756 + inSlope: 0.39759272 + outSlope: 0.39759272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.7907146 + inSlope: 0.3058471 + outSlope: 0.3058471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.81225383 + inSlope: 0.22986701 + outSlope: 0.22986701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 0.8456766 + inSlope: -0.02817462 + outSlope: -0.02817462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.8346663 + inSlope: -0.29342556 + outSlope: -0.29342556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.7622444 + inSlope: -0.5227423 + outSlope: -0.5227423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: 0.7151707 + inSlope: -0.60653174 + outSlope: -0.60653174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.6890291 + inSlope: -0.90740997 + outSlope: -0.90740997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.6395532 + inSlope: -0.9864981 + outSlope: -0.9864981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.60682076 + inSlope: -0.8164824 + outSlope: -0.8164824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: 0.57151306 + inSlope: -0.44796693 + outSlope: -0.44796693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.5850532 + inSlope: 0.36868894 + outSlope: 0.36868894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583335 + value: 0.6273324 + inSlope: 0.20963141 + outSlope: 0.20963141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5416667 + value: 0.6321294 + inSlope: -0.17879571 + outSlope: -0.17879571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 0.6177513 + inSlope: -0.29106915 + outSlope: -0.29106915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: 0.6078736 + inSlope: -0.114103064 + outSlope: -0.114103064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 0.6126077 + inSlope: 0.117157415 + outSlope: 0.117157415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.6249412 + inSlope: 0.043718386 + outSlope: 0.043718386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.875 + value: 0.6233967 + inSlope: -0.014080604 + outSlope: -0.014080604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.6286429 + inSlope: 0.024705 + outSlope: 0.024705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.6292535 + inSlope: 0.0048823543 + outSlope: 0.0048823543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 8.57896e-17 + inSlope: -3.0256156e-17 + outSlope: -3.0256156e-17 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 7.9306696e-17 + inSlope: -6.068058e-17 + outSlope: -6.068058e-17 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 6.35626e-17 + inSlope: -9.430879e-17 + outSlope: -9.430879e-17 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 4.567348e-17 + inSlope: -1.322009e-16 + outSlope: -1.322009e-16 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 3.958841e-17 + inSlope: -1.09729055e-16 + outSlope: -1.09729055e-16 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 3.652939e-17 + inSlope: -7.3290776e-17 + outSlope: -7.3290776e-17 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 1.0159671e-17 + inSlope: -3.162874e-17 + outSlope: -3.162874e-17 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 6.638506e-19 + inSlope: -1.31427816e-17 + outSlope: -1.31427816e-17 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0.41761664 + outSlope: 0.41761664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.017400693 + inSlope: 0.7711919 + outSlope: 0.7711919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.21311092 + inSlope: 1.984725 + outSlope: 1.984725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.55533105 + inSlope: 2.2167997 + outSlope: 2.2167997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.7967768 + inSlope: 1.5603215 + outSlope: 1.5603215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.93154144 + inSlope: 0.6454133 + outSlope: 0.6454133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.99924666 + inSlope: 0.06288239 + outSlope: 0.06288239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.9737073 + inSlope: -0.41845125 + outSlope: -0.41845125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9521522 + inSlope: -0.411709 + outSlope: -0.411709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.9393982 + inSlope: -0.31971705 + outSlope: -0.31971705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.78518337 + inSlope: -0.22748128 + outSlope: -0.22748128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.7125068 + inSlope: -0.10644446 + outSlope: -0.10644446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.70080614 + inSlope: -0.0002825263 + outSlope: -0.0002825263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.7003677 + inSlope: -0.00028324235 + outSlope: -0.00028324235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -8.57896e-17 + inSlope: 3.0256156e-17 + outSlope: 3.0256156e-17 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -7.9306696e-17 + inSlope: 6.068058e-17 + outSlope: 6.068058e-17 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -6.35626e-17 + inSlope: 9.430879e-17 + outSlope: 9.430879e-17 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -4.567348e-17 + inSlope: 1.322009e-16 + outSlope: 1.322009e-16 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -3.958841e-17 + inSlope: 1.09729055e-16 + outSlope: 1.09729055e-16 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -3.652939e-17 + inSlope: 7.3290776e-17 + outSlope: 7.3290776e-17 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -1.0159671e-17 + inSlope: 3.162874e-17 + outSlope: 3.162874e-17 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -6.638506e-19 + inSlope: 1.31427816e-17 + outSlope: 1.31427816e-17 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: -0.0036334991 + outSlope: -0.0036334991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.9998486 + inSlope: -0.0248065 + outSlope: -0.0248065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.977028 + inSlope: -0.4387185 + outSlope: -0.4387185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.8316294 + inSlope: -1.4897443 + outSlope: -1.4897443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.60427374 + inSlope: -2.0544424 + outSlope: -2.0544424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.3636352 + inSlope: -1.6364032 + outSlope: -1.6364032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.03880942 + inSlope: -1.6030623 + outSlope: -1.6030623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.2278028 + inSlope: -1.7405536 + outSlope: -1.7405536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.30562437 + inSlope: -1.3803022 + outSlope: -1.3803022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.34282798 + inSlope: -0.87721205 + outSlope: -0.87721205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.61926335 + inSlope: -0.28905547 + outSlope: -0.28905547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.7016652 + inSlope: -0.10819326 + outSlope: -0.10819326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.7133518 + inSlope: -0.0002775195 + outSlope: -0.0002775195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.71378225 + inSlope: -0.00027752027 + outSlope: -0.00027752027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0.0017182152 + outSlope: 0.0017182152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.04296726 + inSlope: -0.60823977 + outSlope: -0.60823977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.22542913 + inSlope: -0.5527122 + outSlope: -0.5527122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.28224242 + inSlope: -0.1239821 + outSlope: -0.1239821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0.31782323 + inSlope: -0.00014913097 + outSlope: -0.00014913097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.31812662 + inSlope: -0.0001480585 + outSlope: -0.0001480585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.9990765 + inSlope: -0.027869944 + outSlope: -0.027869944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.9742596 + inSlope: -0.12608603 + outSlope: -0.12608603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.95934314 + inSlope: -0.036442287 + outSlope: -0.036442287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.94815004 + inSlope: -0.000049352697 + outSlope: -0.000049352697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.94804823 + inSlope: -0.000050068094 + outSlope: -0.000050068094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.26393482 + inSlope: -0.0000743866 + outSlope: -0.0000743866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.2638915 + inSlope: -0.00007474424 + outSlope: -0.00007474424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.25099266 + inSlope: -0.49861652 + outSlope: -0.49861652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.1803658 + inSlope: 0.079343095 + outSlope: 0.079343095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.31201234 + inSlope: 1.4922026 + outSlope: 1.4922026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.43789715 + inSlope: -0.12951389 + outSlope: -0.12951389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.37119386 + inSlope: -0.65911216 + outSlope: -0.65911216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.33621863 + inSlope: -0.42677814 + outSlope: -0.42677814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.25305808 + inSlope: 0.05101365 + outSlope: 0.05101365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.34820163 + inSlope: 0.47431302 + outSlope: 0.47431302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.3464189 + inSlope: -0.21116841 + outSlope: -0.21116841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.23709257 + inSlope: -0.014781626 + outSlope: -0.014781626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0.23707655 + inSlope: -0.0000184178 + outSlope: -0.0000184178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 0.20908001 + inSlope: -0.32491916 + outSlope: -0.32491916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 0.18085873 + inSlope: 0.00006222731 + outSlope: 0.00006222731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.18088211 + inSlope: 0.00006258512 + outSlope: 0.00006258512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.96454054 + inSlope: 0.00002002716 + outSlope: 0.00002002716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.9645524 + inSlope: 0.000020027166 + outSlope: 0.000020027166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.96798897 + inSlope: 0.12500018 + outSlope: 0.12500018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.9835996 + inSlope: -0.015925877 + outSlope: -0.015925877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.95007807 + inSlope: -0.4900515 + outSlope: -0.4900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.89902514 + inSlope: 0.058966026 + outSlope: 0.058966026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.92855537 + inSlope: 0.272162 + outSlope: 0.272162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.94178396 + inSlope: 0.15240756 + outSlope: 0.15240756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.9674511 + inSlope: -0.013598394 + outSlope: -0.013598394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.93741965 + inSlope: -0.17441958 + outSlope: -0.17441958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.93807995 + inSlope: 0.07784267 + outSlope: 0.07784267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.97148705 + inSlope: 0.0036170413 + outSlope: 0.0036170413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0.971491 + inSlope: 0.0000042915262 + outSlope: 0.0000042915262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 0.97789854 + inSlope: 0.06946927 + outSlope: 0.06946927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 0.98350906 + inSlope: -0.000011444106 + outSlope: -0.000011444106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9835048 + inSlope: -0.000011444135 + outSlope: -0.000011444135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + 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 + - serializedVersion: 3 + time: 1.2083334 + value: 0.000002335375 + inSlope: 0.0047105444 + outSlope: 0.0047105444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.036038436 + inSlope: 0.043650724 + outSlope: 0.043650724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.03490021 + inSlope: -0.011659138 + outSlope: -0.011659138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.029438453 + inSlope: -0.041271515 + outSlope: -0.041271515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.01579285 + inSlope: -0.04639589 + outSlope: -0.04639589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.011197529 + inSlope: 0.0010285022 + outSlope: 0.0010285022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.011175952 + inSlope: -0.00028352093 + outSlope: -0.00028352093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.011222304 + inSlope: 0.000077605546 + outSlope: 0.000077605546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23879455 + inSlope: -0.000054001808 + outSlope: -0.000054001808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.23883541 + inSlope: -0.00005471708 + outSlope: -0.00005471708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.26324895 + inSlope: -1.022555 + outSlope: -1.022555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.4019499 + inSlope: -1.8535036 + outSlope: -1.8535036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.537645 + inSlope: -1.2355274 + outSlope: -1.2355274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.7056924 + inSlope: -0.47588798 + outSlope: -0.47588798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.8334499 + inSlope: -0.19405736 + outSlope: -0.19405736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.90596074 + inSlope: -0.18089785 + outSlope: -0.18089785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.9924308 + inSlope: -0.11056795 + outSlope: -0.11056795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -0.978646 + inSlope: 0.2854065 + outSlope: 0.2854065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.87689954 + inSlope: 0.14295861 + outSlope: 0.14295861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.87373775 + inSlope: -0.000019311921 + outSlope: -0.000019311921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.87375003 + inSlope: -0.000015735686 + outSlope: -0.000015735686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + 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 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0000024186227 + inSlope: -0.0033066703 + outSlope: -0.0033066703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.0060797147 + inSlope: 0.03863945 + outSlope: 0.03863945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.0114833815 + inSlope: 0.011617485 + outSlope: 0.011617485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.021645641 + inSlope: 0.043991096 + outSlope: 0.043991096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.03521838 + inSlope: 0.03444583 + outSlope: 0.03444583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.034951106 + inSlope: -0.007892698 + outSlope: -0.007892698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.034743488 + inSlope: -0.0001546295 + outSlope: -0.0001546295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.034771413 + inSlope: 0.000045955356 + outSlope: 0.000045955356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9710702 + inSlope: 0.000014305115 + outSlope: 0.000014305115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.9710601 + inSlope: 0.000013589863 + outSlope: 0.000013589863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.96472794 + inSlope: 0.30023664 + outSlope: 0.30023664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.91566163 + inSlope: 0.815487 + outSlope: 0.815487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.84317136 + inSlope: 0.7741739 + outSlope: 0.7741739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.7085183 + inSlope: 0.47142908 + outSlope: 0.47142908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.5513851 + inSlope: 0.2963303 + outSlope: 0.2963303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.42176455 + inSlope: 0.3890501 + outSlope: 0.3890501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.11724297 + inSlope: 0.9522425 + outSlope: 0.9522425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.20189695 + inSlope: 1.3853102 + outSlope: 1.3853102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.4792705 + inSlope: 0.26590297 + outSlope: 0.26590297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.48502612 + inSlope: -0.000018239034 + outSlope: -0.000018239034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.48500088 + inSlope: -0.000033617147 + outSlope: -0.000033617147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0.00000004582594 + outSlope: 0.00000004582594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.00000004009873 + inSlope: 0.000000045828354 + outSlope: 0.000000045828354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000004698551 + inSlope: 0.000000071989135 + outSlope: 0.000000071989135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.00000006120787 + inSlope: 0.0000000877877 + outSlope: 0.0000000877877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.00000007663321 + inSlope: 0.000000060380046 + outSlope: 0.000000060380046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.00000009891165 + inSlope: 0.000000052572833 + outSlope: 0.000000052572833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.00000011715636 + inSlope: 0.000000055056937 + outSlope: 0.000000055056937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.00000013856683 + inSlope: 0.00000004902514 + outSlope: 0.00000004902514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: 0.00000016746391 + inSlope: 0.00000005427625 + outSlope: 0.00000005427625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00000022398842 + inSlope: 0.00000005425168 + outSlope: 0.00000005425168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17585196 + inSlope: 0.000043272972 + outSlope: 0.000043272972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.17589006 + inSlope: 0.000043630607 + outSlope: 0.000043630607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.21245927 + inSlope: 0.8106928 + outSlope: 0.8106928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.42151538 + inSlope: 1.4388599 + outSlope: 1.4388599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.65876424 + inSlope: 0.65923524 + outSlope: 0.65923524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.8063818 + inSlope: 0.10433212 + outSlope: 0.10433212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.8113746 + inSlope: 0.0023245835 + outSlope: 0.0023245835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.8439927 + inSlope: 0.09579188 + outSlope: 0.09579188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: 0.8526306 + inSlope: 0.0004763608 + outSlope: 0.0004763608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.8531259 + inSlope: 0.00047636213 + outSlope: 0.00047636213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: -0.00000004582594 + outSlope: -0.00000004582594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.00000004009873 + inSlope: -0.000000045828354 + outSlope: -0.000000045828354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00000004698551 + inSlope: -0.000000071989135 + outSlope: -0.000000071989135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.00000006120787 + inSlope: -0.0000000877877 + outSlope: -0.0000000877877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.00000007663321 + inSlope: -0.000000060380046 + outSlope: -0.000000060380046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -0.00000009891165 + inSlope: -0.000000052572833 + outSlope: -0.000000052572833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.00000011715636 + inSlope: -0.000000055056937 + outSlope: -0.000000055056937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.00000013856683 + inSlope: -0.00000004902514 + outSlope: -0.00000004902514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: -0.00000016746391 + inSlope: -0.00000005427625 + outSlope: -0.00000005427625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00000022398842 + inSlope: -0.00000005425168 + outSlope: -0.00000005425168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98441666 + inSlope: -0.000008583069 + outSlope: -0.000008583069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.9844098 + inSlope: -0.000007867816 + outSlope: -0.000007867816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.97716993 + inSlope: -0.18236573 + outSlope: -0.18236573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.90682125 + inSlope: -0.6700649 + outSlope: -0.6700649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.7523495 + inSlope: -0.5727179 + outSlope: -0.5727179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.59139526 + inSlope: -0.14173853 + outSlope: -0.14173853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.58452654 + inSlope: -0.0032258066 + outSlope: -0.0032258066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.53635466 + inSlope: -0.1505596 + outSlope: -0.1505596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: 0.52251416 + inSlope: -0.00077605323 + outSlope: -0.00077605323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.52170515 + inSlope: -0.0007782012 + outSlope: -0.0007782012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.x + path: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.z + path: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.x + path: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000064502165 + inSlope: -0.0001879227 + outSlope: -0.0001879227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.000014280329 + inSlope: -0.0001879227 + outSlope: -0.0004851031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.00003449296 + inSlope: -0.0004851031 + outSlope: -0.0006642852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.00006217151 + inSlope: -0.0006642852 + outSlope: -0.00072546926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0000923994 + inSlope: -0.00072546926 + outSlope: -0.0006686545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.000120259996 + inSlope: -0.0006686545 + outSlope: -0.00049384555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.0001408369 + inSlope: -0.00049384555 + outSlope: -0.00020307122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0.0001492982 + inSlope: -0.00020307122 + outSlope: -0.00005863686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.00036708778 + inSlope: -0.00008306875 + outSlope: -0.00007927432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0.00039483054 + inSlope: 0.000005042572 + outSlope: 0.000005041649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: -0.0003503789 + inSlope: 0.000116207375 + outSlope: 0.00009345603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0003382013 + inSlope: 0.0000018641424 + outSlope: 0.0000018641424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0128 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0128 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.0128 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0128 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0128 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.0128 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.0128 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.0128 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.0128 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.0128 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 0.0128 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0128 + inSlope: -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: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0.00024545207 + outSlope: 0.00024545207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.00001022717 + inSlope: 0.00024545207 + outSlope: 0.0007187599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.0000401755 + inSlope: 0.0007187599 + outSlope: 0.0011656743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.00008874526 + inSlope: 0.0011656743 + outSlope: 0.0015861943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0001548367 + inSlope: 0.0015861943 + outSlope: 0.0019803217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.00023735009 + inSlope: 0.0019803217 + outSlope: 0.0019603171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.00031903 + inSlope: 0.0019603171 + outSlope: -0.0015405454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.0002548406 + inSlope: -0.0015405454 + outSlope: 0.0015039349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00031750457 + inSlope: 0.0015039349 + outSlope: 0.01954552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.0011319009 + inSlope: 0.01954552 + outSlope: 0.026285047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.002227111 + inSlope: 0.026285047 + outSlope: 0.022892604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.00318097 + inSlope: 0.022892604 + outSlope: 0.012295971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.003693302 + inSlope: 0.012295971 + outSlope: 0.009605923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.0040935487 + inSlope: 0.009605923 + outSlope: 0.008095859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.004430876 + inSlope: 0.008095859 + outSlope: 0.0027682316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.004546219 + inSlope: 0.0027682316 + outSlope: -0.000029740318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00454498 + inSlope: -0.000029740318 + outSlope: -0.000029733208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.004543741 + inSlope: -0.000029733208 + outSlope: -0.00036434393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.0045285597 + inSlope: -0.00036434393 + outSlope: -0.0004923818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.004508044 + inSlope: -0.0004923818 + outSlope: -0.0005491453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.004485163 + inSlope: -0.0005491453 + outSlope: -0.0005346033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.004462888 + inSlope: -0.0005346033 + outSlope: -0.00044872976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0044441908 + inSlope: -0.00044872976 + outSlope: -0.00029162434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.004429406 + inSlope: -0.00006321427 + outSlope: 0.00023649953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.00443926 + inSlope: 0.00023649953 + outSlope: 0.00060750847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: 0.004819358 + inSlope: 0.0024519132 + outSlope: 0.0033957271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: 0.005420604 + inSlope: 0.006341835 + outSlope: 0.008344143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.0057682768 + inSlope: 0.008344143 + outSlope: 0.006936156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.0060572834 + inSlope: 0.006936156 + outSlope: -0.0025513482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: 0.005950977 + inSlope: -0.0025513482 + outSlope: -0.004796109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0054647927 + inSlope: -0.0030746155 + outSlope: -0.0026269862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.005024117 + inSlope: -0.0029365052 + outSlope: -0.0034146055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.004491051 + inSlope: -0.0017152228 + outSlope: -0.0013892966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.004317566 + inSlope: -0.0007487611 + outSlope: -0.00064768427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.0039557638 + inSlope: -0.00095620926 + outSlope: -0.00082564674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.0038832894 + inSlope: -0.000016264883 + outSlope: -0.00001627213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.003859731 + inSlope: -0.000025355914 + outSlope: -0.000025355914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000064502165 + inSlope: -0.0011645831 + outSlope: -0.0011645831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.000054974516 + inSlope: -0.0011645831 + outSlope: -0.0030770828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0001831863 + inSlope: -0.0030770828 + outSlope: -0.004128693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.0003552152 + inSlope: -0.004128693 + outSlope: 0.0012562696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0003028706 + inSlope: 0.0012562696 + outSlope: 0.0036972899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.0001488169 + inSlope: 0.0036972899 + outSlope: 0.0013091115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.000094270574 + inSlope: 0.0013091115 + outSlope: 0.0011815969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0.00004503738 + inSlope: 0.0011815969 + outSlope: 0.0012681521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.000007802318 + inSlope: 0.0012681521 + outSlope: 0.0014471683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.00006810098 + inSlope: 0.0014471683 + outSlope: 0.0017322946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.0001402799 + inSlope: 0.0017322946 + outSlope: 0.003290866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.00027739938 + inSlope: 0.003290866 + outSlope: 0.0042036846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00045255286 + inSlope: 0.0042036846 + outSlope: 0.0030771708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.0005807684 + inSlope: 0.0030771708 + outSlope: -0.000088670335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.0005770738 + inSlope: -0.000088670335 + outSlope: -0.0051219068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.0003636609 + inSlope: -0.0051219068 + outSlope: -0.0060983994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.000109560795 + inSlope: -0.0060983994 + outSlope: -0.0047909734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: -0.0000900629 + inSlope: -0.0047909734 + outSlope: -0.003592054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.00023973189 + inSlope: -0.003592054 + outSlope: 0.0025690882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.00013268649 + inSlope: 0.0025690882 + outSlope: 0.009671281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.00027028317 + inSlope: 0.009671281 + outSlope: 0.008957663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.0006435193 + inSlope: 0.008957663 + outSlope: 0.0050811637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.00085523457 + inSlope: 0.0050811637 + outSlope: 0.003151856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.001118633 + inSlope: 0.003169708 + outSlope: 0.0051126275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.0013316589 + inSlope: 0.0051126275 + outSlope: 0.0060490207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: 0.002831145 + inSlope: 0.0068179243 + outSlope: 0.0077400818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: 0.0038234838 + inSlope: 0.007764101 + outSlope: 0.0060456377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.0040753856 + inSlope: 0.0060456377 + outSlope: 0.003155282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.004206856 + inSlope: 0.003155282 + outSlope: -0.00047512338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: 0.004187059 + inSlope: -0.00047512338 + outSlope: -0.0029079309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.003799809 + inSlope: -0.0027273658 + outSlope: -0.0009797268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.003859136 + inSlope: 0.0014810844 + outSlope: 0.0018853158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.004207228 + inSlope: 0.00048890495 + outSlope: -0.0007724434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.004055931 + inSlope: -0.00034046304 + outSlope: 0.00071889505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.004261257 + inSlope: 0.00023918822 + outSlope: 0.0001700875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.0042577917 + inSlope: -0.00014205667 + outSlope: -0.00014205748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.004200576 + inSlope: -0.000009841956 + outSlope: -0.000009841956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0128 + inSlope: 0.0001859951 + outSlope: 0.0001859951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.012792249 + inSlope: 0.0001859951 + outSlope: 0.0001859951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0127845 + inSlope: 0.0001859951 + outSlope: 0.00018599512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.01277675 + inSlope: 0.00018599512 + outSlope: 0.00018599509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.012769001 + inSlope: 0.00018599509 + outSlope: -0.00009658815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.012773025 + inSlope: -0.00009658815 + outSlope: -0.000096588126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.012777049 + inSlope: -0.000096588126 + outSlope: -0.000096616764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0.012781075 + inSlope: -0.000096616764 + outSlope: -0.00009658808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.012785099 + inSlope: -0.00009658808 + outSlope: -0.020940002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.0136576 + inSlope: -0.020940002 + outSlope: -0.025907543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: -0.01473708 + inSlope: -0.025907543 + outSlope: -0.027046783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.01586403 + inSlope: -0.027046783 + outSlope: -0.021479763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.01675902 + inSlope: -0.021479763 + outSlope: -0.016905576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.01746342 + inSlope: -0.016905576 + outSlope: -0.0092452895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: -0.017848639 + inSlope: -0.0092452895 + outSlope: -0.011661609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.01833454 + inSlope: -0.011661609 + outSlope: -0.012978223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.018875299 + inSlope: -0.012978223 + outSlope: -0.00769201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: -0.019195799 + inSlope: -0.00769201 + outSlope: -0.003606718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.019346079 + inSlope: -0.003606718 + outSlope: -0.0010262484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.01938884 + inSlope: -0.0010262484 + outSlope: 0.00062304555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.01936288 + inSlope: 0.00062304555 + outSlope: 0.0013418477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.019306969 + inSlope: 0.0013418477 + outSlope: 0.0011294169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.019259911 + inSlope: 0.0011294169 + outSlope: -0.0002669623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.019282157 + inSlope: -0.00026693332 + outSlope: -0.0002669623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: -0.019293278 + inSlope: -0.0002669623 + outSlope: -0.0010300807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: -0.019989729 + inSlope: -0.0049447394 + outSlope: -0.0060902196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: -0.02091441 + inSlope: -0.008744896 + outSlope: -0.010296459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0.021343429 + inSlope: -0.010296459 + outSlope: -0.010964652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.021800289 + inSlope: -0.010964652 + outSlope: 0.0035997427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: -0.0216503 + inSlope: 0.0035997427 + outSlope: 0.005582646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.02099682 + inSlope: 0.004895272 + outSlope: 0.0046509844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.02025505 + inSlope: 0.0043165884 + outSlope: 0.0043380014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.01946957 + inSlope: 0.0024179888 + outSlope: 0.0016857783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.01929369 + inSlope: 0.00069743424 + outSlope: 0.0007313905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.01875491 + inSlope: 0.0011817432 + outSlope: 0.00097057153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.018690165 + inSlope: -0.000054874316 + outSlope: -0.00005487463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0187384 + inSlope: -0.000048351474 + outSlope: -0.000048351474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.001062566 + inSlope: -0.0007285434 + outSlope: -0.0007285434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.00103221 + inSlope: -0.0007285434 + outSlope: 0.0007285434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.001062566 + inSlope: 0.0007285434 + outSlope: 0.036345284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0025769528 + inSlope: 0.036345284 + outSlope: 0.069779806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.005484445 + inSlope: 0.069779806 + outSlope: 0.070061274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.014079209 + inSlope: 0.06768432 + outSlope: 0.0675278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.016892869 + inSlope: 0.0675278 + outSlope: 0.068059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.028378898 + inSlope: 0.06856557 + outSlope: 0.06573265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.03841233 + inSlope: 0.05713603 + outSlope: 0.052990373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.04062026 + inSlope: 0.052990373 + outSlope: 0.043780267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.042444438 + inSlope: 0.043780267 + outSlope: 0.036817685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.04541925 + inSlope: 0.034577783 + outSlope: 0.03633692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.04849216 + inSlope: 0.037412893 + outSlope: 0.03735504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.051562537 + inSlope: 0.03633406 + outSlope: 0.034312166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.05299221 + inSlope: 0.034312166 + outSlope: 0.027789978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.054150127 + inSlope: 0.027789978 + outSlope: 0.021308005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.055812318 + inSlope: 0.01858465 + outSlope: 0.019471856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.05662365 + inSlope: 0.019471856 + outSlope: 0.020623416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: 0.05835504 + inSlope: 0.020930003 + outSlope: 0.020857388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.06007438 + inSlope: 0.020406779 + outSlope: 0.019576281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.061655387 + inSlope: 0.018367847 + outSlope: 0.017232988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: 0.06295115 + inSlope: 0.013865331 + outSlope: 0.005313367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.06317254 + inSlope: 0.005313367 + outSlope: 0.0026225303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.06328181 + inSlope: 0.0026225303 + outSlope: 0.002622416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.06339108 + inSlope: 0.002622416 + outSlope: 0.0036381844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.06354267 + inSlope: 0.0036381844 + outSlope: 0.00402409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.06371034 + inSlope: 0.00402409 + outSlope: 0.004192089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.06388501 + inSlope: 0.004192089 + outSlope: 0.0041418374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.06405759 + inSlope: 0.0041418374 + outSlope: 0.0038738286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.064219 + inSlope: 0.0038738286 + outSlope: 0.0033876833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.06446901 + inSlope: 0.0026125666 + outSlope: 0.0026124597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.06469708 + inSlope: 0.0028612465 + outSlope: 0.0028612628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.064816296 + inSlope: 0.0028612628 + outSlope: 0.0030044117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.06506666 + inSlope: 0.0030042971 + outSlope: 0.00279729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.065183215 + inSlope: 0.00279729 + outSlope: 0.002797274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.06539313 + inSlope: 0.0022406343 + outSlope: 0.002240647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.06564457 + inSlope: 0.0012646914 + outSlope: 0.000012588476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.06564509 + inSlope: 0.000012588476 + outSlope: 0.000012474036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: 0.065646134 + inSlope: 0.000012588548 + outSlope: 0.000012588476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.06564718 + inSlope: 0.000012474036 + outSlope: 0.000012588548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.06564771 + inSlope: 0.000012588548 + outSlope: 0.000012588476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.06566392 + inSlope: 0.000012588548 + outSlope: 0.000012588405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.06566548 + inSlope: 0.000012588548 + outSlope: 0.000012588548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.02032738 + inSlope: -0.0005683136 + outSlope: -0.0005683136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0203037 + inSlope: -0.0005683136 + outSlope: -0.0013264846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.02024843 + inSlope: -0.0013264846 + outSlope: -0.0015172578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.02018521 + inSlope: -0.0015172578 + outSlope: -0.001140518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.020137688 + inSlope: -0.001140518 + outSlope: -0.002093983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.01947752 + inSlope: -0.0083649745 + outSlope: -0.011009268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.019018799 + inSlope: -0.011009268 + outSlope: -0.013319524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0160833 + inSlope: -0.02228497 + outSlope: -0.024412552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.011593749 + inSlope: -0.03144217 + outSlope: -0.031725626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.010271849 + inSlope: -0.031725626 + outSlope: -0.0018772592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.01019363 + inSlope: -0.0018772592 + outSlope: 0.006675822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.01075398 + inSlope: 0.006772563 + outSlope: 0.000006237027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.01060158 + inSlope: -0.0036638242 + outSlope: -0.0077702594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.009762635 + inSlope: -0.012364419 + outSlope: -0.015044102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.009135798 + inSlope: -0.015044102 + outSlope: -0.00044666204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.009117187 + inSlope: -0.00044666204 + outSlope: 0.00669563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.0096431095 + inSlope: 0.0059265285 + outSlope: 0.0010929087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.009688647 + inSlope: 0.0010929087 + outSlope: -0.0037383018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: 0.009199538 + inSlope: -0.008000343 + outSlope: -0.012124821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.008023009 + inSlope: -0.016111866 + outSlope: -0.019961433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.006240587 + inSlope: -0.022816671 + outSlope: -0.017697388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: 0.0047514318 + inSlope: -0.01804237 + outSlope: 0.008644908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.005111637 + inSlope: 0.008644908 + outSlope: 0.017343938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.0058343005 + inSlope: 0.017343938 + outSlope: 0.011754581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.006324074 + inSlope: 0.011754581 + outSlope: 0.007381139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.006631622 + inSlope: 0.007381139 + outSlope: 0.0030757457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.006759778 + inSlope: 0.0030757457 + outSlope: -0.0011616623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.0067113754 + inSlope: -0.0011616623 + outSlope: -0.0053309626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.0064892517 + inSlope: -0.0053309626 + outSlope: -0.009432258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.0060962415 + inSlope: -0.009432258 + outSlope: -0.013465532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.0049891504 + inSlope: -0.0131046325 + outSlope: 0.0047282455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.005425302 + inSlope: 0.0057393727 + outSlope: 0.00065881026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.005452752 + inSlope: 0.00065881026 + outSlope: -0.0023420288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.005152962 + inSlope: -0.004852915 + outSlope: -0.0061840676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.0048952936 + inSlope: -0.0061840676 + outSlope: 0.00066956395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.004980652 + inSlope: 0.0013790389 + outSlope: -0.0031264806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.004272337 + inSlope: -0.0040562022 + outSlope: -0.0017025914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.0042013954 + inSlope: -0.0017025914 + outSlope: 0.0034301882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: 0.0045006145 + inSlope: 0.0037510728 + outSlope: -0.0019978199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0042698216 + inSlope: -0.0035411955 + outSlope: -0.0015573179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.0042049335 + inSlope: -0.0015573179 + outSlope: 0.00048288252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.0041935393 + inSlope: -0.000010049382 + outSlope: -0.000010049266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.004192283 + inSlope: -0.000010049382 + outSlope: -0.000010049382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0019184109 + inSlope: 0.0018877422 + outSlope: 0.0018877422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.001839755 + inSlope: 0.0018877422 + outSlope: -0.0011300147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0018868389 + inSlope: -0.0011300147 + outSlope: -0.012539593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.002409322 + inSlope: -0.012539593 + outSlope: -0.02128987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0032964 + inSlope: -0.02128987 + outSlope: -0.02427831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0.006229857 + inSlope: -0.023438677 + outSlope: -0.027078168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0073581147 + inSlope: -0.027078168 + outSlope: -0.033295374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.01327263 + inSlope: -0.036395997 + outSlope: -0.03718919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.01990615 + inSlope: -0.043411195 + outSlope: -0.039143093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: -0.02153711 + inSlope: -0.039143093 + outSlope: -0.025552299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.02260179 + inSlope: -0.025552299 + outSlope: -0.016233094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.02386919 + inSlope: -0.014184507 + outSlope: -0.016060632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.025203653 + inSlope: -0.015966445 + outSlope: -0.015857521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.026521154 + inSlope: -0.015762512 + outSlope: -0.015681282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: -0.02717454 + inSlope: -0.015681282 + outSlope: -0.015614632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.02782515 + inSlope: -0.015614632 + outSlope: -0.015561919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.029120348 + inSlope: -0.015522894 + outSlope: -0.015498703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.02976613 + inSlope: -0.015498703 + outSlope: -0.01548799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: -0.031056933 + inSlope: -0.015491309 + outSlope: -0.015509003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.03235068 + inSlope: -0.015540976 + outSlope: -0.015586295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0.03366685 + inSlope: -0.01600167 + outSlope: -0.020254344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: -0.035371114 + inSlope: -0.020648021 + outSlope: -0.01478734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.035987254 + inSlope: -0.01478734 + outSlope: -0.0104303835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.03642185 + inSlope: -0.0104303835 + outSlope: -0.009798212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.03683011 + inSlope: -0.009798212 + outSlope: -0.009286061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.03721703 + inSlope: -0.009286061 + outSlope: -0.008894128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.037587617 + inSlope: -0.008894128 + outSlope: -0.008621872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: -0.03794686 + inSlope: -0.008621872 + outSlope: -0.008469528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.03829976 + inSlope: -0.008469528 + outSlope: -0.008437508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.03865132 + inSlope: -0.008437508 + outSlope: -0.008524941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.03933467 + inSlope: -0.007875351 + outSlope: -0.0043574567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.039566662 + inSlope: -0.0012104393 + outSlope: -0.0012104462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.0396171 + inSlope: -0.0012104462 + outSlope: 0.00009057981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.03960955 + inSlope: 0.00009057981 + outSlope: 0.00009058033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.039605778 + inSlope: 0.00009058033 + outSlope: 0.00009057981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.03948869 + inSlope: 0.0027194545 + outSlope: 0.0036130277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.03873129 + inSlope: 0.0053122533 + outSlope: 0.005187482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.038515143 + inSlope: 0.005187482 + outSlope: 0.002120243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: -0.038433593 + inSlope: -0.00016307892 + outSlope: -0.00016307799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.038447183 + inSlope: -0.00016307799 + outSlope: -0.00016307892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: -0.038453978 + inSlope: -0.00016307892 + outSlope: -0.00016307799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.038538646 + inSlope: -0.000031643034 + outSlope: -0.00003164267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0385426 + inSlope: -0.000031643034 + outSlope: -0.000031643034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.x + path: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.016607521 + inSlope: -0.00044577598 + outSlope: -0.00044577598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.01634362 + inSlope: -0.00007032381 + outSlope: -0.00007032381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0162805 + inSlope: -0.000007810622 + outSlope: -0.000007810622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.014694099 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.014694099 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.014694099 + inSlope: -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: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0.00047522545 + outSlope: 0.00047522545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.00001980106 + inSlope: 0.00047522545 + outSlope: 0.0014885081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00008182224 + inSlope: 0.0014885081 + outSlope: 0.0025960382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.00018999049 + inSlope: 0.0025960382 + outSlope: 0.0037978147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0003482328 + inSlope: 0.0037978147 + outSlope: 0.0050744936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.00055967 + inSlope: 0.0050744936 + outSlope: 0.005776448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.001056584 + inSlope: 0.0061494876 + outSlope: 0.006489598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.001904808 + inSlope: 0.007071002 + outSlope: 0.007312292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.003170129 + inSlope: 0.007838624 + outSlope: 0.0079481965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0038356709 + inSlope: 0.008024801 + outSlope: 0.008068543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.00417186 + inSlope: 0.008068543 + outSlope: 0.00556154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.0044035907 + inSlope: 0.00556154 + outSlope: 0.0014792911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.004465228 + inSlope: 0.0014792911 + outSlope: 0.00405039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.004633994 + inSlope: 0.00405039 + outSlope: 0.017188072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.005350164 + inSlope: 0.017188072 + outSlope: 0.02415027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0063564256 + inSlope: 0.02415027 + outSlope: 0.024900608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.00739395 + inSlope: 0.024900608 + outSlope: 0.024149567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.009311529 + inSlope: 0.021872327 + outSlope: 0.01615721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.009984747 + inSlope: 0.01615721 + outSlope: 0.011276475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.0104546 + inSlope: 0.011276475 + outSlope: 0.009938659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.0108687105 + inSlope: 0.009938659 + outSlope: 0.011488044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.01134738 + inSlope: 0.011488044 + outSlope: 0.012277949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: 0.01238597 + inSlope: 0.012648251 + outSlope: 0.012789807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.01344817 + inSlope: 0.012702982 + outSlope: 0.012092869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: 0.013952039 + inSlope: 0.012092869 + outSlope: 0.009078723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.01461112 + inSlope: 0.0067392034 + outSlope: 0.005836549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: 0.014854309 + inSlope: 0.005836549 + outSlope: 0.0063707996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.015400889 + inSlope: 0.0067471284 + outSlope: 0.002067606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.01548704 + inSlope: 0.002067606 + outSlope: -0.0017419305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.0152490605 + inSlope: -0.0039695874 + outSlope: -0.0046152063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.01505676 + inSlope: -0.0046152063 + outSlope: -0.0037665581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.01489982 + inSlope: -0.0037665581 + outSlope: -0.0030139189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.0146551095 + inSlope: -0.00072792865 + outSlope: 0.0011954509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.01482852 + inSlope: 0.0029663886 + outSlope: 0.002262019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.01459186 + inSlope: -0.0038781886 + outSlope: -0.0030885541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.01426221 + inSlope: -0.00049584295 + outSlope: -0.0013120911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333333 + value: 0.01377105 + inSlope: -0.0026116946 + outSlope: -0.0023416856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.01367348 + inSlope: -0.0023416856 + outSlope: -0.0019655763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 0.01359158 + inSlope: -0.0019655763 + outSlope: -0.001483446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.01349248 + inSlope: -0.00089495484 + outSlope: 0.00016367881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.0134993 + inSlope: 0.00016367881 + outSlope: 0.00016367975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.01351976 + inSlope: 0.00016367881 + outSlope: 0.00047939483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: 0.013570586 + inSlope: 0.000029010716 + outSlope: 0.000029010716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.013585089 + inSlope: 0.000029010884 + outSlope: 0.000029010884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.02889578 + inSlope: -0.00075868604 + outSlope: -0.00075868604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.028864168 + inSlope: -0.00075868604 + outSlope: -0.0025629615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.028757378 + inSlope: -0.0025629615 + outSlope: -0.004798794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.02855743 + inSlope: -0.004798794 + outSlope: -0.0074652093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.028246379 + inSlope: -0.0074652093 + outSlope: -0.010563071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.02780625 + inSlope: -0.010563071 + outSlope: -0.014091853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.026466928 + inSlope: -0.018051857 + outSlope: -0.022442885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.02311441 + inSlope: -0.031055782 + outSlope: -0.035134546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.016238479 + inSlope: -0.04737798 + outSlope: -0.051460996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.01177986 + inSlope: -0.055545814 + outSlope: -0.06010039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.0092756795 + inSlope: -0.06010039 + outSlope: -0.06279439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.006659245 + inSlope: -0.06279439 + outSlope: 0.03585781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.008153321 + inSlope: 0.03585781 + outSlope: 0.0241262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.009158579 + inSlope: 0.0241262 + outSlope: -0.0037623292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.009001815 + inSlope: -0.0037623292 + outSlope: -0.012575906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.008477819 + inSlope: -0.012575906 + outSlope: -0.018587282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.0077033495 + inSlope: -0.018587282 + outSlope: -0.023419978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.005678844 + inSlope: -0.025168156 + outSlope: 0.0054236883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.005904832 + inSlope: 0.0054236883 + outSlope: 0.010809814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.00635524 + inSlope: 0.010809814 + outSlope: 0.009483384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.0067503806 + inSlope: 0.009483384 + outSlope: 0.0035858275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.006899791 + inSlope: 0.0035858275 + outSlope: -0.0016938988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: 0.006627314 + inSlope: -0.0048455475 + outSlope: -0.0059096604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.006177485 + inSlope: -0.0048862314 + outSlope: -0.0017753808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: 0.0061035105 + inSlope: -0.0017753808 + outSlope: 0.0045923907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.006498346 + inSlope: 0.0048836563 + outSlope: -0.0021735784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: 0.0064077806 + inSlope: -0.0021735784 + outSlope: -0.0063902545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.005801718 + inSlope: -0.008155239 + outSlope: 0.0023949072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0059015057 + inSlope: 0.0023949072 + outSlope: 0.010021687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.0067035793 + inSlope: 0.009228067 + outSlope: 0.0028015736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.0068203113 + inSlope: 0.0028015736 + outSlope: -0.0020321808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.006735637 + inSlope: -0.0020321808 + outSlope: -0.0053749518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.005970187 + inSlope: -0.0057511604 + outSlope: 0.0038168943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.006322238 + inSlope: 0.0046323305 + outSlope: -0.0007689314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.0060769487 + inSlope: -0.00079410855 + outSlope: -0.00031505525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.005917232 + inSlope: -0.0016303222 + outSlope: -0.0021813542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333333 + value: 0.005146942 + inSlope: -0.0059066615 + outSlope: -0.005877674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.0049020383 + inSlope: -0.005877674 + outSlope: -0.001704537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 0.004831016 + inSlope: -0.001704537 + outSlope: 0.0062201163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.005292909 + inSlope: 0.004865332 + outSlope: -0.00036151815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.0052778455 + inSlope: -0.00036151815 + outSlope: -0.00338466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.0048441766 + inSlope: -0.0028194755 + outSlope: -0.0012503862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: 0.0047082137 + inSlope: 0.00027374216 + outSlope: 0.00028558678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0047472 + inSlope: -0.000014233644 + outSlope: -0.000014233644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0033410888 + inSlope: -0.0004757738 + outSlope: -0.0004757738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0033212649 + inSlope: -0.0004757738 + outSlope: -0.0013055492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.003266867 + inSlope: -0.0013055492 + outSlope: -0.0019526912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0031855048 + inSlope: -0.0019526912 + outSlope: -0.0024171562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00308479 + inSlope: -0.0024171562 + outSlope: -0.002698968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.002972333 + inSlope: -0.002698968 + outSlope: -0.0027981373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.0027426349 + inSlope: -0.0027146179 + outSlope: -0.002406212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.002536134 + inSlope: -0.0009129598 + outSlope: -0.000350139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.002551379 + inSlope: 0.0003719977 + outSlope: 0.0002905439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.002565487 + inSlope: 0.000048050857 + outSlope: -0.00038721837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.0025493528 + inSlope: -0.00038721837 + outSlope: -0.0021679176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.002459023 + inSlope: -0.0021679176 + outSlope: -0.00627986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.002197362 + inSlope: -0.00627986 + outSlope: -0.004508883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.0020094921 + inSlope: -0.004508883 + outSlope: 0.00089157297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.002046641 + inSlope: 0.00089157297 + outSlope: 0.004348581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0022278319 + inSlope: 0.004348581 + outSlope: 0.0058621983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.0024720898 + inSlope: 0.0058621983 + outSlope: 0.0054323254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.0029289078 + inSlope: 0.005531307 + outSlope: 0.015396815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.003570443 + inSlope: 0.015396815 + outSlope: 0.01780866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.00431247 + inSlope: 0.01780866 + outSlope: 0.015569586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.004961202 + inSlope: 0.015569586 + outSlope: 0.015559844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00560953 + inSlope: 0.015559844 + outSlope: 0.015597567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: 0.006912874 + inSlope: 0.015682712 + outSlope: 0.015815176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.008238307 + inSlope: 0.015995208 + outSlope: 0.016222516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: 0.008914244 + inSlope: 0.016222516 + outSlope: 0.016497256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.010302439 + inSlope: 0.016819412 + outSlope: 0.01718907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: 0.011018651 + inSlope: 0.01718907 + outSlope: 0.0176061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.01247442 + inSlope: 0.01733235 + outSlope: 0.013195222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.01302422 + inSlope: 0.013195222 + outSlope: 0.0096909525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.013745282 + inSlope: 0.007614505 + outSlope: 0.0069669406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.01403557 + inSlope: 0.0069669406 + outSlope: 0.0077085537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.01435676 + inSlope: 0.0077085537 + outSlope: 0.008040455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.015210152 + inSlope: 0.0053215497 + outSlope: 0.0026471925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.015354051 + inSlope: 0.0008064064 + outSlope: 0.0010454218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.015625274 + inSlope: -0.00005247136 + outSlope: -0.000052471063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.015016081 + inSlope: -0.0045191487 + outSlope: -0.0049742223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333333 + value: 0.013839969 + inSlope: -0.006197114 + outSlope: -0.0063534616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.013575241 + inSlope: -0.0063534616 + outSlope: -0.0058243447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 0.01333256 + inSlope: -0.0058243447 + outSlope: -0.0021924102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.01325371 + inSlope: 0.00030000627 + outSlope: 0.000948227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.01329322 + inSlope: 0.000948227 + outSlope: 0.00012697268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.01344182 + inSlope: 0.0022065311 + outSlope: 0.0022586717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: 0.013530122 + inSlope: -0.000024805022 + outSlope: -0.000024833633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.013517711 + inSlope: -0.000024833775 + outSlope: -0.000024833775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: -0.00034639533 + outSlope: -0.00034639533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.00001443314 + inSlope: -0.00034639533 + outSlope: 0.0006014323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00001062654 + inSlope: 0.0006014323 + outSlope: 0.004010188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0001777177 + inSlope: 0.004010188 + outSlope: 0.009837032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0005875941 + inSlope: 0.009837032 + outSlope: 0.012572064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.001618222 + inSlope: 0.012163006 + outSlope: 0.011746658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0042839907 + inSlope: 0.009555097 + outSlope: 0.009094823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.00502241 + inSlope: 0.008627244 + outSlope: 0.008247323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0057130777 + inSlope: 0.008328691 + outSlope: 0.008951792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.007859172 + inSlope: 0.010884042 + outSlope: 0.0109589435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.009239194 + inSlope: 0.011122951 + outSlope: 0.011212073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.010177439 + inSlope: 0.011305811 + outSlope: 0.011404334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.010652619 + inSlope: 0.011404334 + outSlope: 0.011507789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.01113211 + inSlope: 0.011507789 + outSlope: 0.011615502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.012104769 + inSlope: 0.011728317 + outSlope: 0.011845704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.013600169 + inSlope: 0.012076075 + outSlope: 0.012026665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.015096939 + inSlope: 0.011931851 + outSlope: 0.011929934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.01659297 + inSlope: 0.012016566 + outSlope: 0.012105143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.017606689 + inSlope: 0.012224126 + outSlope: 0.012373449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.01812225 + inSlope: 0.012373449 + outSlope: 0.012552492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.019077089 + inSlope: 0.010363664 + outSlope: -0.0029860812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: 0.01871663 + inSlope: -0.0056649735 + outSlope: -0.005402631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.01849152 + inSlope: -0.005402631 + outSlope: -0.0051503894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.01827692 + inSlope: -0.0051503894 + outSlope: -0.004908476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.0180724 + inSlope: -0.004908476 + outSlope: -0.004676646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.01769191 + inSlope: -0.004455119 + outSlope: -0.0042439187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.01734663 + inSlope: -0.0040428126 + outSlope: -0.0034905558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.017201189 + inSlope: -0.0034905558 + outSlope: -0.0011220052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.01718455 + inSlope: 0.0007226399 + outSlope: 0.0016442554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.01725306 + inSlope: 0.0016442554 + outSlope: 0.0016425387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.01735925 + inSlope: 0.0009060035 + outSlope: 0.0012825655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.01749636 + inSlope: 0.002008091 + outSlope: 0.0027122316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.01811574 + inSlope: 0.004699448 + outSlope: 0.005319604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 0.019464951 + inSlope: 0.007590966 + outSlope: 0.008106253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.02016107 + inSlope: 0.008600648 + outSlope: 0.009073889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833333 + value: 0.02092936 + inSlope: 0.009365079 + outSlope: 0.00726069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.02143244 + inSlope: 0.004813204 + outSlope: 0.0029505843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: 0.02162506 + inSlope: 0.0016723219 + outSlope: 0.00092387974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: 0.021663556 + inSlope: 0.00092387974 + outSlope: 0.00092388503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0.02175808 + inSlope: 0.0013446782 + outSlope: 0.0024047995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583333 + value: 0.02196793 + inSlope: 0.002631636 + outSlope: 0.0017306295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.02204004 + inSlope: 0.0017306295 + outSlope: 0.00066158164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: 0.022077931 + inSlope: -0.00041370312 + outSlope: -0.0004136459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7083333 + value: 0.02204346 + inSlope: -0.00041370548 + outSlope: -0.00066444266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 0.022015775 + inSlope: -0.00066444266 + outSlope: -0.00066444266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333333 + value: 0.021984193 + inSlope: -0.00009349858 + outSlope: -0.00009344083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.875 + value: 0.021980299 + inSlope: -0.00009344083 + outSlope: -0.00009349805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9583333 + value: 0.021972511 + inSlope: -0.00009344136 + outSlope: -0.00009349805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: 0.021960825 + inSlope: -0.00009344029 + outSlope: -0.00009349858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.02195693 + inSlope: -0.00009349858 + outSlope: -0.00009349858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.02889578 + inSlope: -0.0012689208 + outSlope: -0.0012689208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.02884291 + inSlope: -0.0012689208 + outSlope: -0.0026166916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.02873388 + inSlope: -0.0026166916 + outSlope: -0.0021328926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.028645009 + inSlope: -0.0021328926 + outSlope: 0.0031852908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.02877773 + inSlope: 0.0031852908 + outSlope: 0.0035916145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.028837198 + inSlope: -0.0021643636 + outSlope: -0.0060297213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.02481919 + inSlope: -0.026379382 + outSlope: -0.03068829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.02218267 + inSlope: -0.032588225 + outSlope: -0.014125435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.02121233 + inSlope: -0.009162708 + outSlope: -0.014118989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.01617238 + inSlope: -0.032784443 + outSlope: -0.03685319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.011055229 + inSlope: -0.045024924 + outSlope: -0.049487762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.0068133306 + inSlope: -0.052317765 + outSlope: 0.017722052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.007551749 + inSlope: 0.017722052 + outSlope: 0.031354096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.008858168 + inSlope: 0.031354096 + outSlope: 0.025380086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.010800419 + inSlope: 0.02123393 + outSlope: 0.017150419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.01243381 + inSlope: 0.008983935 + outSlope: 0.004900565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.01253597 + inSlope: -0.0032659178 + outSlope: -0.0073495456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.011106879 + inSlope: -0.015516028 + outSlope: -0.01959937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.009303465 + inSlope: -0.023682559 + outSlope: -0.027765967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.0081465505 + inSlope: -0.027765967 + outSlope: -0.03207181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.005364921 + inSlope: -0.034687262 + outSlope: 0.01787666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: 0.0068795276 + inSlope: 0.018473929 + outSlope: 0.012259115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.007390325 + inSlope: 0.012259115 + outSlope: 0.008004749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.007723856 + inSlope: 0.008004749 + outSlope: 0.003913185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.007886905 + inSlope: 0.003913185 + outSlope: -0.000015621245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.0077286884 + inSlope: -0.0037815785 + outSlope: -0.0073847435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.006977863 + inSlope: -0.010635092 + outSlope: -0.005957497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.0067296335 + inSlope: -0.005957497 + outSlope: 0.0063440776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.0072254515 + inSlope: 0.0055555557 + outSlope: -0.00024541808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.0072152256 + inSlope: -0.00024541808 + outSlope: -0.005359029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.0067282794 + inSlope: -0.006327691 + outSlope: 0.002353244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.006872952 + inSlope: 0.0011188866 + outSlope: -0.0017326992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.0066316244 + inSlope: -0.00054416864 + outSlope: -0.0006455027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 0.0061945245 + inSlope: -0.004175655 + outSlope: -0.005839427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.0056255576 + inSlope: -0.007815785 + outSlope: -0.010104542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833333 + value: 0.004775665 + inSlope: -0.010292913 + outSlope: -0.0034568529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.0044986675 + inSlope: -0.0031910646 + outSlope: 0.009870852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: 0.005240996 + inSlope: 0.007945046 + outSlope: 0.0019307289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: 0.005321443 + inSlope: 0.0019307289 + outSlope: -0.0019689063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0.005087366 + inSlope: -0.0036489416 + outSlope: -0.0009029943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583333 + value: 0.005105598 + inSlope: 0.001340566 + outSlope: 0.00088794535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.0051425956 + inSlope: 0.00088794535 + outSlope: -0.0020711476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: 0.004687953 + inSlope: -0.004897318 + outSlope: -0.0057371985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7083333 + value: 0.004200573 + inSlope: -0.005959934 + outSlope: 0.0003748505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 0.004216192 + inSlope: 0.0003748505 + outSlope: 0.0047118096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333333 + value: 0.0045743105 + inSlope: 0.0038830524 + outSlope: -0.0013203023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.875 + value: 0.004519298 + inSlope: -0.0013203023 + outSlope: -0.0038937302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9583333 + value: 0.004229908 + inSlope: -0.0030516358 + outSlope: 0.00038909836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: 0.0042372323 + inSlope: -0.0006267881 + outSlope: -0.00092829106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0041985535 + inSlope: -0.00092829106 + outSlope: -0.00092829106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.007478603 + inSlope: -0.00007854938 + outSlope: -0.00007854938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.007481876 + inSlope: -0.00007854938 + outSlope: -0.00007854938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.007485149 + inSlope: -0.00007854938 + outSlope: -0.00007854939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.0074884216 + inSlope: -0.00007854939 + outSlope: -0.0004927253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0075089517 + inSlope: -0.0004927253 + outSlope: -0.00089315436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.0076049026 + inSlope: -0.0014096687 + outSlope: -0.0020421844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.008486317 + inSlope: -0.004046274 + outSlope: -0.0032219966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: -0.008698689 + inSlope: -0.0018749302 + outSlope: 0.0033193573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.008315048 + inSlope: 0.0058879964 + outSlope: 0.0019389027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.008184991 + inSlope: 0.00035671215 + outSlope: 0.0002747296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.008167322 + inSlope: -0.00012541289 + outSlope: -0.00012539876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.008177772 + inSlope: -0.0001254127 + outSlope: -0.0032645587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.008313796 + inSlope: -0.0032645587 + outSlope: -0.0070127887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.008605995 + inSlope: -0.0070127887 + outSlope: -0.008069042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.009227368 + inSlope: -0.006843902 + outSlope: -0.0064117014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.01001754 + inSlope: -0.0062423144 + outSlope: -0.006208082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.01079489 + inSlope: -0.0062407264 + outSlope: -0.0063076746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.011597331 + inSlope: -0.0065426505 + outSlope: -0.006710393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.012164939 + inSlope: -0.0069122184 + outSlope: -0.0071477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.01246276 + inSlope: -0.0071477 + outSlope: -0.0074164937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.012978669 + inSlope: -0.0049653244 + outSlope: 0.0003278163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: -0.0128093595 + inSlope: 0.0037356126 + outSlope: 0.0052204696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.01259184 + inSlope: 0.0052204696 + outSlope: 0.004782719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.01239256 + inSlope: 0.004782719 + outSlope: 0.0038541623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.012231969 + inSlope: 0.0038541623 + outSlope: 0.0037060971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.01192993 + inSlope: 0.003542855 + outSlope: 0.0033645565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.01165763 + inSlope: 0.003170655 + outSlope: 0.0029616107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.011534229 + inSlope: 0.0029616107 + outSlope: 0.0027374213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: -0.011316089 + inSlope: 0.00249794 + outSlope: 0.0022430376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.011222629 + inSlope: 0.0022430376 + outSlope: 0.001972786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.0110653 + inSlope: 0.001803138 + outSlope: 0.0017973484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.010915509 + inSlope: 0.0017976059 + outSlope: 0.0018014213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: -0.01061262 + inSlope: 0.0018372128 + outSlope: 0.0018573725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: -0.010214049 + inSlope: 0.0019768772 + outSlope: 0.0020172005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.01004413 + inSlope: 0.0020608767 + outSlope: 0.0021090705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833333 + value: -0.0097524645 + inSlope: 0.004890923 + outSlope: 0.009089825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.008995789 + inSlope: 0.009070341 + outSlope: 0.0057887584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: -0.008620228 + inSlope: 0.0032247242 + outSlope: 0.0023102858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: -0.008523966 + inSlope: 0.0023102858 + outSlope: 0.003045356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: -0.008241672 + inSlope: 0.003729708 + outSlope: 0.0008340152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583333 + value: -0.008262874 + inSlope: -0.0013428691 + outSlope: -0.0024980688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: -0.00836696 + inSlope: -0.0024980688 + outSlope: -0.0026315637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: -0.008774916 + inSlope: -0.004929104 + outSlope: -0.006603929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7083333 + value: -0.009303797 + inSlope: -0.006089224 + outSlope: -0.0034023363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: -0.009445561 + inSlope: -0.0034023363 + outSlope: -0.0010712364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333333 + value: -0.009493893 + inSlope: -0.000088720655 + outSlope: 0.0006183088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.875 + value: -0.00946813 + inSlope: 0.0006183088 + outSlope: 0.0010499218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9583333 + value: -0.009374127 + inSlope: 0.0012061547 + outSlope: 0.0010868862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: -0.009305905 + inSlope: -0.00014177691 + outSlope: -0.00014177852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.009311812 + inSlope: -0.00014177852 + outSlope: -0.00014177852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: -0.00023898568 + outSlope: -0.00023898568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.000009957736 + inSlope: -0.00023898568 + outSlope: -0.0006907601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.00003873941 + inSlope: -0.0006907601 + outSlope: -0.0011032396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.000084707724 + inSlope: -0.0011032396 + outSlope: -0.001476424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0001462254 + inSlope: -0.001476424 + outSlope: -0.0018103133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.00022165511 + inSlope: -0.0018103133 + outSlope: -0.0021049052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.0003093595 + inSlope: -0.0021049052 + outSlope: -0.0023602033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0.00040770127 + inSlope: -0.0023602033 + outSlope: -0.0025762068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: -0.0007501785 + inSlope: -0.0028903293 + outSlope: -0.0029884423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.001507135 + inSlope: -0.0030294464 + outSlope: -0.004999202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: -0.001715435 + inSlope: -0.004999202 + outSlope: -0.0069119986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.002003435 + inSlope: -0.0069119986 + outSlope: -0.007937107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.002334148 + inSlope: -0.007937107 + outSlope: -0.010426764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.002768596 + inSlope: -0.010426764 + outSlope: -0.023645261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.0037538158 + inSlope: -0.023645261 + outSlope: -0.031947613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.005084967 + inSlope: -0.031947613 + outSlope: -0.032740906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: -0.00644917 + inSlope: -0.032740906 + outSlope: -0.03169949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: -0.009104285 + inSlope: -0.032023303 + outSlope: -0.031669963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.01042387 + inSlope: -0.031669963 + outSlope: -0.029427394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.01165001 + inSlope: -0.029427394 + outSlope: -0.0107613765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.0120984 + inSlope: -0.0107613765 + outSlope: 0.004179117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.011924271 + inSlope: 0.004179117 + outSlope: 0.007818011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.01159852 + inSlope: 0.007818011 + outSlope: 0.005880008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.010860899 + inSlope: 0.005922723 + outSlope: 0.005946728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.010114259 + inSlope: 0.0060002576 + outSlope: 0.0060291397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.009610537 + inSlope: 0.006060193 + outSlope: 0.0060929405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.009101356 + inSlope: 0.0061274013 + outSlope: 0.006163547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.008586147 + inSlope: 0.0062014875 + outSlope: 0.006241127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: -0.0083261 + inSlope: 0.006241127 + outSlope: 0.006282494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.008064329 + inSlope: 0.006282494 + outSlope: 0.0063256416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: -0.007535325 + inSlope: 0.0063704597 + outSlope: 0.0064170617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.0069985567 + inSlope: 0.006465374 + outSlope: 0.0065154377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.0064534466 + inSlope: 0.006567217 + outSlope: 0.0066207233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.0058994163 + inSlope: 0.0066759842 + outSlope: 0.0067329854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.0056188763 + inSlope: 0.0067329854 + outSlope: 0.0066949097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.005339921 + inSlope: 0.0066949097 + outSlope: 0.00629039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: -0.004831474 + inSlope: 0.0059123477 + outSlope: 0.0056056487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.004597905 + inSlope: 0.0056056487 + outSlope: 0.0053702514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.004157217 + inSlope: 0.005206266 + outSlope: 0.005113575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.0037319749 + inSlope: 0.0050922176 + outSlope: 0.005142279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.003298397 + inSlope: 0.0052635996 + outSlope: 0.005456268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.003071052 + inSlope: 0.005456268 + outSlope: 0.0057203798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: -0.0028327038 + inSlope: 0.0057203798 + outSlope: 0.0060557155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.002311113 + inSlope: 0.006462441 + outSlope: 0.007202091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333333 + value: -0.002011027 + inSlope: 0.007202091 + outSlope: 0.008222049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -0.001668441 + inSlope: 0.008222049 + outSlope: 0.009031374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: -0.001292133 + inSlope: 0.009031374 + outSlope: 0.009626306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583333 + value: -0.00089103845 + inSlope: 0.009626306 + outSlope: 0.010006708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.0004740915 + inSlope: 0.010006708 + outSlope: 0.010172745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: -0.00005022631 + inSlope: 0.010172745 + outSlope: 0.010124419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.0007958465 + inSlope: 0.010181347 + outSlope: 0.014229873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.001388759 + inSlope: 0.014229873 + outSlope: 0.017067762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: 0.0027961778 + inSlope: 0.016710322 + outSlope: 0.013157833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: 0.003344422 + inSlope: 0.013157833 + outSlope: 0.008358274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333333 + value: 0.003692682 + inSlope: 0.008358274 + outSlope: 0.007476418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0.0040042 + inSlope: 0.007476418 + outSlope: 0.006757952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.004734339 + inSlope: 0.004874659 + outSlope: 0.0037377977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833333 + value: 0.0050130626 + inSlope: 0.0029515785 + outSlope: 0.002358122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: 0.005111318 + inSlope: 0.002358122 + outSlope: 0.0018220533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7083333 + value: 0.0052432087 + inSlope: 0.0013433269 + outSlope: 0.00092197716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.875 + value: 0.0053371117 + inSlope: 0.00045937925 + outSlope: 0.00060719374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0054860166 + inSlope: 0.00036628387 + outSlope: 0.00036628387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03785232 + inSlope: -0.0009593582 + outSlope: -0.0009593582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.037812345 + inSlope: -0.0009593582 + outSlope: -0.0009593582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.037772372 + inSlope: -0.0009593582 + outSlope: -0.0009593583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0377324 + inSlope: -0.0009593583 + outSlope: -0.00047641745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.037712548 + inSlope: -0.00047641745 + outSlope: -0.0021138957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.03762447 + inSlope: -0.0021138957 + outSlope: -0.0064696874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.0373549 + inSlope: -0.0064696874 + outSlope: -0.010763285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.03690643 + inSlope: -0.010763285 + outSlope: -0.0149949575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.0345134 + inSlope: -0.023272824 + outSlope: -0.027318465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.02524864 + inSlope: -0.046542697 + outSlope: -0.048048522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.02324662 + inSlope: -0.048048522 + outSlope: -0.04976375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.021173129 + inSlope: -0.04976375 + outSlope: -0.052941546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.01896723 + inSlope: -0.052941546 + outSlope: -0.048821572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.016933 + inSlope: -0.048821572 + outSlope: -0.030200372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.01567465 + inSlope: -0.030200372 + outSlope: -0.027853416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0145140905 + inSlope: -0.027853416 + outSlope: -0.03164718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.01319546 + inSlope: -0.03164718 + outSlope: -0.03587109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.010012271 + inSlope: -0.040525455 + outSlope: -0.045610342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.008111836 + inSlope: -0.045610342 + outSlope: -0.04803651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.0061103175 + inSlope: -0.04803651 + outSlope: -0.0029101206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.0059890626 + inSlope: -0.0029101206 + outSlope: 0.030012015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.0072395657 + inSlope: 0.030012015 + outSlope: 0.02931384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.008460974 + inSlope: 0.02931384 + outSlope: 0.021260627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.010729579 + inSlope: 0.014959673 + outSlope: 0.011014548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.011602229 + inSlope: 0.0029256274 + outSlope: -0.0012191975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.0113251805 + inSlope: -0.005429982 + outSlope: -0.009707575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.010335209 + inSlope: -0.014051755 + outSlope: -0.018462373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.008610122 + inSlope: -0.022939702 + outSlope: -0.027368113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.007469785 + inSlope: -0.027368113 + outSlope: -0.013561565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.006904719 + inSlope: -0.013561565 + outSlope: 0.019431915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: 0.008489334 + inSlope: 0.018598897 + outSlope: 0.013017972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.00940911 + inSlope: 0.009056633 + outSlope: 0.0050189686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.009655952 + inSlope: 0.00090523105 + outSlope: -0.0032847913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.009204461 + inSlope: -0.007550969 + outSlope: -0.011893432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.008708904 + inSlope: -0.011893432 + outSlope: -0.016311977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.008029236 + inSlope: -0.016311977 + outSlope: -0.020806748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.0061973166 + inSlope: -0.023159381 + outSlope: 0.010681208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.0066423677 + inSlope: 0.010681208 + outSlope: 0.018674718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.008085367 + inSlope: 0.015957301 + outSlope: 0.010241756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.008774481 + inSlope: 0.0062969276 + outSlope: 0.0022428788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.008787906 + inSlope: -0.0019206582 + outSlope: -0.006193416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.008529847 + inSlope: -0.006193416 + outSlope: -0.010575697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.008089194 + inSlope: -0.010575697 + outSlope: -0.01506709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.006728384 + inSlope: -0.017592281 + outSlope: 0.0011136289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333333 + value: 0.0067747855 + inSlope: 0.0011136289 + outSlope: 0.005383462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.006999097 + inSlope: 0.005383462 + outSlope: 0.0035105257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 0.007145369 + inSlope: 0.0035105257 + outSlope: -0.0010328332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583333 + value: 0.0071023344 + inSlope: -0.0010328332 + outSlope: -0.005373792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.006878426 + inSlope: -0.005373792 + outSlope: -0.009426938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.006485636 + inSlope: -0.009426938 + outSlope: -0.013192055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.005273907 + inSlope: -0.015889462 + outSlope: -0.008183598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.0049329232 + inSlope: -0.008183598 + outSlope: -0.003076813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: 0.004614315 + inSlope: -0.004569789 + outSlope: 0.0006726824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: 0.0046423436 + inSlope: 0.0006726824 + outSlope: 0.0043458533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333333 + value: 0.0048234197 + inSlope: 0.0043458533 + outSlope: 0.0018305363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0.0048996923 + inSlope: 0.0018305363 + outSlope: -0.0025577496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.004512887 + inSlope: -0.002700686 + outSlope: -0.0021976046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833333 + value: 0.004334731 + inSlope: -0.0020781404 + outSlope: -0.00010763147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: 0.0043302462 + inSlope: -0.00010763147 + outSlope: 0.0026870677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7083333 + value: 0.004477403 + inSlope: 0.0008446916 + outSlope: -0.0010082797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.875 + value: 0.004254372 + inSlope: -0.0006881891 + outSlope: -0.00007381425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.004189026 + inSlope: -0.00029371373 + outSlope: -0.00029371373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00204458 + inSlope: -0.0001316893 + outSlope: -0.0001316893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.002050067 + inSlope: -0.0001316893 + outSlope: -0.00036950468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.002065463 + inSlope: -0.00036950468 + outSlope: -0.0005688715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.002089166 + inSlope: -0.0005688715 + outSlope: -0.00072991126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.002119579 + inSlope: -0.00072991126 + outSlope: -0.0008525278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.002155101 + inSlope: -0.0008525278 + outSlope: -0.0009367453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.002194132 + inSlope: -0.0009367453 + outSlope: -0.0009826078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0.002235074 + inSlope: -0.0009826078 + outSlope: -0.0009900709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: -0.002353366 + inSlope: -0.0008898248 + outSlope: -0.00078208884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0024255859 + inSlope: 0.00033230407 + outSlope: 0.0034429724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: -0.002282129 + inSlope: 0.0034429724 + outSlope: 0.0069514522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.0019924848 + inSlope: 0.0069514522 + outSlope: 0.0068784677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.0017058819 + inSlope: 0.0068784677 + outSlope: 0.0029636647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.001582396 + inSlope: 0.0029636647 + outSlope: -0.0036129802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.001732937 + inSlope: -0.0036129802 + outSlope: -0.007688949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.00205331 + inSlope: -0.007688949 + outSlope: -0.008728138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: -0.002416982 + inSlope: -0.008728138 + outSlope: -0.0070633185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: -0.002955507 + inSlope: -0.005861283 + outSlope: -0.006633276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.003231894 + inSlope: -0.006633276 + outSlope: -0.009411129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.003624024 + inSlope: -0.009411129 + outSlope: -0.018201087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.0043824017 + inSlope: -0.018201087 + outSlope: -0.026566744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0054893517 + inSlope: -0.026566744 + outSlope: -0.029782448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.006730286 + inSlope: -0.029782448 + outSlope: -0.028540775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.01027614 + inSlope: -0.028338486 + outSlope: -0.028412186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.01382959 + inSlope: -0.028428752 + outSlope: -0.028371874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.016189719 + inSlope: -0.0282712 + outSlope: -0.028127315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.018525839 + inSlope: -0.02793963 + outSlope: -0.027708668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.020823449 + inSlope: -0.027433945 + outSlope: -0.027115943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: -0.02195328 + inSlope: -0.027115943 + outSlope: -0.026165493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.02304351 + inSlope: -0.026165493 + outSlope: -0.02323845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: -0.02489182 + inSlope: -0.021121006 + outSlope: -0.02010477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.02657077 + inSlope: -0.020190028 + outSlope: -0.021090677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.02834143 + inSlope: -0.021405168 + outSlope: -0.021526525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.030136298 + inSlope: -0.021550272 + outSlope: -0.021476235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.031031137 + inSlope: -0.021476235 + outSlope: -0.02130428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.03191882 + inSlope: -0.02130428 + outSlope: -0.021034542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: -0.03362401 + inSlope: -0.01989008 + outSlope: -0.008947202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.03399681 + inSlope: -0.008947202 + outSlope: -0.0020176468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.03420825 + inSlope: -0.0030569 + outSlope: -0.00361295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.03450631 + inSlope: -0.0035404516 + outSlope: -0.0034817066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.03479461 + inSlope: -0.0034375126 + outSlope: -0.0034075289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.03493659 + inSlope: -0.0034075289 + outSlope: -0.003391927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: -0.03507792 + inSlope: -0.003391927 + outSlope: -0.0033902484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.03536099 + inSlope: -0.0034034092 + outSlope: -0.0034303223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333333 + value: -0.03550392 + inSlope: -0.0034303223 + outSlope: -0.0034720737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -0.035648588 + inSlope: -0.0034720737 + outSlope: -0.00352752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: -0.03579557 + inSlope: -0.00352752 + outSlope: -0.0035976355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583333 + value: -0.03594547 + inSlope: -0.0035976355 + outSlope: -0.003682072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.03609889 + inSlope: -0.003682072 + outSlope: -0.0037804912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: -0.03625641 + inSlope: -0.0037804912 + outSlope: -0.0038932948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0.0365876 + inSlope: -0.0040552635 + outSlope: -0.0049461266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.03679369 + inSlope: -0.0049461266 + outSlope: -0.004792575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: -0.03711192 + inSlope: -0.0028449385 + outSlope: 0.0007206903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: -0.03708189 + inSlope: 0.0007206903 + outSlope: 0.0025929548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333333 + value: -0.03697385 + inSlope: 0.0025929548 + outSlope: 0.0029894772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: -0.036849286 + inSlope: 0.0029894772 + outSlope: 0.0026632638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: -0.03667763 + inSlope: 0.0007283006 + outSlope: -0.0018264164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833333 + value: -0.0367277 + inSlope: 0.0006247353 + outSlope: 0.00062473177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: -0.036701668 + inSlope: 0.00062473177 + outSlope: 0.00062467455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7083333 + value: -0.03664961 + inSlope: 0.0006247353 + outSlope: 0.0013121198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.875 + value: -0.036491256 + inSlope: 0.000588168 + outSlope: 0.0005882252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0363285 + inSlope: 0.00046011145 + outSlope: 0.00046011145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0.012894035 + outSlope: 0.012894035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0005372515 + inSlope: 0.012894035 + outSlope: 0.032610152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.0018960079 + inSlope: 0.032610152 + outSlope: 0.047179203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0038618078 + inSlope: 0.047179203 + outSlope: 0.056601133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0062201885 + inSlope: 0.056601133 + outSlope: 0.060876016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.008756689 + inSlope: 0.060876016 + outSlope: 0.060003623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.01125684 + inSlope: 0.060003623 + outSlope: 0.063279115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.013893469 + inSlope: 0.063279115 + outSlope: 0.073313504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.02009835 + inSlope: 0.075603604 + outSlope: 0.07003082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.0230163 + inSlope: 0.07003082 + outSlope: 0.057247896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.02540163 + inSlope: 0.057247896 + outSlope: 0.0507941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.029713457 + inSlope: 0.052689776 + outSlope: 0.060311623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.0425713 + inSlope: 0.05565957 + outSlope: 0.049838766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.04950696 + inSlope: 0.02867762 + outSlope: 0.012042515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.0511459 + inSlope: 0.018247455 + outSlope: 0.028838338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.06018385 + inSlope: 0.019793719 + outSlope: 0.016964165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.06373118 + inSlope: 0.0037209354 + outSlope: 0.0026103996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.06482409 + inSlope: 0.0032469302 + outSlope: 0.0032714019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7916667 + value: 0.06546658 + inSlope: -0.000022659257 + outSlope: -0.000022659257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.06545903 + inSlope: -0.000022659387 + outSlope: -0.000022659387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7916667 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0002706767 + inSlope: -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: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0.00783511 + outSlope: -0.00783511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.0003264629 + inSlope: -0.00783511 + outSlope: -0.019329146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.001131844 + inSlope: -0.019329146 + outSlope: -0.027037825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.00225842 + inSlope: -0.027037825 + outSlope: -0.030961048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0035484638 + inSlope: -0.030961048 + outSlope: -0.03109899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.004844255 + inSlope: -0.03109899 + outSlope: -0.027451469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.005988066 + inSlope: -0.027451469 + outSlope: -0.02035046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0.0068360018 + inSlope: -0.02035046 + outSlope: -0.016969262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.008335021 + inSlope: -0.019007197 + outSlope: -0.025315225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: -0.009389821 + inSlope: -0.025315225 + outSlope: -0.035893388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.01088538 + inSlope: -0.035893388 + outSlope: -0.04472784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.014486119 + inSlope: -0.04168989 + outSlope: -0.03594627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.020908501 + inSlope: -0.02635058 + outSlope: -0.024100272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.02445353 + inSlope: -0.019784879 + outSlope: -0.020071238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.02721261 + inSlope: -0.0135542415 + outSlope: -0.012594234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.03107644 + inSlope: -0.01610809 + outSlope: -0.018068863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.036848508 + inSlope: -0.011320048 + outSlope: -0.010989143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.039747227 + inSlope: 0.00040632405 + outSlope: 0.00040626447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7916667 + value: -0.039477047 + inSlope: 0.000023860885 + outSlope: 0.000023918104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.03946908 + inSlope: 0.000023918243 + outSlope: 0.000023918243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0.00033287948 + outSlope: 0.00033287948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.00001386998 + inSlope: 0.00033287948 + outSlope: 0.0010419698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00005728539 + inSlope: 0.0010419698 + outSlope: 0.0018160563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0001329544 + inSlope: 0.0018160563 + outSlope: 0.002655139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0002435852 + inSlope: 0.002655139 + outSlope: 0.0035592201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.000391886 + inSlope: 0.0035592201 + outSlope: 0.004528295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.00058056496 + inSlope: 0.004528295 + outSlope: 0.005562371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.0008123304 + inSlope: 0.005562371 + outSlope: 0.0066614277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00108989 + inSlope: 0.0066614277 + outSlope: 0.007276563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.006443635 + inSlope: 0.008853045 + outSlope: 0.008661884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.009638614 + inSlope: 0.0012343717 + outSlope: 0.0003781847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.00922672 + inSlope: -0.0009898605 + outSlope: -0.00097652245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.008762325 + inSlope: -0.000000014305087 + outSlope: -0.000000028610174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.008762307 + inSlope: -0.000000014305169 + outSlope: -0.000000014305169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0002706767 + inSlope: -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: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0134622 + inSlope: -0.00033768654 + outSlope: -0.00033768654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.01347627 + inSlope: -0.00033768654 + outSlope: -0.0011205482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.013522959 + inSlope: -0.0011205482 + outSlope: -0.0020652008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.01360901 + inSlope: -0.0020652008 + outSlope: -0.0031706425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.01374112 + inSlope: -0.0031706425 + outSlope: -0.0044378485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.01392603 + inSlope: -0.0044378485 + outSlope: -0.0058665555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.01417047 + inSlope: -0.0058665555 + outSlope: -0.007456314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0.01448115 + inSlope: -0.007456314 + outSlope: -0.0088483095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0148498295 + inSlope: -0.0088483095 + outSlope: -0.009276239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.022513138 + inSlope: -0.013137068 + outSlope: -0.012818196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.02729531 + inSlope: -0.0015523308 + outSlope: 0.00058279093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.02663708 + inSlope: 0.0015684187 + outSlope: 0.0014601488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: -0.026038459 + inSlope: -0.00006225574 + outSlope: -0.00006231296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.02610964 + inSlope: -0.00007713347 + outSlope: -0.00007713347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.x + path: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000270677 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.000270677 + inSlope: 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0132667 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0132667 + inSlope: 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.005750505 + inSlope: -0.00016173362 + outSlope: -0.00016173362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.00574055 + inSlope: 0.0008324715 + outSlope: 0.0013519186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00579688 + inSlope: 0.0013519186 + outSlope: 0.0033387311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.006454706 + inSlope: 0.007103516 + outSlope: 0.0086127175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.0116134 + inSlope: 0.01071457 + outSlope: 0.010529518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.01562028 + inSlope: 0.014832458 + outSlope: 0.015060496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.01791721 + inSlope: 0.004744553 + outSlope: -0.00015612572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 0.018182099 + inSlope: 0.0022127968 + outSlope: 0.0025807235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833333 + value: 0.02142827 + inSlope: 0.0029923553 + outSlope: 0.002491431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.021749228 + inSlope: 0.000014133507 + outSlope: 0.000014133507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833333 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0002706767 + inSlope: -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: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.008659227 + inSlope: -0.00014837265 + outSlope: -0.00014837265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.008661106 + inSlope: 0.0007987543 + outSlope: 0.0035924988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.008511419 + inSlope: 0.0035924988 + outSlope: 0.008096531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.007488868 + inSlope: 0.0071499785 + outSlope: 0.0026068948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.0075831446 + inSlope: -0.0037821184 + outSlope: -0.004814534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.010040849 + inSlope: -0.009985194 + outSlope: -0.010665618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: -0.01175305 + inSlope: -0.0038675915 + outSlope: 0.000033473905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: -0.009821661 + inSlope: 0.0032102617 + outSlope: 0.0032921298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833333 + value: -0.008145692 + inSlope: -0.0010340349 + outSlope: -0.0014944525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.008284672 + inSlope: 0.00023390382 + outSlope: 0.00023390382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0018227359 + inSlope: 0.000041434763 + outSlope: 0.000041434763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.0018227359 + inSlope: -0.00039494256 + outSlope: -0.007765903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.0021463148 + inSlope: -0.007765903 + outSlope: -0.019474866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.002957768 + inSlope: -0.019474866 + outSlope: -0.026769707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.004073173 + inSlope: -0.026769707 + outSlope: -0.029650489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: -0.005308609 + inSlope: -0.029650489 + outSlope: -0.028117117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.006480156 + inSlope: -0.028117117 + outSlope: -0.026601316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: -0.007588543 + inSlope: -0.026601316 + outSlope: -0.029577626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.008820946 + inSlope: -0.029577626 + outSlope: -0.027986795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.009987062 + inSlope: -0.027986795 + outSlope: -0.021548359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.010884909 + inSlope: -0.021548359 + outSlope: -0.01026287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.011312529 + inSlope: -0.01026287 + outSlope: 0.00040343322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.01021806 + inSlope: 0.0062347185 + outSlope: 0.0067028683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.0093432525 + inSlope: 0.007251012 + outSlope: 0.0073311925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.008734364 + inSlope: 0.0072821337 + outSlope: 0.007113239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.007836475 + inSlope: 0.007288099 + outSlope: 0.007393062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.005973904 + inSlope: 0.007390365 + outSlope: 0.0072843507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.005372756 + inSlope: 0.007143174 + outSlope: 0.0069669466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.0050824676 + inSlope: 0.0069669466 + outSlope: 0.0067554056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.004800992 + inSlope: 0.0067554056 + outSlope: 0.0065088146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.004529791 + inSlope: 0.0065088146 + outSlope: 0.0062270616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: -0.004270331 + inSlope: 0.0062270616 + outSlope: 0.005910111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.004024076 + inSlope: 0.005910111 + outSlope: 0.005558027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.0037924908 + inSlope: 0.005558027 + outSlope: 0.0052917823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.003348637 + inSlope: 0.0053607244 + outSlope: 0.005457298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.003121249 + inSlope: 0.005457298 + outSlope: 0.0055599115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: -0.0028895868 + inSlope: 0.0055599115 + outSlope: 0.0056684767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.0026534 + inSlope: 0.0056684767 + outSlope: 0.005783078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: -0.00216645 + inSlope: 0.0059037325 + outSlope: 0.006030324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -0.00112723 + inSlope: 0.006446292 + outSlope: 0.006596973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.0002827695 + inSlope: 0.0069163707 + outSlope: 0.007085086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.00001244297 + inSlope: 0.007085086 + outSlope: 0.0072598555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833333 + value: 0.0003149358 + inSlope: 0.0072598555 + outSlope: 0.0074405544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: 0.0016046999 + inSlope: 0.00806636 + outSlope: 0.0089404145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0.0027938988 + inSlope: 0.009937586 + outSlope: 0.00976501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.003918386 + inSlope: 0.008077618 + outSlope: 0.0065627163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833333 + value: 0.0043835198 + inSlope: 0.0046004993 + outSlope: 0.0023464563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.004472599 + inSlope: -0.000035612517 + outSlope: -0.000035605157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.004468148 + inSlope: -0.000035605564 + outSlope: -0.000035605564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0002706767 + inSlope: 0.0000035597384 + outSlope: 0.0000035597384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.00029199658 + inSlope: 0.00009065504 + outSlope: 0.00010245154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.0002962654 + inSlope: 0.00010245154 + outSlope: 0.00011495718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.0003010553 + inSlope: 0.00011495718 + outSlope: 0.00012817197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.00030639578 + inSlope: 0.00012817197 + outSlope: 0.0001420924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.0003123163 + inSlope: 0.0001420924 + outSlope: 0.0001567196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0003188463 + inSlope: 0.0001567196 + outSlope: 0.00017205403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.0003260152 + inSlope: 0.00017205403 + outSlope: 0.00018809938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.0003338527 + inSlope: 0.00018809938 + outSlope: 0.00020485211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.00034238817 + inSlope: 0.00020485211 + outSlope: 0.00022230973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.00035165108 + inSlope: 0.00022230973 + outSlope: 0.00024047476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.0003616709 + inSlope: 0.00024047476 + outSlope: 0.0002593493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.00045548027 + inSlope: 0.0003874535 + outSlope: 0.0004112814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.0005054179 + inSlope: 0.00035140815 + outSlope: 0.000121389734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.0005068506 + inSlope: -0.00008700443 + outSlope: -0.00027238575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.00045346568 + inSlope: -0.0005741007 + outSlope: -0.0006904397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.00024170641 + inSlope: -0.00092692394 + outSlope: -0.0009051727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.00016814019 + inSlope: -0.000860413 + outSlope: -0.00079264364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.0001351135 + inSlope: -0.00079264364 + outSlope: -0.00070185005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.000105869694 + inSlope: -0.00070185005 + outSlope: -0.00058804953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.00008136759 + inSlope: -0.00058804953 + outSlope: -0.00045123597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.000062566156 + inSlope: -0.00045123597 + outSlope: -0.00029140402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.0000504243 + inSlope: -0.00029140402 + outSlope: -0.0001118099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.000045765544 + inSlope: -0.0001118099 + outSlope: -0.0000038648545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.000045443474 + inSlope: -0.0000038648323 + outSlope: 0.000049753096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.000047516525 + inSlope: 0.000049753096 + outSlope: 0.000082131344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: 0.00005093865 + inSlope: 0.000082131344 + outSlope: 0.000111981564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.000055604556 + inSlope: 0.000111981564 + outSlope: 0.00013930695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.00006824676 + inSlope: 0.00016410623 + outSlope: 0.00018637875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.0001038255 + inSlope: 0.00023803889 + outSlope: 0.00025020892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.00013620159 + inSlope: 0.0002669658 + outSlope: 0.0002715548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.0001475164 + inSlope: 0.0002715548 + outSlope: 0.00027362278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833333 + value: 0.0001589173 + inSlope: 0.00027362278 + outSlope: 0.0002731552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: 0.0002032753 + inSlope: 0.0002566127 + outSlope: 0.00024604483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0.0002322891 + inSlope: 0.00021733406 + outSlope: 0.00019918538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.0002544983 + inSlope: 0.00015531793 + outSlope: 0.00012959291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833333 + value: 0.0002641207 + inSlope: 0.00010134497 + outSlope: 0.00007064612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.0002689609 + inSlope: -0.000018163437 + outSlope: -0.00001676502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00026711728 + inSlope: -0.000010715912 + outSlope: -0.000010715912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0015373799 + inSlope: -0.000037751197 + outSlope: -0.000037751197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.001541886 + inSlope: 0.0006630418 + outSlope: 0.0015930047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.0014755109 + inSlope: 0.0015930047 + outSlope: 0.0038489753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.0013151368 + inSlope: 0.0038489753 + outSlope: 0.004367972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.001133138 + inSlope: 0.004367972 + outSlope: 0.0029793615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: -0.001008998 + inSlope: 0.0029793615 + outSlope: -0.00031694397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.001022204 + inSlope: -0.00031694397 + outSlope: -0.005622963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: -0.0012564939 + inSlope: -0.005622963 + outSlope: -0.012601538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.001781559 + inSlope: -0.012601538 + outSlope: -0.018323224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.002545026 + inSlope: -0.018323224 + outSlope: -0.022341477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.0034759198 + inSlope: -0.022341477 + outSlope: -0.024656326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0045032687 + inSlope: -0.024656326 + outSlope: -0.025267927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.012106121 + inSlope: -0.02704516 + outSlope: -0.027121207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.015486899 + inSlope: -0.026933525 + outSlope: -0.026669795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.01769366 + inSlope: -0.026292436 + outSlope: -0.026223587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.02100729 + inSlope: -0.026719157 + outSlope: -0.026623446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.02726619 + inSlope: -0.022677697 + outSlope: -0.021195104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.028961059 + inSlope: -0.019481698 + outSlope: -0.017537108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.029691769 + inSlope: -0.017537108 + outSlope: -0.01536166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.03033184 + inSlope: -0.01536166 + outSlope: -0.012954916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.03087163 + inSlope: -0.012954916 + outSlope: -0.010317403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: -0.03130152 + inSlope: -0.010317403 + outSlope: -0.007600808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.03161822 + inSlope: -0.007600808 + outSlope: -0.0062207673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.03187742 + inSlope: -0.0062207673 + outSlope: -0.0054081553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.03230479 + inSlope: -0.0048487377 + outSlope: -0.00454341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.032494098 + inSlope: -0.00454341 + outSlope: -0.0044911364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: -0.032681227 + inSlope: -0.0044911364 + outSlope: -0.004692755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.03287676 + inSlope: -0.004692755 + outSlope: -0.0051474855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: -0.03333505 + inSlope: -0.0058514434 + outSlope: -0.006158626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -0.03433342 + inSlope: -0.0057911566 + outSlope: -0.0056071365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.03500622 + inSlope: -0.005147257 + outSlope: -0.004871512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: -0.0352092 + inSlope: -0.004871512 + outSlope: -0.0045645502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833333 + value: -0.03539939 + inSlope: -0.0045645502 + outSlope: -0.0042276112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: -0.03600682 + inSlope: -0.003030962 + outSlope: -0.002570853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: -0.036254045 + inSlope: -0.0012824226 + outSlope: -0.0012824797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: -0.03629734 + inSlope: 0.00012170768 + outSlope: 0.0020133553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833333 + value: -0.03610421 + inSlope: 0.0026217944 + outSlope: 0.0024832487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.03592432 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.03592432 + inSlope: -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: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0060693687 + inSlope: -0.00010808944 + outSlope: -0.00010808944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0060678762 + inSlope: 0.00065711944 + outSlope: 0.0034491522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.0062115905 + inSlope: 0.0034491522 + outSlope: 0.0093680145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0066019245 + inSlope: 0.0093680145 + outSlope: 0.014071167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.007188223 + inSlope: 0.014071167 + outSlope: 0.01752356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.008740265 + inSlope: 0.019725427 + outSlope: 0.020676546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: 0.01190302 + inSlope: 0.016025778 + outSlope: 0.011974302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.012679949 + inSlope: 0.0066719977 + outSlope: 0.002187111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.01365468 + inSlope: 0.0047805733 + outSlope: 0.005448465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.01390848 + inSlope: -0.0011457517 + outSlope: -0.0011700197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: 0.013341693 + inSlope: -0.000030155123 + outSlope: -0.000030155123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.01331656 + inSlope: -0.000030155295 + outSlope: -0.000030155295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: 0.0002706767 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0002706767 + inSlope: -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: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0041303537 + inSlope: -0.00006850004 + outSlope: -0.00006850004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0041294056 + inSlope: 0.00041640023 + outSlope: 0.0021725055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.004219927 + inSlope: 0.0021725055 + outSlope: 0.0060123364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.004470441 + inSlope: 0.0060123364 + outSlope: 0.009283277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.004857244 + inSlope: 0.009283277 + outSlope: 0.011963674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.005941295 + inSlope: 0.014053543 + outSlope: 0.015552878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: 0.008662213 + inSlope: 0.016507631 + outSlope: 0.015644759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.009905388 + inSlope: 0.014191416 + outSlope: 0.012478635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.016414968 + inSlope: 0.0056078103 + outSlope: 0.0043944083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.016095579 + inSlope: -0.002567048 + outSlope: -0.0026282603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: 0.014894756 + inSlope: -0.000014448137 + outSlope: -0.000014476748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.01488271 + inSlope: -0.00001444822 + outSlope: -0.00001444822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.x + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.z + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -89.98021 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -89.98021 + 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: wall_high_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0 + inSlope: -0.046142578 + outSlope: -0.04614258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.0038531232 + inSlope: -9.669598 + outSlope: -9.626484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.88472277 + inSlope: 3.4932077 + outSlope: 3.4932077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.42051214 + inSlope: 2.5250335 + outSlope: 2.5265086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.31360704 + inSlope: 37.36182 + outSlope: 37.36182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 2.8674762 + inSlope: 83.846664 + outSlope: 83.8477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 6.567426 + inSlope: 106.44226 + outSlope: 106.44234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 11.580948 + inSlope: 87.00625 + outSlope: 87.00625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 13.696507 + inSlope: 50.055576 + outSlope: 50.055542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 15.76035 + inSlope: 18.396254 + outSlope: 18.396254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 15.260112 + inSlope: -29.479258 + outSlope: -29.679401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 10.158212 + inSlope: -84.86367 + outSlope: -84.8066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -3.815241 + inSlope: -110.05531 + outSlope: -109.857285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -28.64343 + inSlope: -96.14484 + outSlope: -96.08662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -62.39105 + inSlope: -143.66685 + outSlope: -144.2396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -82.60694 + inSlope: -173.34924 + outSlope: -179.70134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -89.6164 + inSlope: 39.18827 + outSlope: 39.158493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -85.937164 + inSlope: 96.77838 + outSlope: 96.61011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -75.867836 + inSlope: -19.249695 + outSlope: -19.250248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -85.58464 + inSlope: -63.34224 + outSlope: -95.65585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -89.94404 + inSlope: 14.541518 + outSlope: 14.541476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -87.46966 + inSlope: 50.58755 + outSlope: 50.580414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -86.2284 + inSlope: -42.620815 + outSlope: -42.63072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -90 + inSlope: 3.7683034 + outSlope: 3.7683141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -88.36218 + inSlope: -0.91900724 + outSlope: -0.91900724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -89.86877 + inSlope: 7.9354324 + outSlope: 7.9354095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -89.68286 + inSlope: -8.395186 + outSlope: 4.8266335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -89.83567 + inSlope: 0.40919858 + outSlope: 0.41482544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -89.255585 + inSlope: 0.35092163 + outSlope: 0.35092163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0 + inSlope: 0.06536865 + outSlope: 0.06481934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0054393513 + inSlope: 17.540253 + outSlope: 17.564129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 2.9716516 + inSlope: 31.447725 + outSlope: 31.447725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 4.1819177 + inSlope: -0.2346439 + outSlope: -0.22319418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 4.071775 + inSlope: -84.312225 + outSlope: -84.312225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -2.7703602 + inSlope: -162.09636 + outSlope: -162.09624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -9.498637 + inSlope: -130.86722 + outSlope: -130.86732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -13.732597 + inSlope: -92.59994 + outSlope: -92.59994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -17.328522 + inSlope: -87.69619 + outSlope: -87.69613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -21.028708 + inSlope: -107.52053 + outSlope: -107.52053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -26.24091 + inSlope: -99.03923 + outSlope: -98.854866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -31.184792 + inSlope: -38.859474 + outSlope: -38.88629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -33.266605 + inSlope: -8.580231 + outSlope: -8.68849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -34.79233 + inSlope: -2.8959496 + outSlope: -3.004251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -36.01363 + inSlope: -9.106058 + outSlope: -6.4430237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -36.171936 + inSlope: 2892.931 + outSlope: 40.671425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 127.92669 + inSlope: 747.2913 + outSlope: 747.30457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -37.538982 + inSlope: 9.076612 + outSlope: 4.233719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -35.783092 + inSlope: 2.8615265 + outSlope: 2.8102348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -35.336823 + inSlope: -3238.757 + outSlope: 1.7237566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -35.191082 + inSlope: -12893.084 + outSlope: -12893.047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -35.32597 + inSlope: 1.5169344 + outSlope: 0.7492129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -35.231747 + inSlope: 1.7441351 + outSlope: 0.45030126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -35.265663 + inSlope: 0.007965073 + outSlope: 0.007965095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -35.18641 + inSlope: 0.16726701 + outSlope: 0.16726701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 143.3613 + inSlope: 27.94595 + outSlope: 27.94587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -34.382393 + inSlope: -31.629303 + outSlope: 989.81665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 141.83934 + inSlope: 3.569628 + outSlope: 2.5415497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 143.75723 + inSlope: 0.3000183 + outSlope: 0.3000183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0 + inSlope: -0.08074951 + outSlope: -0.0802002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.0067268163 + inSlope: -20.018356 + outSlope: -20.039692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -2.986861 + inSlope: -30.882608 + outSlope: -30.882608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -5.9051247 + inSlope: -38.888165 + outSlope: -38.889137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -7.4890494 + inSlope: 19.798843 + outSlope: 19.798843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -4.407223 + inSlope: 72.56008 + outSlope: 72.56003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -1.3201921 + inSlope: 65.70383 + outSlope: 65.70387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 1.2478061 + inSlope: 21.95814 + outSlope: 21.95814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.68934274 + inSlope: -17.406485 + outSlope: -17.406473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.15740305 + inSlope: -14.880352 + outSlope: -14.880352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.43239555 + inSlope: -18.266438 + outSlope: -17.877796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -1.7790003 + inSlope: 8.303228 + outSlope: 8.692223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.44798803 + inSlope: 1.4273643 + outSlope: 1.7859473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.87200797 + inSlope: 5.7670727 + outSlope: 5.856328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.22409491 + inSlope: 5.7451105 + outSlope: 3.0257387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0.37886652 + inSlope: -2894.2568 + outSlope: -41.98825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -164.52275 + inSlope: -747.46655 + outSlope: -747.4666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.97412056 + inSlope: -8.407783 + outSlope: -3.5626767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -0.07169816 + inSlope: 0.30941355 + outSlope: 0.36249688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.017854858 + inSlope: -3238.0151 + outSlope: 1.5115707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0 + inSlope: 12894.824 + outSlope: 12894.787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.1275558 + inSlope: -1.7902155 + outSlope: -1.0249143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.024816422 + inSlope: -2.0225027 + outSlope: -0.7292881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.08101656 + inSlope: -0.16836484 + outSlope: -0.16836484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -178.62871 + inSlope: -27.928371 + outSlope: -27.928291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.8839489 + inSlope: 31.822102 + outSlope: -989.8119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -177.18219 + inSlope: -6.116429 + outSlope: -5.089142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -179.45476 + inSlope: -0.34098816 + outSlope: -0.34098816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0 + inSlope: 0.045043945 + outSlope: 0.045043945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.0037404168 + inSlope: 5.0041275 + outSlope: 5.004128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.34582412 + inSlope: 11.1523 + outSlope: 11.152298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 1.1836095 + inSlope: 22.074793 + outSlope: 23.6942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 4.6037245 + inSlope: 40.039417 + outSlope: 38.35472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 6.2692156 + inSlope: 55.762974 + outSlope: 55.762974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 8.876355 + inSlope: 54.106785 + outSlope: 46.795967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 13.691567 + inSlope: 10.458412 + outSlope: 14.3709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 16.650118 + inSlope: 52.731533 + outSlope: 52.73157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 21.899326 + inSlope: 54.073483 + outSlope: 55.81464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 24.133984 + inSlope: -5.748868 + outSlope: -10.130768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 11.171661 + inSlope: -134.91174 + outSlope: -135.70068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -11.480707 + inSlope: -131.04259 + outSlope: -133.116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -16.940306 + inSlope: -66.41566 + outSlope: -67.38203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -14.244874 + inSlope: 66.44596 + outSlope: 54.73701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 2.1508877 + inSlope: 37.31166 + outSlope: 54.315666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 4.479025 + inSlope: 50.692608 + outSlope: 50.692753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 6.6583824 + inSlope: -28.93005 + outSlope: -28.93005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 2.5406609 + inSlope: -99.56561 + outSlope: -99.56643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -1.6137558 + inSlope: -12.052966 + outSlope: -12.053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 1.6141654 + inSlope: 35.633152 + outSlope: 35.537487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 1.0768013 + inSlope: -6.972058 + outSlope: -7.3657317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.3895295 + inSlope: -7.905061 + outSlope: -7.392461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -0.69425017 + inSlope: 6.4845347 + outSlope: 6.4845533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.16414589 + inSlope: -5.991361 + outSlope: -6.024056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -2.029044 + inSlope: -13.86286 + outSlope: -13.860197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -1.400177 + inSlope: 20.215576 + outSlope: 20.21151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.15913847 + inSlope: 6.8239236 + outSlope: 6.8232303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.9898546 + inSlope: 1.8984994 + outSlope: 1.8847337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.3549421 + inSlope: 1.8057357 + outSlope: 1.6858435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.3970242 + inSlope: -0.45441943 + outSlope: -0.44308937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.40564075 + inSlope: -0.029623333 + outSlope: -0.029623417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.013604402 + inSlope: 0.99010086 + outSlope: 0.98263943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.317788 + inSlope: -1.8066381 + outSlope: -1.7894697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.023683023 + inSlope: 1.4374111 + outSlope: 1.4348776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: -0.023653725 + inSlope: 0.00000986065 + outSlope: 0.000015612692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.023574788 + inSlope: 0.00036596507 + outSlope: 0.00036596507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0 + inSlope: 0.05493164 + outSlope: 0.05493164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.004559844 + inSlope: 49.066223 + outSlope: 49.066227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 4.095774 + inSlope: 211.35536 + outSlope: 211.35532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 17.620964 + inSlope: 323.96317 + outSlope: 322.55508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 58.137768 + inSlope: 314.79755 + outSlope: 316.0638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 71.157974 + inSlope: 292.82526 + outSlope: 292.82526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 82.688416 + inSlope: 278.9583 + outSlope: 279.8855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 118.2358 + inSlope: 275.72772 + outSlope: 276.0613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 137.73404 + inSlope: 185.11295 + outSlope: 185.11308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 151.46783 + inSlope: 169.83989 + outSlope: 168.80266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 158.58853 + inSlope: 191.61685 + outSlope: 190.98267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -176.12967 + inSlope: 185.97144 + outSlope: 184.4984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -145.24554 + inSlope: 192.9392 + outSlope: 190.1499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -137.1726 + inSlope: 161.62286 + outSlope: 161.4827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -128.81932 + inSlope: 78.64516 + outSlope: 84.59747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -109.13957 + inSlope: 92.18335 + outSlope: 85.96566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -105.574524 + inSlope: 88.28816 + outSlope: 88.288414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -101.90819 + inSlope: 63.41754 + outSlope: 63.41754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -100.86224 + inSlope: 19.634785 + outSlope: 19.634727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -99.96862 + inSlope: 2.7268014 + outSlope: 2.7268093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -100.100204 + inSlope: 15.492934 + outSlope: 15.698906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -97.43567 + inSlope: 31.835068 + outSlope: 31.73556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -90.81157 + inSlope: 31.584827 + outSlope: 31.719666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -89.49179 + inSlope: 26.522043 + outSlope: 26.52212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -88.58805 + inSlope: 14.862319 + outSlope: 14.848016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -87.98743 + inSlope: 5.596982 + outSlope: 5.604492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -87.61334 + inSlope: 0.89941406 + outSlope: 1.0019512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -87.596275 + inSlope: -0.07690415 + outSlope: -0.10217295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -87.63178 + inSlope: -1.1090709 + outSlope: -1.1318659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -87.43719 + inSlope: 3.4881575 + outSlope: 3.552992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -87.250046 + inSlope: 2.061043 + outSlope: 2.0632284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -87.294945 + inSlope: -0.7976059 + outSlope: -0.7976082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -87.367836 + inSlope: -2.9646635 + outSlope: -2.9663029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -87.58566 + inSlope: -3.2266784 + outSlope: -3.2351074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -87.59825 + inSlope: -0.32006836 + outSlope: -0.33120894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: -87.84658 + inSlope: -0.15265217 + outSlope: -0.15261841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -87.92286 + inSlope: -0.15252686 + outSlope: -0.15252686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0 + inSlope: 0.028564453 + outSlope: 0.028564453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.0024075948 + inSlope: 28.707512 + outSlope: 28.707514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 2.403346 + inSlope: 15.173562 + outSlope: 15.173559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 1.3222398 + inSlope: -23.516567 + outSlope: -21.59337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -2.0333815 + inSlope: -23.799063 + outSlope: -26.932234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -3.0144393 + inSlope: 37.224213 + outSlope: 37.224213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 1.0014465 + inSlope: 104.357185 + outSlope: 107.53498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 15.701274 + inSlope: 119.97851 + outSlope: 119.868645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 23.54683 + inSlope: 77.85677 + outSlope: 77.85683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 30.146149 + inSlope: 90.45211 + outSlope: 89.035355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 33.985382 + inSlope: 104.258 + outSlope: 103.57617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 45.289825 + inSlope: 52.30591 + outSlope: 49.074017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 49.438194 + inSlope: -25.334341 + outSlope: -15.626374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 48.503708 + inSlope: 55.40944 + outSlope: 54.13189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 66.02471 + inSlope: 275.742 + outSlope: 272.41635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 137.91885 + inSlope: 296.03796 + outSlope: 298.11783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 150.42339 + inSlope: 301.79056 + outSlope: 301.78702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 163.085 + inSlope: 298.73282 + outSlope: 298.73282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 175.23705 + inSlope: 289.5087 + outSlope: 289.50787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -172.6799 + inSlope: 174.63174 + outSlope: 174.63225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -170.14871 + inSlope: 47.75981 + outSlope: 47.828407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -167.2757 + inSlope: 34.3394 + outSlope: 34.245716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -160.17432 + inSlope: 33.540173 + outSlope: 33.66644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -158.76945 + inSlope: 35.658257 + outSlope: 35.65726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -157.19418 + inSlope: 18.529558 + outSlope: 18.518545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -157.2715 + inSlope: -4.012205 + outSlope: -4.0217285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -158.7832 + inSlope: -20.833374 + outSlope: -20.839926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -159.78284 + inSlope: -30.619936 + outSlope: -30.620573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -163.23485 + inSlope: -50.033436 + outSlope: -50.02732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -176.26917 + inSlope: -95.1888 + outSlope: -95.26172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -179.99402 + inSlope: -46.80633 + outSlope: -46.80167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 179.65622 + inSlope: -4.088005 + outSlope: -4.0880165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 179.40451 + inSlope: 20.092915 + outSlope: 20.093956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -178.83595 + inSlope: 21.95174 + outSlope: 21.95105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 179.96294 + inSlope: -3.9796143 + outSlope: -3.9808102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: 179.9636 + inSlope: -0.001387747 + outSlope: -0.0012817383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 179.96295 + inSlope: -0.0010986328 + outSlope: -0.0010986328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0.13586426 + outSlope: -0.13586426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.35287488 + inSlope: 12.276853 + outSlope: 12.550776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 1.6095015 + inSlope: 10.816978 + outSlope: 10.263688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 3.1821015 + inSlope: 39.515182 + outSlope: 39.515182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 10.728824 + inSlope: 58.191216 + outSlope: 57.463215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 24.500433 + inSlope: 47.670155 + outSlope: 49.778687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 26.542583 + inSlope: -10.632304 + outSlope: -10.632289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 23.666752 + inSlope: -57.72791 + outSlope: -57.801422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 18.653084 + inSlope: -97.508354 + outSlope: -97.508286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 8.689688 + inSlope: -118.64261 + outSlope: -118.8704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 3.7438097 + inSlope: -117.66403 + outSlope: -117.6637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -1.1362275 + inSlope: 41.45442 + outSlope: 41.454536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 7.2316637 + inSlope: 184.49763 + outSlope: 184.69067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 28.148485 + inSlope: 165.10616 + outSlope: 164.52686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 55.07351 + inSlope: 141.98967 + outSlope: 138.23183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 78.48318 + inSlope: -64.254074 + outSlope: -30.232986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 74.93755 + inSlope: -36.07002 + outSlope: -38.443176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 71.92989 + inSlope: -41.812317 + outSlope: -41.812317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 66.06792 + inSlope: -50.314087 + outSlope: -49.768112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 64.15518 + inSlope: -35.211216 + outSlope: -35.211716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 62.034515 + inSlope: -27.141161 + outSlope: -27.501513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 59.52474 + inSlope: -2.5736148 + outSlope: -2.6418283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 60.877514 + inSlope: 15.218761 + outSlope: 15.218761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 67.07103 + inSlope: 46.45153 + outSlope: 46.45192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 82.80263 + inSlope: 92.597755 + outSlope: 114.510056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 87.857704 + inSlope: -52.939045 + outSlope: -52.94137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: 87.665436 + inSlope: -4.414298 + outSlope: -4.4324384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 87.61221 + inSlope: 34.03513 + outSlope: 34.03448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 88.47235 + inSlope: -16.064178 + outSlope: -16.061478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 89.95576 + inSlope: 0.08390816 + outSlope: 0.039886475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 89.960434 + inSlope: -3.5465698 + outSlope: -3.5465698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.8903781 + inSlope: 35.23029 + outSlope: 35.136566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 5.009804 + inSlope: 50.442345 + outSlope: 50.542053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 10.98654 + inSlope: 31.405197 + outSlope: 31.405197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 13.742771 + inSlope: 27.49759 + outSlope: 29.011547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 22.435764 + inSlope: 48.27717 + outSlope: 45.07777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 24.35782 + inSlope: 20.439945 + outSlope: 20.439917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 24.098515 + inSlope: -16.307274 + outSlope: -15.927021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 19.958727 + inSlope: -67.363304 + outSlope: -67.36381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 14.494964 + inSlope: -66.12719 + outSlope: -65.91027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 11.734041 + inSlope: -67.31563 + outSlope: -67.31544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 8.899971 + inSlope: -9.648725 + outSlope: -9.648752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 10.751733 + inSlope: 28.995625 + outSlope: 25.092201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 11.38664 + inSlope: -23.39898 + outSlope: -26.694809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.91414714 + inSlope: -180.53798 + outSlope: -196.12604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -68.683014 + inSlope: -603.71643 + outSlope: -730.6388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -112.64079 + inSlope: -259.83643 + outSlope: -250.59668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -138.7986 + inSlope: -148.84387 + outSlope: -148.84387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -154.1552 + inSlope: -58.458252 + outSlope: -62.716614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -155.7624 + inSlope: 17.01784 + outSlope: 16.850273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -150.41676 + inSlope: 57.80234 + outSlope: 56.34418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -147.82248 + inSlope: -28.478197 + outSlope: -28.436802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -157.5698 + inSlope: -13.132402 + outSlope: -13.132402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -152.08488 + inSlope: 11.723076 + outSlope: 11.7230625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -153.20784 + inSlope: -2406.7517 + outSlope: -41.169655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 28.615278 + inSlope: -38.31259 + outSlope: -47.3882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: 28.125444 + inSlope: -14.691028 + outSlope: -13.639574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 26.354137 + inSlope: 13.023274 + outSlope: 4.496833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: -154.69276 + inSlope: 4.542289 + outSlope: 3.7059667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 26.093857 + inSlope: -0.06784064 + outSlope: -0.06774902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 26.128325 + inSlope: 712.1018 + outSlope: 712.1018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 1.6250596 + inSlope: 63.885532 + outSlope: 63.835007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 9.04623 + inSlope: 89.83698 + outSlope: 89.87924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 19.963726 + inSlope: 71.40756 + outSlope: 71.40756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 27.649027 + inSlope: 64.42543 + outSlope: 65.30133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 45.041313 + inSlope: 80.00289 + outSlope: 77.42787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 48.301125 + inSlope: 25.536097 + outSlope: 25.53606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 47.12896 + inSlope: -43.90739 + outSlope: -43.65501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 42.73513 + inSlope: -13.833713 + outSlope: -13.833703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 44.180035 + inSlope: 24.395817 + outSlope: 23.487968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 45.233063 + inSlope: 28.663357 + outSlope: 28.663275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 46.49456 + inSlope: -25.382215 + outSlope: -25.382288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 43.132263 + inSlope: -89.8276 + outSlope: -89.23535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 29.860142 + inSlope: -120.11801 + outSlope: -122.27134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 4.122848 + inSlope: -258.6715 + outSlope: -273.79373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -77.734924 + inSlope: -658.36084 + outSlope: -785.2985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -125.90371 + inSlope: -302.58118 + outSlope: -293.35712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -156.9074 + inSlope: -187.5326 + outSlope: -187.5326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -177.11533 + inSlope: -92.100586 + outSlope: -96.27548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -179.89804 + inSlope: 2.3126242 + outSlope: 2.131896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -174.6382 + inSlope: 56.800938 + outSlope: 55.34113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -172.89044 + inSlope: -38.88444 + outSlope: -38.843937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 174.8175 + inSlope: -18.639412 + outSlope: -18.639412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -179.79437 + inSlope: 10.081278 + outSlope: 10.081266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 179.6758 + inSlope: -2396.643 + outSlope: -31.03476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 2.5352116 + inSlope: -32.696785 + outSlope: -41.771725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: 2.0448174 + inSlope: -14.709739 + outSlope: -13.65771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.27005172 + inSlope: 13.005873 + outSlope: 4.4763107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 179.2215 + inSlope: 4.530753 + outSlope: 3.6919591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0 + inSlope: 712.21436 + outSlope: 712.21436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0.16918945 + outSlope: -0.16918945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.3250837 + inSlope: 15.809074 + outSlope: 16.669727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 1.9866699 + inSlope: 6.5937743 + outSlope: 4.852149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 1.390134 + inSlope: -28.966122 + outSlope: -28.099081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -1.5367461 + inSlope: -37.709908 + outSlope: -37.967213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -6.496949 + inSlope: -41.80735 + outSlope: -41.636997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -8.233697 + inSlope: 54.141216 + outSlope: 54.141296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -2.0240898 + inSlope: 185.29532 + outSlope: 185.29504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 7.23711 + inSlope: 168.74855 + outSlope: 168.74855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 12.485803 + inSlope: 129.43584 + outSlope: 128.75452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 44.339058 + inSlope: 6.0427165 + outSlope: 40.167587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 45.553356 + inSlope: 6.177875 + outSlope: 6.1778927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 45.33397 + inSlope: 8.204597 + outSlope: 8.204597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 46.88967 + inSlope: 36.51914 + outSlope: 33.085144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 48.931896 + inSlope: -18.984283 + outSlope: -43.356586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 5.4375997 + inSlope: -107.92946 + outSlope: -110.22542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.83359075 + inSlope: -22.065186 + outSlope: -22.065186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 3.6023726 + inSlope: 66.28048 + outSlope: 66.187775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 25.69871 + inSlope: 57.491203 + outSlope: 57.537262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 28.458092 + inSlope: 3.8299453 + outSlope: 3.7209039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 20.57111 + inSlope: -46.233124 + outSlope: -45.85371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 5.228662 + inSlope: -111.35254 + outSlope: -111.27547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: 0.27260923 + inSlope: -63.519222 + outSlope: -63.51959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0.06962355 + inSlope: -8.693681 + outSlope: -8.693631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.4385485 + inSlope: -1.8504074 + outSlope: -1.8504074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: -0.20324807 + inSlope: 5.5569463 + outSlope: 5.5528803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.49256855 + inSlope: 5.460215 + outSlope: 5.4712424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0.7088517 + inSlope: -23.325497 + outSlope: -23.325363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -1.4504567 + inSlope: -34.692413 + outSlope: -34.689648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5416667 + value: -1.6756637 + inSlope: 28.651354 + outSlope: 28.658108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -0.0044293776 + inSlope: 13.522259 + outSlope: 13.605638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.37266624 + inSlope: 9.004983 + outSlope: 9.004983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 0.24717507 + inSlope: 0.82514805 + outSlope: 0.8251457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.22166066 + inSlope: -0.30198774 + outSlope: -0.3019886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9166667 + value: 0.19670129 + inSlope: -15.274864 + outSlope: -15.28197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9583335 + value: -1.0625224 + inSlope: -2.8218672 + outSlope: -2.8218834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.043810543 + inSlope: 14.93945 + outSlope: 14.929382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.14863703 + inSlope: 0.92947125 + outSlope: 0.92947125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 1.8792697 + inSlope: 79.37153 + outSlope: 79.21042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 11.420248 + inSlope: 115.80392 + outSlope: 115.79173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 24.739248 + inSlope: 55.35814 + outSlope: 55.86032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 26.595356 + inSlope: 17.763655 + outSlope: 17.13675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 28.317236 + inSlope: 6.062851 + outSlope: 7.4318357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 28.57511 + inSlope: 16.2956 + outSlope: 16.295624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 30.043467 + inSlope: 52.841404 + outSlope: 52.841328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 32.928062 + inSlope: 20.771292 + outSlope: 20.771292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 31.20118 + inSlope: -26.912645 + outSlope: -3.0586727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 49.949345 + inSlope: 176.6457 + outSlope: 171.95631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 57.336803 + inSlope: 183.12224 + outSlope: 183.12276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 64.935326 + inSlope: 19.378254 + outSlope: 19.378254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 58.9255 + inSlope: -177.83311 + outSlope: -180.76007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 31.684637 + inSlope: -218.9518 + outSlope: -196.09193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -48.134438 + inSlope: -95.63073 + outSlope: -96.37161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -52.140686 + inSlope: -48.520065 + outSlope: -48.520065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -52.19608 + inSlope: -1.3125929 + outSlope: -1.4633439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -52.814 + inSlope: -3.9391117 + outSlope: -3.7853956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -54.861046 + inSlope: -11.251982 + outSlope: -11.311301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -61.574017 + inSlope: -16.882275 + outSlope: -18.398207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: -65.40792 + inSlope: -6.1037865 + outSlope: -10.9643345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: -65.781006 + inSlope: -5.1679587 + outSlope: -5.169087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -66.08006 + inSlope: -6.552271 + outSlope: -6.5533323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -66.343216 + inSlope: -2.694941 + outSlope: -2.694941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: -66.33714 + inSlope: -0.25488234 + outSlope: -0.32080078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -66.41008 + inSlope: -0.8232422 + outSlope: -0.75805956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: -66.44788 + inSlope: -0.34826794 + outSlope: -0.34826595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -66.43426 + inSlope: 0.8382552 + outSlope: 0.83239746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5416667 + value: -66.30034 + inSlope: 0.5888672 + outSlope: 0.28784126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -66.309006 + inSlope: -10.628154 + outSlope: -10.520518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -68.00312 + inSlope: -14.988662 + outSlope: -14.988662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: -69.079704 + inSlope: -6.98841 + outSlope: -6.98839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -69.07799 + inSlope: 0.004394523 + outSlope: 0.0043945354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9166667 + value: -69.079056 + inSlope: 2.8048122 + outSlope: 2.7663522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9583335 + value: -68.83584 + inSlope: 6.437976 + outSlope: 6.438013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -68.55119 + inSlope: 5.693137 + outSlope: 5.7180176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -68.19067 + inSlope: 0.36767578 + outSlope: 0.36767578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 2.3984935 + inSlope: 89.2135 + outSlope: 89.07128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 12.575928 + inSlope: 123.982346 + outSlope: 123.96057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 28.40871 + inSlope: 132.14493 + outSlope: 132.4208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 39.71857 + inSlope: 134.78122 + outSlope: 134.66336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 56.538208 + inSlope: 134.41882 + outSlope: 134.41547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 62.14355 + inSlope: 148.10469 + outSlope: 148.1038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 68.916245 + inSlope: 172.5822 + outSlope: 172.58195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 76.6261 + inSlope: 217.38637 + outSlope: 217.38637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 86.67847 + inSlope: 241.40906 + outSlope: 243.17111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 171.14674 + inSlope: 370.39423 + outSlope: 370.15396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -173.20615 + inSlope: 380.3855 + outSlope: 380.3855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -157.35872 + inSlope: 156.19937 + outSlope: 156.19937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -160.21758 + inSlope: -113.2296 + outSlope: -116.38989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 179.2572 + inSlope: -165.06445 + outSlope: -142.07686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 134.38759 + inSlope: 7.6673574 + outSlope: -7.5245433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 134.18803 + inSlope: -1.5677506 + outSlope: -1.5677506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 134.08327 + inSlope: -2.4708276 + outSlope: -2.5632465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 133.35013 + inSlope: -4.563993 + outSlope: -4.4182634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 130.08905 + inSlope: -18.010553 + outSlope: -18.059982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 117.36375 + inSlope: -45.73855 + outSlope: -46.701252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 103.63386 + inSlope: -89.16431 + outSlope: -89.93227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: 99.64561 + inSlope: -142.19193 + outSlope: -142.19275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 91.75454 + inSlope: -189.14299 + outSlope: -189.1441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 83.86768 + inSlope: -119.07674 + outSlope: -119.07674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 81.820114 + inSlope: -49.226345 + outSlope: -49.22278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 75.6562 + inSlope: -49.421814 + outSlope: -49.42603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 73.601006 + inSlope: -29.781303 + outSlope: -29.781132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 73.17402 + inSlope: 0.66302365 + outSlope: 0.6567993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5416667 + value: 75.92561 + inSlope: 43.281372 + outSlope: 43.28495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 78.093796 + inSlope: 65.477295 + outSlope: 65.45715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 84.974815 + inSlope: 92.106445 + outSlope: 92.106445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 92.44865 + inSlope: 36.397465 + outSlope: 36.39736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 91.75444 + inSlope: -8.265548 + outSlope: -8.265572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9166667 + value: 91.070946 + inSlope: -20.465076 + outSlope: -20.458153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9583335 + value: 89.706635 + inSlope: -7.5827494 + outSlope: -7.5827928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 90.44459 + inSlope: 6.771449 + outSlope: 6.793762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 89.89069 + inSlope: 4.029602 + outSlope: 4.029602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0.08239746 + outSlope: -0.08239746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0009506813 + inSlope: 4.389754 + outSlope: 4.393767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.36109945 + inSlope: 33.907093 + outSlope: 33.907085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 2.8335428 + inSlope: 59.471115 + outSlope: 57.9335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 26.978355 + inSlope: 27.286495 + outSlope: 36.81352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 28.463078 + inSlope: 69.52997 + outSlope: 67.943726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 36.37327 + inSlope: 72.26012 + outSlope: 75.73916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 39.267075 + inSlope: 0.83276325 + outSlope: 0.83276325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 36.132465 + inSlope: -238.68584 + outSlope: -238.68617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 19.574642 + inSlope: -410.17688 + outSlope: -410.1774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 3.2359133 + inSlope: -405.71704 + outSlope: -407.1095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -66.36447 + inSlope: -248.38327 + outSlope: -384.83826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -79.959206 + inSlope: -100.86118 + outSlope: -100.86089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -85.14953 + inSlope: -154.09834 + outSlope: -154.09879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -83.56459 + inSlope: 236.21288 + outSlope: 238.10907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -14.695896 + inSlope: 204.10187 + outSlope: 206.97862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 28.301386 + inSlope: 45.703926 + outSlope: 76.89073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 32.903603 + inSlope: 28.7773 + outSlope: 28.7773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 35.578236 + inSlope: -12.229563 + outSlope: -48.125153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -5.1873817 + inSlope: -173.08308 + outSlope: -169.36794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -12.30863 + inSlope: -116.74778 + outSlope: -117.291046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -16.163708 + inSlope: -35.257496 + outSlope: -35.94566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: -28.831013 + inSlope: -34.43813 + outSlope: -35.516396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -30.666277 + inSlope: 5.570676 + outSlope: 7.825878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -25.760424 + inSlope: 48.611835 + outSlope: 46.524334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: -21.55035 + inSlope: 58.081722 + outSlope: 57.195866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -19.095348 + inSlope: 102.40148 + outSlope: 102.400894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -13.016664 + inSlope: 159.4015 + outSlope: 159.4015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: -6.0237746 + inSlope: 168.37186 + outSlope: 168.37172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: 1.0063691 + inSlope: 111.407936 + outSlope: 111.33995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 3.0440366 + inSlope: -4.543379 + outSlope: -4.489374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583335 + value: 2.0755816 + inSlope: -27.573967 + outSlope: -27.558304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5416667 + value: -0.97707343 + inSlope: -4.292646 + outSlope: -3.9380589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 0.036978647 + inSlope: 48.481 + outSlope: 48.481277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: 3.117631 + inSlope: 49.212276 + outSlope: 49.200417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 3.9449122 + inSlope: -28.512 + outSlope: -28.512634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.5948774 + inSlope: -7.984786 + outSlope: -7.9847693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.875 + value: 1.511826 + inSlope: 8.593504 + outSlope: 8.593128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.26026183 + inSlope: -3.4466014 + outSlope: -3.4466014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.19426802 + inSlope: -0.52864337 + outSlope: -0.52864337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0.18182373 + outSlope: -0.18182373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0 + inSlope: 2.6746216 + outSlope: 2.6674807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.21741816 + inSlope: 0.37055042 + outSlope: 0.37055036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.11070717 + inSlope: 0.42483556 + outSlope: 8.981993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 11.964463 + inSlope: 60.742905 + outSlope: 54.048244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 14.2789135 + inSlope: 90.91745 + outSlope: 92.85214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 26.009716 + inSlope: 168.6969 + outSlope: 165.31697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 33.1916 + inSlope: 253.84805 + outSlope: 253.84805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 46.061306 + inSlope: 347.87012 + outSlope: 347.8695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 60.600243 + inSlope: 224.06033 + outSlope: 224.06221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 68.19727 + inSlope: 133.53162 + outSlope: 102.26224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 69.401276 + inSlope: -1324.3857 + outSlope: -457.8282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 27.353626 + inSlope: -1497.8304 + outSlope: -1497.8306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.6008801 + inSlope: -31.32935 + outSlope: -31.326143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 133.62299 + inSlope: 573.99225 + outSlope: 230.2879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 174.31528 + inSlope: 122.82277 + outSlope: 120.47461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -143.92786 + inSlope: 264.23218 + outSlope: 255.58582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -122.29412 + inSlope: 248.57214 + outSlope: 248.57214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -102.437164 + inSlope: 242.71753 + outSlope: 224.23596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -39.2142 + inSlope: 75.38571 + outSlope: 89.78862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -35.60309 + inSlope: 87.52132 + outSlope: 86.849205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -27.474756 + inSlope: 99.42945 + outSlope: 99.58747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 6.555315 + inSlope: 110.69028 + outSlope: 109.03958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 16.636957 + inSlope: 140.23657 + outSlope: 139.80043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 40.194477 + inSlope: 129.20065 + outSlope: 130.98851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: 50.847202 + inSlope: 121.15521 + outSlope: 122.00117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 55.86212 + inSlope: 116.56099 + outSlope: 116.560326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 60.43845 + inSlope: 76.431465 + outSlope: 76.431465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 62.628807 + inSlope: 49.162075 + outSlope: 49.16016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: 64.62188 + inSlope: 28.215744 + outSlope: 28.27024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 64.76598 + inSlope: -7.0858936 + outSlope: -7.118225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583335 + value: 63.255333 + inSlope: -41.03888 + outSlope: -41.053474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5416667 + value: 58.51532 + inSlope: -46.528244 + outSlope: -46.564365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 56.855415 + inSlope: -29.804203 + outSlope: -29.804375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: 56.064377 + inSlope: -12.2530985 + outSlope: -12.267334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 55.51034 + inSlope: -9.541168 + outSlope: -9.541471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 54.64908 + inSlope: -5.7354016 + outSlope: -5.734885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.875 + value: 54.395508 + inSlope: -3.825454 + outSlope: -3.8254395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 54.20326 + inSlope: -1.6163635 + outSlope: -1.6163635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 54.00023 + inSlope: -1.6245117 + outSlope: -1.6245117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0.04119873 + outSlope: -0.04119873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0 + inSlope: 12.184387 + outSlope: 12.18274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 1.0140799 + inSlope: 72.228806 + outSlope: 72.22879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 6.0182295 + inSlope: 120.016075 + outSlope: 120.12994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 64.97948 + inSlope: 148.08423 + outSlope: 144.23064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 71.033905 + inSlope: 159.06218 + outSlope: 160.65862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 86.58314 + inSlope: 211.9579 + outSlope: 208.78792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 95.55056 + inSlope: 298.59122 + outSlope: 298.59122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 110.41143 + inSlope: 403.02283 + outSlope: 403.0234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 127.682755 + inSlope: 295.7819 + outSlope: 295.78146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 138.42174 + inSlope: 221.615 + outSlope: 205.19849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -178.8365 + inSlope: 1525.824 + outSlope: 665.905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -128.05893 + inSlope: 1681.0812 + outSlope: 1681.0808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -93.3619 + inSlope: 174.29446 + outSlope: 174.29387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 137.62144 + inSlope: -447.90314 + outSlope: -103.4738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 142.5602 + inSlope: 122.520645 + outSlope: 120.164246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -173.751 + inSlope: 278.15918 + outSlope: 269.87683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -151.04071 + inSlope: 250.28271 + outSlope: 250.28271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -131.6398 + inSlope: 239.21675 + outSlope: 220.7345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -66.972404 + inSlope: 89.68689 + outSlope: 101.47613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -62.84598 + inSlope: 63.23526 + outSlope: 62.13228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -60.88256 + inSlope: 13.891127 + outSlope: 11.223361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: -59.714195 + inSlope: -14.578312 + outSlope: -11.191202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -62.74415 + inSlope: -77.84733 + outSlope: -77.39244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -77.42596 + inSlope: -74.88096 + outSlope: -77.0283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: -83.54351 + inSlope: -65.50586 + outSlope: -66.60816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -86.248535 + inSlope: -96.93054 + outSlope: -96.93109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -91.5777 + inSlope: -77.657814 + outSlope: -77.657814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: -93.04896 + inSlope: -30.928652 + outSlope: -30.92883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.25 + value: -94.26333 + inSlope: 3.3772101 + outSlope: 3.758965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -90.343025 + inSlope: 61.848515 + outSlope: 61.84497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583335 + value: -83.79651 + inSlope: -3.2530518 + outSlope: -3.3903842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5416667 + value: -87.67965 + inSlope: -62.860535 + outSlope: -62.89002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -90.731476 + inSlope: -43.06852 + outSlope: -43.068768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.625 + value: -91.26182 + inSlope: -0.4482439 + outSlope: -0.595459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: -90.25861 + inSlope: 0.36328125 + outSlope: 0.32958922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -90.28593 + inSlope: 0.73333603 + outSlope: 0.7272977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.875 + value: -90.21876 + inSlope: -0.08789096 + outSlope: -0.09667969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -90.01639 + inSlope: 1.8896484 + outSlope: 1.8896484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -90.043144 + inSlope: -0.21203613 + outSlope: -0.21203613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 1.3773396e-14 + inSlope: -3.305615e-13 + outSlope: -3.3056142e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 1.1770406e-14 + inSlope: -2.824897e-13 + outSlope: -1.6949387e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 7.560928e-15 + inSlope: -1.0887737e-13 + outSlope: -1.3609669e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 3.9039113e-15 + inSlope: -7.0270395e-14 + outSlope: -2.8108188e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 2.9329719e-15 + inSlope: -2.1117418e-13 + outSlope: -2.1117357e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 2.497219e-15 + inSlope: -1.7979941e-13 + outSlope: -1.6345435e-14 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 1.9316615e-16 + inSlope: -1.2643605e-15 + outSlope: -1.2643602e-15 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 8.2473774e-19 + inSlope: -5.398283e-18 + outSlope: -3.9587404e-18 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 47.857544 + outSlope: 47.857544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 1.9940732 + inSlope: 88.419525 + outSlope: 88.41995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 24.609444 + inSlope: 232.42218 + outSlope: 232.01189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 67.46703 + inSlope: 303.9715 + outSlope: 304.903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 105.6468 + inSlope: 294.47003 + outSlope: 294.46997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 137.35277 + inSlope: 201.16292 + outSlope: 200.4959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 175.55165 + inSlope: 183.07597 + outSlope: 183.34834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -153.66449 + inSlope: 204.58298 + outSlope: 205.12044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -144.40854 + inSlope: 164.9324 + outSlope: 164.93193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -139.90147 + inSlope: 106.98356 + outSlope: 106.26637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -103.47528 + inSlope: 42.103813 + outSlope: 42.1038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -90.87848 + inSlope: 17.38906 + outSlope: 17.386227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -88.98343 + inSlope: 0.04541015 + outSlope: 0.04537057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -88.91302 + inSlope: 0.045429956 + outSlope: 0.045429956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 1.892452e-15 + inSlope: -4.541885e-14 + outSlope: -4.541884e-14 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 5.1610624e-15 + inSlope: -1.2386546e-13 + outSlope: -7.43193e-14 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 6.9955723e-15 + inSlope: -1.0073625e-13 + outSlope: -1.2592028e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 6.2884573e-15 + inSlope: -1.1319222e-13 + outSlope: -4.5276936e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 5.7059007e-15 + inSlope: -4.1082524e-13 + outSlope: -4.1082407e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 5.3673462e-15 + inSlope: -3.864482e-13 + outSlope: -3.5131728e-14 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 1.6350744e-15 + inSlope: -1.0702307e-14 + outSlope: -1.07023045e-14 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 1.07578425e-16 + inSlope: -7.041496e-16 + outSlope: -5.163763e-16 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0.19687499 + outSlope: 0.19687499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -4.9252014 + inSlope: -69.73879 + outSlope: -69.72217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -26.056227 + inSlope: -64.905235 + outSlope: -64.90523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -32.788166 + inSlope: -14.807692 + outSlope: -14.790817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -37.062664 + inSlope: -0.01801924 + outSlope: -0.018009732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -37.09934 + inSlope: -0.017886417 + outSlope: -0.017886417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 30.607336 + inSlope: -0.0088184895 + outSlope: -0.0088184895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 30.60219 + inSlope: -0.008877344 + outSlope: -0.008857729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 29.072521 + inSlope: -58.906372 + outSlope: -58.90457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 20.782131 + inSlope: 9.2725525 + outSlope: 9.2725525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 36.361088 + inSlope: 179.72232 + outSlope: 179.72223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 51.93957 + inSlope: -16.303612 + outSlope: -16.30304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 43.578526 + inSlope: -81.68027 + outSlope: -81.68015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 39.293316 + inSlope: -51.92727 + outSlope: -51.896244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 29.317093 + inSlope: 6.0498576 + outSlope: 6.04995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 40.75471 + inSlope: 57.880196 + outSlope: 57.85468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 40.53686 + inSlope: -25.785975 + outSlope: -25.776268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 27.43001 + inSlope: -1.7437941 + outSlope: -1.7437984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 27.428118 + inSlope: -0.0021514893 + outSlope: -0.0022315967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 24.136889 + inSlope: -38.07039 + outSlope: -38.07017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 20.839565 + inSlope: 0.007209785 + outSlope: 0.007232666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 20.842289 + inSlope: 0.007293701 + outSlope: 0.007293701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.75 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + 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 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00038519487 + inSlope: -0.6430859 + outSlope: -0.6314897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -1.6966518 + inSlope: 2.6756475 + outSlope: 2.7094824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.4946038 + inSlope: 3.5143757 + outSlope: 3.5198557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 2.0665736 + inSlope: 8.000848 + outSlope: 8.521368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 4.3190174 + inSlope: 2.6795425 + outSlope: 2.4320388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 4.130621 + inSlope: -1.0053076 + outSlope: -0.9971118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 4.103286 + inSlope: -0.031293854 + outSlope: -0.031278517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 4.1086884 + inSlope: 0.0089625325 + outSlope: 0.0089625325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 27.630806 + inSlope: 0.006439209 + outSlope: 0.006439209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 27.635628 + inSlope: 0.006439209 + outSlope: 0.006317136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 30.525858 + inSlope: 122.134056 + outSlope: 122.13415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 47.400265 + inSlope: 231.81062 + outSlope: 231.81062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 65.04693 + inSlope: 166.92879 + outSlope: 166.37396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 89.77102 + inSlope: 76.69521 + outSlope: 76.47288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 113.08192 + inSlope: 40.57765 + outSlope: 40.567154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 130.08995 + inSlope: 48.98886 + outSlope: 49.00153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 166.45918 + inSlope: 109.13331 + outSlope: 109.602356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -156.72273 + inSlope: 161.92053 + outSlope: 161.6575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -122.65354 + inSlope: 34.617283 + outSlope: 34.627518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -121.900085 + inSlope: -0.0024719227 + outSlope: -0.0024285573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -121.903366 + inSlope: -0.004394532 + outSlope: -0.004394532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + 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 + - serializedVersion: 3 + time: 1.2083334 + value: 0.0000075151515 + inSlope: -0.14271073 + outSlope: -0.17732856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -3.8305705 + inSlope: -7.072871 + outSlope: -7.057593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -4.1820483 + inSlope: 0.6877184 + outSlope: 0.6671418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -3.643498 + inSlope: 7.249408 + outSlope: 6.7549953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -0.9590489 + inSlope: 12.459455 + outSlope: 12.478305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.79643464 + inSlope: 0.6798745 + outSlope: 0.692649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.8141844 + inSlope: 0.019668093 + outSlope: 0.019694984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.8109761 + inSlope: -0.0053849733 + outSlope: -0.0053849733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.00000533155 + inSlope: -0.000018279601 + outSlope: -0.0001279572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000064051333 + inSlope: -0.0001537232 + outSlope: -0.00011529234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.000009316826 + inSlope: 0.00010695528 + outSlope: 0.0000855643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.0000123917225 + inSlope: 0.000041285773 + outSlope: 0.000020642876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.00001584302 + inSlope: -0.000004206457 + outSlope: -0.000005258074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.000018740153 + inSlope: -0.00003133228 + outSlope: -0.000025065814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.000021917967 + inSlope: -0.000047946076 + outSlope: -0.000036881596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: 0.00002638896 + inSlope: 0.000022866192 + outSlope: 0.000011890423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.000035288038 + inSlope: -0.000013738926 + outSlope: -0.000013738926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 20.256481 + inSlope: 0.0050354004 + outSlope: 0.0050354004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 20.260916 + inSlope: 0.0050550187 + outSlope: 0.004989624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 24.53302 + inSlope: 95.203125 + outSlope: 95.181656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 49.86059 + inSlope: 181.42546 + outSlope: 181.16621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 82.41138 + inSlope: 99.92245 + outSlope: 99.53545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 107.48783 + inSlope: 20.16293 + outSlope: 20.164518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 108.4609 + inSlope: 0.45572674 + outSlope: 0.45554802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 115.128334 + inSlope: 20.444399 + outSlope: 20.441456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: 116.997894 + inSlope: 0.10428559 + outSlope: 0.10432619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 117.10659 + inSlope: 0.10461183 + outSlope: 0.10461183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.0000037151287 + inSlope: 0.000012737584 + outSlope: 0.00008916309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000004117311 + inSlope: 0.000098815464 + outSlope: 0.000074111565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.000003403889 + inSlope: 0.000061269966 + outSlope: 0.000049016016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.0000008218206 + inSlope: 0.000011834221 + outSlope: 0.0000059171075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.000002436752 + inSlope: -0.000017544613 + outSlope: -0.000021930775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.0000030454646 + inSlope: -0.000027409187 + outSlope: -0.00002192734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.000004884858 + inSlope: -0.00003517097 + outSlope: -0.000027054593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0833335 + value: 0.000006334918 + inSlope: -0.000035085694 + outSlope: -0.000018244567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.000008506636 + inSlope: 0.000019446203 + outSlope: 0.000019446203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara00.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/arch/break.anim.meta similarity index 79% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara00.anim.meta rename to Assets/Resources/Models/Games/Airboarder/Animations/arch/break.anim.meta index 8f61a0296..6b2f8131a 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara00.anim.meta +++ b/Assets/Resources/Models/Games/Airboarder/Animations/arch/break.anim.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 6ac202c98d6465f4daad74aa3d74a0e2 +guid: 097e4120edbde8a49af1ee5d43c739a6 NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/arch/idle.anim b/Assets/Resources/Models/Games/Airboarder/Animations/arch/idle.anim new file mode 100644 index 000000000..c044b95f6 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/arch/idle.anim @@ -0,0 +1,53 @@ +%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: idle + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 60 + 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 + 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/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara08-end.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/arch/idle.anim.meta similarity index 79% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara08-end.anim.meta rename to Assets/Resources/Models/Games/Airboarder/Animations/arch/idle.anim.meta index 208297d4f..2cfb6db12 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara08-end.anim.meta +++ b/Assets/Resources/Models/Games/Airboarder/Animations/arch/idle.anim.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b72ed06b4dcbc0e4aa6ef669923ba748 +guid: a934fd8b9c8c22e4fad742014afbbb4f NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/arch/move.anim b/Assets/Resources/Models/Games/Airboarder/Animations/arch/move.anim new file mode 100644 index 000000000..a0c3bc5f5 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/arch/move.anim @@ -0,0 +1,250 @@ +%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: move + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -140, y: -1, z: 0.8} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 292.68292, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.68333334 + value: {x: 60, y: -1, z: 0.8} + inSlope: {x: 292.68292, y: -0, z: -0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.68333334 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: wall_high_model + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 0 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3051566205 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.68333334 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -140 + inSlope: 0 + outSlope: 292.68292 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 60 + inSlope: 292.68292 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -1 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 0.8 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.68333334 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: wall_high_model + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma00.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/arch/move.anim.meta similarity index 79% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma00.anim.meta rename to Assets/Resources/Models/Games/Airboarder/Animations/arch/move.anim.meta index 302274b80..66cba1da2 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma00.anim.meta +++ b/Assets/Resources/Models/Games/Airboarder/Animations/arch/move.anim.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 212d01503e503b647929c89390d1cf56 +guid: ac8fa3c8e5818f54a9641ca919dd5191 NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/arch/move2.anim b/Assets/Resources/Models/Games/Airboarder/Animations/arch/move2.anim new file mode 100644 index 000000000..eaac411ba --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/arch/move2.anim @@ -0,0 +1,286 @@ +%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: move2 + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -139.66, y: -1, z: 0.7399999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 152.7491, y: 0, z: 0.0000001300465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.36, y: -1, z: 0.74} + inSlope: {x: 152.7491, y: -0, z: 0.0000001300465} + outSlope: {x: 149.82498, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3166667 + value: {x: 60.29, y: -1, z: 0.74} + inSlope: {x: 149.82498, y: -0, z: -0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.9166667 + value: 1 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1.3166667 + value: 1 + inSlope: -0 + outSlope: Infinity + tangentMode: 69 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: + classID: 114 + script: {fileID: 11500000, guid: 7418df1ca9a5218468aa02006816659f, type: 3} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 0 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 3305885265 + script: {fileID: 11500000, guid: 7418df1ca9a5218468aa02006816659f, type: 3} + typeID: 114 + customType: 24 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.3166667 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -139.66 + inSlope: 0 + outSlope: 152.7491 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.36 + inSlope: 152.7491 + outSlope: 149.82498 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 60.29 + inSlope: 149.82498 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -1 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -1 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7399999 + inSlope: 0 + outSlope: 0.0000001300465 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.74 + inSlope: 0.0000001300465 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.74 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.9166667 + value: 1 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1.3166667 + value: 1 + inSlope: -0 + outSlope: Infinity + tangentMode: 69 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: + classID: 114 + script: {fileID: 11500000, guid: 7418df1ca9a5218468aa02006816659f, type: 3} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/arch/move2.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/arch/move2.anim.meta new file mode 100644 index 000000000..2a1fb2eb3 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/arch/move2.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 990f9df7e2796d247985259b56b6018b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/arch/shake.anim b/Assets/Resources/Models/Games/Airboarder/Animations/arch/shake.anim new file mode 100644 index 000000000..a5379eba8 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/arch/shake.anim @@ -0,0 +1,10081 @@ +%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: shake + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: 2.4583335 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: wall_high_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.4583335 + 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: wall_high_model_skeleton/wall_root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: -0.0073378854, y: -0.53176737, z: -0.33106437, w: -0.008176804} + outSlope: {x: -0.0073378854, y: -0.53176737, z: -0.33106437, w: -0.008176804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: -0.0010571927, y: -0.12750073, z: -0.008223699, w: 0.9918038} + inSlope: {x: 0.018652065, y: -0.109271124, z: 0.15299168, w: -0.012686489} + outSlope: {x: 0.018652065, y: -0.109271124, z: 0.15299168, w: -0.012686489} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0, y: -0.13908388, z: -0, w: 0.9902806} + inSlope: {x: -0.023423571, y: -0.000065982415, z: -0.16677663, w: 0.00009012266} + outSlope: {x: -0.023423571, y: -0.000065982415, z: -0.16677663, w: 0.00009012266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -4.5392154e-10, y: -0.13910128, z: -0.0000000032315202, w: 0.9902782} + inSlope: {x: -0.01414072, y: -0.000057756955, z: -0.10066957, w: 0.000032186537} + outSlope: {x: -0.01414072, y: -0.000057756955, z: -0.10066957, w: 0.000032186537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.00076415675, y: -0.13911009, z: 0.0054396866, w: 0.99026173} + inSlope: {x: -0.008441257, y: -0.00007367134, z: -0.060090452, w: 0.00014448188} + outSlope: {x: -0.008441257, y: -0.00007367134, z: -0.060090452, w: 0.00014448188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: 0, y: -0.13915789, z: -0, w: 0.99027026} + inSlope: {x: 0, y: -0.000052034757, z: 0, w: -0.000007867799} + outSlope: {x: 0, y: -0.000052034757, z: 0, w: -0.000007867799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0, y: -0.13917312, z: -0, w: 0.99026805} + inSlope: {x: 0, y: -0.000051855943, z: 0, w: -0.0000085830525} + outSlope: {x: 0, y: -0.000051855943, z: 0, w: -0.0000085830525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block01Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: 0.00034073013, y: 0.20075427, z: -0.04073251, w: -0.0008740425} + outSlope: {x: 0.00034073013, y: 0.20075427, z: -0.04073251, w: -0.0008740425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0.0003242523, y: 0.0868246, z: -0.0037204379, w: 0.99621665} + inSlope: {x: -0.0012062937, y: 0.015660344, z: 0.014570724, w: -0.0013053416} + outSlope: {x: -0.0012062937, y: 0.015660344, z: 0.014570724, w: -0.0013053416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.00013074533, y: 0.06708461, z: -0.0019445674, w: 0.9977454} + inSlope: {x: -0.0015099009, y: -0.3113532, z: 0.013156278, w: 0.021169428} + outSlope: {x: -0.0015099009, y: -0.3113532, z: 0.013156278, w: 0.021169428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0, y: 0.052335985, z: -0, w: 0.9986295} + inSlope: {x: -0.0000008527777, y: 0, z: 0.000016271959, w: 0} + outSlope: {x: -0.0000008527777, y: 0, z: 0.000016271959, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0, y: 0.05233597, z: -0, w: 0.9986295} + 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: wall_high_model_skeleton/wall_root/block02Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: -0.0038368183, y: -0.27372965, z: -0.33634865, w: -0.003918171} + outSlope: {x: -0.0038368183, y: -0.27372965, z: -0.33634865, w: -0.003918171} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.0026978184, y: -0.11366866, z: -0.023573505, w: 0.99323535} + inSlope: {x: 0.025339913, y: -0.11427196, z: 0.2458285, w: -0.0071375393} + outSlope: {x: 0.025339913, y: -0.11427196, z: 0.2458285, w: -0.0071375393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: 0.0006413883, y: -0.13835871, z: 0.004591056, w: 0.99037135} + inSlope: {x: -0.0130322, y: -0.019654514, z: -0.093992785, w: -0.0023632052} + outSlope: {x: -0.0130322, y: -0.019654514, z: -0.093992785, w: -0.0023632052} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0, y: -0.13903442, z: -0, w: 0.99028754} + inSlope: {x: 0, y: -0.00013875974, z: 0, w: -0.000019311923} + outSlope: {x: 0, y: -0.00013875974, z: 0, w: -0.000019311923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0, y: -0.13917312, z: -0, w: 0.99026805} + inSlope: {x: 0, y: -0.00013875935, z: 0, w: -0.000020027122} + outSlope: {x: 0, y: -0.00013875935, z: 0, w: -0.000020027122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block03Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: 0.02984754, y: 0.3845002, z: -0.31001633, w: -0.005101204} + outSlope: {x: 0.02984754, y: 0.3845002, z: -0.31001633, w: -0.005101204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.013479497, y: 0.20206767, z: -0.02050124, w: 0.97906417} + inSlope: {x: -0.037260585, y: 0.12360364, z: 0.14669442, w: -0.021906842} + outSlope: {x: -0.037260585, y: 0.12360364, z: 0.14669442, w: -0.021906842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.001053027, y: 0.22467723, z: 0.0025774655, w: 0.97442925} + inSlope: {x: -0.024658892, y: 0.009947786, z: -0.055893824, w: -0.0021286032} + outSlope: {x: -0.024658892, y: 0.009947786, z: -0.055893824, w: -0.0021286032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: -4.428308e-13, y: 0.22473408, z: 1.0213169e-13, w: 0.97442013} + inSlope: {x: -0.012866966, y: 0.00023889526, z: 0.055791896, w: 0.00008439995} + outSlope: {x: -0.012866966, y: 0.00023889526, z: 0.055791896, w: 0.00008439995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: -2.3026633e-13, y: 0.22483823, z: 5.313309e-14, w: 0.9743961} + inSlope: {x: 4.2511822e-13, y: 0.00020849696, z: -9.804258e-14, w: -0.000047922113} + outSlope: {x: 4.2511822e-13, y: 0.00020849696, z: -9.804258e-14, w: -0.000047922113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0, y: 0.22495104, z: -0, w: 0.97437006} + inSlope: {x: 4.2509502e-13, y: 0.00020849665, z: -9.8136926e-14, w: -0.0000486373} + outSlope: {x: 4.2509502e-13, y: 0.00020849665, z: -9.8136926e-14, w: -0.0000486373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block04Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.2916667 + value: {x: 0, y: -0, z: -0, w: 1} + inSlope: {x: 0, y: 0.000000023683683, z: 0, w: 0} + outSlope: {x: 0, y: 0.000000023683683, 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.5833334 + value: {x: 0, y: 0.068434425, z: -0, w: 0.99765563} + inSlope: {x: 0, y: 0.25945413, z: 0, w: -0.017754799} + outSlope: {x: 0, y: 0.25945413, z: 0, w: -0.017754799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0, y: 0.15623587, z: -0, w: 0.9877198} + inSlope: {x: 0, y: 0.00015878692, z: 0, w: -0.000025749232} + outSlope: {x: 0, y: 0.00015878692, z: 0, w: -0.000025749232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0, y: 0.15643454, z: -0, w: 0.98768836} + inSlope: {x: 0, y: 0.00015950172, z: 0, w: -0.00002431865} + outSlope: {x: 0, y: 0.00015950172, z: 0, w: -0.00002431865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block05Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.20833334 + value: {x: 0.031111969, y: -0, z: -0, w: 0.9995159} + inSlope: {x: 0.06890823, y: 0, z: 0, w: -0.0020720959} + outSlope: {x: 0.06890823, y: 0, z: 0, w: -0.0020720959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.005540962, y: 0, z: -0, w: 0.9999847} + inSlope: {x: 0.1053955, y: 0, z: 0, w: 0.00046277064} + outSlope: {x: 0.1053955, y: 0, z: 0, w: 0.00046277064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + 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: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block06Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.2916667 + value: {x: 7.05633e-11, y: -0, z: -0, w: 1} + inSlope: {x: 0.0024894744, y: -0.000000039517467, z: 8.198142e-12, w: 0} + outSlope: {x: 0.0024894744, y: -0.000000039517467, z: 8.198142e-12, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00020745613, y: -0.0000000032931216, z: 6.831783e-13, w: 1} + inSlope: {x: 0.004677755, y: -0.23234817, z: 0.000090589296, w: -0.002250195} + outSlope: {x: 0.004677755, y: -0.23234817, z: 0.000090589296, w: -0.002250195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: 0.0005467916, y: -0.035656836, z: 0.000019509267, w: 0.99936396} + inSlope: {x: 0.0034607411, y: -0.35737246, z: 0.00030984788, w: -0.012251615} + outSlope: {x: 0.0034607411, y: -0.35737246, z: 0.00030984788, w: -0.012251615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.00015087803, y: -0.08726231, z: -0.000013216381, w: 0.99618536} + inSlope: {x: -0.002191513, y: 0.00007519122, z: -0.00019196213, w: 0.0000064373} + outSlope: {x: -0.002191513, y: 0.00007519122, z: -0.00019196213, w: 0.0000064373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0, y: -0.08715575, z: -0, w: 0.9961947} + inSlope: {x: 0, y: 0.00007528052, z: 0, w: 0.0000071525437} + outSlope: {x: 0, y: 0.00007528052, z: 0, w: 0.0000071525437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block07Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg4 + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.0000064502165, z: 0.0128} + inSlope: {x: 0.0073741963, y: 0.006340874, z: 0.0026956843} + outSlope: {x: 0.0073741963, y: 0.006340874, z: 0.0026956843} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.0003072582, y: 0.00025775286, z: 0.01291232} + inSlope: {x: 0.0073741963, y: 0.006340874, z: 0.0026956843} + outSlope: {x: 0.007114588, y: 0.005504127, z: 0.002435274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.00060369936, y: 0.00048709149, z: 0.013013789} + inSlope: {x: 0.007114588, y: 0.005504127, z: 0.002435274} + outSlope: {x: 0.006849679, y: 0.00429967, z: 0.0021811295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.00088910264, y: 0.00066624436, z: 0.01310467} + inSlope: {x: 0.006849679, y: 0.00429967, z: 0.0021811295} + outSlope: {x: 0.0065794634, y: 0.0033118108, z: 0.0019341656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.0011632469, y: 0.0008042365, z: 0.01318526} + inSlope: {x: 0.0065794634, y: 0.0033118108, z: 0.0019341656} + outSlope: {x: 0.0063039386, y: 0.002403024, z: 0.0016936688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.001425911, y: 0.0009043625, z: 0.01325583} + inSlope: {x: 0.0063039386, y: 0.002403024, z: 0.0016936688} + outSlope: {x: 0.0060231355, y: 0.0015733085, z: 0.0014599226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.001676875, y: 0.000969917, z: 0.013316659} + inSlope: {x: 0.0060231355, y: 0.0015733085, z: 0.0014599226} + outSlope: {x: 0.0057370067, y: 0.0008226713, z: 0.0012331298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: 0.0019159169, y: 0.001004195, z: 0.01336804} + inSlope: {x: 0.0057370067, y: 0.0008226713, z: 0.0012331298} + outSlope: {x: 0.0054455507, y: 0.00015110485, z: 0.0010128017} + tangentMode: 0 + weightedMode: 0 + 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.002142815, y: 0.001010491, z: 0.01341024} + inSlope: {x: 0.0054455507, y: 0.00015110485, z: 0.0010128017} + outSlope: {x: 0.005148866, y: -0.00044139515, z: 0.00079919834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.002357351, y: 0.0009920995, z: 0.01344354} + inSlope: {x: 0.005148866, y: -0.00044139515, z: 0.00079919834} + outSlope: {x: 0.004846799, y: -0.0009548058, z: 0.0005500604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.0027490647, y: 0.0008944343, z: 0.01348938} + inSlope: {x: 0.0045543313, y: -0.0013891602, z: 0.0005500886} + outSlope: {x: 0.004278174, y: -0.0017444269, z: 0.00025071148} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.0032501318, y: 0.00064515043, z: 0.0135207195} + inSlope: {x: 0.0037405193, y: -0.0022177561, z: 0.0002507117} + outSlope: {x: 0.0034789948, y: -0.0023358078, z: -0.000009412761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.0037666159, y: 0.00025928306, z: 0.013519152} + inSlope: {x: 0.0027236855, y: -0.0022155258, z: -0.000009412761} + outSlope: {x: 0.0024816715, y: -0.002017285, z: -0.00000938415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.003870019, y: 0.00017522949, z: 0.013518761} + inSlope: {x: 0.0024816715, y: -0.002017285, z: -0.00000938415} + outSlope: {x: 0.0022445319, y: -0.0017399752, z: -0.000009412774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: 0.003963541, y: 0.0001027306, z: 0.013518369} + inSlope: {x: 0.0022445319, y: -0.0017399752, z: -0.000009412774} + outSlope: {x: 0.0020122495, y: -0.0013835845, z: -0.000009412761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.004047385, y: 0.00004508122, z: 0.013517977} + inSlope: {x: 0.0020122495, y: -0.0013835845, z: -0.000009412761} + outSlope: {x: 0.001784884, y: -0.00094812445, z: -0.00000938415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.004121755, y: 0.0000055760142, z: 0.013517586} + inSlope: {x: 0.001784884, y: -0.00094812445, z: -0.00000938415} + outSlope: {x: 0.0015623489, y: -0.00043359218, z: -0.000009412774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: 0.004186853, y: -0.00001249031, z: 0.0135171935} + inSlope: {x: 0.0015623489, y: -0.00043359218, z: -0.000009412774} + outSlope: {x: 0.001344723, y: -0.00008090276, z: -0.00000938415} + tangentMode: 0 + weightedMode: 0 + 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.004242883, y: -0.00001586126, z: 0.013516802} + inSlope: {x: 0.001344723, y: -0.00008090276, z: -0.00000938415} + outSlope: {x: 0.0011319361, y: 0.000023953238, z: -0.000009412774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: 0.004290047, y: -0.00001486321, z: 0.01351641} + inSlope: {x: 0.0011319361, y: 0.000023953238, z: -0.000009412774} + outSlope: {x: 0.00092404423, y: 0.0000789008, z: -0.000009412747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.004358593, y: -0.0000080781665, z: 0.013515627} + inSlope: {x: 0.0007210571, y: 0.000083940155, z: -0.000009384164} + outSlope: {x: 0.0005228882, y: 0.000039070837, z: -0.000009412774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: 0.00438038, y: -0.0000064502165, z: 0.013515235} + inSlope: {x: 0.0005228882, y: 0.000039070837, z: -0.000009412774} + outSlope: {x: 0.00032963927, y: -0, z: -0.000009412747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: 0.0044017346, y: -0.0000064502165, z: 0.013508182} + inSlope: {x: -0.0000030827464, y: -0, z: -0.000009412747} + outSlope: {x: -0.000003082755, y: -0, z: -0.000009384164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: 0.0044000647, y: -0.0000064502165, z: 0.01350309} + inSlope: {x: -0.000003082764, y: -0, z: -0.000009412802} + outSlope: {x: -0.000003082764, y: -0, z: -0.000009412802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block01Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.0000064502165, z: -0.0128} + inSlope: {x: 0.008081208, y: 0.0006966121, z: -0.00519001} + outSlope: {x: 0.008081208, y: 0.0006966121, z: -0.00519001} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.000336717, y: 0.000022575288, z: -0.01301625} + inSlope: {x: 0.008081208, y: 0.0006966121, z: -0.00519001} + outSlope: {x: 0.007460652, y: 0.0005360263, z: -0.004954319} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.00064757746, y: 0.00004490972, z: -0.0132226795} + inSlope: {x: 0.007460652, y: 0.0005360263, z: -0.004954319} + outSlope: {x: 0.0065725446, y: 0.0003898932, z: -0.0047188858} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.0009214335, y: 0.00006115527, z: -0.0134193} + inSlope: {x: 0.0065725446, y: 0.0003898932, z: -0.0047188858} + outSlope: {x: 0.005630219, y: 0.00025821218, z: -0.004484138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.0011560259, y: 0.00007191411, z: -0.013606139} + inSlope: {x: 0.005630219, y: 0.00025821218, z: -0.004484138} + outSlope: {x: 0.004848219, y: 0.0001409832, z: -0.0042492207} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.001358035, y: 0.00007778841, z: -0.01378319} + inSlope: {x: 0.004848219, y: 0.0001409832, z: -0.0042492207} + outSlope: {x: 0.004120559, y: 0.00003820605, z: -0.0040151877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.001529725, y: 0.00007938033, z: -0.013950489} + inSlope: {x: 0.004120559, y: 0.00003820605, z: -0.0040151877} + outSlope: {x: 0.0034471902, y: -0.000050117982, z: -0.003780957} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: 0.0016733579, y: 0.000077292076, z: -0.014108029} + inSlope: {x: 0.0034471902, y: -0.000050117982, z: -0.003780957} + outSlope: {x: 0.002828159, y: -0.00012398997, z: -0.0035472088} + tangentMode: 0 + weightedMode: 0 + 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.0017911979, y: 0.000072125826, z: -0.01425583} + inSlope: {x: 0.002828159, y: -0.00012398997, z: -0.0035472088} + outSlope: {x: 0.0022634165, y: -0.00018341038, z: -0.0033139237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.0018855069, y: 0.00006448373, z: -0.01439391} + inSlope: {x: 0.0022634165, y: -0.00018341038, z: -0.0033139237} + outSlope: {x: 0.00175301, y: -0.00022837786, z: -0.0030808644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: 0.001958549, y: 0.00005496799, z: -0.01452228} + inSlope: {x: 0.00175301, y: -0.00022837786, z: -0.0030808644} + outSlope: {x: 0.0012969333, y: -0.00025889315, z: -0.0028480897} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.002072705, y: 0.00002120062, z: -0.01485123} + inSlope: {x: 0.00054768176, y: -0.0002765673, z: -0.0024203956} + outSlope: {x: 0.00025452042, y: -0.00026372616, z: -0.0022228737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.00208331, y: 0.00001021204, z: -0.014943849} + inSlope: {x: 0.00025452042, y: -0.00026372616, z: -0.0022228737} + outSlope: {x: 0.00001569628, y: -0.00023643233, z: -0.002033757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.002083964, y: 0.00000036068843, z: -0.015028589} + inSlope: {x: 0.00001569628, y: -0.00023643233, z: -0.002033757} + outSlope: {x: -0.00016883962, y: -0.0001946865, z: -0.0018530264} + tangentMode: 0 + weightedMode: 0 + 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.002076929, y: -0.000007751252, z: -0.015105799} + inSlope: {x: -0.00016883962, y: -0.0001946865, z: -0.0018530264} + outSlope: {x: -0.00029904154, y: -0.00013245725, z: -0.0016802518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: 0.002064469, y: -0.0000132703, z: -0.015175809} + inSlope: {x: -0.00029904154, y: -0.00013245725, z: -0.0016802518} + outSlope: {x: -0.00037492972, y: -0.00006806683, z: -0.001515855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.0020488468, y: -0.00001610642, z: -0.0152389705} + inSlope: {x: -0.00037492972, y: -0.00006806683, z: -0.001515855} + outSlope: {x: -0.00039650183, y: 0.0000024538847, z: -0.001359815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: 0.002017169, y: -0.00001590193, z: -0.01534614} + inSlope: {x: -0.00036376866, y: 0.0000024538604, z: -0.0012122452} + outSlope: {x: -0.00027672158, y: 0.000046910136, z: -0.0010725684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.0020056388, y: -0.0000139473395, z: -0.01539083} + inSlope: {x: -0.00027672158, y: 0.000046910136, z: -0.0010725684} + outSlope: {x: -0.00013533347, y: 0.000059171485, z: -0.00094150496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: 0.0019983877, y: -0.000009048511, z: -0.01546416} + inSlope: {x: -0.000038695372, y: 0.000058400434, z: -0.000818425} + outSlope: {x: -0.00003869889, y: 0.000044597233, z: -0.000650768} + tangentMode: 0 + weightedMode: 0 + 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.0019967752, y: -0.000007190292, z: -0.015491275} + inSlope: {x: -0.00003869889, y: 0.000044597233, z: -0.000650768} + outSlope: {x: -0.000038695372, y: 0.0000005074828, z: -0.0006507402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: 0.002, y: -0.0000064502165, z: -0.015599999} + inSlope: {x: 0.0000018704009, y: 0.00000050748423, z: -0.000009527243} + outSlope: {x: 0.0000018704009, y: 0.00000050748423, z: -0.000009527243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block02Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.001062566, y: 0.02032738, z: -0.0019184101} + inSlope: {x: 0.00024928807, y: 0.0007359695, z: -0} + outSlope: {x: 0.00024928807, y: 0.0007359695, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.0012350089, y: 0.02043041, z: -0.0019184101} + inSlope: {x: 0.0010470717, y: -0.00011014937, z: -0} + outSlope: {x: 0.0011318173, y: -0.00011009219, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: 0.001691516, y: 0.020392213, z: -0.0019184101} + inSlope: {x: 0.000408769, y: -0.000011901867, z: -0} + outSlope: {x: 0.0001869606, y: -0.00001190185, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.0017044569, y: 0.020384276, z: -0.0019184101} + inSlope: {x: -0.000008500822, y: -0.000011901867, z: -0} + outSlope: {x: -0.000021121461, y: -0.000011901833, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: 0.0016993061, y: 0.02037138, z: -0.0019184101} + inSlope: {x: -0.0000017774173, y: -0.0000119019005, z: -0} + outSlope: {x: -0.0000017774173, y: -0.0000119019005, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block03Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0001543089, y: 0.016607521, z: 0.014694139} + inSlope: {x: 0.0006977713, y: -0, z: 0.004159212} + outSlope: {x: 0.0006977713, y: -0, z: 0.004159212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.0001833827, y: 0.016607521, z: 0.01486744} + inSlope: {x: 0.0006977713, y: -0, z: 0.004159212} + outSlope: {x: 0.0014518846, y: -0, z: 0.0039177416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.00024387789, y: 0.016607521, z: 0.015030679} + inSlope: {x: 0.0014518846, y: -0, z: 0.0039177416} + outSlope: {x: 0.0025163542, y: 0.009530154, z: 0.0036780168} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.00034872597, y: 0.01700461, z: 0.01518393} + inSlope: {x: 0.0025163542, y: 0.009530154, z: 0.0036780168} + outSlope: {x: 0.003353376, y: 0.0076634204, z: 0.0034394355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.00048845, y: 0.017323919, z: 0.01532724} + inSlope: {x: 0.003353376, y: 0.0076634204, z: 0.0034394355} + outSlope: {x: 0.004085812, y: 0.0058934507, z: 0.0032023152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.0006586921, y: 0.01756948, z: 0.01546067} + inSlope: {x: 0.004085812, y: 0.0058934507, z: 0.0032023152} + outSlope: {x: 0.004713647, y: 0.004245128, z: 0.002966394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.0008550941, y: 0.01774636, z: 0.01558427} + inSlope: {x: 0.004713647, y: 0.004245128, z: 0.002966394} + outSlope: {x: 0.0052368944, y: 0.0027182298, z: 0.0027324206} + tangentMode: 0 + weightedMode: 0 + 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.0013089459, y: 0.01791434, z: 0.01580227} + inSlope: {x: 0.005655549, y: 0.0013132947, z: 0.0024995888} + outSlope: {x: 0.0059696184, y: 0.000029983526, z: 0.0022682482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: 0.003495689, y: 0.016607521, z: 0.01636673} + inSlope: {x: 0.004716823, y: -0.005883842, z: 0.00086088263} + outSlope: {x: 0.004089551, y: -0, z: 0.0006747433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.0039768848, y: 0.016607521, z: 0.01646122} + inSlope: {x: 0.0015802066, y: -0, z: 0.00045913673} + outSlope: {x: 0.0006215283, y: -0, z: 0.00021306028} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.0040021804, y: 0.016607521, z: 0.016496347} + inSlope: {x: -0.0000018024461, y: -0, z: -0.0000018310564} + outSlope: {x: -0.0000018095935, y: -0, z: -0.0000018024409} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: 0.004, y: 0.016607521, z: 0.016494138} + inSlope: {x: -0.0000018024513, y: -0, z: -0.0000018310616} + outSlope: {x: -0.0000018024513, y: -0, z: -0.0000018310616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block04Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.02889578, z: 0.00334109} + inSlope: {x: -0, y: -0, z: -0} + outSlope: {x: -0, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0, y: 0.02914766, z: 0.00334109} + inSlope: {x: -0, y: 0.002181644, z: -0} + outSlope: {x: -0.004027328, y: -0.00024810797, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: -0.0001678053, y: 0.029137323, z: 0.00334109} + inSlope: {x: -0.004027328, y: -0.00024810797, z: -0} + outSlope: {x: -0.0036963199, y: -0.00024805058, z: -0} + tangentMode: 0 + weightedMode: 0 + 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.0003218187, y: 0.029126987, z: 0.00334109} + inSlope: {x: -0.0036963199, y: -0.00024805058, z: -0} + outSlope: {x: -0.0033790737, y: -0.00024810797, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.0004626134, y: 0.02911665, z: 0.00334109} + inSlope: {x: -0.0033790737, y: -0.00024810797, z: -0} + outSlope: {x: -0.0030759007, y: -0.0016014866, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: -0.0005907759, y: 0.02904992, z: 0.00334109} + inSlope: {x: -0.0030759007, y: -0.0016014866, z: -0} + outSlope: {x: -0.0027867854, y: -0.0017402449, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -0.000811548, y: 0.028912589, z: 0.00334109} + inSlope: {x: -0.0025117444, y: -0.0015557101, z: -0} + outSlope: {x: -0.0022507622, y: -0.000008583064, z: -0} + tangentMode: 0 + weightedMode: 0 + 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.0011272919, y: 0.028911158, z: 0.00334109} + inSlope: {x: -0.0015522222, y: -0.000008583064, z: -0} + outSlope: {x: -0.0013475056, y: -0.000008583077, z: -0} + tangentMode: 0 + weightedMode: 0 + 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.0013868649, y: 0.028908297, z: 0.00334109} + inSlope: {x: -0.0003083752, y: -0.000008583064, z: -0} + outSlope: {x: -0.0002161934, y: -0.000008583077, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: -0.0014005044, y: 0.028903648, z: 0.00334109} + inSlope: {x: 0.0000005507458, y: -0.0000085830525, z: -0} + outSlope: {x: 0.0000005507474, y: -0.000008583077, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0.0014, y: 0.02889578, z: 0.00334109} + inSlope: {x: 0.000000550749, y: -0.000008583102, z: -0} + outSlope: {x: 0.000000550749, y: -0.000008583102, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block05Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.02889578, z: -0.007478603} + inSlope: {x: -0.0068442523, y: -0, z: -0} + outSlope: {x: -0.0068442523, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.0002851772, y: 0.02889578, z: -0.007478603} + inSlope: {x: -0.0068442523, y: -0, z: -0} + outSlope: {x: -0.005743963, y: -0, z: -0.0050884006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.000524509, y: 0.02889578, z: -0.0076906197} + inSlope: {x: -0.005743963, y: -0, z: -0.0050884006} + outSlope: {x: -0.0042117345, y: 0.0025218776, z: -0.0046238853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.0006999979, y: 0.029000858, z: -0.007883281} + inSlope: {x: -0.0042117345, y: 0.0025218776, z: -0.0046238853} + outSlope: {x: -0.0030435415, y: 0.0020781895, z: -0.0041798395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.0008268121, y: 0.02908745, z: -0.008057442} + inSlope: {x: -0.0030435415, y: 0.0020781895, z: -0.0041798395} + outSlope: {x: -0.0020615587, y: 0.001645432, z: -0.0037579974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: -0.0009127104, y: 0.029156009, z: -0.008214025} + inSlope: {x: -0.0020615587, y: 0.001645432, z: -0.0037579974} + outSlope: {x: -0.0012657593, y: 0.0010262488, z: -0.0033583685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.00096545037, y: 0.02919877, z: -0.008353957} + inSlope: {x: -0.0012657593, y: 0.0010262488, z: -0.0033583685} + outSlope: {x: -0.0006561775, y: 0.0010262491, z: -0.0029809002} + tangentMode: 0 + weightedMode: 0 + 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.001002491, y: 0.029229786, z: -0.008587562} + inSlope: {x: -0.00023279595, y: -0.00028186783, z: -0.0026256167} + outSlope: {x: 0.000004414917, y: -0.00028186804, z: -0.0022926098} + tangentMode: 0 + weightedMode: 0 + 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.0009960511, y: 0.02889578, z: -0.0090719955} + inSlope: {x: -0.0000018954294, y: -0, z: -0.0000045204206} + outSlope: {x: -0.000001895424, y: -0, z: -0.0000045347124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0.0009999847, y: 0.02889578, z: -0.009078602} + inSlope: {x: -0.0000014054829, y: -0, z: -0.0000045347383} + outSlope: {x: -0.0000014054829, y: -0, z: -0.0000045347383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block06Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.03785232, z: -0.00204458} + inSlope: {x: -0, y: -0, z: -0} + outSlope: {x: -0, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: -0, y: 0.038072288, z: -0.00204458} + inSlope: {x: -0, y: 0.005279275, z: -0} + outSlope: {x: 0.003490808, y: 0.0031698975, z: -0.001629384} + tangentMode: 0 + weightedMode: 0 + 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.0001454504, y: 0.03820437, z: -0.002112471} + inSlope: {x: 0.003490808, y: 0.0031698975, z: -0.001629384} + outSlope: {x: 0.0031351973, y: -0.000021572117, z: -0.0022606556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.0002760836, y: 0.03820347, z: -0.002206665} + inSlope: {x: 0.0031351973, y: -0.000021572117, z: -0.0022606556} + outSlope: {x: 0.0027902406, y: -0.000021629337, z: -0.0022633201} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: 0.0003923436, y: 0.03820257, z: -0.0023009698} + inSlope: {x: 0.0027902406, y: -0.000021629337, z: -0.0022633201} + outSlope: {x: 0.0024622139, y: -0.000021572103, z: -0.0024091445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.0004949359, y: 0.03820167, z: -0.002401351} + inSlope: {x: 0.0024622139, y: -0.000021572103, z: -0.0024091445} + outSlope: {x: 0.0021511347, y: -0.0020376209, z: -0.0024978954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.00058456644, y: 0.038116768, z: -0.00250543} + inSlope: {x: 0.0021511347, y: -0.0020376209, z: -0.0024978954} + outSlope: {x: 0.0018569845, y: -0.0024578464, z: -0.0025295294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.000727765, y: 0.03790915, z: -0.002715165} + inSlope: {x: 0.0015797797, y: -0.0025250267, z: -0.0025041127} + outSlope: {x: 0.0013195032, y: -0.002239436, z: -0.0024215973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: 0.000862992, y: 0.037723668, z: -0.002998036} + inSlope: {x: 0.0008497765, y: -0.0011060153, z: -0.0020853158} + outSlope: {x: 0.00064031093, y: 0.0007329365, z: -0.0018315044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.000924403, y: 0.03785232, z: -0.0032160638} + inSlope: {x: 0.00011355573, y: -0, z: -0.0007277294} + outSlope: {x: 0.000035895093, y: -0, z: -0.00034435256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.0009316659, y: 0.03785232, z: -0.003229336} + inSlope: {x: -0.000002726915, y: -0, z: 0.000002346041} + outSlope: {x: -0.0000027269073, y: -0, z: 0.0000023460343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: 0.0009244445, y: 0.03785232, z: -0.0032267931} + inSlope: {x: -0.0000066858784, y: -0, z: 0.0000023460477} + outSlope: {x: -0.0000066858784, y: -0, z: 0.0000023460477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block07Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.000270677, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0, y: 0.000270677, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.000270677, z: -0.0134622} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0, y: 0.000270677, z: -0.0134622} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.000270677, z: 0.0132667} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0, y: 0.000270677, z: 0.0132667} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.000270677, z: -0.00500674} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0, y: 0.000270677, z: -0.00500674} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.000270677, z: 0.00132848} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0, y: 0.000270677, z: 0.00132848} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.000270677, z: 0.00637024} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0, y: 0.000270677, z: 0.00637024} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/sdwPg4 + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0.9999999, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block05Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0.9999999, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_high_model_skeleton/wall_root/block07Pg + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 24 + 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: 4096435371 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4134279922 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4155404485 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4074858048 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4079160439 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4049973806 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4037531673 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4096435371 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4134279922 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4155404485 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4074858048 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4079160439 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4049973806 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4037531673 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3191469815 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4175287068 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2535812651 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 681244544 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 237780881 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2032865031 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3880753828 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2336008963 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3191469815 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4175287068 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2535812651 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 681244544 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 237780881 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2032865031 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3880753828 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4079160439 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4037531673 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 2.4583335 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7071068 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.7071068 + inSlope: 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: wall_high_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7071067 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.7071067 + inSlope: 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: wall_high_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0.0073378854 + outSlope: -0.0073378854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.0010571927 + inSlope: 0.018652065 + outSlope: 0.018652065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0 + inSlope: -0.023423571 + outSlope: -0.023423571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -4.5392154e-10 + inSlope: -0.01414072 + outSlope: -0.01414072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.00076415675 + inSlope: -0.008441257 + outSlope: -0.008441257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0.53176737 + outSlope: -0.53176737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.12750073 + inSlope: -0.109271124 + outSlope: -0.109271124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.13908388 + inSlope: -0.000065982415 + outSlope: -0.000065982415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.13910128 + inSlope: -0.000057756955 + outSlope: -0.000057756955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.13911009 + inSlope: -0.00007367134 + outSlope: -0.00007367134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.13915789 + inSlope: -0.000052034757 + outSlope: -0.000052034757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.13917312 + inSlope: -0.000051855943 + outSlope: -0.000051855943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: -0.33106437 + outSlope: -0.33106437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.008223699 + inSlope: 0.15299168 + outSlope: 0.15299168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0 + inSlope: -0.16677663 + outSlope: -0.16677663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.0000000032315202 + inSlope: -0.10066957 + outSlope: -0.10066957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.0054396866 + inSlope: -0.060090452 + outSlope: -0.060090452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: -0.008176804 + outSlope: -0.008176804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.9918038 + inSlope: -0.012686489 + outSlope: -0.012686489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.9902806 + inSlope: 0.00009012266 + outSlope: 0.00009012266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.9902782 + inSlope: 0.000032186537 + outSlope: 0.000032186537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.99026173 + inSlope: 0.00014448188 + outSlope: 0.00014448188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.99027026 + inSlope: -0.000007867799 + outSlope: -0.000007867799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.99026805 + inSlope: -0.0000085830525 + outSlope: -0.0000085830525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0.00034073013 + outSlope: 0.00034073013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.0003242523 + inSlope: -0.0012062937 + outSlope: -0.0012062937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.00013074533 + inSlope: -0.0015099009 + outSlope: -0.0015099009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0 + inSlope: -0.0000008527777 + outSlope: -0.0000008527777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0.20075427 + outSlope: 0.20075427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.0868246 + inSlope: 0.015660344 + outSlope: 0.015660344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.06708461 + inSlope: -0.3113532 + outSlope: -0.3113532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.052335985 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.05233597 + inSlope: 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: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: -0.04073251 + outSlope: -0.04073251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.0037204379 + inSlope: 0.014570724 + outSlope: 0.014570724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0019445674 + inSlope: 0.013156278 + outSlope: 0.013156278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0 + inSlope: 0.000016271959 + outSlope: 0.000016271959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: -0.0008740425 + outSlope: -0.0008740425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.99621665 + inSlope: -0.0013053416 + outSlope: -0.0013053416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9977454 + inSlope: 0.021169428 + outSlope: 0.021169428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.9986295 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.9986295 + inSlope: 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: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0.0038368183 + outSlope: -0.0038368183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.0026978184 + inSlope: 0.025339913 + outSlope: 0.025339913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.0006413883 + inSlope: -0.0130322 + outSlope: -0.0130322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0.27372965 + outSlope: -0.27372965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.11366866 + inSlope: -0.11427196 + outSlope: -0.11427196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.13835871 + inSlope: -0.019654514 + outSlope: -0.019654514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0.13903442 + inSlope: -0.00013875974 + outSlope: -0.00013875974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.13917312 + inSlope: -0.00013875935 + outSlope: -0.00013875935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: -0.33634865 + outSlope: -0.33634865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.023573505 + inSlope: 0.2458285 + outSlope: 0.2458285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.004591056 + inSlope: -0.093992785 + outSlope: -0.093992785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: -0.003918171 + outSlope: -0.003918171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.99323535 + inSlope: -0.0071375393 + outSlope: -0.0071375393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.99037135 + inSlope: -0.0023632052 + outSlope: -0.0023632052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.99028754 + inSlope: -0.000019311923 + outSlope: -0.000019311923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.99026805 + inSlope: -0.000020027122 + outSlope: -0.000020027122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0.02984754 + outSlope: 0.02984754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.013479497 + inSlope: -0.037260585 + outSlope: -0.037260585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.001053027 + inSlope: -0.024658892 + outSlope: -0.024658892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -4.428308e-13 + inSlope: -0.012866966 + outSlope: -0.012866966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -2.3026633e-13 + inSlope: 4.2511822e-13 + outSlope: 4.2511822e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0 + inSlope: 4.2509502e-13 + outSlope: 4.2509502e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0.3845002 + outSlope: 0.3845002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.20206767 + inSlope: 0.12360364 + outSlope: 0.12360364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.22467723 + inSlope: 0.009947786 + outSlope: 0.009947786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.22473408 + inSlope: 0.00023889526 + outSlope: 0.00023889526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.22483823 + inSlope: 0.00020849696 + outSlope: 0.00020849696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.22495104 + inSlope: 0.00020849665 + outSlope: 0.00020849665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: -0.31001633 + outSlope: -0.31001633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.02050124 + inSlope: 0.14669442 + outSlope: 0.14669442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.0025774655 + inSlope: -0.055893824 + outSlope: -0.055893824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 1.0213169e-13 + inSlope: 0.055791896 + outSlope: 0.055791896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 5.313309e-14 + inSlope: -9.804258e-14 + outSlope: -9.804258e-14 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0 + inSlope: -9.8136926e-14 + outSlope: -9.8136926e-14 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: -0.005101204 + outSlope: -0.005101204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.97906417 + inSlope: -0.021906842 + outSlope: -0.021906842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.97442925 + inSlope: -0.0021286032 + outSlope: -0.0021286032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.97442013 + inSlope: 0.00008439995 + outSlope: 0.00008439995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.9743961 + inSlope: -0.000047922113 + outSlope: -0.000047922113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.97437006 + inSlope: -0.0000486373 + outSlope: -0.0000486373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0 + inSlope: 0.000000023683683 + outSlope: 0.000000023683683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.068434425 + inSlope: 0.25945413 + outSlope: 0.25945413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.15623587 + inSlope: 0.00015878692 + outSlope: 0.00015878692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.15643454 + inSlope: 0.00015950172 + outSlope: 0.00015950172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.99765563 + inSlope: -0.017754799 + outSlope: -0.017754799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.9877198 + inSlope: -0.000025749232 + outSlope: -0.000025749232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.98768836 + inSlope: -0.00002431865 + outSlope: -0.00002431865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.031111969 + inSlope: 0.06890823 + outSlope: 0.06890823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.005540962 + inSlope: 0.1053955 + outSlope: 0.1053955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.9995159 + inSlope: -0.0020720959 + outSlope: -0.0020720959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.9999847 + inSlope: 0.00046277064 + outSlope: 0.00046277064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 7.05633e-11 + inSlope: 0.0024894744 + outSlope: 0.0024894744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00020745613 + inSlope: 0.004677755 + outSlope: 0.004677755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.0005467916 + inSlope: 0.0034607411 + outSlope: 0.0034607411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.00015087803 + inSlope: -0.002191513 + outSlope: -0.002191513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0 + inSlope: -0.000000039517467 + outSlope: -0.000000039517467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0000000032931216 + inSlope: -0.23234817 + outSlope: -0.23234817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.035656836 + inSlope: -0.35737246 + outSlope: -0.35737246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.08726231 + inSlope: 0.00007519122 + outSlope: 0.00007519122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.08715575 + inSlope: 0.00007528052 + outSlope: 0.00007528052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0 + inSlope: 8.198142e-12 + outSlope: 8.198142e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 6.831783e-13 + inSlope: 0.000090589296 + outSlope: 0.000090589296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.000019509267 + inSlope: 0.00030984788 + outSlope: 0.00030984788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.000013216381 + inSlope: -0.00019196213 + outSlope: -0.00019196213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 1 + inSlope: -0.002250195 + outSlope: -0.002250195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.99936396 + inSlope: -0.012251615 + outSlope: -0.012251615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.99618536 + inSlope: 0.0000064373 + outSlope: 0.0000064373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.9961947 + inSlope: 0.0000071525437 + outSlope: 0.0000071525437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + 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.x + path: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + 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.z + path: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0.0073741963 + outSlope: 0.0073741963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0003072582 + inSlope: 0.0073741963 + outSlope: 0.007114588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00060369936 + inSlope: 0.007114588 + outSlope: 0.006849679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.00088910264 + inSlope: 0.006849679 + outSlope: 0.0065794634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0011632469 + inSlope: 0.0065794634 + outSlope: 0.0063039386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.001425911 + inSlope: 0.0063039386 + outSlope: 0.0060231355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.001676875 + inSlope: 0.0060231355 + outSlope: 0.0057370067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.0019159169 + inSlope: 0.0057370067 + outSlope: 0.0054455507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.002142815 + inSlope: 0.0054455507 + outSlope: 0.005148866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.002357351 + inSlope: 0.005148866 + outSlope: 0.004846799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.0027490647 + inSlope: 0.0045543313 + outSlope: 0.004278174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.0032501318 + inSlope: 0.0037405193 + outSlope: 0.0034789948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.0037666159 + inSlope: 0.0027236855 + outSlope: 0.0024816715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.003870019 + inSlope: 0.0024816715 + outSlope: 0.0022445319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.003963541 + inSlope: 0.0022445319 + outSlope: 0.0020122495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.004047385 + inSlope: 0.0020122495 + outSlope: 0.001784884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.004121755 + inSlope: 0.001784884 + outSlope: 0.0015623489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.004186853 + inSlope: 0.0015623489 + outSlope: 0.001344723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.004242883 + inSlope: 0.001344723 + outSlope: 0.0011319361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.004290047 + inSlope: 0.0011319361 + outSlope: 0.00092404423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.004358593 + inSlope: 0.0007210571 + outSlope: 0.0005228882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.00438038 + inSlope: 0.0005228882 + outSlope: 0.00032963927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.0044017346 + inSlope: -0.0000030827464 + outSlope: -0.000003082755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.0044000647 + inSlope: -0.000003082764 + outSlope: -0.000003082764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000064502165 + inSlope: 0.006340874 + outSlope: 0.006340874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.00025775286 + inSlope: 0.006340874 + outSlope: 0.005504127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00048709149 + inSlope: 0.005504127 + outSlope: 0.00429967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.00066624436 + inSlope: 0.00429967 + outSlope: 0.0033118108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0008042365 + inSlope: 0.0033118108 + outSlope: 0.002403024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.0009043625 + inSlope: 0.002403024 + outSlope: 0.0015733085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.000969917 + inSlope: 0.0015733085 + outSlope: 0.0008226713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.001004195 + inSlope: 0.0008226713 + outSlope: 0.00015110485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.001010491 + inSlope: 0.00015110485 + outSlope: -0.00044139515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.0009920995 + inSlope: -0.00044139515 + outSlope: -0.0009548058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.0008944343 + inSlope: -0.0013891602 + outSlope: -0.0017444269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.00064515043 + inSlope: -0.0022177561 + outSlope: -0.0023358078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.00025928306 + inSlope: -0.0022155258 + outSlope: -0.002017285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.00017522949 + inSlope: -0.002017285 + outSlope: -0.0017399752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.0001027306 + inSlope: -0.0017399752 + outSlope: -0.0013835845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.00004508122 + inSlope: -0.0013835845 + outSlope: -0.00094812445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0000055760142 + inSlope: -0.00094812445 + outSlope: -0.00043359218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: -0.00001249031 + inSlope: -0.00043359218 + outSlope: -0.00008090276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00001586126 + inSlope: -0.00008090276 + outSlope: 0.000023953238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: -0.00001486321 + inSlope: 0.000023953238 + outSlope: 0.0000789008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.0000080781665 + inSlope: 0.000083940155 + outSlope: 0.000039070837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.0000064502165 + inSlope: 0.000039070837 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -0.0000064502165 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.0000064502165 + inSlope: -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: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0128 + inSlope: 0.0026956843 + outSlope: 0.0026956843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.01291232 + inSlope: 0.0026956843 + outSlope: 0.002435274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.013013789 + inSlope: 0.002435274 + outSlope: 0.0021811295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.01310467 + inSlope: 0.0021811295 + outSlope: 0.0019341656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.01318526 + inSlope: 0.0019341656 + outSlope: 0.0016936688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.01325583 + inSlope: 0.0016936688 + outSlope: 0.0014599226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.013316659 + inSlope: 0.0014599226 + outSlope: 0.0012331298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.01336804 + inSlope: 0.0012331298 + outSlope: 0.0010128017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.01341024 + inSlope: 0.0010128017 + outSlope: 0.00079919834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.01344354 + inSlope: 0.00079919834 + outSlope: 0.0005500604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.01348938 + inSlope: 0.0005500886 + outSlope: 0.00025071148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.0135207195 + inSlope: 0.0002507117 + outSlope: -0.000009412761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.013519152 + inSlope: -0.000009412761 + outSlope: -0.00000938415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.013518761 + inSlope: -0.00000938415 + outSlope: -0.000009412774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.013518369 + inSlope: -0.000009412774 + outSlope: -0.000009412761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.013517977 + inSlope: -0.000009412761 + outSlope: -0.00000938415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.013517586 + inSlope: -0.00000938415 + outSlope: -0.000009412774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.0135171935 + inSlope: -0.000009412774 + outSlope: -0.00000938415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.013516802 + inSlope: -0.00000938415 + outSlope: -0.000009412774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.01351641 + inSlope: -0.000009412774 + outSlope: -0.000009412747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.013515627 + inSlope: -0.000009384164 + outSlope: -0.000009412774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.013515235 + inSlope: -0.000009412774 + outSlope: -0.000009412747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.013508182 + inSlope: -0.000009412747 + outSlope: -0.000009384164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.01350309 + inSlope: -0.000009412802 + outSlope: -0.000009412802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0.008081208 + outSlope: 0.008081208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.000336717 + inSlope: 0.008081208 + outSlope: 0.007460652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00064757746 + inSlope: 0.007460652 + outSlope: 0.0065725446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0009214335 + inSlope: 0.0065725446 + outSlope: 0.005630219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0011560259 + inSlope: 0.005630219 + outSlope: 0.004848219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.001358035 + inSlope: 0.004848219 + outSlope: 0.004120559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.001529725 + inSlope: 0.004120559 + outSlope: 0.0034471902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.0016733579 + inSlope: 0.0034471902 + outSlope: 0.002828159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0017911979 + inSlope: 0.002828159 + outSlope: 0.0022634165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.0018855069 + inSlope: 0.0022634165 + outSlope: 0.00175301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.001958549 + inSlope: 0.00175301 + outSlope: 0.0012969333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.002072705 + inSlope: 0.00054768176 + outSlope: 0.00025452042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.00208331 + inSlope: 0.00025452042 + outSlope: 0.00001569628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.002083964 + inSlope: 0.00001569628 + outSlope: -0.00016883962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.002076929 + inSlope: -0.00016883962 + outSlope: -0.00029904154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.002064469 + inSlope: -0.00029904154 + outSlope: -0.00037492972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.0020488468 + inSlope: -0.00037492972 + outSlope: -0.00039650183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.002017169 + inSlope: -0.00036376866 + outSlope: -0.00027672158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.0020056388 + inSlope: -0.00027672158 + outSlope: -0.00013533347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.0019983877 + inSlope: -0.000038695372 + outSlope: -0.00003869889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0019967752 + inSlope: -0.00003869889 + outSlope: -0.000038695372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.002 + inSlope: 0.0000018704009 + outSlope: 0.0000018704009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000064502165 + inSlope: 0.0006966121 + outSlope: 0.0006966121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.000022575288 + inSlope: 0.0006966121 + outSlope: 0.0005360263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00004490972 + inSlope: 0.0005360263 + outSlope: 0.0003898932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.00006115527 + inSlope: 0.0003898932 + outSlope: 0.00025821218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00007191411 + inSlope: 0.00025821218 + outSlope: 0.0001409832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.00007778841 + inSlope: 0.0001409832 + outSlope: 0.00003820605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.00007938033 + inSlope: 0.00003820605 + outSlope: -0.000050117982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.000077292076 + inSlope: -0.000050117982 + outSlope: -0.00012398997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.000072125826 + inSlope: -0.00012398997 + outSlope: -0.00018341038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.00006448373 + inSlope: -0.00018341038 + outSlope: -0.00022837786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.00005496799 + inSlope: -0.00022837786 + outSlope: -0.00025889315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.00002120062 + inSlope: -0.0002765673 + outSlope: -0.00026372616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.00001021204 + inSlope: -0.00026372616 + outSlope: -0.00023643233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.00000036068843 + inSlope: -0.00023643233 + outSlope: -0.0001946865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.000007751252 + inSlope: -0.0001946865 + outSlope: -0.00013245725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: -0.0000132703 + inSlope: -0.00013245725 + outSlope: -0.00006806683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.00001610642 + inSlope: -0.00006806683 + outSlope: 0.0000024538847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.00001590193 + inSlope: 0.0000024538604 + outSlope: 0.000046910136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.0000139473395 + inSlope: 0.000046910136 + outSlope: 0.000059171485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: -0.000009048511 + inSlope: 0.000058400434 + outSlope: 0.000044597233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000007190292 + inSlope: 0.000044597233 + outSlope: 0.0000005074828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.0000064502165 + inSlope: 0.00000050748423 + outSlope: 0.00000050748423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0128 + inSlope: -0.00519001 + outSlope: -0.00519001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.01301625 + inSlope: -0.00519001 + outSlope: -0.004954319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0132226795 + inSlope: -0.004954319 + outSlope: -0.0047188858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.0134193 + inSlope: -0.0047188858 + outSlope: -0.004484138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.013606139 + inSlope: -0.004484138 + outSlope: -0.0042492207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.01378319 + inSlope: -0.0042492207 + outSlope: -0.0040151877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.013950489 + inSlope: -0.0040151877 + outSlope: -0.003780957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0.014108029 + inSlope: -0.003780957 + outSlope: -0.0035472088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.01425583 + inSlope: -0.0035472088 + outSlope: -0.0033139237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.01439391 + inSlope: -0.0033139237 + outSlope: -0.0030808644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: -0.01452228 + inSlope: -0.0030808644 + outSlope: -0.0028480897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.01485123 + inSlope: -0.0024203956 + outSlope: -0.0022228737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: -0.014943849 + inSlope: -0.0022228737 + outSlope: -0.002033757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.015028589 + inSlope: -0.002033757 + outSlope: -0.0018530264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.015105799 + inSlope: -0.0018530264 + outSlope: -0.0016802518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: -0.015175809 + inSlope: -0.0016802518 + outSlope: -0.001515855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.0152389705 + inSlope: -0.001515855 + outSlope: -0.001359815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.01534614 + inSlope: -0.0012122452 + outSlope: -0.0010725684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.01539083 + inSlope: -0.0010725684 + outSlope: -0.00094150496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: -0.01546416 + inSlope: -0.000818425 + outSlope: -0.000650768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.015491275 + inSlope: -0.000650768 + outSlope: -0.0006507402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.015599999 + inSlope: -0.000009527243 + outSlope: -0.000009527243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.001062566 + inSlope: 0.00024928807 + outSlope: 0.00024928807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.0012350089 + inSlope: 0.0010470717 + outSlope: 0.0011318173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.001691516 + inSlope: 0.000408769 + outSlope: 0.0001869606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.0017044569 + inSlope: -0.000008500822 + outSlope: -0.000021121461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.0016993061 + inSlope: -0.0000017774173 + outSlope: -0.0000017774173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.02032738 + inSlope: 0.0007359695 + outSlope: 0.0007359695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.02043041 + inSlope: -0.00011014937 + outSlope: -0.00011009219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.020392213 + inSlope: -0.000011901867 + outSlope: -0.00001190185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.020384276 + inSlope: -0.000011901867 + outSlope: -0.000011901833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.02037138 + inSlope: -0.0000119019005 + outSlope: -0.0000119019005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0019184101 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.0019184101 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: -0.0019184101 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.0019184101 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.0019184101 + inSlope: -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: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0001543089 + inSlope: 0.0006977713 + outSlope: 0.0006977713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0001833827 + inSlope: 0.0006977713 + outSlope: 0.0014518846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00024387789 + inSlope: 0.0014518846 + outSlope: 0.0025163542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.00034872597 + inSlope: 0.0025163542 + outSlope: 0.003353376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00048845 + inSlope: 0.003353376 + outSlope: 0.004085812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.0006586921 + inSlope: 0.004085812 + outSlope: 0.004713647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.0008550941 + inSlope: 0.004713647 + outSlope: 0.0052368944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0013089459 + inSlope: 0.005655549 + outSlope: 0.0059696184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.003495689 + inSlope: 0.004716823 + outSlope: 0.004089551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.0039768848 + inSlope: 0.0015802066 + outSlope: 0.0006215283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.0040021804 + inSlope: -0.0000018024461 + outSlope: -0.0000018095935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.004 + inSlope: -0.0000018024513 + outSlope: -0.0000018024513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.016607521 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.016607521 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.016607521 + inSlope: -0 + outSlope: 0.009530154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.01700461 + inSlope: 0.009530154 + outSlope: 0.0076634204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.017323919 + inSlope: 0.0076634204 + outSlope: 0.0058934507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.01756948 + inSlope: 0.0058934507 + outSlope: 0.004245128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.01774636 + inSlope: 0.004245128 + outSlope: 0.0027182298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.01791434 + inSlope: 0.0013132947 + outSlope: 0.000029983526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.016607521 + inSlope: -0.005883842 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.016607521 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.016607521 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.016607521 + inSlope: -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: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.014694139 + inSlope: 0.004159212 + outSlope: 0.004159212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.01486744 + inSlope: 0.004159212 + outSlope: 0.0039177416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.015030679 + inSlope: 0.0039177416 + outSlope: 0.0036780168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.01518393 + inSlope: 0.0036780168 + outSlope: 0.0034394355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.01532724 + inSlope: 0.0034394355 + outSlope: 0.0032023152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.01546067 + inSlope: 0.0032023152 + outSlope: 0.002966394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.01558427 + inSlope: 0.002966394 + outSlope: 0.0027324206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.01580227 + inSlope: 0.0024995888 + outSlope: 0.0022682482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.01636673 + inSlope: 0.00086088263 + outSlope: 0.0006747433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.01646122 + inSlope: 0.00045913673 + outSlope: 0.00021306028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.016496347 + inSlope: -0.0000018310564 + outSlope: -0.0000018024409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.016494138 + inSlope: -0.0000018310616 + outSlope: -0.0000018310616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0 + inSlope: -0 + outSlope: -0.004027328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0.0001678053 + inSlope: -0.004027328 + outSlope: -0.0036963199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0003218187 + inSlope: -0.0036963199 + outSlope: -0.0033790737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.0004626134 + inSlope: -0.0033790737 + outSlope: -0.0030759007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: -0.0005907759 + inSlope: -0.0030759007 + outSlope: -0.0027867854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.000811548 + inSlope: -0.0025117444 + outSlope: -0.0022507622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0011272919 + inSlope: -0.0015522222 + outSlope: -0.0013475056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0013868649 + inSlope: -0.0003083752 + outSlope: -0.0002161934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -0.0014005044 + inSlope: 0.0000005507458 + outSlope: 0.0000005507474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.0014 + inSlope: 0.000000550749 + outSlope: 0.000000550749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.02889578 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.02914766 + inSlope: 0.002181644 + outSlope: -0.00024810797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.029137323 + inSlope: -0.00024810797 + outSlope: -0.00024805058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.029126987 + inSlope: -0.00024805058 + outSlope: -0.00024810797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.02911665 + inSlope: -0.00024810797 + outSlope: -0.0016014866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.02904992 + inSlope: -0.0016014866 + outSlope: -0.0017402449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.028912589 + inSlope: -0.0015557101 + outSlope: -0.000008583064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.028911158 + inSlope: -0.000008583064 + outSlope: -0.000008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.028908297 + inSlope: -0.000008583064 + outSlope: -0.000008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.028903648 + inSlope: -0.0000085830525 + outSlope: -0.000008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.02889578 + inSlope: -0.000008583102 + outSlope: -0.000008583102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00334109 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.00334109 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.00334109 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00334109 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.00334109 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.00334109 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00334109 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00334109 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00334109 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.00334109 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.00334109 + inSlope: -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: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: -0.0068442523 + outSlope: -0.0068442523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.0002851772 + inSlope: -0.0068442523 + outSlope: -0.005743963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.000524509 + inSlope: -0.005743963 + outSlope: -0.0042117345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.0006999979 + inSlope: -0.0042117345 + outSlope: -0.0030435415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0008268121 + inSlope: -0.0030435415 + outSlope: -0.0020615587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.0009127104 + inSlope: -0.0020615587 + outSlope: -0.0012657593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.00096545037 + inSlope: -0.0012657593 + outSlope: -0.0006561775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.001002491 + inSlope: -0.00023279595 + outSlope: 0.000004414917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0009960511 + inSlope: -0.0000018954294 + outSlope: -0.000001895424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.0009999847 + inSlope: -0.0000014054829 + outSlope: -0.0000014054829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.02889578 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.02889578 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.02889578 + inSlope: -0 + outSlope: 0.0025218776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.029000858 + inSlope: 0.0025218776 + outSlope: 0.0020781895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.02908745 + inSlope: 0.0020781895 + outSlope: 0.001645432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.029156009 + inSlope: 0.001645432 + outSlope: 0.0010262488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.02919877 + inSlope: 0.0010262488 + outSlope: 0.0010262491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.029229786 + inSlope: -0.00028186783 + outSlope: -0.00028186804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.02889578 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.02889578 + inSlope: -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: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.007478603 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.007478603 + inSlope: -0 + outSlope: -0.0050884006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0076906197 + inSlope: -0.0050884006 + outSlope: -0.0046238853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.007883281 + inSlope: -0.0046238853 + outSlope: -0.0041798395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.008057442 + inSlope: -0.0041798395 + outSlope: -0.0037579974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.008214025 + inSlope: -0.0037579974 + outSlope: -0.0033583685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.008353957 + inSlope: -0.0033583685 + outSlope: -0.0029809002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.008587562 + inSlope: -0.0026256167 + outSlope: -0.0022926098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0090719955 + inSlope: -0.0000045204206 + outSlope: -0.0000045347124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.009078602 + inSlope: -0.0000045347383 + outSlope: -0.0000045347383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0 + inSlope: -0 + outSlope: 0.003490808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0001454504 + inSlope: 0.003490808 + outSlope: 0.0031351973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.0002760836 + inSlope: 0.0031351973 + outSlope: 0.0027902406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.0003923436 + inSlope: 0.0027902406 + outSlope: 0.0024622139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.0004949359 + inSlope: 0.0024622139 + outSlope: 0.0021511347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00058456644 + inSlope: 0.0021511347 + outSlope: 0.0018569845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.000727765 + inSlope: 0.0015797797 + outSlope: 0.0013195032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.000862992 + inSlope: 0.0008497765 + outSlope: 0.00064031093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.000924403 + inSlope: 0.00011355573 + outSlope: 0.000035895093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.0009316659 + inSlope: -0.000002726915 + outSlope: -0.0000027269073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.0009244445 + inSlope: -0.0000066858784 + outSlope: -0.0000066858784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03785232 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.038072288 + inSlope: 0.005279275 + outSlope: 0.0031698975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.03820437 + inSlope: 0.0031698975 + outSlope: -0.000021572117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.03820347 + inSlope: -0.000021572117 + outSlope: -0.000021629337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.03820257 + inSlope: -0.000021629337 + outSlope: -0.000021572103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.03820167 + inSlope: -0.000021572103 + outSlope: -0.0020376209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.038116768 + inSlope: -0.0020376209 + outSlope: -0.0024578464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.03790915 + inSlope: -0.0025250267 + outSlope: -0.002239436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.037723668 + inSlope: -0.0011060153 + outSlope: 0.0007329365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.03785232 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.03785232 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.03785232 + inSlope: -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: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00204458 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0.00204458 + inSlope: -0 + outSlope: -0.001629384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.002112471 + inSlope: -0.001629384 + outSlope: -0.0022606556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.002206665 + inSlope: -0.0022606556 + outSlope: -0.0022633201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: -0.0023009698 + inSlope: -0.0022633201 + outSlope: -0.0024091445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.002401351 + inSlope: -0.0024091445 + outSlope: -0.0024978954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.00250543 + inSlope: -0.0024978954 + outSlope: -0.0025295294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: -0.002715165 + inSlope: -0.0025041127 + outSlope: -0.0024215973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: -0.002998036 + inSlope: -0.0020853158 + outSlope: -0.0018315044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.0032160638 + inSlope: -0.0007277294 + outSlope: -0.00034435256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.003229336 + inSlope: 0.000002346041 + outSlope: 0.0000023460343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.0032267931 + inSlope: 0.0000023460477 + outSlope: 0.0000023460477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + 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.x + path: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000270677 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.000270677 + inSlope: 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: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + 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.z + path: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + 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.x + path: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000270677 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.000270677 + inSlope: 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: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0134622 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.0134622 + inSlope: 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: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + 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.x + path: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000270677 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.000270677 + inSlope: 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0132667 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.0132667 + inSlope: 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + 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.x + path: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000270677 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.000270677 + inSlope: 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: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00500674 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.00500674 + inSlope: 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: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + 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.x + path: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000270677 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.000270677 + inSlope: 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: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00132848 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.00132848 + inSlope: 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: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + 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.x + path: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000270677 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.000270677 + inSlope: 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: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00637024 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.00637024 + inSlope: 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: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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_LocalScale.y + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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_LocalScale.y + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -89.98021 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -89.98021 + 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: wall_high_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -3.6226315 + outSlope: -3.6226315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.24030551 + inSlope: 4.514025 + outSlope: 4.462463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0 + inSlope: -5.314362 + outSlope: -5.314361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.00000010301978 + inSlope: -3.208968 + outSlope: -3.2091043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.17342661 + inSlope: -1.9157265 + outSlope: -1.9156331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -60.728905 + outSlope: -60.728905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -14.648964 + inSlope: -12.580389 + outSlope: -12.600427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -15.9896755 + inSlope: 0.08959008 + outSlope: 0.089590065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -15.991689 + inSlope: 0.028882023 + outSlope: 0.015888974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -15.992033 + inSlope: -0.018484494 + outSlope: 0.0062713623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -15.998239 + inSlope: -0.0060392106 + outSlope: -0.0060326695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -16.000002 + inSlope: -0.0059443866 + outSlope: -0.0059443866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -37.6864 + outSlope: -37.6864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.91924405 + inSlope: 17.071388 + outSlope: 17.086706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0 + inSlope: -18.550417 + outSlope: -18.550413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.0000003594694 + inSlope: -11.197948 + outSlope: -11.198138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.6051045 + inSlope: -6.684329 + outSlope: -6.6840363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block01Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0.25979432 + outSlope: 0.25979432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.074032016 + inSlope: -0.2821394 + outSlope: -0.2771346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.029897064 + inSlope: -0.32348657 + outSlope: -0.297625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0 + inSlope: -0.00015694757 + outSlope: -0.00020599362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 22.989796 + outSlope: 22.989796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 9.961706 + inSlope: 1.8018627 + outSlope: 1.8027191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 7.6930647 + inSlope: -35.757454 + outSlope: -35.748528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 6.000003 + inSlope: -0.000029427669 + outSlope: -0.0000064373007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 6.000001 + inSlope: -0.000002145767 + outSlope: -0.000002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -4.656135 + outSlope: -4.656135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.4214958 + inSlope: 1.6515131 + outSlope: 1.6523981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.2213241 + inSlope: 1.4874376 + outSlope: 1.4922098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0 + inSlope: 0.0018833708 + outSlope: 0.0018539426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block02Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -2.4769459 + outSlope: -2.4769459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.61412364 + inSlope: 6.3925676 + outSlope: 6.178126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.14558016 + inSlope: -2.9848318 + outSlope: -2.9932015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -31.199835 + outSlope: -31.199835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -13.043175 + inSlope: -13.085697 + outSlope: -13.2005005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -15.905288 + inSlope: -2.2605057 + outSlope: -2.2490902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -15.98395 + inSlope: -0.016010284 + outSlope: -0.016061781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -16.000002 + inSlope: -0.016061781 + outSlope: -0.016061781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -38.385914 + outSlope: -38.385914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -2.6490064 + inSlope: 27.572643 + outSlope: 27.638708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.51087004 + inSlope: -10.455856 + outSlope: -10.452976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block03Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 6.922023 + outSlope: 6.922023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 1.987408 + inSlope: -7.844804 + outSlope: -7.5488124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.051222708 + inSlope: -1.3098357 + outSlope: -1.3108149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -5.2076787e-11 + inSlope: -2.8735518 + outSlope: -2.8734741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -2.7079927e-11 + inSlope: 1.6247956e-10 + outSlope: 1.4998111e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 43.41305 + outSlope: 43.41305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 23.288399 + inSlope: 14.489665 + outSlope: 14.665856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 25.96804 + inSlope: 1.1676408 + outSlope: 1.1665123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 25.97448 + inSlope: 0.010123114 + outSlope: -0.0001373291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 25.98673 + inSlope: 0.0245018 + outSlope: 0.024476267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 25.999996 + inSlope: 0.024529086 + outSlope: 0.024529086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -34.799484 + outSlope: -34.799484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -1.9895601 + inSlope: 15.587334 + outSlope: 15.752996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.31491637 + inSlope: -6.877079 + outSlope: -6.8768682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0 + inSlope: 5.898244 + outSlope: 5.898102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 3.8825128e-19 + inSlope: -2.3295077e-18 + outSlope: -2.1503145e-18 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block04Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 7.848141 + inSlope: 29.794325 + outSlope: 29.771427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 17.976957 + inSlope: 0.018466186 + outSlope: 0.018424986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 18.000006 + inSlope: 0.018479917 + outSlope: 0.018479917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block05Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 3.5657442 + inSlope: 7.8999147 + outSlope: 7.899129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.63495076 + inSlope: 12.075701 + outSlope: 12.07655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block06Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.000000008085958 + inSlope: 0.28533053 + outSlope: 0.28564402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.02377272 + inSlope: 0.536167 + outSlope: 0.5361498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.062697574 + inSlope: 0.39773345 + outSlope: 0.3952186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.017355554 + inSlope: -0.2520693 + outSlope: -0.25209054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0000003773639 + inSlope: -26.625343 + outSlope: -26.62645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -4.0868387 + inSlope: -40.974022 + outSlope: -40.896156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -10.012258 + inSlope: 0.008665466 + outSlope: 0.008669909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -10 + inSlope: 0.008659811 + outSlope: 0.008659811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0 + inSlope: 0.0032958991 + outSlope: 0.001647949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0 + inSlope: -0.004943847 + outSlope: -0.03054199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/block07Pg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg15 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + 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: wall_high_model_skeleton/wall_root/sdwPg4 + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/arch/shake.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/arch/shake.anim.meta new file mode 100644 index 000000000..613a7072a --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/arch/shake.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1102bcbac87470b48b0615389d924561 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/bop.anim b/Assets/Resources/Models/Games/Airboarder/Animations/bop.anim new file mode 100644 index 000000000..6dabe364a --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/bop.anim @@ -0,0 +1,15893 @@ +%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: bop + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7069847, y: 0, z: 0, w: 0.70722884} + 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.2083334 + value: {x: -0.7069847, y: 0, z: 0, w: 0.70722884} + 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: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.2083334 + 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: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.7071081, w: 0.70710546} + 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.2083334 + value: {x: 0, y: 0, z: -0.7071081, w: 0.70710546} + 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: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.4125874, y: -0.24122378, z: 0.3984937, w: 0.7828061} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.00006502325, y: -0.00006502325, z: 0.000780279, w: -0.000260093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.41101897, y: -0.26620075, z: 0.49137577, w: 0.7202433} + inSlope: {x: 0, y: -0.00019506975, z: 0.0005852092, w: -0.0006502325} + outSlope: {x: 0.000333786, y: 0.00009536743, z: 0.00047683716, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.33608487, y: -0.23253259, z: 0.6073119, w: 0.68128395} + inSlope: {x: 0.00042915344, y: 0.00009536743, z: 0.0005722046, w: -0.00009536743} + 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.125 + value: {x: -0.3340033, y: -0.23076215, z: 0.60845613, w: 0.68188846} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.003576272, y: -0.001788136, z: -0.0028610176, w: 0.0014305088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.37317735, y: -0.25637758, z: 0.56730723, w: 0.6878748} + inSlope: {x: -0.002145763, y: -0.0014305088, z: -0.0028610176, w: 0.0014305088} + outSlope: {x: -0.0028610257, y: -0.00071525644, z: -0.0071525644, w: 0.0042915386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.41133493, y: -0.25914955, z: 0.46802723, w: 0.73796725} + inSlope: {x: -0.0042915386, y: -0.0014305129, z: -0.005006795, w: 0.0057220515} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.86238986, y: -0.09351303, z: -0.06320791, w: 0.49350157} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.000260093, y: -0.000048767437, z: -0.000032511623, w: 0.0005852092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.7965924, y: -0.07446143, z: -0.064192876, w: 0.596469} + inSlope: {x: -0.000520186, y: 0.00045516272, z: -0.00016255812, w: 0.0006502325} + outSlope: {x: -0.0012715657, y: -0.001589457, z: -0.0011920928, w: 0.0014305114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.6352626, y: -0.03864084, z: -0.054173633, w: 0.7694242} + inSlope: {x: -0.00047683713, y: 0.00111262, z: 0.0010728835, w: 0.00063578284} + outSlope: {x: -0.0009536743, y: -0.00023841858, z: 0.00011920929, w: 0.00071525574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.5454247, y: -0.02606672, z: -0.047505513, w: 0.8364065} + inSlope: {x: -0.00071525574, y: 0.00059604645, z: 0.0003874302, w: 0.00071525574} + 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.125 + value: {x: 0.54857856, y: -0.02594611, z: -0.048160464, w: 0.8343075} + inSlope: {x: 0, y: -0.00017881411, z: 0.00017881411, w: 0} + outSlope: {x: 0.01144407, y: -0.007510171, z: -0.0073313573, w: -0.007152544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.6814647, y: -0.047128886, z: -0.059489608, w: 0.72790504} + inSlope: {x: 0.005722035, y: 0.0064372895, z: 0.0028610176, w: -0.005722035} + outSlope: {x: 0.0028610257, y: -0.008583077, z: -0.01001359, w: -0.0014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.81977034, y: -0.079990625, z: -0.06436482, w: 0.5634138} + inSlope: {x: 0.011444103, y: 0.010728846, z: 0.01001359, w: -0.017166154} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.12533098, y: 0.5239838, z: 0.74475753, w: 0.39378852} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.00015326908, y: -0.0008174351, z: 0.00020435877, w: 0.00091961445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.15058643, y: 0.31658942, z: 0.77467865, w: 0.52627736} + inSlope: {x: -0.00012772423, y: -0.0010728835, z: 0.00020435877, w: 0.00040871755} + outSlope: {x: 0.00029260459, y: -0.0011704183, z: 0, w: 0.0005201859} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.10504305, y: 0.12248998, z: 0.7764678, w: 0.60914695} + inSlope: {x: 0.00037388364, y: -0.0012842091, z: 0.00013004648, w: 0.0005201859} + outSlope: {x: 0.00017881411, y: -0.00035762822, 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.0833334 + value: {x: -0.10302603, y: 0.117362455, z: 0.7759289, w: 0.6111842} + inSlope: {x: 0.00017881411, y: -0.00017881411, z: 0, w: 0} + outSlope: {x: -0.00035762822, y: 0.00017881411, 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.125 + value: {x: -0.107301824, y: 0.12244736, z: 0.7749861, w: 0.6106468} + inSlope: {x: -0.00035762822, y: 0.00035762822, z: 0, w: 0} + outSlope: {x: -0.003039831, y: 0.008404239, z: 0, w: -0.0028610176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.14521165, y: 0.23920768, z: 0.7763928, w: 0.56471896} + inSlope: {x: -0.0025033902, y: 0.008225425, z: -0.0014305088, w: -0.004291526} + outSlope: {x: -0.0010728847, y: 0.0139475, z: -0.0014305129, w: -0.0057220515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.15215224, y: 0.4273284, z: 0.762352, w: 0.46158385} + inSlope: {x: -0.00071525644, y: 0.012159359, z: -0.0028610257, w: -0.007867821} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.38922656, y: 0.7619823, z: -0.08407469, w: 0.51070243} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.00033880534, y: 0.00052703056, z: -0.000037645037, w: -0.00052703056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.3043043, y: 0.8683462, z: -0.12685359, w: 0.37051576} + inSlope: {x: 0.00033880534, y: 0.0003011603, z: -0.0002070477, w: -0.00052703056} + outSlope: {x: 0.00047683704, y: 0.00047683704, z: -0.00041723243, w: -0.0009536741} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.27701163, y: 0.91122526, z: -0.15722582, w: 0.2611765} + inSlope: {x: 0.00023841852, y: 0.0009536741, z: -0.00047683704, w: -0.0009536741} + outSlope: {x: 0, y: 0, z: -0.00071525644, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.27362132, y: 0.9154405, z: -0.16098209, w: 0.24735568} + inSlope: {x: 0.00071525644, y: 0, z: -0.00035762822, w: -0.00035762822} + outSlope: {x: 0, y: 0, z: -0.00035762822, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.27226254, y: 0.9171689, z: -0.16262615, w: 0.24130265} + inSlope: {x: 0, y: 0, z: -0.00035762822, w: 0} + outSlope: {x: -0.0028610176, y: 0, z: 0.003576272, w: 0.0110864425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.30880606, y: 0.86056846, z: -0.12161666, w: 0.38635495} + inSlope: {x: -0.0028610176, y: -0.004291526, z: 0.0025033902, w: 0.009298307} + outSlope: {x: -0.0028610257, y: -0.0057220515, z: 0.0028610257, w: 0.0064373077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.35741645, y: 0.79305655, z: -0.0921694, w: 0.4845818} + inSlope: {x: -0.0035762822, y: -0.0071525644, z: 0.0016093269, w: 0.007867821} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9968011, y: -0.000002574996, z: -0.07992289, w: -0.000032662356} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.001560558, y: 0.0000007570303, z: -0.019441951, w: 0.000017430548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.99435776, y: -0.0002792252, z: 0.106045574, w: 0.002618624} + inSlope: {x: 0.002080744, y: 0.00004991042, z: -0.019653276, w: 0.000022859735} + outSlope: {x: -0.000260093, y: -0.0000093978915, z: 0.0028447672, w: 0.000016763806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.8496698, y: -0.002794213, z: 0.5272884, w: 0.0045028897} + inSlope: {x: -0.001560558, y: -0.00002336773, z: 0.0024708833, w: 0.000008127906} + outSlope: {x: -0.0017881391, y: -0.04803668, z: 0.0032186504, w: -0.029783692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.74686086, y: -0.0041686255, z: 0.6649508, w: 0.004681881} + inSlope: {x: -0.0025033948, y: -0.040621493, z: 0.0025033948, w: -0.03614835} + outSlope: {x: -0.0014305129, y: 0.00007823117, z: 0.0014305129, w: -0.00011175882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.7362501, y: -0.0029257424, z: 0.67669564, w: 0.0031829898} + inSlope: {x: -0.0014305129, y: 0.00009499499, z: 0, w: -0.00011175882} + outSlope: {x: 0.018596614, y: 0.0001788136, z: -0.020027122, w: -0.0000223517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.9309032, y: -0.00086876063, z: 0.36525828, w: 0.0022136914} + inSlope: {x: 0.010013561, y: 0.00010617057, z: -0.024318649, w: -0.00010058265} + outSlope: {x: 0.008583077, y: 0.00010058293, z: -0.020742437, w: -0.00011175882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.99866843, y: -0.000022480306, z: 0.05158596, w: 0.00043204488} + inSlope: {x: 0.0014305129, y: 0.000017244036, z: -0.022888206, w: -0.000141794} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.21978489, y: 0.4735834, z: 0.6553652, w: 0.5458111} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0006827441, y: -0.000520186, z: -0.0001300465, w: 0.0001300465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.32732883, y: 0.40059716, z: 0.6368745, w: 0.5716368} + inSlope: {x: -0.00084530225, y: -0.00045516272, z: -0.0001300465, w: 0.000260093} + outSlope: {x: -0.0011920929, y: -0.001013279, z: -0.00035762787, w: 0.00059604645} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: -0.5184243, y: 0.22580318, z: 0.5263677, w: 0.6349696} + inSlope: {x: -0.0011920929, y: -0.0009834766, z: -0.000834465, w: 0.00035762787} + outSlope: {x: -0.00047683716, y: -0.0010728836, z: -0.00047683716, w: 0.00047683716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.5540834, y: 0.18356937, z: 0.48961788, w: 0.6477408} + inSlope: {x: -0.0009536743, y: -0.0009536743, z: -0.0011920929, w: 0.00047683716} + 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.125 + value: {x: -0.55868584, y: 0.17769396, z: 0.48447967, w: 0.6492877} + inSlope: {x: -0.0014305129, y: -0.00035762822, z: -0.00071525644, w: 0} + outSlope: {x: 0.010013561, y: 0.010013561, z: 0.008583052, w: -0.004291526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.4407691, y: 0.30513275, z: 0.58522266, w: 0.6083841} + inSlope: {x: 0.010728816, y: 0.010013561, z: 0.007152544, w: -0.004291526} + outSlope: {x: 0.009298334, y: 0.008583077, z: 0.0042915386, w: -0.0028610257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.29651344, y: 0.42120978, z: 0.64521, w: 0.56423944} + inSlope: {x: 0.011444103, y: 0.01001359, z: 0.0028610257, w: -0.0057220515} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08166181, y: -0.025835227, z: -0.046427187, w: 0.99524295} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.00024835268, y: 0.0005488594, z: 0.000014901161, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.019908525, y: 0.11270034, z: -0.051216863, w: 0.9921084} + inSlope: {x: 0.00023841858, y: 0.00057617825, z: -0.000054637592, w: -0.00007947286} + outSlope: {x: 0.00020435873, y: 0.0004342623, z: 0.000025544841, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0.00052716443, y: 0.15434979, z: -0.048718624, w: 0.98681426} + inSlope: {x: 0.0002155346, y: 0.00045980714, z: 0.000025544841, w: 0} + outSlope: {x: -0.00043585937, y: -0.0010728847, 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.125 + value: {x: -0.011963941, y: 0.12699483, z: -0.049752444, w: 0.9905825} + inSlope: {x: -0.00045821114, y: -0.0010728847, z: -0.000044703527, w: 0} + outSlope: {x: -0.0020563563, y: -0.004291526, z: -0.0000894068, w: 0.0014305088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.0402022, y: 0.06499953, z: -0.051841184, w: 0.9957265} + inSlope: {x: -0.0019669496, y: -0.0046491534, z: -0.0003576272, w: 0} + outSlope: {x: -0.002056362, y: -0.0044703525, z: 0.00035762822, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.068738304, y: 0.0024351156, z: -0.049046103, w: 0.9964255} + inSlope: {x: -0.0021457693, y: -0.004604463, 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: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.17813605, y: 0.50630116, z: -0.06551844, w: 0.8412099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.00023841858, y: -0.00076293945, z: 0.000047683716, w: 0.00038146973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.13506977, y: 0.34414458, z: -0.04760271, w: 0.9279303} + inSlope: {x: 0.00019073486, y: -0.00081062317, z: 0.00013113022, w: 0.0002861023} + outSlope: {x: 0.00021457668, y: -0.0007152556, z: 0.00005364417, w: 0.00042915336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.10741064, y: 0.23402047, z: -0.03489201, w: 0.96564996} + inSlope: {x: 0.00019669528, y: -0.0007510184, z: 0.00013411042, 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.0833334 + value: {x: -0.107100606, y: 0.2328032, z: -0.03510565, w: 0.9659709} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.00071525644, y: 0.0035762822, z: -0.00035762822, w: -0.0014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.11811633, y: 0.27806368, z: -0.03987295, w: 0.9524386} + inSlope: {x: -0.0005364423, y: 0.0035762822, z: -0.00017881411, w: -0.0014305129} + outSlope: {x: -0.0016093224, y: 0.005722035, z: -0.0010728815, w: -0.0028610176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.14250085, y: 0.3748031, z: -0.050773606, w: 0.9146793} + inSlope: {x: -0.002145763, y: 0.0064372895, z: -0.00053644076, w: -0.0028610176} + outSlope: {x: -0.0017881411, y: 0.0071525644, z: -0.0010728847, w: -0.0014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.1670009, y: 0.4665506, z: -0.06106927, w: 0.86643624} + inSlope: {x: -0.0017881411, y: 0.0064373077, z: -0.00062584935, w: -0.0042915386} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.13048416, y: -0.5716842, z: 0.7492897, w: 0.3077597} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0002861023, y: -0.0008583068, z: -0.0008583068, w: 0.0008583068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.09751755, y: -0.63477796, z: 0.6785111, w: 0.3566091} + inSlope: {x: 0.0005722046, y: -0.0008583068, z: -0.0011444092, w: 0.0007152557} + outSlope: {x: 0.00011920929, y: 0.00071525574, z: 0.00047683716, w: -0.00023841858} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.07716271, y: -0.5961906, z: 0.7147062, w: 0.3574881} + inSlope: {x: 0.00047683716, y: 0.00047683716, z: 0.00023841858, w: 0.00023841858} + outSlope: {x: -0.00006502325, y: 0.000780279, z: 0.000780279, w: 0.0003901395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.04405974, y: -0.45878226, z: 0.81516063, w: 0.3508428} + inSlope: {x: 0.00045516272, y: 0.00084530225, z: 0.0006502325, w: -0.0001300465} + outSlope: {x: -0.00011920923, y: 0.00047683693, z: 0.00047683693, w: -0.0007152554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.042073682, y: -0.4380739, z: 0.8275105, w: 0.34863663} + inSlope: {x: 0.0003576277, y: 0.00047683693, z: 0, w: 0.00047683693} + outSlope: {x: -0.00089407054, y: -0.00035762822, z: 0.00071525644, w: -0.00035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.063811705, y: -0.4498126, z: 0.8235897, w: 0.33955377} + inSlope: {x: -0.00089407054, y: -0.00071525644, z: 0, w: -0.00035762822} + outSlope: {x: -0.0007152544, y: -0.0028610176, z: -0.0028610176, w: 0.0014305088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.10303715, y: -0.48974574, z: 0.80309355, w: 0.32337773} + inSlope: {x: -0.001788136, y: -0.002145763, z: -0.004291526, w: 0} + outSlope: {x: -0.0028610257, y: -0.0042915386, z: -0.0028610257, w: -0.0014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.12871465, y: -0.5380341, z: 0.7738363, w: 0.30843037} + inSlope: {x: -0.0017881411, y: -0.0042915386, z: -0.0014305129, w: -0.0014305129} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0049119852, y: 0.3921796, z: 0.011520407, w: 0.91980344} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.000011175871, y: 0.0008940697, z: 0.0000055879354, w: -0.00071525574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.0058726417, y: 0.4467023, z: 0.011760831, w: 0.8945861} + inSlope: {x: -0.000019557774, y: 0.0010728836, z: 0.0000055879354, w: -0.00035762787} + outSlope: {x: -0.000012572855, y: 0.00031292439, z: 0.000011175871, w: -0.00017881393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.00868549, y: 0.5165958, z: 0.014392954, w: 0.8560644} + inSlope: {x: -0.000011175871, y: 0.00035762787, z: 0.000012572855, w: -0.00017881393} + outSlope: {x: 0.000008940695, y: 0, z: -0.0000044703474, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.008284678, y: 0.50523424, z: 0.014148368, w: 0.86282647} + inSlope: {x: 0.0000044703474, y: -0.00028610224, z: -0.000008940695, 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.0833334 + value: {x: -0.008235592, y: 0.50285774, z: 0.014153728, w: 0.86421406} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.000044703527, y: -0.0028610257, z: -0.000044703527, w: 0.0014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.0074808006, y: 0.47420192, z: 0.013886832, w: 0.88027483} + inSlope: {x: 0.00006705529, y: -0.0021457693, z: -0.000044703527, w: 0.0014305129} + outSlope: {x: 0.0000447034, y: -0.003576272, z: -0.0000447034, w: 0.0028610176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.006123423, y: 0.42373163, z: 0.01308804, w: 0.9056725} + inSlope: {x: 0.0001117585, y: -0.004291526, z: -0.000067055094, w: 0.0014305088} + outSlope: {x: 0.00007823117, y: -0.0014305129, z: -0.000044703527, w: 0.0014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.005124278, y: 0.390366, z: 0.012084135, w: 0.9205661} + inSlope: {x: 0.00010058293, y: -0.0014305129, z: -0.00006705529, 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000000009313226, y: 0.000000010710211, z: 0.000000005587936, w: 1} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.000019000658, y: 0.000023577226, z: -0.0011574285, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.0015790785, y: 0.002486945, z: -0.11236874, w: 0.9936622} + inSlope: {x: 0.000012373285, y: 0.000027939675, z: -0.001175063, w: -0.00020435877} + outSlope: {x: 0.00003153192, y: 0.0000271414, z: -0.00091961445, w: -0.00020435877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 0.00438272, y: 0.0054691792, z: -0.19902782, w: 0.9799687} + inSlope: {x: 0.000023948292, y: 0.000036720718, z: -0.00091961445, w: -0.00020435877} + outSlope: {x: -0.000015646221, y: -0.000025704505, z: 0.0010371209, w: 0.00028610232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00168845, y: 0.0024715555, z: -0.05648706, w: 0.99839884} + inSlope: {x: -0.000022072347, y: -0.000018440189, z: 0.0010728837, w: 0} + outSlope: {x: -0.000022351738, y: -0.00003576278, z: 0.00078678114, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.0000590497, y: 0.000094801384, z: -0.0020114193, w: 0.999998} + inSlope: {x: -0.000024167815, y: -0.000032479868, z: 0.000778958, 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08459244, y: -0.28891212, z: 0.651561, w: 0.696306} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0011086464, y: 0.0002861023, z: 0.0002861023, w: -0.0002861023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.1601862, y: -0.26694256, z: 0.6518415, w: 0.69150895} + inSlope: {x: -0.0011444092, y: 0.0004291534, z: 0, w: 0} + outSlope: {x: -0.00031292439, y: 0.00035762787, z: -0.0005364418, w: 0.00071525574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.19905567, y: -0.21787232, z: 0.5641854, w: 0.7711052} + inSlope: {x: -0.00035762787, y: 0.00035762787, z: -0.0008940697, w: 0.0005364418} + outSlope: {x: -0.0001490116, y: 0.00038743013, z: -0.0004768371, w: 0.0005960464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.21815124, y: -0.14592385, z: 0.4584411, w: 0.84908664} + inSlope: {x: -0.00017881392, y: 0.00035762784, z: -0.00065565103, w: 0.00035762784} + outSlope: {x: 0.0010728847, y: -0.00035762822, z: 0.0010728847, w: -0.00071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.1874187, y: -0.16562042, z: 0.475731, w: 0.8432818} + inSlope: {x: 0.0010728847, y: -0.00071525644, z: 0.00071525644, w: 0.00071525644} + outSlope: {x: 0.003576272, y: -0.0032186448, z: 0.0050067804, w: -0.004291526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.13235061, y: -0.21962011, z: 0.5331151, w: 0.80624974} + inSlope: {x: 0.003933899, y: -0.0032186448, z: 0.005722035, w: -0.0028610176} + outSlope: {x: 0.0028610257, y: -0.0039339103, z: 0.0042915386, w: -0.0042915386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.089402616, y: -0.27249154, z: 0.60932934, w: 0.7392383} + inSlope: {x: 0.003397468, y: -0.0028610257, z: 0.0042915386, w: -0.0028610257} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000000024071232, y: -0.5248637, z: 0.000000017506348, w: 0.8511863} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -7.1054274e-11, y: 0.0019073486, z: -7.1054274e-11, w: 0.0009536743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.000000020941798, y: -0.4541056, z: 0.000000015272972, w: 0.8909479} + inSlope: {x: -5.684342e-11, y: 0.00166893, z: -2.842171e-11, w: 0.0009536743} + outSlope: {x: -9.947598e-11, y: 0.00071525574, z: -2.842171e-11, w: 0.00047683716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.000000017094427, y: -0.41289803, z: 0.0000000141888625, w: 0.9107773} + inSlope: {x: -8.526513e-11, y: 0.0009536743, z: -1.4210855e-11, w: 0.00047683716} + outSlope: {x: -9.510341e-11, y: -0.00005501967, z: -9.838284e-12, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 1.2108892e-10, y: -0.42093837, z: 0.000000012327472, w: 0.90708923} + inSlope: {x: -9.674312e-11, y: -0.00005501967, z: -1.3117712e-11, w: 0} + outSlope: {x: -9.2370535e-11, y: 0, z: -1.4210851e-11, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.000000007691081, y: -0.42193922, z: 0.000000011400713, w: 0.90662414} + inSlope: {x: -8.526511e-11, y: 0, z: -7.1054256e-12, w: 0} + outSlope: {x: -8.526521e-11, y: 0, z: -2.1316303e-11, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.00000000895177, y: -0.42338154, z: 0.000000011205384, w: 0.9059515} + inSlope: {x: -8.526521e-11, y: 0, z: 0, w: 0} + outSlope: {x: 1.0658136e-11, y: -0.0032186492, z: -1.2789764e-10, w: -0.0014305108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.000000008433199, y: -0.51149625, z: 0.000000007749807, w: 0.85928553} + inSlope: {x: 4.2632543e-11, y: -0.0028610216, z: -1.3855576e-10, w: -0.0014305108} + outSlope: {x: -2.1316303e-11, y: -0.0014305129, z: -6.394891e-11, w: -0.0014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.000000008798814, y: -0.5319579, z: 0.0000000065991115, w: 0.84677076} + inSlope: {x: 0, y: -0.0014305129, z: -1.06581514e-10, w: -0.0014305129} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.007856609, y: 0.0032025217, z: 0.16131668, w: 0.98686624} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0011275212, y: 0.00020861626, z: 0.0007947286, w: -0.00015894572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.14495736, y: 0.043522846, z: 0.25954738, w: 0.9537968} + inSlope: {x: -0.00091393787, y: 0.0003774961, z: 0.0006357829, w: -0.00031789145} + outSlope: {x: -0.00022351739, y: 0.00003352761, z: 0.00017881392, w: -0.00017881392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: -0.16720022, y: 0.046019714, z: 0.27832803, w: 0.94470084} + inSlope: {x: -0.00022351739, y: 0.00002235174, z: 0, w: -0.00017881392} + outSlope: {x: 0.0012772426, y: -0.0004470349, z: -0.00071525585, w: 0.00061307644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.037200786, y: 0.013462094, z: 0.18276303, w: 0.98236066} + inSlope: {x: 0.0012261529, y: -0.00016284843, z: -0.001021794, w: 0} + outSlope: {x: 0.00048279754, y: -0.00019222494, z: -0.0003576278, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.002321854, y: 0.00088261097, z: 0.157549, w: 0.98750806} + inSlope: {x: 0.00054985273, y: -0.00017490235, z: -0.0003576278, 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.22803609, y: -0.37079892, z: -0.1509692, w: 0.88753366} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0.0017881393, z: -0.0005364418, w: 0.00071525574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.22212812, y: -0.32772753, z: -0.16207623, w: 0.9038723} + inSlope: {x: 0, y: 0.0014305115, z: -0.00071525574, w: 0.00071525574} + outSlope: {x: -0.0002145767, y: 0, z: 0.00014305115, w: -0.0002861023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.2492586, y: -0.33142206, z: -0.16464587, w: 0.8949421} + inSlope: {x: -0.0004291534, y: -0.00014305115, z: -0.000071525574, w: 0} + outSlope: {x: -0.00068774587, y: -0.00049517705, z: 0.00030260818, w: -0.00033011803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.37881035, y: -0.39350712, z: -0.13035113, w: 0.8274439} + inSlope: {x: -0.00071525574, y: -0.00027509834, z: 0, w: -0.0005501967} + outSlope: {x: -0.00014305112, y: -0.00014305112, z: 0.00007152556, w: -0.00028610224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.40111688, y: -0.4000654, z: -0.120156534, w: 0.8152395} + inSlope: {x: -0.00028610224, y: -0.00028610224, z: 0.00014305112, w: 0} + outSlope: {x: 0.0014305129, y: 0.0014305129, z: -0.00017881411, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.37223506, y: -0.3819557, z: -0.13748737, w: 0.8346545} + inSlope: {x: 0.0010728847, y: 0.0010728847, z: -0.0005364423, w: 0.0014305129} + outSlope: {x: 0.004291526, y: -0.0014305088, z: -0.0010728815, w: 0.0014305088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.31528935, y: -0.38862944, z: -0.14722852, w: 0.853161} + inSlope: {x: 0.0050067804, y: 0, z: -0.0003576272, w: 0.0028610176} + outSlope: {x: 0.0042915386, y: -0.00071525644, z: 0, w: 0.0014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.25735798, y: -0.39074507, z: -0.14830789, w: 0.8712576} + inSlope: {x: 0.0042915386, y: 0.00071525644, z: 0, w: 0.0014305129} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.2083334 + 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: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.00000000745058, 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.2083334 + value: {x: 0, y: 0, z: -0.00000000745058, 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.00000000745058, 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.2083334 + value: {x: 0, y: 0, z: -0.00000000745058, 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000143014295, y: 0.0017634439, z: -0.00065276027} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.000018257839, y: 0.0017769169, z: -0.00065735285} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.000029710609, y: 0.0018159979, z: -0.0006706473} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.000048035046, y: 0.0018786758, z: -0.0006919185} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.000072606446, y: 0.0019629449, z: -0.0007204411} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: -0.0001028001, y: 0.0020667948, z: -0.0007554902} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.0001379914, y: 0.002188217, z: -0.0007963404} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: -0.00017755548, y: 0.0023252019, z: -0.00084226683} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: -0.0003162381, y: 0.0028094521, z: -0.0010032511} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.000840775, y: 0.004752279, z: -0.001612137} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.00092927366, y: 0.005213382, z: -0.0017148671} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.000899922, y: 0.005227283, z: -0.001676427} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: -0.000694789, y: 0.004329227, z: -0.001442675} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.00032524837, y: 0.0026615, z: -0.001018421} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00023749859, y: -0.0012651699, z: 0.00024293795} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.00023749859, y: -0.0012651699, z: 0.00023153289} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.00023749858, y: -0.0012651699, z: 0.00018741294} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + 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.00023749858, y: -0.0012651699, z: 0.00012126751} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.00023749856, y: -0.0012651699, z: 0.00001901403} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.00023749856, y: -0.0012651699, z: -0.0000061738488} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.00023749856, y: -0.0012651699, z: -0.000030345618} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.00023749856, y: -0.0012651699, z: -0.000053068547} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + 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.00023749856, y: -0.0012651699, z: -0.00007390976} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: 0.00023749856, y: -0.0012651699, z: -0.000092436225} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.00023749856, y: -0.0012651699, z: -0.00010821491} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.00023749853, y: -0.0012651699, z: -0.000120813245} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: 0.00023749853, y: -0.0012651699, z: -0.00012979805} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.00023749853, y: -0.0012651699, z: -0.00013473645} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.00023749853, y: -0.0012651699, z: -0.00013519554} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: 0.00023749853, y: -0.0012651699, z: -0.00013074248} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + 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.00023749853, y: -0.0012651699, z: -0.00012094438} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: 0.00023749853, y: -0.0012651699, z: -0.000105368345} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.00023749852, y: -0.0012651699, z: -0.000083581355} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.00023749852, y: -0.0012651699, z: -0.000027875452} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: 0.00023749852, y: -0.0012651699, z: 0.00006714061} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.00023749852, y: -0.0012651699, z: 0.00016842558} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000021828784, y: -0.00299883, z: -0.000053091644} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.000021828784, y: -0.00299883, z: -0.000053091644} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000019310237, y: -0.0025961706, z: 0.00038391133} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.000019310237, y: -0.0025961706, z: 0.00038391133} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0004820577, y: 0.0012244481, z: -0.00016237333} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.0004820577, y: 0.0012244481, z: -0.00016237333} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0029990696, y: -0.00000016089528, z: 0.000054637192} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.0029990696, y: -0.00000016089528, z: 0.000054637192} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00035560734, y: 0.00003682382, z: -0.0025999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.00035560734, y: 0.00003682382, z: -0.0025999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000011850246, y: -1.0635972e-10, z: -0.00006796107} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.000011850246, y: -1.0635972e-10, z: -0.00006796107} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00285833, y: 4.6566126e-11, z: -0.00014242729} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.00285833, y: 4.6566126e-11, z: -0.00014242729} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014556204, y: -0.0014599604, z: -0.00012458261} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.0014556204, y: -0.0014599604, z: -0.00012458261} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0027749697, y: 0.00000016977778, z: -0.000005434118} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.0027749697, y: 0.00000016846461, z: -0.000005434183} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0020982707, y: -0.00000016995705, z: 0.000005434453} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.0020982707, y: -0.00000016995705, z: 0.000005434453} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014555797, y: 0.0014553501, z: -0.00012458238} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.0014555797, y: 0.0014553501, z: -0.00012458238} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00279524, y: 7.4505804e-11, z: 7.4505804e-11} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.00279524, y: 7.4505804e-11, z: 7.4505804e-11} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00200266, y: -2.4214386e-10, z: 3.9115547e-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} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.00200266, y: -2.4214386e-10, z: 3.9115547e-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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00273719, y: -2.4214386e-10, z: -0.00019367904} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.00273719, y: -2.4214386e-10, z: -0.00019367904} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.001552491, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: -0, y: -0.0013983559, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + 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, y: -0.0004847868, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0, y: -0.0003186834, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0, y: -0.00024324759, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: -0, y: -0.00017433999, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0, y: -0.0001130487, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0, y: -0.000060461305, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: -0, y: -0.00001766607, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + 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, y: 0.000014249091, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: -0, y: 0.00003419578, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0, y: 0.00004108665, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0, y: -0.00001662631, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: -0, y: -0.00036730798, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0, y: -0.001137677, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.013613599, y: -0.0010463799, z: 0.0040700096} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.013613599, y: -0.0010463799, z: 0.0040700096} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.013613599, y: -0.0010463799, z: -0.0040804893} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.013613599, y: -0.0010463799, z: -0.0040804893} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.9999999, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.9999999, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 1, y: 0.9999999, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 1, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 0.9999999, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.9999999, y: 0.9999999, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000001, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 1.0000001, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1.0000001, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 1, y: 1.0000001, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.9999999, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.99999994, y: 0.9999999, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 24 + 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: 2504784628 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 279179908 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 804800636 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4196139211 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1848425199 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2485356428 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 804800636 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4196139211 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2504784628 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 279179908 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1848425199 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2485356428 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.2083334 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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.x + path: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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.z + path: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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.x + path: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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.z + path: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000143014295 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.000018257839 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.000029710609 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.000048035046 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.000072606446 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.0001028001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.0001379914 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0.00017755548 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: -0.0003162381 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.000840775 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.00092927366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.000899922 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.000694789 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00032524837 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0017634439 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0017769169 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.0018159979 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0018786758 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0019629449 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.0020667948 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.002188217 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: 0.0023252019 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.0028094521 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.004752279 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.005213382 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.005227283 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.004329227 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.0026615 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00065276027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.00065735285 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0006706473 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.0006919185 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0007204411 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.0007554902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.0007963404 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.29166666 + value: -0.00084226683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: -0.0010032511 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.001612137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.0017148671 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.001676427 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.001442675 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.001018421 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00023749859 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00023749859 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.00023749858 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00023749858 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00023749856 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.00023749856 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.00023749856 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.00023749856 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00023749856 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.00023749856 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.00023749856 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.00023749853 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.00023749853 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.00023749853 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.00023749853 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.00023749853 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00023749853 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.00023749853 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.00023749852 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.00023749852 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.00023749852 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00023749852 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.0012651699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0012651699 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00024293795 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00023153289 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.00018741294 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00012126751 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00001901403 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.0000061738488 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: -0.000030345618 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.000053068547 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00007390976 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: -0.000092436225 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.00010821491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.000120813245 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.00012979805 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.00013473645 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.00013519554 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: -0.00013074248 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00012094438 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: -0.000105368345 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.000083581355 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.000027875452 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.00006714061 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00016842558 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000021828784 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.000021828784 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00299883 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00299883 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000053091644 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.000053091644 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000019310237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.000019310237 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0025961706 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0025961706 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00038391133 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00038391133 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0004820577 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.0004820577 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0012244481 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.0012244481 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00016237333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00016237333 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0029990696 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0029990696 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000016089528 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00000016089528 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000054637192 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.000054637192 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00035560734 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00035560734 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00003682382 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00003682382 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0025999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0025999998 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000011850246 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.000011850246 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.0635972e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -1.0635972e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00006796107 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00006796107 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00285833 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00285833 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.6566126e-11 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 4.6566126e-11 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00014242729 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00014242729 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0014556204 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0014556204 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0014599604 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0014599604 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00012458261 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00012458261 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0027749697 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0027749697 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000016977778 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00000016846461 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000005434118 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.000005434183 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0020982707 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0020982707 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000016995705 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00000016995705 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000005434453 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.000005434453 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0014555797 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0014555797 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0014553501 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.0014553501 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00012458238 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00012458238 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00279524 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00279524 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.4505804e-11 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 7.4505804e-11 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.4505804e-11 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 7.4505804e-11 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00200266 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00200266 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.4214386e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -2.4214386e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.9115547e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 3.9115547e-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_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00273719 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00273719 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.4214386e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -2.4214386e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00019367904 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00019367904 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + 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 + - serializedVersion: 3 + time: 1.0416666 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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.x + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.001552491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.0013983559 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0004847868 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.0003186834 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.00024324759 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.00017433999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.0001130487 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.000060461305 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: -0.00001766607 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000014249091 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.00003419578 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.00004108665 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.00001662631 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.00036730798 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.001137677 + inSlope: 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + 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 + - serializedVersion: 3 + time: 1.0416666 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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.z + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013613599 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.013613599 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0010463799 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0010463799 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0040700096 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.0040700096 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013613599 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.013613599 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0010463799 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0010463799 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0040804893 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0040804893 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7069847 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.7069847 + inSlope: 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.70722884 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.70722884 + inSlope: 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7071081 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.7071081 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.70710546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.70710546 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.4125874 + inSlope: 0 + outSlope: 0.00006502325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.41101897 + inSlope: 0 + outSlope: 0.000333786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.33608487 + inSlope: 0.00042915344 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.3340033 + inSlope: 0 + outSlope: -0.003576272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.37317735 + inSlope: -0.002145763 + outSlope: -0.0028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.41133493 + inSlope: -0.0042915386 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.24122378 + inSlope: 0 + outSlope: -0.00006502325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.26620075 + inSlope: -0.00019506975 + outSlope: 0.00009536743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.23253259 + inSlope: 0.00009536743 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.23076215 + inSlope: 0 + outSlope: -0.001788136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.25637758 + inSlope: -0.0014305088 + outSlope: -0.00071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.25914955 + inSlope: -0.0014305129 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3984937 + inSlope: 0 + outSlope: 0.000780279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.49137577 + inSlope: 0.0005852092 + outSlope: 0.00047683716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.6073119 + inSlope: 0.0005722046 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.60845613 + inSlope: 0 + outSlope: -0.0028610176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.56730723 + inSlope: -0.0028610176 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.46802723 + inSlope: -0.005006795 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7828061 + inSlope: 0 + outSlope: -0.000260093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.7202433 + inSlope: -0.0006502325 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.68128395 + inSlope: -0.00009536743 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.68188846 + inSlope: 0 + outSlope: 0.0014305088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.6878748 + inSlope: 0.0014305088 + outSlope: 0.0042915386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.73796725 + inSlope: 0.0057220515 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.86238986 + inSlope: 0 + outSlope: -0.000260093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.7965924 + inSlope: -0.000520186 + outSlope: -0.0012715657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6352626 + inSlope: -0.00047683713 + outSlope: -0.0009536743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.5454247 + inSlope: -0.00071525574 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.54857856 + inSlope: 0 + outSlope: 0.01144407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.6814647 + inSlope: 0.005722035 + outSlope: 0.0028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.81977034 + inSlope: 0.011444103 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09351303 + inSlope: 0 + outSlope: -0.000048767437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.07446143 + inSlope: 0.00045516272 + outSlope: -0.001589457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.03864084 + inSlope: 0.00111262 + outSlope: -0.00023841858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.02606672 + inSlope: 0.00059604645 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.02594611 + inSlope: -0.00017881411 + outSlope: -0.007510171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.047128886 + inSlope: 0.0064372895 + outSlope: -0.008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.079990625 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06320791 + inSlope: 0 + outSlope: -0.000032511623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.064192876 + inSlope: -0.00016255812 + outSlope: -0.0011920928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.054173633 + inSlope: 0.0010728835 + outSlope: 0.00011920929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.047505513 + inSlope: 0.0003874302 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.048160464 + inSlope: 0.00017881411 + outSlope: -0.0073313573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.059489608 + inSlope: 0.0028610176 + outSlope: -0.01001359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.06436482 + inSlope: 0.01001359 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.49350157 + inSlope: 0 + outSlope: 0.0005852092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.596469 + inSlope: 0.0006502325 + outSlope: 0.0014305114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.7694242 + inSlope: 0.00063578284 + outSlope: 0.00071525574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.8364065 + inSlope: 0.00071525574 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.8343075 + inSlope: 0 + outSlope: -0.007152544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.72790504 + inSlope: -0.005722035 + outSlope: -0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.5634138 + inSlope: -0.017166154 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12533098 + inSlope: 0 + outSlope: -0.00015326908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.15058643 + inSlope: -0.00012772423 + outSlope: 0.00029260459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.10504305 + inSlope: 0.00037388364 + outSlope: 0.00017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.10302603 + inSlope: 0.00017881411 + outSlope: -0.00035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.107301824 + inSlope: -0.00035762822 + outSlope: -0.003039831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.14521165 + inSlope: -0.0025033902 + outSlope: -0.0010728847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.15215224 + inSlope: -0.00071525644 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5239838 + inSlope: 0 + outSlope: -0.0008174351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.31658942 + inSlope: -0.0010728835 + outSlope: -0.0011704183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.12248998 + inSlope: -0.0012842091 + outSlope: -0.00035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.117362455 + inSlope: -0.00017881411 + outSlope: 0.00017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.12244736 + inSlope: 0.00035762822 + outSlope: 0.008404239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.23920768 + inSlope: 0.008225425 + outSlope: 0.0139475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.4273284 + inSlope: 0.012159359 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.74475753 + inSlope: 0 + outSlope: 0.00020435877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.77467865 + inSlope: 0.00020435877 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.7764678 + inSlope: 0.00013004648 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.7759289 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.7749861 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.7763928 + inSlope: -0.0014305088 + outSlope: -0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.762352 + inSlope: -0.0028610257 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.39378852 + inSlope: 0 + outSlope: 0.00091961445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.52627736 + inSlope: 0.00040871755 + outSlope: 0.0005201859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.60914695 + inSlope: 0.0005201859 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.6111842 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.6106468 + inSlope: 0 + outSlope: -0.0028610176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.56471896 + inSlope: -0.004291526 + outSlope: -0.0057220515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.46158385 + inSlope: -0.007867821 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.38922656 + inSlope: 0 + outSlope: 0.00033880534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.3043043 + inSlope: 0.00033880534 + outSlope: 0.00047683704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.27701163 + inSlope: 0.00023841852 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.27362132 + inSlope: 0.00071525644 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.27226254 + inSlope: 0 + outSlope: -0.0028610176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.30880606 + inSlope: -0.0028610176 + outSlope: -0.0028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.35741645 + 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.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7619823 + inSlope: 0 + outSlope: 0.00052703056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.8683462 + inSlope: 0.0003011603 + outSlope: 0.00047683704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.91122526 + inSlope: 0.0009536741 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.9154405 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.9171689 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.86056846 + inSlope: -0.004291526 + outSlope: -0.0057220515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.79305655 + inSlope: -0.0071525644 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08407469 + inSlope: 0 + outSlope: -0.000037645037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.12685359 + inSlope: -0.0002070477 + outSlope: -0.00041723243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.15722582 + inSlope: -0.00047683704 + outSlope: -0.00071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.16098209 + inSlope: -0.00035762822 + outSlope: -0.00035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.16262615 + inSlope: -0.00035762822 + outSlope: 0.003576272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.12161666 + inSlope: 0.0025033902 + outSlope: 0.0028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0921694 + inSlope: 0.0016093269 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.51070243 + inSlope: 0 + outSlope: -0.00052703056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.37051576 + inSlope: -0.00052703056 + outSlope: -0.0009536741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.2611765 + inSlope: -0.0009536741 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.24735568 + inSlope: -0.00035762822 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.24130265 + inSlope: 0 + outSlope: 0.0110864425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.38635495 + inSlope: 0.009298307 + outSlope: 0.0064373077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.4845818 + inSlope: 0.007867821 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9968011 + inSlope: 0 + outSlope: -0.001560558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.99435776 + inSlope: 0.002080744 + outSlope: -0.000260093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.8496698 + inSlope: -0.001560558 + outSlope: -0.0017881391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.74686086 + inSlope: -0.0025033948 + outSlope: -0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.7362501 + inSlope: -0.0014305129 + outSlope: 0.018596614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.9309032 + inSlope: 0.010013561 + outSlope: 0.008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.99866843 + inSlope: 0.0014305129 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000002574996 + inSlope: 0 + outSlope: 0.0000007570303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.0002792252 + inSlope: 0.00004991042 + outSlope: -0.0000093978915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.002794213 + inSlope: -0.00002336773 + outSlope: -0.04803668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.0041686255 + inSlope: -0.040621493 + outSlope: 0.00007823117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.0029257424 + inSlope: 0.00009499499 + outSlope: 0.0001788136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.00086876063 + inSlope: 0.00010617057 + outSlope: 0.00010058293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.000022480306 + inSlope: 0.000017244036 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07992289 + inSlope: 0 + outSlope: -0.019441951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.106045574 + inSlope: -0.019653276 + outSlope: 0.0028447672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.5272884 + inSlope: 0.0024708833 + outSlope: 0.0032186504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.6649508 + inSlope: 0.0025033948 + outSlope: 0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.67669564 + inSlope: 0 + outSlope: -0.020027122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.36525828 + inSlope: -0.024318649 + outSlope: -0.020742437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.05158596 + inSlope: -0.022888206 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000032662356 + inSlope: 0 + outSlope: 0.000017430548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.002618624 + inSlope: 0.000022859735 + outSlope: 0.000016763806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0045028897 + inSlope: 0.000008127906 + outSlope: -0.029783692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.004681881 + inSlope: -0.03614835 + outSlope: -0.00011175882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.0031829898 + inSlope: -0.00011175882 + outSlope: -0.0000223517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.0022136914 + inSlope: -0.00010058265 + outSlope: -0.00011175882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00043204488 + inSlope: -0.000141794 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.21978489 + inSlope: 0 + outSlope: -0.0006827441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.32732883 + inSlope: -0.00084530225 + outSlope: -0.0011920929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.5184243 + inSlope: -0.0011920929 + outSlope: -0.00047683716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.5540834 + inSlope: -0.0009536743 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.55868584 + inSlope: -0.0014305129 + outSlope: 0.010013561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.4407691 + inSlope: 0.010728816 + outSlope: 0.009298334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.29651344 + inSlope: 0.011444103 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4735834 + inSlope: 0 + outSlope: -0.000520186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.40059716 + inSlope: -0.00045516272 + outSlope: -0.001013279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.22580318 + inSlope: -0.0009834766 + outSlope: -0.0010728836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.18356937 + inSlope: -0.0009536743 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.17769396 + inSlope: -0.00035762822 + outSlope: 0.010013561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.30513275 + inSlope: 0.010013561 + outSlope: 0.008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.42120978 + inSlope: 0.01001359 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6553652 + inSlope: 0 + outSlope: -0.0001300465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.6368745 + inSlope: -0.0001300465 + outSlope: -0.00035762787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.5263677 + inSlope: -0.000834465 + outSlope: -0.00047683716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.48961788 + inSlope: -0.0011920929 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.48447967 + inSlope: -0.00071525644 + outSlope: 0.008583052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.58522266 + inSlope: 0.007152544 + outSlope: 0.0042915386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.64521 + inSlope: 0.0028610257 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5458111 + inSlope: 0 + outSlope: 0.0001300465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.5716368 + inSlope: 0.000260093 + outSlope: 0.00059604645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.6349696 + inSlope: 0.00035762787 + outSlope: 0.00047683716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.6477408 + inSlope: 0.00047683716 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.6492877 + inSlope: 0 + outSlope: -0.004291526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.6083841 + inSlope: -0.004291526 + outSlope: -0.0028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.56423944 + inSlope: -0.0057220515 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08166181 + inSlope: 0 + outSlope: 0.00024835268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.019908525 + inSlope: 0.00023841858 + outSlope: 0.00020435873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.00052716443 + inSlope: 0.0002155346 + outSlope: -0.00043585937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.011963941 + inSlope: -0.00045821114 + outSlope: -0.0020563563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.0402022 + inSlope: -0.0019669496 + outSlope: -0.002056362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.068738304 + inSlope: -0.0021457693 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.025835227 + inSlope: 0 + outSlope: 0.0005488594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.11270034 + inSlope: 0.00057617825 + outSlope: 0.0004342623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.15434979 + inSlope: 0.00045980714 + outSlope: -0.0010728847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.12699483 + inSlope: -0.0010728847 + outSlope: -0.004291526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.06499953 + inSlope: -0.0046491534 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.0024351156 + inSlope: -0.004604463 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.046427187 + inSlope: 0 + outSlope: 0.000014901161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.051216863 + inSlope: -0.000054637592 + outSlope: 0.000025544841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.048718624 + inSlope: 0.000025544841 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.049752444 + inSlope: -0.000044703527 + outSlope: -0.0000894068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.051841184 + inSlope: -0.0003576272 + outSlope: 0.00035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.049046103 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99524295 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.9921084 + inSlope: -0.00007947286 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.98681426 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.9905825 + inSlope: 0 + outSlope: 0.0014305088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.9957265 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.9964255 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17813605 + inSlope: 0 + outSlope: 0.00023841858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.13506977 + inSlope: 0.00019073486 + outSlope: 0.00021457668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.10741064 + inSlope: 0.00019669528 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.107100606 + inSlope: 0 + outSlope: -0.00071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.11811633 + inSlope: -0.0005364423 + outSlope: -0.0016093224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.14250085 + inSlope: -0.002145763 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.1670009 + inSlope: -0.0017881411 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.50630116 + inSlope: 0 + outSlope: -0.00076293945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.34414458 + inSlope: -0.00081062317 + outSlope: -0.0007152556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.23402047 + inSlope: -0.0007510184 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.2328032 + inSlope: 0 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.27806368 + inSlope: 0.0035762822 + outSlope: 0.005722035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.3748031 + inSlope: 0.0064372895 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.4665506 + inSlope: 0.0064373077 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06551844 + inSlope: 0 + outSlope: 0.000047683716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.04760271 + inSlope: 0.00013113022 + outSlope: 0.00005364417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.03489201 + inSlope: 0.00013411042 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.03510565 + inSlope: 0 + outSlope: -0.00035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.03987295 + inSlope: -0.00017881411 + outSlope: -0.0010728815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.050773606 + inSlope: -0.00053644076 + outSlope: -0.0010728847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.06106927 + inSlope: -0.00062584935 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8412099 + inSlope: 0 + outSlope: 0.00038146973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.9279303 + inSlope: 0.0002861023 + outSlope: 0.00042915336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.96564996 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.9659709 + inSlope: 0 + outSlope: -0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.9524386 + inSlope: -0.0014305129 + outSlope: -0.0028610176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.9146793 + inSlope: -0.0028610176 + outSlope: -0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.86643624 + inSlope: -0.0042915386 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13048416 + inSlope: 0 + outSlope: 0.0002861023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.09751755 + inSlope: 0.0005722046 + outSlope: 0.00011920929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.07716271 + inSlope: 0.00047683716 + outSlope: -0.00006502325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.04405974 + inSlope: 0.00045516272 + outSlope: -0.00011920923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.042073682 + inSlope: 0.0003576277 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.063811705 + inSlope: -0.00089407054 + outSlope: -0.0007152544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.10303715 + inSlope: -0.001788136 + outSlope: -0.0028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.12871465 + inSlope: -0.0017881411 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5716842 + inSlope: 0 + outSlope: -0.0008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.63477796 + inSlope: -0.0008583068 + outSlope: 0.00071525574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.5961906 + inSlope: 0.00047683716 + outSlope: 0.000780279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.45878226 + inSlope: 0.00084530225 + outSlope: 0.00047683693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.4380739 + inSlope: 0.00047683693 + outSlope: -0.00035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.4498126 + inSlope: -0.00071525644 + outSlope: -0.0028610176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.48974574 + inSlope: -0.002145763 + outSlope: -0.0042915386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.5380341 + inSlope: -0.0042915386 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7492897 + inSlope: 0 + outSlope: -0.0008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.6785111 + inSlope: -0.0011444092 + outSlope: 0.00047683716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.7147062 + inSlope: 0.00023841858 + outSlope: 0.000780279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.81516063 + inSlope: 0.0006502325 + outSlope: 0.00047683693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.8275105 + inSlope: 0 + outSlope: 0.00071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.8235897 + inSlope: 0 + outSlope: -0.0028610176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.80309355 + inSlope: -0.004291526 + outSlope: -0.0028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.7738363 + inSlope: -0.0014305129 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3077597 + inSlope: 0 + outSlope: 0.0008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.3566091 + inSlope: 0.0007152557 + outSlope: -0.00023841858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.3574881 + inSlope: 0.00023841858 + outSlope: 0.0003901395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.3508428 + inSlope: -0.0001300465 + outSlope: -0.0007152554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.34863663 + inSlope: 0.00047683693 + outSlope: -0.00035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.33955377 + inSlope: -0.00035762822 + outSlope: 0.0014305088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.32337773 + inSlope: 0 + outSlope: -0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.30843037 + inSlope: -0.0014305129 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0049119852 + inSlope: 0 + outSlope: -0.000011175871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0058726417 + inSlope: -0.000019557774 + outSlope: -0.000012572855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.00868549 + inSlope: -0.000011175871 + outSlope: 0.000008940695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.008284678 + inSlope: 0.0000044703474 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.008235592 + inSlope: 0 + outSlope: 0.000044703527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.0074808006 + inSlope: 0.00006705529 + outSlope: 0.0000447034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.006123423 + inSlope: 0.0001117585 + outSlope: 0.00007823117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.005124278 + inSlope: 0.00010058293 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3921796 + inSlope: 0 + outSlope: 0.0008940697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.4467023 + inSlope: 0.0010728836 + outSlope: 0.00031292439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.5165958 + inSlope: 0.00035762787 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.50523424 + inSlope: -0.00028610224 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.50285774 + inSlope: 0 + outSlope: -0.0028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.47420192 + inSlope: -0.0021457693 + outSlope: -0.003576272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.42373163 + inSlope: -0.004291526 + outSlope: -0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.390366 + inSlope: -0.0014305129 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011520407 + inSlope: 0 + outSlope: 0.0000055879354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.011760831 + inSlope: 0.0000055879354 + outSlope: 0.000011175871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.014392954 + inSlope: 0.000012572855 + outSlope: -0.0000044703474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.014148368 + inSlope: -0.000008940695 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.014153728 + inSlope: 0 + outSlope: -0.000044703527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.013886832 + inSlope: -0.000044703527 + outSlope: -0.0000447034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.01308804 + inSlope: -0.000067055094 + outSlope: -0.000044703527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.012084135 + inSlope: -0.00006705529 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.91980344 + inSlope: 0 + outSlope: -0.00071525574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.8945861 + inSlope: -0.00035762787 + outSlope: -0.00017881393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.8560644 + inSlope: -0.00017881393 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.86282647 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.86421406 + inSlope: 0 + outSlope: 0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.88027483 + inSlope: 0.0014305129 + outSlope: 0.0028610176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.9056725 + inSlope: 0.0014305088 + outSlope: 0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.9205661 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000009313226 + inSlope: 0 + outSlope: 0.000019000658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.0015790785 + inSlope: 0.000012373285 + outSlope: 0.00003153192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.00438272 + inSlope: 0.000023948292 + outSlope: -0.000015646221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00168845 + inSlope: -0.000022072347 + outSlope: -0.000022351738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.0000590497 + inSlope: -0.000024167815 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000010710211 + inSlope: 0 + outSlope: 0.000023577226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.002486945 + inSlope: 0.000027939675 + outSlope: 0.0000271414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.0054691792 + inSlope: 0.000036720718 + outSlope: -0.000025704505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0024715555 + inSlope: -0.000018440189 + outSlope: -0.00003576278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.000094801384 + inSlope: -0.000032479868 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000005587936 + inSlope: 0 + outSlope: -0.0011574285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.11236874 + inSlope: -0.001175063 + outSlope: -0.00091961445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.19902782 + inSlope: -0.00091961445 + outSlope: 0.0010371209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.05648706 + inSlope: 0.0010728837 + outSlope: 0.00078678114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0020114193 + inSlope: 0.000778958 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.9936622 + inSlope: -0.00020435877 + outSlope: -0.00020435877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.9799687 + inSlope: -0.00020435877 + outSlope: 0.00028610232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99839884 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.999998 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08459244 + inSlope: 0 + outSlope: -0.0011086464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.1601862 + inSlope: -0.0011444092 + outSlope: -0.00031292439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.19905567 + inSlope: -0.00035762787 + outSlope: -0.0001490116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.21815124 + inSlope: -0.00017881392 + outSlope: 0.0010728847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.1874187 + inSlope: 0.0010728847 + outSlope: 0.003576272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.13235061 + inSlope: 0.003933899 + outSlope: 0.0028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.089402616 + inSlope: 0.003397468 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.28891212 + inSlope: 0 + outSlope: 0.0002861023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.26694256 + inSlope: 0.0004291534 + outSlope: 0.00035762787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.21787232 + inSlope: 0.00035762787 + outSlope: 0.00038743013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.14592385 + inSlope: 0.00035762784 + outSlope: -0.00035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.16562042 + inSlope: -0.00071525644 + outSlope: -0.0032186448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.21962011 + inSlope: -0.0032186448 + outSlope: -0.0039339103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.27249154 + inSlope: -0.0028610257 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.651561 + inSlope: 0 + outSlope: 0.0002861023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.6518415 + inSlope: 0 + outSlope: -0.0005364418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.5641854 + inSlope: -0.0008940697 + outSlope: -0.0004768371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.4584411 + inSlope: -0.00065565103 + outSlope: 0.0010728847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.475731 + inSlope: 0.00071525644 + outSlope: 0.0050067804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.5331151 + inSlope: 0.005722035 + outSlope: 0.0042915386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.60932934 + inSlope: 0.0042915386 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.696306 + inSlope: 0 + outSlope: -0.0002861023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.69150895 + inSlope: 0 + outSlope: 0.00071525574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.7711052 + inSlope: 0.0005364418 + outSlope: 0.0005960464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.84908664 + inSlope: 0.00035762784 + outSlope: -0.00071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.8432818 + inSlope: 0.00071525644 + outSlope: -0.004291526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.80624974 + inSlope: -0.0028610176 + outSlope: -0.0042915386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.7392383 + inSlope: -0.0028610257 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000024071232 + inSlope: 0 + outSlope: -7.1054274e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.000000020941798 + inSlope: -5.684342e-11 + outSlope: -9.947598e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.000000017094427 + inSlope: -8.526513e-11 + outSlope: -9.510341e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 1.2108892e-10 + inSlope: -9.674312e-11 + outSlope: -9.2370535e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.000000007691081 + inSlope: -8.526511e-11 + outSlope: -8.526521e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.00000000895177 + inSlope: -8.526521e-11 + outSlope: 1.0658136e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.000000008433199 + inSlope: 4.2632543e-11 + outSlope: -2.1316303e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.000000008798814 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5248637 + inSlope: 0 + outSlope: 0.0019073486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.4541056 + inSlope: 0.00166893 + outSlope: 0.00071525574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.41289803 + inSlope: 0.0009536743 + outSlope: -0.00005501967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.42093837 + inSlope: -0.00005501967 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.42193922 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.42338154 + inSlope: 0 + outSlope: -0.0032186492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.51149625 + inSlope: -0.0028610216 + outSlope: -0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.5319579 + inSlope: -0.0014305129 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000017506348 + inSlope: 0 + outSlope: -7.1054274e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.000000015272972 + inSlope: -2.842171e-11 + outSlope: -2.842171e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.0000000141888625 + inSlope: -1.4210855e-11 + outSlope: -9.838284e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.000000012327472 + inSlope: -1.3117712e-11 + outSlope: -1.4210851e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.000000011400713 + inSlope: -7.1054256e-12 + outSlope: -2.1316303e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.000000011205384 + inSlope: 0 + outSlope: -1.2789764e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.000000007749807 + inSlope: -1.3855576e-10 + outSlope: -6.394891e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.0000000065991115 + inSlope: -1.06581514e-10 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8511863 + inSlope: 0 + outSlope: 0.0009536743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.8909479 + inSlope: 0.0009536743 + outSlope: 0.00047683716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.9107773 + inSlope: 0.00047683716 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.90708923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.90662414 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.9059515 + inSlope: 0 + outSlope: -0.0014305108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.85928553 + inSlope: -0.0014305108 + outSlope: -0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.84677076 + inSlope: -0.0014305129 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.007856609 + inSlope: 0 + outSlope: -0.0011275212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.14495736 + inSlope: -0.00091393787 + outSlope: -0.00022351739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.16720022 + inSlope: -0.00022351739 + outSlope: 0.0012772426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.037200786 + inSlope: 0.0012261529 + outSlope: 0.00048279754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.002321854 + inSlope: 0.00054985273 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0032025217 + inSlope: 0 + outSlope: 0.00020861626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.043522846 + inSlope: 0.0003774961 + outSlope: 0.00003352761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.046019714 + inSlope: 0.00002235174 + outSlope: -0.0004470349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.013462094 + inSlope: -0.00016284843 + outSlope: -0.00019222494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00088261097 + inSlope: -0.00017490235 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16131668 + inSlope: 0 + outSlope: 0.0007947286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.25954738 + inSlope: 0.0006357829 + outSlope: 0.00017881392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.27832803 + inSlope: 0 + outSlope: -0.00071525585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.18276303 + inSlope: -0.001021794 + outSlope: -0.0003576278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.157549 + inSlope: -0.0003576278 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98686624 + inSlope: 0 + outSlope: -0.00015894572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.9537968 + inSlope: -0.00031789145 + outSlope: -0.00017881392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.94470084 + inSlope: -0.00017881392 + outSlope: 0.00061307644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.98236066 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.98750806 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22803609 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.22212812 + inSlope: 0 + outSlope: -0.0002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.2492586 + inSlope: -0.0004291534 + outSlope: -0.00068774587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.37881035 + inSlope: -0.00071525574 + outSlope: -0.00014305112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.40111688 + inSlope: -0.00028610224 + outSlope: 0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.37223506 + inSlope: 0.0010728847 + outSlope: 0.004291526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.31528935 + inSlope: 0.0050067804 + outSlope: 0.0042915386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.25735798 + inSlope: 0.0042915386 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.37079892 + inSlope: 0 + outSlope: 0.0017881393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.32772753 + inSlope: 0.0014305115 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.33142206 + inSlope: -0.00014305115 + outSlope: -0.00049517705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.39350712 + inSlope: -0.00027509834 + outSlope: -0.00014305112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.4000654 + inSlope: -0.00028610224 + outSlope: 0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.3819557 + inSlope: 0.0010728847 + outSlope: -0.0014305088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.38862944 + inSlope: 0 + outSlope: -0.00071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.39074507 + inSlope: 0.00071525644 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1509692 + inSlope: 0 + outSlope: -0.0005364418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.16207623 + inSlope: -0.00071525574 + outSlope: 0.00014305115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.16464587 + inSlope: -0.000071525574 + outSlope: 0.00030260818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.13035113 + inSlope: 0 + outSlope: 0.00007152556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.120156534 + inSlope: 0.00014305112 + outSlope: -0.00017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.13748737 + inSlope: -0.0005364423 + outSlope: -0.0010728815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.14722852 + inSlope: -0.0003576272 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.14830789 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.88753366 + inSlope: 0 + outSlope: 0.00071525574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.9038723 + inSlope: 0.00071525574 + outSlope: -0.0002861023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.8949421 + inSlope: 0 + outSlope: -0.00033011803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.8274439 + inSlope: -0.0005501967 + outSlope: -0.00028610224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.8152395 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.8346545 + inSlope: 0.0014305129 + outSlope: 0.0014305088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.853161 + inSlope: 0.0028610176 + outSlope: 0.0014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.8712576 + inSlope: 0.0014305129 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000000745058 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00000000745058 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000000745058 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00000000745058 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -89.98021 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -89.98021 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -90.000206 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -90.000206 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -26.981293 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -19.296581 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -10.10769 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -10.060544 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -12.856432 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -21.378368 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -52.446095 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -56.538452 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -47.433155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -47.08988 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -52.757473 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -55.510715 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 67.43605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 79.05335 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 87.87882 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 87.87869 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 85.42275 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 76.11207 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 57.072582 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 70.17376 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 76.75172 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 65.493835 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 65.90463 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 80.566246 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 65.98554 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -158.26233 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -145.7064 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -34.04237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -13.300502 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -13.619538 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -65.96076 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -151.26318 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -155.70155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -144.86174 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -35.30945 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -15.07822 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -15.460153 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -66.96575 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -149.9687 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -61.544746 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -40.46704 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -18.55364 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -17.942692 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -18.71355 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -32.374146 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -52.373867 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 28.314386 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 7.5466337 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.8398787 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.9890377 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -1.0145761 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 3.033036 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 15.437476 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 107.18067 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 108.83448 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 103.90808 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 103.7025 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 103.69481 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 107.0579 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 109.98563 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -15.630414 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.29756108 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 8.15424 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 9.170647 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 9.608553 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -1.6789248 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -11.548885 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 118.819725 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 133.88885 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 145.33067 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 146.77148 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 147.4019 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 132.23453 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 121.59952 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -44.83902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -38.498478 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -36.367504 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -36.02407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -35.882748 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -38.736557 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -42.050903 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0037544402 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.3017736 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.60726935 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.71835256 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.49542144 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.27250597 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.049575664 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -170.83171 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 167.82512 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 116.35414 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 96.640884 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 94.82707 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 137.15291 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 174.08604 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -179.99998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -179.99998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -180 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 180 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 180 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 180 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 180 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -59.391018 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -62.188404 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -63.647243 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -63.8395 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -63.853966 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -63.310646 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -61.41959 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 26.714212 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 5.0485096 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -35.696095 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -43.729923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -44.81655 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -18.782986 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 11.173061 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 84.9995 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 93.13385 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 101.91582 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 102.23959 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 102.276924 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 99.42164 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 91.009964 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.494073 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -1.6021136 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.9213469 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.6340443 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -4.2047844 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -7.859611 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.5476854 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 13.046953 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 17.73513 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 14.643482 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 7.6992006 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.6706894 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.1301217 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -6.093672 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -5.5090013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -5.832047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -6.2437396 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -5.681956 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -13.494701 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -12.586085 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -11.017643 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -10.985858 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -11.702068 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -12.863254 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -13.438849 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 64.15821 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 41.881023 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 27.910181 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 27.763197 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 33.404003 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 45.901306 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 58.452263 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -17.389238 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -10.706336 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -6.884536 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -6.885511 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -8.316851 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -11.820329 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -15.605968 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 50.932003 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 52.359333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 52.847664 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 45.811157 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 44.081795 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 44.233723 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 46.053112 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 48.877182 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -60.29547 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -73.33903 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -62.677536 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -34.395615 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -31.477041 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -34.96221 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -44.01789 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -53.856438 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 104.41759 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 84.34046 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 93.1815 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 118.52474 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 121.28995 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 120.601425 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 116.63795 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 110.542534 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.0355204 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -1.204122 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -1.7043053 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -1.638479 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -1.6313883 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -1.5093822 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -1.2711117 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -1.081175 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 46.175224 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 53.06003 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 62.20476 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 60.68967 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 60.37423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 56.609367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 50.134632 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 45.948864 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9937357 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9052533 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.898191 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.91965556 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.92752147 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.9946851 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 1.061301 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 1.0457664 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000001067217 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.21182589 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.61690956 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.209171 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.0067884335 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000012272997 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.2628464 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.51424813 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2718395 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.010849805 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000006403302 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -12.903333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -22.958029 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -6.4759197 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.23049118 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 14.99195 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 7.2655478 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -3.5055356 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -13.689706 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -9.12054 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 1.1889882 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 11.53079 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -32.04861 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -35.64046 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -34.17099 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -27.44628 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -27.613914 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -29.693504 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -31.491116 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 81.86888 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 84.278885 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 73.46052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 60.08931 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 61.10422 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 66.6324 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 75.73403 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000034007962 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0000029328091 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.000002455441 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.00000060721425 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.0000002478055 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.00000038568268 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.00000037614998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0000004515055 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -63.31813 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -54.014797 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -48.774025 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -49.787685 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -49.914154 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -50.09652 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -61.527084 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -64.27567 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000002597845 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.00000046955427 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.0000006720379 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.0000012755353 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.0000015563056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.0000015975835 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.0000012573955 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.0000011766873 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.94772017 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -17.404287 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -19.969845 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -4.474185 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.27867672 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.21695867 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.46699047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.37328628 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.7386025 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.057958774 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 18.565536 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 30.374 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 32.897804 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 21.049316 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 18.129232 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -31.113686 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -30.516369 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -33.7299 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -46.842545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -48.603672 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -46.585724 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -40.724285 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -34.35726 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -43.500896 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -37.165913 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -37.921753 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -53.869286 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -57.210926 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -51.15112 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -48.807365 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -47.079945 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -6.631444 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -9.851611 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -8.956508 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 6.920112 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 10.89923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 4.577208 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.4655488 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -3.980493 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000008537735 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0000008537735 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000008537735 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0000008537735 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/bop.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/bop.anim.meta new file mode 100644 index 000000000..b77550ee6 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/bop.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6692c31ca8193fd4c81304cf44ec9310 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/charge.anim b/Assets/Resources/Models/Games/Airboarder/Animations/charge.anim new file mode 100644 index 000000000..92cc9128b --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/charge.anim @@ -0,0 +1,3307 @@ +%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: charge + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: 8.25 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 8.25 + 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: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.7071081, w: 0.7071055} + 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: 8.25 + value: {x: 0, y: 0, z: -0.7071081, w: 0.7071055} + 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: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.5732617, y: -0.39011788, z: 0.30003515, w: 0.6551015} + inSlope: {x: -0.028105259, y: 0.025560379, z: -0.06874466, w: 0.02190113} + outSlope: {x: -0.028105259, y: 0.025560379, z: -0.06874466, w: 0.02190113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.60851973, y: -0.32579207, z: 0.17268299, w: 0.7026691} + inSlope: {x: -0.025280703, y: 0.12237519, z: -0.20649692, w: 0.08572264} + outSlope: {x: -0.025280703, y: 0.12237519, z: -0.20649692, w: 0.08572264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.6100266, y: -0.31142172, z: 0.14959517, w: 0.7130956} + inSlope: {x: 0.010546456, y: -0.08963272, z: 0.1480554, w: -0.06133324} + outSlope: {x: 0.010546456, y: -0.08963272, z: 0.1480554, w: -0.06133324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: -0.5798377, y: -0.38310227, z: 0.282199, w: 0.6613507} + inSlope: {x: 0.054207854, y: -0.07407589, z: 0.15620306, w: -0.06185752} + outSlope: {x: 0.054207854, y: -0.07407589, z: 0.15620306, w: -0.06185752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.59559536, y: -0.3578869, z: 0.23146051, w: 0.6808886} + inSlope: {x: -0.06749946, y: 0.12311243, z: -0.24159949, w: 0.08774051} + outSlope: {x: -0.06749946, y: 0.12311243, z: -0.24159949, w: 0.08774051} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.25 + value: {x: -0.61050606, y: -0.30771995, z: 0.14394349, w: 0.71545166} + inSlope: {x: 0.0072648544, y: -0.076017424, z: 0.12191685, w: -0.051166568} + outSlope: {x: 0.0072648544, y: -0.076017424, z: 0.12191685, w: -0.051166568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.875 + value: {x: -0.5821428, y: -0.37993214, z: 0.27495605, w: 0.6641993} + inSlope: {x: 0.060816832, y: -0.08508585, z: 0.17995462, w: -0.069686726} + outSlope: {x: 0.060816832, y: -0.08508585, z: 0.17995462, w: -0.069686726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.5 + value: {x: -0.5901291, y: -0.36770844, z: 0.25095794, w: 0.67346734} + inSlope: {x: -0.062929496, y: 0.11167157, z: -0.2208419, w: 0.08798558} + outSlope: {x: -0.062929496, y: 0.11167157, z: -0.2208419, w: 0.08798558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.291667 + value: {x: -0.6107326, y: -0.30488592, z: 0.1393944, w: 0.7173698} + inSlope: {x: 0.011239474, y: -0.057597704, z: 0.09813923, w: -0.03409839} + outSlope: {x: 0.011239474, y: -0.057597704, z: 0.09813923, w: -0.03409839} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.916667 + value: {x: -0.5848092, y: -0.37616006, z: 0.26701576, w: 0.6672365} + inSlope: {x: 0.06653724, y: -0.095209986, z: 0.19975512, w: -0.07513245} + outSlope: {x: 0.06653724, y: -0.095209986, z: 0.19975512, w: -0.07513245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.5 + value: {x: -0.5852358, y: -0.3763194, z: 0.26807126, w: 0.6663487} + inSlope: {x: -0.05780472, y: 0.09240261, z: -0.18991788, w: 0.07767302} + outSlope: {x: -0.05780472, y: 0.09240261, z: -0.18991788, w: 0.07767302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.125 + value: {x: -0.6108946, y: -0.30603173, z: 0.13962045, w: 0.7166997} + inSlope: {x: -0.005147682, y: 0.063751385, z: -0.09888704, w: 0.0422258} + outSlope: {x: -0.005147682, y: 0.063751385, z: -0.09888704, w: 0.0422258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.9583335 + value: {x: -0.58766913, y: -0.37197852, z: 0.25833398, w: 0.67047787} + inSlope: {x: 0.071073085, y: -0.103516854, z: 0.21699154, w: -0.07859832} + outSlope: {x: 0.071073085, y: -0.103516854, z: 0.21699154, w: -0.07859832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.5733557, y: -0.3901224, z: 0.29957077, w: 0.6552291} + inSlope: {x: 0.02226625, y: -0.015322442, z: 0.058172636, w: -0.016096361} + outSlope: {x: 0.02226625, y: -0.015322442, z: 0.058172636, w: -0.016096361} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.8141259, y: -0.07839222, z: -0.06433711, w: 0.57176435} + inSlope: {x: 0.020589352, y: -0.0054935217, z: 0.000669837, w: -0.030045033} + outSlope: {x: 0.020589352, y: -0.0054935217, z: 0.000669837, w: -0.030045033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.8355893, y: -0.084903724, z: -0.06380993, w: 0.5389901} + inSlope: {x: -0.002074242, y: -0.0012126269, z: -0.0012331905, w: 0.002878905} + outSlope: {x: -0.002074242, y: -0.0012126269, z: -0.0012331905, w: 0.002878905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.8236551, y: -0.081201755, z: -0.06414369, w: 0.5575698} + inSlope: {x: -0.045980908, y: 0.01324635, z: -0.0014825461, w: 0.06968734} + outSlope: {x: -0.045980908, y: 0.01324635, z: -0.0014825461, w: 0.06968734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: 0.82352644, y: -0.080932856, z: -0.063995846, w: 0.55781597} + inSlope: {x: 0.044690654, y: -0.010789106, z: 0.0027729599, w: -0.06722909} + outSlope: {x: 0.044690654, y: -0.010789106, z: 0.0027729599, w: -0.06722909} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5 + value: {x: 0.83451647, y: -0.08423865, z: -0.06364242, w: 0.5407733} + inSlope: {x: -0.0016214863, y: 0.0033016237, z: 0.0016911344, w: 0.0032165083} + outSlope: {x: -0.0016214863, y: 0.0033016237, z: 0.0016911344, w: 0.0032165083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.291667 + value: {x: 0.8167665, y: -0.07936686, z: -0.06443006, w: 0.5678399} + inSlope: {x: 0.032341674, y: -0.006330547, z: 0.0027342362, w: -0.04711741} + outSlope: {x: 0.032341674, y: -0.006330547, z: 0.0027342362, w: -0.04711741} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5 + value: {x: 0.8355878, y: -0.08490358, z: -0.063810185, w: 0.5389923} + inSlope: {x: -0.0020713767, y: -0.0012123561, z: -0.0012324727, w: 0.002876753} + outSlope: {x: -0.0020713767, y: -0.0012123561, z: -0.0012324727, w: 0.002876753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.916667 + value: {x: 0.8236551, y: -0.08120175, z: -0.064143695, w: 0.5575698} + inSlope: {x: -0.04598227, y: 0.013246781, z: -0.0014826308, w: 0.06968938} + outSlope: {x: -0.04598227, y: 0.013246781, z: -0.0014826308, w: 0.06968938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.541667 + value: {x: 0.82352644, y: -0.08093285, z: -0.063995846, w: 0.55781597} + inSlope: {x: 0.044691242, y: -0.010789166, z: 0.0027729515, w: -0.06722963} + outSlope: {x: 0.044691242, y: -0.010789166, z: 0.0027729515, w: -0.06722963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.666667 + value: {x: 0.83451647, y: -0.08423865, z: -0.06364243, w: 0.5407733} + inSlope: {x: -0.0016214817, y: 0.0033016142, z: 0.0016911295, w: 0.003216499} + outSlope: {x: -0.0016214817, y: 0.0033016142, z: 0.0016911295, w: 0.003216499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.8146205, y: -0.07853341, z: -0.06432745, w: 0.5710412} + inSlope: {x: -0.02264248, y: 0.006420412, z: -0.0004972891, w: 0.033191234} + outSlope: {x: -0.02264248, y: 0.006420412, z: -0.0004972891, w: 0.033191234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.058326814, y: 0.24861445, z: 0.7880746, w: 0.5601136} + inSlope: {x: 0.032541364, y: 0.025616884, z: 0.028886318, w: -0.055611134} + outSlope: {x: 0.032541364, y: 0.025616884, z: 0.028886318, w: -0.055611134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0.12352354, y: 0.29704094, z: 0.84024805, w: 0.43645385} + inSlope: {x: 0.09467172, y: 0.056972634, z: 0.06667186, w: -0.19370918} + outSlope: {x: 0.09467172, y: 0.056972634, z: 0.06667186, w: -0.19370918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.12782125, y: 0.30166525, z: 0.8425081, w: 0.42759782} + inSlope: {x: -0.08680052, y: -0.044940207, z: -0.06103059, w: 0.17765406} + outSlope: {x: -0.08680052, y: -0.044940207, z: -0.06103059, w: 0.17765406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.063173085, y: 0.2552222, z: 0.7922235, w: 0.55068386} + inSlope: {x: -0.056239646, y: -0.06250904, z: -0.049268946, w: 0.1064665} + outSlope: {x: -0.056239646, y: -0.06250904, z: -0.049268946, w: 0.1064665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: 0.10057296, y: 0.2825185, z: 0.82320434, w: 0.48208195} + inSlope: {x: 0.122164994, y: 0.08513267, z: 0.090336174, w: -0.22963737} + outSlope: {x: 0.122164994, y: 0.08513267, z: 0.090336174, w: -0.22963737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.2083335 + value: {x: 0.13662638, y: 0.3053157, z: 0.84840524, w: 0.41027325} + inSlope: {x: -0.047806866, y: -0.015230681, z: -0.035865117, w: 0.101217404} + outSlope: {x: -0.047806866, y: -0.015230681, z: -0.035865117, w: 0.101217404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.8333335 + value: {x: 0.072180286, y: 0.264563, z: 0.8005912, w: 0.532776} + inSlope: {x: -0.0881726, y: -0.0828224, z: -0.077922165, w: 0.17034401} + outSlope: {x: -0.0881726, y: -0.0828224, z: -0.077922165, w: 0.17034401} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.416667 + value: {x: 0.0730755, y: 0.26082486, z: 0.80112433, w: 0.53369486} + inSlope: {x: 0.08976588, y: 0.078125104, z: 0.07850133, w: -0.16848966} + outSlope: {x: 0.08976588, y: 0.078125104, z: 0.07850133, w: -0.16848966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.041667 + value: {x: 0.13621919, y: 0.30419752, z: 0.849003, w: 0.4100025} + inSlope: {x: 0.049453367, y: 0.02428072, z: 0.032764338, w: -0.10206242} + outSlope: {x: 0.049453367, y: 0.02428072, z: 0.032764338, w: -0.10206242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.8333335 + value: {x: 0.08033742, y: 0.27171823, z: 0.80764383, w: 0.5171331} + inSlope: {x: -0.10800582, y: -0.08680627, z: -0.08844385, w: 0.20067865} + outSlope: {x: -0.10800582, y: -0.08680627, z: -0.08844385, w: 0.20067865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.4583335 + value: {x: 0.069513366, y: 0.25770068, z: 0.79797834, w: 0.5403599} + inSlope: {x: 0.08067177, y: 0.07101157, z: 0.07177261, w: -0.1504167} + outSlope: {x: 0.08067177, y: 0.07101157, z: 0.07177261, w: -0.1504167} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.0833335 + value: {x: 0.13389118, y: 0.30302793, z: 0.8473964, w: 0.41492966} + inSlope: {x: 0.06205386, y: 0.03179252, z: 0.0434684, w: -0.13176742} + outSlope: {x: 0.06205386, y: 0.03179252, z: 0.0434684, w: -0.13176742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.791667 + value: {x: 0.09502823, y: 0.28220174, z: 0.8191096, w: 0.49029708} + inSlope: {x: -0.12510523, y: -0.086807206, z: -0.09244735, w: 0.22869685} + outSlope: {x: -0.12510523, y: -0.086807206, z: -0.09244735, w: 0.22869685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.058318295, y: 0.24900424, z: 0.7880211, w: 0.56001663} + inSlope: {x: -0.02325788, y: -0.029161422, z: -0.02165112, w: 0.046001658} + outSlope: {x: -0.02325788, y: -0.029161422, z: -0.02165112, w: 0.046001658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.4194025, y: 0.8252991, z: -0.07790257, w: 0.3700191} + inSlope: {x: -0.022708654, y: -0.06376934, z: 0.06361842, w: 0.1284728} + outSlope: {x: -0.022708654, y: -0.06376934, z: 0.06361842, w: 0.1284728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.44750047, y: 0.7441236, z: -0.003291467, w: 0.49599656} + inSlope: {x: -0.057816237, y: -0.17864719, z: 0.15092686, w: 0.21710111} + outSlope: {x: -0.057816237, y: -0.17864719, z: 0.15092686, w: 0.21710111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46734565, y: 0.69389987, z: 0.03294818, w: 0.5468139} + inSlope: {x: -0.015403367, y: -0.0029747463, z: -0.011333868, w: -0.008714658} + outSlope: {x: -0.015403367, y: -0.0029747463, z: -0.011333868, w: -0.008714658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: -0.45320103, y: 0.72959816, z: 0.007910652, w: 0.5120868} + inSlope: {x: 0.053441018, y: 0.16627112, z: -0.14057061, w: -0.18766727} + outSlope: {x: 0.053441018, y: 0.16627112, z: -0.14057061, w: -0.18766727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: -0.42174485, y: 0.8193518, z: -0.072126865, w: 0.38156477} + inSlope: {x: 0.037488677, y: 0.09537071, z: -0.09604439, w: -0.18082762} + outSlope: {x: 0.037488677, y: 0.09537071, z: -0.09604439, w: -0.18082762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3333335 + value: {x: -0.42925152, y: 0.7970106, z: -0.050249815, w: 0.42189136} + inSlope: {x: -0.054162443, y: -0.16481155, z: 0.15316802, w: 0.27432266} + outSlope: {x: -0.054162443, y: -0.16481155, z: 0.15316802, w: 0.27432266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.0416667 + value: {x: -0.46725905, y: 0.69398034, z: 0.03446688, w: 0.5466922} + inSlope: {x: -0.025168013, y: -0.02121659, z: -0.017635267, w: 0.006591069} + outSlope: {x: -0.025168013, y: -0.02121659, z: -0.017635267, w: 0.006591069} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5 + value: {x: -0.4507007, y: 0.736687, z: 0.0023120828, w: 0.5041387} + inSlope: {x: 0.059485726, y: 0.1740891, z: -0.14421435, w: -0.20077853} + outSlope: {x: 0.059485726, y: 0.1740891, z: -0.14421435, w: -0.20077853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4 + value: {x: -0.4216563, y: 0.81932867, z: -0.07199487, w: 0.38173708} + inSlope: {x: 0.036742635, y: 0.095567346, z: -0.09714189, w: -0.18216933} + outSlope: {x: 0.036742635, y: 0.095567346, z: -0.09714189, w: -0.18216933} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.416667 + value: {x: -0.42925143, y: 0.79701054, z: -0.05024976, w: 0.42189142} + inSlope: {x: -0.05416301, y: -0.16481109, z: 0.15316764, w: 0.2743222} + outSlope: {x: -0.05416301, y: -0.16481109, z: 0.15316764, w: 0.2743222} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.125 + value: {x: -0.46725905, y: 0.69398034, z: 0.03446688, w: 0.5466922} + inSlope: {x: -0.025168126, y: -0.021216698, z: -0.017635204, w: 0.0065911068} + outSlope: {x: -0.025168126, y: -0.021216698, z: -0.017635204, w: 0.0065911068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.5833335 + value: {x: -0.45070067, y: 0.736687, z: 0.0023120737, w: 0.50413865} + inSlope: {x: 0.0594859, y: 0.1740889, z: -0.14421496, w: -0.20077984} + outSlope: {x: 0.0594859, y: 0.1740889, z: -0.14421496, w: -0.20077984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.0833335 + value: {x: -0.4216563, y: 0.81932867, z: -0.07199487, w: 0.38173708} + inSlope: {x: 0.036741756, y: 0.095567115, z: -0.09714238, w: -0.18217024} + outSlope: {x: 0.036741756, y: 0.095567115, z: -0.09714238, w: -0.18217024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.5 + value: {x: -0.42925146, y: 0.7970106, z: -0.05024981, w: 0.4218913} + inSlope: {x: -0.054162264, y: -0.16481175, z: 0.15316859, w: 0.27432293} + outSlope: {x: -0.054162264, y: -0.16481175, z: 0.15316859, w: 0.27432293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.2083335 + value: {x: -0.46725905, y: 0.69398034, z: 0.03446688, w: 0.5466922} + inSlope: {x: -0.025168158, y: -0.021216711, z: -0.017635055, w: 0.0065911068} + outSlope: {x: -0.025168158, y: -0.021216711, z: -0.017635055, w: 0.0065911068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.666667 + value: {x: -0.45070064, y: 0.73668706, z: 0.0023120646, w: 0.50413865} + inSlope: {x: 0.059486285, y: 0.17408936, z: -0.14421448, w: -0.20077874} + outSlope: {x: 0.059486285, y: 0.17408936, z: -0.14421448, w: -0.20077874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.166667 + value: {x: -0.42148972, y: 0.8193009, z: -0.07253134, w: 0.3818793} + inSlope: {x: 0.03430877, y: 0.096070275, z: -0.09788746, w: -0.1861632} + outSlope: {x: 0.03430877, y: 0.096070275, z: -0.09788746, w: -0.1861632} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.41968492, y: 0.8249895, z: -0.078138076, w: 0.37033948} + inSlope: {x: 0.013390507, y: 0.052301727, z: -0.048914224, w: -0.110669635} + outSlope: {x: 0.013390507, y: 0.052301727, z: -0.048914224, w: -0.110669635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.8459286, y: -0.002527122, z: 0.5332751, w: 0.004008743} + inSlope: {x: 0.13955498, y: 0.0028936453, z: -0.22406387, w: -0.0023165904} + outSlope: {x: 0.13955498, y: 0.0028936453, z: -0.22406387, w: -0.0023165904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.940112, y: -0.0011683061, z: 0.34084854, w: 0.0032223612} + inSlope: {x: 0.22931239, y: 0.0033580652, z: -0.6319062, w: -0.0024992484} + outSlope: {x: 0.22931239, y: 0.0033580652, z: -0.6319062, w: -0.0024992484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.99539626, y: -0.00016292521, z: 0.09583028, w: 0.0016923363} + inSlope: {x: -0.013184322, y: -0.00032644978, z: 0.1348675, w: 0.0009715166} + outSlope: {x: -0.013184322, y: -0.00032644978, z: 0.1348675, w: 0.0009715166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.9200559, y: -0.00091070565, z: 0.3917803, w: 0.0021387087} + inSlope: {x: -0.27297544, y: -0.0018811182, z: 0.64095414, w: 0.00028387856} + outSlope: {x: -0.27297544, y: -0.0018811182, z: 0.64095414, w: 0.00028387856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: 0.85160136, y: -0.0014366732, z: 0.52418286, w: 0.002334064} + inSlope: {x: 0.17129308, y: 0.00024693756, z: -0.28015074, w: 0.0013214499} + outSlope: {x: 0.17129308, y: 0.00024693756, z: -0.28015074, w: 0.0013214499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0.9400275, y: -0.0010484284, z: 0.34108502, w: 0.0028894816} + inSlope: {x: 0.23034543, y: 0.0016093117, z: -0.6344067, w: 0.0016463833} + outSlope: {x: 0.23034543, y: 0.0016093117, z: -0.6344067, w: 0.0016463833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: 0.9953906, y: -0.00036236105, z: 0.09582975, w: 0.003764009} + inSlope: {x: -0.013167834, y: -0.000606535, z: 0.1346646, w: 0.0009457339} + outSlope: {x: -0.013167834, y: -0.000606535, z: 0.1346646, w: 0.0009457339} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.7916667 + value: {x: 0.9200495, y: -0.0017260889, z: 0.39177746, w: 0.004053574} + inSlope: {x: -0.2729754, y: -0.0032150168, z: 0.64094734, w: -0.0002842298} + outSlope: {x: -0.2729754, y: -0.0032150168, z: 0.64094734, w: -0.0002842298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.2083335 + value: {x: 0.85159695, y: -0.0022279045, z: 0.52418, w: 0.0036195305} + inSlope: {x: 0.17130798, y: 0.0030560284, z: -0.28013957, w: -0.0023226007} + outSlope: {x: 0.17130798, y: 0.0030560284, z: -0.28013957, w: -0.0023226007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.541667 + value: {x: 0.94002753, y: -0.0010431941, z: 0.3410849, w: 0.002875083} + inSlope: {x: 0.23035905, y: 0.0031598494, z: -0.6344017, w: -0.0026539685} + outSlope: {x: 0.23035905, y: 0.0031598494, z: -0.6344017, w: -0.0026539685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.25 + value: {x: 0.9953963, y: -0.00015991626, z: 0.095830284, w: 0.0016613186} + inSlope: {x: -0.013165666, y: -0.0003216081, z: 0.13466556, w: 0.000968773} + outSlope: {x: -0.013165666, y: -0.0003216081, z: 0.13466556, w: 0.000968773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.875 + value: {x: 0.9200559, y: -0.0008978509, z: 0.3917803, w: 0.0021085613} + inSlope: {x: -0.27297536, y: -0.0018587881, z: 0.64095306, w: 0.00028989895} + outSlope: {x: -0.27297536, y: -0.0018587881, z: 0.64095306, w: 0.00028989895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.291667 + value: {x: 0.8516015, y: -0.0014188547, z: 0.5241828, w: 0.0023051358} + inSlope: {x: 0.1712929, y: 0.0002382464, z: -0.2801512, w: 0.0013142582} + outSlope: {x: 0.1712929, y: 0.0002382464, z: -0.2801512, w: 0.0013142582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.625 + value: {x: 0.94002753, y: -0.0010365073, z: 0.3410851, w: 0.0028566783} + inSlope: {x: 0.2303463, y: 0.0015877717, z: -0.6344063, w: 0.0016368793} + outSlope: {x: 0.2303463, y: 0.0015877717, z: -0.6344063, w: 0.0016368793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.3333335 + value: {x: 0.9953907, y: -0.00035880343, z: 0.09582976, w: 0.003727292} + inSlope: {x: -0.013167193, y: -0.00060111115, z: 0.13466457, w: 0.0009414506} + outSlope: {x: -0.013167193, y: -0.00060111115, z: 0.13466457, w: 0.0009414506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.9583335 + value: {x: 0.9200496, y: -0.0017109911, z: 0.39177755, w: 0.004018159} + inSlope: {x: -0.27297553, y: -0.0031891083, z: 0.6409481, w: -0.0002766765} + outSlope: {x: -0.27297553, y: -0.0031891083, z: 0.6409481, w: -0.0002766765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.8462565, y: -0.0025112804, z: 0.53275484, w: 0.0039890874} + inSlope: {x: -0.14641365, y: -0.0023337475, z: 0.23555733, w: 0.0013038417} + outSlope: {x: -0.14641365, y: -0.0023337475, z: 0.23555733, w: 0.0013038417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.4266627, y: 0.021347893, z: 0.5616337, w: 0.7085695} + inSlope: {x: 0.08939552, y: 0.09918545, z: 0.06768608, w: -0.0034661293} + outSlope: {x: 0.08939552, y: 0.09918545, z: 0.06768608, w: -0.0034661293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.32179776, y: 0.119739056, z: 0.61759245, w: 0.7075933} + inSlope: {x: 0.2059703, y: 0.15066355, z: 0.079240285, w: -0.0008518692} + outSlope: {x: 0.2059703, y: 0.15066355, z: 0.079240285, w: -0.0008518692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: -0.28916654, y: 0.14178945, z: 0.62790227, w: 0.70853174} + inSlope: {x: -0.15259904, y: -0.10618718, z: -0.04078816, w: -0.0050067883} + outSlope: {x: -0.15259904, y: -0.10618718, z: -0.04078816, w: -0.0050067883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.41034365, y: 0.038132858, z: 0.5724722, w: 0.7088297} + inSlope: {x: -0.17446476, y: -0.18053827, z: -0.1119668, w: -0.00056862703} + outSlope: {x: -0.17446476, y: -0.18053827, z: -0.1119668, w: -0.00056862703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2083335 + value: {x: -0.411863, y: 0.03693785, z: 0.571768, w: 0.70858026} + inSlope: {x: 0.17163047, y: 0.17928678, z: 0.108854175, w: 0.002243046} + outSlope: {x: 0.17163047, y: 0.17928678, z: 0.108854175, w: 0.002243046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: -0.2910283, y: 0.14131273, z: 0.6275958, w: 0.70813614} + inSlope: {x: 0.1529178, y: 0.1124616, z: 0.041378897, w: 0.0038680956} + outSlope: {x: 0.1529178, y: 0.1124616, z: 0.041378897, w: 0.0038680956} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5416667 + value: {x: -0.3192088, y: 0.11930466, z: 0.61873937, w: 0.70783734} + inSlope: {x: -0.20874985, y: -0.14932956, z: -0.07641134, w: -0.0022966817} + outSlope: {x: -0.20874985, y: -0.14932956, z: -0.07641134, w: -0.0022966817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.041667 + value: {x: -0.4226682, y: 0.02529728, z: 0.5646813, w: 0.7084114} + inSlope: {x: -0.10600701, y: -0.11173208, z: -0.07019642, w: -0.002951133} + outSlope: {x: -0.10600701, y: -0.11173208, z: -0.07019642, w: -0.002951133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.625 + value: {x: -0.33980644, y: 0.10509378, z: 0.61087584, w: 0.7073314} + inSlope: {x: 0.21816334, y: 0.1792856, z: 0.09234437, w: -0.0014734309} + outSlope: {x: 0.21816334, y: 0.1792856, z: 0.09234437, w: -0.0014734309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.416667 + value: {x: -0.28300494, y: 0.14616573, z: 0.62959355, w: 0.7086295} + inSlope: {x: -0.1326615, y: -0.08857589, z: -0.037442155, w: -0.0015728476} + outSlope: {x: -0.1326615, y: -0.08857589, z: -0.037442155, w: -0.0015728476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6 + value: {x: -0.40249583, y: 0.046345707, z: 0.5771717, w: 0.70902896} + inSlope: {x: -0.19877031, y: -0.20280059, z: -0.12285998, w: 0.00067520654} + outSlope: {x: -0.19877031, y: -0.20280059, z: -0.12285998, w: 0.00067520654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.3333335 + value: {x: -0.41841704, y: 0.03021537, z: 0.56723803, w: 0.7086997} + inSlope: {x: 0.1394636, y: 0.14693119, z: 0.09177982, w: 0.0022530642} + outSlope: {x: 0.1394636, y: 0.14693119, z: 0.09177982, w: 0.0022530642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.8333335 + value: {x: -0.31335288, y: 0.1253537, z: 0.6205528, w: 0.7078211} + inSlope: {x: 0.20218748, y: 0.14139238, z: 0.066552654, w: 0.0062492136} + outSlope: {x: 0.20218748, y: 0.14139238, z: 0.066552654, w: 0.0062492136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.5833335 + value: {x: -0.2956321, y: 0.13699101, z: 0.6259549, w: 0.70853066} + inSlope: {x: -0.16448262, y: -0.12658823, z: -0.048304982, w: -0.0016129079} + outSlope: {x: -0.16448262, y: -0.12658823, z: -0.048304982, w: -0.0016129079} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.125 + value: {x: -0.41078275, y: 0.038508594, z: 0.5723875, w: 0.7086235} + inSlope: {x: -0.1759491, y: -0.17870623, z: -0.11076285, w: -0.0025069786} + outSlope: {x: -0.1759491, y: -0.17870623, z: -0.11076285, w: -0.0025069786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.42607272, y: 0.022201087, z: 0.56212467, w: 0.708509} + inSlope: {x: -0.07622525, y: -0.09038923, z: -0.05592384, w: 0.0018654155} + outSlope: {x: -0.07622525, y: -0.09038923, z: -0.05592384, w: 0.0018654155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.06540207, y: 0.25620756, z: -0.05823031, w: 0.96264714} + inSlope: {x: -0.00061422586, y: 0.014323711, z: 0.0017395914, w: -0.003669262} + outSlope: {x: -0.00061422586, y: 0.014323711, z: 0.0017395914, w: -0.003669262} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.061900288, y: 0.20115854, z: -0.062564485, w: 0.9755969} + inSlope: {x: 0.002746981, y: 0.068293475, z: 0.0050179637, w: -0.013946048} + outSlope: {x: 0.002746981, y: 0.068293475, z: 0.0050179637, w: -0.013946048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: 0.06467792, y: 0.24804941, z: -0.0589248, w: 0.96478814} + inSlope: {x: -0.0018123651, y: -0.06742077, z: -0.00532717, w: 0.017118182} + outSlope: {x: -0.0018123651, y: -0.06742077, z: -0.00532717, w: 0.017118182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.4583335 + value: {x: 0.062564306, y: 0.20107226, z: -0.0626248, w: 0.9755685} + inSlope: {x: 0.003676329, y: 0.06799461, z: 0.003517901, w: -0.014036194} + outSlope: {x: 0.003676329, y: 0.06799461, z: 0.003517901, w: -0.014036194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.5 + value: {x: 0.065088816, y: 0.24802439, z: -0.059029177, w: 0.96476054} + inSlope: {x: -0.0027514938, y: -0.06736836, z: -0.0051107556, w: 0.017180406} + outSlope: {x: -0.0027514938, y: -0.06736836, z: -0.0051107556, w: 0.017180406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.541667 + value: {x: 0.061928924, y: 0.20111308, z: -0.06249383, w: 0.975609} + inSlope: {x: 0.0031831095, y: 0.06802358, z: 0.0036644298, w: -0.01400111} + outSlope: {x: 0.0031831095, y: 0.06802358, z: 0.0036644298, w: -0.01400111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.5833335 + value: {x: 0.0645851, y: 0.24805516, z: -0.058899667, w: 0.9647944} + inSlope: {x: -0.0015352129, y: -0.06744029, z: -0.0054636807, w: 0.017096823} + outSlope: {x: -0.0015352129, y: -0.06744029, z: -0.0054636807, w: 0.017096823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.625 + value: {x: 0.06260707, y: 0.20102957, z: -0.06263229, w: 0.975574} + inSlope: {x: 0.0038982248, y: 0.067600995, z: 0.00348181, w: -0.013968913} + outSlope: {x: 0.0038982248, y: 0.067600995, z: 0.00348181, w: -0.013968913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.06518945, y: 0.25270912, z: -0.058532584, w: 0.96356755} + inSlope: {x: 0.003470116, y: 0.059474424, z: 0.0049779876, w: -0.0154468985} + outSlope: {x: 0.003470116, y: 0.059474424, z: 0.0049779876, w: -0.0154468985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14683183, y: 0.2956229, z: -0.11843935, w: 0.9364933} + inSlope: {x: 0.008400321, y: 0.0993948, z: 0.029229999, w: -0.02925539} + outSlope: {x: 0.008400321, y: 0.0993948, z: 0.029229999, w: -0.02925539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1372257, y: 0.28604412, z: -0.13168238, w: 0.9391526} + inSlope: {x: -0.03818999, y: -0.12352747, z: -0.04652951, w: 0.036660414} + outSlope: {x: -0.03818999, y: -0.12352747, z: -0.04652951, w: 0.036660414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.12513831, y: 0.2262562, z: -0.14027278, w: 0.9557574} + inSlope: {x: 0.041786917, y: 0.07534374, z: 0.021896113, w: -0.020125138} + outSlope: {x: 0.041786917, y: 0.07534374, z: 0.021896113, w: -0.020125138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.1438634, y: 0.30704185, z: -0.121848404, w: 0.9328352} + inSlope: {x: -0.02405776, y: -0.072337255, z: -0.042545475, w: 0.021932561} + outSlope: {x: -0.02405776, y: -0.072337255, z: -0.042545475, w: 0.021932561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5416667 + value: {x: 0.123356715, y: 0.22345838, z: -0.14107125, w: 0.9565293} + inSlope: {x: 0.037710983, y: 0.058494575, z: 0.019262694, w: -0.015716285} + outSlope: {x: 0.037710983, y: 0.058494575, z: 0.019262694, w: -0.015716285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.5833335 + value: {x: 0.144802, y: 0.3097541, z: -0.120142214, w: 0.9320143} + inSlope: {x: -0.020959755, y: -0.05699823, z: -0.03896022, w: 0.017150467} + outSlope: {x: -0.020959755, y: -0.05699823, z: -0.03896022, w: 0.017150467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.625 + value: {x: 0.12335672, y: 0.22345841, z: -0.14107127, w: 0.9565293} + inSlope: {x: 0.0377107, y: 0.058495954, z: 0.019262865, w: -0.015716987} + outSlope: {x: 0.0377107, y: 0.058495954, z: 0.019262865, w: -0.015716987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.666667 + value: {x: 0.14480205, y: 0.3097541, z: -0.120142244, w: 0.9320143} + inSlope: {x: -0.020959109, y: -0.05699831, z: -0.038960364, w: 0.017150383} + outSlope: {x: -0.020959109, y: -0.05699831, z: -0.038960364, w: 0.017150383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.7083335 + value: {x: 0.12340099, y: 0.22345193, z: -0.14108165, w: 0.95652366} + inSlope: {x: 0.038197752, y: 0.0584241, z: 0.01914604, w: -0.015781462} + outSlope: {x: 0.038197752, y: 0.0584241, z: 0.01914604, w: -0.015781462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.14537004, y: 0.28583345, z: -0.12177313, w: 0.93932855} + inSlope: {x: 0.025282172, y: 0.1277781, z: 0.043759476, w: -0.03667315} + outSlope: {x: 0.025282172, y: 0.1277781, z: 0.043759476, w: -0.03667315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06441035, y: -0.26295173, z: 0.8384734, w: 0.47293776} + inSlope: {x: -0.055779755, y: -0.098562956, z: -0.016353607, w: -0.034034014} + outSlope: {x: -0.055779755, y: -0.098562956, z: -0.016353607, w: -0.034034014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.10226639, y: -0.29600748, z: 0.86647516, w: 0.3887698} + inSlope: {x: -0.08627005, y: 0.004537943, z: 0.08772041, w: -0.21471447} + outSlope: {x: -0.08627005, y: 0.004537943, z: 0.08772041, w: -0.21471447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.10804443, y: -0.27219293, z: 0.89488673, w: 0.33677185} + inSlope: {x: 0.11509289, y: 0.083504036, z: -0.010390529, w: 0.1317259} + outSlope: {x: 0.11509289, y: 0.083504036, z: -0.010390529, w: 0.1317259} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: -0.05602643, y: -0.2507438, z: 0.84802353, w: 0.4635134} + inSlope: {x: -0.033274718, y: -0.059984542, z: -0.07588859, w: 0.10244995} + outSlope: {x: -0.033274718, y: -0.059984542, z: -0.07588859, w: 0.10244995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.09193795, y: -0.2955308, z: 0.85513234, w: 0.4158818} + inSlope: {x: -0.07768798, y: -0.016398637, z: 0.08826454, w: -0.21043643} + outSlope: {x: -0.07768798, y: -0.016398637, z: 0.08826454, w: -0.21043643} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.2083335 + value: {x: -0.11694108, y: -0.2784439, z: 0.89460117, w: 0.32936686} + inSlope: {x: 0.0908764, y: 0.06640084, z: 0.01161362, w: 0.0566637} + outSlope: {x: 0.0908764, y: 0.06640084, z: 0.01161362, w: 0.0566637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.875 + value: {x: -0.054272708, y: -0.24518436, z: 0.85857385, w: 0.44697893} + inSlope: {x: 0.00784415, y: -0.025812153, z: -0.088510126, w: 0.15691012} + outSlope: {x: 0.00784415, y: -0.025812153, z: -0.088510126, w: 0.15691012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.5 + value: {x: -0.08355397, y: -0.29145163, z: 0.8451337, w: 0.44025412} + inSlope: {x: -0.058373597, y: -0.049358305, z: 0.06867298, w: -0.1757147} + outSlope: {x: -0.058373597, y: -0.049358305, z: 0.06867298, w: -0.1757147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.25 + value: {x: -0.1202034, y: -0.28110924, z: 0.8941449, w: 0.32716003} + inSlope: {x: 0.064206876, y: 0.062196363, z: 0.010374761, w: 0.048517823} + outSlope: {x: 0.064206876, y: 0.062196363, z: 0.010374761, w: 0.048517823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.916667 + value: {x: -0.054923803, y: -0.244407, z: 0.8622853, w: 0.44012794} + inSlope: {x: 0.023481488, y: -0.011346659, z: -0.088896826, w: 0.17090642} + outSlope: {x: 0.023481488, y: -0.011346659, z: -0.088896826, w: 0.17090642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.541667 + value: {x: -0.08120577, y: -0.28916577, z: 0.84245694, w: 0.44727522} + inSlope: {x: -0.055296324, y: -0.060276244, z: 0.059091486, w: -0.16043338} + outSlope: {x: -0.055296324, y: -0.060276244, z: 0.059091486, w: -0.16043338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.25 + value: {x: -0.123838894, y: -0.28572217, z: 0.8924928, w: 0.32631806} + inSlope: {x: 0.021916738, y: 0.049123663, z: 0.029369771, w: -0.029030416} + outSlope: {x: 0.021916738, y: 0.049123663, z: 0.029369771, w: -0.029030416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.9583335 + value: {x: -0.056268286, y: -0.24422988, z: 0.86591315, w: 0.43287423} + inSlope: {x: 0.03879629, y: 0.0027068958, z: -0.088158466, w: 0.18304107} + outSlope: {x: 0.03879629, y: 0.0027068958, z: -0.088158466, w: 0.18304107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.05964979, y: -0.25621822, z: 0.8423824, w: 0.47030428} + inSlope: {x: -0.048295073, y: -0.06913982, z: -0.062603, w: 0.069038965} + outSlope: {x: -0.048295073, y: -0.06913982, z: -0.062603, w: 0.069038965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0025452888, y: 0.2842073, z: 0.00858609, w: 0.95872104} + inSlope: {x: 0.00013289228, y: -0.008610249, z: -0.00016555935, w: 0.0025520325} + outSlope: {x: 0.00013289228, y: -0.008610249, z: -0.00016555935, w: 0.0025520325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.004257827, y: 0.3734847, z: 0.010574525, w: 0.9275663} + inSlope: {x: -0.0019337672, y: 0.0438452, z: 0.0033675367, w: -0.017671116} + outSlope: {x: -0.0019337672, y: 0.0438452, z: 0.0033675367, w: -0.017671116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.004032766, y: 0.3594984, z: 0.010467063, w: 0.9330783} + inSlope: {x: -0.00013674227, y: 0.037169673, z: -0.0008876878, w: -0.014315121} + outSlope: {x: -0.00013674227, y: 0.037169673, z: -0.0008876878, w: -0.014315121} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: -0.0034157124, y: 0.33260363, z: 0.009684379, w: 0.9430108} + inSlope: {x: 0.0031411839, y: -0.18499973, z: -0.0028575575, w: 0.06524417} + outSlope: {x: 0.0031411839, y: -0.18499973, z: -0.0028575575, w: 0.06524417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.0027221553, y: 0.29547083, z: 0.008801211, w: 0.95530736} + inSlope: {x: -0.0024475534, y: 0.1704588, z: 0.00233007, w: -0.05290535} + outSlope: {x: -0.0024475534, y: 0.1704588, z: 0.00233007, w: -0.05290535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: -0.0042555216, y: 0.37351927, z: 0.0105676595, w: 0.92755246} + inSlope: {x: -0.0019804437, y: 0.046837457, z: 0.003385878, w: -0.018876316} + outSlope: {x: -0.0019804437, y: 0.046837457, z: 0.003385878, w: -0.018876316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.3333335 + value: {x: -0.004032766, y: 0.35949835, z: 0.010467063, w: 0.93307835} + inSlope: {x: -0.00013673698, y: 0.03716938, z: -0.0008877338, w: -0.014315859} + outSlope: {x: -0.00013673698, y: 0.03716938, z: -0.0008877338, w: -0.014315859} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.875 + value: {x: -0.0034157156, y: 0.33260366, z: 0.009684383, w: 0.9430108} + inSlope: {x: 0.0031411378, y: -0.18499927, z: -0.0028574264, w: 0.06524354} + outSlope: {x: 0.0031411378, y: -0.18499927, z: -0.0028574264, w: 0.06524354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.3333335 + value: {x: -0.0027221516, y: 0.29547083, z: 0.008801194, w: 0.95530736} + inSlope: {x: -0.0024475418, y: 0.17045826, z: 0.0023300215, w: -0.052905522} + outSlope: {x: -0.0024475418, y: 0.17045826, z: 0.0023300215, w: -0.052905522} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.791667 + value: {x: -0.0042555183, y: 0.37351927, z: 0.010567648, w: 0.92755246} + inSlope: {x: -0.0019804707, y: 0.046836924, z: 0.003385968, w: -0.018875532} + outSlope: {x: -0.0019804707, y: 0.046836924, z: 0.003385968, w: -0.018875532} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.416667 + value: {x: -0.0040327692, y: 0.35949835, z: 0.010467067, w: 0.93307835} + inSlope: {x: -0.00013673106, y: 0.037168562, z: -0.000887709, w: -0.014315106} + outSlope: {x: -0.00013673106, y: 0.037168562, z: -0.000887709, w: -0.014315106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.9583335 + value: {x: -0.0034157156, y: 0.3326036, z: 0.009684381, w: 0.9430108} + inSlope: {x: 0.0031410912, y: -0.18499947, z: -0.002857301, w: 0.065243736} + outSlope: {x: 0.0031410912, y: -0.18499947, z: -0.002857301, w: 0.065243736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.416667 + value: {x: -0.0027221553, y: 0.29547092, z: 0.008801199, w: 0.95530736} + inSlope: {x: -0.0024475716, y: 0.17045738, z: 0.002330155, w: -0.052905258} + outSlope: {x: -0.0024475716, y: 0.17045738, z: 0.002330155, w: -0.052905258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.875 + value: {x: -0.0042555244, y: 0.37351927, z: 0.0105676595, w: 0.92755246} + inSlope: {x: -0.00198039, y: 0.046837438, z: 0.0033857473, w: -0.018876309} + outSlope: {x: -0.00198039, y: 0.046837438, z: 0.0033857473, w: -0.018876309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.5 + value: {x: -0.0040327716, y: 0.35949835, z: 0.010467069, w: 0.93307835} + inSlope: {x: -0.00013674198, y: 0.037168898, z: -0.0008876977, w: -0.014315097} + outSlope: {x: -0.00013674198, y: 0.037168898, z: -0.0008876977, w: -0.014315097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.041667 + value: {x: -0.0034157173, y: 0.3326036, z: 0.009684382, w: 0.9430108} + inSlope: {x: 0.0031411361, y: -0.18500057, z: -0.0028573913, w: 0.065244414} + outSlope: {x: 0.0031411361, y: -0.18500057, z: -0.0028573913, w: 0.065244414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.0027189665, y: 0.29368898, z: 0.008849303, w: 0.9558562} + inSlope: {x: 0.0031044974, y: -0.16382253, z: -0.0045668436, w: 0.051027123} + outSlope: {x: 0.0031044974, y: -0.16382253, z: -0.0045668436, w: 0.051027123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0021212928, y: -0.0025391348, z: 0.08153213, w: 0.99666524} + inSlope: {x: 0.007323819, y: 0.009425087, z: -0.29794067, w: 0.02254343} + outSlope: {x: 0.007323819, y: 0.009425087, z: -0.29794067, w: 0.02254343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.0023045698, y: 0.0034220524, z: -0.1207924, w: 0.9926692} + inSlope: {x: 0.0080910865, y: 0.00898134, z: -0.3298707, w: -0.039987784} + outSlope: {x: 0.0080910865, y: 0.00898134, z: -0.3298707, w: -0.039987784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0.0035612013, y: 0.004557125, z: -0.14624941, w: 0.9892309} + inSlope: {x: -0.0051673995, y: -0.0072067305, z: 0.2616029, w: 0.038504347} + outSlope: {x: -0.0051673995, y: -0.0072067305, z: 0.2616029, w: 0.038504347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: -0.0007465054, y: -0.0004913474, z: 0.04187398, w: 0.9991225} + inSlope: {x: -0.0072434023, y: -0.009963781, z: 0.36036497, w: -0.014933106} + outSlope: {x: -0.0072434023, y: -0.009963781, z: 0.36036497, w: -0.014933106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0.0020630814, y: -0.0026035327, z: 0.0917014, w: 0.995781} + inSlope: {x: 0.0028388111, y: 0.0043308344, z: -0.22132188, w: 0.02018877} + outSlope: {x: 0.0028388111, y: 0.0043308344, z: -0.22132188, w: 0.02018877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.0018200157, y: 0.002542462, z: -0.091339976, w: 0.99581486} + inSlope: {x: 0.007982211, y: 0.010453235, z: -0.38008428, w: -0.03475564} + outSlope: {x: 0.007982211, y: 0.010453235, z: -0.38008428, w: -0.03475564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.0833335 + value: {x: 0.003445767, y: 0.0048569315, z: -0.15623076, w: 0.98770267} + inSlope: {x: -0.0043190494, y: -0.0050059487, z: 0.21958092, w: 0.034559768} + outSlope: {x: -0.0043190494, y: -0.0050059487, z: 0.21958092, w: 0.034559768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5833335 + value: {x: -0.00068413053, y: -0.000074304524, z: 0.026434954, w: 0.9996503} + inSlope: {x: -0.009239261, y: -0.010438524, z: 0.3815009, w: -0.0099477945} + outSlope: {x: -0.009239261, y: -0.010438524, z: 0.3815009, w: -0.0099477945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0018898966, y: -0.0025875915, z: 0.09170186, w: 0.99578136} + inSlope: {x: 0.0033270633, y: 0.004338175, z: -0.22132112, w: 0.020188764} + outSlope: {x: 0.0033270633, y: 0.004338175, z: -0.22132112, w: 0.020188764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.625 + value: {x: 0.0020292636, y: 0.0025232686, z: -0.09134049, w: 0.99581444} + inSlope: {x: 0.007933168, y: 0.010378471, z: -0.38008642, w: -0.034757055} + outSlope: {x: 0.007933168, y: 0.010378471, z: -0.38008642, w: -0.034757055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.166667 + value: {x: 0.0033194774, y: 0.004876905, z: -0.15623006, w: 0.9877031} + inSlope: {x: -0.00497757, y: -0.00493083, z: 0.21958321, w: 0.03456182} + outSlope: {x: -0.00497757, y: -0.00493083, z: 0.21958321, w: 0.03456182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.666667 + value: {x: -0.00072535465, y: -0.00007539614, z: 0.026435008, w: 0.9996503} + inSlope: {x: -0.009479223, y: -0.010472978, z: 0.3815003, w: -0.009947774} + outSlope: {x: -0.009479223, y: -0.010472978, z: 0.3815003, w: -0.009947774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.2083335 + value: {x: -0.0016518445, y: -0.0025656621, z: 0.09170246, w: 0.9957818} + inSlope: {x: 0.004394759, y: 0.0043835174, z: -0.22131938, w: 0.020190315} + outSlope: {x: 0.004394759, y: 0.0043835174, z: -0.22131938, w: 0.020190315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.7083335 + value: {x: 0.0023091612, y: 0.0024976009, z: -0.09134125, w: 0.99581385} + inSlope: {x: 0.00885115, y: 0.010189575, z: -0.38009155, w: -0.034761563} + outSlope: {x: 0.00885115, y: 0.010189575, z: -0.38009155, w: -0.034761563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.25 + value: {x: 0.0033616922, y: 0.00487023, z: -0.15623036, w: 0.9877029} + inSlope: {x: -0.006022648, y: -0.0047568153, z: 0.2195885, w: 0.034565367} + outSlope: {x: -0.006022648, y: -0.0047568153, z: 0.2195885, w: 0.034565367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.75 + value: {x: -0.000836775, y: -0.0003287968, z: 0.026434675, w: 0.9996502} + inSlope: {x: -0.0083040185, y: -0.011297969, z: 0.38149634, w: -0.009950603} + outSlope: {x: -0.0083040185, y: -0.011297969, z: 0.38149634, w: -0.009950603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.208334 + value: {x: -0.002700094, y: -0.0032023378, z: 0.10567595, w: 0.9943918} + inSlope: {x: 0.0024206517, y: 0.0021951785, z: -0.12503497, w: 0.01317008} + outSlope: {x: 0.0024206517, y: 0.0021951785, z: -0.12503497, w: 0.01317008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.0025722608, y: -0.0030701803, z: 0.09943063, w: 0.9950365} + inSlope: {x: 0.0030680413, y: 0.0031718276, z: -0.14989002, w: 0.015472649} + outSlope: {x: 0.0030680413, y: 0.0031718276, z: -0.14989002, w: 0.015472649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.24507414, y: -0.1637671, z: 0.6658451, w: 0.6853972} + inSlope: {x: -0.10953784, y: -0.03938341, z: -0.035086155, w: -0.014947414} + outSlope: {x: -0.10953784, y: -0.03938341, z: -0.035086155, w: -0.014947414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2339228, y: -0.22180672, z: 0.61680335, w: 0.71807766} + inSlope: {x: 0.14895229, y: -0.11068971, z: -0.10226435, w: 0.10214276} + outSlope: {x: 0.14895229, y: -0.11068971, z: -0.10226435, w: 0.10214276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15307322, y: -0.23305382, z: 0.60452634, w: 0.746192} + inSlope: {x: -0.012779308, y: 0.11805307, z: 0.11512553, w: -0.059139546} + outSlope: {x: -0.012779308, y: 0.11805307, z: 0.11512553, w: -0.059139546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.23498401, y: -0.16345115, z: 0.66596174, w: 0.688884} + inSlope: {x: -0.13365531, y: 0.006752024, z: -0.0075116092, w: -0.03668116} + outSlope: {x: -0.13365531, y: 0.006752024, z: -0.0075116092, w: -0.03668116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: -0.23989947, y: -0.21706916, z: 0.6206987, w: 0.71418655} + inSlope: {x: 0.13471141, y: -0.11421089, z: -0.10267149, w: 0.09972392} + outSlope: {x: 0.13471141, y: -0.11421089, z: -0.10267149, w: 0.09972392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.375 + value: {x: -0.15256459, y: -0.23770128, z: 0.6004879, w: 0.74808854} + inSlope: {x: 0.017056225, y: 0.10571809, z: 0.10129602, w: -0.04433944} + outSlope: {x: 0.017056225, y: 0.10571809, z: 0.10129602, w: -0.04433944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.041667 + value: {x: -0.22886965, y: -0.16388358, z: 0.6664229, w: 0.6903922} + inSlope: {x: -0.13790497, y: 0.022914395, z: 0.011599902, w: -0.05140239} + outSlope: {x: -0.13790497, y: 0.022914395, z: 0.011599902, w: -0.05140239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.791667 + value: {x: -0.24003823, y: -0.21719906, z: 0.62067044, w: 0.71412504} + inSlope: {x: 0.13847291, y: -0.11189457, z: -0.100042626, w: 0.099415354} + outSlope: {x: 0.13847291, y: -0.11189457, z: -0.100042626, w: 0.099415354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.5 + value: {x: -0.1529688, y: -0.2331625, z: 0.60455096, w: 0.7461595} + inSlope: {x: -0.013847429, y: 0.11924896, z: 0.11557506, w: -0.059343185} + outSlope: {x: -0.013847429, y: 0.11924896, z: 0.11557506, w: -0.059343185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.2083335 + value: {x: -0.24031019, y: -0.1635894, z: 0.66568166, w: 0.68728274} + inSlope: {x: -0.12315767, y: -0.011023742, z: -0.011711642, w: -0.034307376} + outSlope: {x: -0.12315767, y: -0.011023742, z: -0.011711642, w: -0.034307376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.916667 + value: {x: -0.23406705, y: -0.22179867, z: 0.61639655, w: 0.71838236} + inSlope: {x: 0.14435588, y: -0.11200257, z: -0.10296659, w: 0.10077791} + outSlope: {x: 0.14435588, y: -0.11200257, z: -0.10296659, w: 0.10077791} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.5833335 + value: {x: -0.15246032, y: -0.23290558, z: 0.60501575, w: 0.74596703} + inSlope: {x: -0.011557861, y: 0.12210803, z: 0.114487134, w: -0.057206374} + outSlope: {x: -0.011557861, y: 0.12210803, z: 0.114487134, w: -0.057206374} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.2343974, y: -0.1631597, z: 0.6667373, w: 0.6884026} + inSlope: {x: -0.13591604, y: 0.01600588, z: 0.0072141793, w: -0.048831254} + outSlope: {x: -0.13591604, y: 0.01600588, z: 0.0072141793, w: -0.048831254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000000049946265, y: -0.3616216, z: 0.000000009489788, w: 0.932325} + inSlope: {x: -0.0000000011056756, y: -0.0317173, z: -0.0000000024918094, w: -0.012328148} + outSlope: {x: -0.0000000011056756, y: -0.0317173, z: -0.0000000024918094, w: -0.012328148} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.0000000057375518, y: -0.39898247, z: 0.0000000072050845, w: 0.9169586} + inSlope: {x: -0.0000000036520982, y: 0.10483685, z: -1.383053e-10, w: 0.04557325} + outSlope: {x: -0.0000000036520982, y: 0.10483685, z: -1.383053e-10, w: 0.04557325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: -0.0000000074441857, y: -0.35475725, z: 0.0000000069050556, w: 0.93495846} + inSlope: {x: -0.0000000011452436, y: -0.032106012, z: -0.0000000025143074, w: -0.01219653} + outSlope: {x: -0.0000000011452436, y: -0.032106012, z: -0.0000000025143074, w: -0.01219653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.000000008282989, y: -0.3637243, z: 0.0000000056029226, w: 0.93150663} + inSlope: {x: -0.0000000021004978, y: 0.024498604, z: -0.0000000015350083, w: 0.009569416} + outSlope: {x: -0.0000000021004978, y: 0.024498604, z: -0.0000000015350083, w: 0.009569416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.000000008672833, y: -0.4012928, z: 0.0000000037722447, w: 0.9159498} + inSlope: {x: -3.0544042e-10, y: -0.08796592, z: -0.000000003606628, w: -0.03850715} + outSlope: {x: -3.0544042e-10, y: -0.08796592, z: -0.000000003606628, w: -0.03850715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: -0.0000000102764535, y: -0.36771727, z: 0.0000000031530571, w: 0.92993766} + inSlope: {x: -0.0000000034825942, y: 0.11845292, z: 2.0186215e-10, w: 0.046886355} + outSlope: {x: -0.0000000034825942, y: 0.11845292, z: 2.0186215e-10, w: 0.046886355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.9583335 + value: {x: -0.000000011651736, y: -0.36584526, z: 0.0000000016292455, w: 0.9306757} + inSlope: {x: -0.0000000020933568, y: 0.027911454, z: -0.000000001445501, w: 0.010970604} + outSlope: {x: -0.0000000020933568, y: 0.027911454, z: -0.000000001445501, w: 0.010970604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.5 + value: {x: -0.000000012266336, y: -0.38840082, z: 1.3214191e-10, w: 0.92149055} + inSlope: {x: -1.84055e-10, y: -0.111483485, z: -0.0000000041210546, w: -0.04698363} + outSlope: {x: -1.84055e-10, y: -0.111483485, z: -0.0000000041210546, w: -0.04698363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.041667 + value: {x: -0.00000001312558, y: -0.3941837, z: -0.0000000010528552, w: 0.9190317} + inSlope: {x: -0.0000000032448866, y: 0.11316615, z: 2.2628584e-10, w: 0.0485057} + outSlope: {x: -0.0000000032448866, y: 0.11316615, z: 2.2628584e-10, w: 0.0485057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.5833335 + value: {x: -0.000000014533308, y: -0.35615814, z: -0.0000000013795254, w: 0.9344257} + inSlope: {x: -0.0000000011663674, y: -0.044047046, z: -0.0000000028229938, w: -0.01679856} + outSlope: {x: -0.0000000011663674, y: -0.044047046, z: -0.0000000028229938, w: -0.01679856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.125 + value: {x: -0.00000001536529, y: -0.3635342, z: -0.0000000025891063, w: 0.93158084} + inSlope: {x: -0.0000000019716673, y: 0.023883075, z: -0.0000000014926029, w: 0.009324063} + outSlope: {x: -0.0000000019716673, y: 0.023883075, z: -0.0000000014926029, w: 0.009324063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.7083335 + value: {x: -0.000000015934964, y: -0.4012928, z: -0.000000004501168, w: 0.9159498} + inSlope: {x: -7.2134576e-10, y: -0.08796606, z: -0.000000003774025, w: -0.038507372} + outSlope: {x: -7.2134576e-10, y: -0.08796606, z: -0.000000003774025, w: -0.038507372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.3333335 + value: {x: -0.000000017376346, y: -0.36771724, z: -0.0000000050515756, w: 0.92993766} + inSlope: {x: -0.0000000028981089, y: 0.11845288, z: 4.614513e-10, w: 0.046885908} + outSlope: {x: -0.0000000028981089, y: 0.11845288, z: 4.614513e-10, w: 0.046885908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.125 + value: {x: -0.00000001874147, y: -0.36594486, z: -0.0000000065733503, w: 0.9306365} + inSlope: {x: -0.0000000019587392, y: 0.028277727, z: -0.0000000013761687, w: 0.011117256} + outSlope: {x: -0.0000000019587392, y: 0.028277727, z: -0.0000000013761687, w: 0.011117256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.00000001898573, y: -0.3623999, z: -0.0000000067449326, w: 0.9320227} + inSlope: {x: -0.000000001929281, y: 0.025992075, z: -0.0000000014211036, w: 0.010123884} + outSlope: {x: -0.000000001929281, y: 0.025992075, z: -0.0000000014211036, w: 0.010123884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.10553706, y: 0.11910378, z: -0.04670656, w: 0.98615146} + inSlope: {x: -0.036195517, y: -0.03248638, z: 0.30148137, w: 0.012355328} + outSlope: {x: -0.036195517, y: -0.03248638, z: 0.30148137, w: 0.012355328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.12779622, y: 0.09482567, z: 0.1573123, w: 0.97464305} + inSlope: {x: -0.032257482, y: -0.04341743, z: 0.33130878, w: -0.053265784} + outSlope: {x: -0.032257482, y: -0.04341743, z: 0.33130878, w: -0.053265784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.13024355, y: 0.091435246, z: 0.18286562, w: 0.9701734} + inSlope: {x: 0.024758391, y: 0.035202906, z: -0.2624224, w: 0.049231745} + outSlope: {x: 0.024758391, y: 0.035202906, z: -0.2624224, w: 0.049231745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: -0.11029101, y: 0.114715636, z: -0.0065842816, w: 0.98723495} + inSlope: {x: 0.042302795, y: 0.040712513, z: -0.36423415, w: -0.00224376} + outSlope: {x: 0.042302795, y: 0.040712513, z: -0.36423415, w: -0.00224376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0.104288444, y: 0.1201986, z: -0.056994736, w: 0.98561037} + inSlope: {x: -0.02730421, y: -0.023736432, z: 0.22409071, w: 0.0127415415} + outSlope: {x: -0.02730421, y: -0.023736432, z: 0.22409071, w: 0.0127415415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.124865904, y: 0.09865237, z: 0.12772387, w: 0.9789601} + inSlope: {x: -0.03853129, y: -0.048729565, z: 0.38218445, w: -0.04970875} + outSlope: {x: -0.03853129, y: -0.048729565, z: 0.38218445, w: -0.04970875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.0833335 + value: {x: -0.13118118, y: 0.09008489, z: 0.19287814, w: 0.9682326} + inSlope: {x: 0.020509627, y: 0.029804297, z: -0.22017029, w: 0.04363852} + outSlope: {x: 0.020509627, y: 0.029804297, z: -0.22017029, w: 0.04363852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5833335 + value: {x: -0.112090036, y: 0.11295843, z: 0.009017285, w: 0.98721576} + inSlope: {x: 0.044079192, y: 0.04377503, z: -0.3853868, w: 0.0036728326} + outSlope: {x: 0.044079192, y: 0.04377503, z: -0.3853868, w: 0.0036728326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.10428846, y: 0.12019859, z: -0.056994736, w: 0.98561037} + inSlope: {x: -0.027304284, y: -0.023736328, z: 0.22409028, w: 0.01274154} + outSlope: {x: -0.027304284, y: -0.023736328, z: 0.22409028, w: 0.01274154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.625 + value: {x: -0.124865904, y: 0.09865238, z: 0.12772383, w: 0.9789601} + inSlope: {x: -0.038531296, y: -0.04872957, z: 0.38218462, w: -0.04970874} + outSlope: {x: -0.038531296, y: -0.04872957, z: 0.38218462, w: -0.04970874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.166667 + value: {x: -0.13118117, y: 0.09008489, z: 0.19287807, w: 0.9682326} + inSlope: {x: 0.020509575, y: 0.02980422, z: -0.22017008, w: 0.043638404} + outSlope: {x: 0.020509575, y: 0.02980422, z: -0.22017008, w: 0.043638404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.666667 + value: {x: -0.11209004, y: 0.11295844, z: 0.009017243, w: 0.98721576} + inSlope: {x: 0.044079244, y: 0.043775078, z: -0.38538677, w: 0.0036728128} + outSlope: {x: 0.044079244, y: 0.043775078, z: -0.38538677, w: 0.0036728128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.2083335 + value: {x: -0.104288474, y: 0.120198585, z: -0.056994718, w: 0.98561037} + inSlope: {x: -0.027304277, y: -0.023736298, z: 0.22409031, w: 0.012741614} + outSlope: {x: -0.027304277, y: -0.023736298, z: 0.22409031, w: 0.012741614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.7083335 + value: {x: -0.12486592, y: 0.098652355, z: 0.1277239, w: 0.9789601} + inSlope: {x: -0.038531333, y: -0.048729666, z: 0.38218504, w: -0.049709033} + outSlope: {x: -0.038531333, y: -0.048729666, z: 0.38218504, w: -0.049709033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.25 + value: {x: -0.1311812, y: 0.09008487, z: 0.19287816, w: 0.9682326} + inSlope: {x: 0.020509727, y: 0.029804096, z: -0.2201693, w: 0.043638363} + outSlope: {x: 0.020509727, y: 0.029804096, z: -0.2201693, w: 0.043638363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.75 + value: {x: -0.11209007, y: 0.11295842, z: 0.009017346, w: 0.98721576} + inSlope: {x: 0.04407925, y: 0.043775007, z: -0.38538668, w: 0.0036728496} + outSlope: {x: 0.04407925, y: 0.043775007, z: -0.38538668, w: 0.0036728496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.208334 + value: {x: -0.10255053, y: 0.121684745, z: -0.071151495, w: 0.98468965} + inSlope: {x: -0.015633887, y: -0.01320397, z: 0.12663439, w: 0.009015135} + outSlope: {x: -0.015633887, y: -0.01320397, z: 0.12663439, w: 0.009015135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.10332985, y: 0.12102368, z: -0.064826556, w: 0.98512626} + inSlope: {x: -0.018704044, y: -0.015865866, z: 0.15180086, w: 0.010478657} + outSlope: {x: -0.018704044, y: -0.015865866, z: 0.15180086, w: 0.010478657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.5495697, y: -0.19044077, z: -0.058861062, w: 0.81132036} + inSlope: {x: 0.05755377, y: 0.05223477, z: -0.16916567, w: 0.038047314} + outSlope: {x: 0.05755377, y: 0.05223477, z: -0.16916567, w: 0.038047314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.54656684, y: -0.15545313, z: -0.057443522, w: 0.82085276} + inSlope: {x: -0.04956434, y: 0.04368601, z: 0.18816152, w: -0.011647934} + outSlope: {x: -0.04956434, y: 0.04368601, z: 0.18816152, w: -0.011647934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: -0.56686336, y: -0.17541255, z: 0.08010372, w: 0.80092436} + inSlope: {x: -0.010329718, y: -0.08369865, z: -0.04541181, w: -0.021131508} + outSlope: {x: -0.010329718, y: -0.08369865, z: -0.04541181, w: -0.021131508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0833335 + value: {x: -0.5498189, y: -0.18988675, z: -0.05850664, w: 0.81130713} + inSlope: {x: 0.05961018, y: 0.042037416, z: -0.18951759, w: 0.036660466} + outSlope: {x: 0.05961018, y: 0.042037416, z: -0.18951759, w: 0.036660466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.5484978, y: -0.15419216, z: -0.049473733, w: 0.8203215} + inSlope: {x: -0.052397393, y: 0.03789042, z: 0.20580193, w: -0.015580386} + outSlope: {x: -0.052397393, y: 0.03789042, z: 0.20580193, w: -0.015580386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5 + value: {x: -0.5673329, y: -0.17876074, z: 0.077624895, w: 0.8000952} + inSlope: {x: -0.009551538, y: -0.079853915, z: -0.07662815, w: -0.017227674} + outSlope: {x: -0.009551538, y: -0.079853915, z: -0.07662815, w: -0.017227674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.2083335 + value: {x: -0.5473389, y: -0.18822171, z: -0.06615816, w: 0.8127828} + inSlope: {x: 0.05648253, y: 0.048924036, z: -0.16715269, w: 0.035863057} + outSlope: {x: 0.05648253, y: 0.048924036, z: -0.16715269, w: 0.035863057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.8333335 + value: {x: -0.55288976, y: -0.15184692, z: -0.031314477, w: 0.8187031} + inSlope: {x: -0.052221738, y: 0.024428044, z: 0.2311769, w: -0.02194413} + outSlope: {x: -0.052221738, y: 0.024428044, z: 0.2311769, w: -0.02194413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.5833335 + value: {x: -0.5673329, y: -0.17876077, z: 0.0776249, w: 0.8000952} + inSlope: {x: -0.009551561, y: -0.07985396, z: -0.07662841, w: -0.017228432} + outSlope: {x: -0.009551561, y: -0.07985396, z: -0.07662841, w: -0.017228432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.291667 + value: {x: -0.5473389, y: -0.18822171, z: -0.066158205, w: 0.8127828} + inSlope: {x: 0.056482196, y: 0.048924312, z: -0.16715215, w: 0.035862852} + outSlope: {x: 0.056482196, y: 0.048924312, z: -0.16715215, w: 0.035862852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.916667 + value: {x: -0.55288976, y: -0.15184695, z: -0.03131445, w: 0.8187031} + inSlope: {x: -0.052220717, y: 0.024428599, z: 0.23117688, w: -0.021943297} + outSlope: {x: -0.052220717, y: 0.024428599, z: 0.23117688, w: -0.021943297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.666667 + value: {x: -0.56735694, y: -0.17866404, z: 0.0776985, w: 0.8000926} + inSlope: {x: -0.009797547, y: -0.07889129, z: -0.07588598, w: -0.017241906} + outSlope: {x: -0.009797547, y: -0.07889129, z: -0.07588598, w: -0.017241906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.5547109, y: -0.19342314, z: -0.041370384, w: 0.8081904} + inSlope: {x: 0.06069753, y: 0.022374613, z: -0.2310888, w: 0.03670319} + outSlope: {x: 0.06069753, y: 0.022374613, z: -0.2310888, w: 0.03670319} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.096417986, w: 0.99534094} + inSlope: {x: 0, y: -0, z: 0.0056723356, w: 0.0005493164} + outSlope: {x: 0, y: -0, z: 0.0056723356, w: 0.0005493164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0, y: -0, z: -0.090332195, w: 0.9959117} + inSlope: {x: 0, y: 0, z: -0.01819648, w: -0.0016500966} + outSlope: {x: 0, y: 0, z: -0.01819648, w: -0.0016500966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.625 + value: {x: 0, y: -0, z: -0.08956751, w: 0.99598074} + inSlope: {x: 0, y: 0, z: -0.018407661, w: -0.0016551034} + outSlope: {x: 0, y: 0, z: -0.018407661, w: -0.0016551034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.2083335 + value: {x: 0, y: -0, z: -0.08296203, w: 0.9965527} + inSlope: {x: 0, y: 0, z: 0.00044399663, w: 0.000037193444} + outSlope: {x: 0, y: 0, z: 0.00044399663, w: 0.000037193444} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.7083335 + value: {x: 0, y: -0, z: -0.09023647, w: 0.9959204} + inSlope: {x: 0, y: 0, z: 0.018413704, w: 0.001668698} + outSlope: {x: 0, y: 0, z: 0.018413704, w: 0.001668698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.166667 + value: {x: 0, y: -0, z: -0.09578781, w: 0.9954018} + inSlope: {x: 0, y: 0, z: -0.009171923, w: -0.0008819036} + outSlope: {x: 0, y: 0, z: -0.009171923, w: -0.0008819036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0, y: 0, z: -0.09635919, w: 0.99534667} + inSlope: {x: 0, y: 0, z: -0.0056411293, w: -0.0005450332} + outSlope: {x: 0, y: 0, z: -0.0056411293, w: -0.0005450332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 8.25 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 8.25 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.001967938, y: 0.003359993, z: -0.002109211} + inSlope: {x: 0.00031955837, y: -0.0003967738, z: 0.000098422766} + outSlope: {x: 0.00031955837, y: -0.0003967738, z: 0.000098422766} + tangentMode: 0 + weightedMode: 0 + 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.001231563, y: 0.00244571, z: -0.001931934} + inSlope: {x: 0.00027563976, y: -0.0003421925, z: 0.00010386939} + outSlope: {x: 0.00014882519, y: -0.00018480078, z: 0.00007081038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2916666 + value: {x: -0.001323367, y: 0.0025596928, z: -0.0019308539} + inSlope: {x: -0.0008303769, y: 0.001030992, z: -0.00002314212} + outSlope: {x: -0.0009384459, y: 0.0011704065, z: -0.000118127835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.0018728339, y: 0.0032653918, z: -0.0020738845} + inSlope: {x: -0.0003284171, y: 0.0004196624, z: 0.000022090693} + outSlope: {x: -0.00022980048, y: 0.00028718894, z: 0.000022090631} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.001734799, y: 0.003071919, z: -0.002037681} + inSlope: {x: 0.0009777348, y: -0.0012523603, z: 0.00016384688} + outSlope: {x: 0.0010557644, y: -0.0012618518, z: 0.00017301744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.125 + value: {x: -0.0012455441, y: 0.002446861, z: -0.001925544} + inSlope: {x: 0.000083927946, y: -0.00012388921, z: 0.00008007631} + outSlope: {x: -0.000028198903, y: 0.000027844852, z: -0.00001809951} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.4583333 + value: {x: -0.001406895, y: 0.0026620098, z: -0.001941805} + inSlope: {x: -0.0009822287, y: 0.0012523675, z: -0.0001583296} + outSlope: {x: -0.0010557333, y: 0.0012618446, z: -0.00019511781} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4 + value: {x: -0.0018566529, y: 0.0032324488, z: -0.0020716987} + inSlope: {x: -0.00047191052, y: 0.00063587545, z: -0.00007455811} + outSlope: {x: -0.00038400438, y: 0.0005220743, z: -0.00007455496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.5 + value: {x: -0.001734799, y: 0.003071919, z: -0.002037681} + inSlope: {x: 0.0009822036, y: -0.0012523675, z: 0.00016384784} + outSlope: {x: 0.0010557644, y: -0.0012618518, z: 0.00017301744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.2083335 + value: {x: -0.0012455441, y: 0.002446861, z: -0.001925544} + inSlope: {x: 0.000083927465, y: -0.0001238885, z: 0.00008007584} + outSlope: {x: -0.000028199063, y: 0.000027845012, z: -0.000018099614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.5416665 + value: {x: -0.001406895, y: 0.0026620098, z: -0.001941805} + inSlope: {x: -0.0009822287, y: 0.0012523675, z: -0.0001583296} + outSlope: {x: -0.0010557272, y: 0.0012618373, z: -0.00019511669} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.0833335 + value: {x: -0.0018566529, y: 0.0032324488, z: -0.0020716987} + inSlope: {x: -0.0004719078, y: 0.0006358718, z: -0.00007455769} + outSlope: {x: -0.00038400438, y: 0.0005220743, z: -0.00007455496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.5833335 + value: {x: -0.001734799, y: 0.003071919, z: -0.002037681} + inSlope: {x: 0.0009821923, y: -0.0012523532, z: 0.00016384595} + outSlope: {x: 0.0010557644, y: -0.0012618518, z: 0.00017301744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.2916665 + value: {x: -0.0012455441, y: 0.002446861, z: -0.001925544} + inSlope: {x: 0.000083928426, y: -0.00012388991, z: 0.00008007676} + outSlope: {x: -0.000028198743, y: 0.000027844693, z: -0.000018099407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.625 + value: {x: -0.001406895, y: 0.0026630308, z: -0.001941805} + inSlope: {x: -0.0009822287, y: 0.0012768722, z: -0.0001583296} + outSlope: {x: -0.0010798578, y: 0.0013309744, z: -0.00019511893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.0019646399, y: 0.003355867, z: -0.002108163} + inSlope: {x: -0.00031883712, y: 0.00039796522, z: -0.00010351102} + outSlope: {x: -0.00031883712, y: 0.00039796522, z: -0.00010351102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00015076356, y: -0.0012890372, z: -0.00029627277} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.00015076356, y: -0.0012890372, z: -0.00029627277} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000021829008, y: -0.00299883, z: -0.000053091007} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.000021829008, y: -0.00299883, z: -0.000053091007} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000019310792, y: -0.0025961702, z: 0.0003839116} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.000019310792, y: -0.0025961702, z: 0.0003839116} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0005193127, y: 0.001203004, z: -0.000053106396} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.0005193127, y: 0.001203004, z: -0.000053106396} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0029990699, y: -0.00000016072765, z: 0.0000546371} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.0029990699, y: -0.00000016072765, z: 0.0000546371} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00035560704, y: 0.00003682376, z: -0.0026000002} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.00035560704, y: 0.00003682376, z: -0.0026000002} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000011850327, y: 1.6192415e-10, z: -0.00006796107} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.000011850327, y: 1.6192415e-10, z: -0.00006796107} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0028583293, y: -2.5145708e-10, z: -0.00014242671} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.0028583293, y: -2.5145708e-10, z: -0.00014242671} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00145562, y: -0.0014599601, z: -0.00012458165} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.00145562, y: -0.0014599601, z: -0.00012458165} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00277497, y: 0.00000016828999, z: -0.00000543423} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.00277497, y: 0.00000016828999, z: -0.00000543423} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0020982702, y: -0.0000001674518, z: 0.000005433559} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.0020982702, y: -0.0000001674518, z: 0.000005433559} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014555802, y: 0.0014553498, z: -0.00012458174} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.0014555802, y: 0.0014553498, z: -0.00012458174} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00279524, y: -4.4703483e-10, z: 5.587935e-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} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.00279524, y: -4.4703483e-10, z: 5.587935e-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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0020026597, y: 0.000000001490116, z: 1.11758706e-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} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.0020026597, y: 0.000000001490116, z: 1.11758706e-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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0027371903, y: -6.519258e-10, z: -0.00019367904} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.0027371903, y: -6.519258e-10, z: -0.00019367904} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.000047508467, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0, y: 0.000047508467, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.013613639, y: -0.0010463827, z: 0.004070008} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.013613639, y: -0.0010463827, z: 0.004070008} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.013613639, y: -0.0010463827, z: -0.004080487} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: -0.013613639, y: -0.0010463827, z: -0.004080487} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.99999994, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.99999994, y: 0.99999994, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 1, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.99999994, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1.0000001, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.99999994, y: 1.0000001, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.99999994, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.99999994, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000001, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 1.0000001, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1.0000001, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 1, y: 1.0000001, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.99999994, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 1, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.99999994, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000001, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 1.0000001, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 24 + 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: 8.25 + 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/Resources/Models/Games/Airboarder/Animations/charge.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/charge.anim.meta new file mode 100644 index 000000000..2a95d4c79 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/charge.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7656cb95d07e19e4c9ad59d1873c00a0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/dog.meta b/Assets/Resources/Models/Games/Airboarder/Animations/dog.meta new file mode 100644 index 000000000..4e95343b7 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/dog.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 17052f7b8d1b44e47bc25dbe7016d7ac +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/dog/dog.controller b/Assets/Resources/Models/Games/Airboarder/Animations/dog/dog.controller new file mode 100644 index 000000000..d6f025bca --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/dog/dog.controller @@ -0,0 +1,132 @@ +%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: dog + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 8351072885829826264} + 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} + - serializedVersion: 5 + m_Name: tail + m_StateMachine: {fileID: 7678134819280363074} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 1 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &2796518858078946607 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: run + 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: 009a96a7160c0554880e45201df58e2e, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &7678134819280363074 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: tail + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 8907397066801831745} + m_Position: {x: 353.38504, y: 126.55763, 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: 8907397066801831745} +--- !u!1107 &8351072885829826264 +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: 2796518858078946607} + m_Position: {x: 316.2, y: 96, 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: 2796518858078946607} +--- !u!1102 &8907397066801831745 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: wag + 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: 6c9f6a4342417a44d8ea12a1ad78eb1d, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/dog/dog.controller.meta b/Assets/Resources/Models/Games/Airboarder/Animations/dog/dog.controller.meta new file mode 100644 index 000000000..5288cf212 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/dog/dog.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 88950fa3d23de6b4599cb96af1c0abe2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/dog/run.anim b/Assets/Resources/Models/Games/Airboarder/Animations/dog/run.anim new file mode 100644 index 000000000..e0854621e --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/dog/run.anim @@ -0,0 +1,1731 @@ +%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: run + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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.5833334 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: dog_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.5833334 + 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: dog_model_skeleton/dog_root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.5833334 + 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: dog_model_skeleton/dog_root/dogPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.5833334 + 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: dog_model_skeleton/dog_root/dogPg/sdwPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.008726534, y: 0, z: -0, w: 0.9999619} + inSlope: {x: 0.24893494, y: -0, z: 0, w: -0.0034632683} + outSlope: {x: 0.24893494, y: -0, z: 0, w: -0.0034632683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.040468585, y: -0, z: -0, w: 0.99918085} + inSlope: {x: 0.46872854, y: 0, z: 0, w: -0.01812315} + outSlope: {x: 0.46872854, y: 0, z: 0, w: -0.01812315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.03619422, y: -0, z: -0, w: 0.99934477} + inSlope: {x: -0.3984143, y: 0, z: 0, w: 0.01374936} + outSlope: {x: -0.3984143, y: 0, z: 0, w: 0.01374936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -0.028086415, y: 0, z: -0, w: 0.9996055} + inSlope: {x: 0.26141292, y: 0, z: 0, w: 0.0062713614} + outSlope: {x: 0.26141292, y: 0, z: 0, w: 0.0062713614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 0.0019123952, y: 0, z: -0, w: 0.9999982} + inSlope: {x: 0.36010808, y: 0, z: 0, w: 0.0020141592} + outSlope: {x: 0.36010808, y: 0, z: 0, w: 0.0020141592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.18930581, y: 0, z: -0, w: 0.9819182} + inSlope: {x: 0.08056283, y: 0, z: 0, w: 0.015388012} + outSlope: {x: 0.08056283, y: 0, z: 0, w: 0.015388012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.18594903, y: 0, z: -0, w: 0.9825594} + inSlope: {x: 1.0795435, y: 0, z: 0, w: 0.15761948} + outSlope: {x: 1.0795435, y: 0, z: 0, w: 0.15761948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.09934385, y: 0, z: -0, w: 0.9950532} + inSlope: {x: 2.084792, y: 0, z: 0, w: 0.2083919} + outSlope: {x: 2.084792, y: 0, z: 0, w: 0.2083919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.21956444, y: -0, z: -0, w: 0.97559804} + inSlope: {x: 1.5219908, y: 0, z: 0, w: -0.3337633} + outSlope: {x: 1.5219908, y: 0, z: 0, w: -0.3337633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.34862816, y: -0, z: -0, w: 0.9372611} + inSlope: {x: 0.44981292, y: 0, z: 0, w: -0.1624546} + outSlope: {x: 0.44981292, y: 0, z: 0, w: -0.1624546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: 0.35836014, y: -0, z: -0, w: 0.93358344} + inSlope: {x: -0.8333966, y: 0, z: 0, w: 0.27573764} + outSlope: {x: -0.8333966, y: 0, z: 0, w: 0.27573764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.27917847, y: -0, z: -0, w: 0.96023923} + inSlope: {x: -3.1378617, y: 0, z: 0, w: 0.74056166} + outSlope: {x: -3.1378617, y: 0, z: 0, w: 0.74056166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.09687172, y: -0, z: -0, w: 0.9952969} + inSlope: {x: -4.3753033, y: 0, z: 0, w: 0.43325981} + outSlope: {x: -4.3753033, y: 0, z: 0, w: 0.43325981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.0854302, y: 0, z: -0, w: 0.9963442} + inSlope: {x: -3.2101588, y: 0, z: 0, w: -0.11956496} + outSlope: {x: -3.2101588, y: 0, z: 0, w: -0.11956496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.17064166, y: 0, z: -0, w: 0.98533314} + inSlope: {x: -2.0450742, y: 0, z: 0, w: -0.26426542} + outSlope: {x: -2.0450742, y: 0, z: 0, w: -0.26426542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/l_back_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.5833334 + 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: dog_model_skeleton/dog_root/hip/l_back_leg/l_back_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.5833334 + 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: dog_model_skeleton/dog_root/hip/neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: 4.3624535, y: -0, z: 0, w: -0.39980936} + outSlope: {x: 4.3624535, y: -0, z: 0, w: -0.39980936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.1817689, y: -0, z: -0, w: 0.9833413} + inSlope: {x: 3.0033112, y: 0, z: 0, w: -0.38190508} + outSlope: {x: 3.0033112, y: 0, z: 0, w: -0.38190508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.25027594, y: -0, z: -0, w: 0.9681746} + inSlope: {x: 0.9382503, y: 0, z: 0, w: -0.21265125} + outSlope: {x: 0.9382503, y: 0, z: 0, w: -0.21265125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.25995642, y: -0, z: -0, w: 0.96562034} + inSlope: {x: 0.011629008, y: 0, z: 0, w: -0.0030126628} + outSlope: {x: 0.011629008, y: 0, z: 0, w: -0.0030126628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.25124502, y: -0, z: -0, w: 0.9679235} + inSlope: {x: -0.7661284, y: 0, z: 0, w: 0.17953347} + outSlope: {x: -0.7661284, y: 0, z: 0, w: 0.17953347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.022148382, y: 0, z: -0, w: 0.9997547} + inSlope: {x: -3.0182807, y: 0, z: 0, w: -0.079224646} + outSlope: {x: -3.0182807, y: 0, z: 0, w: -0.079224646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.27099752, y: 0, z: -0, w: 0.9625801} + inSlope: {x: -2.5394034, y: 0, z: 0, w: -0.681394} + outSlope: {x: -2.5394034, y: 0, z: 0, w: -0.681394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.41550794, y: 0, z: -0, w: 0.9095895} + inSlope: {x: -0.7105059, y: 0, z: 0, w: -0.30386072} + outSlope: {x: -0.7105059, y: 0, z: 0, w: -0.30386072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -0.42261827, y: 0, z: -0, w: 0.9063078} + inSlope: {x: 0.18623349, y: 0, z: 0, w: 0.08316772} + outSlope: {x: 0.18623349, y: 0, z: 0, w: 0.08316772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.39998847, y: 0, z: -0, w: 0.9165202} + inSlope: {x: 2.150211, y: 0, z: 0, w: 0.76331556} + outSlope: {x: 2.150211, y: 0, z: 0, w: 0.76331556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.24343392, y: 0, z: -0, w: 0.9699175} + inSlope: {x: 3.7573073, y: 0, z: 0, w: 1.2815346} + outSlope: {x: 3.7573073, y: 0, z: 0, w: 1.2815346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/neck/l_front_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.5833334 + 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: dog_model_skeleton/dog_root/hip/neck/l_front_leg/l_front_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.5833334 + 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: dog_model_skeleton/dog_root/hip/neck/nose2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: 4.243876, y: -0, z: 0, w: -0.3781972} + outSlope: {x: 4.243876, y: -0, z: 0, w: -0.3781972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.17682818, y: -0, z: -0, w: 0.9842418} + inSlope: {x: 2.9613125, y: 0, z: 0, w: -0.37112975} + outSlope: {x: 2.9613125, y: 0, z: 0, w: -0.37112975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.24677606, y: -0, z: -0, w: 0.9690725} + inSlope: {x: 0.99058163, y: 0, z: 0, w: -0.22158623} + outSlope: {x: 0.99058163, y: 0, z: 0, w: -0.22158623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.25937665, y: -0, z: -0, w: 0.96577626} + inSlope: {x: 0.05362758, y: 0, z: 0, w: -0.013787992} + outSlope: {x: 0.05362758, y: 0, z: 0, w: -0.013787992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: 0.19611238, y: -0, z: -0, w: 0.98058146} + inSlope: {x: -1.8181694, y: 0, z: 0, w: 0.32509091} + outSlope: {x: -1.8181694, y: 0, z: 0, w: 0.32509091} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.022148382, y: 0, z: -0, w: 0.9997547} + inSlope: {x: -3.0182807, y: 0, z: 0, w: -0.079224646} + outSlope: {x: -3.0182807, y: 0, z: 0, w: -0.079224646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.27099752, y: 0, z: -0, w: 0.9625801} + inSlope: {x: -2.5394034, y: 0, z: 0, w: -0.681394} + outSlope: {x: -2.5394034, y: 0, z: 0, w: -0.681394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.41550794, y: 0, z: -0, w: 0.9095895} + inSlope: {x: -0.7105059, y: 0, z: 0, w: -0.30386072} + outSlope: {x: -0.7105059, y: 0, z: 0, w: -0.30386072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -0.42261827, y: 0, z: -0, w: 0.9063078} + inSlope: {x: 0.18534014, y: 0, z: 0, w: 0.0827779} + outSlope: {x: 0.18534014, y: 0, z: 0, w: 0.0827779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.40006292, y: 0, z: -0, w: 0.9164877} + inSlope: {x: 2.1459281, y: 0, z: 0, w: 0.7622405} + outSlope: {x: 2.1459281, y: 0, z: 0, w: 0.7622405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.24379084, y: 0, z: -0, w: 0.9698279} + inSlope: {x: 3.750528, y: 0, z: 0, w: 1.2801641} + outSlope: {x: 3.750528, y: 0, z: 0, w: 1.2801641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/neck/r_front_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.5833334 + 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: dog_model_skeleton/dog_root/hip/neck/r_front_leg/r_front_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.18930581, y: 0, z: -0, w: 0.9819182} + inSlope: {x: 0.08056283, y: 0, z: 0, w: 0.015388012} + outSlope: {x: 0.08056283, y: 0, z: 0, w: 0.015388012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.18594903, y: 0, z: -0, w: 0.9825594} + inSlope: {x: 1.0795435, y: 0, z: 0, w: 0.15761948} + outSlope: {x: 1.0795435, y: 0, z: 0, w: 0.15761948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.09934385, y: 0, z: -0, w: 0.9950532} + inSlope: {x: 2.084792, y: 0, z: 0, w: 0.2083919} + outSlope: {x: 2.084792, y: 0, z: 0, w: 0.2083919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.21956444, y: -0, z: -0, w: 0.97559804} + inSlope: {x: 1.5219908, y: 0, z: 0, w: -0.3337633} + outSlope: {x: 1.5219908, y: 0, z: 0, w: -0.3337633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.34862816, y: -0, z: -0, w: 0.9372611} + inSlope: {x: 0.44981292, y: 0, z: 0, w: -0.1624546} + outSlope: {x: 0.44981292, y: 0, z: 0, w: -0.1624546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: 0.35836014, y: -0, z: -0, w: 0.93358344} + inSlope: {x: -0.8333966, y: 0, z: 0, w: 0.27573764} + outSlope: {x: -0.8333966, y: 0, z: 0, w: 0.27573764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.27917847, y: -0, z: -0, w: 0.96023923} + inSlope: {x: -3.1378617, y: 0, z: 0, w: 0.74056166} + outSlope: {x: -3.1378617, y: 0, z: 0, w: 0.74056166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.09687172, y: -0, z: -0, w: 0.9952969} + inSlope: {x: -4.3753033, y: 0, z: 0, w: 0.43325981} + outSlope: {x: -4.3753033, y: 0, z: 0, w: 0.43325981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.0854302, y: 0, z: -0, w: 0.9963442} + inSlope: {x: -3.2101588, y: 0, z: 0, w: -0.11956496} + outSlope: {x: -3.2101588, y: 0, z: 0, w: -0.11956496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.17064166, y: 0, z: -0, w: 0.98533314} + inSlope: {x: -2.0450742, y: 0, z: 0, w: -0.26426542} + outSlope: {x: -2.0450742, y: 0, z: 0, w: -0.26426542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/r_back_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.5833334 + 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: dog_model_skeleton/dog_root/hip/r_back_leg/r_back_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.5833334 + 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: dog_model_skeleton/dog_root/hip/tail2 + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000157401, y: 0.0173651, z: -0.0079759} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.000157401, y: 0.0173651, z: -0.0079759} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/dogPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000157401, y: -0.0160581, z: -0.0005396682} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: -0.000157401, y: -0.0160581, z: -0.0005396682} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/dogPg/sdwPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.01994164, z: -0.0234235} + inSlope: {x: -0, y: 0.021852722, z: -0} + outSlope: {x: -0, y: 0.021852722, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -0, y: 0.02698478, z: -0.0234235} + inSlope: {x: -0, y: 0.002853127, z: -0} + outSlope: {x: -0, y: -0.019367741, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0, y: 0.02617779, z: -0.0234235} + inSlope: {x: -0, y: -0.019367741, z: -0} + outSlope: {x: -0, y: -0.08934852, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: -0, y: 0.022454938, z: -0.0234235} + inSlope: {x: -0, y: -0.08934852, z: -0} + outSlope: {x: -0, y: -0.08934852, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00397337, y: -0.010681099, z: 0.0003417944} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: -0.00397337, y: -0.010681099, z: 0.0003417944} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/l_back_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.00794675, z: -0.00008545227} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: -0, y: -0.00794675, z: -0.00008545227} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/l_back_leg/l_back_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.00025634555, z: 0.0164916} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: -0, y: -0.00025634555, z: 0.0164916} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00277709, y: -0.010852001, z: -0.0006835906} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: -0.00277709, y: -0.010852001, z: -0.0006835906} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/neck/l_front_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.00709226, z: 0.00008544899} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: -0, y: -0.00709226, z: 0.00008544899} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/neck/l_front_leg/l_front_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.0022803864, z: 0.01401362} + inSlope: {x: -0, y: 0.0013197362, z: -0.009485836} + outSlope: {x: -0, y: 0.0013197362, z: -0.009485836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0, y: -0.0022253974, z: 0.013618377} + inSlope: {x: -0, y: 0.0013197362, z: -0.009485836} + outSlope: {x: -0, y: 0.003410214, z: -0.006641693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0, y: -0.002083305, z: 0.01334164} + inSlope: {x: -0, y: 0.003410214, z: -0.006641693} + outSlope: {x: -0, y: 0.0050472454, z: -0.0033470537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0, y: -0.0018730032, z: 0.013202179} + inSlope: {x: -0, y: 0.0050472454, z: -0.0033470537} + outSlope: {x: -0, y: 0.0062311357, z: 0.00039768213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: -0, y: -0.0013232955, z: 0.013410118} + inSlope: {x: -0, y: 0.0069618504, z: 0.0045928583} + outSlope: {x: -0, y: 0.0072392276, z: 0.0072528357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: -0, y: -0.00072735175, z: 0.014002951} + inSlope: {x: -0, y: 0.0070634237, z: 0.006975147} + outSlope: {x: -0, y: 0.006434312, z: 0.0062985388} + tangentMode: 0 + weightedMode: 0 + 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, y: -0.00045925527, z: 0.01426539} + inSlope: {x: -0, y: 0.006434312, z: 0.0062985388} + outSlope: {x: -0, y: 0.005351895, z: 0.005247146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0, y: -0.0002362597, z: 0.014484021} + inSlope: {x: -0, y: 0.005351895, z: 0.005247146} + outSlope: {x: -0, y: 0.0038164132, z: 0.0038200386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: -0, y: -0.00007724251, z: 0.0146431895} + inSlope: {x: -0, y: 0.0038164132, z: 0.0038200386} + outSlope: {x: -0, y: 0.0018274229, z: 0.0020181932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0, y: -0.0000010998547, z: 0.014727281} + inSlope: {x: -0, y: 0.0018274229, z: 0.0020181932} + outSlope: {x: -0, y: -0.0031436107, z: -0.00015938762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -0, y: -0.00013208359, z: 0.01472064} + inSlope: {x: -0, y: -0.0031436107, z: -0.00015938762} + outSlope: {x: -0, y: -0.018179374, z: -0.0027122486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0, y: -0.0008895579, z: 0.01460763} + inSlope: {x: -0, y: -0.018179374, z: -0.0027122486} + outSlope: {x: -0, y: -0.02198056, z: -0.005639997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: -0, y: -0.0018054136, z: 0.01437263} + inSlope: {x: -0, y: -0.02198056, z: -0.005639997} + outSlope: {x: -0, y: -0.02198056, z: -0.005639997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/neck/nose2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00277709, y: -0.010852001, z: -0.0006835906} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.00277709, y: -0.010852001, z: -0.0006835906} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/neck/r_front_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.00709226, z: 0.00008544899} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: -0, y: -0.00709226, z: 0.00008544899} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/neck/r_front_leg/r_front_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00397337, y: -0.010681099, z: 0.0003417944} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.00397337, y: -0.010681099, z: 0.0003417944} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/r_back_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.00794675, z: -0.00008545227} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: -0, y: -0.00794675, z: -0.00008545227} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/r_back_leg/r_back_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.0030000012, z: -0.0042527667} + inSlope: {x: -0, y: 0.0022894477, z: -0.0004661107} + outSlope: {x: -0, y: 0.0022894477, z: -0.0004661107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0, y: -0.0029046077, z: -0.004272188} + inSlope: {x: -0, y: 0.0022894477, z: -0.0004661107} + outSlope: {x: -0, y: 0.005978336, z: -0.0012020444} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0, y: -0.0026555103, z: -0.004322273} + inSlope: {x: -0, y: 0.005978336, z: -0.0012020444} + outSlope: {x: -0, y: 0.008993404, z: -0.0017503883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0, y: -0.002280785, z: -0.004395206} + inSlope: {x: -0, y: 0.008993404, z: -0.0017503883} + outSlope: {x: -0, y: 0.011334714, z: -0.0021110484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0, y: -0.0018085053, z: -0.004483166} + inSlope: {x: -0, y: 0.011334714, z: -0.0021110484} + outSlope: {x: -0, y: 0.013002287, z: -0.0022843701} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: -0, y: -0.0012667435, z: -0.0045783482} + inSlope: {x: -0, y: 0.013002287, z: -0.0022843701} + outSlope: {x: -0, y: 0.013996198, z: -0.0022701211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: -0, y: -0.000087058615, z: -0.004759113} + inSlope: {x: -0, y: 0.014316241, z: -0.0020682267} + outSlope: {x: -0, y: 0.013962554, z: -0.0016788832} + tangentMode: 0 + weightedMode: 0 + 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, y: 0.0004947147, z: -0.0048290663} + inSlope: {x: -0, y: 0.013962554, z: -0.0016788832} + outSlope: {x: -0, y: 0.012935221, z: -0.0011018517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0, y: 0.0010336821, z: -0.004874977} + inSlope: {x: -0, y: 0.012935221, z: -0.0011018517} + outSlope: {x: -0, y: 0.011233965, z: -0.00033748633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: -0, y: 0.0015017638, z: -0.004889039} + inSlope: {x: -0, y: 0.011233965, z: -0.00033748633} + outSlope: {x: -0, y: 0.008859189, z: 0.00061459036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0, y: 0.0018708969, z: -0.0048634307} + inSlope: {x: -0, y: 0.008859189, z: 0.00061459036} + outSlope: {x: -0, y: 0.00581051, z: 0.0023990541} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -0, y: 0.0021130014, z: -0.00476347} + inSlope: {x: -0, y: 0.00581051, z: 0.0023990541} + outSlope: {x: -0, y: 0.0014472227, z: 0.00489666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0, y: 0.0021733025, z: -0.0045594424} + inSlope: {x: -0, y: 0.0014472227, z: 0.00489666} + outSlope: {x: -0, y: -0.061658792, z: 0.004953022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: -0, y: -0.0003958115, z: -0.004353067} + inSlope: {x: -0, y: -0.061658792, z: 0.004953022} + outSlope: {x: -0, y: -0.061658792, z: 0.004953022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/tail2 + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/l_back_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/r_back_leg + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 24 + 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: 2372880978 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2803181969 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1472512831 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2372880978 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1007620288 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3577620342 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 700369083 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 90743195 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3859769235 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 360699137 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3485640271 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 839065102 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1007620288 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 550252863 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4281993326 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3577620342 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4197289625 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 700369083 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 39821736 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 90743195 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3188320307 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3859769235 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 360699137 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3485640271 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 839065102 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 550252863 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4281993326 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4197289625 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2803181969 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 39821736 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3188320307 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1472512831 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2372880978 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1007620288 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 90743195 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.5833334 + 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/Resources/Models/Games/Airboarder/Animations/dog/run.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/dog/run.anim.meta new file mode 100644 index 000000000..e100373f4 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/dog/run.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 009a96a7160c0554880e45201df58e2e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/dog/wag.anim b/Assets/Resources/Models/Games/Airboarder/Animations/dog/wag.anim new file mode 100644 index 000000000..acb2fbdeb --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/dog/wag.anim @@ -0,0 +1,1509 @@ +%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: wag + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: 2.0416667 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: dog_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.0416667 + 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: dog_model_skeleton/dog_root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.0416667 + 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: dog_model_skeleton/dog_root/dogPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.0416667 + 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: dog_model_skeleton/dog_root/dogPg/sdwPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.0416667 + 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: dog_model_skeleton/dog_root/hip + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.0416667 + 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: dog_model_skeleton/dog_root/hip/l_back_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000000014901161, 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: 2.0416667 + value: {x: -0.000000014901161, 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: dog_model_skeleton/dog_root/hip/l_back_leg/l_back_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.0416667 + 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: dog_model_skeleton/dog_root/hip/neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.0416667 + 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: dog_model_skeleton/dog_root/hip/neck/l_front_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.0416667 + 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: dog_model_skeleton/dog_root/hip/neck/l_front_leg/l_front_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.0416667 + 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: dog_model_skeleton/dog_root/hip/neck/nose2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.0416667 + 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: dog_model_skeleton/dog_root/hip/neck/r_front_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.0416667 + 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: dog_model_skeleton/dog_root/hip/neck/r_front_leg/r_front_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.0416667 + 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: dog_model_skeleton/dog_root/hip/r_back_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000000014901161, 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: 2.0416667 + value: {x: -0.000000014901161, 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: dog_model_skeleton/dog_root/hip/r_back_leg/r_back_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.0416667 + 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: dog_model_skeleton/dog_root/hip/tail2 + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000157401, y: 0.0173651, z: -0.0079759} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.000157401, y: 0.0173651, z: -0.0079759} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/dogPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000157401, y: -0.0160581, z: -0.0005396682} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0.000157401, y: -0.0160581, z: -0.0005396682} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/dogPg/sdwPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.0199416, z: -0.0234235} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0, y: 0.0199416, z: -0.0234235} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0039733695, y: -0.010681099, z: 0.00034179448} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0.0039733695, y: -0.010681099, z: 0.00034179448} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/l_back_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 2.9802322e-10, y: -0.00794675, z: -0.00008544683} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 2.9802322e-10, y: -0.00794675, z: -0.00008544683} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/l_back_leg/l_back_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.00025634645, z: 0.0164916} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0, y: -0.00025634645, z: 0.0164916} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00277709, y: -0.010851999, z: -0.00068359077} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0.00277709, y: -0.010851999, z: -0.00068359077} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/neck/l_front_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.00709226, z: 0.00008544922} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0, y: -0.00709226, z: 0.00008544922} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/neck/l_front_leg/l_front_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.00034179687, z: 0.0140136} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0, y: 0.00034179687, z: 0.0140136} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/neck/nose2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00277709, y: -0.010851999, z: -0.00068359077} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.00277709, y: -0.010851999, z: -0.00068359077} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/neck/r_front_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.00709226, z: 0.00008544922} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0, y: -0.00709226, z: 0.00008544922} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/neck/r_front_leg/r_front_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0039733695, y: -0.010681099, z: 0.00034179448} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.0039733695, y: -0.010681099, z: 0.00034179448} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/r_back_leg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -2.9802322e-10, y: -0.00794675, z: -0.00008544683} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -2.9802322e-10, y: -0.00794675, z: -0.00008544683} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/r_back_leg/r_back_foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.0000000011920929, z: -0.0040161014} + inSlope: {x: -0.027989758, y: 0.0019968224, z: -0} + outSlope: {x: -0.027989758, y: 0.0019968224, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.00116624, y: 0.00008319974, z: -0.0040161014} + inSlope: {x: -0.027989758, y: 0.0019968224, z: -0} + outSlope: {x: -0.02532012, y: 0.0046933363, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.002221245, y: 0.0002787554, z: -0.0040161014} + inSlope: {x: -0.02532012, y: 0.0046933363, z: -0} + outSlope: {x: -0.019574543, y: 0.005819779, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.0030368508, y: 0.00052124617, z: -0.0040161014} + inSlope: {x: -0.019574543, y: 0.005819779, z: -0} + outSlope: {x: -0.010335265, y: 0.0046932213, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.003467487, y: 0.0007167971, z: -0.0040161014} + inSlope: {x: -0.010335265, y: 0.0046932213, z: -0} + outSlope: {x: 0.002223509, y: 0.00199688, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: -0.0033748408, y: 0.0008000004, z: -0.0040161014} + inSlope: {x: 0.002223509, y: 0.00199688, z: -0} + outSlope: {x: 0.014195636, y: -0.004977836, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.002783356, y: 0.00059259054, z: -0.0040161014} + inSlope: {x: 0.014195636, y: -0.004977836, z: -0} + outSlope: {x: 0.023357932, y: -0.009244425, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: -0.001810109, y: 0.00020740628, z: -0.0040161014} + inSlope: {x: 0.023357932, y: -0.009244425, z: -0} + outSlope: {x: 0.028597984, y: -0.0049777767, z: -0} + tangentMode: 0 + weightedMode: 0 + 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.0006185258, y: -0.0000000011920929, z: -0.0040161014} + inSlope: {x: 0.028597984, y: -0.0049777767, z: -0} + outSlope: {x: 0.029915946, y: 0.0029028517, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.0006279716, y: 0.000120950936, z: -0.0040161014} + inSlope: {x: 0.029915946, y: 0.0029028517, z: -0} + outSlope: {x: 0.02825723, y: 0.0066971984, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: 0.001805356, y: 0.0004000008, z: -0.0040161014} + inSlope: {x: 0.02825723, y: 0.0066971984, z: -0} + outSlope: {x: 0.023395529, y: 0.0064500016, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.0027801702, y: 0.00066875096, z: -0.0040161014} + inSlope: {x: 0.023395529, y: 0.0064500016, z: -0} + outSlope: {x: 0.014272102, y: 0.0031499872, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.0033748408, y: 0.0008000004, z: -0.0040161014} + inSlope: {x: 0.014272102, y: 0.0031499872, z: -0} + outSlope: {x: 0.0021889461, y: -0.0031499846, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.0034660469, y: 0.00066875096, z: -0.0040161014} + inSlope: {x: 0.0021889461, y: -0.0031499846, z: -0} + outSlope: {x: -0.010744597, y: -0.0064500105, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.003018356, y: 0.0004000008, z: -0.0040161014} + inSlope: {x: -0.010744597, y: -0.0064500105, z: -0} + outSlope: {x: -0.020859493, y: -0.0064500016, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.0021492098, y: 0.00013125062, z: -0.0040161014} + inSlope: {x: -0.020859493, y: -0.0064500016, z: -0} + outSlope: {x: -0.026833113, y: -0.003150042, z: -0} + tangentMode: 0 + weightedMode: 0 + 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.001031163, y: -0.0000000011920929, z: -0.0040161014} + inSlope: {x: -0.026833113, y: -0.003150042, z: -0} + outSlope: {x: -0.02966461, y: 0.0031500463, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: -0.0002048612, y: 0.00013125062, z: -0.0040161014} + inSlope: {x: -0.02966461, y: 0.0031500463, z: -0} + outSlope: {x: -0.029508173, y: 0.0064500016, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.0014343689, y: 0.0004000008, z: -0.0040161014} + inSlope: {x: -0.029508173, y: 0.0064500016, z: -0} + outSlope: {x: -0.025442077, y: 0.0064500016, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.002494456, y: 0.00066875096, z: -0.0040161014} + inSlope: {x: -0.025442077, y: 0.0064500016, z: -0} + outSlope: {x: -0.017466301, y: 0.003149989, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: -0.0032222178, y: 0.0008000004, z: -0.0040161014} + inSlope: {x: -0.017466301, y: 0.003149989, z: -0} + outSlope: {x: -0.006666767, y: -0.0031499846, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.0034999999, y: 0.00066875096, z: -0.0040161014} + inSlope: {x: -0.006666767, y: -0.0031499846, z: -0} + outSlope: {x: 0.0068115774, y: -0.0064500016, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.003216184, y: 0.0004000008, z: -0.0040161014} + inSlope: {x: 0.0068115774, y: -0.0064500016, z: -0} + outSlope: {x: 0.017538713, y: -0.0064500105, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: -0.002485405, y: 0.00013125062, z: -0.0040161014} + inSlope: {x: 0.017538713, y: -0.0064500105, z: -0} + outSlope: {x: 0.025007676, y: -0.003150042, z: -0} + tangentMode: 0 + weightedMode: 0 + 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.001443418, y: -0.0000000011920929, z: -0.0040161014} + inSlope: {x: 0.025007676, y: -0.003150042, z: -0} + outSlope: {x: 0.029508213, y: 0.0031500463, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: -0.00021391019, y: 0.00013125062, z: -0.0040161014} + inSlope: {x: 0.029508213, y: 0.0031500463, z: -0} + outSlope: {x: 0.030098949, y: 0.006449992, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.0010402149, y: 0.0004000008, z: -0.0040161014} + inSlope: {x: 0.030098949, y: 0.006449992, z: -0} + outSlope: {x: 0.026780088, y: 0.0064500105, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.0021560509, y: 0.00066875096, z: -0.0040161014} + inSlope: {x: 0.026780088, y: 0.0064500105, z: -0} + outSlope: {x: 0.020597657, y: 0.003149989, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: 0.0030142858, y: 0.0008000004, z: -0.0040161014} + inSlope: {x: 0.020597657, y: 0.003149989, z: -0} + outSlope: {x: 0.010842248, y: -0.0031499802, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.0034660469, y: 0.00066875096, z: -0.0040161014} + inSlope: {x: 0.010842248, y: -0.0031499802, z: -0} + outSlope: {x: -0.0021889708, y: -0.0064500105, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.00337484, y: 0.0004000008, z: -0.0040161014} + inSlope: {x: -0.0021889708, y: -0.0064500105, z: -0} + outSlope: {x: -0.014185931, y: -0.0064500105, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2916666 + value: {x: 0.00278376, y: 0.00013125062, z: -0.0040161014} + inSlope: {x: -0.014185931, y: -0.0064500105, z: -0} + outSlope: {x: -0.023358941, y: -0.0031500375, z: -0} + tangentMode: 0 + weightedMode: 0 + 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.001810469, y: -0.0000000011920929, z: -0.0040161014} + inSlope: {x: -0.023358941, y: -0.0031500375, z: -0} + outSlope: {x: -0.028603446, y: 0.0031500463, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.0006186599, y: 0.00013125062, z: -0.0040161014} + inSlope: {x: -0.028603446, y: 0.0031500463, z: -0} + outSlope: {x: -0.029919183, y: 0.0064500105, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4166666 + value: {x: -0.0006279716, y: 0.0004000008, z: -0.0040161014} + inSlope: {x: -0.029919183, y: 0.0064500105, z: -0} + outSlope: {x: -0.02825717, y: 0.006449992, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: -0.001805356, y: 0.00066875096, z: -0.0040161014} + inSlope: {x: -0.02825717, y: 0.006449992, z: -0} + outSlope: {x: -0.023395563, y: 0.003149989, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.0027801702, y: 0.0008000004, z: -0.0040161014} + inSlope: {x: -0.023395563, y: 0.003149989, z: -0} + outSlope: {x: -0.0142721115, y: -0.003149989, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5416666 + value: {x: -0.0033748408, y: 0.00066875096, z: -0.0040161014} + inSlope: {x: -0.0142721115, y: -0.003149989, z: -0} + outSlope: {x: -0.002188943, y: -0.006449992, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.0034660469, y: 0.0004000008, z: -0.0040161014} + inSlope: {x: -0.002188943, y: -0.006449992, z: -0} + outSlope: {x: 0.010744597, y: -0.0064500105, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: -0.003018356, y: 0.00013125062, z: -0.0040161014} + inSlope: {x: 0.010744597, y: -0.0064500105, z: -0} + outSlope: {x: 0.020859523, y: -0.0031500463, z: -0} + tangentMode: 0 + weightedMode: 0 + 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.0021492098, y: -0.0000000011920929, z: -0.0040161014} + inSlope: {x: 0.020859523, y: -0.0031500463, z: -0} + outSlope: {x: 0.026833076, y: 0.0031500375, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: -0.001031163, y: 0.00013125062, z: -0.0040161014} + inSlope: {x: 0.026833076, y: 0.0031500375, z: -0} + outSlope: {x: 0.029664602, y: 0.0064500105, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.0002048609, y: 0.0004000008, z: -0.0040161014} + inSlope: {x: 0.029664602, y: 0.0064500105, z: -0} + outSlope: {x: 0.02950822, y: 0.0065999287, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7916666 + value: {x: 0.0014343689, y: 0.0006749976, z: -0.0040161014} + inSlope: {x: 0.02950822, y: 0.0065999287, z: -0} + outSlope: {x: 0.025442066, y: 0.003000063, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.002494457, y: 0.0008000004, z: -0.0040161014} + inSlope: {x: 0.025442066, y: 0.003000063, z: -0} + outSlope: {x: 0.017466275, y: -0.0012693799, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.0032222178, y: 0.00074710965, z: -0.0040161014} + inSlope: {x: 0.017466275, y: -0.0012693799, z: -0} + outSlope: {x: 0.0066667763, y: -0.0037084615, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9166666 + value: {x: 0.0034999999, y: 0.00059259054, z: -0.0040161014} + inSlope: {x: 0.0066667763, y: -0.0037084615, z: -0} + outSlope: {x: -0.007893755, y: -0.0045826635, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.0031710928, y: 0.0004016459, z: -0.0040161014} + inSlope: {x: -0.007893755, y: -0.0045826635, z: -0} + outSlope: {x: -0.020156248, y: -0.004701237, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.0023312499, y: 0.00020576119, z: -0.0040161014} + inSlope: {x: -0.020156248, y: -0.004701237, z: -0} + outSlope: {x: -0.02713118, y: -0.003516076, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.0012007819, y: 0.000059257745, z: -0.0040161014} + inSlope: {x: -0.02713118, y: -0.003516076, z: -0} + outSlope: {x: -0.02713118, y: -0.003516076, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: dog_model_skeleton/dog_root/hip/tail2 + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 24 + 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: 1472512831 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3859769235 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 360699137 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3485640271 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 839065102 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2372880978 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1007620288 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 550252863 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4281993326 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3577620342 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4197289625 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2803181969 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 700369083 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 39821736 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 90743195 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3188320307 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3859769235 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 360699137 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3485640271 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 839065102 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2372880978 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1007620288 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 550252863 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4281993326 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3577620342 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4197289625 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2803181969 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 700369083 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 39821736 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 90743195 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3188320307 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1472512831 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 2.0416667 + 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/Resources/Models/Games/Airboarder/Animations/dog/wag.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/dog/wag.anim.meta new file mode 100644 index 000000000..dd627f8fd --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/dog/wag.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6c9f6a4342417a44d8ea12a1ad78eb1d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/duck.anim b/Assets/Resources/Models/Games/Airboarder/Animations/duck.anim new file mode 100644 index 000000000..2923147ed --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/duck.anim @@ -0,0 +1,5474 @@ +%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: duck + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: 2 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 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} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.7071081, w: 0.7071055} + 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: 2 + value: {x: 0, y: 0, z: -0.7071081, w: 0.7071055} + 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: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.57438874, y: -0.39020935, z: 0.29852912, w: 0.6547478} + inSlope: {x: -0.09010649, y: -0.0062441826, z: -0.12609243, w: -0.02606535} + outSlope: {x: -0.09010649, y: -0.0062441826, z: -0.12609243, w: -0.02606535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: -0.6477354, y: -0.37207633, z: 0.1582678, w: 0.64571613} + inSlope: {x: -0.18928668, y: 0.13512181, z: -0.5275962, w: 0.017013788} + outSlope: {x: -0.18928668, y: 0.13512181, z: -0.5275962, w: 0.017013788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.6553257, y: -0.36604622, z: 0.13593864, w: 0.64659035} + inSlope: {x: -0.027520187, y: 0.064631596, z: -0.23465812, w: 0.06302406} + outSlope: {x: -0.027520187, y: 0.064631596, z: -0.23465812, w: 0.06302406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.6306344, y: -0.3712319, z: 0.16801697, w: 0.6604978} + inSlope: {x: 0.22024018, y: -0.016741604, z: 0.292207, w: 0.12783486} + outSlope: {x: 0.22024018, y: -0.016741604, z: 0.292207, w: 0.12783486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.61327845, y: -0.36160445, z: 0.17587844, w: 0.67985195} + inSlope: {x: 0.34991008, y: 0.24071993, z: 0.13713716, w: 0.40076762} + outSlope: {x: 0.34991008, y: 0.24071993, z: 0.13713716, w: 0.40076762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: -0.5926564, y: -0.3499436, z: 0.1884962, w: 0.7005477} + inSlope: {x: 1.3859677, y: 0.13487965, z: 1.9263805, w: 0.46415028} + outSlope: {x: 1.3859677, y: 0.13487965, z: 1.9263805, w: 0.46415028} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.49778122, y: -0.35036448, z: 0.33641002, w: 0.71853113} + inSlope: {x: 3.0229807, y: 0.55953497, z: 3.731728, w: 0.43133724} + outSlope: {x: 3.0229807, y: 0.55953497, z: 3.731728, w: 0.43133724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.34074134, y: -0.30331567, z: 0.49947348, w: 0.73649246} + inSlope: {x: 3.966119, y: 1.874198, z: 2.9231434, w: 0.65656656} + outSlope: {x: 3.966119, y: 1.874198, z: 2.9231434, w: 0.65656656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.16727114, y: -0.19418123, z: 0.5800054, w: 0.77324504} + inSlope: {x: 3.1986494, y: 2.1300385, z: 1.0262359, w: 0.73543173} + outSlope: {x: 3.1986494, y: 2.1300385, z: 1.0262359, w: 0.73543173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.074187234, y: -0.12581247, z: 0.5849932, w: 0.7977784} + inSlope: {x: 2.9335513, y: 2.1666083, z: -0.022197869, w: 0.4668905} + outSlope: {x: 2.9335513, y: 2.1666083, z: -0.022197869, w: 0.4668905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.077191465, y: -0.013630558, z: 0.5781556, w: 0.81215256} + inSlope: {x: 1.9972568, y: 1.5452889, z: -0.05622623, w: 0.1364607} + outSlope: {x: 1.9972568, y: 1.5452889, z: -0.05622623, w: 0.1364607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: 0.09225091, y: 0.0029616607, z: 0.58030766, w: 0.80915016} + inSlope: {x: 0.17842117, y: 0.17056294, z: -0.051223844, w: 0.019090962} + outSlope: {x: 0.17842117, y: 0.17056294, z: -0.051223844, w: 0.019090962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0920599, y: 0.0005830296, z: 0.57388693, w: 0.8137435} + inSlope: {x: -0.13190041, y: -0.17786065, z: -0.17414248, w: 0.13554873} + outSlope: {x: -0.13190041, y: -0.17786065, z: -0.17414248, w: 0.13554873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0.08125919, y: -0.011860081, z: 0.5657958, w: 0.8204459} + inSlope: {x: -1.9650632, y: -1.426256, z: -0.08997898, w: -0.015517004} + outSlope: {x: -1.9650632, y: -1.426256, z: -0.08997898, w: -0.015517004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.07169524, y: -0.11827155, z: 0.56638867, w: 0.8124504} + inSlope: {x: -3.2220054, y: -2.1637192, z: -0.16007297, w: -0.37520278} + outSlope: {x: -3.2220054, y: -2.1637192, z: -0.16007297, w: -0.37520278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.187241, y: -0.19216983, z: 0.5524564, w: 0.789179} + inSlope: {x: -2.799902, y: -1.7251804, z: -0.5774919, w: -0.69197655} + outSlope: {x: -2.799902, y: -1.7251804, z: -0.5774919, w: -0.69197655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.5434937, y: -0.38121262, z: 0.36638543, w: 0.65196115} + inSlope: {x: -2.8002315, y: -1.0229132, z: -2.531035, w: -1.5509839} + outSlope: {x: -2.8002315, y: -1.0229132, z: -2.531035, w: -1.5509839} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: -0.65730673, y: -0.41216585, z: 0.24653615, w: 0.58076423} + inSlope: {x: -2.130345, y: -0.35763, z: -2.32324, w: -1.4585614} + outSlope: {x: -2.130345, y: -0.35763, z: -2.32324, w: -1.4585614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7210226, y: -0.41101518, z: 0.17278193, w: 0.5304143} + inSlope: {x: -0.716526, y: 0.0027866391, z: -0.7079606, w: -0.6077448} + outSlope: {x: -0.716526, y: 0.0027866391, z: -0.7079606, w: -0.6077448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: -0.7170172, y: -0.41193363, z: 0.18753949, w: 0.5301189} + inSlope: {x: 0.5717609, y: 0.10806418, z: 0.7762062, w: 0.51347893} + outSlope: {x: 0.5717609, y: 0.10806418, z: 0.7762062, w: 0.51347893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: -0.6733758, y: -0.40200981, z: 0.23746586, w: 0.5732043} + inSlope: {x: 1.2987962, y: 0.47499037, z: 1.2614646, w: 1.2761347} + outSlope: {x: 1.2987962, y: 0.47499037, z: 1.2614646, w: 1.2761347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: -0.60878414, y: -0.3723511, z: 0.29266158, w: 0.63646346} + inSlope: {x: 1.5434446, y: 0.8157632, z: 1.0362747, w: 1.4941206} + outSlope: {x: 1.5434446, y: 0.8157632, z: 1.0362747, w: 1.4941206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.5447555, y: -0.33402961, z: 0.323822, w: 0.6977142} + inSlope: {x: 1.2191125, y: 0.8971828, z: 0.12136829, w: 1.3626504} + outSlope: {x: 1.2191125, y: 0.8971828, z: 0.12136829, w: 1.3626504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.47718334, y: -0.26433402, z: 0.26054603, w: 0.7965798} + inSlope: {x: 0.80401474, y: 0.66016376, z: -0.56063336, w: 0.90852296} + outSlope: {x: 0.80401474, y: 0.66016376, z: -0.56063336, w: 0.90852296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: -0.44019026, y: -0.24257225, z: 0.25605613, w: 0.8257279} + inSlope: {x: 0.6180973, y: 0.3412663, z: 0.19941527, w: 0.38247755} + outSlope: {x: 0.6180973, y: 0.3412663, z: 0.19941527, w: 0.38247755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.4224589, y: -0.23989303, z: 0.34812692, w: 0.8017403} + inSlope: {x: 0.10720387, y: -0.03504502, z: 0.800858, w: -0.2983123} + outSlope: {x: 0.10720387, y: -0.03504502, z: 0.800858, w: -0.2983123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.4122587, y: -0.2405744, z: 0.3988736, w: 0.7829857} + inSlope: {x: 0.012153277, y: 0.0017686682, z: 0.031483807, w: -0.0090229595} + outSlope: {x: 0.012153277, y: 0.0017686682, z: 0.031483807, w: -0.0090229595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.41251376, y: -0.24134742, z: 0.39865786, w: 0.7827233} + inSlope: {x: -0.003815893, y: -0.0029103784, z: 0.00010299693, w: -0.0029611615} + outSlope: {x: -0.003815893, y: -0.0029103784, z: 0.00010299693, w: -0.0029611615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.8161654, y: -0.078976884, z: -0.064335234, w: 0.5687686} + inSlope: {x: 0.14753294, y: -0.046824217, z: -0.002108395, w: -0.22111559} + outSlope: {x: 0.14753294, y: -0.046824217, z: -0.002108395, w: -0.22111559} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.89218223, y: -0.104845785, z: -0.060873397, w: 0.4351008} + inSlope: {x: 0.2989897, y: -0.117406175, z: 0.032815527, w: -0.63692373} + outSlope: {x: 0.2989897, y: -0.117406175, z: 0.032815527, w: -0.63692373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.9367611, y: -0.124842346, z: -0.053240243, w: 0.3225811} + inSlope: {x: 0.041003477, y: -0.03077075, z: 0.00465082, w: -0.12804368} + outSlope: {x: 0.041003477, y: -0.03077075, z: 0.00465082, w: -0.12804368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.9371285, y: -0.12601303, z: -0.053796504, w: 0.32096243} + inSlope: {x: 0.038500767, y: -0.015159485, z: 0.010859721, w: -0.118381575} + outSlope: {x: 0.038500767, y: -0.015159485, z: 0.010859721, w: -0.118381575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.94019395, y: -0.12704033, z: -0.052784394, w: 0.31162468} + inSlope: {x: 0.04959509, y: -0.010834153, z: 0.020815497, w: -0.1488357} + outSlope: {x: 0.04959509, y: -0.010834153, z: 0.020815497, w: -0.1488357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0.9412614, y: -0.12691587, z: -0.05206188, w: 0.30855945} + inSlope: {x: -0.45183036, y: 0.21747175, z: -0.081495166, w: 1.2083288} + outSlope: {x: -0.45183036, y: 0.21747175, z: -0.081495166, w: 1.2083288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.90254146, y: -0.1089177, z: -0.05957565, w: 0.41231865} + inSlope: {x: -2.2544055, y: 0.7706559, z: -0.13200732, w: 4.115631} + outSlope: {x: -2.2544055, y: 0.7706559, z: -0.13200732, w: 4.115631} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.75339425, y: -0.06269454, z: -0.06306248, w: 0.6515287} + inSlope: {x: -5.240158, y: 1.1101637, z: 0.24157852, w: 5.658085} + outSlope: {x: -5.240158, y: 1.1101637, z: 0.24157852, w: 5.658085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.4658614, y: -0.01640402, z: -0.039444096, w: 0.88382596} + inSlope: {x: -4.7904077, y: 0.65383697, z: 0.4433062, w: 3.3989096} + outSlope: {x: -4.7904077, y: 0.65383697, z: 0.4433062, w: 3.3989096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.3541936, y: -0.008208118, z: -0.0261203, w: 0.93477124} + inSlope: {x: -4.603926, y: 0.20425817, z: 0.5605916, w: 1.3531575} + outSlope: {x: -4.603926, y: 0.20425817, z: 0.5605916, w: 1.3531575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.08220084, y: 0.0006174908, z: 0.007271874, w: 0.99658906} + inSlope: {x: -3.2638612, y: 0.09902246, z: 0.40127376, w: 0.7418078} + outSlope: {x: -3.2638612, y: 0.09902246, z: 0.40127376, w: 0.7418078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: 0.082205005, y: 0.000043757285, z: 0.007319198, w: 0.9965886} + inSlope: {x: 0.0000833273, y: -0.011505023, z: 0.0009489712, w: -0.000012159351} + outSlope: {x: 0.0000833273, y: -0.011505023, z: 0.0009489712, w: -0.000012159351} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.082207784, y: -0.00034126095, z: 0.007350955, w: 0.99658805} + inSlope: {x: 0.0000071526392, y: -0.00000007869676, z: -0.0000008538773, w: -0.000000715273} + outSlope: {x: 0.0000071526392, y: -0.00000007869676, z: -0.0000008538773, w: -0.000000715273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0.0822056, y: 0.00004375182, z: 0.0073191267, w: 0.9965885} + inSlope: {x: 3.7865252, y: -0.13386235, z: -0.46220383, w: -0.95635647} + outSlope: {x: 3.7865252, y: -0.13386235, z: -0.46220383, w: -0.95635647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.39775124, y: -0.011496445, z: -0.031165993, w: 0.91689175} + inSlope: {x: 5.7925415, y: -0.34435338, z: -0.68075544, w: -2.0810413} + outSlope: {x: 5.7925415, y: -0.34435338, z: -0.68075544, w: -2.0810413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.5649169, y: -0.028652335, z: -0.049410436, w: 0.8231686} + inSlope: {x: 3.5451431, y: -0.46114632, z: -0.34519297, w: -2.404323} + outSlope: {x: 3.5451431, y: -0.46114632, z: -0.34519297, w: -2.404323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.84978116, y: -0.08960546, z: -0.0632274, w: 0.51560175} + inSlope: {x: 1.1974732, y: -0.3762121, z: 0.037497323, w: -1.9501911} + outSlope: {x: 1.1974732, y: -0.3762121, z: 0.037497323, w: -1.9501911} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.88615113, y: -0.102570616, z: -0.060819484, w: 0.44779065} + inSlope: {x: 0.48608345, y: -0.17632286, z: 0.031037798, w: -0.917711} + outSlope: {x: 0.48608345, y: -0.17632286, z: 0.031037798, w: -0.917711} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.8824128, y: -0.10097351, z: -0.06146616, w: 0.45538327} + inSlope: {x: -0.1963004, y: 0.08191784, z: -0.017252143, w: 0.3958656} + outSlope: {x: -0.1963004, y: 0.08191784, z: -0.017252143, w: 0.3958656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.8612409, y: -0.09320025, z: -0.063127026, w: 0.49557313} + inSlope: {x: -0.27899435, y: 0.094787836, z: -0.019649033, w: 0.50337136} + outSlope: {x: -0.27899435, y: 0.094787836, z: -0.019649033, w: 0.50337136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.8506803, y: -0.089573584, z: -0.06371601, w: 0.5140621} + inSlope: {x: 0.014052242, y: -0.007229399, z: -0.00016765762, w: -0.02587834} + outSlope: {x: 0.014052242, y: -0.007229399, z: -0.00016765762, w: -0.02587834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.8793265, y: -0.0998225, z: -0.061701037, w: 0.46153367} + inSlope: {x: 0.2170882, y: -0.08298753, z: 0.015760496, w: -0.41211823} + outSlope: {x: 0.2170882, y: -0.08298753, z: 0.015760496, w: -0.41211823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: 0.8805326, y: -0.10037214, z: -0.06167234, w: 0.45911244} + inSlope: {x: 0.00086617447, y: 0.00960311, z: 0.004388048, w: 0.0010246035} + outSlope: {x: 0.00086617447, y: 0.00960311, z: 0.004388048, w: 0.0010246035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: 0.8685431, y: -0.095954366, z: -0.06280823, w: 0.48216262} + inSlope: {x: -0.14923443, y: 0.048233956, z: -0.015386479, w: 0.27773398} + outSlope: {x: -0.14923443, y: 0.048233956, z: -0.015386479, w: 0.27773398} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.8623917, y: -0.093496814, z: -0.0631956, w: 0.493503} + inSlope: {x: 0.0029854802, y: -0.00014787927, z: 0.00048369216, w: -0.005182748} + outSlope: {x: 0.0029854802, y: -0.00014787927, z: 0.00048369216, w: -0.005182748} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.05807589, y: 0.2507952, z: 0.78771013, w: 0.55968} + inSlope: {x: -0.021702737, y: 0.17085242, z: -0.026556015, w: -0.03811598} + outSlope: {x: -0.021702737, y: 0.17085242, z: -0.026556015, w: -0.03811598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.070708595, y: 0.38556248, z: 0.7603919, w: 0.51782817} + inSlope: {x: 0.15896297, y: 0.44327468, z: -0.10470985, w: -0.19808862} + outSlope: {x: 0.15896297, y: 0.44327468, z: -0.10470985, w: -0.19808862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.080996454, y: 0.43479842, z: 0.7438257, w: 0.50111204} + inSlope: {x: -0.24621716, y: 0.29754603, z: -0.19963428, w: 0.07673833} + outSlope: {x: -0.24621716, y: 0.29754603, z: -0.19963428, w: 0.07673833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.043228433, y: 0.4625521, z: 0.72253674, w: 0.51197416} + inSlope: {x: -0.19086841, y: 0.3854077, z: -0.1615291, w: -0.1086287} + outSlope: {x: -0.19086841, y: 0.3854077, z: -0.1615291, w: -0.1086287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.037700597, y: 0.4841828, z: 0.71517694, w: 0.5026607} + inSlope: {x: -0.2755624, y: 0.5997027, z: -0.22564878, w: -0.24455261} + outSlope: {x: -0.2755624, y: 0.5997027, z: -0.22564878, w: -0.24455261} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0.020264888, y: 0.51252735, z: 0.70373267, w: 0.49159476} + inSlope: {x: -1.4166164, y: 0.020942241, z: -0.29197964, w: 0.31958103} + outSlope: {x: -1.4166164, y: 0.020942241, z: -0.29197964, w: 0.31958103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.08035069, y: 0.48592803, z: 0.6908453, w: 0.5292924} + inSlope: {x: -1.8070047, y: -1.790386, z: 0.059195742, w: 1.1880023} + outSlope: {x: -1.8070047, y: -1.790386, z: 0.059195742, w: 1.1880023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.13031876, y: 0.3633285, z: 0.70866567, w: 0.59059495} + inSlope: {x: -0.067453146, y: -3.2827115, z: 0.5530033, w: 1.2800018} + outSlope: {x: -0.067453146, y: -3.2827115, z: 0.5530033, w: 1.2800018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.08597179, y: 0.21236861, z: 0.73692894, w: 0.63595927} + inSlope: {x: 0.51204586, y: -1.9112867, z: 0.43068904, w: 0.46728915} + outSlope: {x: 0.51204586, y: -1.9112867, z: 0.43068904, w: 0.46728915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.08764825, y: 0.20405453, z: 0.7445564, w: 0.62953573} + inSlope: {x: 0.6237377, y: -0.98127747, z: 0.24365546, w: 0.03710448} + outSlope: {x: 0.6237377, y: -0.98127747, z: 0.24365546, w: 0.03710448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.033993617, y: 0.13059546, z: 0.75723356, w: 0.6390513} + inSlope: {x: 0.43198684, y: -0.7080617, z: 0.13540286, w: 0.082314454} + outSlope: {x: 0.43198684, y: -0.7080617, z: 0.13540286, w: 0.082314454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: -0.05164933, y: 0.14504936, z: 0.75584, w: 0.6363953} + inSlope: {x: -0.178177, y: 0.1929078, z: 0.09947431, w: -0.1738838} + outSlope: {x: -0.178177, y: 0.1929078, z: 0.09947431, w: -0.1738838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04884171, y: 0.14667112, z: 0.7655231, w: 0.624561} + inSlope: {x: 0.1966038, y: -0.0743864, z: 0.28415087, w: -0.3194323} + outSlope: {x: 0.1966038, y: -0.0743864, z: 0.28415087, w: -0.3194323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.035265654, y: 0.13885048, z: 0.77951926, w: 0.6097759} + inSlope: {x: -0.745475, y: 1.3305953, z: 0.053723864, w: -0.617436} + outSlope: {x: -0.745475, y: 1.3305953, z: 0.053723864, w: -0.617436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.11096453, y: 0.25755394, z: 0.7700001, w: 0.573108} + inSlope: {x: -1.1190646, y: 2.0312119, z: -0.22441456, w: -0.63921106} + outSlope: {x: -1.1190646, y: 2.0312119, z: -0.22441456, w: -0.63921106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.12852095, y: 0.308118, z: 0.76081806, w: 0.55650836} + inSlope: {x: -0.13390936, y: 0.97257745, z: -0.16402102, w: -0.32221124} + outSlope: {x: -0.13390936, y: 0.97257745, z: -0.16402102, w: -0.32221124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.0889965, y: 0.3474334, z: 0.7609346, w: 0.5406923} + inSlope: {x: 1.150953, y: -0.1329236, z: 0.24831915, w: -0.11216294} + outSlope: {x: 1.150953, y: -0.1329236, z: 0.24831915, w: -0.11216294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.026210958, y: 0.3275251, z: 0.7770249, w: 0.5369102} + inSlope: {x: 1.8322784, y: -0.93356824, z: 0.5513294, w: -0.22773069} + outSlope: {x: 1.8322784, y: -0.93356824, z: 0.5513294, w: -0.22773069} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.06369348, y: 0.26963595, z: 0.80687875, w: 0.52171475} + inSlope: {x: 1.8137434, y: -1.5468069, z: 0.6975771, w: -0.47355682} + outSlope: {x: 1.8137434, y: -1.5468069, z: 0.6975771, w: -0.47355682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12493444, y: 0.19862449, z: 0.8351564, w: 0.4974471} + inSlope: {x: 0.6692858, y: -1.0161296, z: 0.37750947, w: -0.27610543} + outSlope: {x: 0.6692858, y: -1.0161296, z: 0.37750947, w: -0.27610543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.11946724, y: 0.18495856, z: 0.83833784, w: 0.49870598} + inSlope: {x: -0.54996043, y: 0.3847622, z: -0.06403304, w: 0.05367738} + outSlope: {x: -0.54996043, y: 0.3847622, z: -0.06403304, w: 0.05367738} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.02960851, y: 0.2966567, z: 0.81963164, w: 0.48920566} + inSlope: {x: -1.0414414, y: 1.5891147, z: -0.23055862, w: -0.5108068} + outSlope: {x: -1.0414414, y: 1.5891147, z: -0.23055862, w: -0.5108068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.007682375, y: 0.3631142, z: 0.8106071, w: 0.45935303} + inSlope: {x: -0.5135429, y: 1.7600713, z: -0.26176912, w: -0.96993315} + outSlope: {x: -0.5135429, y: 1.7600713, z: -0.26176912, w: -0.96993315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: -0.013186707, y: 0.4433294, z: 0.7978175, w: 0.40837783} + inSlope: {x: 0.10795297, y: 1.9124967, z: -0.40783662, w: -1.288919} + outSlope: {x: 0.10795297, y: 1.9124967, z: -0.40783662, w: -1.288919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.0013136806, y: 0.522489, z: 0.7766207, w: 0.35194308} + inSlope: {x: 0.110280015, y: 1.4683564, z: -0.4781296, w: -1.00372} + outSlope: {x: 0.110280015, y: 1.4683564, z: -0.4781296, w: -1.00372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: -0.02647675, y: 0.57675064, z: 0.74863076, w: 0.32589847} + inSlope: {x: -0.634035, y: 0.030077584, z: -0.15435988, w: 0.2380709} + outSlope: {x: -0.634035, y: 0.030077584, z: -0.15435988, w: 0.2380709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: -0.110056825, y: 0.5366513, z: 0.74419355, w: 0.38218948} + inSlope: {x: -0.4388706, y: -0.32931566, z: 0.01090836, w: 0.32551655} + outSlope: {x: -0.4388706, y: -0.32931566, z: 0.01090836, w: 0.32551655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.12566678, y: 0.5238378, z: 0.74493486, w: 0.39354023} + inSlope: {x: 0.0029012589, y: -0.00020885488, z: -0.003107074, w: 0.007085688} + outSlope: {x: 0.0029012589, y: -0.00020885488, z: -0.003107074, w: 0.007085688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.12554589, y: 0.5238291, z: 0.74480534, w: 0.39383543} + inSlope: {x: 0.0029014377, y: -0.00020885488, z: -0.0031085045, w: 0.007084615} + outSlope: {x: 0.0029014377, y: -0.00020885488, z: -0.0031085045, w: 0.007084615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.42056644, y: 0.8245222, z: -0.07741285, w: 0.37053245} + inSlope: {x: -0.107720375, y: -0.05674982, z: 0.01582396, w: 0.0064709187} + outSlope: {x: -0.107720375, y: -0.05674982, z: 0.01582396, w: 0.0064709187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.49161065, y: 0.78721833, z: -0.06069311, w: 0.36731815} + inSlope: {x: -0.24620137, y: -0.11674903, z: 0.029719539, w: -0.07470775} + outSlope: {x: -0.24620137, y: -0.11674903, z: 0.029719539, w: -0.07470775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.547096, y: 0.7579261, z: -0.049568456, w: 0.3518194} + inSlope: {x: -0.06556683, y: 0.008691041, z: -0.04950448, w: -0.12809908} + outSlope: {x: -0.06556683, y: 0.008691041, z: -0.04950448, w: -0.12809908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5477187, y: 0.76030856, z: -0.053539194, w: 0.34506333} + inSlope: {x: 0.1159336, y: 0.17420116, z: -0.18535233, w: -0.23701847} + outSlope: {x: 0.1159336, y: 0.17420116, z: -0.18535233, w: -0.23701847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: -0.5374349, y: 0.7724429, z: -0.06501449, w: 0.33206785} + inSlope: {x: 0.9861396, y: 1.0096464, z: -1.0351179, w: -1.440367} + outSlope: {x: 0.9861396, y: 1.0096464, z: -1.0351179, w: -1.440367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.46554047, y: 0.8444457, z: -0.13979895, w: 0.22503284} + inSlope: {x: 2.1931982, y: 1.6367652, z: -1.3407698, w: -2.4210577} + outSlope: {x: 2.1931982, y: 1.6367652, z: -1.3407698, w: -2.4210577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.35466838, y: 0.90883994, z: -0.17674525, w: 0.13031308} + inSlope: {x: 1.6149409, y: -0.25342143, z: 1.1205175, w: 2.8044708} + outSlope: {x: 1.6149409, y: -0.25342143, z: 1.1205175, w: 2.8044708} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.330962, y: 0.82332724, z: -0.046422448, w: 0.45873886} + inSlope: {x: 1.8390315, y: -0.78178596, z: 1.4803567, w: 4.3731184} + outSlope: {x: 1.8390315, y: -0.78178596, z: 1.4803567, w: 4.3731184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.20141587, y: 0.84369105, z: -0.053382114, w: 0.49473977} + inSlope: {x: 2.4538927, y: 0.37463182, z: -0.13537844, w: 0.5002388} + outSlope: {x: 2.4538927, y: 0.37463182, z: -0.13537844, w: 0.5002388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.12647103, y: 0.85454655, z: -0.05770398, w: 0.5004254} + inSlope: {x: 1.6769623, y: 0.112791486, z: -0.0625118, w: 0.24051178} + outSlope: {x: 1.6769623, y: 0.112791486, z: -0.0625118, w: 0.24051178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0.027258016, y: 0.8508469, z: -0.05661148, w: 0.5216433} + inSlope: {x: 0.42091337, y: 0.27734694, z: 0.098545134, w: -0.4653967} + outSlope: {x: 0.42091337, y: 0.27734694, z: 0.098545134, w: -0.4653967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.024944559, y: 0.92113763, z: -0.042715415, w: 0.38608116} + inSlope: {x: -0.76107544, y: 0.5626584, z: -0.020650377, w: -1.3918624} + outSlope: {x: -0.76107544, y: 0.5626584, z: -0.020650377, w: -1.3918624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: -0.109994, y: 0.95501184, z: -0.058818556, w: 0.26906157} + inSlope: {x: -0.6378308, y: -0.21065304, z: -0.05830871, w: 0.4212653} + outSlope: {x: -0.6378308, y: -0.21065304, z: -0.05830871, w: 0.4212653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13713801, y: 0.9371773, z: -0.057928517, w: 0.31549358} + inSlope: {x: -0.66387427, y: -0.6892683, z: 0.12987514, w: 1.6416917} + outSlope: {x: -0.66387427, y: -0.6892683, z: 0.12987514, w: 1.6416917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: -0.1653168, y: 0.8975729, z: -0.047995638, w: 0.40586907} + inSlope: {x: -0.7437135, y: -1.0477175, z: 0.2616524, w: 2.0532076} + outSlope: {x: -0.7437135, y: -1.0477175, z: 0.2616524, w: 2.0532076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.2998705, y: 0.7537487, z: -0.013288743, w: 0.5846058} + inSlope: {x: -1.3205087, y: -1.0819161, z: 0.2579399, w: 0.7418031} + outSlope: {x: -1.3205087, y: -1.0819161, z: 0.2579399, w: 0.7418031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.39286342, y: 0.6877947, z: -0.0029277827, w: 0.6104001} + inSlope: {x: -0.64944243, y: -0.28552535, z: -0.12479927, w: -0.08112009} + outSlope: {x: -0.64944243, y: -0.28552535, z: -0.12479927, w: -0.08112009} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.40126204, y: 0.7357383, z: -0.0637338, w: 0.54186344} + inSlope: {x: 0.17050937, y: 0.40822205, z: -0.3421832, w: -0.46501476} + outSlope: {x: 0.17050937, y: 0.40822205, z: -0.3421832, w: -0.46501476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.38875082, y: 0.7619396, z: -0.08348372, w: 0.51122534} + inSlope: {x: 0.012515918, y: 0.015937341, z: -0.006937265, w: -0.01532007} + outSlope: {x: 0.012515918, y: 0.015937341, z: -0.006937265, w: -0.01532007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.38910255, y: 0.7621007, z: -0.08409102, w: 0.5106177} + inSlope: {x: -0.0028123884, y: 0.0012874616, z: -0.0048562335, w: -0.0048637437} + outSlope: {x: -0.0028123884, y: 0.0012874616, z: -0.0048562335, w: -0.0048637437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.8475517, y: -0.0025010037, z: 0.53069186, w: 0.0039942292} + inSlope: {x: 0.114126205, y: -0.00053461455, z: -0.184134, w: 0.0028231256} + outSlope: {x: 0.114126205, y: -0.00053461455, z: -0.184134, w: 0.0028231256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.9036528, y: -0.0024485346, z: 0.42822778, w: 0.0051668677} + inSlope: {x: 0.10958432, y: 0.00017745323, z: -0.23154005, w: 0.0030484698} + outSlope: {x: 0.10958432, y: 0.00017745323, z: -0.23154005, w: 0.0030484698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.9239202, y: -0.002443526, z: 0.3825319, w: 0.00590172} + inSlope: {x: -0.008371338, y: -0.0011594212, z: 0.020028196, w: 0.00241975} + outSlope: {x: -0.008371338, y: -0.0011594212, z: 0.020028196, w: 0.00241975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.9225761, y: -0.002507247, z: 0.38576058, w: 0.005996208} + inSlope: {x: -0.13485426, y: -0.0030950527, z: 0.3130133, w: 0.0015858441} + outSlope: {x: -0.13485426, y: -0.0030950527, z: 0.3130133, w: 0.0015858441} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0.91268235, y: -0.002701447, z: 0.40861636, w: 0.0060338737} + inSlope: {x: -1.683564, y: -0.020163674, z: 2.8455753, w: -0.0088457335} + outSlope: {x: -1.683564, y: -0.020163674, z: 2.8455753, w: -0.0088457335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.78227925, y: -0.004187552, z: 0.62289166, w: 0.0052590645} + inSlope: {x: -2.9808455, y: -0.028884076, z: 4.066051, w: -0.0179265} + outSlope: {x: -2.9808455, y: -0.028884076, z: 4.066051, w: -0.0179265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.6642786, y: -0.0051084524, z: 0.7474538, w: 0.004539999} + inSlope: {x: 2.5910056, y: 0.049887255, z: -6.7543373, w: -0.057073183} + outSlope: {x: 2.5910056, y: 0.049887255, z: -6.7543373, w: -0.057073183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.9981965, y: -0.00003027867, z: 0.060029946, w: 0.0005029633} + inSlope: {x: 4.0253196, y: 0.061438132, z: -9.252283, w: -0.048665244} + outSlope: {x: 4.0253196, y: 0.061438132, z: -9.252283, w: -0.048665244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.99972206, y: 0.00001139414, z: -0.023570009, w: 0.00048455995} + inSlope: {x: 0.021638647, y: 0.0003665316, z: -0.72795045, w: -0.00044931483} + outSlope: {x: 0.021638647, y: 0.0003665316, z: -0.72795045, w: -0.00044931483} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.9999997, y: 0.00000026558786, z: -0.00063250127, w: 0.00046552042} + inSlope: {x: 0.0027387128, y: -0.0001904253, z: 0.40239948, w: -0.00045883213} + outSlope: {x: 0.0027387128, y: -0.0001904253, z: 0.40239948, w: -0.00045883213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: 0.9999503, y: -0.0000044746425, z: 0.009963299, w: 0.00044632392} + inSlope: {x: -0.00012659954, y: 0.000020322448, z: -0.048183545, w: -0.00046024937} + outSlope: {x: -0.00012659954, y: 0.000020322448, z: -0.048183545, w: -0.00046024937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.99998915, y: 0.000001959117, z: -0.004647777, w: 0.00042716632} + inSlope: {x: 0.00042414718, y: 0.000027221558, z: -0.055406407, w: -0.00046} + outSlope: {x: 0.00042414718, y: 0.000027221558, z: -0.055406407, w: -0.00046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.99270314, y: -0.000044595603, z: 0.12058362, w: 0.00036695224} + inSlope: {x: -0.2565326, y: -0.0006539037, z: 1.932389, w: -0.0005494718} + outSlope: {x: -0.2565326, y: -0.0006539037, z: 1.932389, w: -0.0005494718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.95036876, y: -0.000103093895, z: 0.31112555, w: 0.00031486072} + inSlope: {x: -0.6880674, y: -0.00057761685, z: 2.162851, w: -0.0006644938} + outSlope: {x: -0.6880674, y: -0.00057761685, z: 2.162851, w: -0.0006644938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.9146334, y: -0.00011844993, z: 0.40428418, w: 0.00026794674} + inSlope: {x: 0.38501412, y: 0.00046318822, z: -1.0329983, w: -0.00031800068} + outSlope: {x: 0.38501412, y: 0.00046318822, z: -1.0329983, w: -0.00031800068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.95208424, y: -0.00008374478, z: 0.30583578, w: 0.0002606598} + inSlope: {x: 0.9503798, y: 0.0010824077, z: -3.5206208, w: -0.00017900864} + outSlope: {x: 0.9503798, y: 0.0010824077, z: -3.5206208, w: -0.00017900864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.99383163, y: -0.00002824938, z: 0.110899374, w: 0.00025302937} + inSlope: {x: 0.5467934, y: 0.0011983255, z: -4.492159, w: -0.000309485} + outSlope: {x: 0.5467934, y: 0.0011983255, z: -4.492159, w: -0.000309485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: 0.9976503, y: 0.000016115713, z: -0.06851094, w: 0.00023486937} + inSlope: {x: -0.16080908, y: 0.0008500212, z: -3.6931498, w: -0.0004906115} + outSlope: {x: -0.16080908, y: 0.0008500212, z: -3.6931498, w: -0.0004906115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.9804309, y: 0.000042585776, z: -0.19686334, w: 0.00021214507} + inSlope: {x: -0.44692796, y: 0.0004657966, z: -2.5211053, w: -0.0005456818} + outSlope: {x: -0.44692796, y: 0.0004657966, z: -2.5211053, w: -0.0005456818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: 0.9479782, y: 0.000056664943, z: -0.31833538, w: 0.00016876773} + inSlope: {x: -0.16266891, y: -0.00004607473, z: -0.51685077, w: -0.00046781017} + outSlope: {x: -0.16266891, y: -0.00004607473, z: -0.51685077, w: -0.00046781017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.9790035, y: 0.00002065186, z: -0.20384373, w: 0.00009920474} + inSlope: {x: 0.24992776, y: -0.00021525507, z: 1.1990037, w: -0.00042458685} + outSlope: {x: 0.24992776, y: -0.00021525507, z: 1.1990037, w: -0.00042458685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.9964899, y: 0.000003666881, z: -0.083713464, w: 0.00004365518} + inSlope: {x: 0.03552321, y: -0.000060099686, z: 0.37073958, w: -0.00045648203} + outSlope: {x: 0.03552321, y: -0.000060099686, z: 0.37073958, w: -0.00045648203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.99683475, y: -0.0000010870575, z: -0.079501554, w: -0.000013671602} + inSlope: {x: -0.0008068092, y: -0.000036694095, z: -0.010116139, w: -0.00045872448} + outSlope: {x: -0.0008068092, y: -0.000036694095, z: -0.010116139, w: -0.00045872448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.996801, y: -0.0000026240577, z: -0.079922974, w: -0.000032784457} + inSlope: {x: -0.00080967025, y: -0.00003688804, z: -0.010114083, w: -0.000458709} + outSlope: {x: -0.00080967025, y: -0.00003688804, z: -0.010114083, w: -0.000458709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.42471984, y: 0.022157507, z: 0.5625429, w: 0.7089906} + inSlope: {x: 0.14337087, y: 0.048637524, z: 0.0704813, w: 0.027600288} + outSlope: {x: 0.14337087, y: 0.048637524, z: 0.0704813, w: 0.027600288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -0.27458203, y: 0.051469546, z: 0.6000509, w: 0.74959624} + inSlope: {x: 0.30119166, y: -0.010146746, z: 0.017088175, w: 0.09767388} + outSlope: {x: 0.30119166, y: -0.010146746, z: 0.017088175, w: 0.09767388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24410272, y: 0.05404181, z: 0.6017088, w: 0.7585775} + inSlope: {x: -0.09950419, y: 0.081169955, z: 0.017359965, w: -0.05255339} + outSlope: {x: -0.09950419, y: 0.081169955, z: 0.017359965, w: -0.05255339} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: -0.25488013, y: 0.056783482, z: 0.6028292, w: 0.75392884} + inSlope: {x: -1.4003689, y: -0.4399742, z: -0.28990418, w: -0.31783912} + outSlope: {x: -1.4003689, y: -0.4399742, z: -0.28990418, w: -0.31783912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.36080003, y: 0.017377334, z: 0.5775502, w: 0.73209095} + inSlope: {x: -2.4358423, y: -0.1592094, z: -0.54163545, w: -0.7554774} + outSlope: {x: -2.4358423, y: -0.1592094, z: -0.54163545, w: -0.7554774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.45786694, y: 0.043516085, z: 0.55769295, w: 0.6909724} + inSlope: {x: 1.4505293, y: 3.989911, z: 1.613107, w: -2.0702503} + outSlope: {x: 1.4505293, y: 3.989911, z: 1.613107, w: -2.0702503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.23992252, y: 0.34987006, z: 0.7119758, w: 0.55957} + inSlope: {x: 2.1908145, y: 4.513526, z: 2.3251808, w: -3.152351} + outSlope: {x: 2.1908145, y: 4.513526, z: 2.3251808, w: -3.152351} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.27529892, y: 0.4196433, z: 0.75145805, w: 0.42827654} + inSlope: {x: -1.1771057, y: 0.91170824, z: 0.485692, w: -2.253481} + outSlope: {x: -1.1771057, y: 0.91170824, z: 0.485692, w: -2.253481} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.33801466, y: 0.42584568, z: 0.7524501, w: 0.37178004} + inSlope: {x: -1.4255188, y: 0.10214562, z: -0.057029463, w: -1.2730609} + outSlope: {x: -1.4255188, y: 0.10214562, z: -0.057029463, w: -1.2730609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: -0.3940922, y: 0.42815545, z: 0.7467056, w: 0.32218808} + inSlope: {x: -1.0874245, y: 0.10066157, z: -0.089479916, w: -1.2258317} + outSlope: {x: -1.0874245, y: 0.10066157, z: -0.089479916, w: -1.2258317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.45004869, y: 0.43530205, z: 0.7426324, w: 0.23762481} + inSlope: {x: -0.40455723, y: -0.0447919, z: -0.08641219, w: -0.3814825} + outSlope: {x: -0.40455723, y: -0.0447919, z: -0.08641219, w: -0.3814825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.47927418, y: 0.40652546, z: 0.716242, w: 0.30336583} + inSlope: {x: -0.3165521, y: -0.41731584, z: -0.40372315, w: 0.9953595} + outSlope: {x: -0.3165521, y: -0.41731584, z: -0.40372315, w: 0.9953595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: -0.49882403, y: 0.36004877, z: 0.6754729, w: 0.40654132} + inSlope: {x: 0.6986296, y: 0.15453066, z: 0.26420936, w: 0.24022134} + outSlope: {x: 0.6986296, y: 0.15453066, z: 0.26420936, w: 0.24022134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.44969925, y: 0.37942508, z: 0.6999112, w: 0.40488455} + inSlope: {x: 1.591532, y: 0.7049696, z: 0.73633647, w: -0.26847687} + outSlope: {x: 1.591532, y: 0.7049696, z: 0.73633647, w: -0.26847687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: -0.36619648, y: 0.41879618, z: 0.7368342, w: 0.38416827} + inSlope: {x: 1.9458177, y: 0.8848103, z: 0.6915385, w: -0.39924353} + outSlope: {x: 1.9458177, y: 0.8848103, z: 0.6915385, w: -0.39924353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: -0.22534548, y: 0.47900265, z: 0.75702095, w: 0.38300806} + inSlope: {x: 1.2974594, y: 0.5255407, z: -0.20155855, w: 0.5194392} + outSlope: {x: 1.2974594, y: 0.5255407, z: -0.20155855, w: 0.5194392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.14360337, y: 0.5081816, z: 0.6905491, w: 0.4942384} + inSlope: {x: 0.044012945, y: -0.009297619, z: -0.4572348, w: 0.6771987} + outSlope: {x: 0.044012945, y: -0.009297619, z: -0.4572348, w: 0.6771987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.19415626, y: 0.48659524, z: 0.65992063, w: 0.5385474} + inSlope: {x: -0.38594165, y: -0.18772665, z: -0.06775972, w: 0.11452885} + outSlope: {x: -0.38594165, y: -0.18772665, z: -0.06775972, w: 0.11452885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.21988043, y: 0.47346738, z: 0.65544915, w: 0.54577255} + inSlope: {x: 0.005597239, y: -0.00068664615, z: -0.0006279951, w: 0.0036077534} + outSlope: {x: 0.005597239, y: -0.00068664615, z: -0.0006279951, w: 0.0036077534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.06547358, y: 0.25752085, z: -0.057567313, w: 0.96233165} + inSlope: {x: 0.007425964, y: 0.10568833, z: 0.057233334, w: -0.025691986} + outSlope: {x: 0.007425964, y: 0.10568833, z: 0.057233334, w: -0.025691986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.07973625, y: 0.346054, z: 0.03357229, w: 0.93421715} + inSlope: {x: 0.026085455, y: 0.002101779, z: 0.26123154, w: -0.012481922} + outSlope: {x: 0.026085455, y: 0.002101779, z: 0.26123154, w: -0.012481922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.07744535, y: 0.3177672, z: 0.06356489, w: 0.9428604} + inSlope: {x: -0.19059864, y: -1.011411, z: 0.57374537, w: 0.29635692} + outSlope: {x: -0.19059864, y: -1.011411, z: 0.57374537, w: 0.29635692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0.042325363, y: 0.18827315, z: 0.12636156, w: 0.97303367} + inSlope: {x: -0.6346444, y: -1.7149014, z: 0.8023546, w: 0.25508738} + outSlope: {x: -0.6346444, y: -1.7149014, z: 0.8023546, w: 0.25508738} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.020820599, y: 0.06364406, z: 0.18114662, w: 0.98117375} + inSlope: {x: -0.75220513, y: -1.0177423, z: 0.29313117, w: 0.011695141} + outSlope: {x: -0.75220513, y: -1.0177423, z: 0.29313117, w: 0.011695141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.11959145, y: -0.016152592, z: 0.14491092, w: 0.9820579} + inSlope: {x: -0.8041871, y: -0.5690001, z: -0.7539122, w: 0.00069308234} + outSlope: {x: -0.8041871, y: -0.5690001, z: -0.7539122, w: 0.00069308234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.20201257, y: -0.10940192, z: -0.036638435, w: 0.9725635} + inSlope: {x: -0.023226164, y: -0.48618722, z: -1.214829, w: -0.10361777} + outSlope: {x: -0.023226164, y: -0.48618722, z: -1.214829, w: -0.10361777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.17389879, y: -0.1526583, z: -0.1777685, w: 0.9564795} + inSlope: {x: 0.17229807, y: 0.0013812557, z: -0.25305915, w: -0.013919627} + outSlope: {x: 0.17229807, y: 0.0013812557, z: -0.25305915, w: -0.013919627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: -0.12343067, y: -0.086577885, z: -0.13112487, w: 0.9798344} + inSlope: {x: 0.18962252, y: 0.3202114, z: 0.3614134, w: 0.100446165} + outSlope: {x: 0.18962252, y: 0.3202114, z: 0.3614134, w: 0.100446165} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.08161882, y: -0.025262631, z: -0.04571812, w: 0.9952939} + inSlope: {x: 0.01118214, y: 0.011070335, z: 0.012835776, w: 0.0018074533} + outSlope: {x: 0.01118214, y: 0.011070335, z: 0.012835776, w: 0.0018074533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.081637405, y: -0.025836369, z: -0.046426542, w: 0.9952449} + inSlope: {x: -0.00006365782, y: -0.0061875046, z: -0.00048530148, w: -0.00018739718} + outSlope: {x: -0.00006365782, y: -0.0061875046, z: -0.00048530148, w: -0.00018739718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14891745, y: 0.29646832, z: -0.116911955, w: 0.9360885} + inSlope: {x: 0.15245497, y: 0.06441164, z: 0.11219627, w: -0.03155136} + outSlope: {x: 0.15245497, y: 0.06441164, z: 0.11219627, w: -0.03155136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.26121446, y: 0.3303817, z: -0.011545743, w: 0.90690774} + inSlope: {x: 0.32343736, y: 0.04470706, z: 0.34176585, w: -0.10464333} + outSlope: {x: 0.32343736, y: 0.04470706, z: 0.34176585, w: -0.10464333} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.3051908, y: 0.3320581, z: 0.026741676, w: 0.89212155} + inSlope: {x: 0.20951226, y: -0.016741626, z: 0.044479407, w: -0.066510886} + outSlope: {x: 0.20951226, y: -0.016741626, z: 0.044479407, w: -0.066510886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 0.3134003, y: 0.33115023, z: 0.026084596, w: 0.88962877} + inSlope: {x: 0.30339268, y: 0.1807267, z: -0.22791605, w: -0.1738888} + outSlope: {x: 0.30339268, y: 0.1807267, z: -0.22791605, w: -0.1738888} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.3304735, y: 0.34711865, z: 0.0077486895, w: 0.87763083} + inSlope: {x: 0.5321217, y: 0.3725203, z: -0.92478293, w: -0.3650644} + outSlope: {x: 0.5321217, y: 0.3725203, z: -0.92478293, w: -0.3650644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0.3791752, y: 0.35804912, z: -0.14140287, w: 0.8414465} + inSlope: {x: 0.2250329, y: -0.3527079, z: -2.262344, w: -0.34160042} + outSlope: {x: 0.2250329, y: -0.3527079, z: -2.262344, w: -0.34160042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.3417154, y: 0.2834832, z: -0.3183504, w: 0.83756846} + inSlope: {x: -1.1292298, y: -1.439666, z: -1.4096513, w: 0.40624577} + outSlope: {x: -1.1292298, y: -1.439666, z: -1.4096513, w: 0.40624577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.21900067, y: 0.14410917, z: -0.35381296, w: 0.8978238} + inSlope: {x: -1.4011045, y: -1.5291935, z: 0.48844975, w: 0.7870791} + outSlope: {x: -1.4011045, y: -1.5291935, z: 0.48844975, w: 0.7870791} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: 0.1297429, y: 0.050534103, z: -0.25768816, w: 0.95614326} + inSlope: {x: -0.6253217, y: -0.42531192, z: 1.4922609, w: 0.5202928} + outSlope: {x: -0.6253217, y: -0.42531192, z: 1.4922609, w: 0.5202928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.07649671, y: 0.101973265, z: -0.04682874, w: 0.9907355} + inSlope: {x: -0.708162, y: 0.7920966, z: 1.7414795, w: 0.05114656} + outSlope: {x: -0.708162, y: 0.7920966, z: 1.7414795, w: 0.05114656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.08179263, y: 0.26730272, z: 0.15504824, w: 0.94753325} + inSlope: {x: -0.91295016, y: 1.1367326, z: 0.34879494, w: -0.45360208} + outSlope: {x: -0.91295016, y: 1.1367326, z: 0.34879494, w: -0.45360208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: -0.20954128, y: 0.501676, z: 0.09875561, w: 0.83346325} + inSlope: {x: -0.23951863, y: 0.95165116, z: -0.62390184, w: -0.55487376} + outSlope: {x: -0.23951863, y: 0.95165116, z: -0.62390184, w: -0.55487376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: -0.20655367, y: 0.6000134, z: -0.029844971, w: 0.772288} + inSlope: {x: 0.12630838, y: -0.12553251, z: -0.4480148, w: 0.11392529} + outSlope: {x: 0.12630838, y: -0.12553251, z: -0.4480148, w: 0.11392529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: -0.17803715, y: 0.5073142, z: -0.06530801, w: 0.8406366} + inSlope: {x: 0.03229605, y: -0.11005552, z: 0.006710505, w: 0.07449949} + outSlope: {x: 0.03229605, y: -0.11005552, z: 0.006710505, w: 0.07449949} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.17809667, y: 0.5062764, z: -0.0654884, w: 0.8412354} + inSlope: {x: 0.0034832987, y: 0.004427437, z: 0.003487769, w: -0.0016551034} + outSlope: {x: 0.0034832987, y: 0.004427437, z: 0.003487769, w: -0.0016551034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0661076, y: -0.26194814, z: 0.8369362, w: 0.47597355} + inSlope: {x: -0.12949473, y: 0.06696296, z: -0.11721611, w: 0.22130299} + outSlope: {x: -0.12949473, y: 0.06696296, z: -0.11721611, w: 0.22130299} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.107082345, y: -0.2457894, z: 0.80080897, w: 0.5355613} + inSlope: {x: -0.46032056, y: 0.1603385, z: -0.37064618, w: 0.530219} + outSlope: {x: -0.46032056, y: 0.1603385, z: -0.37064618, w: 0.530219} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.12915361, y: -0.2380799, z: 0.7835594, w: 0.55917084} + inSlope: {x: -0.73119843, y: 0.31475228, z: -0.4859648, w: 0.6266721} + outSlope: {x: -0.73119843, y: 0.31475228, z: -0.4859648, w: 0.6266721} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.19185162, y: -0.21298553, z: 0.73663473, w: 0.61253524} + inSlope: {x: -0.36244196, y: -0.045185097, z: -0.54213154, w: 0.5305344} + outSlope: {x: -0.36244196, y: -0.045185097, z: -0.54213154, w: 0.5305344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.20518903, y: -0.23553337, z: 0.6927638, w: 0.64999986} + inSlope: {x: -0.17270812, y: -0.30733585, z: -0.5398385, w: 0.40961617} + outSlope: {x: -0.17270812, y: -0.30733585, z: -0.5398385, w: 0.40961617} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.23562974, y: -0.28894654, z: 0.61024755, w: 0.69898957} + inSlope: {x: -0.17289725, y: -0.2876979, z: -0.37879354, w: 0.15514676} + outSlope: {x: -0.17289725, y: -0.2876979, z: -0.37879354, w: 0.15514676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.24255465, y: -0.30029207, z: 0.5962639, w: 0.70389014} + inSlope: {x: -0.2914429, y: -0.26777035, z: -0.36835325, w: 0.09469271} + outSlope: {x: -0.2914429, y: -0.26777035, z: -0.36835325, w: 0.09469271} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.25991663, y: -0.31126073, z: 0.57955146, w: 0.7068806} + inSlope: {x: -0.39385694, y: 0.045179278, z: -0.18941994, w: 0.03252128} + outSlope: {x: -0.39385694, y: 0.045179278, z: -0.18941994, w: 0.03252128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27537605, y: -0.29652712, z: 0.5804789, w: 0.70660025} + inSlope: {x: 0.54838717, y: -0.124441564, z: 0.5916943, w: -0.38634306} + outSlope: {x: 0.54838717, y: -0.124441564, z: 0.5916943, w: -0.38634306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: -0.21421768, y: -0.32163087, z: 0.62885934, w: 0.67468536} + inSlope: {x: 2.1671398, y: -0.12505893, z: 1.5307852, w: -0.9328126} + outSlope: {x: 2.1671398, y: -0.12505893, z: 1.5307852, w: -0.9328126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.094781145, y: -0.30694872, z: 0.7080443, w: 0.6288659} + inSlope: {x: 2.9593093, y: 1.4637376, z: 1.9509227, w: -1.1744151} + outSlope: {x: 2.9593093, y: 1.4637376, z: 1.9509227, w: -1.1744151} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.032391384, y: -0.19965269, z: 0.7914362, w: 0.57681745} + inSlope: {x: 2.733603, y: 3.3394551, z: 1.9350154, w: -1.8440592} + outSlope: {x: 2.733603, y: 3.3394551, z: 1.9350154, w: -1.8440592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.13301922, y: -0.028660633, z: 0.86929566, w: 0.47519422} + inSlope: {x: 1.7583945, y: 3.6303418, z: 1.5873945, w: -3.049215} + outSlope: {x: 1.7583945, y: 3.6303418, z: 1.5873945, w: -3.049215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.17892426, y: 0.102875754, z: 0.92371905, w: 0.3227163} + inSlope: {x: 0.58653224, y: 2.015232, z: 1.0164003, w: -3.3813865} + outSlope: {x: 0.58653224, y: 2.015232, z: 1.0164003, w: -3.3813865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.18189687, y: 0.13927525, z: 0.95399565, w: 0.1934121} + inSlope: {x: -0.30863002, y: 0.2571057, z: 0.5746097, w: -2.3050144} + outSlope: {x: -0.30863002, y: 0.2571057, z: 0.5746097, w: -2.3050144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: 0.15320508, y: 0.12430124, z: 0.9716032, w: 0.13063167} + inSlope: {x: -0.56594527, y: -0.47052258, z: 0.26526612, w: -0.66424614} + outSlope: {x: -0.56594527, y: -0.47052258, z: 0.26526612, w: -0.66424614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13473476, y: 0.10006505, z: 0.97610116, w: 0.13805822} + inSlope: {x: 0.45352462, y: -0.6056481, z: -0.15185478, w: 0.78656405} + outSlope: {x: 0.45352462, y: -0.6056481, z: -0.15185478, w: 0.78656405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.28492436, y: 0.037999477, z: 0.9152756, w: 0.28221413} + inSlope: {x: 2.2903278, y: -1.1010529, z: -1.4118804, w: 2.2324622} + outSlope: {x: 2.2903278, y: -1.1010529, z: -1.4118804, w: 2.2324622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.3818594, y: -0.017923782, z: 0.841292, w: 0.3822171} + inSlope: {x: 2.0961328, y: -1.6837149, z: -2.0339055, w: 2.2688012} + outSlope: {x: 2.0961328, y: -1.6837149, z: -2.0339055, w: 2.2688012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.45960215, y: -0.102310196, z: 0.7457833, w: 0.47128096} + inSlope: {x: 1.2591879, y: -2.1257837, z: -2.1401327, w: 1.8250452} + outSlope: {x: 1.2591879, y: -2.1257837, z: -2.1401327, w: 1.8250452} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.48679185, y: -0.19507249, z: 0.66294754, w: 0.5343043} + inSlope: {x: -0.18095666, y: -1.948526, z: -1.4485567, w: 1.358499} + outSlope: {x: -0.18095666, y: -1.948526, z: -1.4485567, w: 1.358499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.44452244, y: -0.2646872, z: 0.6250704, w: 0.5844891} + inSlope: {x: -2.1754072, y: -0.95469904, z: -0.36791742, w: 1.4705769} + outSlope: {x: -2.1754072, y: -0.95469904, z: -0.36791742, w: 1.4705769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.3055077, y: -0.2746307, z: 0.6322878, w: 0.6568525} + inSlope: {x: -2.3035975, y: -1.405245, z: -0.6025001, w: 1.1247919} + outSlope: {x: -2.3035975, y: -1.405245, z: -0.6025001, w: 1.1247919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25255576, y: -0.38179088, z: 0.5748621, w: 0.6782219} + inSlope: {x: -1.2991347, y: -2.3178399, z: -1.1763079, w: 0.22852728} + outSlope: {x: -1.2991347, y: -2.3178399, z: -1.1763079, w: 0.22852728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: 0.1478586, y: -0.5335341, z: 0.5177393, w: 0.65224624} + inSlope: {x: -1.1572726, y: -1.3580076, z: -0.098894365, w: -0.7560631} + outSlope: {x: -1.1572726, y: -1.3580076, z: -0.098894365, w: -0.7560631} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: -0.003974888, y: -0.619322, z: 0.5976986, w: 0.509098} + inSlope: {x: -1.4742904, y: 0.041086078, z: 1.1335533, w: -1.3169894} + outSlope: {x: -1.4742904, y: 0.041086078, z: 1.1335533, w: -1.3169894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.070371956, y: -0.6069036, z: 0.6486664, w: 0.4538146} + inSlope: {x: -1.2299626, y: 0.2752314, z: 1.2579186, w: -1.628082} + outSlope: {x: -1.2299626, y: 0.2752314, z: 1.2579186, w: -1.628082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: -0.14468771, y: -0.56647986, z: 0.74942344, w: 0.31069368} + inSlope: {x: -1.3159931, y: 0.9258212, z: 0.84030735, w: -0.94474643} + outSlope: {x: -1.3159931, y: 0.9258212, z: 0.84030735, w: -0.94474643} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: -0.21613775, y: -0.5192343, z: 0.77255076, w: 0.29469565} + inSlope: {x: -1.8188388, y: 1.1215961, z: 0.256428, w: -0.041986257} + outSlope: {x: -1.8188388, y: 1.1215961, z: 0.256428, w: -0.041986257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.29625747, y: -0.4730136, z: 0.7707924, w: 0.30719483} + inSlope: {x: -1.0364316, y: 0.6576755, z: 0.017573738, w: 0.13683897} + outSlope: {x: -1.0364316, y: 0.6576755, z: 0.017573738, w: 0.13683897} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: -0.30250698, y: -0.46442804, z: 0.77401525, w: 0.30609888} + inSlope: {x: 0.82166475, y: -0.2766797, z: 0.20133956, w: -0.25508222} + outSlope: {x: 0.82166475, y: -0.2766797, z: 0.20133956, w: -0.25508222} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: -0.22778548, y: -0.4960702, z: 0.7875707, w: 0.285938} + inSlope: {x: 1.5302306, y: -0.7295319, z: 0.07854874, w: -0.1901781} + outSlope: {x: 1.5302306, y: -0.7295319, z: 0.07854874, w: -0.1901781} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.13126442, y: -0.5709846, z: 0.74955374, w: 0.30808344} + inSlope: {x: 0.14474413, y: -0.2211573, z: -0.1715614, w: 0.08261855} + outSlope: {x: 0.14474413, y: -0.2211573, z: -0.1715614, w: 0.08261855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.13032393, y: -0.5717198, z: 0.7493761, w: 0.30755094} + inSlope: {x: 0.022571705, y: -0.017645376, z: -0.0042629284, w: -0.012780202} + outSlope: {x: 0.022571705, y: -0.017645376, z: -0.0042629284, w: -0.012780202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0024896492, y: 0.2811281, z: 0.008498463, w: 0.9596294} + inSlope: {x: 0.0036248658, y: -0.23182583, z: -0.004981689, w: 0.06670332} + outSlope: {x: 0.0036248658, y: -0.23182583, z: -0.004981689, w: 0.06670332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.0013359196, y: 0.20164378, z: 0.006488989, w: 0.9794366} + inSlope: {x: 0.013065392, y: -0.9855495, z: -0.03375174, w: 0.19494149} + outSlope: {x: 0.013065392, y: -0.9855495, z: -0.03375174, w: 0.19494149} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.00072631583, y: 0.15258384, z: 0.0047044214, w: 0.9882791} + inSlope: {x: 0.014438486, y: -1.776442, z: -0.04819922, w: 0.22946979} + outSlope: {x: 0.014438486, y: -1.776442, z: -0.04819922, w: 0.22946979} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.00013271252, y: 0.05360696, z: 0.0024723876, w: 0.99855906} + inSlope: {x: 0.008734143, y: -1.8582923, z: -0.04846345, w: 0.14061716} + outSlope: {x: 0.008734143, y: -1.8582923, z: -0.04846345, w: 0.14061716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.0000015293801, y: -0.0022738602, z: 0.0006658004, w: 0.9999972} + inSlope: {x: 0.0015907957, y: -0.6705696, z: -0.030518435, w: 0.017260544} + outSlope: {x: 0.0015907957, y: -0.6705696, z: -0.030518435, w: 0.017260544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00000014614915, y: -0.0022738636, z: -0.00007081605, w: 0.99999744} + inSlope: {x: -0.000020113119, y: -0.00000008381905, z: -0.008839408, w: 0.0000028610236} + outSlope: {x: -0.000020113119, y: -0.00000008381905, z: -0.008839408, w: 0.0000028610236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.00000015009272, y: -0.0022738867, z: -0.00007082093, w: 0.99999744} + inSlope: {x: -0.000000013388675, y: 0.0000008912752, z: 0.0000000110885425, w: 0} + outSlope: {x: -0.000000013388675, y: 0.0000008912752, z: 0.0000000110885425, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00000015064508, y: -0.002273809, z: -0.00007081932, w: 0.99999744} + inSlope: {x: -0.01886485, y: 2.82597, z: 0.07951265, w: -0.33117184} + outSlope: {x: -0.01886485, y: 2.82597, z: 0.07951265, w: -0.33117184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: -0.0015722215, y: 0.2332237, z: 0.0065552364, w: 0.9723998} + inSlope: {x: -0.10364671, y: 6.3162107, z: 0.16925626, w: -1.7818328} + outSlope: {x: -0.10364671, y: 6.3162107, z: 0.16925626, w: -1.7818328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.008637371, y: 0.52407694, z: 0.014033865, w: 0.8515115} + inSlope: {x: -0.18474638, y: 5.6213017, z: 0.1279772, w: -3.1236396} + outSlope: {x: -0.18474638, y: 5.6213017, z: 0.1279772, w: -3.1236396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.016967751, y: 0.70166534, z: 0.017219998, w: 0.7120965} + inSlope: {x: -0.14143153, y: 2.9171963, z: 0.036328334, w: -2.5275345} + outSlope: {x: -0.14143153, y: 2.9171963, z: 0.036328334, w: -2.5275345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.020423336, y: 0.76717675, z: 0.017061228, w: 0.6408835} + inSlope: {x: -0.012184894, y: 0.30337992, z: -0.0029237196, w: -0.31018043} + outSlope: {x: -0.012184894, y: 0.30337992, z: -0.0029237196, w: -0.31018043} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.017983163, y: 0.72694707, z: 0.016976355, w: 0.68624806} + inSlope: {x: 0.10378358, y: -2.0695615, z: -0.013787018, w: 1.9537272} + outSlope: {x: 0.10378358, y: -2.0695615, z: -0.013787018, w: 1.9537272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.011774704, y: 0.5947133, z: 0.01591231, w: 0.8036941} + inSlope: {x: 0.14955786, y: -3.7719047, z: -0.05750053, w: 2.694674} + outSlope: {x: 0.14955786, y: -3.7719047, z: -0.05750053, w: 2.694674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: -0.0055200015, y: 0.41262153, z: 0.012184641, w: 0.91080433} + inSlope: {x: 0.10425544, y: -3.3864725, z: -0.078361616, w: 1.7540394} + outSlope: {x: 0.10425544, y: -3.3864725, z: -0.078361616, w: 1.7540394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0030867497, y: 0.31250724, z: 0.009382175, w: 0.9498641} + inSlope: {x: 0.0072575565, y: -0.14292169, z: -0.011367569, w: 0.06381491} + outSlope: {x: 0.0072575565, y: -0.14292169, z: -0.011367569, w: 0.06381491} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.004915211, y: 0.40071166, z: 0.01123735, w: 0.91612214} + inSlope: {x: -0.0754128, y: 2.725751, z: 0.062810466, w: -1.2978687} + outSlope: {x: -0.0754128, y: 2.725751, z: 0.062810466, w: -1.2978687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.009371149, y: 0.5396532, z: 0.014616381, w: 0.84170836} + inSlope: {x: -0.10505849, y: 2.8339045, z: 0.06365672, w: -1.7453988} + outSlope: {x: -0.10505849, y: 2.8339045, z: 0.06365672, w: -1.7453988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.013670077, y: 0.63687015, z: 0.016542071, w: 0.7706724} + inSlope: {x: -0.065917194, y: 1.4534838, z: 0.027125731, w: -1.0975546} + outSlope: {x: -0.065917194, y: 1.4534838, z: 0.027125731, w: -1.0975546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.014864247, y: 0.6607768, z: 0.016876858, w: 0.7502455} + inSlope: {x: 0.021602135, y: -0.5391525, z: -0.004621395, w: 0.4207167} + outSlope: {x: 0.021602135, y: -0.5391525, z: -0.004621395, w: 0.4207167} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.011869904, y: 0.5919409, z: 0.016156957, w: 0.805732} + inSlope: {x: 0.11575806, y: -3.0831869, z: -0.06069952, w: 1.973891} + outSlope: {x: 0.11575806, y: -3.0831869, z: -0.06069952, w: 1.973891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.005217751, y: 0.4038448, z: 0.011818569, w: 0.9147363} + inSlope: {x: 0.14243689, y: -7.1305695, z: -0.19473302, w: 2.3311844} + outSlope: {x: 0.14243689, y: -7.1305695, z: -0.19473302, w: 2.3311844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: -0.0000001590607, y: -0.0022738655, z: -0.000070814196, w: 0.99999744} + inSlope: {x: 0.06261098, y: -4.8734145, z: -0.14267233, w: 1.0231321} + outSlope: {x: 0.06261098, y: -4.8734145, z: -0.14267233, w: 1.0231321} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00000015962124, y: -0.002273868, z: -0.00007081367, w: 0.99999744} + inSlope: {x: -0.000000013452803, y: -0.000000064261314, z: 0.000000012572867, w: 0} + outSlope: {x: -0.000000013452803, y: -0.000000064261314, z: 0.000000012572867, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: -0.00000016242392, y: -0.002273881, z: -0.00007081104, w: 0.99999744} + inSlope: {x: -0.000000013283959, y: 0.0000011483219, z: 0.000000049243713, w: 0} + outSlope: {x: -0.000000013283959, y: 0.0000011483219, z: 0.000000049243713, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.00000016297038, y: -0.0022737829, z: -0.00007080746, w: 0.99999744} + inSlope: {x: -0.004897463, y: 1.4219452, z: 0.04271938, w: -0.08136399} + outSlope: {x: -0.004897463, y: 1.4219452, z: 0.04271938, w: -0.08136399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: -0.00040828396, y: 0.11622144, z: 0.0034891337, w: 0.9932171} + inSlope: {x: -0.015697604, y: 2.4807777, z: 0.076012224, w: -0.25371528} + outSlope: {x: -0.015697604, y: 2.4807777, z: 0.076012224, w: -0.25371528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: -0.001308298, y: 0.20445774, z: 0.006263546, w: 0.9788545} + inSlope: {x: -0.002501321, y: 0.344087, z: 0.008667026, w: -0.04535106} + outSlope: {x: -0.002501321, y: 0.344087, z: 0.008667026, w: -0.04535106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: -0.0006167298, y: 0.14489558, z: 0.004211393, w: 0.9894378} + inSlope: {x: 0.015709817, y: -2.480782, z: -0.07064324, w: 0.25371504} + outSlope: {x: 0.015709817, y: -2.480782, z: -0.07064324, w: 0.25371504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.0000008521656, y: -0.0022738816, z: 0.0003766154, w: 0.9999974} + inSlope: {x: 0.007398776, y: -1.766031, z: -0.051386245, w: 0.12671554} + outSlope: {x: 0.007398776, y: -1.766031, z: -0.051386245, w: 0.12671554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: -0.0000001657219, y: -0.002273521, z: -0.00007079089, w: 0.99999744} + inSlope: {x: -0.013430454, y: 2.2968712, z: 0.06515539, w: -0.21676204} + outSlope: {x: -0.013430454, y: 2.2968712, z: 0.06515539, w: -0.21676204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: -0.0011183514, y: 0.18913189, z: 0.0058062244, w: 0.9819339} + inSlope: {x: -0.03509693, y: 3.6543195, z: 0.11153656, w: -0.56182534} + outSlope: {x: -0.03509693, y: 3.6543195, z: 0.11153656, w: -0.56182534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.002924907, y: 0.30225283, z: 0.009223914, w: 0.9531787} + inSlope: {x: -0.038111087, y: 2.1342905, z: 0.06093363, w: -0.6213882} + outSlope: {x: -0.038111087, y: 2.1342905, z: 0.06093363, w: -0.6213882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.0048951763, y: 0.39146236, z: 0.0115058115, w: 0.9201092} + inSlope: {x: -0.0077960268, y: 0.30227056, z: 0.00853587, w: -0.124185674} + outSlope: {x: -0.0077960268, y: 0.30227056, z: 0.00853587, w: -0.124185674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.0049439445, y: 0.39217862, z: 0.011595349, w: 0.9198027} + inSlope: {x: -0.001170439, y: 0.017190473, z: 0.0021488986, w: -0.007355697} + outSlope: {x: -0.001170439, y: 0.017190473, z: 0.0021488986, w: -0.007355697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0020134181, y: -0.0024100402, z: 0.077386625, w: 0.9969962} + inSlope: {x: 0.008645402, y: 0.012049285, z: -0.2851249, w: 0.020466328} + outSlope: {x: 0.008645402, y: 0.012049285, z: -0.2851249, w: 0.020466328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.0026776642, y: 0.0046410556, z: -0.12081405, w: 0.9926607} + inSlope: {x: 0.024991203, y: 0.03093258, z: -0.99065423, w: -0.12170648} + outSlope: {x: 0.024991203, y: 0.03093258, z: -0.99065423, w: -0.12170648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.009483927, y: 0.011494091, z: -0.36523154, w: 0.93079746} + inSlope: {x: 0.023103364, y: 0.022825453, z: -0.8325995, w: -0.3256372} + outSlope: {x: 0.023103364, y: 0.022825453, z: -0.8325995, w: -0.3256372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.012836403, y: 0.015174101, z: -0.48120475, w: 0.8763829} + inSlope: {x: 0.005395938, y: 0.0021621787, z: -0.2163478, w: -0.1178692} + outSlope: {x: 0.005395938, y: 0.0021621787, z: -0.2163478, w: -0.1178692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.012306497, y: 0.014155669, z: -0.47482646, w: 0.8798796} + inSlope: {x: -0.025822222, y: -0.027327072, z: 0.8234134, w: 0.41923672} + outSlope: {x: -0.025822222, y: -0.027327072, z: 0.8234134, w: 0.41923672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: 0.004820016, y: 0.0067779007, z: -0.20327656, w: 0.97908604} + inSlope: {x: -0.07974266, y: -0.08790171, z: 3.058115, w: 0.6186805} + outSlope: {x: -0.07974266, y: -0.08790171, z: 3.058115, w: 0.6186805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.0017621224, y: -0.0012694767, z: 0.06577549, w: 0.9978321} + inSlope: {x: -0.07309291, y: -0.09809284, z: 3.0247777, w: -0.17480652} + outSlope: {x: -0.07309291, y: -0.09809284, z: 3.0247777, w: -0.17480652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.007836155, y: -0.009625843, z: 0.3098686, w: 0.9506984} + inSlope: {x: -0.013492679, y: -0.01006227, z: 0.35436735, w: -0.104552165} + outSlope: {x: -0.013492679, y: -0.01006227, z: 0.35436735, w: -0.104552165} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.0062637157, y: -0.0066049695, z: 0.22928613, w: 0.9733165} + inSlope: {x: 0.050324023, y: 0.07377939, z: -2.1709168, w: 0.4616015} + outSlope: {x: 0.050324023, y: 0.07377939, z: -2.1709168, w: 0.4616015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00004529887, y: 0.0011996226, z: -0.024027862, w: 0.9997106} + inSlope: {x: 0.09410209, y: 0.10203697, z: -3.5074494, w: -0.10601674} + outSlope: {x: 0.09410209, y: 0.10203697, z: -3.5074494, w: -0.10601674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.004251065, y: 0.005561112, z: -0.17598376, w: 0.9843682} + inSlope: {x: 0.098846965, y: 0.10232598, z: -3.5821943, w: -0.6389086} + outSlope: {x: 0.098846965, y: 0.10232598, z: -3.5821943, w: -0.6389086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: 0.00828255, y: 0.009726792, z: -0.3225442, w: 0.9464682} + inSlope: {x: 0.085893705, y: 0.092225, z: -3.214172, w: -1.0611417} + outSlope: {x: 0.085893705, y: 0.092225, z: -3.214172, w: -1.0611417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: 0.01468364, y: 0.017005038, z: -0.57062906, w: 0.82090056} + inSlope: {x: 0.0011443989, y: 0.006794113, z: -0.18900725, w: -0.12069644} + outSlope: {x: 0.0011443989, y: 0.006794113, z: -0.18900725, w: -0.12069644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.013792923, y: 0.016374461, z: -0.5454656, w: 0.83785975} + inSlope: {x: -0.046453882, y: -0.0441795, z: 1.7609861, w: 1.0158622} + outSlope: {x: -0.046453882, y: -0.0441795, z: 1.7609861, w: 1.0158622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: 0.0108124865, y: 0.013323416, z: -0.42388037, w: 0.90555567} + inSlope: {x: -0.088824145, y: -0.10067884, z: 3.6525145, w: 1.5910714} + outSlope: {x: -0.088824145, y: -0.10067884, z: 3.6525145, w: 1.5910714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: 0.006390905, y: 0.007984551, z: -0.24108915, w: 0.9704491} + inSlope: {x: -0.10952515, y: -0.13626286, z: 4.492645, w: 1.1185844} + outSlope: {x: -0.10952515, y: -0.13626286, z: 4.492645, w: 1.1185844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.0016853865, y: 0.001968172, z: -0.049493134, w: 0.99877113} + inSlope: {x: -0.09541148, y: -0.12856528, z: 3.9718065, w: 0.3059674} + outSlope: {x: -0.09541148, y: -0.12856528, z: 3.9718065, w: 0.3059674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.0015600445, y: -0.0027292122, z: 0.08989442, w: 0.99594635} + inSlope: {x: -0.05767335, y: -0.07648702, z: 2.0665421, w: -0.076131776} + outSlope: {x: -0.05767335, y: -0.07648702, z: 2.0665421, w: -0.076131776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: -0.0031207257, y: -0.0044057453, z: 0.12271865, w: 0.9924268} + inSlope: {x: -0.019471852, y: -0.017102297, z: 0.24052987, w: -0.02426066} + outSlope: {x: -0.019471852, y: -0.017102297, z: 0.24052987, w: -0.02426066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.0028253559, y: -0.0030039514, z: 0.08654449, w: 0.9962395} + inSlope: {x: 0.012754213, y: 0.027998872, z: -0.63143104, w: 0.05312846} + outSlope: {x: 0.012754213, y: 0.027998872, z: -0.63143104, w: 0.05312846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.00046102228, y: -0.00038029527, z: 0.008238212, w: 0.9999659} + inSlope: {x: 0.01891436, y: 0.014796059, z: -0.49753174, w: 0.009284029} + outSlope: {x: 0.01891436, y: 0.014796059, z: -0.49753174, w: 0.009284029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.24739113, y: -0.16155969, z: 0.66509026, w: 0.6858214} + inSlope: {x: -0.16246676, y: 0.14908218, z: -0.060925484, w: 0.033973217} + outSlope: {x: -0.16246676, y: 0.14908218, z: -0.060925484, w: 0.033973217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.2604151, y: -0.15570568, z: 0.65300244, w: 0.6939218} + inSlope: {x: 0.20100257, y: -0.34213895, z: -0.047573797, w: 0.040764567} + outSlope: {x: 0.20100257, y: -0.34213895, z: -0.047573797, w: 0.040764567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.2495912, y: -0.17389917, z: 0.65081435, w: 0.6956321} + inSlope: {x: -0.18801759, y: 0.05679497, z: -0.2639287, w: 0.18206124} + outSlope: {x: -0.18801759, y: 0.05679497, z: -0.2639287, w: 0.18206124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.27608323, y: -0.15097277, z: 0.6310084, w: 0.7090936} + inSlope: {x: -0.62308997, y: 0.5268298, z: -0.513786, w: 0.32673594} + outSlope: {x: -0.62308997, y: 0.5268298, z: -0.513786, w: 0.32673594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.3967246, y: -0.045817323, z: 0.46243435, w: 0.7916216} + inSlope: {x: -0.17983988, y: 0.1861428, z: -0.41428918, w: 0.16451876} + outSlope: {x: -0.17983988, y: 0.1861428, z: -0.41428918, w: 0.16451876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3981296, y: -0.04319185, z: 0.46197262, w: 0.7913334} + inSlope: {x: 0.46587265, y: 0.10551407, z: 0.84416264, w: -0.27508867} + outSlope: {x: 0.46587265, y: 0.10551407, z: 0.84416264, w: -0.27508867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: -0.36816567, y: -0.03414888, z: 0.5105847, w: 0.77626747} + inSlope: {x: 0.20602515, y: 1.4078557, z: 0.7078487, w: -0.373046} + outSlope: {x: 0.20602515, y: 1.4078557, z: 0.7078487, w: -0.373046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.38096082, y: 0.07412936, z: 0.52096003, w: 0.7602462} + inSlope: {x: -0.1083371, y: 2.534566, z: 0.092406884, w: -0.3532642} + outSlope: {x: -0.1083371, y: 2.534566, z: 0.092406884, w: -0.3532642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.37719375, y: 0.17706488, z: 0.5182853, w: 0.7468288} + inSlope: {x: 0.80693364, y: 1.6734014, z: -0.14602584, w: 0.14969437} + outSlope: {x: 0.80693364, y: 1.6734014, z: -0.14602584, w: 0.14969437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.31371632, y: 0.21357954, z: 0.5087912, w: 0.77272075} + inSlope: {x: 1.8920792, y: 0.49479, z: -0.5827529, w: 0.95907116} + outSlope: {x: 1.8920792, y: 0.49479, z: -0.5827529, w: 0.95907116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.21952054, y: 0.21829739, z: 0.46972257, w: 0.82675135} + inSlope: {x: 2.1802185, y: -0.032336973, z: -1.0883061, w: 1.2113173} + outSlope: {x: 2.1802185, y: -0.032336973, z: -1.0883061, w: 1.2113173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.1320315, y: 0.21088478, z: 0.41809905, w: 0.87366384} + inSlope: {x: 1.7730865, y: -0.38320774, z: -0.92879593, w: 0.8536308} + outSlope: {x: 1.7730865, y: -0.38320774, z: -0.92879593, w: 0.8536308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: -0.071763255, y: 0.1863634, z: 0.39232287, w: 0.8978873} + inSlope: {x: 1.11602, y: -0.9581022, z: -0.15424639, w: 0.36313596} + outSlope: {x: 1.11602, y: -0.9581022, z: -0.15424639, w: 0.36313596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03902984, y: 0.13104297, z: 0.40524516, w: 0.9039252} + inSlope: {x: 0.8314017, y: -1.6651832, z: 0.87166595, w: -0.1660847} + outSlope: {x: 0.8314017, y: -1.6651832, z: 0.87166595, w: -0.1660847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.0024797413, y: 0.047598027, z: 0.4649618, w: 0.88404685} + inSlope: {x: 1.0067337, y: -2.0910363, z: 1.9855323, w: -1.0216409} + outSlope: {x: 1.0067337, y: -2.0910363, z: 1.9855323, w: -1.0216409} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.044864662, y: -0.043210126, z: 0.5707062, w: 0.81878847} + inSlope: {x: 0.96069497, y: -1.8936617, z: 2.8017926, w: -2.1742487} + outSlope: {x: 0.96069497, y: -1.8936617, z: 2.8017926, w: -2.1742487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.0775781, y: -0.11020697, z: 0.6984443, w: 0.70285964} + inSlope: {x: 0.34522152, y: -1.3010844, z: 2.7286649, w: -2.8837972} + outSlope: {x: 0.34522152, y: -1.3010844, z: 2.7286649, w: -2.8837972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.07363308, y: -0.15163384, z: 0.798095, w: 0.5784719} + inSlope: {x: -0.25042874, y: -1.0181065, z: 1.8266141, w: -2.6156926} + outSlope: {x: -0.25042874, y: -1.0181065, z: 1.8266141, w: -2.6156926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.056709044, y: -0.19504921, z: 0.8506623, w: 0.4848851} + inSlope: {x: -0.040060446, y: -1.2708058, z: 0.8725592, w: -1.9877148} + outSlope: {x: -0.040060446, y: -1.2708058, z: 0.8725592, w: -1.9877148} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.061660055, y: -0.3113855, z: 0.87734914, w: 0.35985503} + inSlope: {x: -1.2676772, y: -0.8384979, z: 0.100300185, w: -0.8209956} + outSlope: {x: -1.2676772, y: -0.8384979, z: 0.100300185, w: -0.8209956} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.035344966, y: -0.32740915, z: 0.87916654, w: 0.34441277} + inSlope: {x: -2.3389812, y: -0.31057328, z: -0.114486806, w: -0.24174201} + outSlope: {x: -2.3389812, y: -0.31057328, z: -0.114486806, w: -0.24174201} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: -0.13325484, y: -0.3372666, z: 0.8678086, w: 0.33970988} + inSlope: {x: -2.5069637, y: 0.013117783, z: -0.54631454, w: 0.33935156} + outSlope: {x: -2.5069637, y: 0.013117783, z: -0.54631454, w: 0.33935156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: -0.24425872, y: -0.32631597, z: 0.8336403, w: 0.37269214} + inSlope: {x: -2.2839067, y: 0.4178195, z: -1.0245492, w: 1.1764777} + outSlope: {x: -2.2839067, y: 0.4178195, z: -1.0245492, w: 1.1764777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: -0.32358053, y: -0.3024483, z: 0.78242946, w: 0.43774968} + inSlope: {x: -1.0197978, y: 0.38075638, z: -1.1026114, w: 1.5828428} + outSlope: {x: -1.0197978, y: 0.38075638, z: -1.1026114, w: 1.5828428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: -0.3100546, y: -0.28917408, z: 0.7040272, w: 0.5697282} + inSlope: {x: 0.3462439, y: 0.31571472, z: -0.95138705, w: 1.5240948} + outSlope: {x: 0.3462439, y: 0.31571472, z: -0.95138705, w: 1.5240948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.3003881, y: -0.26827675, z: 0.6624738, w: 0.63160354} + inSlope: {x: 1.0383773, y: -0.25998676, z: -0.5856326, w: 0.97798944} + outSlope: {x: 1.0383773, y: -0.25998676, z: -0.5856326, w: 0.97798944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: -0.22352324, y: -0.31083962, z: 0.6552245, w: 0.65122724} + inSlope: {x: 2.1073837, y: -1.3037953, z: -0.10862593, w: 0.15492693} + outSlope: {x: 2.1073837, y: -1.3037953, z: -0.10862593, w: 0.15492693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: -0.12477267, y: -0.37692645, z: 0.65342164, w: 0.6445141} + inSlope: {x: 2.2269154, y: -1.4310899, z: -0.108462855, w: -0.26311114} + outSlope: {x: 2.2269154, y: -1.4310899, z: -0.108462855, w: -0.26311114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: -0.03794687, y: -0.4300972, z: 0.64618593, w: 0.6293013} + inSlope: {x: 1.4527035, y: -0.6920356, z: -0.17670125, w: -0.11460196} + outSlope: {x: 1.4527035, y: -0.6920356, z: -0.17670125, w: -0.11460196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: -0.007831115, y: -0.40373427, z: 0.6372965, w: 0.6563463} + inSlope: {x: -0.25949478, y: 0.84555113, z: 0.013760867, w: 0.495888} + outSlope: {x: -0.25949478, y: 0.84555113, z: 0.013760867, w: 0.495888} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: -0.06991119, y: -0.29906005, z: 0.6494319, w: 0.6956391} + inSlope: {x: -0.4405334, y: 0.43592608, z: 0.07162921, w: 0.084478006} + outSlope: {x: -0.4405334, y: 0.43592608, z: 0.07162921, w: 0.084478006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.08472324, y: -0.28903466, z: 0.6515068, w: 0.6962901} + inSlope: {x: -0.012729061, y: 0.003659967, z: 0.004669194, w: -0.0043916744} + outSlope: {x: -0.012729061, y: 0.003659967, z: 0.004669194, w: -0.0043916744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000000005980001, y: -0.35612804, z: -0.000000012458335, w: 0.93443716} + inSlope: {x: 0.0000000020812791, y: 0.4113822, z: 0.000000008215615, w: 0.15249252} + outSlope: {x: 0.0000000020812791, y: 0.4113822, z: 0.000000008215615, w: 0.15249252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.0000000056632796, y: -0.30676043, z: -0.000000011776893, w: 0.95178676} + inSlope: {x: 0.000000008046609, y: 1.0598946, z: 0.000000008544568, w: 0.3274026} + outSlope: {x: 0.000000008046609, y: 1.0598946, z: 0.000000008544568, w: 0.3274026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.0000000052227302, y: -0.25066257, z: -0.00000001140397, w: 0.96807456} + inSlope: {x: 0.00000001651013, y: 2.0061114, z: 0.000000010724808, w: 0.46108103} + outSlope: {x: 0.00000001651013, y: 2.0061114, z: 0.000000010724808, w: 0.46108103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.0000000042874353, y: -0.13958448, z: -0.000000010883159, w: 0.9902102} + inSlope: {x: 0.000000024746665, y: 3.0079503, z: 0.00000001621863, w: 0.38310522} + outSlope: {x: 0.000000024746665, y: 3.0079503, z: 0.00000001621863, w: 0.38310522} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.0000000031605079, y: -0.000000013038519, z: -0.000000010052418, w: 1} + inSlope: {x: 0.000000009639697, y: 1.6750134, z: 0.000000016430153, w: 0.11747788} + outSlope: {x: 0.000000009639697, y: 1.6750134, z: 0.000000016430153, w: 0.11747788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.000000003484127, y: -0.000000012572857, z: -0.00000000951398, w: 1} + inSlope: {x: -0.000000007766858, y: 0.00000001117589, z: 0.000000012922525, w: 0} + outSlope: {x: -0.000000007766858, y: 0.00000001117589, z: 0.000000012922525, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.000000006720317, y: -0.000000007916242, z: -0.0000000041295922, w: 1} + inSlope: {x: -0.000000007766872, y: -0.0000031700383, z: 0.000000012922505, w: 0} + outSlope: {x: -0.000000007766872, y: -0.0000031700383, z: 0.000000012922505, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: -0.0000000070439374, y: -0.0000002725519, z: -0.000000003591155, w: 1} + inSlope: {x: -0.000000014741502, y: -3.680805, z: -0.000000012430148, w: -0.57845503} + outSlope: {x: -0.000000014741502, y: -3.680805, z: -0.000000012430148, w: -0.57845503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.000000007948775, y: -0.30673346, z: -0.000000005165436, w: 0.95179546} + inSlope: {x: -0.000000006662742, y: -7.420379, z: -0.00000003768895, w: -2.5693076} + outSlope: {x: -0.000000006662742, y: -7.420379, z: -0.00000003768895, w: -2.5693076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.000000007599165, y: -0.61836505, z: -0.0000000067319, w: 0.785891} + inSlope: {x: 0.000000014623415, y: -5.407358, z: -0.000000026337458, w: -3.58539} + outSlope: {x: 0.000000014623415, y: -5.407358, z: -0.000000026337458, w: -3.58539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.0000000067301564, y: -0.75734687, z: -0.0000000073602253, w: 0.6530128} + inSlope: {x: 0.000000018588835, y: -2.3044858, z: -0.000000010412678, w: -2.4002602} + outSlope: {x: 0.000000018588835, y: -2.3044858, z: -0.000000010412678, w: -2.4002602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.0000000060500955, y: -0.81040555, z: -0.000000007599623, w: 0.5858693} + inSlope: {x: 0.0000000111904255, y: -0.64289105, z: -0.0000000022803655, w: -0.81428796} + outSlope: {x: 0.0000000111904255, y: -0.64289105, z: -0.0000000022803655, w: -0.81428796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: -0.000000005696358, y: -0.79857206, z: -0.000000007392686, w: 0.60189927} + inSlope: {x: 0.000000004430384, y: 0.11697067, z: 0.00000000238065, w: 0.15931879} + outSlope: {x: 0.000000004430384, y: 0.11697067, z: 0.00000000238065, w: 0.15931879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.000000005165144, y: -0.7862848, z: -0.000000007053358, w: 0.6178642} + inSlope: {x: -0.0000000045722084, y: 0.7190079, z: 0.000000010438225, w: 0.8777505} + outSlope: {x: -0.0000000045722084, y: 0.7190079, z: 0.000000010438225, w: 0.8777505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.0000000055511045, y: -0.742767, z: -0.000000006435079, w: 0.66955} + inSlope: {x: -0.00000001539099, y: 1.5364752, z: 0.00000002194541, w: 1.6192733} + outSlope: {x: -0.00000001539099, y: 1.5364752, z: 0.00000002194541, w: 1.6192733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.0000000064477277, y: -0.6582451, z: -0.000000005224572, w: 0.75280374} + inSlope: {x: -0.000000028593988, y: 2.7909634, z: 0.000000039942737, w: 2.286164} + outSlope: {x: -0.000000028593988, y: 2.7909634, z: 0.000000039942737, w: 2.286164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.000000007933937, y: -0.5101867, z: -0.0000000031065175, w: 0.86006373} + inSlope: {x: -0.00000004403151, y: 5.0440426, z: 0.00000007030264, w: 2.621808} + outSlope: {x: -0.00000004403151, y: 5.0440426, z: 0.00000007030264, w: 2.621808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.000000010117017, y: -0.23790862, z: 6.3397554e-10, w: 0.97128755} + inSlope: {x: -0.00000004368799, y: 6.1222377, z: 0.00000008464204, w: 1.6792359} + outSlope: {x: -0.00000004368799, y: 6.1222377, z: 0.00000008464204, w: 1.6792359} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: -0.0000000115746035, y: -0.000000009313229, z: 0.0000000039469885, w: 1} + inSlope: {x: -0.000000021374435, y: 2.8548977, z: 0.000000046217345, w: 0.34454876} + outSlope: {x: -0.000000021374435, y: 2.8548977, z: 0.000000046217345, w: 0.34454876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.000000011898222, y: -0.000000010803343, z: 0.0000000044854267, w: 1} + inSlope: {x: -0.00000000776685, y: -0.000000035762778, z: 0.000000012922529, w: 0} + outSlope: {x: -0.00000000776685, y: -0.000000035762778, z: 0.000000012922529, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: -0.000000012869078, y: -0.000000015273692, z: 0.000000006100743, w: 1} + inSlope: {x: -0.000000007766861, y: -0.0000000357628, z: 0.000000012922529, w: 0} + outSlope: {x: -0.000000007766861, y: -0.0000000357628, z: 0.000000012922529, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.000000013192698, y: -0.000000016763806, z: 0.000000006639181, w: 1} + inSlope: {x: 0.0000000021880053, y: -1.2616841, z: -0.000000004608185, w: -0.06651079} + outSlope: {x: 0.0000000021880053, y: -1.2616841, z: -0.000000004608185, w: -0.06651079} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: -0.000000012686743, y: -0.10514055, z: 0.0000000057167253, w: 0.9944574} + inSlope: {x: 0.000000036929602, y: -4.337434, z: -0.00000005336744, w: -0.8113159} + outSlope: {x: 0.000000036929602, y: -4.337434, z: -0.00000005336744, w: -0.8113159} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.000000010115232, y: -0.3614528, z: 0.0000000021918962, w: 0.9323904} + inSlope: {x: 0.000000041556696, y: -3.909625, z: -0.000000052460585, w: -1.1049367} + outSlope: {x: 0.000000041556696, y: -3.909625, z: -0.000000052460585, w: -1.1049367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: -0.0000000092236885, y: -0.43094233, z: 0.000000001345014, w: 0.90237945} + inSlope: {x: 0.000000005228563, y: -0.5266735, z: -3.1158187e-10, w: -0.21870437} + outSlope: {x: 0.000000005228563, y: -0.5266735, z: -3.1158187e-10, w: -0.21870437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: -0.00000000967952, y: -0.40534213, z: 0.0000000021659334, w: 0.9141651} + inSlope: {x: -0.000000020104306, y: 1.2090689, z: 0.000000030872314, w: 0.49843532} + outSlope: {x: -0.000000020104306, y: 1.2090689, z: 0.000000030872314, w: 0.49843532} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: -0.000000010899047, y: -0.3301866, z: 0.0000000039177066, w: 0.9439157} + inSlope: {x: -0.000000021024995, y: 1.2274554, z: 0.000000031838283, w: 0.46569914} + outSlope: {x: -0.000000021024995, y: 1.2274554, z: 0.000000031838283, w: 0.46569914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.000000011431601, y: -0.30305427, z: 0.000000004819121, w: 0.9529733} + inSlope: {x: -8.670247e-10, y: -0.13801134, z: 0.0000000069875377, w: -0.049224928} + outSlope: {x: -8.670247e-10, y: -0.13801134, z: 0.0000000069875377, w: -0.049224928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: -0.000000010075068, y: -0.4005817, z: 0.0000000037081864, w: 0.9162611} + inSlope: {x: 0.000000023483585, y: -1.4213707, z: -0.000000020562505, w: -0.623577} + outSlope: {x: 0.000000023483585, y: -1.4213707, z: -0.000000020562505, w: -0.623577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.000000007681066, y: -0.5242125, z: 0.0000000019157753, w: 0.85158753} + inSlope: {x: 0.0000000058403047, y: -0.2591946, z: 7.967367e-10, w: -0.15535584} + outSlope: {x: 0.0000000058403047, y: -0.2591946, z: 7.967367e-10, w: -0.15535584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.000000007659024, y: -0.52486336, z: 0.0000000021882907, w: 0.8511865} + inSlope: {x: 5.2900667e-10, y: -0.0156212, z: 0.0000000065403745, w: -0.0096244905} + outSlope: {x: 5.2900667e-10, y: -0.0156212, z: 0.0000000065403745, w: -0.0096244905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.10445012, y: 0.111504085, z: -0.030089512, w: 0.98780143} + inSlope: {x: 0.12050682, y: -0.4920289, z: 1.1047028, w: 0.07067728} + outSlope: {x: 0.12050682, y: -0.4920289, z: 1.1047028, w: 0.07067728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.090427935, y: 0.061825074, z: 0.085303105, w: 0.990315} + inSlope: {x: 0.3148101, y: -0.7558154, z: 1.8836565, w: -0.107184656} + outSlope: {x: 0.3148101, y: -0.7558154, z: 1.8836565, w: -0.107184656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.047310334, y: -0.005440723, z: 0.27136523, w: 0.96129763} + inSlope: {x: 0.711092, y: -0.74538594, z: 2.3936925, w: -0.65360844} + outSlope: {x: 0.711092, y: -0.74538594, z: 2.3936925, w: -0.65360844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.02380563, y: -0.0549655, z: 0.4677033, w: 0.8818536} + inSlope: {x: 0.9055609, y: -0.39714023, z: 2.1332903, w: -1.1672664} + outSlope: {x: 0.9055609, y: -0.39714023, z: 2.1332903, w: -1.1672664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: 0.12991528, y: -0.07192989, z: 0.6778014, w: 0.72009265} + inSlope: {x: 0.139929, y: 0.012324301, z: 0.22543275, w: -0.22819507} + outSlope: {x: 0.139929, y: 0.012324301, z: 0.22543275, w: -0.22819507} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 0.09704965, y: -0.058530327, z: 0.6076028, w: 0.7861135} + inSlope: {x: -0.37972778, y: 0.1953332, z: -0.9045163, w: 0.7521138} + outSlope: {x: -0.37972778, y: 0.1953332, z: -0.9045163, w: 0.7521138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.028955251, y: 0.0009907632, z: 0.3900756, w: 0.92032695} + inSlope: {x: -0.34545088, y: 0.51541734, z: -1.6134984, w: 0.6919551} + outSlope: {x: -0.34545088, y: 0.51541734, z: -1.6134984, w: 0.6919551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.0009482758, y: 0.10004192, z: 0.108961426, w: 0.98899853} + inSlope: {x: -0.001979299, y: 0.5953766, z: -1.598686, w: 0.12050694} + outSlope: {x: -0.001979299, y: 0.5953766, z: -1.598686, w: 0.12050694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.022926893, y: 0.1923751, z: -0.13606426, w: 0.9715723} + inSlope: {x: 0.025283847, y: 0.04594881, z: -0.06260615, w: -0.017645286} + outSlope: {x: 0.025283847, y: 0.04594881, z: -0.06260615, w: -0.017645286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.011034851, y: 0.16698849, z: 0.030371517, w: 0.98542917} + inSlope: {x: -0.071736194, y: -0.2879104, z: 1.8049755, w: -0.014217867} + outSlope: {x: -0.071736194, y: -0.2879104, z: 1.8049755, w: -0.014217867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.01196727, y: 0.12801859, z: 0.26593918, w: 0.95537657} + inSlope: {x: 0.090461016, y: -0.29993242, z: 1.6478513, w: -0.40901867} + outSlope: {x: 0.090461016, y: -0.29993242, z: 1.6478513, w: -0.40901867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.028142862, y: 0.09346286, z: 0.39342764, w: 0.91415936} + inSlope: {x: 0.12373082, y: -0.3056592, z: -0.0016876459, w: 0.027438663} + outSlope: {x: 0.12373082, y: -0.3056592, z: -0.0016876459, w: 0.027438663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: 0.03268676, y: 0.07918961, z: 0.37281126, w: 0.92394394} + inSlope: {x: 0.064258024, y: -0.41041827, z: -1.2114761, w: 0.4762675} + outSlope: {x: 0.064258024, y: -0.41041827, z: -1.2114761, w: 0.4762675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.027834972, y: 0.037060875, z: 0.17388526, w: 0.9836746} + inSlope: {x: -0.20870021, y: -0.49100858, z: -3.0025978, w: 0.5395236} + outSlope: {x: -0.20870021, y: -0.49100858, z: -3.0025978, w: 0.5395236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.016106028, y: 0.018343972, z: 0.042254925, w: 0.9988086} + inSlope: {x: -0.3043338, y: -0.36785427, z: -2.9644713, w: 0.16346905} + outSlope: {x: -0.3043338, y: -0.36785427, z: -2.9644713, w: 0.16346905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: -0.0070689907, y: 0.0011869977, z: -0.14362621, w: 0.989606} + inSlope: {x: -0.1388307, y: -0.07558562, z: -0.83739364, w: -0.09128389} + outSlope: {x: -0.1388307, y: -0.07558562, z: -0.83739364, w: -0.09128389} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.009095408, y: 0.00010755321, z: -0.14293686, w: 0.98969} + inSlope: {x: -0.012357261, y: -0.0041469336, z: 0.86069125, w: 0.093269885} + outSlope: {x: -0.012357261, y: -0.0041469336, z: 0.86069125, w: 0.093269885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: -0.008098759, y: 0.00084142236, z: -0.071901806, w: 0.9973785} + inSlope: {x: 0.014880027, y: 0.02332057, z: 2.0767345, w: 0.11787828} + outSlope: {x: 0.014880027, y: 0.02332057, z: 2.0767345, w: 0.11787828} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.007855404, y: 0.0020509344, z: 0.030124385, w: 0.9995132} + inSlope: {x: 0.0030356264, y: 0.021750035, z: 2.3244836, w: -0.058308423} + outSlope: {x: 0.0030356264, y: 0.021750035, z: 2.3244836, w: -0.058308423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.00784579, y: 0.0026539236, z: 0.121804975, w: 0.9925195} + inSlope: {x: 0.00023073725, y: 0.014471755, z: 2.2003362, w: -0.16784923} + outSlope: {x: 0.00023073725, y: 0.014471755, z: 2.2003362, w: -0.16784923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.54871535, y: -0.18880542, z: -0.0663666, w: 0.8117016} + inSlope: {x: 0.07980251, y: 0.09758985, z: -0.50155145, w: 0.02875328} + outSlope: {x: 0.07980251, y: 0.09758985, z: -0.50155145, w: 0.02875328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.52063274, y: -0.15432562, z: -0.19865336, w: 0.81588113} + inSlope: {x: 0.3201413, y: 0.31006315, z: -1.0272608, w: 0.011353969} + outSlope: {x: 0.3201413, y: 0.31006315, z: -1.0272608, w: 0.011353969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: -0.39318255, y: -0.055297527, z: -0.3566262, w: 0.84567577} + inSlope: {x: 0.65972286, y: 0.38577786, z: 0.3435159, w: 0.47156593} + outSlope: {x: 0.65972286, y: 0.38577786, z: 0.3435159, w: 0.47156593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.2936614, y: -0.052342683, z: -0.1678844, w: 0.9395946} + inSlope: {x: 0.49664545, y: -0.60977644, z: 1.7328038, w: 0.42131072} + outSlope: {x: 0.49664545, y: -0.60977644, z: 1.7328038, w: 0.42131072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2528804, y: -0.10361139, z: 0.0036096205, w: 0.9619268} + inSlope: {x: 0.62283975, y: -0.16141848, z: 2.4236856, w: 0.12256616} + outSlope: {x: 0.62283975, y: -0.16141848, z: 2.4236856, w: 0.12256616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.16527788, y: -0.07160844, z: 0.20464288, w: 0.962121} + inSlope: {x: 1.5871845, y: 0.76907974, z: 1.855689, w: -0.052707203} + outSlope: {x: 1.5871845, y: 0.76907974, z: 1.855689, w: -0.052707203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.0031379878, y: 0.0042794636, z: 0.2803541, w: 0.959882} + inSlope: {x: 2.0361354, y: 0.7971262, z: -0.102229, w: 0.03682569} + outSlope: {x: 2.0361354, y: 0.7971262, z: -0.102229, w: 0.03682569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: 0.18893301, y: 0.029607302, z: 0.14872007, w: 0.9702113} + inSlope: {x: 0.6515982, y: -0.6946235, z: -1.1583827, w: 0.08042337} + outSlope: {x: 0.6515982, y: -0.6946235, z: -1.1583827, w: 0.08042337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.19631013, y: -0.12652355, z: 0.06583827, w: 0.9701131} + inSlope: {x: -0.20699665, y: -1.2991133, z: -0.24823828, w: -0.107636794} + outSlope: {x: -0.20699665, y: -1.2991133, z: -0.24823828, w: -0.107636794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.027794989, y: -0.35423002, z: 0.06764587, w: 0.93229425} + inSlope: {x: -1.0213792, y: -0.47105178, z: -0.28804374, w: -0.12762463} + outSlope: {x: -1.0213792, y: -0.47105178, z: -0.28804374, w: -0.12762463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: -0.13788325, y: -0.36132598, z: -0.0828403, w: 0.9184603} + inSlope: {x: -0.37400305, y: 0.37168545, z: -0.9106922, w: 0.009015106} + outSlope: {x: -0.37400305, y: 0.37168545, z: -0.9106922, w: 0.009015106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: -0.16580434, y: -0.25221518, z: -0.19609003, w: 0.9329765} + inSlope: {x: -0.1456169, y: 0.7954215, z: -0.302436, w: 0.12791502} + outSlope: {x: -0.1456169, y: 0.7954215, z: -0.302436, w: 0.12791502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: -0.18353507, y: -0.19922611, z: -0.20329635, w: 0.94090086} + inSlope: {x: -0.32522923, y: -0.009621799, z: 0.14397304, w: -0.03654541} + outSlope: {x: -0.32522923, y: -0.009621799, z: 0.14397304, w: -0.03654541} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.21706058, y: -0.2747015, z: -0.17467934, w: 0.92027766} + inSlope: {x: -0.3172184, y: -1.3468051, z: 0.3972568, w: -0.40423867} + outSlope: {x: -0.3172184, y: -1.3468051, z: 0.3972568, w: -0.40423867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.22800973, y: -0.36955884, z: -0.15123318, w: 0.8880126} + inSlope: {x: -0.019099314, y: -0.45012587, z: 0.09796044, w: -0.16504112} + outSlope: {x: -0.019099314, y: -0.45012587, z: 0.09796044, w: -0.16504112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.22803624, y: -0.37079906, z: -0.15097, w: 0.8875335} + inSlope: {x: -0.00063622056, y: -0.029765395, z: 0.0063164295, w: -0.011498462} + outSlope: {x: -0.00063622056, y: -0.029765395, z: 0.0063164295, w: -0.011498462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.096479885, w: 0.9953349} + 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.4166667 + value: {x: 0, y: -0, z: -0.096271366, w: 0.9953551} + inSlope: {x: 0, y: 0, z: 0.029003445, w: 0.002775908} + outSlope: {x: 0, y: 0, z: 0.029003445, w: 0.002775908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0, y: -0, z: -0.0003149418, w: 0.99999994} + inSlope: {x: 0, y: 0, z: 0.07808307, w: 0.00021314611} + outSlope: {x: 0, y: 0, z: 0.07808307, w: 0.00021314611} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + 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: 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} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 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} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 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} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.001972887, y: 0.003350157, z: -0.002097815} + inSlope: {x: -0.0004448855, y: -0.0008529639, z: 0.0009245503} + outSlope: {x: -0.0004448855, y: -0.0008529639, z: 0.0009245503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: -0.002520363, y: 0.0023658222, z: -0.0010881149} + inSlope: {x: -0.00067041704, y: -0.0012099277, z: 0.0015588012} + outSlope: {x: -0.0004826901, y: -0.0008841844, z: 0.0013441438} + tangentMode: 0 + weightedMode: 0 + 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.002551543, y: 0.002282424, z: -0.0009866136} + inSlope: {x: -0.00026563153, y: -0.001117372, z: 0.0010918874} + outSlope: {x: -0.000019290466, y: 0.0038815676, z: 0.00080196693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: -0.0025523468, y: 0.0024441557, z: -0.00095319835} + inSlope: {x: -0.000019290466, y: 0.0038815676, z: 0.00080196693} + outSlope: {x: 0.0017109553, y: 0.017617626, z: 0.0006255051} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.002481057, y: 0.003178224, z: -0.00092713564} + inSlope: {x: 0.0017109553, y: 0.017617626, z: 0.0006255051} + outSlope: {x: 0.0045212866, y: 0.0356816, z: 0.00058832974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.0022926698, y: 0.004664958, z: -0.0009026219} + inSlope: {x: 0.0045212866, y: 0.0356816, z: 0.00058832974} + outSlope: {x: 0.006755286, y: 0.04688049, z: 0.0005522906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: -0.0020112, y: 0.00661831, z: -0.0008796098} + inSlope: {x: 0.006755286, y: 0.04688049, z: 0.0005522906} + outSlope: {x: 0.008412862, y: 0.05002655, z: 0.0005173889} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.0016606639, y: 0.00870275, z: -0.00085805194} + inSlope: {x: 0.008412862, y: 0.05002655, z: 0.0005173889} + outSlope: {x: 0.009494081, y: 0.045119952, z: 0.00048361992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.0012650769, y: 0.01058275, z: -0.0008379011} + inSlope: {x: 0.009494081, y: 0.045119952, z: 0.00048361992} + outSlope: {x: 0.009998916, y: 0.03216099, z: 0.00045099063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: -0.0008484559, y: 0.01192279, z: -0.0008191098} + inSlope: {x: 0.009998916, y: 0.03216099, z: 0.00045099063} + outSlope: {x: 0.009927353, y: 0.01439543, z: 0.0004194937} + tangentMode: 0 + weightedMode: 0 + 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.000434816, y: 0.0125226, z: -0.0008016309} + inSlope: {x: 0.009927353, y: 0.01439543, z: 0.0004194937} + outSlope: {x: 0.009279427, y: 0.0004264931, z: 0.00038913346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: -0.00004817354, y: 0.01254037, z: -0.00078541704} + inSlope: {x: 0.009279427, y: 0.0004264931, z: 0.00038913346} + outSlope: {x: 0.008035606, y: -0.008692543, z: 0.00035990885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.000286644, y: 0.01217818, z: -0.00077042077} + inSlope: {x: 0.008035606, y: -0.008692543, z: 0.00035990885} + outSlope: {x: 0.0066396086, y: -0.01605433, z: 0.0003318235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.0005632941, y: 0.01150925, z: -0.0007565948} + inSlope: {x: 0.0066396086, y: -0.01605433, z: 0.0003318235} + outSlope: {x: 0.0053326506, y: -0.023134338, z: 0.00030486553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: 0.00078548765, y: 0.01054532, z: -0.0007438921} + inSlope: {x: 0.0053326506, y: -0.023134338, z: 0.00030486553} + outSlope: {x: 0.004114753, y: -0.027575072, z: 0.0002790511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.000956936, y: 0.0093963565, z: -0.00073226495} + inSlope: {x: 0.004114753, y: -0.027575072, z: 0.0002790511} + outSlope: {x: 0.0029859382, y: -0.029377341, z: 0.00025436663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.00108135, y: 0.0081723025, z: -0.0007216663} + inSlope: {x: 0.0029859382, y: -0.029377341, z: 0.00025436663} + outSlope: {x: 0.001946209, y: -0.028540717, z: 0.00023081861} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2916666 + value: {x: 0.0011624419, y: 0.0069831065, z: -0.0007120489} + inSlope: {x: 0.001946209, y: -0.028540717, z: 0.00023081861} + outSlope: {x: 0.0009954947, y: -0.025065131, z: 0.00020841083} + tangentMode: 0 + weightedMode: 0 + 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.0012039209, y: 0.005938724, z: -0.00070336513} + inSlope: {x: 0.0009954947, y: -0.025065131, z: 0.00020841083} + outSlope: {x: 0.000133896, y: -0.021239996, z: 0.00018713433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.0012095, y: 0.005053725, z: -0.00069556787} + inSlope: {x: 0.000133896, y: -0.021239996, z: 0.00018713433} + outSlope: {x: -0.0006386399, y: -0.018598534, z: 0.00016699628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4166666 + value: {x: 0.00118289, y: 0.004278787, z: -0.00068860967} + inSlope: {x: -0.0006386399, y: -0.018598534, z: 0.00016699628} + outSlope: {x: -0.0013221334, y: -0.015618359, z: 0.00014798791} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.001127801, y: 0.0036280209, z: -0.0006824435} + inSlope: {x: -0.0013221334, y: -0.015618359, z: 0.00014798791} + outSlope: {x: -0.0020831788, y: -0.0122997, z: 0.00013012481} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.001041002, y: 0.0031155339, z: -0.0006770216} + inSlope: {x: -0.0020831788, y: -0.0122997, z: 0.00013012481} + outSlope: {x: -0.002830797, y: -0.008642407, z: 0.00011339139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5416666 + value: {x: 0.0009230522, y: 0.0027554338, z: -0.000672297} + inSlope: {x: -0.002830797, y: -0.008642407, z: 0.00011339139} + outSlope: {x: -0.0033528819, y: -0.004646414, z: 0.000097791366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.0007833485, y: 0.002561833, z: -0.0006682224} + inSlope: {x: -0.0033528819, y: -0.004646414, z: 0.000097791366} + outSlope: {x: -0.0036494422, y: -0.0003118804, z: 0.00008333095} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: 0.00063128857, y: 0.0025488378, z: -0.00066475023} + inSlope: {x: -0.0036494422, y: -0.0003118804, z: 0.00008333095} + outSlope: {x: -0.003720459, y: 0.0027896215, z: 0.00007000393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.00032768902, y: 0.002829541, z: -0.00065942435} + inSlope: {x: -0.0035659273, y: 0.003947246, z: 0.000057817586} + outSlope: {x: -0.0031858736, y: 0.004377319, z: 0.0000467581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.0001949444, y: 0.003011929, z: -0.0006574761} + inSlope: {x: -0.0031858736, y: 0.004377319, z: 0.0000467581} + outSlope: {x: -0.0025802844, y: 0.0040797866, z: 0.00003684107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7916666 + value: {x: 0.00008743266, y: 0.00318192, z: -0.0006559411} + inSlope: {x: -0.0025802844, y: 0.0040797866, z: 0.00003684107} + outSlope: {x: -0.0017491385, y: 0.0030546437, z: 0.000024234605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.00001455175, y: 0.003309197, z: -0.0006549313} + inSlope: {x: -0.0017491385, y: 0.0030546437, z: 0.000024234605} + outSlope: {x: -0.0006924769, y: 0.001301924, z: 0.000024234676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.0000143014295, y: 0.0033634438, z: -0.0006539215} + inSlope: {x: -0.0006924769, y: 0.001301924, z: 0.000024234676} + outSlope: {x: -0.000050041013, y: 0.000011444102, z: 0.0000088977895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9166666 + value: {x: -0.00001638647, y: 0.0033639206, z: -0.0006535508} + inSlope: {x: -0.000050041013, y: 0.000011444102, z: 0.0000088977895} + outSlope: {x: 0.000005560069, y: 0.000011436917, z: 0.000008899552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.0000161548, y: 0.0033643972, z: -0.00065317994} + inSlope: {x: 0.000005560069, y: 0.000011436917, z: 0.000008899552} + outSlope: {x: 0.000027800674, y: 0.000011444102, z: 0.0000088977895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.00001499644, y: 0.003364874, z: -0.0006528092} + inSlope: {x: 0.000027800674, y: 0.000011444102, z: 0.0000088977895} + outSlope: {x: 0.000027800674, y: 0.000011444102, z: 0.0000088977895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00015192288, y: -0.0012886261, z: -0.0002976164} + inSlope: {x: 0.0000700964, y: 0.000041763782, z: -0.00018466114} + outSlope: {x: 0.0000700964, y: 0.000041763782, z: -0.00018466114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.00015484357, y: -0.001286886, z: -0.00030531062} + inSlope: {x: 0.0000700964, y: 0.000041763782, z: -0.00018466114} + outSlope: {x: 0.000055713503, y: 0.00006773114, z: -0.00034556864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.00015946044, y: -0.0012801301, z: -0.00033934906} + inSlope: {x: 0.000055091237, y: 0.000094410185, z: -0.00047135356} + outSlope: {x: 0.000068181296, y: 0.00012177585, z: -0.00056201214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.00017191136, y: -0.0012613678, z: -0.0004150793} + inSlope: {x: 0.00013561604, y: 0.00017866371, z: -0.00063796155} + outSlope: {x: 0.00018993978, y: 0.00020810013, z: -0.0006232454} + tangentMode: 0 + weightedMode: 0 + 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.00019057444, y: -0.001242768, z: -0.00046493977} + inSlope: {x: 0.0002579743, y: 0.00023829269, z: -0.00057340594} + outSlope: {x: 0.00033979304, y: 0.0002691633, z: -0.00048844464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: 0.00022287059, y: -0.001219023, z: -0.00050063984} + inSlope: {x: 0.00043531458, y: 0.0003007168, z: -0.00036835676} + outSlope: {x: 0.0005446124, y: 0.00033300323, z: -0.00021314254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.00024556278, y: -0.001205148, z: -0.00050952076} + inSlope: {x: 0.0005446124, y: 0.00033300323, z: -0.00021314254} + outSlope: {x: 0.0006676042, y: 0.00036597677, z: -0.000022805933} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.0002733796, y: -0.0011898989, z: -0.000510471} + inSlope: {x: 0.0006676042, y: 0.00036597677, z: -0.000022805933} + outSlope: {x: 0.0008043597, y: 0.00039962213, z: 0.00020265688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.00030689462, y: -0.0011732479, z: -0.000502027} + inSlope: {x: 0.0008043597, y: 0.00039962213, z: 0.00020265688} + outSlope: {x: 0.0009548431, y: 0.00043402115, z: 0.00046324654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.0003466797, y: -0.0011551637, z: -0.00048272504} + inSlope: {x: 0.0009548431, y: 0.00043402115, z: 0.00046324654} + outSlope: {x: 0.0013585525, y: 0.000469043, z: 0.00075895747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.0004032861, y: -0.0011356203, z: -0.0004511018} + inSlope: {x: 0.0013585525, y: 0.000469043, z: 0.00075895747} + outSlope: {x: 0.0018192404, y: 0.0005048452, z: 0.0012912148} + tangentMode: 0 + weightedMode: 0 + 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.00047908782, y: -0.0011145851, z: -0.00039730116} + inSlope: {x: 0.0018192404, y: 0.0005048452, z: 0.0012912148} + outSlope: {x: 0.0019992401, y: 0.0005412792, z: 0.0019353693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: 0.0005623894, y: -0.0010920318, z: -0.00031666085} + inSlope: {x: 0.0019992401, y: 0.0005412792, z: 0.0019353693} + outSlope: {x: 0.0018986043, y: 0.00057843776, z: 0.0024276464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.00064149796, y: -0.0010679303, z: -0.00021550886} + inSlope: {x: 0.0018986043, y: 0.00057843776, z: 0.0024276464} + outSlope: {x: 0.0015173034, y: 0.0006163195, z: 0.0027680616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.000704719, y: -0.0010422502, z: -0.0001001729} + inSlope: {x: 0.0015173034, y: 0.0006163195, z: 0.0027680616} + outSlope: {x: 0.0008553054, y: 0.00052260206, z: 0.0029566123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: 0.0007403566, y: -0.0010204752, z: 0.000023019164} + inSlope: {x: 0.0008553054, y: 0.00052260206, z: 0.0029566123} + outSlope: {x: -0.000087262946, y: 0.0003116922, z: 0.0029932866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.0007367207, y: -0.001007488, z: 0.0001477395} + inSlope: {x: -0.000087262946, y: 0.0003116922, z: 0.0029932866} + outSlope: {x: -0.0013105553, y: 0.00012299532, z: 0.0028781018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.0006821142, y: -0.0010023632, z: 0.00026766045} + inSlope: {x: -0.0013105553, y: 0.00012299532, z: 0.0028781018} + outSlope: {x: -0.002255468, y: -0.0000434107, z: 0.0026110497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: 0.00058813643, y: -0.0010041719, z: 0.0003764541} + inSlope: {x: -0.002255468, y: -0.0000434107, z: 0.0026110497} + outSlope: {x: -0.0026328042, y: -0.00018763472, z: 0.002192122} + tangentMode: 0 + weightedMode: 0 + 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.00047843624, y: -0.00101199, z: 0.00046779256} + inSlope: {x: -0.0026328042, y: -0.00018763472, z: 0.002192122} + outSlope: {x: -0.002857282, y: -0.00030959875, z: 0.0016213413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: 0.00035938292, y: -0.00102489, z: 0.0005353484} + inSlope: {x: -0.002857282, y: -0.00030959875, z: 0.0016213413} + outSlope: {x: -0.0029287364, y: -0.00040934185, z: 0.00089867954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.00023735201, y: -0.0010419459, z: 0.0005727934} + inSlope: {x: -0.0029287364, y: -0.00040934185, z: 0.00089867954} + outSlope: {x: -0.0028472291, y: -0.0004868178, z: 0.00002415421} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.000118717566, y: -0.00106223, z: 0.0005737998} + inSlope: {x: -0.0028472291, y: -0.0004868178, z: 0.00002415421} + outSlope: {x: -0.002612792, y: -0.000542066, z: -0.00047025247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: 0.000009851347, y: -0.0010848161, z: 0.000554206} + inSlope: {x: -0.002612792, y: -0.000542066, z: -0.00047025247} + outSlope: {x: -0.0022253264, y: -0.0005751092, z: -0.0004811802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.00008287076, y: -0.001108779, z: 0.0005341568} + inSlope: {x: -0.0022253264, y: -0.0005751092, z: -0.0004811802} + outSlope: {x: -0.0016849096, y: -0.0005858647, z: -0.0004889028} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.00015307526, y: -0.00113319, z: 0.00051378587} + inSlope: {x: -0.0016849096, y: -0.0005858647, z: -0.0004889028} + outSlope: {x: -0.0009915506, y: -0.00057441526, z: -0.0004934286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2916666 + value: {x: -0.00019438984, y: -0.001157124, z: 0.0004932264} + inSlope: {x: -0.0009915506, y: -0.00057441526, z: -0.0004934286} + outSlope: {x: -0.00014521272, y: -0.000540743, z: -0.00049474504} + tangentMode: 0 + weightedMode: 0 + 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.00020044038, y: -0.001179655, z: 0.00047261195} + inSlope: {x: -0.00014521272, y: -0.000540743, z: -0.00049474504} + outSlope: {x: 0.0003962534, y: -0.00048480078, z: -0.00049287785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: -0.00018392983, y: -0.001199855, z: 0.00045207542} + inSlope: {x: 0.0003962534, y: -0.00048480078, z: -0.00049287785} + outSlope: {x: 0.00051819294, y: -0.0004066322, z: -0.0004877959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4166666 + value: {x: -0.00016233847, y: -0.001216798, z: 0.00043175058} + inSlope: {x: 0.00051819294, y: -0.0004066322, z: -0.0004877959} + outSlope: {x: 0.0006213115, y: -0.00030621828, z: -0.00047951902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: -0.00013645046, y: -0.0012295571, z: 0.0004117706} + inSlope: {x: 0.0006213115, y: -0.00030621828, z: -0.00047951902} + outSlope: {x: 0.00070560153, y: -0.00022562407, z: -0.00046803697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.000107050415, y: -0.0012389581, z: 0.00039226908} + inSlope: {x: 0.00070560153, y: -0.00022562407, z: -0.00046803697} + outSlope: {x: 0.0007710429, y: -0.00018247085, z: -0.00045336707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5416666 + value: {x: -0.00007492366, y: -0.0012465611, z: 0.0003733788} + inSlope: {x: 0.0007710429, y: -0.00018247085, z: -0.00045336707} + outSlope: {x: 0.00081764144, y: -0.00014356765, z: -0.00043548443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.000040855197, y: -0.001252543, z: 0.00035523358} + inSlope: {x: 0.00081764144, y: -0.00014356765, z: -0.00043548443} + outSlope: {x: 0.00084538944, y: -0.00010886203, z: -0.00041440706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: -0.0000056306712, y: -0.001257079, z: 0.00033796663} + inSlope: {x: 0.00084538944, y: -0.00010886203, z: -0.00041440706} + outSlope: {x: 0.0008542945, y: -0.00007841356, z: -0.00039012945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.00006514679, y: -0.0012620621, z: 0.00030660097} + inSlope: {x: 0.00084436376, y: -0.000041184347, z: -0.00036264645} + outSlope: {x: 0.0008156041, y: -0.000041180887, z: -0.00033196836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.00009913026, y: -0.0012637781, z: 0.00029276896} + inSlope: {x: 0.0008156041, y: -0.000041180887, z: -0.00033196836} + outSlope: {x: 0.00076798734, y: 0.000007267005, z: -0.00029809205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7916666 + value: {x: 0.00013112971, y: -0.0012634753, z: 0.00028034847} + inSlope: {x: 0.00076798734, y: 0.000007267005, z: -0.00029809205} + outSlope: {x: 0.0007015351, y: 0.00000727056, z: -0.00026100973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.00016036039, y: -0.0012631722, z: 0.00026947304} + inSlope: {x: 0.0007015351, y: 0.00000727056, z: -0.00026100973} + outSlope: {x: 0.00061622425, y: 0.000007267005, z: -0.00022073259} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.00018603637, y: -0.0012628695, z: 0.00026027585} + inSlope: {x: 0.00061622425, y: 0.000007267005, z: -0.00022073259} + outSlope: {x: 0.0005120954, y: 0.000007267005, z: -0.00017724589} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9166666 + value: {x: 0.00020737367, y: -0.0012625668, z: 0.0002528906} + inSlope: {x: 0.0005120954, y: 0.000007267005, z: -0.00017724589} + outSlope: {x: 0.00038911268, y: 0.00000727056, z: -0.00013057147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.00022358673, y: -0.0012622637, z: 0.00024745014} + inSlope: {x: 0.00038911268, y: 0.00000727056, z: -0.00013057147} + outSlope: {x: 0.000247278, y: 0.000007267005, z: -0.00008068628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.00023388996, y: -0.001261961, z: 0.00024408821} + inSlope: {x: 0.000247278, y: 0.000007267005, z: -0.00008068628} + outSlope: {x: 0.000247278, y: 0.000007267005, z: -0.00008068628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000021829073, y: -0.00299883, z: -0.000053091226} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.000021829073, y: -0.00299883, z: -0.000053091226} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000019311508, y: -0.0025961702, z: 0.00038391186} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.000019311508, y: -0.0025961702, z: 0.00038391186} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00051767746, y: 0.0012037568, z: -0.000053728967} + inSlope: {x: -0.00009534269, y: 0.000073421, z: -0.000027247666} + outSlope: {x: -0.00009534269, y: 0.000073421, z: -0.000027247666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.00051370484, y: 0.0012068159, z: -0.000054864286} + inSlope: {x: -0.00009534269, y: 0.000073421, z: -0.000027247666} + outSlope: {x: -0.000069313646, y: 0.00011186063, z: 0.0000090837475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.00050826464, y: 0.0012174959, z: -0.000054107306} + inSlope: {x: -0.00006125182, y: 0.00014445842, z: 0.000009083748} + outSlope: {x: -0.00007117956, y: 0.00017114279, z: 0.000045322173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.00050117075, y: 0.0012326249, z: -0.00004932627} + inSlope: {x: -0.00009907367, y: 0.00019195322, z: 0.00006942274} + outSlope: {x: -0.0001449546, y: 0.00020692704, z: 0.00009347676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.00049513095, y: 0.0012412469, z: -0.000045431403} + inSlope: {x: -0.0001449546, y: 0.00020692704, z: 0.00009347676} + outSlope: {x: -0.0002087975, y: 0.0002159751, z: 0.00011748078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: 0.00048643106, y: 0.0012502458, z: -0.00004053637} + inSlope: {x: -0.0002087975, y: 0.0002159751, z: 0.00011748078} + outSlope: {x: -0.00029059398, y: 0.00021919358, z: 0.00014144175} + tangentMode: 0 + weightedMode: 0 + 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.000474323, y: 0.0012593789, z: -0.000034642962} + inSlope: {x: -0.00029059398, y: 0.00021919358, z: 0.00014144175} + outSlope: {x: -0.00039038307, y: 0.00021650438, z: 0.00016535642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.00045805704, y: 0.0012683999, z: -0.000027753114} + inSlope: {x: -0.00039038307, y: 0.00021650438, z: 0.00016535642} + outSlope: {x: -0.00050814997, y: 0.00020793562, z: 0.00018922452} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: 0.00043688412, y: 0.0012770639, z: -0.000019868761} + inSlope: {x: -0.00050814997, y: 0.00020793562, z: 0.00018922452} + outSlope: {x: -0.00064388453, y: 0.00019353737, z: 0.00021304598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.0004100556, y: 0.001285128, z: -0.000010991841} + inSlope: {x: -0.00064388453, y: 0.00019353737, z: 0.00021304598} + outSlope: {x: -0.0007975828, y: 0.00017320279, z: 0.0002368248} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.00037682298, y: 0.0012923448, z: -0.0000011241435} + inSlope: {x: -0.0007975828, y: 0.00017320279, z: 0.0002368248} + outSlope: {x: -0.0009692578, y: 0.00014704934, z: 0.0002605568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.00033643722, y: 0.0012984718, z: 0.0000097323955} + inSlope: {x: -0.0009692578, y: 0.00014704934, z: 0.0002605568} + outSlope: {x: -0.0011588992, y: 0.00011496674, z: 0.0002842411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.0002881498, y: 0.0013032621, z: 0.000021575763} + inSlope: {x: -0.0011588992, y: 0.00011496674, z: 0.0002842411} + outSlope: {x: -0.0013665264, y: 0.00007705804, z: 0.00030788168} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.00023121118, y: 0.0013064728, z: 0.000034404173} + inSlope: {x: -0.0013665264, y: 0.00007705804, z: 0.00030788168} + outSlope: {x: -0.001690963, y: 0.00000840425, z: 0.0003314708} + tangentMode: 0 + weightedMode: 0 + 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.00016075435, y: 0.001306823, z: 0.00004821546} + inSlope: {x: -0.001690963, y: 0.00000840425, z: 0.0003314708} + outSlope: {x: -0.0019211357, y: 0.000008400687, z: -0.00003684822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: 0.00008070711, y: 0.001307173, z: 0.00004668012} + inSlope: {x: -0.0019211357, y: 0.000008400687, z: -0.00003684822} + outSlope: {x: -0.001852639, y: -0.00007200118, z: -0.0006878486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.0000035137816, y: 0.001304173, z: 0.00001801975} + inSlope: {x: -0.001852639, y: -0.00007200118, z: -0.0006878486} + outSlope: {x: -0.0014854654, y: -0.00013342017, z: -0.0011750412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.00005838064, y: 0.0012986138, z: -0.000030940322} + inSlope: {x: -0.0014854654, y: -0.00013342017, z: -0.0011750412} + outSlope: {x: -0.00081960036, y: -0.0002007367, z: -0.0014984211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: -0.00009253062, y: 0.0012902498, z: -0.000093374474} + inSlope: {x: -0.00081960036, y: -0.0002007367, z: -0.0014984211} + outSlope: {x: 0.00014492415, y: -0.0002739106, z: -0.0016579889} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.00008649211, y: 0.0012788369, z: -0.00016245738} + inSlope: {x: 0.00014492415, y: -0.0002739106, z: -0.0016579889} + outSlope: {x: 0.0014081044, y: -0.0003529678, z: -0.0016537491} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.000027821061, y: 0.0012641299, z: -0.00023136362} + inSlope: {x: 0.0014081044, y: -0.0003529678, z: -0.0016537491} + outSlope: {x: 0.0023009165, y: -0.00043792644, z: -0.0014856985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: 0.00006805037, y: 0.001245883, z: -0.00029326766} + inSlope: {x: 0.0023009165, y: -0.00043792644, z: -0.0014856985} + outSlope: {x: 0.0025455314, y: -0.0005287203, z: -0.0011538393} + tangentMode: 0 + weightedMode: 0 + 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.00017411423, y: 0.0012238529, z: -0.0003413443} + inSlope: {x: 0.0025455314, y: -0.0005287203, z: -0.0011538393} + outSlope: {x: 0.0026721954, y: -0.00062539335, z: -0.0006581628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: 0.0002854556, y: 0.0011977949, z: -0.00036876774} + inSlope: {x: 0.0026721954, y: -0.00062539335, z: -0.0006581628} + outSlope: {x: 0.0026808614, y: -0.000727968, z: 0.0000013142799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.00039715838, y: 0.0011674628, z: -0.000368713} + inSlope: {x: 0.0026808614, y: -0.000727968, z: 0.0000013142799} + outSlope: {x: 0.00257164, y: -0.0008363994, z: 0.00082460843} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.00050430995, y: 0.0011326129, z: -0.00033435432} + inSlope: {x: 0.00257164, y: -0.0008363994, z: 0.00082460843} + outSlope: {x: 0.002344394, y: -0.00095070986, z: 0.0012009852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: 0.00060199294, y: 0.001093, z: -0.00028431334} + inSlope: {x: 0.002344394, y: -0.00095070986, z: 0.0012009852} + outSlope: {x: 0.0019992674, y: -0.0008885033, z: 0.0010287969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.0006852959, y: 0.0010559789, z: -0.00024144672} + inSlope: {x: 0.0019992674, y: -0.0008885033, z: 0.0010287969} + outSlope: {x: 0.0015361187, y: -0.0006590909, z: 0.0008679708} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.00074930076, y: 0.0010285169, z: -0.00020528129} + inSlope: {x: 0.0015361187, y: -0.0006590909, z: 0.0008679708} + outSlope: {x: 0.0009550336, y: -0.00044956728, z: 0.00071848935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2916666 + value: {x: 0.0007890938, y: 0.0010097849, z: -0.00017534426} + inSlope: {x: 0.0009550336, y: -0.00044956728, z: 0.00071848935} + outSlope: {x: 0.00025601636, y: -0.00025990733, z: 0.00058035203} + tangentMode: 0 + weightedMode: 0 + 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.00079976115, y: 0.0009989555, z: -0.0001511629} + inSlope: {x: 0.00025601636, y: -0.00025990733, z: 0.00058035203} + outSlope: {x: -0.00019370574, y: -0.00009014376, z: 0.00045357985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.0007916901, y: 0.0009951994, z: -0.00013226374} + inSlope: {x: -0.00019370574, y: -0.00009014376, z: 0.00045357985} + outSlope: {x: -0.0003048834, y: 0.000059745365, z: 0.00033814463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4166666 + value: {x: 0.00077898666, y: 0.0009976889, z: -0.0001181744} + inSlope: {x: -0.0003048834, y: 0.000059745365, z: 0.00033814463} + outSlope: {x: -0.00040020986, y: 0.00018974805, z: 0.00023406878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.0007623112, y: 0.001005595, z: -0.00010842152} + inSlope: {x: -0.00040020986, y: 0.00018974805, z: 0.00023406878} + outSlope: {x: -0.00047965095, y: 0.0002998784, z: 0.0001413418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.0007423258, y: 0.0010180899, z: -0.00010253228} + inSlope: {x: -0.00047965095, y: 0.0002998784, z: 0.0001413418} + outSlope: {x: -0.00054323545, y: 0.00039014732, z: 0.00005996352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5416666 + value: {x: 0.000719691, y: 0.0010343461, z: -0.0001000338} + inSlope: {x: -0.00054323545, y: 0.00039014732, z: 0.00005996352} + outSlope: {x: -0.00059095386, y: 0.00046050755, z: -0.000010060053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.00069506787, y: 0.0010535339, z: -0.00010045297} + inSlope: {x: -0.00059095386, y: 0.00046050755, z: -0.000010060053} + outSlope: {x: -0.0006228202, y: 0.0005109863, z: -0.00006873614} + tangentMode: 0 + weightedMode: 0 + 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.00064250064, y: 0.0010973919, z: -0.000108152926} + inSlope: {x: -0.0006387937, y: 0.00054160645, z: -0.00011606287} + outSlope: {x: -0.0006389269, y: 0.0005523355, z: -0.00015203447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.0004930655, y: 0.0012214959, z: -0.00015748858} + inSlope: {x: -0.00030644448, y: 0.00019924842, z: -0.0001295111} + outSlope: {x: -0.00019550908, y: 0.000070849725, z: -0.00008603283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.00048491932, y: 0.001224448, z: -0.00016107327} + inSlope: {x: -0.00019550908, y: 0.000070849725, z: -0.00008603283} + outSlope: {x: -0.00019550908, y: 0.000070849725, z: -0.00008603283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0029990699, y: -0.00000016082078, z: 0.000054637287} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.0029990699, y: -0.00000016082078, z: 0.000054637287} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0003556071, y: 0.000036823545, z: -0.0026000002} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.0003556071, y: 0.000036823545, z: -0.0026000002} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000011850606, y: 4.8516993e-11, z: -0.00006796107} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.000011850606, y: 4.8516993e-11, z: -0.00006796107} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0028583305, y: 1.3038516e-10, z: -0.0001424275} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.0028583305, y: 1.3038516e-10, z: -0.0001424275} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014556205, y: -0.0014599595, z: -0.00012458181} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.0014556205, y: -0.0014599595, z: -0.00012458181} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0027749701, y: 0.00000016904436, z: -0.0000054337643} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.0027749701, y: 0.00000016904436, z: -0.0000054337643} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0020982698, y: -0.00000016944483, z: 0.0000054343045} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.0020982698, y: -0.00000016944483, z: 0.0000054343045} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014555801, y: 0.0014553501, z: -0.00012458232} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.0014555801, y: 0.0014553501, z: -0.00012458232} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00279524, y: 1.4901161e-10, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.00279524, y: 1.4901161e-10, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00200266, y: -7.4505804e-11, z: 1.3038516e-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} + - serializedVersion: 3 + time: 2 + value: {x: 0.00200266, y: -7.4505804e-11, z: 1.3038516e-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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0027371899, y: -7.4505804e-11, z: -0.00019367944} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.0027371899, y: -7.4505804e-11, z: -0.00019367944} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.000047508467, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0, y: 0.000047508467, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.013613639, y: -0.0010463829, z: 0.004070008} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.013613639, y: -0.0010463829, z: 0.004070008} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.013613639, y: -0.0010463829, z: -0.004080487} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.013613639, y: -0.0010463829, z: -0.004080487} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.9999998, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.99999994, y: 0.9999998, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 0.9999998, z: 0.99999976} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.9999999, y: 0.9999998, z: 0.99999976} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 1, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.9999999, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.99999994, y: 0.9999999, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000001, y: 1.0000001, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 1.0000001, y: 1.0000001, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.99999994, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.9999999, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 1, y: 0.9999999, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000001, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 1.0000001, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1.0000001, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 1, y: 1.0000001, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999998, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.9999998, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.99999994, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 24 + 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: 2 + 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/Resources/Models/Games/Airboarder/Animations/duck.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/duck.anim.meta new file mode 100644 index 000000000..06ef2dd98 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/duck.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1b4429b24dbe1444780def62339b9adc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/floor.meta b/Assets/Resources/Models/Games/Airboarder/Animations/floor.meta new file mode 100644 index 000000000..4b7f50f66 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/floor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7ce8dc5a498dacf42b299a80bc1e25b7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/floor/floor_model.controller b/Assets/Resources/Models/Games/Airboarder/Animations/floor/floor_model.controller new file mode 100644 index 000000000..be115746c --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/floor/floor_model.controller @@ -0,0 +1,101 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-6080643361020602365 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: idle + 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: a3c3d7ae64d4c8543b3b96d02c7012c9, 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: floor_model + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 5882784978711017385} + 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 &5882784978711017385 +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: 8319201655781956344} + m_Position: {x: 300, y: 110, z: 0} + - serializedVersion: 1 + m_State: {fileID: -6080643361020602365} + m_Position: {x: 256.64032, y: 225.3553, 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: -6080643361020602365} +--- !u!1102 &8319201655781956344 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: moving + 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: 16f742123c5b86941b00ec3aef1b7fec, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/floor/floor_model.controller.meta b/Assets/Resources/Models/Games/Airboarder/Animations/floor/floor_model.controller.meta new file mode 100644 index 000000000..f9c28162e --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/floor/floor_model.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 46c60c07fc359a4479c6d02795a8c62e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/floor/idle.anim b/Assets/Resources/Models/Games/Airboarder/Animations/floor/idle.anim new file mode 100644 index 000000000..c044b95f6 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/floor/idle.anim @@ -0,0 +1,53 @@ +%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: idle + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 60 + 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 + 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/Resources/Models/Games/Airboarder/Animations/floor/idle.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/floor/idle.anim.meta new file mode 100644 index 000000000..835f973f2 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/floor/idle.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a3c3d7ae64d4c8543b3b96d02c7012c9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/floor/move.anim b/Assets/Resources/Models/Games/Airboarder/Animations/floor/move.anim new file mode 100644 index 000000000..9e8237f10 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/floor/move.anim @@ -0,0 +1,169 @@ +%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: move + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -5, y: -0.93000007, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 300, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 20, y: -0.93000007, z: 0} + inSlope: {x: 300, y: -0, z: -0} + outSlope: {x: 299.99997, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 0 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.083333336 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5 + inSlope: 0 + outSlope: 300 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 20 + inSlope: 300 + outSlope: 299.99997 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.93000007 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.93000007 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/floor/move.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/floor/move.anim.meta new file mode 100644 index 000000000..9cb61d486 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/floor/move.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 16f742123c5b86941b00ec3aef1b7fec +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/hit1.anim b/Assets/Resources/Models/Games/Airboarder/Animations/hit1.anim new file mode 100644 index 000000000..5ab3200e7 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/hit1.anim @@ -0,0 +1,34058 @@ +%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: hit1 + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: 4.125 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 4.125 + 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: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.7071081, w: 0.7071055} + 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: 4.125 + value: {x: 0, y: 0, z: -0.7071081, w: 0.7071055} + 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: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.31590325, y: -0.1753519, z: 0.56630915, w: 0.7407772} + inSlope: {x: 0.114056826, y: 0.07909083, z: 0.085817814, w: 0.0010056496} + outSlope: {x: 0.114056826, y: 0.07909083, z: 0.085817814, w: 0.0010056496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.2768783, y: -0.14779104, z: 0.59493977, w: 0.7399614} + inSlope: {x: 0.57785726, y: 0.41296667, z: 0.42617154, w: -0.048866984} + outSlope: {x: 0.57785726, y: 0.41296667, z: 0.42617154, w: -0.048866984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.112037145, y: -0.030446185, z: 0.7090526, w: 0.6955322} + inSlope: {x: 0.813995, y: 0.5888485, z: 0.51339996, w: -0.36357602} + outSlope: {x: 0.813995, y: 0.5888485, z: 0.51339996, w: -0.36357602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.03355196, y: 0.030257534, z: 0.7832538, w: 0.62005824} + inSlope: {x: 0.08057261, y: -0.36472565, z: 0.08402398, w: -0.093940295} + outSlope: {x: 0.08057261, y: -0.36472565, z: 0.08402398, w: -0.093940295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.03357827, y: -0.1635339, z: 0.77289075, w: 0.61218387} + inSlope: {x: -0.4684781, y: -0.742672, z: -0.14062351, w: -0.04644797} + outSlope: {x: -0.4684781, y: -0.742672, z: -0.14062351, w: -0.04644797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.15013169, y: -0.28929853, z: 0.7412615, w: 0.58676934} + inSlope: {x: -0.25705558, y: -0.03731866, z: -0.04317495, w: -0.028412735} + outSlope: {x: -0.25705558, y: -0.03731866, z: -0.04317495, w: -0.028412735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: -0.17464542, y: -0.26988885, z: 0.7360788, w: 0.5956905} + inSlope: {x: -0.2238074, y: 0.20154499, z: -0.068513624, w: 0.1100871} + outSlope: {x: -0.2238074, y: 0.20154499, z: -0.068513624, w: 0.1100871} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1854263, y: -0.26249674, z: 0.73247606, w: 0.60015947} + inSlope: {x: -0.43991005, y: -0.03368143, z: -0.16062155, w: 0.0387154} + outSlope: {x: -0.43991005, y: -0.03368143, z: -0.16062155, w: 0.0387154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: -0.23821981, y: -0.2832488, z: 0.71259993, w: 0.5960058} + inSlope: {x: -0.6672269, y: -0.2634765, z: -0.26388994, w: -0.0780122} + outSlope: {x: -0.6672269, y: -0.2634765, z: -0.26388994, w: -0.0780122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: -0.42473492, y: -0.3486544, z: 0.6132983, w: 0.56736726} + inSlope: {x: -0.4477244, y: -0.07709105, z: -0.33199054, w: -0.021554252} + outSlope: {x: -0.4477244, y: -0.07709105, z: -0.33199054, w: -0.021554252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.44939166, y: -0.30562747, z: 0.5500201, w: 0.6341269} + inSlope: {x: 0.19068986, y: 0.4356287, z: -0.21801803, w: 0.530972} + outSlope: {x: 0.19068986, y: 0.4356287, z: -0.21801803, w: 0.530972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.35326606, y: -0.13641323, z: 0.41418204, w: 0.8276761} + inSlope: {x: 0.18403244, y: 0.37607586, z: -1.035946, w: 0.6563015} + outSlope: {x: 0.18403244, y: 0.37607586, z: -1.035946, w: 0.6563015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: -0.36273906, y: -0.12802929, z: 0.28285858, w: 0.8786466} + inSlope: {x: -0.3559196, y: -0.30489665, z: -0.5662142, w: -0.0045428723} + outSlope: {x: -0.3559196, y: -0.30489665, z: -0.5662142, w: -0.0045428723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.4200064, y: -0.21288529, z: 0.32990798, w: 0.8181903} + inSlope: {x: -0.08421441, y: -0.4055714, z: 0.6217159, w: -0.39704627} + outSlope: {x: -0.08421441, y: -0.4055714, z: 0.6217159, w: -0.39704627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: -0.4129358, y: -0.24140175, z: 0.39838806, w: 0.7826214} + inSlope: {x: 0.02276406, y: -0.024531823, z: 0.08638168, w: -0.039112996} + outSlope: {x: 0.02276406, y: -0.024531823, z: 0.08638168, w: -0.039112996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3 + value: {x: -0.4128638, y: -0.2413651, z: 0.39841026, w: 0.78265935} + inSlope: {x: 0.00024676346, y: 0.00012570631, z: 0.00007617481, w: 0.00013017666} + outSlope: {x: 0.00024676346, y: 0.00012570631, z: 0.00007617481, w: 0.00013017666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.41258615, y: -0.24122377, z: 0.39849585, w: 0.78280574} + inSlope: {x: 0.00024676416, y: 0.00012588549, z: 0.000076532655, w: 0.00013017704} + outSlope: {x: 0.00024676416, y: 0.00012588549, z: 0.000076532655, w: 0.00013017704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.85060865, y: -0.08955744, z: -0.06372336, w: 0.51418257} + inSlope: {x: -0.0032444, y: 0.013992727, z: 0.007861197, w: 0.008764744} + outSlope: {x: -0.0032444, y: 0.013992727, z: 0.007861197, w: 0.008764744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.8029568, y: -0.07207319, z: -0.0619954, w: 0.5884067} + inSlope: {x: -0.4804179, y: 0.07172306, z: -0.038139984, w: 0.6563322} + outSlope: {x: -0.4804179, y: 0.07172306, z: -0.038139984, w: 0.6563322} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.6664017, y: -0.04623962, z: -0.060948424, w: 0.7416576} + inSlope: {x: -0.6483771, y: 0.14713082, z: 0.06916799, w: 0.6015072} + outSlope: {x: -0.6483771, y: 0.14713082, z: 0.06916799, w: 0.6015072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0.6130701, y: -0.03554331, z: -0.05448761, w: 0.78734547} + inSlope: {x: 0.089567944, y: -0.011385044, z: 0.0026279849, w: -0.07035831} + outSlope: {x: 0.089567944, y: -0.011385044, z: 0.0026279849, w: -0.07035831} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6244915, y: -0.037935518, z: -0.05447142, w: 0.7782057} + inSlope: {x: -0.22318608, y: 0.02492528, z: 0.015637422, w: 0.18021998} + outSlope: {x: -0.22318608, y: 0.02492528, z: 0.015637422, w: 0.18021998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.5296135, y: -0.025156107, z: -0.045295734, w: 0.8466552} + inSlope: {x: -1.1281192, y: 0.102591306, z: 0.059998408, w: 0.7024803} + outSlope: {x: -1.1281192, y: 0.102591306, z: 0.059998408, w: 0.7024803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.3579608, y: -0.008361958, z: -0.026615009, w: 0.93331975} + inSlope: {x: -1.2846407, y: 0.088026255, z: 0.13002396, w: 0.50629985} + outSlope: {x: -1.2846407, y: 0.088026255, z: 0.13002396, w: 0.50629985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.30955642, y: -0.005085429, z: -0.020919789, w: 0.95063734} + inSlope: {x: -0.553356, y: 0.03603808, z: 0.057752844, w: 0.19856447} + outSlope: {x: -0.553356, y: 0.03603808, z: 0.057752844, w: 0.19856447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.31184784, y: -0.0053587877, z: -0.021802276, w: 0.9498668} + inSlope: {x: 0.17825542, y: -0.0081467675, z: -0.020899897, w: -0.060122162} + outSlope: {x: 0.17825542, y: -0.0081467675, z: -0.020899897, w: -0.060122162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.47236198, y: -0.018564707, z: -0.04221796, w: 0.8801972} + inSlope: {x: 1.244132, y: -0.15601853, z: -0.17762905, w: -0.6851477} + outSlope: {x: 1.244132, y: -0.15601853, z: -0.17762905, w: -0.6851477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.68559086, y: -0.054020863, z: -0.06579099, w: 0.7229927} + inSlope: {x: 1.141027, y: -0.22495615, z: -0.065029666, w: -1.101263} + outSlope: {x: 1.141027, y: -0.22495615, z: -0.065029666, w: -1.101263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.85700047, y: -0.088553116, z: -0.062143944, w: 0.5038321} + inSlope: {x: 0.558111, y: -0.21342099, z: 0.0069124615, w: -0.9807267} + outSlope: {x: 0.558111, y: -0.21342099, z: 0.0069124615, w: -0.9807267} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2083335 + value: {x: 0.93342066, y: -0.12276335, z: -0.053561658, w: 0.33284563} + inSlope: {x: 0.18703023, y: -0.12891406, z: 0.040010646, w: -0.56472605} + outSlope: {x: 0.18703023, y: -0.12891406, z: 0.040010646, w: -0.56472605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: 0.95104116, y: -0.12950437, z: -0.04699836, w: 0.2766596} + inSlope: {x: -0.11735608, y: 0.11040738, z: -0.030838639, w: 0.43699002} + outSlope: {x: -0.11735608, y: 0.11040738, z: -0.030838639, w: 0.43699002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: 0.8980983, y: -0.110162854, z: -0.06138269, w: 0.42132625} + inSlope: {x: -0.43316498, y: 0.14912961, z: -0.07532246, w: 0.9577092} + outSlope: {x: -0.43316498, y: 0.14912961, z: -0.07532246, w: 0.9577092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: 0.8627134, y: -0.09338542, z: -0.063438475, w: 0.49293038} + inSlope: {x: -0.05822242, y: 0.033533897, z: 0.0027526568, w: 0.11000863} + outSlope: {x: -0.05822242, y: 0.033533897, z: 0.0027526568, w: 0.11000863} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9166667 + value: {x: 0.862665, y: -0.09340799, z: -0.06339758, w: 0.49301606} + inSlope: {x: -0.00023817971, y: -0.00016361443, z: 0.0002923602, w: 0.00042271533} + outSlope: {x: -0.00023817971, y: -0.00016361443, z: 0.0002923602, w: 0.00042271533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.86238664, y: -0.093511485, z: -0.06320846, w: 0.49350744} + inSlope: {x: -0.00022029961, y: 0.00001662976, z: -0.00002127894, w: 0.00038552433} + outSlope: {x: -0.00022029961, y: 0.00001662976, z: -0.00002127894, w: 0.00038552433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.30507502, y: 0.5295725, z: 0.669985, w: 0.42142913} + inSlope: {x: -0.048851967, y: 0.0075445175, z: -0.048007965, w: 0.031188726} + outSlope: {x: -0.048851967, y: 0.0075445175, z: -0.048007965, w: 0.031188726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.34144738, y: 0.48624566, z: 0.6467569, w: 0.47820958} + inSlope: {x: -0.15213847, y: -0.59625816, z: -0.011312492, w: 0.50653476} + outSlope: {x: -0.15213847, y: -0.59625816, z: -0.011312492, w: 0.50653476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.31942728, y: 0.2946352, z: 0.66450316, w: 0.6079407} + inSlope: {x: 0.37870583, y: -0.9899038, z: 0.07278372, w: 0.6022619} + outSlope: {x: 0.37870583, y: -0.9899038, z: 0.07278372, w: 0.6022619} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24113363, y: 0.18056871, z: 0.64742315, w: 0.70006627} + inSlope: {x: 0.21990724, y: -0.068041526, z: -0.20519248, w: 0.28418744} + outSlope: {x: 0.21990724, y: -0.068041526, z: -0.20519248, w: 0.28418744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: -0.17263289, y: 0.21200985, z: 0.5970011, w: 0.7542145} + inSlope: {x: 0.38871104, y: -0.09209693, z: -0.041182987, w: 0.14655378} + outSlope: {x: 0.38871104, y: -0.09209693, z: -0.041182987, w: 0.14655378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.032052554, y: 0.10059879, z: 0.6206924, w: 0.7769128} + inSlope: {x: 0.62241715, y: -0.69928545, z: 0.17407338, w: -0.022301694} + outSlope: {x: 0.62241715, y: -0.69928545, z: 0.17407338, w: -0.022301694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.027389437, y: 0.021399157, z: 0.642331, w: 0.76563877} + inSlope: {x: 0.09653613, y: -0.30585566, z: 0.16796868, w: -0.13068807} + outSlope: {x: 0.09653613, y: -0.30585566, z: 0.16796868, w: -0.13068807} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: 0.01011557, y: 0.018514836, z: 0.6568661, w: 0.75371206} + inSlope: {x: -0.3319074, y: 0.049925406, z: 0.19080727, w: -0.1644401} + outSlope: {x: -0.3319074, y: 0.049925406, z: 0.19080727, w: -0.1644401} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.17427741, y: 0.18218525, z: 0.71819586, w: 0.6485604} + inSlope: {x: -0.6132604, y: 0.9990343, z: 0.044560447, w: -0.49822325} + outSlope: {x: -0.6132604, y: 0.9990343, z: 0.044560447, w: -0.49822325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.29897076, y: 0.47914445, z: 0.6777549, w: 0.4708348} + inSlope: {x: -0.3037755, y: 1.2057147, z: -0.33391982, w: -0.935053} + outSlope: {x: -0.3037755, y: 1.2057147, z: -0.33391982, w: -0.935053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2083335 + value: {x: -0.280008, y: 0.7018745, z: 0.59891313, w: 0.26508665} + inSlope: {x: 0.6529528, y: 0.96406895, z: -0.40458617, w: -0.9440782} + outSlope: {x: 0.6529528, y: 0.96406895, z: -0.40458617, w: -0.9440782} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: -0.11420933, y: 0.79109585, z: 0.57238394, w: 0.18303065} + inSlope: {x: 0.698106, y: -0.21862386, z: 0.35321385, w: 0.27319455} + outSlope: {x: 0.698106, y: -0.21862386, z: 0.35321385, w: 0.27319455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.101104856, y: 0.6914493, z: 0.65871835, w: 0.27886552} + inSlope: {x: -0.18395641, y: -1.121557, z: 0.7633096, w: 0.911878} + outSlope: {x: -0.18395641, y: -1.121557, z: 0.7633096, w: 0.911878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.12510529, y: 0.533718, z: 0.7407068, w: 0.3883906} + inSlope: {x: -0.048455264, y: -0.42374173, z: 0.17444125, w: 0.24805343} + outSlope: {x: -0.048455264, y: -0.42374173, z: 0.17444125, w: 0.24805343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: -0.12568058, y: 0.5243199, z: 0.7445794, w: 0.39356655} + inSlope: {x: 0.00025677631, y: -0.0002539153, z: 0.00013375256, w: 0.0001645085} + outSlope: {x: 0.00025677631, y: -0.0002539153, z: 0.00013375256, w: 0.0001645085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.12533791, y: 0.5239824, z: 0.7447582, w: 0.39378703} + inSlope: {x: 0.0002567778, y: -0.0002532015, z: 0.00013303808, w: 0.00016593997} + outSlope: {x: 0.0002567778, y: -0.0002532015, z: 0.00013303808, w: 0.00016593997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.09286303, y: 0.56734324, z: 0.07026752, w: 0.8152059} + inSlope: {x: -0.075226486, y: -0.0068764687, z: 0.012553453, w: -0.0050168037} + outSlope: {x: -0.075226486, y: -0.0068764687, z: 0.012553453, w: -0.0050168037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.12309447, y: 0.56594557, z: 0.07709313, w: 0.81154794} + inSlope: {x: -0.4699096, y: 0.15985678, z: 0.100617886, w: -0.19648789} + outSlope: {x: -0.4699096, y: 0.15985678, z: 0.100617886, w: -0.19648789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.22596635, y: 0.69814193, z: 0.09809146, w: 0.6722464} + inSlope: {x: -0.6190758, y: 1.2560483, z: 0.13192444, w: -1.5508981} + outSlope: {x: -0.6190758, y: 1.2560483, z: 0.13192444, w: -1.5508981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: -0.28470808, y: 0.850166, z: 0.10933957, w: 0.42918986} + inSlope: {x: -0.32280737, y: 0.97466385, z: -0.027540494, w: -2.1275039} + outSlope: {x: -0.32280737, y: 0.97466385, z: -0.027540494, w: -2.1275039} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.31458673, y: 0.92441815, z: 0.08472224, w: 0.19826357} + inSlope: {x: -0.16850773, y: 0.2618736, z: -0.17819999, w: -1.3644769} + outSlope: {x: -0.16850773, y: 0.2618736, z: -0.17819999, w: -1.3644769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.32412454, y: 0.93860024, z: 0.06672845, w: 0.09757124} + inSlope: {x: -0.0956365, y: 0.12493735, z: -0.53000927, w: -1.2052445} + outSlope: {x: -0.0956365, y: 0.12493735, z: -0.53000927, w: -1.2052445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.33384764, y: 0.9390806, z: -0.030287687, w: -0.07586938} + inSlope: {x: 0.07025917, y: -0.13185596, z: -0.6700892, w: -1.6340797} + outSlope: {x: 0.07025917, y: -0.13185596, z: -0.6700892, w: -1.6340797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.31383714, y: 0.92229456, z: -0.06616327, w: -0.21564187} + inSlope: {x: 0.40241626, y: -0.17497802, z: -0.035186447, w: -1.3897848} + outSlope: {x: 0.40241626, y: -0.17497802, z: -0.035186447, w: -1.3897848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.27218, y: 0.92434937, z: -0.029072868, w: -0.2658027} + inSlope: {x: 0.49372792, y: 0.2759434, z: 0.77982026, w: 0.4149229} + outSlope: {x: 0.49372792, y: 0.2759434, z: 0.77982026, w: 0.4149229} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.22054249, y: 0.96918184, z: 0.083157174, w: -0.07164178} + inSlope: {x: 0.36427957, y: 0.16972852, z: 0.81136554, w: 2.2672172} + outSlope: {x: 0.36427957, y: 0.16972852, z: 0.81136554, w: 2.2672172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.19080347, y: 0.9622849, z: 0.13979904, w: 0.13438018} + inSlope: {x: 0.34611997, y: -0.34301054, z: 0.5562984, w: 2.4371295} + outSlope: {x: 0.34611997, y: -0.34301054, z: 0.5562984, w: 2.4371295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.15669726, y: 0.9037203, z: 0.18595847, w: 0.3523565} + inSlope: {x: 0.12224584, y: -0.29208112, z: 0.1588188, w: 0.75491214} + outSlope: {x: 0.12224584, y: -0.29208112, z: 0.1588188, w: 0.75491214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: -0.15471789, y: 0.8960612, z: 0.19009702, w: 0.37013495} + inSlope: {x: -0.030058004, y: -0.038869627, z: -0.15972672, w: 0.16413286} + outSlope: {x: -0.030058004, y: -0.038869627, z: -0.15972672, w: 0.16413286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15920208, y: 0.90048116, z: 0.17264794, w: 0.36603427} + inSlope: {x: -0.17006455, y: 0.4853108, z: -0.9035794, w: -1.0209209} + outSlope: {x: -0.17006455, y: 0.4853108, z: -0.9035794, w: -1.0209209} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: -0.16888992, y: 0.9365037, z: 0.11479881, w: 0.2850583} + inSlope: {x: 0.07471997, y: 0.24647576, z: -1.1534722, w: -0.19304425} + outSlope: {x: 0.07471997, y: 0.24647576, z: -1.1534722, w: -0.19304425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: -0.15297538, y: 0.92102075, z: 0.07652524, w: 0.34994745} + inSlope: {x: 0.4549222, y: -0.42926633, z: -0.8860645, w: 1.5248344} + outSlope: {x: 0.4549222, y: -0.42926633, z: -0.8860645, w: 1.5248344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.08987467, y: 0.8251485, z: 0.002784221, w: 0.5577139} + inSlope: {x: -0.031559795, y: -0.54591584, z: 0.19454703, w: 0.8089393} + outSlope: {x: -0.031559795, y: -0.54591584, z: 0.19454703, w: 0.8089393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.1771604, y: 0.77949965, z: 0.059601527, w: 0.5978648} + inSlope: {x: -0.5324242, y: 0.15312599, z: 0.01566445, w: -0.36178315} + outSlope: {x: -0.5324242, y: 0.15312599, z: 0.01566445, w: -0.36178315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.21852058, y: 0.8329929, z: 0.011991585, w: 0.5081612} + inSlope: {x: -0.22879872, y: 0.59133947, z: -0.8490374, w: -1.0802195} + outSlope: {x: -0.22879872, y: 0.59133947, z: -0.8490374, w: -1.0802195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.25727466, y: 0.8672853, z: -0.0814371, w: 0.41832277} + inSlope: {x: -1.0657808, y: -0.39552537, z: -0.87498295, w: -0.039330512} + outSlope: {x: -1.0657808, y: -0.39552537, z: -0.87498295, w: -0.039330512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.317953, y: 0.8265539, z: -0.104758956, w: 0.4524822} + inSlope: {x: -1.4504647, y: -0.5398525, z: -0.76003504, w: -0.22178778} + outSlope: {x: -1.4504647, y: -0.5398525, z: -0.76003504, w: -0.22178778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0.37814677, y: 0.82229763, z: -0.14477341, w: 0.39984033} + inSlope: {x: -1.2959166, y: -0.25868174, z: -0.712252, w: -0.8821726} + outSlope: {x: -1.2959166, y: -0.25868174, z: -0.712252, w: -0.8821726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0833335 + value: {x: -0.42594624, y: 0.804997, z: -0.1641134, w: 0.37896767} + inSlope: {x: -1.0961757, y: -0.62524915, z: -0.19429988, w: 0.008915693} + outSlope: {x: -1.0961757, y: -0.62524915, z: -0.19429988, w: 0.008915693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0.46949467, y: 0.77019364, z: -0.16096511, w: 0.40058318} + inSlope: {x: -1.1166545, y: -0.9193953, z: 0.11820297, w: 0.4909982} + outSlope: {x: -1.1166545, y: -0.9193953, z: 0.11820297, w: 0.4909982} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.6023809, y: 0.64971966, z: -0.1316218, w: 0.4446094} + inSlope: {x: -0.7176873, y: -0.7427627, z: 0.28655, w: 0.21726564} + outSlope: {x: -0.7176873, y: -0.7427627, z: 0.28655, w: 0.21726564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.6218282, y: 0.60345566, z: -0.08190499, w: 0.49240482} + inSlope: {x: 0.52768034, y: 0.27825755, z: 0.16554268, w: 0.34313756} + outSlope: {x: 0.52768034, y: 0.27825755, z: 0.16554268, w: 0.34313756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.5102162, y: 0.6755971, z: -0.076426245, w: 0.5266945} + inSlope: {x: 0.99792325, y: 0.6454227, z: 0.01586613, w: 0.14625306} + outSlope: {x: 0.99792325, y: 0.6454227, z: 0.01586613, w: 0.14625306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: -0.41027436, y: 0.74134064, z: -0.07982321, w: 0.5250879} + inSlope: {x: 0.06964825, y: 0.05921591, z: -0.025707936, w: -0.032295875} + outSlope: {x: 0.06964825, y: 0.05921591, z: -0.025707936, w: -0.032295875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3 + value: {x: -0.40976283, y: 0.7413626, z: -0.07923257, w: 0.5255456} + inSlope: {x: 0.0017555968, y: 0.000073671414, z: 0.0020255167, w: 0.0015692725} + outSlope: {x: 0.0017555968, y: 0.000073671414, z: 0.0020255167, w: 0.0015692725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.40778738, y: 0.74144053, z: -0.076954715, w: 0.5273076} + inSlope: {x: 0.0017581054, y: 0.000062942745, z: 0.0020240026, w: 0.001563555} + outSlope: {x: 0.0017581054, y: 0.000062942745, z: 0.0020240026, w: 0.001563555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.899648, y: -0.0016581212, z: 0.43659946, w: 0.0034166982} + inSlope: {x: 0.20501804, y: 0.0021516373, z: -0.4334135, w: -0.00031848997} + outSlope: {x: 0.20501804, y: 0.0021516373, z: -0.4334135, w: -0.00031848997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.9081904, y: -0.0015684697, z: 0.41854057, w: 0.0034034278} + inSlope: {x: 0.33764076, y: 0.0033447328, z: -0.76202095, w: 0.00016151369} + outSlope: {x: 0.33764076, y: 0.0033447328, z: -0.76202095, w: 0.00016151369} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.94948554, y: -0.0011442864, z: 0.31378967, w: 0.0034624708} + inSlope: {x: 0.4676864, y: 0.0055192383, z: -1.4091872, w: 0.0005597016} + outSlope: {x: 0.4676864, y: 0.0055192383, z: -1.4091872, w: 0.0005597016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.9844648, y: -0.0006048187, z: 0.17554812, w: 0.0033918202} + inSlope: {x: -0.0387118, y: -0.00046578897, z: 0.20145473, w: -0.0013212085} + outSlope: {x: -0.0387118, y: -0.00046578897, z: 0.20145473, w: -0.0013212085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.92728305, y: -0.0012143297, z: 0.37434697, w: 0.003007988} + inSlope: {x: -0.66106164, y: -0.0048773345, z: 1.6422343, w: -0.0032619887} + outSlope: {x: -0.66106164, y: -0.0048773345, z: 1.6422343, w: -0.0032619887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.87564003, y: -0.0015179554, z: 0.48295414, w: 0.002752198} + inSlope: {x: -0.3427647, y: -0.0014684626, z: 0.64722425, w: -0.0021458222} + outSlope: {x: -0.3427647, y: -0.0014684626, z: 0.64722425, w: -0.0021458222} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.86601067, y: -0.0014960802, z: 0.5000166, w: 0.002591162} + inSlope: {x: -0.12066502, y: -0.000005435664, z: 0.2059274, w: -0.0014032417} + outSlope: {x: -0.12066502, y: -0.000005435664, z: 0.2059274, w: -0.0014032417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.81134266, y: -0.0016607038, z: 0.5845641, w: 0.0023049684} + inSlope: {x: -0.75536835, y: -0.002256544, z: 1.043303, w: -0.003123023} + outSlope: {x: -0.75536835, y: -0.002256544, z: 1.043303, w: -0.003123023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.764683, y: -0.0017658256, z: 0.6444008, w: 0.0020954316} + inSlope: {x: 0.2892555, y: 0.0017609712, z: -0.37214285, w: -0.00016096729} + outSlope: {x: 0.2892555, y: 0.0017609712, z: -0.37214285, w: -0.00016096729} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: 0.86552364, y: -0.0013220006, z: 0.5008611, w: 0.0022845166} + inSlope: {x: 1.5056387, y: 0.0076458184, z: -2.673634, w: 0.0029288665} + outSlope: {x: 1.5056387, y: 0.0076458184, z: -2.673634, w: 0.0029288665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.92691755, y: -0.00097158185, z: 0.37525606, w: 0.0023999088} + inSlope: {x: 1.2232709, y: 0.0081562735, z: -2.9743285, w: 0.0020600846} + outSlope: {x: 1.2232709, y: 0.0081562735, z: -2.9743285, w: 0.0020600846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.986706, y: -0.0004043608, z: 0.16249648, w: 0.0024553805} + inSlope: {x: 0.31615978, y: 0.0044581457, z: -1.7031561, w: -0.00039786418} + outSlope: {x: 0.31615978, y: 0.0044581457, z: -1.7031561, w: -0.00039786418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.99452347, y: -0.00024947288, z: 0.104486585, w: 0.002374585} + inSlope: {x: -0.055923775, y: -0.00087046984, z: 0.4299024, w: -0.0013328423} + outSlope: {x: -0.055923775, y: -0.00087046984, z: 0.4299024, w: -0.0013328423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.973166, y: -0.00052621524, z: 0.23009287, w: 0.002225623} + inSlope: {x: -0.5920774, y: -0.005050854, z: 2.3375502, w: -0.002519196} + outSlope: {x: -0.5920774, y: -0.005050854, z: 2.3375502, w: -0.002519196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.9398094, y: -0.0007642429, z: 0.34169188, w: 0.0021020316} + inSlope: {x: -1.1747582, y: -0.0063738422, z: 3.0424526, w: -0.0037440208} + outSlope: {x: -1.1747582, y: -0.0063738422, z: 3.0424526, w: -0.0037440208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.8752695, y: -0.0010573689, z: 0.48363066, w: 0.0019136212} + inSlope: {x: -3.306207, y: -0.009986923, z: 4.8693395, w: -0.008198425} + outSlope: {x: -3.306207, y: -0.009986923, z: 4.8693395, w: -0.008198425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.6642924, y: -0.0015964857, z: 0.7474698, w: 0.0014188301} + inSlope: {x: -2.5317266, y: -0.0060179327, z: 3.1660733, w: -0.0063387337} + outSlope: {x: -2.5317266, y: -0.0060179327, z: 3.1660733, w: -0.0063387337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: 0.66429245, y: -0.0015588627, z: 0.74746984, w: 0.0013853938} + inSlope: {x: 0.0000014305108, y: 0.00090295123, z: 0.0000021457672, w: -0.0008024719} + outSlope: {x: 0.0000014305108, y: 0.00090295123, z: 0.0000021457672, w: -0.0008024719} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.6642932, y: -0.0011448108, z: 0.7474706, w: 0.0010174171} + inSlope: {x: 0.000003576276, y: 0.0009029526, z: 0.00000071525847, w: -0.0008024691} + outSlope: {x: 0.000003576276, y: 0.0009029526, z: 0.00000071525847, w: -0.0008024691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: 0.6642934, y: -0.0011071876, z: 0.74747056, w: 0.0009839808} + inSlope: {x: 0.8697525, y: 0.002127793, z: -0.85597813, w: 0.00044207432} + outSlope: {x: 0.8697525, y: 0.002127793, z: -0.85597813, w: 0.00044207432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.73677254, y: -0.0009674948, z: 0.6761392, w: 0.0010542565} + inSlope: {x: 3.0501432, y: 0.00673497, z: -4.2238398, w: 0.0034070597} + outSlope: {x: 3.0501432, y: 0.00673497, z: -4.2238398, w: 0.0034070597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.91847175, y: -0.00054594065, z: 0.39548424, w: 0.0012679022} + inSlope: {x: 2.615872, y: 0.0068635894, z: -4.5452456, w: 0.0025882365} + outSlope: {x: 2.615872, y: 0.0068635894, z: -4.5452456, w: 0.0025882365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.95476174, y: -0.00039552915, z: 0.2973688, w: 0.0012699426} + inSlope: {x: 0.6722926, y: 0.003105152, z: -2.0530033, w: -0.00024911948} + outSlope: {x: 0.6722926, y: 0.003105152, z: -2.0530033, w: -0.00024911948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0833335 + value: {x: 0.97449625, y: -0.0002871775, z: 0.22440031, w: 0.0012471422} + inSlope: {x: 0.44201195, y: 0.0028378284, z: -2.016025, w: -0.0006099211} + outSlope: {x: 0.44201195, y: 0.0028378284, z: -2.016025, w: -0.0006099211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: 0.99916905, y: -0.000048031525, z: 0.04074062, w: 0.001178135} + inSlope: {x: 0.09407598, y: 0.0023632867, z: -1.9552615, w: -0.0010932509} + outSlope: {x: 0.09407598, y: 0.0023632867, z: -1.9552615, w: -0.0010932509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2916667 + value: {x: 0.9919525, y: 0.0001301558, z: -0.12660688, w: 0.0010197087} + inSlope: {x: -0.1087766, y: 0.00074947614, z: -0.87409806, w: -0.0013097691} + outSlope: {x: -0.1087766, y: 0.00074947614, z: -0.87409806, w: -0.0013097691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.9821692, y: 0.00013646364, z: -0.18799776, w: 0.0007129035} + inSlope: {x: 0.07691559, y: -0.0005201631, z: 0.40933686, w: -0.0011312265} + outSlope: {x: 0.07691559, y: -0.0005201631, z: 0.40933686, w: -0.0011312265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: 0.9933732, y: 0.000060274346, z: -0.11493214, w: 0.0005209023} + inSlope: {x: 0.012017711, y: -0.00014986437, z: 0.100844935, w: -0.00079317146} + outSlope: {x: 0.012017711, y: -0.00014986437, z: 0.100844935, w: -0.00079317146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3 + value: {x: 0.99346644, y: 0.00004641694, z: -0.114123814, w: 0.00040400855} + inSlope: {x: 0, y: -0.000046136047, z: 0, w: -0.00040162663} + outSlope: {x: 0, y: -0.000046136047, z: 0, w: -0.00040162663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99346656, y: -0.000005372092, z: -0.11412381, w: -0.00004682912} + inSlope: {x: 0, y: -0.000045953817, z: 0, w: -0.00040004056} + outSlope: {x: 0, y: -0.000045953817, z: 0, w: -0.00040004056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.48744905, y: 0.5753929, z: 0.3594173, w: 0.54966867} + inSlope: {x: 0.158216, y: 0.17769098, z: 0.17545724, w: -0.16476917} + outSlope: {x: 0.158216, y: 0.17769098, z: 0.17545724, w: -0.16476917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.4630668, y: 0.60162634, z: 0.38526985, w: 0.524578} + inSlope: {x: 0.52126586, y: 0.5209222, z: 0.51477563, w: -0.5288136} + outSlope: {x: 0.52126586, y: 0.5209222, z: 0.51477563, w: -0.5288136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.3764135, y: 0.6754704, z: 0.46043795, w: 0.43594682} + inSlope: {x: 0.6880589, y: 0.49632454, z: 0.5650023, w: -0.7616211} + outSlope: {x: 0.6880589, y: 0.49632454, z: 0.5650023, w: -0.7616211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.34101003, y: 0.6944242, z: 0.52522254, w: 0.35444105} + inSlope: {x: -0.44129336, y: -0.31451645, z: 0.11694719, w: 0.006489821} + outSlope: {x: -0.44129336, y: -0.31451645, z: 0.11694719, w: 0.006489821} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -0.4319851, y: 0.6297271, z: 0.5088434, w: 0.3973802} + inSlope: {x: -0.6628264, y: -0.5211832, z: -0.29882163, w: 0.4992531} + outSlope: {x: -0.6628264, y: -0.5211832, z: -0.29882163, w: 0.4992531} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.454902, y: 0.61031324, z: 0.49609447, w: 0.41769868} + inSlope: {x: -0.5578556, y: -0.43567568, z: -0.19424298, w: 0.26864815} + outSlope: {x: -0.5578556, y: -0.43567568, z: -0.19424298, w: 0.26864815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.50155026, y: 0.5862739, z: 0.48248038, w: 0.41465998} + inSlope: {x: -0.5137973, y: -0.06556544, z: -0.38255382, w: -0.08587186} + outSlope: {x: -0.5137973, y: -0.06556544, z: -0.38255382, w: -0.08587186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.56599337, y: 0.5837494, z: 0.3977802, w: 0.42504004} + inSlope: {x: -0.6016768, y: -0.23248315, z: -0.88062227, w: 0.32925904} + outSlope: {x: -0.6016768, y: -0.23248315, z: -0.88062227, w: 0.32925904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.6197313, y: 0.54692227, z: 0.3213437, w: 0.46211186} + inSlope: {x: -0.58429325, y: -0.53611577, z: -0.70537627, w: 0.3611162} + outSlope: {x: -0.58429325, y: -0.53611577, z: -0.70537627, w: 0.3611162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.6406093, y: 0.5254522, z: 0.29930314, w: 0.47322032} + inSlope: {x: -0.30696723, y: -0.31054136, z: -0.1787999, w: 0.059802346} + outSlope: {x: -0.30696723, y: -0.31054136, z: -0.1787999, w: 0.059802346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6132087, y: 0.5496607, z: 0.3593639, w: 0.43898287} + inSlope: {x: 0.6437912, y: 0.40969977, z: 0.5594497, w: -0.07135994} + outSlope: {x: 0.6437912, y: 0.40969977, z: 0.5594497, w: -0.07135994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.5487178, y: 0.56597, z: 0.37967417, w: 0.48418415} + inSlope: {x: 0.666074, y: -0.33395824, z: -0.25460482, w: 1.2938462} + outSlope: {x: 0.666074, y: -0.33395824, z: -0.25460482, w: 1.2938462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.5167873, y: 0.46914405, z: 0.31529653, w: 0.6429797} + inSlope: {x: 0.08811356, y: -2.118232, z: -1.163396, w: 2.1150117} + outSlope: {x: 0.08811356, y: -2.118232, z: -1.163396, w: 2.1150117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.51848584, y: 0.3610966, z: 0.26065284, w: 0.72996014} + inSlope: {x: -0.1084014, y: -2.8967633, z: -1.3623488, w: 1.8160045} + outSlope: {x: -0.1084014, y: -2.8967633, z: -1.3623488, w: 1.8160045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.52582073, y: 0.22774734, z: 0.20176756, w: 0.79431325} + inSlope: {x: -0.21552715, y: -3.2577105, z: -1.4000442, w: 1.1610925} + outSlope: {x: -0.21552715, y: -3.2577105, z: -1.4000442, w: 1.1610925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: -0.53644645, y: 0.08962059, z: 0.14398244, w: 0.82671785} + inSlope: {x: -0.32029432, y: -3.0288317, z: -1.2834727, w: 0.4009752} + outSlope: {x: -0.32029432, y: -3.0288317, z: -1.2834727, w: 0.4009752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.55251193, y: -0.024655461, z: 0.09481145, w: 0.8277279} + inSlope: {x: -0.49842072, y: -2.9552612, z: -1.5512247, w: -0.3117581} + outSlope: {x: -0.49842072, y: -2.9552612, z: -1.5512247, w: -0.3117581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: -0.5779815, y: -0.15665093, z: 0.01471383, w: 0.80073804} + inSlope: {x: -0.53854454, y: -0.9265567, z: -0.32565284, w: -0.421893} + outSlope: {x: -0.53854454, y: -0.9265567, z: -0.32565284, w: -0.421893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: -0.59739065, y: -0.10186829, z: 0.067673884, w: 0.7925702} + inSlope: {x: -0.35881487, y: 1.6056359, z: 1.5476041, w: -0.24184006} + outSlope: {x: -0.35881487, y: 1.6056359, z: 1.5476041, w: -0.24184006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.6040356, y: 0.06985452, z: 0.23663162, w: 0.7578039} + inSlope: {x: 0.2518412, y: 2.2161715, z: 2.281141, w: -0.7307104} + outSlope: {x: 0.2518412, y: 2.2161715, z: 2.281141, w: -0.7307104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.5644609, y: 0.24302782, z: 0.42484534, w: 0.66470134} + inSlope: {x: 0.5070703, y: 1.6804056, z: 2.0242743, w: -1.438586} + outSlope: {x: 0.5070703, y: 1.6804056, z: 2.0242743, w: -1.438586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: -0.5362444, y: 0.33114034, z: 0.558725, w: 0.53908664} + inSlope: {x: 0.0028743222, y: 0.34991425, z: 0.9888522, w: -1.1740448} + outSlope: {x: 0.0028743222, y: 0.34991425, z: 0.9888522, w: -1.1740448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.5659043, y: 0.30981943, z: 0.583186, w: 0.49361756} + inSlope: {x: -0.603134, y: -0.6079948, z: -0.24994713, w: -0.028074734} + outSlope: {x: -0.603134, y: -0.6079948, z: -0.24994713, w: -0.028074734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.6489216, y: 0.20740195, z: 0.49136847, w: 0.54262525} + inSlope: {x: -0.38860288, y: -0.87304604, z: -0.8830694, w: 0.6789403} + outSlope: {x: -0.38860288, y: -0.87304604, z: -0.8830694, w: 0.6789403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: -0.6559087, y: 0.17305337, z: 0.45777053, w: 0.574702} + inSlope: {x: 0.50431895, y: -0.29582155, z: -0.13457611, w: 0.7654177} + outSlope: {x: 0.50431895, y: -0.29582155, z: -0.13457611, w: 0.7654177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.6068951, y: 0.18275008, z: 0.4801537, w: 0.6064101} + inSlope: {x: 2.4003744, y: 1.4252812, z: 1.4199048, w: 0.453283} + outSlope: {x: 2.4003744, y: 1.4252812, z: 1.4199048, w: 0.453283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.4558777, y: 0.2918267, z: 0.5760958, w: 0.6124756} + inSlope: {x: 3.0619054, y: 1.913867, z: 1.3336741, w: 0.40238944} + outSlope: {x: 3.0619054, y: 1.913867, z: 1.3336741, w: 0.40238944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0.35173625, y: 0.342239, z: 0.59129316, w: 0.6399426} + inSlope: {x: 2.160821, y: 1.0676616, z: 0.16919415, w: 0.5246262} + outSlope: {x: 2.160821, y: 1.0676616, z: 0.16919415, w: 0.5246262} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0.21367587, y: 0.41731802, z: 0.58516186, w: 0.6616448} + inSlope: {x: 1.4596101, y: 0.80888796, z: -0.26829726, w: 0.20142889} + outSlope: {x: 1.4596101, y: 0.80888796, z: -0.26829726, w: 0.20142889} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.06750718, y: 0.4819648, z: 0.5215484, w: 0.70081383} + inSlope: {x: 0.69804215, y: 0.2332986, z: -0.44911265, w: 0.2524671} + outSlope: {x: 0.69804215, y: 0.2332986, z: -0.44911265, w: 0.2524671} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.044447694, y: 0.5025361, z: 0.5153115, w: 0.69277406} + inSlope: {x: -0.34076712, y: 0.120252855, z: 0.43747246, w: -0.4427024} + outSlope: {x: -0.34076712, y: 0.120252855, z: 0.43747246, w: -0.4427024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.11946859, y: 0.5066389, z: 0.59545076, w: 0.6119499} + inSlope: {x: -0.73278785, y: -0.12909268, z: 0.63794684, w: -0.65346926} + outSlope: {x: -0.73278785, y: -0.12909268, z: 0.63794684, w: -0.65346926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.19721316, y: 0.48228484, z: 0.64526093, w: 0.55870086} + inSlope: {x: -0.29613927, y: -0.108724385, z: 0.10804418, w: -0.12956189} + outSlope: {x: -0.29613927, y: -0.108724385, z: 0.10804418, w: -0.12956189} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: -0.20286714, y: 0.48011285, z: 0.6459874, w: 0.5577068} + inSlope: {x: -0.0015166969, y: -0.00076854083, z: 0.0018339122, w: -0.0020141564} + outSlope: {x: -0.0015166969, y: -0.00076854083, z: 0.0018339122, w: -0.0020141564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.20488772, y: 0.47908342, z: 0.6484267, w: 0.5550161} + inSlope: {x: -0.0015145598, y: -0.00077605544, z: 0.0018253396, w: -0.002022751} + outSlope: {x: -0.0015145598, y: -0.00077605544, z: 0.0018253396, w: -0.002022751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.21179546, y: -0.16912827, z: 0.31227723, w: 0.910506} + inSlope: {x: -0.0024393797, y: 0.05208707, z: -0.0165689, w: 0.015851498} + outSlope: {x: -0.0024393797, y: 0.05208707, z: -0.0165689, w: 0.015851498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: 0.21488203, y: -0.07562941, z: 0.25686285, w: 0.9392164} + inSlope: {x: -0.0077301273, y: 0.34247863, z: -0.23932579, w: 0.09470914} + outSlope: {x: -0.0077301273, y: 0.34247863, z: -0.23932579, w: 0.09470914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0.18355975, y: 0.045167744, z: 0.08290242, w: 0.97846454} + inSlope: {x: -0.08176765, y: -0.09402339, z: -0.22513995, w: 0.03877185} + outSlope: {x: -0.08176765, y: -0.09402339, z: -0.22513995, w: 0.03877185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: 0.020580513, y: -0.11249309, z: 0.03265261, w: 0.99290264} + inSlope: {x: -0.37586617, y: -0.27210414, z: 0.0026303064, w: -0.023014778} + outSlope: {x: -0.37586617, y: -0.27210414, z: 0.0026303064, w: -0.023014778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.05438393, y: -0.15952702, z: 0.029713703, w: 0.9852465} + inSlope: {x: -0.30279124, y: -0.18573269, z: -0.12632605, w: -0.043079115} + outSlope: {x: -0.30279124, y: -0.18573269, z: -0.12632605, w: -0.043079115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0833335 + value: {x: -0.09323751, y: -0.20436397, z: -0.079353936, w: 0.9712081} + inSlope: {x: -0.07736817, y: -0.17715177, z: -0.57173103, w: -0.08926614} + outSlope: {x: -0.07736817, y: -0.17715177, z: -0.57173103, w: -0.08926614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3333335 + value: {x: -0.09121171, y: -0.17271675, z: -0.09972447, w: 0.97565585} + inSlope: {x: 0.06401045, y: 0.43802097, z: 0.1410596, w: 0.097217664} + outSlope: {x: 0.06401045, y: 0.43802097, z: 0.1410596, w: 0.097217664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.08058676, y: -0.02915348, z: -0.04766572, w: 0.9951803} + inSlope: {x: -0.016736057, y: 0.14363676, z: 0.056144115, w: 0.0059745195} + outSlope: {x: -0.016736057, y: 0.14363676, z: 0.056144115, w: 0.0059745195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9583335 + value: {x: -0.081661865, y: -0.025836177, z: -0.046428174, w: 0.99524283} + inSlope: {x: 0, y: 0, z: 0.0000000447034, w: 0} + outSlope: {x: 0, y: 0, z: 0.0000000447034, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.081661865, y: -0.025836179, z: -0.046428163, w: 0.99524283} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.25013506, y: 0.41935945, z: -0.21182507, w: 0.8465815} + inSlope: {x: -0.017919302, y: -0.10122013, z: -0.003305912, w: 0.04371214} + outSlope: {x: -0.017919302, y: -0.10122013, z: -0.003305912, w: 0.04371214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.28737512, y: 0.29566726, z: -0.21690747, w: 0.88484323} + inSlope: {x: -0.2103953, y: -0.90936995, z: -0.018440723, w: 0.22864577} + outSlope: {x: -0.2103953, y: -0.90936995, z: -0.018440723, w: 0.22864577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.31966755, y: -0.04481837, z: -0.21542738, w: 0.9216263} + inSlope: {x: 0.058106277, y: -1.2641671, z: 0.04511098, w: -0.030251011} + outSlope: {x: 0.058106277, y: -1.2641671, z: 0.04511098, w: -0.030251011} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.26770085, y: -0.34576362, z: -0.19378443, w: 0.8781978} + inSlope: {x: 0.21299712, y: -0.6591244, z: 0.07355495, w: -0.17603305} + outSlope: {x: 0.21299712, y: -0.6591244, z: 0.07355495, w: -0.17603305} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.24320827, y: -0.39386708, z: -0.18624726, w: 0.8666201} + inSlope: {x: -0.059577465, y: 0.2612821, z: 0.0463572, w: 0.110936984} + outSlope: {x: -0.059577465, y: 0.2612821, z: 0.0463572, w: 0.110936984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.2623595, y: -0.08124651, z: -0.087502755, w: 0.95755404} + inSlope: {x: 0.1957818, y: 1.0608573, z: 0.40793607, w: 0.18012351} + outSlope: {x: 0.1957818, y: 1.0608573, z: 0.40793607, w: 0.18012351} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: -0.12861393, y: 0.21335033, z: 0.048735697, w: 0.96724606} + inSlope: {x: 0.6582924, y: 0.87028104, z: 0.46887076, w: -0.12714955} + outSlope: {x: 0.6582924, y: 0.87028104, z: 0.46887076, w: -0.12714955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.02627074, y: 0.337772, z: 0.1435341, w: 0.9298483} + inSlope: {x: 0.4581775, y: 0.6534107, z: 0.81894636, w: -0.35177383} + outSlope: {x: 0.4581775, y: 0.6534107, z: 0.81894636, w: -0.35177383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: 0.023351304, y: 0.4559639, z: 0.2774391, w: 0.84532785} + inSlope: {x: 0.07493452, y: 0.3979736, z: 0.11189046, w: -0.25087976} + outSlope: {x: 0.07493452, y: 0.3979736, z: 0.11189046, w: -0.25087976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.060376227, y: 0.51725864, z: 0.13565804, w: 0.84284943} + inSlope: {x: -0.61045, y: 0.071875915, z: -0.93915457, w: 0.062207103} + outSlope: {x: -0.61045, y: 0.071875915, z: -0.93915457, w: 0.062207103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: -0.16542502, y: 0.50973535, z: -0.042365026, w: 0.84321386} + inSlope: {x: -0.288972, y: -0.06706104, z: -0.5159907, w: -0.038353488} + outSlope: {x: -0.288972, y: -0.06706104, z: -0.5159907, w: -0.038353488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8333335 + value: {x: -0.17815554, y: 0.5061176, z: -0.06555937, w: 0.841313} + inSlope: {x: 0.000015378013, y: 0.0001430513, z: 0.00003460053, w: -0.00008082397} + outSlope: {x: 0.000015378013, y: 0.0001430513, z: 0.00003460053, w: -0.00008082397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.17813583, y: 0.5063031, z: -0.065514766, w: 0.84120905} + inSlope: {x: 0.000015020428, y: 0.0001430517, z: 0.00003451122, w: -0.00008010895} + outSlope: {x: 0.000015020428, y: 0.0001430517, z: 0.00003451122, w: -0.00008010895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.6021076, y: 0.0722471, z: 0.5922965, w: 0.5305013} + inSlope: {x: 0.49427176, y: -0.26395127, z: 0.124614716, w: 0.43735456} + outSlope: {x: 0.49427176, y: -0.26395127, z: 0.124614716, w: 0.43735456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.5815129, y: 0.061249133, z: 0.59748876, w: 0.5487244} + inSlope: {x: 0.7749753, y: -0.35573113, z: 0.019763231, w: 0.79871464} + outSlope: {x: 0.7749753, y: -0.35573113, z: 0.019763231, w: 0.79871464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.47989738, y: 0.023549262, z: 0.56721133, w: 0.6688911} + inSlope: {x: 1.4917219, y: -0.46484756, z: -0.9104097, w: 1.821938} + outSlope: {x: 1.4917219, y: -0.46484756, z: -0.9104097, w: 1.821938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.41321614, y: 0.0038655445, z: 0.51807594, w: 0.748889} + inSlope: {x: 1.6046156, y: -0.4494084, z: -1.327982, w: 1.8069553} + outSlope: {x: 1.6046156, y: -0.4494084, z: -1.327982, w: 1.8069553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.29040614, y: -0.022875762, z: 0.39981568, w: 0.8690733} + inSlope: {x: 1.1223003, y: 0.010440566, z: -1.2151439, w: 0.964812} + outSlope: {x: 1.1223003, y: 0.010440566, z: -1.2151439, w: 0.964812} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23349878, y: 0.01794466, z: 0.32597104, w: 0.9159144} + inSlope: {x: 0.263403, y: 1.0382377, z: -0.54263604, w: 0.23393947} + outSlope: {x: 0.263403, y: 1.0382377, z: -0.54263604, w: 0.23393947} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.23070413, y: 0.0734884, z: 0.3100645, w: 0.91936666} + inSlope: {x: 0.2619255, y: 0.5952014, z: -0.11301943, w: 0.075259924} + outSlope: {x: 0.2619255, y: 0.5952014, z: -0.11301943, w: 0.075259924} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.18013163, y: 0.020289449, z: 0.33076617, w: 0.92613965} + inSlope: {x: 0.73443925, y: -1.0125917, z: 0.28725284, w: 0.06949569} + outSlope: {x: 0.73443925, y: -1.0125917, z: 0.28725284, w: 0.06949569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.10252797, y: -0.06782054, z: 0.34958902, w: 0.9288035} + inSlope: {x: 0.4492767, y: -0.37671483, z: 0.03363345, w: 0.013521919} + outSlope: {x: 0.4492767, y: -0.37671483, z: 0.03363345, w: 0.013521919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: -0.051849864, y: -0.122752756, z: 0.34801033, w: 0.9279721} + inSlope: {x: 0.5511983, y: -0.9555092, z: 0.0068975757, w: -0.10753089} + outSlope: {x: 0.5511983, y: -0.9555092, z: 0.0068975757, w: -0.10753089} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.062181227, y: -0.34615162, z: 0.34402904, w: 0.8706071} + inSlope: {x: 0.7944908, y: -1.4636804, z: -0.11332585, w: -0.5966593} + outSlope: {x: 0.7944908, y: -1.4636804, z: -0.11332585, w: -0.5966593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0.23908971, y: -0.54569286, z: 0.3404018, w: 0.727449} + inSlope: {x: 1.5003202, y: -0.54017407, z: 0.4042362, w: -1.1026549} + outSlope: {x: 1.5003202, y: -0.54017407, z: 0.4042362, w: -1.1026549} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.30882904, y: -0.55638, z: 0.3663408, w: 0.678867} + inSlope: {x: 1.9480118, y: 0.20010802, z: 1.0317581, w: -1.3594112} + outSlope: {x: 1.9480118, y: 0.20010802, z: 1.0317581, w: -1.3594112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.40142387, y: -0.5290172, z: 0.42638156, w: 0.6141648} + inSlope: {x: 2.310535, y: 1.3949698, z: 2.0165977, w: -1.9187093} + outSlope: {x: 2.310535, y: 1.3949698, z: 2.0165977, w: -1.9187093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.5013737, y: -0.44013235, z: 0.53439075, w: 0.5189744} + inSlope: {x: 1.4684981, y: 2.7845073, z: 3.106215, w: -2.4529552} + outSlope: {x: 1.4684981, y: 2.7845073, z: 3.106215, w: -2.4529552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.5237989, y: -0.2969749, z: 0.6852329, w: 0.4097518} + inSlope: {x: 0.42758387, y: 2.6746001, z: 2.7023115, w: -2.6788366} + outSlope: {x: 0.42758387, y: 2.6746001, z: 2.7023115, w: -2.6788366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.53700566, y: -0.21724923, z: 0.7595832, w: 0.29573825} + inSlope: {x: -0.18191376, y: 1.4807813, z: 1.5041445, w: -2.1253715} + outSlope: {x: -0.18191376, y: 1.4807813, z: 1.5041445, w: -2.1253715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.50863934, y: -0.17357644, z: 0.8105783, w: 0.2326375} + inSlope: {x: -0.9062761, y: 0.74532163, z: 1.0665722, w: -1.0583434} + outSlope: {x: -0.9062761, y: 0.74532163, z: 1.0665722, w: -1.0583434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: 0.34307972, y: -0.14898284, z: 0.90023047, w: 0.2229026} + inSlope: {x: -1.521986, y: -0.01414437, z: 0.43804944, w: 0.54267144} + outSlope: {x: -1.521986, y: -0.01414437, z: 0.43804944, w: 0.54267144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: -0.0057910983, y: -0.105788276, z: 0.8854437, w: 0.45250946} + inSlope: {x: -1.7076509, y: 0.6461554, z: -0.7101382, w: 1.5025456} + outSlope: {x: -1.7076509, y: 0.6461554, z: -0.7101382, w: 1.5025456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.18401699, y: 0.011512635, z: 0.73932254, w: 0.64761674} + inSlope: {x: -0.9604255, y: 1.0962842, z: -1.5803723, w: 1.5165303} + outSlope: {x: -0.9604255, y: 1.0962842, z: -1.5803723, w: 1.5165303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.2383866, y: 0.1267206, z: 0.5204587, w: 0.8100842} + inSlope: {x: -0.06754059, y: 0.5811478, z: -1.6978769, w: 0.99666137} + outSlope: {x: -0.06754059, y: 0.5811478, z: -1.6978769, w: 0.99666137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0.24391954, y: 0.14324294, z: 0.31201553, w: 0.9069901} + inSlope: {x: -0.1778235, y: -0.21393205, z: -0.75137115, w: 0.24872255} + outSlope: {x: -0.1778235, y: -0.21393205, z: -0.75137115, w: 0.24872255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2083335 + value: {x: -0.30677482, y: 0.09010942, z: 0.267047, w: 0.90909594} + inSlope: {x: -0.6337171, y: -0.60508883, z: 0.29428813, w: -0.2506018} + outSlope: {x: -0.6337171, y: -0.60508883, z: 0.29428813, w: -0.2506018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.42955202, y: -0.178709, z: 0.46815962, w: 0.7512488} + inSlope: {x: 0.0025920793, y: -1.8009958, z: 1.3442609, w: -1.2781081} + outSlope: {x: 0.0025920793, y: -1.8009958, z: 1.3442609, w: -1.2781081} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: -0.42156762, y: -0.2556886, z: 0.52502084, w: 0.693727} + inSlope: {x: 0.8857813, y: -2.344891, z: 1.64413, w: -1.7427799} + outSlope: {x: 0.8857813, y: -2.344891, z: 1.64413, w: -1.7427799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.35573715, y: -0.3741163, z: 0.60517025, w: 0.60601735} + inSlope: {x: 1.8491049, y: -2.6153655, z: 1.7689755, w: -2.301287} + outSlope: {x: 1.8491049, y: -2.6153655, z: 1.7689755, w: -2.301287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.26747563, y: -0.47363546, z: 0.6724353, w: 0.50195324} + inSlope: {x: 1.7955052, y: -1.8097008, z: 1.2731428, w: -2.2368774} + outSlope: {x: 1.7955052, y: -1.8097008, z: 1.2731428, w: -2.2368774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: -0.20611143, y: -0.524925, z: 0.7112657, w: 0.41961053} + inSlope: {x: 1.2481425, y: -0.95726585, z: 0.7359904, w: -1.7200639} + outSlope: {x: 1.2481425, y: -0.95726585, z: 0.7359904, w: -1.7200639} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.13884072, y: -0.56757885, z: 0.7454816, w: 0.32067847} + inSlope: {x: 0.39645565, y: -0.22624211, z: 0.18070187, w: -0.6092944} + outSlope: {x: 0.39645565, y: -0.22624211, z: 0.18070187, w: -0.6092944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: -0.13042752, y: -0.57222766, z: 0.7488529, w: 0.30783674} + inSlope: {x: -0.000021278818, y: 0.0004012577, z: 0.0003197187, w: -0.000039338993} + outSlope: {x: -0.000021278818, y: 0.0004012577, z: 0.0003197187, w: -0.000039338993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.13048889, y: -0.57168216, z: 0.7492892, w: 0.30776262} + inSlope: {x: 0.000037551068, y: 0.0003876701, z: 0.00029897803, w: 0.0000021457754} + outSlope: {x: 0.000037551068, y: 0.0003876701, z: 0.00029897803, w: 0.0000021457754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0006869979, y: 0.14842014, z: 0.0045775813, w: 0.9889136} + inSlope: {x: -0.009221169, y: 1.3699071, z: 0.012574296, w: -0.24648571} + outSlope: {x: -0.009221169, y: 1.3699071, z: 0.012574296, w: -0.24648571} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.0010712133, y: 0.2054996, z: 0.0051015103, w: 0.97864336} + inSlope: {x: -0.015906582, y: 1.8382982, z: 0.021410778, w: -0.42607284} + outSlope: {x: -0.015906582, y: 1.8382982, z: 0.021410778, w: -0.42607284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.0020125464, y: 0.30161166, z: 0.006361813, w: 0.9534075} + inSlope: {x: -0.02630977, y: 2.1036446, z: 0.033876076, w: -0.64832425} + outSlope: {x: -0.02630977, y: 2.1036446, z: 0.033876076, w: -0.64832425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.005136564, y: 0.4306143, z: 0.010764957, w: 0.90245724} + inSlope: {x: -0.005295573, y: -0.41069317, z: 0.024492234, w: 0.1834331} + outSlope: {x: -0.005295573, y: -0.41069317, z: 0.024492234, w: 0.1834331} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.0028387085, y: 0.30934623, z: 0.008726021, w: 0.9509052} + inSlope: {x: 0.045641758, y: -2.4523497, z: -0.06931968, w: 0.74576056} + outSlope: {x: 0.045641758, y: -2.4523497, z: -0.06931968, w: 0.74576056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0010910977, y: 0.18681164, z: 0.005737826, w: 0.98237836} + inSlope: {x: 0.033828963, y: -3.4102623, z: -0.09534134, w: 0.5853361} + outSlope: {x: 0.033828963, y: -3.4102623, z: -0.09534134, w: 0.5853361} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.000019628791, y: 0.025157768, z: 0.00078091136, w: 0.9996832} + inSlope: {x: 0.012353272, y: -1.9062297, z: -0.04239069, w: 0.206739} + outSlope: {x: 0.012353272, y: -1.9062297, z: -0.04239069, w: 0.206739} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: -0.00006165861, y: 0.027959207, z: 0.0022052708, w: 0.9996066} + inSlope: {x: -0.0073292623, y: 1.2571093, z: 0.048365027, w: -0.09804156} + outSlope: {x: -0.0073292623, y: 1.2571093, z: 0.048365027, w: -0.09804156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.00063040055, y: 0.12991685, z: 0.00481133, w: 0.9915131} + inSlope: {x: -0.014376585, y: 2.0725508, z: 0.047333624, w: -0.23961788} + outSlope: {x: -0.014376585, y: 2.0725508, z: 0.047333624, w: -0.23961788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.0019740288, y: 0.26989204, z: 0.0070425877, w: 0.96286285} + inSlope: {x: -0.005897496, y: 0.09726378, z: 0.019580625, w: -0.025616813} + outSlope: {x: -0.005897496, y: 0.09726378, z: 0.019580625, w: -0.025616813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0022863257, y: 0.24745303, z: 0.008951758, w: 0.96885586} + inSlope: {x: -0.007498064, y: 0.22443393, z: 0.01912775, w: -0.062286586} + outSlope: {x: -0.007498064, y: 0.22443393, z: 0.01912775, w: -0.062286586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.0038606103, y: 0.3757104, z: 0.00952214, w: 0.92668015} + inSlope: {x: -0.0120110605, y: 1.1694908, z: -0.0048601045, w: -0.47149777} + outSlope: {x: -0.0120110605, y: 1.1694908, z: -0.0048601045, w: -0.47149777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.004858477, y: 0.472978, z: 0.009049892, w: 0.8810144} + inSlope: {x: 0.005198015, y: -0.50528973, z: 0.0027055303, w: 0.26479596} + outSlope: {x: 0.005198015, y: -0.50528973, z: 0.0027055303, w: 0.26479596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.0040446185, y: 0.3938007, z: 0.009440254, w: 0.9191385} + inSlope: {x: 0.014605793, y: -1.4214609, z: 0.006066816, w: 0.59215367} + outSlope: {x: 0.014605793, y: -1.4214609, z: 0.006066816, w: 0.59215367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.003332703, y: 0.3245076, z: 0.009713726, w: 0.94582736} + inSlope: {x: 0.030213024, y: -2.0767984, z: -0.03232492, w: 0.67405164} + outSlope: {x: 0.030213024, y: -2.0767984, z: -0.03232492, w: 0.67405164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.0015268635, y: 0.22073404, z: 0.006746505, w: 0.9753095} + inSlope: {x: 0.039990723, y: -3.9213784, z: -0.11741433, w: 0.65004045} + outSlope: {x: 0.039990723, y: -3.9213784, z: -0.11741433, w: 0.65004045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.00000014046584, y: -0.0022739123, z: -0.00007080113, w: 0.99999744} + inSlope: {x: 0.018320693, y: -2.676098, z: -0.08180775, w: 0.29625562} + outSlope: {x: 0.018320693, y: -2.676098, z: -0.08180775, w: 0.29625562} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.00000014061169, y: -0.0022739118, z: -0.000070801216, w: 0.99999744} + inSlope: {x: -0.0000000035003023, y: 0.000000013969828, z: -0.0000000022700974, w: 0} + outSlope: {x: -0.0000000035003023, y: 0.000000013969828, z: -0.0000000022700974, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.00000014469556, y: -0.0022738944, z: -0.00007080382, w: 0.99999744} + inSlope: {x: -0.0000000024433529, y: 0.000007345327, z: 0.00000023451821, w: 0} + outSlope: {x: -0.0000000024433529, y: 0.000007345327, z: 0.00000023451821, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: -0.00000014475332, y: -0.0022732832, z: -0.000070784175, w: 0.99999744} + inSlope: {x: -0.010000917, y: 1.9499764, z: 0.062472764, w: -0.15516531} + outSlope: {x: -0.010000917, y: 1.9499764, z: 0.062472764, w: -0.15516531} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.0008335513, y: 0.16022353, z: 0.00513524, w: 0.98706704} + inSlope: {x: -0.041580573, y: 3.9965272, z: 0.119480036, w: -0.67613083} + outSlope: {x: -0.041580573, y: 3.9965272, z: 0.119480036, w: -0.67613083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.0034651947, y: 0.33077037, z: 0.009885875, w: 0.94365317} + inSlope: {x: -0.039924778, y: 2.7018352, z: 0.057917167, w: -0.7724497} + outSlope: {x: -0.039924778, y: 2.7018352, z: 0.057917167, w: -0.7724497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: -0.0041606226, y: 0.3853769, z: 0.00996168, w: 0.9226961} + inSlope: {x: -0.013420727, y: 0.8134318, z: 0.007930971, w: -0.3189774} + outSlope: {x: -0.013420727, y: 0.8134318, z: 0.007930971, w: -0.3189774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.00482675, y: 0.39548236, z: 0.011208747, w: 0.9183925} + inSlope: {x: -0.0039404538, y: -0.07654795, z: 0.011683714, w: 0.03279227} + outSlope: {x: -0.0039404538, y: -0.07654795, z: 0.011683714, w: 0.03279227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.2083335 + value: {x: -0.004911966, y: 0.3921774, z: 0.011520443, w: 0.9198044} + inSlope: {x: -0.0000000111758816, y: 0, z: 0.000000022351763, w: 0} + outSlope: {x: -0.0000000111758816, y: 0, z: 0.000000022351763, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0049119773, y: 0.3921774, z: 0.011520463, w: 0.9198044} + inSlope: {x: -0.0000000111759135, y: 0, z: 0.000000022351827, w: 0} + outSlope: {x: -0.0000000111759135, y: 0, z: 0.000000022351827, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.09302473, y: -0.067266546, z: 0.24988492, w: 0.9614464} + inSlope: {x: -0.0035853982, y: -0.0032497644, z: -0.06900215, w: 0.017942905} + outSlope: {x: -0.0035853982, y: -0.0032497644, z: -0.06900215, w: 0.017942905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.08527517, y: -0.07410443, z: 0.08960249, w: 0.98954946} + inSlope: {x: -0.036425285, y: -0.034162037, z: -0.7421987, w: 0.06710028} + outSlope: {x: -0.036425285, y: -0.034162037, z: -0.7421987, w: 0.06710028} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.06692755, y: -0.09146699, z: -0.21820419, w: 0.96929944} + inSlope: {x: -0.061687604, y: -0.05364491, z: -0.76832545, w: -0.17319492} + outSlope: {x: -0.061687604, y: -0.05364491, z: -0.76832545, w: -0.17319492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.04868116, y: -0.10164027, z: -0.4066128, w: 0.90662307} + inSlope: {x: 0.0068936935, y: 0.006760155, z: 0.044107452, w: 0.019904912} + outSlope: {x: 0.0068936935, y: 0.006760155, z: 0.044107452, w: 0.019904912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.07476819, y: -0.08409769, z: -0.10991185, w: 0.98755085} + inSlope: {x: 0.08403956, y: 0.06958255, z: 1.4375086, w: 0.15847848} + outSlope: {x: 0.08403956, y: 0.06958255, z: 1.4375086, w: 0.15847848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.088947006, y: -0.07112953, z: 0.17907694, w: 0.9772208} + inSlope: {x: 0.052410953, y: 0.05578991, z: 1.1583533, w: -0.20937128} + outSlope: {x: 0.052410953, y: 0.05578991, z: 1.1583533, w: -0.20937128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.09473985, y: -0.06218426, z: 0.30849138, w: 0.9444525} + inSlope: {x: 0.023085488, y: 0.05415811, z: 0.29572934, w: -0.093279384} + outSlope: {x: 0.023085488, y: 0.05415811, z: 0.29572934, w: -0.093279384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.09608159, y: -0.06030825, z: 0.28704354, w: 0.9511768} + inSlope: {x: -0.029900758, y: -0.06385617, z: -1.2152958, w: 0.3344482} + outSlope: {x: -0.029900758, y: -0.06385617, z: -1.2152958, w: 0.3344482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.08664494, y: -0.07372433, z: 0.10492282, w: 0.98795176} + inSlope: {x: -0.19390868, y: -0.21805146, z: -2.788119, w: 0.2767505} + outSlope: {x: -0.19390868, y: -0.21805146, z: -2.788119, w: 0.2767505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: 0.06748502, y: -0.091311984, z: -0.14202015, w: 0.98333013} + inSlope: {x: -0.21663642, y: -0.14827287, z: -2.7678049, w: -0.3783266} + outSlope: {x: -0.21663642, y: -0.14827287, z: -2.7678049, w: -0.3783266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: 0.05383193, y: -0.09663983, z: -0.34972265, w: 0.9302994} + inSlope: {x: 0.045800254, y: 0.037334356, z: 0.011273742, w: 0.0049202815} + outSlope: {x: 0.045800254, y: 0.037334356, z: 0.011273742, w: 0.0049202815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: 0.0733892, y: -0.087456144, z: -0.14116666, w: 0.9833806} + inSlope: {x: 0.19181167, y: 0.09581707, z: 2.6614394, w: 0.3651853} + outSlope: {x: 0.19181167, y: 0.09581707, z: 2.6614394, w: 0.3651853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0.08775698, y: -0.07815932, z: 0.081795834, w: 0.98969656} + inSlope: {x: 0.12610024, y: 0.120737076, z: 2.2149935, w: -0.15167606} + outSlope: {x: 0.12610024, y: 0.120737076, z: 2.2149935, w: -0.15167606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.092175506, y: -0.070262305, z: 0.18893106, w: 0.9751266} + inSlope: {x: -0.028516743, y: 0.009720666, z: 0.01625523, w: 0.0007030964} + outSlope: {x: -0.028516743, y: 0.009720666, z: 0.01625523, w: 0.0007030964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: 0.08520625, y: -0.07674479, z: 0.097895406, w: 0.98856795} + inSlope: {x: -0.090654574, y: -0.10445033, z: -1.5074147, w: 0.14908175} + outSlope: {x: -0.090654574, y: -0.10445033, z: -1.5074147, w: 0.14908175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: 0.081769235, y: -0.080967754, z: 0.034922346, w: 0.9927429} + inSlope: {x: -0.050031416, y: -0.06944297, z: -1.0990906, w: 0.05640353} + outSlope: {x: -0.050031416, y: -0.06944297, z: -1.0990906, w: 0.05640353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: 0.081782475, y: -0.08222532, z: 0.0063412553, w: 0.9932323} + inSlope: {x: 0, y: 0, z: -0.000000005587925, w: 0} + outSlope: {x: 0, y: 0, z: -0.000000005587925, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.081782475, y: -0.082225315, z: 0.0063412474, w: 0.9932323} + inSlope: {x: 0, y: 0, z: -0.0000000111759135, w: 0} + outSlope: {x: 0, y: 0, z: -0.0000000111759135, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2783816, y: 0.14141959, z: 0.21781448, w: 0.92469513} + inSlope: {x: -0.3094797, y: 0.18473518, z: 0.3399067, w: -0.020688057} + outSlope: {x: -0.3094797, y: 0.18473518, z: 0.3399067, w: -0.020688057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.2654866, y: 0.14911689, z: 0.23197725, w: 0.92383313} + inSlope: {x: -0.6602871, y: 0.31639034, z: 0.6874845, w: -0.057145357} + outSlope: {x: -0.6602871, y: 0.31639034, z: 0.6874845, w: -0.057145357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.22335766, y: 0.16778545, z: 0.27510485, w: 0.919933} + inSlope: {x: -1.6143391, y: 0.3249069, z: 1.4932299, w: -0.18793704} + outSlope: {x: -1.6143391, y: 0.3249069, z: 1.4932299, w: -0.18793704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.13095835, y: 0.17619246, z: 0.35641307, w: 0.9081717} + inSlope: {x: -3.1432607, y: -0.46277684, z: 2.4647849, w: -0.6404514} + outSlope: {x: -3.1432607, y: -0.46277684, z: 2.4647849, w: -0.6404514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.038580753, y: 0.12922071, z: 0.4805036, w: 0.86656207} + inSlope: {x: -4.1456704, y: -2.0535653, z: 3.0258603, w: -1.730792} + outSlope: {x: -4.1456704, y: -2.0535653, z: 3.0258603, w: -1.730792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.21451423, y: 0.0050620036, z: 0.60856813, w: 0.763939} + inSlope: {x: -2.7727256, y: -2.9096346, z: 2.623765, w: -2.569661} + outSlope: {x: -2.7727256, y: -2.9096346, z: 2.623765, w: -2.569661} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.26964122, y: -0.113248825, z: 0.6991507, w: 0.6524237} + inSlope: {x: -0.29129148, y: -2.283634, z: 1.8159097, w: -2.2609885} + outSlope: {x: -0.29129148, y: -2.283634, z: 1.8159097, w: -2.2609885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.23878849, y: -0.18524083, z: 0.75989395, w: 0.5755233} + inSlope: {x: 1.1267076, y: -1.3027105, z: 1.1841507, w: -1.4410598} + outSlope: {x: 1.1267076, y: -1.3027105, z: 1.1841507, w: -1.4410598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.102638744, y: -0.23365344, z: 0.81649286, w: 0.5178907} + inSlope: {x: 1.8177124, y: -0.13635781, z: 0.2984784, w: -0.17344241} + outSlope: {x: 1.8177124, y: -0.13635781, z: 0.2984784, w: -0.17344241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.056553707, y: -0.2317101, z: 0.8217338, w: 0.51755744} + inSlope: {x: 1.9550211, y: 0.044321008, z: -0.12804654, w: 0.0060088653} + outSlope: {x: 1.9550211, y: 0.044321008, z: -0.12804654, w: 0.0060088653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.3753435, y: -0.21941811, z: 0.72340065, w: 0.5363436} + inSlope: {x: 1.6669315, y: 0.10609551, z: -1.0276239, w: 0.2693253} + outSlope: {x: 1.6669315, y: 0.10609551, z: -1.0276239, w: 0.2693253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.55478823, y: -0.1641978, z: 0.48466566, w: 0.6560094} + inSlope: {x: -0.0012653992, y: 0.5413608, z: -0.8551513, w: 0.7729327} + outSlope: {x: -0.0012653992, y: 0.5413608, z: -0.8551513, w: 0.7729327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.44580686, y: 0.023725247, z: 0.3893296, w: 0.80567724} + inSlope: {x: -0.5450207, y: 0.82438904, z: -0.18432587, w: 0.36752665} + outSlope: {x: -0.5450207, y: 0.82438904, z: -0.18432587, w: 0.36752665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.34311983, y: 0.21317276, z: 0.34703127, w: 0.84640145} + inSlope: {x: -0.19020784, y: 0.3125304, z: -0.0665939, w: 0.026629664} + outSlope: {x: -0.19020784, y: 0.3125304, z: -0.0665939, w: 0.026629664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: 0.27562892, y: 0.22328363, z: 0.3763514, w: 0.85588133} + inSlope: {x: -0.83789027, y: -0.24683139, z: 0.46882355, w: 0.1177368} + outSlope: {x: -0.83789027, y: -0.24683139, z: 0.46882355, w: 0.1177368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: 0.0850288, y: 0.13685836, z: 0.45833153, w: 0.87405497} + inSlope: {x: -2.3052232, y: -1.2519652, z: 0.71700525, w: 0.0065065213} + outSlope: {x: -2.3052232, y: -1.2519652, z: 0.71700525, w: 0.0065065213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: -0.021236746, y: 0.07640048, z: 0.48700684, w: 0.869791} + inSlope: {x: -2.6197453, y: -1.5721343, z: 0.58700955, w: -0.27173308} + outSlope: {x: -2.6197453, y: -1.5721343, z: 0.58700955, w: -0.27173308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.1332831, y: 0.0058472897, z: 0.50724894, w: 0.85141057} + inSlope: {x: -2.5076683, y: -1.6657524, z: 0.35982084, w: -0.5724416} + outSlope: {x: -2.5076683, y: -1.6657524, z: 0.35982084, w: -0.5724416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: -0.3003825, y: -0.11876829, z: 0.51978344, w: 0.790879} + inSlope: {x: -1.4141726, y: -1.2154064, z: 0.035277877, w: -0.71249485} + outSlope: {x: -1.4141726, y: -1.2154064, z: 0.035277877, w: -0.71249485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.39475965, y: -0.22709353, z: 0.5221159, w: 0.7211022} + inSlope: {x: -0.28180566, y: -0.6105109, z: 0.07385309, w: -0.3948959} + outSlope: {x: -0.28180566, y: -0.6105109, z: 0.07385309, w: -0.3948959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: -0.35884923, y: -0.3152422, z: 0.55616605, w: 0.6800948} + inSlope: {x: 0.596863, y: -0.3127035, z: 0.1185012, w: 0.069287404} + outSlope: {x: 0.596863, y: -0.3127035, z: 0.1185012, w: 0.069287404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3333335 + value: {x: -0.18345328, y: -0.38466907, z: 0.5760851, w: 0.69749594} + inSlope: {x: 1.4769678, y: -0.60142636, z: 0.09351182, w: -0.030460058} + outSlope: {x: 1.4769678, y: -0.60142636, z: 0.09351182, w: -0.030460058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: -0.117971554, y: -0.41175365, z: 0.57863116, w: 0.69406605} + inSlope: {x: 1.5814484, y: -0.66215754, z: 0.036184896, w: -0.15624899} + outSlope: {x: 1.5814484, y: -0.66215754, z: 0.036184896, w: -0.15624899} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.05166603, y: -0.4398488, z: 0.5791005, w: 0.6844752} + inSlope: {x: 1.2002203, y: -0.26376042, z: 0.008031592, w: -0.04997769} + outSlope: {x: 1.2002203, y: -0.26376042, z: 0.008031592, w: -0.04997769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: -0.017953003, y: -0.43373373, z: 0.57930046, w: 0.68990123} + inSlope: {x: 0.7272762, y: 0.15823871, z: 0.07773571, w: 0.056530077} + outSlope: {x: 0.7272762, y: 0.15823871, z: 0.07773571, w: 0.056530077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.01642461, y: -0.4094467, z: 0.59879, w: 0.68813825} + inSlope: {x: -0.17947868, y: 0.6610077, z: 0.39352438, w: 0.03936045} + outSlope: {x: -0.17947868, y: 0.6610077, z: 0.39352438, w: 0.03936045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: -0.04174522, y: -0.3301549, z: 0.63739794, w: 0.69496685} + inSlope: {x: -0.7828872, y: 0.8573557, z: 0.36367667, w: 0.039332725} + outSlope: {x: -0.7828872, y: 0.8573557, z: 0.36367667, w: 0.039332725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: -0.08450034, y: -0.28883126, z: 0.6515999, w: 0.69631445} + inSlope: {x: -0.15895438, y: 0.1355779, z: 0.035043173, w: 0.006844269} + outSlope: {x: -0.15895438, y: 0.1355779, z: 0.035043173, w: 0.006844269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8333335 + value: {x: -0.084508464, y: -0.28883886, z: 0.65159655, w: 0.6963135} + inSlope: {x: -0.00006499892, y: -0.000060796796, z: -0.000027179747, w: -0.000007867822} + outSlope: {x: -0.00006499892, y: -0.000060796796, z: -0.000027179747, w: -0.000007867822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.08459234, y: -0.28891742, z: 0.6515617, w: 0.6963033} + inSlope: {x: -0.00006508852, y: -0.000061512226, z: -0.000027179822, w: -0.0000071525847} + outSlope: {x: -0.00006508852, y: -0.000061512226, z: -0.000027179822, w: -0.0000071525847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0000000018626454, y: 0.000000016763808, z: 0.000000011175873, w: 1} + inSlope: {x: -0.0000000010379431, y: -0.000000011946625, z: 7.684733e-10, w: 0} + outSlope: {x: -0.0000000010379431, y: -0.000000011946625, z: 7.684733e-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: 2.0416667 + value: {x: -2.5648378e-10, y: -0.000000007627211, z: 0.000000012744875, w: 1} + inSlope: {x: -0.0000000010379404, y: -0.000000011946618, z: 7.684825e-10, w: 0} + outSlope: {x: -0.0000000010379404, y: -0.000000011946618, z: 7.684825e-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: 2.375 + value: {x: -6.024639e-10, y: -0.000000011609417, z: 0.0000000130010385, w: 1} + inSlope: {x: -0.0000000010379088, y: -0.0000024375308, z: 7.6847406e-10, w: 0} + outSlope: {x: -0.0000000010379088, y: -0.0000024375308, z: 7.6847406e-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: 2.4166667 + value: {x: -6.4570893e-10, y: -0.00000021423959, z: 0.000000013033058, w: 1} + inSlope: {x: 0.000000015917367, y: -1.2940674, z: -0.0000000010373549, w: -0.06997977} + outSlope: {x: 0.000000015917367, y: -1.2940674, z: -0.0000000010373549, w: -0.06997977} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 7.2398587e-10, y: -0.107839175, z: 0.000000012914592, w: 0.99416834} + inSlope: {x: 0.000000029588879, y: -2.3257222, z: -0.0000000039144226, w: -0.2275319} + outSlope: {x: 0.000000029588879, y: -2.3257222, z: -0.0000000039144226, w: -0.2275319} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: 0.0000000018200293, y: -0.19381028, z: 0.000000012706857, w: 0.98103905} + inSlope: {x: 0.00000002483297, y: -1.9416068, z: -0.000000005770204, w: -0.37448448} + outSlope: {x: 0.00000002483297, y: -1.9416068, z: -0.000000005770204, w: -0.37448448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.0000000027933977, y: -0.26963955, z: 0.000000012433742, w: 0.9629613} + inSlope: {x: 0.000000027650604, y: -2.1278214, z: -0.000000009474121, w: -0.6294918} + outSlope: {x: 0.000000027650604, y: -2.1278214, z: -0.000000009474121, w: -0.6294918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: 0.0000000041242507, y: -0.37112907, z: 0.000000011917345, w: 0.9285813} + inSlope: {x: 0.00000002994004, y: -2.2710292, z: -0.000000013287168, w: -0.89363086} + outSlope: {x: 0.00000002994004, y: -2.2710292, z: -0.000000013287168, w: -0.89363086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: 0.0000000059447594, y: -0.5084408, z: 0.000000010927925, w: 0.861097} + inSlope: {x: 0.000000010305859, y: -0.7884539, z: -0.000000006449943, w: -0.4456929} + outSlope: {x: 0.000000010305859, y: -0.7884539, z: -0.000000006449943, w: -0.4456929} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: 0.0000000061073995, y: -0.5246121, z: 0.000000010797983, w: 0.85134137} + inSlope: {x: -4.7785687e-10, y: -0.0001881119, z: 1.0798808e-10, w: -0.00011658647} + outSlope: {x: -4.7785687e-10, y: -0.0001881119, z: 1.0798808e-10, w: -0.00011658647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.0000000054707345, y: -0.52486336, z: 0.000000010941464, w: 0.8511865} + inSlope: {x: -4.7715615e-10, y: -0.00018882824, z: 1.07242625e-10, w: -0.00011587187} + outSlope: {x: -4.7715615e-10, y: -0.00018882824, z: 1.07242625e-10, w: -0.00011587187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00000003987768, y: -0.00000010233669, z: -0.24623103, w: 0.96921116} + inSlope: {x: -0.0000017488703, y: -0.0000070340925, z: 0.09652126, w: 0.024308681} + outSlope: {x: -0.0000017488703, y: -0.0000070340925, z: 0.09652126, w: 0.024308681} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.00000035043956, y: -0.0000027825113, z: -0.11984934, w: 0.99279207} + inSlope: {x: 0.00000038694714, y: -0.000019621955, z: 0.9321978, w: 0.11034464} + outSlope: {x: 0.00000038694714, y: -0.000019621955, z: 0.9321978, w: 0.11034464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.0000025608733, y: -0.0000109994535, z: 0.22809677, w: 0.9736385} + inSlope: {x: 0.00002290382, y: -0.00003193017, z: 1.2922332, w: -0.30273473} + outSlope: {x: 0.00002290382, y: -0.00003193017, z: 1.2922332, w: -0.30273473} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.0000127271105, y: -0.000019439974, z: 0.5483443, w: 0.8362527} + inSlope: {x: 0.000042475192, y: -0.000025165644, z: 0.78618634, w: -0.512915} + outSlope: {x: 0.000042475192, y: -0.000025165644, z: 0.78618634, w: -0.512915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.000022387683, y: -0.000026149639, z: 0.65074146, w: 0.7592994} + inSlope: {x: 0.000025798257, y: -0.000036548103, z: -0.084924534, w: 0.071568556} + outSlope: {x: 0.000025798257, y: -0.000036548103, z: -0.084924534, w: 0.071568556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.00002090004, y: -0.000035898112, z: 0.5035247, w: 0.8639808} + inSlope: {x: -0.000048492417, y: -0.00007485167, z: -1.6584425, w: 0.95298696} + outSlope: {x: -0.000048492417, y: -0.00007485167, z: -1.6584425, w: 0.95298696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.000011436125, y: -0.000044943983, z: 0.24698873, w: 0.96901834} + inSlope: {x: -0.00009659922, y: -0.00006215808, z: -2.2787232, w: 0.5808133} + outSlope: {x: -0.00009659922, y: -0.00006215808, z: -2.2787232, w: 0.5808133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.0000014622872, y: -0.000050561393, z: -0.02852691, w: 0.999593} + inSlope: {x: -0.00009730363, y: -0.000028074699, z: -1.9122734, w: -0.04286515} + outSlope: {x: -0.00009730363, y: -0.000028074699, z: -1.9122734, w: -0.04286515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: -0.000011452509, y: -0.000053651023, z: -0.20840348, w: 0.97804296} + inSlope: {x: -0.0000073261303, y: -0.000018483312, z: -0.06298718, w: -0.012713589} + outSlope: {x: -0.0000073261303, y: -0.000018483312, z: -0.06298718, w: -0.012713589} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.00017383475, y: -0.000014007153, z: 0.1259089, w: 0.9920418} + inSlope: {x: -0.004217627, y: 0.002008062, z: 1.8412399, w: -0.23677061} + outSlope: {x: -0.004217627, y: 0.002008062, z: 1.8412399, w: -0.23677061} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0.0015009011, y: 0.0005226768, z: 0.42604092, w: 0.9047025} + inSlope: {x: -0.010229927, y: 0.0021867696, z: 1.5824678, w: -0.73984325} + outSlope: {x: -0.010229927, y: 0.0021867696, z: 1.5824678, w: -0.73984325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3333335 + value: {x: -0.0029942028, y: 0.00048722888, z: 0.6367064, w: 0.77110034} + inSlope: {x: -0.0038667147, y: -0.00031536873, z: 0.32242355, w: -0.26180565} + outSlope: {x: -0.0038667147, y: -0.00031536873, z: 0.32242355, w: -0.26180565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.003796461, y: 0.0007424611, z: 0.62582695, w: 0.77995235} + inSlope: {x: -0.015636355, y: 0.008523259, z: -0.7853214, w: 0.6067996} + outSlope: {x: -0.015636355, y: 0.008523259, z: -0.7853214, w: 0.6067996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.005231385, y: 0.001967367, z: 0.50509596, w: 0.8630451} + inSlope: {x: -0.01443045, y: 0.019826496, z: -1.9391451, w: 1.1182855} + outSlope: {x: -0.01443045, y: 0.019826496, z: -1.9391451, w: 1.1182855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: -0.005920659, y: 0.0037638894, z: 0.32595086, w: 0.9453607} + inSlope: {x: -0.0002872583, y: 0.018371442, z: -2.0788236, w: 0.73016554} + outSlope: {x: -0.0002872583, y: 0.018371442, z: -2.0788236, w: 0.73016554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.0055652135, y: 0.0047113807, z: 0.18404913, w: 0.98289} + inSlope: {x: 0.0007510338, y: 0.003990516, z: -0.9849402, w: 0.20369872} + outSlope: {x: 0.0007510338, y: 0.003990516, z: -0.9849402, w: 0.20369872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: -0.00644282, y: 0.0044130073, z: 0.16132107, w: 0.98687106} + inSlope: {x: -0.00998313, y: -0.004586831, z: 0.000032722888, w: -0.000050783063} + outSlope: {x: -0.00998313, y: -0.004586831, z: 0.000032722888, w: -0.000050783063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.007855812, y: 0.0032033285, z: 0.1613218, w: 0.9868654} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.02652352, y: 0.13469812, z: -0.26623374, w: 0.954082} + inSlope: {x: -0.019829974, y: 0.00049495697, z: 0.008289814, w: 0.0016822815} + outSlope: {x: -0.019829974, y: 0.00049495697, z: 0.008289814, w: 0.0016822815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.09521316, y: 0.12932664, z: -0.19443509, w: 0.96767974} + inSlope: {x: -0.15482259, y: -0.07310684, z: 0.34869066, w: 0.06447603} + outSlope: {x: -0.15482259, y: -0.07310684, z: 0.34869066, w: 0.06447603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: -0.032938134, y: 0.0209898, z: -0.044325124, w: 0.9982534} + inSlope: {x: 0.37756228, y: -0.44684976, z: 0.08554253, w: 0.02494526} + outSlope: {x: 0.37756228, y: -0.44684976, z: 0.08554253, w: 0.02494526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.06851528, y: -0.15448542, z: -0.047394663, w: 0.9844763} + inSlope: {x: 0.070938095, y: -0.47473428, z: -0.06074495, w: -0.081820205} + outSlope: {x: 0.070938095, y: -0.47473428, z: -0.06074495, w: -0.081820205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: 0.047626074, y: -0.17840524, z: -0.09277482, w: 0.97841513} + inSlope: {x: 0.00882834, y: 0.29406655, z: -0.19948357, w: 0.0338559} + outSlope: {x: 0.00882834, y: 0.29406655, z: -0.19948357, w: 0.0338559} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.07227802, y: 0.006062578, z: -0.21356305, w: 0.97423303} + inSlope: {x: -0.19961014, y: 0.67848426, z: -0.4416322, w: -0.08735688} + outSlope: {x: -0.19961014, y: 0.67848426, z: -0.4416322, w: -0.08735688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2916667 + value: {x: -0.030221257, y: 0.13321517, z: -0.30198634, w: 0.94347477} + inSlope: {x: -0.6286282, y: 0.01394067, z: 0.0012645684, w: -0.022107799} + outSlope: {x: -0.6286282, y: 0.01394067, z: 0.0012645684, w: -0.022107799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.107310325, y: 0.092231594, z: -0.28489056, w: 0.94805866} + inSlope: {x: -0.5382749, y: -0.6428905, z: 0.25019634, w: 0.07452879} + outSlope: {x: -0.5382749, y: -0.6428905, z: 0.25019634, w: 0.07452879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.15224762, y: 0.005711881, z: -0.25567898, w: 0.9546813} + inSlope: {x: -0.5987053, y: -1.7200435, z: 0.48765874, w: 0.014831018} + outSlope: {x: -0.5987053, y: -1.7200435, z: 0.48765874, w: 0.014831018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: -0.20081782, y: -0.18373752, z: -0.2047058, w: 0.94021714} + inSlope: {x: -0.45802405, y: -2.3409042, z: 0.642684, w: -0.4037761} + outSlope: {x: -0.45802405, y: -2.3409042, z: 0.642684, w: -0.4037761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.22519355, y: -0.34464332, z: -0.1587215, w: 0.8973942} + inSlope: {x: -0.13917276, y: -1.1292222, z: 0.32949606, w: -0.37887597} + outSlope: {x: -0.13917276, y: -1.1292222, z: 0.32949606, w: -0.37887597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: -0.22803572, y: -0.37079942, z: -0.15096878, w: 0.8875336} + 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: 4.125 + value: {x: -0.22803572, y: -0.37079942, z: -0.15096878, w: 0.8875336} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.13871254, w: 0.9903327} + inSlope: {x: 0, y: -0, z: -0.0129003525, w: -0.0018110275} + outSlope: {x: 0, y: -0, z: -0.0129003525, w: -0.0018110275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0, y: -0, z: -0.17867425, w: 0.9839083} + inSlope: {x: 0, y: 0, z: 0.16140376, w: 0.02923537} + outSlope: {x: 0, y: 0, z: 0.16140376, w: 0.02923537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0, y: -0, z: -0.102292314, w: 0.9947544} + inSlope: {x: 0, y: 0, z: -0.12045981, w: -0.012459747} + outSlope: {x: 0, y: 0, z: -0.12045981, w: -0.012459747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0, y: -0, z: -0.13052417, w: 0.9914451} + inSlope: {x: 0, y: 0, z: 0.26128596, w: 0.034051873} + outSlope: {x: 0, y: 0, z: 0.26128596, w: 0.034051873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0, y: 0, z: 0.000000004676871, w: 1} + inSlope: {x: 0, y: 0, z: 0.058031093, w: 0.00006794911} + outSlope: {x: 0, y: 0, z: 0.058031093, w: 0.00006794911} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9583335 + 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: 4.125 + 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: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0013052019, y: 0.005500984, z: 0.00058792246} + inSlope: {x: -0.0002477789, y: 0.00017618178, z: 0.0009826523} + outSlope: {x: -0.0002477789, y: 0.00017618178, z: 0.0009826523} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.0013155261, y: 0.005508325, z: 0.0006288663} + inSlope: {x: -0.0002477789, y: 0.00017618178, z: 0.0009826523} + outSlope: {x: -0.0007124126, y: 0.0005042553, z: 0.0027651393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.0013452099, y: 0.0055293357, z: 0.00074408046} + inSlope: {x: -0.0007124126, y: 0.0005042553, z: 0.0027651393} + outSlope: {x: -0.0011305476, y: 0.0007958937, z: 0.0042733955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.0013923161, y: 0.005562498, z: 0.00092213857} + inSlope: {x: -0.0011305476, y: 0.0007958937, z: 0.0042733955} + outSlope: {x: -0.001502255, y: 0.0010510539, z: 0.005507433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.00145491, y: 0.005606292, z: 0.0011516149} + inSlope: {x: -0.001502255, y: 0.0010510539, z: 0.005507433} + outSlope: {x: -0.0018274537, y: 0.0012697938, z: 0.00646721} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: -0.0015310539, y: 0.0056592, z: 0.001421082} + inSlope: {x: -0.0018274537, y: 0.0012697938, z: 0.00646721} + outSlope: {x: -0.0021062419, y: 0.0014520548, z: 0.007152814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.002164087, y: 0.006082968, z: 0.0032378458} + inSlope: {x: -0.0028031503, y: 0.0018165912, z: 0.006467203} + outSlope: {x: -0.0028031522, y: 0.0017801289, z: 0.0055074487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.002395748, y: 0.006228274, z: 0.003645381} + inSlope: {x: -0.0027567123, y: 0.0017072145, z: 0.004273393} + outSlope: {x: -0.0026637616, y: 0.0015978399, z: 0.0027651384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.0026119212, y: 0.006355354, z: 0.0038015388} + inSlope: {x: -0.0025243938, y: 0.0014520828, z: 0.0009826536} + outSlope: {x: -0.0023385347, y: 0.0012697643, z: -0.00082777935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: -0.0027971198, y: 0.0064520547, z: 0.0036675169} + inSlope: {x: -0.002106237, y: 0.0010510549, z: -0.0023887488} + outSlope: {x: -0.0018274846, y: 0.0007959076, z: -0.0038078122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: -0.002982965, y: 0.006503317, z: 0.0030378108} + inSlope: {x: -0.00113057, y: -0.000069851936, z: -0.0062201843} + outSlope: {x: -0.00071238715, y: -0.000069866146, z: -0.007213529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: -0.003017534, y: 0.0064778263, z: 0.002035602} + inSlope: {x: 0.00013053429, y: -0.00047206922, z: -0.008774504} + outSlope: {x: 0.0003827546, y: -0.00064908, z: -0.009342115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.00289622, y: 0.006328215, z: 0.0003958043} + inSlope: {x: 0.0010597453, y: -0.0011394464, z: -0.010193563} + outSlope: {x: 0.0012588727, y: -0.0012893354, z: -0.010193569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: -0.002843767, y: 0.0062744925, z: -0.000028927325} + inSlope: {x: 0.0012588727, y: -0.0012893354, z: -0.010193569} + outSlope: {x: 0.0014447066, y: -0.0014323827, z: -0.010051627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.002783571, y: 0.00621481, z: -0.0004477459} + inSlope: {x: 0.0014447066, y: -0.0014323827, z: -0.010051627} + outSlope: {x: 0.0016172876, y: -0.0015686718, z: -0.009767843} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.002716184, y: 0.0061494485, z: -0.000854739} + inSlope: {x: 0.0016172876, y: -0.0015686718, z: -0.009767843} + outSlope: {x: 0.0017765752, y: -0.0016981903, z: -0.009342127} + tangentMode: 0 + weightedMode: 0 + 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.0025620519, y: 0.006002823, z: -0.0016095979} + inSlope: {x: 0.0019225894, y: -0.0018208231, z: -0.00877448} + outSlope: {x: 0.0020553393, y: -0.0019367284, z: -0.00806497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4166666 + value: {x: -0.002385796, y: 0.0058368808, z: -0.002246202} + inSlope: {x: 0.0021748086, y: -0.0020458908, z: -0.00721354} + outSlope: {x: 0.0022810034, y: -0.002148138, z: -0.006220188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.00219184, y: 0.005653889, z: -0.00271725} + inSlope: {x: 0.0023739396, y: -0.0022436592, z: -0.005084958} + outSlope: {x: 0.002453569, y: -0.0023324224, z: -0.0038077962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5416666 + value: {x: -0.002089608, y: 0.005556705, z: -0.002875908} + inSlope: {x: 0.002453569, y: -0.0023324224, z: -0.0038077962} + outSlope: {x: 0.0025199484, y: -0.0024143266, z: -0.002388742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.00198461, y: 0.0054561077, z: -0.002975439} + inSlope: {x: 0.0025199484, y: -0.0024143266, z: -0.002388742} + outSlope: {x: 0.002573042, y: -0.00248945, z: -0.0008277806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: -0.0018774, y: 0.0053523807, z: -0.0030099298} + inSlope: {x: 0.002573042, y: -0.00248945, z: -0.0008277806} + outSlope: {x: 0.0026128816, y: -0.002557771, z: 0.00075408054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: -0.0016585549, y: 0.005136667, z: -0.0028893768} + inSlope: {x: 0.0026393959, y: -0.0026193615, z: 0.00213919} + outSlope: {x: 0.0026526963, y: -0.0026740863, z: 0.0033395751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7916666 + value: {x: -0.001437497, y: 0.004911828, z: -0.002568758} + inSlope: {x: 0.0026526998, y: -0.0027220515, z: 0.004355282} + outSlope: {x: 0.0026394173, y: -0.002763185, z: 0.005186345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.001006444, y: 0.004337036, z: -0.0015735539} + inSlope: {x: 0.0025199235, y: -0.0047227317, z: 0.006571428} + outSlope: {x: 0.0024535852, y: -0.005654023, z: 0.006663751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0833333 + value: {x: -0.0007102561, y: 0.003560543, z: -0.0007598217} + inSlope: {x: 0.002281011, y: -0.006676559, z: 0.0062944386} + outSlope: {x: 0.002174813, y: -0.0067677936, z: 0.0058326987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0.0006196387, y: 0.003278551, z: -0.00051679206} + inSlope: {x: 0.002174813, y: -0.0067677936, z: 0.0058326987} + outSlope: {x: 0.00205533, y: -0.006579017, z: 0.005186327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: -0.0005339998, y: 0.0030044247, z: -0.0003006947} + inSlope: {x: 0.00205533, y: -0.006579017, z: 0.005186327} + outSlope: {x: 0.0019225995, y: -0.006110324, z: 0.004355316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2083333 + value: {x: -0.0004538918, y: 0.0027498289, z: -0.00011922389} + inSlope: {x: 0.0019225995, y: -0.006110324, z: 0.004355316} + outSlope: {x: 0.0017765773, y: -0.005361568, z: 0.0033395728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.0003798676, y: 0.00252643, z: 0.000019925235} + inSlope: {x: 0.0017765773, y: -0.005361568, z: 0.0033395728} + outSlope: {x: 0.00161727, y: -0.0043327534, z: 0.0021391676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2916667 + value: {x: -0.0003124812, y: 0.0023458982, z: 0.000109057386} + inSlope: {x: 0.00161727, y: -0.0043327534, z: 0.0021391676} + outSlope: {x: 0.0014447144, y: -0.0030240412, z: 0.0007540975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3333333 + value: {x: -0.000252285, y: 0.0022198968, z: 0.00014047799} + inSlope: {x: 0.0014447144, y: -0.0030240412, z: 0.0007540975} + outSlope: {x: 0.0012588624, y: -0.0014352724, z: -0.00053317787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: -0.0001998323, y: 0.0021600937, z: 0.00011826221} + inSlope: {x: 0.0012588624, y: -0.0014352724, z: -0.00053317787} + outSlope: {x: 0.0010597564, y: 0.00043351567, z: -0.0014472031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.00015567569, y: 0.002178157, z: 0.00005796196} + inSlope: {x: 0.0010597564, y: 0.00043351567, z: -0.0014472031} + outSlope: {x: 0.0008473519, y: 0.0025822904, z: -0.0021327322} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0.0001203695, y: 0.002285752, z: -0.00003090154} + inSlope: {x: 0.0008473519, y: 0.0025822904, z: -0.0021327322} + outSlope: {x: 0.00062169216, y: 0.0041878, z: -0.0025897312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.00009446561, y: 0.0024602439, z: -0.00013880721} + inSlope: {x: 0.00062169216, y: 0.0041878, z: -0.0025897312} + outSlope: {x: 0.0003827469, y: 0.004766319, z: -0.0028182345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.00007851779, y: 0.002658841, z: -0.00025623388} + inSlope: {x: 0.0003827469, y: 0.004766319, z: -0.0028182345} + outSlope: {x: 0.000130534, y: 0.004899163, z: -0.0028182524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5833333 + value: {x: -0.000073078896, y: 0.002862972, z: -0.00037366062} + inSlope: {x: 0.000130534, y: 0.004899163, z: -0.0028182524} + outSlope: {x: 0.000009291825, y: 0.004586268, z: -0.0025897285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: -0.000072691735, y: 0.0030540668, z: -0.00048156618} + inSlope: {x: 0.000009291825, y: 0.004586268, z: -0.0025897285} + outSlope: {x: 0.00002665619, y: 0.003827734, z: -0.0021327205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.00007158106, y: 0.003213556, z: -0.0005704297} + inSlope: {x: 0.00002665619, y: 0.003827734, z: -0.0021327205} + outSlope: {x: 0.000042193657, y: 0.002623468, z: -0.0014472093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7083333 + value: {x: -0.000069823, y: 0.0033228667, z: -0.00063072983} + inSlope: {x: 0.000042193657, y: 0.002623468, z: -0.0014472093} + outSlope: {x: 0.000055902157, y: 0.00097353983, z: -0.000533181} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.75 + value: {x: -0.00006749374, y: 0.003363431, z: -0.0006529458} + inSlope: {x: 0.000055902157, y: 0.00097353983, z: -0.000533181} + outSlope: {x: 0.000067783534, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.2083333 + value: {x: -0.000025954108, y: 0.003363431, z: -0.0006529458} + inSlope: {x: 0.000086062406, y: -0, z: -0} + outSlope: {x: 0.00007783661, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.2916667 + value: {x: -0.00001988659, y: 0.003363431, z: -0.0006529458} + inSlope: {x: 0.00006778359, y: -0, z: -0} + outSlope: {x: 0.000055902674, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.3333333 + value: {x: -0.00001755732, y: 0.003363431, z: -0.0006529458} + inSlope: {x: 0.000055902674, y: -0, z: -0} + outSlope: {x: 0.000042193107, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.375 + value: {x: -0.00001579927, y: 0.003363431, z: -0.0006529458} + inSlope: {x: 0.000042193107, y: -0, z: -0} + outSlope: {x: 0.000026656524, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.4166667 + value: {x: -0.0000146885795, y: 0.003363431, z: -0.0006529458} + inSlope: {x: 0.000026656524, y: -0, z: -0} + outSlope: {x: 0.0000005465549, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0000143014295, y: 0.003363431, z: -0.0006529458} + inSlope: {x: 0.00000054655806, y: -0, z: -0} + outSlope: {x: 0.00000054655806, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0010659234, y: -0.0007641401, z: -0.00018158685} + inSlope: {x: -0.000029418468, y: -0.000015769601, z: -0.00008799523} + outSlope: {x: -0.000029418468, y: -0.000015769601, z: -0.00008799523} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.0010473212, y: -0.00077417714, z: -0.00020767159} + inSlope: {x: -0.00019073901, y: -0.0001032561, z: -0.00022009668} + outSlope: {x: -0.00023830896, y: -0.00012956682, z: -0.000254286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.00071313744, y: -0.0009667142, z: -0.00041406244} + inSlope: {x: -0.00058237166, y: -0.00035716454, z: -0.00013148539} + outSlope: {x: -0.0005777654, y: -0.00035930137, z: -0.00008194681} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.00057605444, y: -0.0010557991, z: -0.0003964084} + inSlope: {x: -0.00050865015, y: -0.00034864817, z: 0.00023959391} + outSlope: {x: -0.00048560544, y: -0.00034221265, z: 0.0003186807} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.0005187453, y: -0.0010975398, z: -0.00034586742} + inSlope: {x: -0.00043030272, y: -0.00032513766, z: 0.0004916172} + outSlope: {x: -0.00039807416, y: -0.00031450004, z: 0.00058547314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.00047353024, y: -0.0011352808, z: -0.0002601303} + inSlope: {x: -0.0003243321, y: -0.00028887956, z: 0.0007879622} + outSlope: {x: -0.00028286243, y: -0.0002739575, z: 0.00089659175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4166666 + value: {x: 0.00046174432, y: -0.0011466957, z: -0.00022277236} + inSlope: {x: -0.00028286243, y: -0.0002739575, z: 0.00089659175} + outSlope: {x: -0.00023832991, y: -0.00025759172, z: 0.0010101466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5416666 + value: {x: 0.0004380326, y: -0.0011766129, z: -0.00009410739} + inSlope: {x: -0.00014004094, y: -0.00022060295, z: 0.0010236035} + outSlope: {x: -0.000086253414, y: -0.00019999764, z: 0.0009901981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.00043443873, y: -0.0011849462, z: -0.000052849053} + inSlope: {x: -0.000086253414, y: -0.00019999764, z: 0.0009901981} + outSlope: {x: -0.000029427436, y: -0.00017790751, z: 0.00095400185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: 0.00043321258, y: -0.0011923589, z: -0.000013099015} + inSlope: {x: -0.000029427436, y: -0.00017790751, z: 0.00095400185} + outSlope: {x: -0.000056979115, y: -0.00015446857, z: 0.00091501325} + tangentMode: 0 + weightedMode: 0 + 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.00043083847, y: -0.0011987952, z: 0.0000250265} + inSlope: {x: -0.000056979115, y: -0.00015446857, z: 0.00091501325} + outSlope: {x: -0.00017820741, y: -0.00012956653, z: 0.00087320403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.00042341312, y: -0.0012041937, z: 0.000061410065} + inSlope: {x: -0.00017820741, y: -0.00012956653, z: 0.00087320403} + outSlope: {x: -0.00031038732, y: -0.00010325263, z: 0.0008286031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.00041048034, y: -0.0012084959, z: 0.00009593517} + inSlope: {x: -0.00031038732, y: -0.00010325263, z: 0.0008286031} + outSlope: {x: -0.0004534967, y: -0.00007550604, z: 0.00078120304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.0003662699, y: -0.0012129366, z: 0.00015894367} + inSlope: {x: -0.0006075532, y: -0.000031068863, z: 0.0007310007} + outSlope: {x: -0.00077253685, y: -0.00003106895, z: 0.00067800586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.0003340809, y: -0.0012142311, z: 0.0001871939} + inSlope: {x: -0.00077253685, y: -0.00003106895, z: 0.00067800586} + outSlope: {x: -0.00094846037, y: -0.000008168228, z: 0.00062220154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9166666 + value: {x: 0.00029456176, y: -0.0012145714, z: 0.00021311894} + inSlope: {x: -0.00094846037, y: -0.000008168228, z: 0.00062220154} + outSlope: {x: -0.0011353107, y: -0.000008169993, z: 0.000563599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.00024725703, y: -0.0012149118, z: 0.00023660227} + inSlope: {x: -0.0011353107, y: -0.000008169993, z: 0.000563599} + outSlope: {x: -0.0013331182, y: -0.000008168228, z: 0.0005021994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.00019171051, y: -0.0012152522, z: 0.00025752722} + inSlope: {x: -0.0013331182, y: -0.000008168228, z: 0.0005021994} + outSlope: {x: -0.0015418468, y: -0.000008168205, z: 0.00043799318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.00012746677, y: -0.0012155925, z: 0.00027577698} + inSlope: {x: -0.0015418468, y: -0.000008168205, z: 0.00043799318} + outSlope: {x: -0.0017615253, y: -0.000008168252, z: 0.00037099203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0833333 + value: {x: 0.00005407017, y: -0.0012159329, z: 0.00029123493} + inSlope: {x: -0.0017615253, y: -0.000008168252, z: 0.00037099203} + outSlope: {x: -0.0016169976, y: -0.000008169993, z: 0.00030118733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0.000013304862, y: -0.0012162733, z: 0.0003037844} + inSlope: {x: -0.0016169976, y: -0.000008169993, z: 0.00030118733} + outSlope: {x: -0.001134086, y: -0.000008168205, z: 0.00022858547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: -0.000060558537, y: -0.0012166136, z: 0.00031330882} + inSlope: {x: -0.001134086, y: -0.000008168205, z: 0.00022858547} + outSlope: {x: -0.0007009102, y: -0.000008168252, z: 0.00015318065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2083333 + value: {x: -0.000089763016, y: -0.001216954, z: 0.00031969132} + inSlope: {x: -0.0007009102, y: -0.000008168252, z: 0.00015318065} + outSlope: {x: -0.00031735032, y: -0.000018449986, z: 0.00007497832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.00010298597, y: -0.0012177227, z: 0.00032281544} + inSlope: {x: -0.00031735032, y: -0.000018449986, z: 0.00007497832} + outSlope: {x: 0.000016495107, y: -0.000018449986, z: -0.0000060287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2916667 + value: {x: -0.000102298676, y: -0.0012184915, z: 0.00032256424} + inSlope: {x: 0.000016495107, y: -0.000018449986, z: -0.0000060287} + outSlope: {x: 0.00030067522, y: -0.000018448303, z: -0.00008983468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3333333 + value: {x: -0.00008977059, y: -0.0012192602, z: 0.00031882114} + inSlope: {x: 0.00030067522, y: -0.000018448303, z: -0.00008983468} + outSlope: {x: 0.0005351596, y: -0.000018449986, z: -0.00017643806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: -0.00006747223, y: -0.0012200288, z: 0.00031146954} + inSlope: {x: 0.0005351596, y: -0.000018449986, z: -0.00017643806} + outSlope: {x: 0.00071997487, y: -0.000023009732, z: -0.0002658453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.000037473226, y: -0.0012209876, z: 0.00030039262} + inSlope: {x: 0.00071997487, y: -0.000023009732, z: -0.0002658453} + outSlope: {x: 0.0008551207, y: -0.000023008077, z: -0.00029913493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0.0000018433319, y: -0.0012219463, z: 0.00028792873} + inSlope: {x: 0.0008551207, y: -0.000023008077, z: -0.00029913493} + outSlope: {x: 0.0009405609, y: -0.000023009732, z: -0.00027499386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: 0.00003734678, y: -0.001222905, z: 0.00027647062} + inSlope: {x: 0.0009405609, y: -0.000023009732, z: -0.00027499386} + outSlope: {x: 0.0009763353, y: -0.000026087115, z: -0.00025169176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5833333 + value: {x: 0.00011812919, y: -0.001225079, z: 0.00025643234} + inSlope: {x: 0.0009624443, y: -0.000026085476, z: -0.00022922782} + outSlope: {x: 0.000898853, y: -0.000026087115, z: -0.00020759454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: 0.00015558147, y: -0.0012261659, z: 0.00024778253} + inSlope: {x: 0.000898853, y: -0.000026087115, z: -0.00020759454} + outSlope: {x: 0.0007855779, y: -0.00002844209, z: -0.00018680388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: 0.00018831395, y: -0.0012273509, z: 0.00023999903} + inSlope: {x: 0.0007855779, y: -0.00002844209, z: -0.00018680388} + outSlope: {x: 0.00062263967, y: -0.000028440465, z: -0.00016684386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7083333 + value: {x: 0.00021425716, y: -0.001228536, z: 0.00023304722} + inSlope: {x: 0.00062263967, y: -0.000028440465, z: -0.00016684386} + outSlope: {x: 0.0004100124, y: -0.00002844209, z: -0.00014772327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.75 + value: {x: 0.00023134104, y: -0.001229721, z: 0.00022689208} + inSlope: {x: 0.0004100124, y: -0.00002844209, z: -0.00014772327} + outSlope: {x: 0.00014771434, y: -0.00002984399, z: -0.00012943421} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: 0.00023749581, y: -0.0012309646, z: 0.00022149898} + inSlope: {x: 0.00014771434, y: -0.00002984399, z: -0.00012943421} + outSlope: {x: -0, y: -0.000029842371, z: -0.00011198623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: 0.00023749587, y: -0.001242497, z: 0.00020232501} + inSlope: {x: -0, y: -0.000030827465, z: 0.000002055015} + outSlope: {x: 4.4703397e-10, y: -0.00003025347, z: 0.000002055015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.00023749605, y: -0.001261696, z: 0.00024273239} + inSlope: {x: -0, y: -0.0000073242463, z: 0.000018472445} + outSlope: {x: -0, y: -0.0000073242463, z: 0.000018472445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00002182968, y: -0.00299883, z: -0.000053090826} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.00002182968, y: -0.00299883, z: -0.000053090826} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000019310834, y: -0.00259617, z: 0.00038391232} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.000019310834, y: -0.00259617, z: 0.00038391232} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0005545899, y: 0.0010460541, z: 0.0005271861} + inSlope: {x: 0.000046821533, y: 0.000031104682, z: -0.000004350543} + outSlope: {x: 0.000046821533, y: 0.000031104682, z: -0.000004350543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.0004911879, y: 0.001067124, z: 0.00052272796} + inSlope: {x: 0.0004422068, y: 0.0001332253, z: -0.000051566356} + outSlope: {x: 0.0005049635, y: 0.00014985685, z: -0.0000651312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.00023502293, y: 0.001141881, z: 0.00047776697} + inSlope: {x: 0.00081036426, y: 0.00023700166, z: -0.00017498009} + outSlope: {x: 0.0008240104, y: 0.00024216223, z: -0.00018887033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.00002845467, y: 0.001203801, z: 0.0004218194} + inSlope: {x: 0.0008103574, y: 0.00024895358, z: -0.00025882944} + outSlope: {x: 0.00079127273, y: 0.0002465074, z: -0.00027291643} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.000004515043, y: 0.0012140721, z: 0.00041044786} + inSlope: {x: 0.00079127273, y: 0.0002465074, z: -0.00027291643} + outSlope: {x: 0.00076673925, y: 0.00024278305, z: -0.00028705742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: 0.00003646248, y: 0.0012241881, z: 0.00039848714} + inSlope: {x: 0.00076673925, y: 0.00024278305, z: -0.00028705742} + outSlope: {x: 0.0007367251, y: 0.00023778844, z: -0.00030121906} + tangentMode: 0 + weightedMode: 0 + 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.00006715937, y: 0.001234096, z: 0.00038593635} + inSlope: {x: 0.0007367251, y: 0.00023778844, z: -0.00030121906} + outSlope: {x: 0.0007012915, y: 0.00023150883, z: -0.0003154245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.00012389556, y: 0.0012530738, z: 0.000359058} + inSlope: {x: 0.0006603762, y: 0.00022395866, z: -0.00032965536} + outSlope: {x: 0.00061402866, y: 0.00021519203, z: -0.00034392657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.00019394464, y: 0.001278657, z: 0.00031427748} + inSlope: {x: 0.0005049347, y: 0.00019372664, z: -0.00037257333} + outSlope: {x: 0.00044223678, y: 0.00018111007, z: -0.00038694657} + tangentMode: 0 + weightedMode: 0 + 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.00024047295, y: 0.001299505, z: 0.00026410638} + inSlope: {x: 0.00030041352, y: 0.00015203805, z: -0.0004158024} + outSlope: {x: 0.00022134994, y: 0.00013560189, z: -0.00043028395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.00025734658, y: 0.001314189, z: 0.00020850539} + inSlope: {x: 0.000046812056, y: 0.00009893041, z: -0.00045934707} + outSlope: {x: 0.000027928972, y: 0.000078646015, z: -0.0004739289} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: 0.00027627192, y: 0.0013206329, z: 0.00012585669} + inSlope: {x: 0.00020010505, y: -0.000015488878, z: -0.0005178885} + outSlope: {x: 0.0002593569, y: -0.000015488878, z: -0.0005326157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7916666 + value: {x: 0.00033469842, y: 0.001312332, z: 0.00003339231} + inSlope: {x: 0.0004426838, y: -0.0000986875, z: -0.0005769902} + outSlope: {x: 0.0005056401, y: -0.00012911772, z: -0.0005918551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.00035576677, y: 0.0013069521, z: 0.000008731633} + inSlope: {x: 0.0005056401, y: -0.00012911772, z: -0.0005918551} + outSlope: {x: 0.0005695354, y: -0.00016082182, z: -0.0006067556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.0003794974, y: 0.0013002511, z: -0.000016549826} + inSlope: {x: 0.0005695354, y: -0.00016082182, z: -0.0006067556} + outSlope: {x: 0.0006343591, y: -0.00019378084, z: -0.0005518275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9166666 + value: {x: 0.000405929, y: 0.001292177, z: -0.000039542614} + inSlope: {x: 0.0006343591, y: -0.00019378084, z: -0.0005518275} + outSlope: {x: 0.0007001258, y: -0.0002045985, z: -0.00043607628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.00043510098, y: 0.001283652, z: -0.000057712496} + inSlope: {x: 0.0007001258, y: -0.0002045985, z: -0.00043607628} + outSlope: {x: 0.0007667826, y: -0.00019265074, z: -0.00033388886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.0004670502, y: 0.0012756248, z: -0.00007162451} + inSlope: {x: 0.0007667826, y: -0.00019265074, z: -0.00033388886} + outSlope: {x: 0.0008343863, y: -0.0001810273, z: -0.00024526072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.0005018164, y: 0.0012680821, z: -0.00008184373} + inSlope: {x: 0.0008343863, y: -0.0001810273, z: -0.00024526072} + outSlope: {x: 0.0009029271, y: -0.00016965931, z: -0.00017018145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0833333 + value: {x: 0.0005394382, y: 0.001261013, z: -0.0000889346} + inSlope: {x: 0.0009029271, y: -0.00016965931, z: -0.00017018145} + outSlope: {x: 0.00083036744, y: -0.0001586613, z: -0.00010866323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: 0.0005740369, y: 0.0012544021, z: -0.000093462244} + inSlope: {x: 0.00083036744, y: -0.0001586613, z: -0.00010866323} + outSlope: {x: 0.0006281087, y: -0.00014793607, z: -0.000060698272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: 0.0006302656, y: 0.0012371971, z: -0.00009719753} + inSlope: {x: 0.00027755534, y: -0.00012744045, z: -0.0000026585112} + outSlope: {x: 0.00012925541, y: -0.00011767186, z: -0.0000026587347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: 0.0006308848, y: 0.001223661, z: -0.00009842806} + inSlope: {x: -0.0001133553, y: -0.00009900193, z: -0.000024215384} + outSlope: {x: -0.00020767322, y: -0.00009016854, z: -0.000057587138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: 0.00061039836, y: 0.0012165031, z: -0.00010518225} + inSlope: {x: -0.0002840005, y: -0.000081621714, z: -0.000104513565} + outSlope: {x: -0.00034234038, y: -0.00007339225, z: -0.00016499532} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: 0.00059613417, y: 0.0012134451, z: -0.00011205707} + inSlope: {x: -0.00034234038, y: -0.00007339225, z: -0.00016499532} + outSlope: {x: -0.0003826834, y: -0.00006544756, z: -0.00023903445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.000580189, y: 0.0012107181, z: -0.00012201685} + inSlope: {x: -0.0003826834, y: -0.00006544756, z: -0.00023903445} + outSlope: {x: -0.00040504368, y: -0.000054179036, z: -0.00032663348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7083333 + value: {x: 0.0005145893, y: 0.0012028541, z: -0.0001758606} + inSlope: {x: -0.00036416668, y: -0.000040188585, z: -0.00028743554} + outSlope: {x: -0.00031455458, y: -0.000024495674, z: -0.00025488625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.875 + value: {x: 0.00048206153, y: 0.0012000515, z: -0.00021079525} + inSlope: {x: -0.000057785397, y: 0.0000062280774, z: -0.00016574768} + outSlope: {x: -0, y: 0.0000062280774, z: -0.00013887021} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: 0.00048206147, y: 0.001201868, z: -0.00023073501} + inSlope: {x: -8.9406793e-10, y: 0.0000062280774, z: 0.0000011068561} + outSlope: {x: -0, y: 0.000006228113, z: 0.0000011068624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.00048206127, y: 0.0012238666, z: -0.00016371667} + inSlope: {x: -0, y: 0.00001177302, z: 0.00003818006} + outSlope: {x: -0, y: 0.000011771366, z: 0.000023943276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.00048206127, y: 0.001224357, z: -0.00016271904} + inSlope: {x: -0, y: 0.000011771366, z: 0.000023943276} + outSlope: {x: -0, y: 0.000011771366, z: 0.000023943276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0029990706, y: -0.0000001607649, z: 0.000054637305} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0029990706, y: -0.0000001607649, z: 0.000054637305} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00035560774, y: 0.000036823505, z: -0.0026000005} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.00035560774, y: 0.000036823505, z: -0.0026000005} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000011850639, y: 1.6015975e-10, z: -0.000067961104} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.000011850639, y: 1.6015975e-10, z: -0.000067961104} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00285833, y: 1.4901161e-10, z: -0.00014242723} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.00285833, y: 1.4901161e-10, z: -0.00014242723} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014556204, y: -0.0014599606, z: -0.00012458155} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0014556204, y: -0.0014599606, z: -0.00012458155} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0027749704, y: 0.00000016925856, z: -0.00000543423} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0027749704, y: 0.00000016925856, z: -0.00000543423} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00209827, y: -0.0000001693517, z: 0.000005433392} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.00209827, y: -0.0000001693517, z: 0.000005433392} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014555808, y: 0.0014553496, z: -0.00012458135} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0014555808, y: 0.0014553496, z: -0.00012458135} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0027952401, y: -3.259629e-10, z: 2.0256266e-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} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.0027952401, y: -3.259629e-10, z: 2.0256266e-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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0020026595, y: -2.2351741e-10, z: -1.3969838e-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} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.0020026595, y: -2.2351741e-10, z: -1.3969838e-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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0027371915, y: -7.8231094e-10, z: -0.00019367966} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0027371915, y: -7.8231094e-10, z: -0.00019367966} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.0000475085, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0, y: 0.0000475085, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0136136385, y: -0.0010463829, z: 0.004070008} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0136136385, y: -0.0010463829, z: 0.004070008} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0136136385, y: -0.0010463829, z: -0.004080487} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0136136385, y: -0.0010463829, z: -0.004080487} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 1, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999998, y: 0.99999976, z: 0.99999976} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.9999998, y: 0.99999976, z: 0.99999976} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.99999994, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 0.99999994, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000001, y: 1.0000001, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 1.0000001, y: 1.0000001, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.9999999, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000001, y: 1.0000001, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 1.0000001, y: 1.0000001, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000001, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 1.0000001, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1.0000001, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 1.0000001, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 1, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 0.9999999, z: 0.9999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.9999999, y: 0.9999999, z: 0.9999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + m_FloatCurves: [] + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 2100000, guid: a18a0015544712349972ba1f9e49f3a7, type: 2} + - time: 2.5833333 + value: {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + - time: 4.125 + value: {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + attribute: m_Materials.Array.data[1] + path: airboy_model + classID: 137 + script: {fileID: 0} + m_SampleRate: 24 + 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: 2504784628 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 279179908 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4291209787 + attribute: 1 + script: {fileID: 0} + typeID: 137 + customType: 21 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 804800636 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4196139211 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 279179908 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1848425199 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2485356428 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 804800636 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4196139211 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2504784628 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1848425199 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2485356428 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: + - {fileID: 2100000, guid: a18a0015544712349972ba1f9e49f3a7, type: 2} + - {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + - {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 4.1666665 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7071068 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.7071068 + inSlope: 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7071067 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.7071067 + inSlope: 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7071081 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.7071081 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7071055 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.7071055 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.31590325 + inSlope: 0.114056826 + outSlope: 0.114056826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.2768783 + inSlope: 0.57785726 + outSlope: 0.57785726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.112037145 + inSlope: 0.813995 + outSlope: 0.813995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.03355196 + inSlope: 0.08057261 + outSlope: 0.08057261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.03357827 + inSlope: -0.4684781 + outSlope: -0.4684781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.15013169 + inSlope: -0.25705558 + outSlope: -0.25705558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.17464542 + inSlope: -0.2238074 + outSlope: -0.2238074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.1854263 + inSlope: -0.43991005 + outSlope: -0.43991005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.23821981 + inSlope: -0.6672269 + outSlope: -0.6672269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.42473492 + inSlope: -0.4477244 + outSlope: -0.4477244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.44939166 + inSlope: 0.19068986 + outSlope: 0.19068986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.35326606 + inSlope: 0.18403244 + outSlope: 0.18403244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.36273906 + inSlope: -0.3559196 + outSlope: -0.3559196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.4200064 + inSlope: -0.08421441 + outSlope: -0.08421441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.4129358 + inSlope: 0.02276406 + outSlope: 0.02276406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.4128638 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.41258615 + inSlope: 0.00024676416 + outSlope: 0.00024676416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1753519 + inSlope: 0.07909083 + outSlope: 0.07909083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.14779104 + inSlope: 0.41296667 + outSlope: 0.41296667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.030446185 + inSlope: 0.5888485 + outSlope: 0.5888485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.030257534 + inSlope: -0.36472565 + outSlope: -0.36472565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.1635339 + inSlope: -0.742672 + outSlope: -0.742672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.28929853 + inSlope: -0.03731866 + outSlope: -0.03731866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.26988885 + inSlope: 0.20154499 + outSlope: 0.20154499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.26249674 + inSlope: -0.03368143 + outSlope: -0.03368143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.2832488 + inSlope: -0.2634765 + outSlope: -0.2634765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.3486544 + inSlope: -0.07709105 + outSlope: -0.07709105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.30562747 + inSlope: 0.4356287 + outSlope: 0.4356287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.13641323 + inSlope: 0.37607586 + outSlope: 0.37607586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.12802929 + inSlope: -0.30489665 + outSlope: -0.30489665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.21288529 + inSlope: -0.4055714 + outSlope: -0.4055714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.24140175 + inSlope: -0.024531823 + outSlope: -0.024531823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.2413651 + inSlope: 0.00012570631 + outSlope: 0.00012570631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.24122377 + inSlope: 0.00012588549 + outSlope: 0.00012588549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.56630915 + inSlope: 0.085817814 + outSlope: 0.085817814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.59493977 + inSlope: 0.42617154 + outSlope: 0.42617154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7090526 + inSlope: 0.51339996 + outSlope: 0.51339996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.7832538 + inSlope: 0.08402398 + outSlope: 0.08402398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.77289075 + inSlope: -0.14062351 + outSlope: -0.14062351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.7412615 + inSlope: -0.04317495 + outSlope: -0.04317495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.7360788 + inSlope: -0.068513624 + outSlope: -0.068513624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.73247606 + inSlope: -0.16062155 + outSlope: -0.16062155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.71259993 + inSlope: -0.26388994 + outSlope: -0.26388994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.6132983 + inSlope: -0.33199054 + outSlope: -0.33199054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.5500201 + inSlope: -0.21801803 + outSlope: -0.21801803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.41418204 + inSlope: -1.035946 + outSlope: -1.035946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.28285858 + inSlope: -0.5662142 + outSlope: -0.5662142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.32990798 + inSlope: 0.6217159 + outSlope: 0.6217159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.39838806 + inSlope: 0.08638168 + outSlope: 0.08638168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.39841026 + inSlope: 0.00007617481 + outSlope: 0.00007617481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.39849585 + inSlope: 0.000076532655 + outSlope: 0.000076532655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7407772 + inSlope: 0.0010056496 + outSlope: 0.0010056496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.7399614 + inSlope: -0.048866984 + outSlope: -0.048866984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.6955322 + inSlope: -0.36357602 + outSlope: -0.36357602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.62005824 + inSlope: -0.093940295 + outSlope: -0.093940295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.61218387 + inSlope: -0.04644797 + outSlope: -0.04644797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.58676934 + inSlope: -0.028412735 + outSlope: -0.028412735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.5956905 + inSlope: 0.1100871 + outSlope: 0.1100871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.60015947 + inSlope: 0.0387154 + outSlope: 0.0387154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.5960058 + inSlope: -0.0780122 + outSlope: -0.0780122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.56736726 + inSlope: -0.021554252 + outSlope: -0.021554252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.6341269 + inSlope: 0.530972 + outSlope: 0.530972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.8276761 + inSlope: 0.6563015 + outSlope: 0.6563015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.8786466 + inSlope: -0.0045428723 + outSlope: -0.0045428723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.8181903 + inSlope: -0.39704627 + outSlope: -0.39704627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.7826214 + inSlope: -0.039112996 + outSlope: -0.039112996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.78265935 + inSlope: 0.00013017666 + outSlope: 0.00013017666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.78280574 + inSlope: 0.00013017704 + outSlope: 0.00013017704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.85060865 + inSlope: -0.0032444 + outSlope: -0.0032444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.8029568 + inSlope: -0.4804179 + outSlope: -0.4804179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6664017 + inSlope: -0.6483771 + outSlope: -0.6483771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.6130701 + inSlope: 0.089567944 + outSlope: 0.089567944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6244915 + inSlope: -0.22318608 + outSlope: -0.22318608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.5296135 + inSlope: -1.1281192 + outSlope: -1.1281192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.3579608 + inSlope: -1.2846407 + outSlope: -1.2846407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.30955642 + inSlope: -0.553356 + outSlope: -0.553356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.31184784 + inSlope: 0.17825542 + outSlope: 0.17825542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.47236198 + inSlope: 1.244132 + outSlope: 1.244132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.68559086 + inSlope: 1.141027 + outSlope: 1.141027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.85700047 + inSlope: 0.558111 + outSlope: 0.558111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.93342066 + inSlope: 0.18703023 + outSlope: 0.18703023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.95104116 + inSlope: -0.11735608 + outSlope: -0.11735608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.8980983 + inSlope: -0.43316498 + outSlope: -0.43316498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.8627134 + inSlope: -0.05822242 + outSlope: -0.05822242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 0.862665 + inSlope: -0.00023817971 + outSlope: -0.00023817971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.86238664 + inSlope: -0.00022029961 + outSlope: -0.00022029961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08955744 + inSlope: 0.013992727 + outSlope: 0.013992727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.07207319 + inSlope: 0.07172306 + outSlope: 0.07172306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.04623962 + inSlope: 0.14713082 + outSlope: 0.14713082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.03554331 + inSlope: -0.011385044 + outSlope: -0.011385044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.037935518 + inSlope: 0.02492528 + outSlope: 0.02492528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.025156107 + inSlope: 0.102591306 + outSlope: 0.102591306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.008361958 + inSlope: 0.088026255 + outSlope: 0.088026255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.005085429 + inSlope: 0.03603808 + outSlope: 0.03603808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.0053587877 + inSlope: -0.0081467675 + outSlope: -0.0081467675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.018564707 + inSlope: -0.15601853 + outSlope: -0.15601853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.054020863 + inSlope: -0.22495615 + outSlope: -0.22495615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.088553116 + inSlope: -0.21342099 + outSlope: -0.21342099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.12276335 + inSlope: -0.12891406 + outSlope: -0.12891406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.12950437 + inSlope: 0.11040738 + outSlope: 0.11040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.110162854 + inSlope: 0.14912961 + outSlope: 0.14912961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.09338542 + inSlope: 0.033533897 + outSlope: 0.033533897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: -0.09340799 + inSlope: -0.00016361443 + outSlope: -0.00016361443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.093511485 + inSlope: 0.00001662976 + outSlope: 0.00001662976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06372336 + inSlope: 0.007861197 + outSlope: 0.007861197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.0619954 + inSlope: -0.038139984 + outSlope: -0.038139984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.060948424 + inSlope: 0.06916799 + outSlope: 0.06916799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.05448761 + inSlope: 0.0026279849 + outSlope: 0.0026279849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.05447142 + inSlope: 0.015637422 + outSlope: 0.015637422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.045295734 + inSlope: 0.059998408 + outSlope: 0.059998408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.026615009 + inSlope: 0.13002396 + outSlope: 0.13002396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.020919789 + inSlope: 0.057752844 + outSlope: 0.057752844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.021802276 + inSlope: -0.020899897 + outSlope: -0.020899897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.04221796 + inSlope: -0.17762905 + outSlope: -0.17762905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.06579099 + inSlope: -0.065029666 + outSlope: -0.065029666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.062143944 + inSlope: 0.0069124615 + outSlope: 0.0069124615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.053561658 + inSlope: 0.040010646 + outSlope: 0.040010646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.04699836 + inSlope: -0.030838639 + outSlope: -0.030838639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.06138269 + inSlope: -0.07532246 + outSlope: -0.07532246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.063438475 + inSlope: 0.0027526568 + outSlope: 0.0027526568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: -0.06339758 + inSlope: 0.0002923602 + outSlope: 0.0002923602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.06320846 + inSlope: -0.00002127894 + outSlope: -0.00002127894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.51418257 + inSlope: 0.008764744 + outSlope: 0.008764744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.5884067 + inSlope: 0.6563322 + outSlope: 0.6563322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.7416576 + inSlope: 0.6015072 + outSlope: 0.6015072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.78734547 + inSlope: -0.07035831 + outSlope: -0.07035831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.7782057 + inSlope: 0.18021998 + outSlope: 0.18021998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.8466552 + inSlope: 0.7024803 + outSlope: 0.7024803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.93331975 + inSlope: 0.50629985 + outSlope: 0.50629985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.95063734 + inSlope: 0.19856447 + outSlope: 0.19856447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.9498668 + inSlope: -0.060122162 + outSlope: -0.060122162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.8801972 + inSlope: -0.6851477 + outSlope: -0.6851477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.7229927 + inSlope: -1.101263 + outSlope: -1.101263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.5038321 + inSlope: -0.9807267 + outSlope: -0.9807267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.33284563 + inSlope: -0.56472605 + outSlope: -0.56472605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.2766596 + inSlope: 0.43699002 + outSlope: 0.43699002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.42132625 + inSlope: 0.9577092 + outSlope: 0.9577092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.49293038 + inSlope: 0.11000863 + outSlope: 0.11000863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 0.49301606 + inSlope: 0.00042271533 + outSlope: 0.00042271533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.49350744 + inSlope: 0.00038552433 + outSlope: 0.00038552433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.30507502 + inSlope: -0.048851967 + outSlope: -0.048851967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.34144738 + inSlope: -0.15213847 + outSlope: -0.15213847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.31942728 + inSlope: 0.37870583 + outSlope: 0.37870583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.24113363 + inSlope: 0.21990724 + outSlope: 0.21990724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.17263289 + inSlope: 0.38871104 + outSlope: 0.38871104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.032052554 + inSlope: 0.62241715 + outSlope: 0.62241715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.027389437 + inSlope: 0.09653613 + outSlope: 0.09653613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.01011557 + inSlope: -0.3319074 + outSlope: -0.3319074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.17427741 + inSlope: -0.6132604 + outSlope: -0.6132604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.29897076 + inSlope: -0.3037755 + outSlope: -0.3037755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.280008 + inSlope: 0.6529528 + outSlope: 0.6529528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.11420933 + inSlope: 0.698106 + outSlope: 0.698106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.101104856 + inSlope: -0.18395641 + outSlope: -0.18395641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.12510529 + inSlope: -0.048455264 + outSlope: -0.048455264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.12568058 + inSlope: 0.00025677631 + outSlope: 0.00025677631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.12533791 + inSlope: 0.0002567778 + outSlope: 0.0002567778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5295725 + inSlope: 0.0075445175 + outSlope: 0.0075445175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.48624566 + inSlope: -0.59625816 + outSlope: -0.59625816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.2946352 + inSlope: -0.9899038 + outSlope: -0.9899038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.18056871 + inSlope: -0.068041526 + outSlope: -0.068041526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.21200985 + inSlope: -0.09209693 + outSlope: -0.09209693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.10059879 + inSlope: -0.69928545 + outSlope: -0.69928545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.021399157 + inSlope: -0.30585566 + outSlope: -0.30585566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.018514836 + inSlope: 0.049925406 + outSlope: 0.049925406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.18218525 + inSlope: 0.9990343 + outSlope: 0.9990343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.47914445 + inSlope: 1.2057147 + outSlope: 1.2057147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.7018745 + inSlope: 0.96406895 + outSlope: 0.96406895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.79109585 + inSlope: -0.21862386 + outSlope: -0.21862386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.6914493 + inSlope: -1.121557 + outSlope: -1.121557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.533718 + inSlope: -0.42374173 + outSlope: -0.42374173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.5243199 + inSlope: -0.0002539153 + outSlope: -0.0002539153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.5239824 + inSlope: -0.0002532015 + outSlope: -0.0002532015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.669985 + inSlope: -0.048007965 + outSlope: -0.048007965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.6467569 + inSlope: -0.011312492 + outSlope: -0.011312492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.66450316 + inSlope: 0.07278372 + outSlope: 0.07278372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.64742315 + inSlope: -0.20519248 + outSlope: -0.20519248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.5970011 + inSlope: -0.041182987 + outSlope: -0.041182987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.6206924 + inSlope: 0.17407338 + outSlope: 0.17407338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.642331 + inSlope: 0.16796868 + outSlope: 0.16796868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.6568661 + inSlope: 0.19080727 + outSlope: 0.19080727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.71819586 + inSlope: 0.044560447 + outSlope: 0.044560447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.6777549 + inSlope: -0.33391982 + outSlope: -0.33391982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.59891313 + inSlope: -0.40458617 + outSlope: -0.40458617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.57238394 + inSlope: 0.35321385 + outSlope: 0.35321385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.65871835 + inSlope: 0.7633096 + outSlope: 0.7633096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.7407068 + inSlope: 0.17444125 + outSlope: 0.17444125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.7445794 + inSlope: 0.00013375256 + outSlope: 0.00013375256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.7447582 + inSlope: 0.00013303808 + outSlope: 0.00013303808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.42142913 + inSlope: 0.031188726 + outSlope: 0.031188726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.47820958 + inSlope: 0.50653476 + outSlope: 0.50653476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.6079407 + inSlope: 0.6022619 + outSlope: 0.6022619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.70006627 + inSlope: 0.28418744 + outSlope: 0.28418744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.7542145 + inSlope: 0.14655378 + outSlope: 0.14655378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.7769128 + inSlope: -0.022301694 + outSlope: -0.022301694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.76563877 + inSlope: -0.13068807 + outSlope: -0.13068807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.75371206 + inSlope: -0.1644401 + outSlope: -0.1644401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.6485604 + inSlope: -0.49822325 + outSlope: -0.49822325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.4708348 + inSlope: -0.935053 + outSlope: -0.935053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.26508665 + inSlope: -0.9440782 + outSlope: -0.9440782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.18303065 + inSlope: 0.27319455 + outSlope: 0.27319455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.27886552 + inSlope: 0.911878 + outSlope: 0.911878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.3883906 + inSlope: 0.24805343 + outSlope: 0.24805343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.39356655 + inSlope: 0.0001645085 + outSlope: 0.0001645085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.39378703 + inSlope: 0.00016593997 + outSlope: 0.00016593997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09286303 + inSlope: -0.075226486 + outSlope: -0.075226486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.12309447 + inSlope: -0.4699096 + outSlope: -0.4699096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.22596635 + inSlope: -0.6190758 + outSlope: -0.6190758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.28470808 + inSlope: -0.32280737 + outSlope: -0.32280737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.31458673 + inSlope: -0.16850773 + outSlope: -0.16850773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.32412454 + inSlope: -0.0956365 + outSlope: -0.0956365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.33384764 + inSlope: 0.07025917 + outSlope: 0.07025917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.31383714 + inSlope: 0.40241626 + outSlope: 0.40241626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.27218 + inSlope: 0.49372792 + outSlope: 0.49372792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.22054249 + inSlope: 0.36427957 + outSlope: 0.36427957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.19080347 + inSlope: 0.34611997 + outSlope: 0.34611997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.15669726 + inSlope: 0.12224584 + outSlope: 0.12224584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.15471789 + inSlope: -0.030058004 + outSlope: -0.030058004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.15920208 + inSlope: -0.17006455 + outSlope: -0.17006455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.16888992 + inSlope: 0.07471997 + outSlope: 0.07471997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.15297538 + inSlope: 0.4549222 + outSlope: 0.4549222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.08987467 + inSlope: -0.031559795 + outSlope: -0.031559795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.1771604 + inSlope: -0.5324242 + outSlope: -0.5324242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.21852058 + inSlope: -0.22879872 + outSlope: -0.22879872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.25727466 + inSlope: -1.0657808 + outSlope: -1.0657808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.317953 + inSlope: -1.4504647 + outSlope: -1.4504647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.37814677 + inSlope: -1.2959166 + outSlope: -1.2959166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0.42594624 + inSlope: -1.0961757 + outSlope: -1.0961757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.46949467 + inSlope: -1.1166545 + outSlope: -1.1166545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.6023809 + inSlope: -0.7176873 + outSlope: -0.7176873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.6218282 + inSlope: 0.52768034 + outSlope: 0.52768034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.5102162 + inSlope: 0.99792325 + outSlope: 0.99792325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.41027436 + inSlope: 0.06964825 + outSlope: 0.06964825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.40976283 + inSlope: 0.0017555968 + outSlope: 0.0017555968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.40778738 + inSlope: 0.0017581054 + outSlope: 0.0017581054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.56734324 + inSlope: -0.0068764687 + outSlope: -0.0068764687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.56594557 + inSlope: 0.15985678 + outSlope: 0.15985678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.69814193 + inSlope: 1.2560483 + outSlope: 1.2560483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.850166 + inSlope: 0.97466385 + outSlope: 0.97466385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.92441815 + inSlope: 0.2618736 + outSlope: 0.2618736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.93860024 + inSlope: 0.12493735 + outSlope: 0.12493735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.9390806 + inSlope: -0.13185596 + outSlope: -0.13185596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.92229456 + inSlope: -0.17497802 + outSlope: -0.17497802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.92434937 + inSlope: 0.2759434 + outSlope: 0.2759434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.96918184 + inSlope: 0.16972852 + outSlope: 0.16972852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.9622849 + inSlope: -0.34301054 + outSlope: -0.34301054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.9037203 + inSlope: -0.29208112 + outSlope: -0.29208112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.8960612 + inSlope: -0.038869627 + outSlope: -0.038869627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.90048116 + inSlope: 0.4853108 + outSlope: 0.4853108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.9365037 + inSlope: 0.24647576 + outSlope: 0.24647576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.92102075 + inSlope: -0.42926633 + outSlope: -0.42926633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.8251485 + inSlope: -0.54591584 + outSlope: -0.54591584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.77949965 + inSlope: 0.15312599 + outSlope: 0.15312599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.8329929 + inSlope: 0.59133947 + outSlope: 0.59133947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.8672853 + inSlope: -0.39552537 + outSlope: -0.39552537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.8265539 + inSlope: -0.5398525 + outSlope: -0.5398525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.82229763 + inSlope: -0.25868174 + outSlope: -0.25868174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.804997 + inSlope: -0.62524915 + outSlope: -0.62524915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.77019364 + inSlope: -0.9193953 + outSlope: -0.9193953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.64971966 + inSlope: -0.7427627 + outSlope: -0.7427627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.60345566 + inSlope: 0.27825755 + outSlope: 0.27825755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.6755971 + inSlope: 0.6454227 + outSlope: 0.6454227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.74134064 + inSlope: 0.05921591 + outSlope: 0.05921591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.7413626 + inSlope: 0.000073671414 + outSlope: 0.000073671414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.74144053 + inSlope: 0.000062942745 + outSlope: 0.000062942745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07026752 + inSlope: 0.012553453 + outSlope: 0.012553453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.07709313 + inSlope: 0.100617886 + outSlope: 0.100617886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.09809146 + inSlope: 0.13192444 + outSlope: 0.13192444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.10933957 + inSlope: -0.027540494 + outSlope: -0.027540494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.08472224 + inSlope: -0.17819999 + outSlope: -0.17819999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.06672845 + inSlope: -0.53000927 + outSlope: -0.53000927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.030287687 + inSlope: -0.6700892 + outSlope: -0.6700892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.06616327 + inSlope: -0.035186447 + outSlope: -0.035186447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.029072868 + inSlope: 0.77982026 + outSlope: 0.77982026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.083157174 + inSlope: 0.81136554 + outSlope: 0.81136554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.13979904 + inSlope: 0.5562984 + outSlope: 0.5562984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.18595847 + inSlope: 0.1588188 + outSlope: 0.1588188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.19009702 + inSlope: -0.15972672 + outSlope: -0.15972672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.17264794 + inSlope: -0.9035794 + outSlope: -0.9035794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.11479881 + inSlope: -1.1534722 + outSlope: -1.1534722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.07652524 + inSlope: -0.8860645 + outSlope: -0.8860645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.002784221 + inSlope: 0.19454703 + outSlope: 0.19454703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.059601527 + inSlope: 0.01566445 + outSlope: 0.01566445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.011991585 + inSlope: -0.8490374 + outSlope: -0.8490374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.0814371 + inSlope: -0.87498295 + outSlope: -0.87498295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.104758956 + inSlope: -0.76003504 + outSlope: -0.76003504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.14477341 + inSlope: -0.712252 + outSlope: -0.712252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0.1641134 + inSlope: -0.19429988 + outSlope: -0.19429988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.16096511 + inSlope: 0.11820297 + outSlope: 0.11820297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.1316218 + inSlope: 0.28655 + outSlope: 0.28655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.08190499 + inSlope: 0.16554268 + outSlope: 0.16554268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.076426245 + inSlope: 0.01586613 + outSlope: 0.01586613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.07982321 + inSlope: -0.025707936 + outSlope: -0.025707936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.07923257 + inSlope: 0.0020255167 + outSlope: 0.0020255167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.076954715 + inSlope: 0.0020240026 + outSlope: 0.0020240026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8152059 + inSlope: -0.0050168037 + outSlope: -0.0050168037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.81154794 + inSlope: -0.19648789 + outSlope: -0.19648789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.6722464 + inSlope: -1.5508981 + outSlope: -1.5508981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.42918986 + inSlope: -2.1275039 + outSlope: -2.1275039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.19826357 + inSlope: -1.3644769 + outSlope: -1.3644769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.09757124 + inSlope: -1.2052445 + outSlope: -1.2052445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.07586938 + inSlope: -1.6340797 + outSlope: -1.6340797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.21564187 + inSlope: -1.3897848 + outSlope: -1.3897848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.2658027 + inSlope: 0.4149229 + outSlope: 0.4149229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.07164178 + inSlope: 2.2672172 + outSlope: 2.2672172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.13438018 + inSlope: 2.4371295 + outSlope: 2.4371295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.3523565 + inSlope: 0.75491214 + outSlope: 0.75491214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.37013495 + inSlope: 0.16413286 + outSlope: 0.16413286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.36603427 + inSlope: -1.0209209 + outSlope: -1.0209209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.2850583 + inSlope: -0.19304425 + outSlope: -0.19304425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.34994745 + inSlope: 1.5248344 + outSlope: 1.5248344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.5577139 + inSlope: 0.8089393 + outSlope: 0.8089393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.5978648 + inSlope: -0.36178315 + outSlope: -0.36178315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.5081612 + inSlope: -1.0802195 + outSlope: -1.0802195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.41832277 + inSlope: -0.039330512 + outSlope: -0.039330512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.4524822 + inSlope: -0.22178778 + outSlope: -0.22178778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.39984033 + inSlope: -0.8821726 + outSlope: -0.8821726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.37896767 + inSlope: 0.008915693 + outSlope: 0.008915693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.40058318 + inSlope: 0.4909982 + outSlope: 0.4909982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.4446094 + inSlope: 0.21726564 + outSlope: 0.21726564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.49240482 + inSlope: 0.34313756 + outSlope: 0.34313756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.5266945 + inSlope: 0.14625306 + outSlope: 0.14625306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.5250879 + inSlope: -0.032295875 + outSlope: -0.032295875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.5255456 + inSlope: 0.0015692725 + outSlope: 0.0015692725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.5273076 + inSlope: 0.001563555 + outSlope: 0.001563555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.899648 + inSlope: 0.20501804 + outSlope: 0.20501804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.9081904 + inSlope: 0.33764076 + outSlope: 0.33764076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.94948554 + inSlope: 0.4676864 + outSlope: 0.4676864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.9844648 + inSlope: -0.0387118 + outSlope: -0.0387118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.92728305 + inSlope: -0.66106164 + outSlope: -0.66106164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.87564003 + inSlope: -0.3427647 + outSlope: -0.3427647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.86601067 + inSlope: -0.12066502 + outSlope: -0.12066502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.81134266 + inSlope: -0.75536835 + outSlope: -0.75536835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.764683 + inSlope: 0.2892555 + outSlope: 0.2892555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.86552364 + inSlope: 1.5056387 + outSlope: 1.5056387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.92691755 + inSlope: 1.2232709 + outSlope: 1.2232709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.986706 + inSlope: 0.31615978 + outSlope: 0.31615978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.99452347 + inSlope: -0.055923775 + outSlope: -0.055923775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.973166 + inSlope: -0.5920774 + outSlope: -0.5920774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.9398094 + inSlope: -1.1747582 + outSlope: -1.1747582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.8752695 + inSlope: -3.306207 + outSlope: -3.306207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.6642924 + inSlope: -2.5317266 + outSlope: -2.5317266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.66429245 + inSlope: 0.0000014305108 + outSlope: 0.0000014305108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.6642932 + inSlope: 0.000003576276 + outSlope: 0.000003576276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.6642934 + inSlope: 0.8697525 + outSlope: 0.8697525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.73677254 + inSlope: 3.0501432 + outSlope: 3.0501432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.91847175 + inSlope: 2.615872 + outSlope: 2.615872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.95476174 + inSlope: 0.6722926 + outSlope: 0.6722926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.97449625 + inSlope: 0.44201195 + outSlope: 0.44201195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.99916905 + inSlope: 0.09407598 + outSlope: 0.09407598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.9919525 + inSlope: -0.1087766 + outSlope: -0.1087766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.9821692 + inSlope: 0.07691559 + outSlope: 0.07691559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.9933732 + inSlope: 0.012017711 + outSlope: 0.012017711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.99346644 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99346656 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0016581212 + inSlope: 0.0021516373 + outSlope: 0.0021516373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.0015684697 + inSlope: 0.0033447328 + outSlope: 0.0033447328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.0011442864 + inSlope: 0.0055192383 + outSlope: 0.0055192383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.0006048187 + inSlope: -0.00046578897 + outSlope: -0.00046578897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.0012143297 + inSlope: -0.0048773345 + outSlope: -0.0048773345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.0015179554 + inSlope: -0.0014684626 + outSlope: -0.0014684626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0014960802 + inSlope: -0.000005435664 + outSlope: -0.000005435664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.0016607038 + inSlope: -0.002256544 + outSlope: -0.002256544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.0017658256 + inSlope: 0.0017609712 + outSlope: 0.0017609712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.0013220006 + inSlope: 0.0076458184 + outSlope: 0.0076458184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00097158185 + inSlope: 0.0081562735 + outSlope: 0.0081562735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.0004043608 + inSlope: 0.0044581457 + outSlope: 0.0044581457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.00024947288 + inSlope: -0.00087046984 + outSlope: -0.00087046984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.00052621524 + inSlope: -0.005050854 + outSlope: -0.005050854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.0007642429 + inSlope: -0.0063738422 + outSlope: -0.0063738422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0010573689 + inSlope: -0.009986923 + outSlope: -0.009986923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.0015964857 + inSlope: -0.0060179327 + outSlope: -0.0060179327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.0015588627 + inSlope: 0.00090295123 + outSlope: 0.00090295123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.0011448108 + inSlope: 0.0009029526 + outSlope: 0.0009029526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -0.0011071876 + inSlope: 0.002127793 + outSlope: 0.002127793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.0009674948 + inSlope: 0.00673497 + outSlope: 0.00673497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.00054594065 + inSlope: 0.0068635894 + outSlope: 0.0068635894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.00039552915 + inSlope: 0.003105152 + outSlope: 0.003105152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0.0002871775 + inSlope: 0.0028378284 + outSlope: 0.0028378284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.000048031525 + inSlope: 0.0023632867 + outSlope: 0.0023632867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.0001301558 + inSlope: 0.00074947614 + outSlope: 0.00074947614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.00013646364 + inSlope: -0.0005201631 + outSlope: -0.0005201631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.000060274346 + inSlope: -0.00014986437 + outSlope: -0.00014986437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.00004641694 + inSlope: -0.000046136047 + outSlope: -0.000046136047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.000005372092 + inSlope: -0.000045953817 + outSlope: -0.000045953817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.43659946 + inSlope: -0.4334135 + outSlope: -0.4334135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.41854057 + inSlope: -0.76202095 + outSlope: -0.76202095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.31378967 + inSlope: -1.4091872 + outSlope: -1.4091872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.17554812 + inSlope: 0.20145473 + outSlope: 0.20145473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.37434697 + inSlope: 1.6422343 + outSlope: 1.6422343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.48295414 + inSlope: 0.64722425 + outSlope: 0.64722425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.5000166 + inSlope: 0.2059274 + outSlope: 0.2059274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.5845641 + inSlope: 1.043303 + outSlope: 1.043303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.6444008 + inSlope: -0.37214285 + outSlope: -0.37214285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.5008611 + inSlope: -2.673634 + outSlope: -2.673634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.37525606 + inSlope: -2.9743285 + outSlope: -2.9743285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.16249648 + inSlope: -1.7031561 + outSlope: -1.7031561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.104486585 + inSlope: 0.4299024 + outSlope: 0.4299024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.23009287 + inSlope: 2.3375502 + outSlope: 2.3375502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.34169188 + inSlope: 3.0424526 + outSlope: 3.0424526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.48363066 + inSlope: 4.8693395 + outSlope: 4.8693395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.7474698 + inSlope: 3.1660733 + outSlope: 3.1660733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.74746984 + inSlope: 0.0000021457672 + outSlope: 0.0000021457672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.7474706 + inSlope: 0.00000071525847 + outSlope: 0.00000071525847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.74747056 + inSlope: -0.85597813 + outSlope: -0.85597813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.6761392 + inSlope: -4.2238398 + outSlope: -4.2238398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.39548424 + inSlope: -4.5452456 + outSlope: -4.5452456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.2973688 + inSlope: -2.0530033 + outSlope: -2.0530033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.22440031 + inSlope: -2.016025 + outSlope: -2.016025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.04074062 + inSlope: -1.9552615 + outSlope: -1.9552615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.12660688 + inSlope: -0.87409806 + outSlope: -0.87409806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.18799776 + inSlope: 0.40933686 + outSlope: 0.40933686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.11493214 + inSlope: 0.100844935 + outSlope: 0.100844935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.114123814 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.11412381 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0034166982 + inSlope: -0.00031848997 + outSlope: -0.00031848997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0034034278 + inSlope: 0.00016151369 + outSlope: 0.00016151369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0034624708 + inSlope: 0.0005597016 + outSlope: 0.0005597016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.0033918202 + inSlope: -0.0013212085 + outSlope: -0.0013212085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.003007988 + inSlope: -0.0032619887 + outSlope: -0.0032619887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.002752198 + inSlope: -0.0021458222 + outSlope: -0.0021458222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.002591162 + inSlope: -0.0014032417 + outSlope: -0.0014032417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.0023049684 + inSlope: -0.003123023 + outSlope: -0.003123023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.0020954316 + inSlope: -0.00016096729 + outSlope: -0.00016096729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.0022845166 + inSlope: 0.0029288665 + outSlope: 0.0029288665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0023999088 + inSlope: 0.0020600846 + outSlope: 0.0020600846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.0024553805 + inSlope: -0.00039786418 + outSlope: -0.00039786418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.002374585 + inSlope: -0.0013328423 + outSlope: -0.0013328423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.002225623 + inSlope: -0.002519196 + outSlope: -0.002519196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.0021020316 + inSlope: -0.0037440208 + outSlope: -0.0037440208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0019136212 + inSlope: -0.008198425 + outSlope: -0.008198425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.0014188301 + inSlope: -0.0063387337 + outSlope: -0.0063387337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.0013853938 + inSlope: -0.0008024719 + outSlope: -0.0008024719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.0010174171 + inSlope: -0.0008024691 + outSlope: -0.0008024691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.0009839808 + inSlope: 0.00044207432 + outSlope: 0.00044207432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.0010542565 + inSlope: 0.0034070597 + outSlope: 0.0034070597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.0012679022 + inSlope: 0.0025882365 + outSlope: 0.0025882365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.0012699426 + inSlope: -0.00024911948 + outSlope: -0.00024911948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.0012471422 + inSlope: -0.0006099211 + outSlope: -0.0006099211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.001178135 + inSlope: -0.0010932509 + outSlope: -0.0010932509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.0010197087 + inSlope: -0.0013097691 + outSlope: -0.0013097691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.0007129035 + inSlope: -0.0011312265 + outSlope: -0.0011312265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.0005209023 + inSlope: -0.00079317146 + outSlope: -0.00079317146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.00040400855 + inSlope: -0.00040162663 + outSlope: -0.00040162663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00004682912 + inSlope: -0.00040004056 + outSlope: -0.00040004056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.48744905 + inSlope: 0.158216 + outSlope: 0.158216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.4630668 + inSlope: 0.52126586 + outSlope: 0.52126586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.3764135 + inSlope: 0.6880589 + outSlope: 0.6880589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.34101003 + inSlope: -0.44129336 + outSlope: -0.44129336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.4319851 + inSlope: -0.6628264 + outSlope: -0.6628264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.454902 + inSlope: -0.5578556 + outSlope: -0.5578556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.50155026 + inSlope: -0.5137973 + outSlope: -0.5137973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.56599337 + inSlope: -0.6016768 + outSlope: -0.6016768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.6197313 + inSlope: -0.58429325 + outSlope: -0.58429325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.6406093 + inSlope: -0.30696723 + outSlope: -0.30696723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.6132087 + inSlope: 0.6437912 + outSlope: 0.6437912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.5487178 + inSlope: 0.666074 + outSlope: 0.666074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.5167873 + inSlope: 0.08811356 + outSlope: 0.08811356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.51848584 + inSlope: -0.1084014 + outSlope: -0.1084014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.52582073 + inSlope: -0.21552715 + outSlope: -0.21552715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.53644645 + inSlope: -0.32029432 + outSlope: -0.32029432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.55251193 + inSlope: -0.49842072 + outSlope: -0.49842072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.5779815 + inSlope: -0.53854454 + outSlope: -0.53854454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.59739065 + inSlope: -0.35881487 + outSlope: -0.35881487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.6040356 + inSlope: 0.2518412 + outSlope: 0.2518412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.5644609 + inSlope: 0.5070703 + outSlope: 0.5070703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.5362444 + inSlope: 0.0028743222 + outSlope: 0.0028743222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.5659043 + inSlope: -0.603134 + outSlope: -0.603134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.6489216 + inSlope: -0.38860288 + outSlope: -0.38860288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -0.6559087 + inSlope: 0.50431895 + outSlope: 0.50431895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.6068951 + inSlope: 2.4003744 + outSlope: 2.4003744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.4558777 + inSlope: 3.0619054 + outSlope: 3.0619054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.35173625 + inSlope: 2.160821 + outSlope: 2.160821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.21367587 + inSlope: 1.4596101 + outSlope: 1.4596101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.06750718 + inSlope: 0.69804215 + outSlope: 0.69804215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.044447694 + inSlope: -0.34076712 + outSlope: -0.34076712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.11946859 + inSlope: -0.73278785 + outSlope: -0.73278785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.19721316 + inSlope: -0.29613927 + outSlope: -0.29613927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.20286714 + inSlope: -0.0015166969 + outSlope: -0.0015166969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.20488772 + inSlope: -0.0015145598 + outSlope: -0.0015145598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5753929 + inSlope: 0.17769098 + outSlope: 0.17769098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.60162634 + inSlope: 0.5209222 + outSlope: 0.5209222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.6754704 + inSlope: 0.49632454 + outSlope: 0.49632454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.6944242 + inSlope: -0.31451645 + outSlope: -0.31451645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6297271 + inSlope: -0.5211832 + outSlope: -0.5211832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.61031324 + inSlope: -0.43567568 + outSlope: -0.43567568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.5862739 + inSlope: -0.06556544 + outSlope: -0.06556544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.5837494 + inSlope: -0.23248315 + outSlope: -0.23248315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.54692227 + inSlope: -0.53611577 + outSlope: -0.53611577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.5254522 + inSlope: -0.31054136 + outSlope: -0.31054136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5496607 + inSlope: 0.40969977 + outSlope: 0.40969977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.56597 + inSlope: -0.33395824 + outSlope: -0.33395824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.46914405 + inSlope: -2.118232 + outSlope: -2.118232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.3610966 + inSlope: -2.8967633 + outSlope: -2.8967633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.22774734 + inSlope: -3.2577105 + outSlope: -3.2577105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.08962059 + inSlope: -3.0288317 + outSlope: -3.0288317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.024655461 + inSlope: -2.9552612 + outSlope: -2.9552612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.15665093 + inSlope: -0.9265567 + outSlope: -0.9265567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.10186829 + inSlope: 1.6056359 + outSlope: 1.6056359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.06985452 + inSlope: 2.2161715 + outSlope: 2.2161715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.24302782 + inSlope: 1.6804056 + outSlope: 1.6804056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.33114034 + inSlope: 0.34991425 + outSlope: 0.34991425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.30981943 + inSlope: -0.6079948 + outSlope: -0.6079948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.20740195 + inSlope: -0.87304604 + outSlope: -0.87304604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.17305337 + inSlope: -0.29582155 + outSlope: -0.29582155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.18275008 + inSlope: 1.4252812 + outSlope: 1.4252812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.2918267 + inSlope: 1.913867 + outSlope: 1.913867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.342239 + inSlope: 1.0676616 + outSlope: 1.0676616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.41731802 + inSlope: 0.80888796 + outSlope: 0.80888796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.4819648 + inSlope: 0.2332986 + outSlope: 0.2332986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.5025361 + inSlope: 0.120252855 + outSlope: 0.120252855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.5066389 + inSlope: -0.12909268 + outSlope: -0.12909268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.48228484 + inSlope: -0.108724385 + outSlope: -0.108724385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.48011285 + inSlope: -0.00076854083 + outSlope: -0.00076854083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.47908342 + inSlope: -0.00077605544 + outSlope: -0.00077605544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3594173 + inSlope: 0.17545724 + outSlope: 0.17545724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.38526985 + inSlope: 0.51477563 + outSlope: 0.51477563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.46043795 + inSlope: 0.5650023 + outSlope: 0.5650023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.52522254 + inSlope: 0.11694719 + outSlope: 0.11694719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5088434 + inSlope: -0.29882163 + outSlope: -0.29882163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.49609447 + inSlope: -0.19424298 + outSlope: -0.19424298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.48248038 + inSlope: -0.38255382 + outSlope: -0.38255382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.3977802 + inSlope: -0.88062227 + outSlope: -0.88062227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.3213437 + inSlope: -0.70537627 + outSlope: -0.70537627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.29930314 + inSlope: -0.1787999 + outSlope: -0.1787999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.3593639 + inSlope: 0.5594497 + outSlope: 0.5594497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.37967417 + inSlope: -0.25460482 + outSlope: -0.25460482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.31529653 + inSlope: -1.163396 + outSlope: -1.163396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.26065284 + inSlope: -1.3623488 + outSlope: -1.3623488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.20176756 + inSlope: -1.4000442 + outSlope: -1.4000442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.14398244 + inSlope: -1.2834727 + outSlope: -1.2834727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.09481145 + inSlope: -1.5512247 + outSlope: -1.5512247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.01471383 + inSlope: -0.32565284 + outSlope: -0.32565284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.067673884 + inSlope: 1.5476041 + outSlope: 1.5476041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.23663162 + inSlope: 2.281141 + outSlope: 2.281141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.42484534 + inSlope: 2.0242743 + outSlope: 2.0242743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.558725 + inSlope: 0.9888522 + outSlope: 0.9888522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.583186 + inSlope: -0.24994713 + outSlope: -0.24994713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.49136847 + inSlope: -0.8830694 + outSlope: -0.8830694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.45777053 + inSlope: -0.13457611 + outSlope: -0.13457611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.4801537 + inSlope: 1.4199048 + outSlope: 1.4199048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.5760958 + inSlope: 1.3336741 + outSlope: 1.3336741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.59129316 + inSlope: 0.16919415 + outSlope: 0.16919415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.58516186 + inSlope: -0.26829726 + outSlope: -0.26829726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.5215484 + inSlope: -0.44911265 + outSlope: -0.44911265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.5153115 + inSlope: 0.43747246 + outSlope: 0.43747246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.59545076 + inSlope: 0.63794684 + outSlope: 0.63794684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.64526093 + inSlope: 0.10804418 + outSlope: 0.10804418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.6459874 + inSlope: 0.0018339122 + outSlope: 0.0018339122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.6484267 + inSlope: 0.0018253396 + outSlope: 0.0018253396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.54966867 + inSlope: -0.16476917 + outSlope: -0.16476917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.524578 + inSlope: -0.5288136 + outSlope: -0.5288136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.43594682 + inSlope: -0.7616211 + outSlope: -0.7616211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.35444105 + inSlope: 0.006489821 + outSlope: 0.006489821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.3973802 + inSlope: 0.4992531 + outSlope: 0.4992531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.41769868 + inSlope: 0.26864815 + outSlope: 0.26864815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.41465998 + inSlope: -0.08587186 + outSlope: -0.08587186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.42504004 + inSlope: 0.32925904 + outSlope: 0.32925904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.46211186 + inSlope: 0.3611162 + outSlope: 0.3611162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.47322032 + inSlope: 0.059802346 + outSlope: 0.059802346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.43898287 + inSlope: -0.07135994 + outSlope: -0.07135994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.48418415 + inSlope: 1.2938462 + outSlope: 1.2938462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.6429797 + inSlope: 2.1150117 + outSlope: 2.1150117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.72996014 + inSlope: 1.8160045 + outSlope: 1.8160045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.79431325 + inSlope: 1.1610925 + outSlope: 1.1610925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.82671785 + inSlope: 0.4009752 + outSlope: 0.4009752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.8277279 + inSlope: -0.3117581 + outSlope: -0.3117581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.80073804 + inSlope: -0.421893 + outSlope: -0.421893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.7925702 + inSlope: -0.24184006 + outSlope: -0.24184006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.7578039 + inSlope: -0.7307104 + outSlope: -0.7307104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.66470134 + inSlope: -1.438586 + outSlope: -1.438586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.53908664 + inSlope: -1.1740448 + outSlope: -1.1740448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.49361756 + inSlope: -0.028074734 + outSlope: -0.028074734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.54262525 + inSlope: 0.6789403 + outSlope: 0.6789403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.574702 + inSlope: 0.7654177 + outSlope: 0.7654177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.6064101 + inSlope: 0.453283 + outSlope: 0.453283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.6124756 + inSlope: 0.40238944 + outSlope: 0.40238944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.6399426 + inSlope: 0.5246262 + outSlope: 0.5246262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.6616448 + inSlope: 0.20142889 + outSlope: 0.20142889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.70081383 + inSlope: 0.2524671 + outSlope: 0.2524671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.69277406 + inSlope: -0.4427024 + outSlope: -0.4427024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.6119499 + inSlope: -0.65346926 + outSlope: -0.65346926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.55870086 + inSlope: -0.12956189 + outSlope: -0.12956189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.5577068 + inSlope: -0.0020141564 + outSlope: -0.0020141564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.5550161 + inSlope: -0.002022751 + outSlope: -0.002022751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.21179546 + inSlope: -0.0024393797 + outSlope: -0.0024393797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.21488203 + inSlope: -0.0077301273 + outSlope: -0.0077301273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.18355975 + inSlope: -0.08176765 + outSlope: -0.08176765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.020580513 + inSlope: -0.37586617 + outSlope: -0.37586617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.05438393 + inSlope: -0.30279124 + outSlope: -0.30279124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0.09323751 + inSlope: -0.07736817 + outSlope: -0.07736817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.09121171 + inSlope: 0.06401045 + outSlope: 0.06401045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.08058676 + inSlope: -0.016736057 + outSlope: -0.016736057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0.081661865 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.081661865 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.16912827 + inSlope: 0.05208707 + outSlope: 0.05208707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.07562941 + inSlope: 0.34247863 + outSlope: 0.34247863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.045167744 + inSlope: -0.09402339 + outSlope: -0.09402339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.11249309 + inSlope: -0.27210414 + outSlope: -0.27210414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.15952702 + inSlope: -0.18573269 + outSlope: -0.18573269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0.20436397 + inSlope: -0.17715177 + outSlope: -0.17715177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.17271675 + inSlope: 0.43802097 + outSlope: 0.43802097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.02915348 + inSlope: 0.14363676 + outSlope: 0.14363676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0.025836177 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.025836179 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.31227723 + inSlope: -0.0165689 + outSlope: -0.0165689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.25686285 + inSlope: -0.23932579 + outSlope: -0.23932579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.08290242 + inSlope: -0.22513995 + outSlope: -0.22513995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.03265261 + inSlope: 0.0026303064 + outSlope: 0.0026303064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.029713703 + inSlope: -0.12632605 + outSlope: -0.12632605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0.079353936 + inSlope: -0.57173103 + outSlope: -0.57173103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.09972447 + inSlope: 0.1410596 + outSlope: 0.1410596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.04766572 + inSlope: 0.056144115 + outSlope: 0.056144115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0.046428174 + inSlope: 0.0000000447034 + outSlope: 0.0000000447034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.046428163 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.910506 + inSlope: 0.015851498 + outSlope: 0.015851498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.9392164 + inSlope: 0.09470914 + outSlope: 0.09470914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.97846454 + inSlope: 0.03877185 + outSlope: 0.03877185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.99290264 + inSlope: -0.023014778 + outSlope: -0.023014778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.9852465 + inSlope: -0.043079115 + outSlope: -0.043079115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.9712081 + inSlope: -0.08926614 + outSlope: -0.08926614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.97565585 + inSlope: 0.097217664 + outSlope: 0.097217664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.9951803 + inSlope: 0.0059745195 + outSlope: 0.0059745195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: 0.99524283 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99524283 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.25013506 + inSlope: -0.017919302 + outSlope: -0.017919302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.28737512 + inSlope: -0.2103953 + outSlope: -0.2103953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.31966755 + inSlope: 0.058106277 + outSlope: 0.058106277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.26770085 + inSlope: 0.21299712 + outSlope: 0.21299712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.24320827 + inSlope: -0.059577465 + outSlope: -0.059577465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.2623595 + inSlope: 0.1957818 + outSlope: 0.1957818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -0.12861393 + inSlope: 0.6582924 + outSlope: 0.6582924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.02627074 + inSlope: 0.4581775 + outSlope: 0.4581775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.023351304 + inSlope: 0.07493452 + outSlope: 0.07493452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.060376227 + inSlope: -0.61045 + outSlope: -0.61045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.16542502 + inSlope: -0.288972 + outSlope: -0.288972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.17815554 + inSlope: 0.000015378013 + outSlope: 0.000015378013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.17813583 + inSlope: 0.000015020428 + outSlope: 0.000015020428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.41935945 + inSlope: -0.10122013 + outSlope: -0.10122013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.29566726 + inSlope: -0.90936995 + outSlope: -0.90936995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.04481837 + inSlope: -1.2641671 + outSlope: -1.2641671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.34576362 + inSlope: -0.6591244 + outSlope: -0.6591244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.39386708 + inSlope: 0.2612821 + outSlope: 0.2612821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.08124651 + inSlope: 1.0608573 + outSlope: 1.0608573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.21335033 + inSlope: 0.87028104 + outSlope: 0.87028104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.337772 + inSlope: 0.6534107 + outSlope: 0.6534107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.4559639 + inSlope: 0.3979736 + outSlope: 0.3979736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.51725864 + inSlope: 0.071875915 + outSlope: 0.071875915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.50973535 + inSlope: -0.06706104 + outSlope: -0.06706104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.5061176 + inSlope: 0.0001430513 + outSlope: 0.0001430513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.5063031 + inSlope: 0.0001430517 + outSlope: 0.0001430517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.21182507 + inSlope: -0.003305912 + outSlope: -0.003305912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.21690747 + inSlope: -0.018440723 + outSlope: -0.018440723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.21542738 + inSlope: 0.04511098 + outSlope: 0.04511098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.19378443 + inSlope: 0.07355495 + outSlope: 0.07355495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.18624726 + inSlope: 0.0463572 + outSlope: 0.0463572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.087502755 + inSlope: 0.40793607 + outSlope: 0.40793607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.048735697 + inSlope: 0.46887076 + outSlope: 0.46887076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.1435341 + inSlope: 0.81894636 + outSlope: 0.81894636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.2774391 + inSlope: 0.11189046 + outSlope: 0.11189046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.13565804 + inSlope: -0.93915457 + outSlope: -0.93915457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.042365026 + inSlope: -0.5159907 + outSlope: -0.5159907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.06555937 + inSlope: 0.00003460053 + outSlope: 0.00003460053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.065514766 + inSlope: 0.00003451122 + outSlope: 0.00003451122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8465815 + inSlope: 0.04371214 + outSlope: 0.04371214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.88484323 + inSlope: 0.22864577 + outSlope: 0.22864577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.9216263 + inSlope: -0.030251011 + outSlope: -0.030251011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.8781978 + inSlope: -0.17603305 + outSlope: -0.17603305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.8666201 + inSlope: 0.110936984 + outSlope: 0.110936984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.95755404 + inSlope: 0.18012351 + outSlope: 0.18012351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.96724606 + inSlope: -0.12714955 + outSlope: -0.12714955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.9298483 + inSlope: -0.35177383 + outSlope: -0.35177383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.84532785 + inSlope: -0.25087976 + outSlope: -0.25087976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.84284943 + inSlope: 0.062207103 + outSlope: 0.062207103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.84321386 + inSlope: -0.038353488 + outSlope: -0.038353488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.841313 + inSlope: -0.00008082397 + outSlope: -0.00008082397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.84120905 + inSlope: -0.00008010895 + outSlope: -0.00008010895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6021076 + inSlope: 0.49427176 + outSlope: 0.49427176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.5815129 + inSlope: 0.7749753 + outSlope: 0.7749753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.47989738 + inSlope: 1.4917219 + outSlope: 1.4917219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.41321614 + inSlope: 1.6046156 + outSlope: 1.6046156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.29040614 + inSlope: 1.1223003 + outSlope: 1.1223003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.23349878 + inSlope: 0.263403 + outSlope: 0.263403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.23070413 + inSlope: 0.2619255 + outSlope: 0.2619255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.18013163 + inSlope: 0.73443925 + outSlope: 0.73443925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.10252797 + inSlope: 0.4492767 + outSlope: 0.4492767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.051849864 + inSlope: 0.5511983 + outSlope: 0.5511983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.062181227 + inSlope: 0.7944908 + outSlope: 0.7944908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.23908971 + inSlope: 1.5003202 + outSlope: 1.5003202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.30882904 + inSlope: 1.9480118 + outSlope: 1.9480118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.40142387 + inSlope: 2.310535 + outSlope: 2.310535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.5013737 + inSlope: 1.4684981 + outSlope: 1.4684981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.5237989 + inSlope: 0.42758387 + outSlope: 0.42758387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.53700566 + inSlope: -0.18191376 + outSlope: -0.18191376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.50863934 + inSlope: -0.9062761 + outSlope: -0.9062761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.34307972 + inSlope: -1.521986 + outSlope: -1.521986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.0057910983 + inSlope: -1.7076509 + outSlope: -1.7076509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.18401699 + inSlope: -0.9604255 + outSlope: -0.9604255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.2383866 + inSlope: -0.06754059 + outSlope: -0.06754059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.24391954 + inSlope: -0.1778235 + outSlope: -0.1778235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.30677482 + inSlope: -0.6337171 + outSlope: -0.6337171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.42955202 + inSlope: 0.0025920793 + outSlope: 0.0025920793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.42156762 + inSlope: 0.8857813 + outSlope: 0.8857813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.35573715 + inSlope: 1.8491049 + outSlope: 1.8491049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.26747563 + inSlope: 1.7955052 + outSlope: 1.7955052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.20611143 + inSlope: 1.2481425 + outSlope: 1.2481425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.13884072 + inSlope: 0.39645565 + outSlope: 0.39645565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.13042752 + inSlope: -0.000021278818 + outSlope: -0.000021278818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.13048889 + inSlope: 0.000037551068 + outSlope: 0.000037551068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0722471 + inSlope: -0.26395127 + outSlope: -0.26395127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.061249133 + inSlope: -0.35573113 + outSlope: -0.35573113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.023549262 + inSlope: -0.46484756 + outSlope: -0.46484756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0038655445 + inSlope: -0.4494084 + outSlope: -0.4494084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.022875762 + inSlope: 0.010440566 + outSlope: 0.010440566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.01794466 + inSlope: 1.0382377 + outSlope: 1.0382377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.0734884 + inSlope: 0.5952014 + outSlope: 0.5952014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.020289449 + inSlope: -1.0125917 + outSlope: -1.0125917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.06782054 + inSlope: -0.37671483 + outSlope: -0.37671483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.122752756 + inSlope: -0.9555092 + outSlope: -0.9555092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.34615162 + inSlope: -1.4636804 + outSlope: -1.4636804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.54569286 + inSlope: -0.54017407 + outSlope: -0.54017407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.55638 + inSlope: 0.20010802 + outSlope: 0.20010802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.5290172 + inSlope: 1.3949698 + outSlope: 1.3949698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.44013235 + inSlope: 2.7845073 + outSlope: 2.7845073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.2969749 + inSlope: 2.6746001 + outSlope: 2.6746001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.21724923 + inSlope: 1.4807813 + outSlope: 1.4807813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.17357644 + inSlope: 0.74532163 + outSlope: 0.74532163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.14898284 + inSlope: -0.01414437 + outSlope: -0.01414437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.105788276 + inSlope: 0.6461554 + outSlope: 0.6461554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.011512635 + inSlope: 1.0962842 + outSlope: 1.0962842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.1267206 + inSlope: 0.5811478 + outSlope: 0.5811478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.14324294 + inSlope: -0.21393205 + outSlope: -0.21393205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.09010942 + inSlope: -0.60508883 + outSlope: -0.60508883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.178709 + inSlope: -1.8009958 + outSlope: -1.8009958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.2556886 + inSlope: -2.344891 + outSlope: -2.344891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.3741163 + inSlope: -2.6153655 + outSlope: -2.6153655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.47363546 + inSlope: -1.8097008 + outSlope: -1.8097008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.524925 + inSlope: -0.95726585 + outSlope: -0.95726585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.56757885 + inSlope: -0.22624211 + outSlope: -0.22624211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.57222766 + inSlope: 0.0004012577 + outSlope: 0.0004012577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.57168216 + inSlope: 0.0003876701 + outSlope: 0.0003876701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5922965 + inSlope: 0.124614716 + outSlope: 0.124614716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.59748876 + inSlope: 0.019763231 + outSlope: 0.019763231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.56721133 + inSlope: -0.9104097 + outSlope: -0.9104097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.51807594 + inSlope: -1.327982 + outSlope: -1.327982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.39981568 + inSlope: -1.2151439 + outSlope: -1.2151439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.32597104 + inSlope: -0.54263604 + outSlope: -0.54263604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.3100645 + inSlope: -0.11301943 + outSlope: -0.11301943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.33076617 + inSlope: 0.28725284 + outSlope: 0.28725284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.34958902 + inSlope: 0.03363345 + outSlope: 0.03363345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.34801033 + inSlope: 0.0068975757 + outSlope: 0.0068975757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.34402904 + inSlope: -0.11332585 + outSlope: -0.11332585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.3404018 + inSlope: 0.4042362 + outSlope: 0.4042362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.3663408 + inSlope: 1.0317581 + outSlope: 1.0317581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.42638156 + inSlope: 2.0165977 + outSlope: 2.0165977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.53439075 + inSlope: 3.106215 + outSlope: 3.106215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.6852329 + inSlope: 2.7023115 + outSlope: 2.7023115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.7595832 + inSlope: 1.5041445 + outSlope: 1.5041445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.8105783 + inSlope: 1.0665722 + outSlope: 1.0665722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.90023047 + inSlope: 0.43804944 + outSlope: 0.43804944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.8854437 + inSlope: -0.7101382 + outSlope: -0.7101382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.73932254 + inSlope: -1.5803723 + outSlope: -1.5803723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.5204587 + inSlope: -1.6978769 + outSlope: -1.6978769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.31201553 + inSlope: -0.75137115 + outSlope: -0.75137115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.267047 + inSlope: 0.29428813 + outSlope: 0.29428813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.46815962 + inSlope: 1.3442609 + outSlope: 1.3442609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.52502084 + inSlope: 1.64413 + outSlope: 1.64413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.60517025 + inSlope: 1.7689755 + outSlope: 1.7689755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.6724353 + inSlope: 1.2731428 + outSlope: 1.2731428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.7112657 + inSlope: 0.7359904 + outSlope: 0.7359904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.7454816 + inSlope: 0.18070187 + outSlope: 0.18070187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.7488529 + inSlope: 0.0003197187 + outSlope: 0.0003197187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.7492892 + inSlope: 0.00029897803 + outSlope: 0.00029897803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5305013 + inSlope: 0.43735456 + outSlope: 0.43735456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.5487244 + inSlope: 0.79871464 + outSlope: 0.79871464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.6688911 + inSlope: 1.821938 + outSlope: 1.821938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.748889 + inSlope: 1.8069553 + outSlope: 1.8069553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.8690733 + inSlope: 0.964812 + outSlope: 0.964812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9159144 + inSlope: 0.23393947 + outSlope: 0.23393947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.91936666 + inSlope: 0.075259924 + outSlope: 0.075259924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.92613965 + inSlope: 0.06949569 + outSlope: 0.06949569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.9288035 + inSlope: 0.013521919 + outSlope: 0.013521919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.9279721 + inSlope: -0.10753089 + outSlope: -0.10753089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.8706071 + inSlope: -0.5966593 + outSlope: -0.5966593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.727449 + inSlope: -1.1026549 + outSlope: -1.1026549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.678867 + inSlope: -1.3594112 + outSlope: -1.3594112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.6141648 + inSlope: -1.9187093 + outSlope: -1.9187093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.5189744 + inSlope: -2.4529552 + outSlope: -2.4529552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.4097518 + inSlope: -2.6788366 + outSlope: -2.6788366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.29573825 + inSlope: -2.1253715 + outSlope: -2.1253715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.2326375 + inSlope: -1.0583434 + outSlope: -1.0583434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.2229026 + inSlope: 0.54267144 + outSlope: 0.54267144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.45250946 + inSlope: 1.5025456 + outSlope: 1.5025456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.64761674 + inSlope: 1.5165303 + outSlope: 1.5165303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.8100842 + inSlope: 0.99666137 + outSlope: 0.99666137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.9069901 + inSlope: 0.24872255 + outSlope: 0.24872255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.90909594 + inSlope: -0.2506018 + outSlope: -0.2506018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.7512488 + inSlope: -1.2781081 + outSlope: -1.2781081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.693727 + inSlope: -1.7427799 + outSlope: -1.7427799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.60601735 + inSlope: -2.301287 + outSlope: -2.301287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.50195324 + inSlope: -2.2368774 + outSlope: -2.2368774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.41961053 + inSlope: -1.7200639 + outSlope: -1.7200639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.32067847 + inSlope: -0.6092944 + outSlope: -0.6092944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.30783674 + inSlope: -0.000039338993 + outSlope: -0.000039338993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.30776262 + inSlope: 0.0000021457754 + outSlope: 0.0000021457754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0006869979 + inSlope: -0.009221169 + outSlope: -0.009221169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.0010712133 + inSlope: -0.015906582 + outSlope: -0.015906582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0020125464 + inSlope: -0.02630977 + outSlope: -0.02630977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.005136564 + inSlope: -0.005295573 + outSlope: -0.005295573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.0028387085 + inSlope: 0.045641758 + outSlope: 0.045641758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0010910977 + inSlope: 0.033828963 + outSlope: 0.033828963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.000019628791 + inSlope: 0.012353272 + outSlope: 0.012353272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.00006165861 + inSlope: -0.0073292623 + outSlope: -0.0073292623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.00063040055 + inSlope: -0.014376585 + outSlope: -0.014376585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.0019740288 + inSlope: -0.005897496 + outSlope: -0.005897496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0022863257 + inSlope: -0.007498064 + outSlope: -0.007498064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.0038606103 + inSlope: -0.0120110605 + outSlope: -0.0120110605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.004858477 + inSlope: 0.005198015 + outSlope: 0.005198015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.0040446185 + inSlope: 0.014605793 + outSlope: 0.014605793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.003332703 + inSlope: 0.030213024 + outSlope: 0.030213024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.0015268635 + inSlope: 0.039990723 + outSlope: 0.039990723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00000014046584 + inSlope: 0.018320693 + outSlope: 0.018320693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.00000014061169 + inSlope: -0.0000000035003023 + outSlope: -0.0000000035003023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.00000014469556 + inSlope: -0.0000000024433529 + outSlope: -0.0000000024433529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.00000014475332 + inSlope: -0.010000917 + outSlope: -0.010000917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.0008335513 + inSlope: -0.041580573 + outSlope: -0.041580573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.0034651947 + inSlope: -0.039924778 + outSlope: -0.039924778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.0041606226 + inSlope: -0.013420727 + outSlope: -0.013420727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.00482675 + inSlope: -0.0039404538 + outSlope: -0.0039404538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: -0.004911966 + inSlope: -0.0000000111758816 + outSlope: -0.0000000111758816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0049119773 + inSlope: -0.0000000111759135 + outSlope: -0.0000000111759135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14842014 + inSlope: 1.3699071 + outSlope: 1.3699071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.2054996 + inSlope: 1.8382982 + outSlope: 1.8382982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.30161166 + inSlope: 2.1036446 + outSlope: 2.1036446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.4306143 + inSlope: -0.41069317 + outSlope: -0.41069317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.30934623 + inSlope: -2.4523497 + outSlope: -2.4523497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.18681164 + inSlope: -3.4102623 + outSlope: -3.4102623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.025157768 + inSlope: -1.9062297 + outSlope: -1.9062297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.027959207 + inSlope: 1.2571093 + outSlope: 1.2571093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.12991685 + inSlope: 2.0725508 + outSlope: 2.0725508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.26989204 + inSlope: 0.09726378 + outSlope: 0.09726378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.24745303 + inSlope: 0.22443393 + outSlope: 0.22443393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.3757104 + inSlope: 1.1694908 + outSlope: 1.1694908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.472978 + inSlope: -0.50528973 + outSlope: -0.50528973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.3938007 + inSlope: -1.4214609 + outSlope: -1.4214609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.3245076 + inSlope: -2.0767984 + outSlope: -2.0767984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.22073404 + inSlope: -3.9213784 + outSlope: -3.9213784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0022739123 + inSlope: -2.676098 + outSlope: -2.676098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.0022739118 + inSlope: 0.000000013969828 + outSlope: 0.000000013969828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.0022738944 + inSlope: 0.000007345327 + outSlope: 0.000007345327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.0022732832 + inSlope: 1.9499764 + outSlope: 1.9499764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.16022353 + inSlope: 3.9965272 + outSlope: 3.9965272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.33077037 + inSlope: 2.7018352 + outSlope: 2.7018352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.3853769 + inSlope: 0.8134318 + outSlope: 0.8134318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.39548236 + inSlope: -0.07654795 + outSlope: -0.07654795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.3921774 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.3921774 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0045775813 + inSlope: 0.012574296 + outSlope: 0.012574296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0051015103 + inSlope: 0.021410778 + outSlope: 0.021410778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.006361813 + inSlope: 0.033876076 + outSlope: 0.033876076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.010764957 + inSlope: 0.024492234 + outSlope: 0.024492234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.008726021 + inSlope: -0.06931968 + outSlope: -0.06931968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.005737826 + inSlope: -0.09534134 + outSlope: -0.09534134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.00078091136 + inSlope: -0.04239069 + outSlope: -0.04239069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.0022052708 + inSlope: 0.048365027 + outSlope: 0.048365027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.00481133 + inSlope: 0.047333624 + outSlope: 0.047333624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.0070425877 + inSlope: 0.019580625 + outSlope: 0.019580625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.008951758 + inSlope: 0.01912775 + outSlope: 0.01912775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.00952214 + inSlope: -0.0048601045 + outSlope: -0.0048601045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.009049892 + inSlope: 0.0027055303 + outSlope: 0.0027055303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.009440254 + inSlope: 0.006066816 + outSlope: 0.006066816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.009713726 + inSlope: -0.03232492 + outSlope: -0.03232492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.006746505 + inSlope: -0.11741433 + outSlope: -0.11741433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00007080113 + inSlope: -0.08180775 + outSlope: -0.08180775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.000070801216 + inSlope: -0.0000000022700974 + outSlope: -0.0000000022700974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.00007080382 + inSlope: 0.00000023451821 + outSlope: 0.00000023451821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.000070784175 + inSlope: 0.062472764 + outSlope: 0.062472764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.00513524 + inSlope: 0.119480036 + outSlope: 0.119480036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.009885875 + inSlope: 0.057917167 + outSlope: 0.057917167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.00996168 + inSlope: 0.007930971 + outSlope: 0.007930971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.011208747 + inSlope: 0.011683714 + outSlope: 0.011683714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.011520443 + inSlope: 0.000000022351763 + outSlope: 0.000000022351763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.011520463 + inSlope: 0.000000022351827 + outSlope: 0.000000022351827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9889136 + inSlope: -0.24648571 + outSlope: -0.24648571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.97864336 + inSlope: -0.42607284 + outSlope: -0.42607284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.9534075 + inSlope: -0.64832425 + outSlope: -0.64832425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.90245724 + inSlope: 0.1834331 + outSlope: 0.1834331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.9509052 + inSlope: 0.74576056 + outSlope: 0.74576056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.98237836 + inSlope: 0.5853361 + outSlope: 0.5853361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.9996832 + inSlope: 0.206739 + outSlope: 0.206739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.9996066 + inSlope: -0.09804156 + outSlope: -0.09804156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.9915131 + inSlope: -0.23961788 + outSlope: -0.23961788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.96286285 + inSlope: -0.025616813 + outSlope: -0.025616813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.96885586 + inSlope: -0.062286586 + outSlope: -0.062286586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.92668015 + inSlope: -0.47149777 + outSlope: -0.47149777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.8810144 + inSlope: 0.26479596 + outSlope: 0.26479596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.9191385 + inSlope: 0.59215367 + outSlope: 0.59215367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.94582736 + inSlope: 0.67405164 + outSlope: 0.67405164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.9753095 + inSlope: 0.65004045 + outSlope: 0.65004045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.99999744 + inSlope: 0.29625562 + outSlope: 0.29625562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.99999744 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.99999744 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.99999744 + inSlope: -0.15516531 + outSlope: -0.15516531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.98706704 + inSlope: -0.67613083 + outSlope: -0.67613083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.94365317 + inSlope: -0.7724497 + outSlope: -0.7724497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.9226961 + inSlope: -0.3189774 + outSlope: -0.3189774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.9183925 + inSlope: 0.03279227 + outSlope: 0.03279227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.9198044 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9198044 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09302473 + inSlope: -0.0035853982 + outSlope: -0.0035853982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.08527517 + inSlope: -0.036425285 + outSlope: -0.036425285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.06692755 + inSlope: -0.061687604 + outSlope: -0.061687604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.04868116 + inSlope: 0.0068936935 + outSlope: 0.0068936935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.07476819 + inSlope: 0.08403956 + outSlope: 0.08403956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.088947006 + inSlope: 0.052410953 + outSlope: 0.052410953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.09473985 + inSlope: 0.023085488 + outSlope: 0.023085488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.09608159 + inSlope: -0.029900758 + outSlope: -0.029900758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.08664494 + inSlope: -0.19390868 + outSlope: -0.19390868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.06748502 + inSlope: -0.21663642 + outSlope: -0.21663642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.05383193 + inSlope: 0.045800254 + outSlope: 0.045800254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.0733892 + inSlope: 0.19181167 + outSlope: 0.19181167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.08775698 + inSlope: 0.12610024 + outSlope: 0.12610024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.092175506 + inSlope: -0.028516743 + outSlope: -0.028516743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.08520625 + inSlope: -0.090654574 + outSlope: -0.090654574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.081769235 + inSlope: -0.050031416 + outSlope: -0.050031416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.081782475 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.081782475 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.067266546 + inSlope: -0.0032497644 + outSlope: -0.0032497644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.07410443 + inSlope: -0.034162037 + outSlope: -0.034162037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.09146699 + inSlope: -0.05364491 + outSlope: -0.05364491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.10164027 + inSlope: 0.006760155 + outSlope: 0.006760155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.08409769 + inSlope: 0.06958255 + outSlope: 0.06958255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.07112953 + inSlope: 0.05578991 + outSlope: 0.05578991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.06218426 + inSlope: 0.05415811 + outSlope: 0.05415811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.06030825 + inSlope: -0.06385617 + outSlope: -0.06385617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.07372433 + inSlope: -0.21805146 + outSlope: -0.21805146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.091311984 + inSlope: -0.14827287 + outSlope: -0.14827287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.09663983 + inSlope: 0.037334356 + outSlope: 0.037334356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.087456144 + inSlope: 0.09581707 + outSlope: 0.09581707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.07815932 + inSlope: 0.120737076 + outSlope: 0.120737076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.070262305 + inSlope: 0.009720666 + outSlope: 0.009720666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.07674479 + inSlope: -0.10445033 + outSlope: -0.10445033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.080967754 + inSlope: -0.06944297 + outSlope: -0.06944297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.08222532 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.082225315 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.24988492 + inSlope: -0.06900215 + outSlope: -0.06900215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.08960249 + inSlope: -0.7421987 + outSlope: -0.7421987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.21820419 + inSlope: -0.76832545 + outSlope: -0.76832545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.4066128 + inSlope: 0.044107452 + outSlope: 0.044107452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.10991185 + inSlope: 1.4375086 + outSlope: 1.4375086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.17907694 + inSlope: 1.1583533 + outSlope: 1.1583533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.30849138 + inSlope: 0.29572934 + outSlope: 0.29572934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.28704354 + inSlope: -1.2152958 + outSlope: -1.2152958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.10492282 + inSlope: -2.788119 + outSlope: -2.788119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.14202015 + inSlope: -2.7678049 + outSlope: -2.7678049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.34972265 + inSlope: 0.011273742 + outSlope: 0.011273742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.14116666 + inSlope: 2.6614394 + outSlope: 2.6614394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.081795834 + inSlope: 2.2149935 + outSlope: 2.2149935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.18893106 + inSlope: 0.01625523 + outSlope: 0.01625523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.097895406 + inSlope: -1.5074147 + outSlope: -1.5074147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.034922346 + inSlope: -1.0990906 + outSlope: -1.0990906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.0063412553 + inSlope: -0.000000005587925 + outSlope: -0.000000005587925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0063412474 + inSlope: -0.0000000111759135 + outSlope: -0.0000000111759135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9614464 + inSlope: 0.017942905 + outSlope: 0.017942905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.98954946 + inSlope: 0.06710028 + outSlope: 0.06710028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.96929944 + inSlope: -0.17319492 + outSlope: -0.17319492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.90662307 + inSlope: 0.019904912 + outSlope: 0.019904912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.98755085 + inSlope: 0.15847848 + outSlope: 0.15847848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.9772208 + inSlope: -0.20937128 + outSlope: -0.20937128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.9444525 + inSlope: -0.093279384 + outSlope: -0.093279384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.9511768 + inSlope: 0.3344482 + outSlope: 0.3344482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.98795176 + inSlope: 0.2767505 + outSlope: 0.2767505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.98333013 + inSlope: -0.3783266 + outSlope: -0.3783266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.9302994 + inSlope: 0.0049202815 + outSlope: 0.0049202815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.9833806 + inSlope: 0.3651853 + outSlope: 0.3651853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.98969656 + inSlope: -0.15167606 + outSlope: -0.15167606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.9751266 + inSlope: 0.0007030964 + outSlope: 0.0007030964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.98856795 + inSlope: 0.14908175 + outSlope: 0.14908175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.9927429 + inSlope: 0.05640353 + outSlope: 0.05640353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.9932323 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9932323 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2783816 + inSlope: -0.3094797 + outSlope: -0.3094797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.2654866 + inSlope: -0.6602871 + outSlope: -0.6602871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.22335766 + inSlope: -1.6143391 + outSlope: -1.6143391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.13095835 + inSlope: -3.1432607 + outSlope: -3.1432607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.038580753 + inSlope: -4.1456704 + outSlope: -4.1456704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.21451423 + inSlope: -2.7727256 + outSlope: -2.7727256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.26964122 + inSlope: -0.29129148 + outSlope: -0.29129148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.23878849 + inSlope: 1.1267076 + outSlope: 1.1267076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.102638744 + inSlope: 1.8177124 + outSlope: 1.8177124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.056553707 + inSlope: 1.9550211 + outSlope: 1.9550211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.3753435 + inSlope: 1.6669315 + outSlope: 1.6669315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.55478823 + inSlope: -0.0012653992 + outSlope: -0.0012653992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.44580686 + inSlope: -0.5450207 + outSlope: -0.5450207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.34311983 + inSlope: -0.19020784 + outSlope: -0.19020784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.27562892 + inSlope: -0.83789027 + outSlope: -0.83789027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.0850288 + inSlope: -2.3052232 + outSlope: -2.3052232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.021236746 + inSlope: -2.6197453 + outSlope: -2.6197453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.1332831 + inSlope: -2.5076683 + outSlope: -2.5076683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.3003825 + inSlope: -1.4141726 + outSlope: -1.4141726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.39475965 + inSlope: -0.28180566 + outSlope: -0.28180566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.35884923 + inSlope: 0.596863 + outSlope: 0.596863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.18345328 + inSlope: 1.4769678 + outSlope: 1.4769678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.117971554 + inSlope: 1.5814484 + outSlope: 1.5814484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.05166603 + inSlope: 1.2002203 + outSlope: 1.2002203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.017953003 + inSlope: 0.7272762 + outSlope: 0.7272762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.01642461 + inSlope: -0.17947868 + outSlope: -0.17947868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.04174522 + inSlope: -0.7828872 + outSlope: -0.7828872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.08450034 + inSlope: -0.15895438 + outSlope: -0.15895438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.084508464 + inSlope: -0.00006499892 + outSlope: -0.00006499892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.08459234 + inSlope: -0.00006508852 + outSlope: -0.00006508852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14141959 + inSlope: 0.18473518 + outSlope: 0.18473518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.14911689 + inSlope: 0.31639034 + outSlope: 0.31639034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.16778545 + inSlope: 0.3249069 + outSlope: 0.3249069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.17619246 + inSlope: -0.46277684 + outSlope: -0.46277684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.12922071 + inSlope: -2.0535653 + outSlope: -2.0535653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.0050620036 + inSlope: -2.9096346 + outSlope: -2.9096346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.113248825 + inSlope: -2.283634 + outSlope: -2.283634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.18524083 + inSlope: -1.3027105 + outSlope: -1.3027105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.23365344 + inSlope: -0.13635781 + outSlope: -0.13635781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.2317101 + inSlope: 0.044321008 + outSlope: 0.044321008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.21941811 + inSlope: 0.10609551 + outSlope: 0.10609551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.1641978 + inSlope: 0.5413608 + outSlope: 0.5413608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.023725247 + inSlope: 0.82438904 + outSlope: 0.82438904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.21317276 + inSlope: 0.3125304 + outSlope: 0.3125304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.22328363 + inSlope: -0.24683139 + outSlope: -0.24683139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.13685836 + inSlope: -1.2519652 + outSlope: -1.2519652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.07640048 + inSlope: -1.5721343 + outSlope: -1.5721343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.0058472897 + inSlope: -1.6657524 + outSlope: -1.6657524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.11876829 + inSlope: -1.2154064 + outSlope: -1.2154064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.22709353 + inSlope: -0.6105109 + outSlope: -0.6105109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.3152422 + inSlope: -0.3127035 + outSlope: -0.3127035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.38466907 + inSlope: -0.60142636 + outSlope: -0.60142636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.41175365 + inSlope: -0.66215754 + outSlope: -0.66215754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.4398488 + inSlope: -0.26376042 + outSlope: -0.26376042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.43373373 + inSlope: 0.15823871 + outSlope: 0.15823871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.4094467 + inSlope: 0.6610077 + outSlope: 0.6610077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.3301549 + inSlope: 0.8573557 + outSlope: 0.8573557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.28883126 + inSlope: 0.1355779 + outSlope: 0.1355779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.28883886 + inSlope: -0.000060796796 + outSlope: -0.000060796796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.28891742 + inSlope: -0.000061512226 + outSlope: -0.000061512226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.21781448 + inSlope: 0.3399067 + outSlope: 0.3399067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.23197725 + inSlope: 0.6874845 + outSlope: 0.6874845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.27510485 + inSlope: 1.4932299 + outSlope: 1.4932299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.35641307 + inSlope: 2.4647849 + outSlope: 2.4647849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.4805036 + inSlope: 3.0258603 + outSlope: 3.0258603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.60856813 + inSlope: 2.623765 + outSlope: 2.623765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.6991507 + inSlope: 1.8159097 + outSlope: 1.8159097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.75989395 + inSlope: 1.1841507 + outSlope: 1.1841507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.81649286 + inSlope: 0.2984784 + outSlope: 0.2984784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.8217338 + inSlope: -0.12804654 + outSlope: -0.12804654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.72340065 + inSlope: -1.0276239 + outSlope: -1.0276239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.48466566 + inSlope: -0.8551513 + outSlope: -0.8551513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.3893296 + inSlope: -0.18432587 + outSlope: -0.18432587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.34703127 + inSlope: -0.0665939 + outSlope: -0.0665939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.3763514 + inSlope: 0.46882355 + outSlope: 0.46882355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.45833153 + inSlope: 0.71700525 + outSlope: 0.71700525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.48700684 + inSlope: 0.58700955 + outSlope: 0.58700955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.50724894 + inSlope: 0.35982084 + outSlope: 0.35982084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.51978344 + inSlope: 0.035277877 + outSlope: 0.035277877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.5221159 + inSlope: 0.07385309 + outSlope: 0.07385309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.55616605 + inSlope: 0.1185012 + outSlope: 0.1185012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.5760851 + inSlope: 0.09351182 + outSlope: 0.09351182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.57863116 + inSlope: 0.036184896 + outSlope: 0.036184896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.5791005 + inSlope: 0.008031592 + outSlope: 0.008031592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.57930046 + inSlope: 0.07773571 + outSlope: 0.07773571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.59879 + inSlope: 0.39352438 + outSlope: 0.39352438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.63739794 + inSlope: 0.36367667 + outSlope: 0.36367667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.6515999 + inSlope: 0.035043173 + outSlope: 0.035043173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.65159655 + inSlope: -0.000027179747 + outSlope: -0.000027179747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.6515617 + inSlope: -0.000027179822 + outSlope: -0.000027179822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.92469513 + inSlope: -0.020688057 + outSlope: -0.020688057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.92383313 + inSlope: -0.057145357 + outSlope: -0.057145357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.919933 + inSlope: -0.18793704 + outSlope: -0.18793704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.9081717 + inSlope: -0.6404514 + outSlope: -0.6404514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.86656207 + inSlope: -1.730792 + outSlope: -1.730792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.763939 + inSlope: -2.569661 + outSlope: -2.569661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.6524237 + inSlope: -2.2609885 + outSlope: -2.2609885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.5755233 + inSlope: -1.4410598 + outSlope: -1.4410598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.5178907 + inSlope: -0.17344241 + outSlope: -0.17344241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.51755744 + inSlope: 0.0060088653 + outSlope: 0.0060088653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.5363436 + inSlope: 0.2693253 + outSlope: 0.2693253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6560094 + inSlope: 0.7729327 + outSlope: 0.7729327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.80567724 + inSlope: 0.36752665 + outSlope: 0.36752665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.84640145 + inSlope: 0.026629664 + outSlope: 0.026629664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.85588133 + inSlope: 0.1177368 + outSlope: 0.1177368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.87405497 + inSlope: 0.0065065213 + outSlope: 0.0065065213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.869791 + inSlope: -0.27173308 + outSlope: -0.27173308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.85141057 + inSlope: -0.5724416 + outSlope: -0.5724416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.790879 + inSlope: -0.71249485 + outSlope: -0.71249485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.7211022 + inSlope: -0.3948959 + outSlope: -0.3948959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.6800948 + inSlope: 0.069287404 + outSlope: 0.069287404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.69749594 + inSlope: -0.030460058 + outSlope: -0.030460058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.69406605 + inSlope: -0.15624899 + outSlope: -0.15624899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.6844752 + inSlope: -0.04997769 + outSlope: -0.04997769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.68990123 + inSlope: 0.056530077 + outSlope: 0.056530077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.68813825 + inSlope: 0.03936045 + outSlope: 0.03936045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.69496685 + inSlope: 0.039332725 + outSlope: 0.039332725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.69631445 + inSlope: 0.006844269 + outSlope: 0.006844269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.6963135 + inSlope: -0.000007867822 + outSlope: -0.000007867822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.6963033 + inSlope: -0.0000071525847 + outSlope: -0.0000071525847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000000018626454 + inSlope: -0.0000000010379431 + outSlope: -0.0000000010379431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -2.5648378e-10 + inSlope: -0.0000000010379404 + outSlope: -0.0000000010379404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -6.024639e-10 + inSlope: -0.0000000010379088 + outSlope: -0.0000000010379088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -6.4570893e-10 + inSlope: 0.000000015917367 + outSlope: 0.000000015917367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 7.2398587e-10 + inSlope: 0.000000029588879 + outSlope: 0.000000029588879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.0000000018200293 + inSlope: 0.00000002483297 + outSlope: 0.00000002483297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.0000000027933977 + inSlope: 0.000000027650604 + outSlope: 0.000000027650604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.0000000041242507 + inSlope: 0.00000002994004 + outSlope: 0.00000002994004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0000000059447594 + inSlope: 0.000000010305859 + outSlope: 0.000000010305859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.0000000061073995 + inSlope: -4.7785687e-10 + outSlope: -4.7785687e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0000000054707345 + inSlope: -4.7715615e-10 + outSlope: -4.7715615e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000016763808 + inSlope: -0.000000011946625 + outSlope: -0.000000011946625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.000000007627211 + inSlope: -0.000000011946618 + outSlope: -0.000000011946618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.000000011609417 + inSlope: -0.0000024375308 + outSlope: -0.0000024375308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.00000021423959 + inSlope: -1.2940674 + outSlope: -1.2940674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.107839175 + inSlope: -2.3257222 + outSlope: -2.3257222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.19381028 + inSlope: -1.9416068 + outSlope: -1.9416068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.26963955 + inSlope: -2.1278214 + outSlope: -2.1278214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.37112907 + inSlope: -2.2710292 + outSlope: -2.2710292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.5084408 + inSlope: -0.7884539 + outSlope: -0.7884539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.5246121 + inSlope: -0.0001881119 + outSlope: -0.0001881119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.52486336 + inSlope: -0.00018882824 + outSlope: -0.00018882824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000011175873 + inSlope: 7.684733e-10 + outSlope: 7.684733e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.000000012744875 + inSlope: 7.684825e-10 + outSlope: 7.684825e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.0000000130010385 + inSlope: 7.6847406e-10 + outSlope: 7.6847406e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.000000013033058 + inSlope: -0.0000000010373549 + outSlope: -0.0000000010373549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.000000012914592 + inSlope: -0.0000000039144226 + outSlope: -0.0000000039144226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.000000012706857 + inSlope: -0.000000005770204 + outSlope: -0.000000005770204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.000000012433742 + inSlope: -0.000000009474121 + outSlope: -0.000000009474121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.000000011917345 + inSlope: -0.000000013287168 + outSlope: -0.000000013287168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.000000010927925 + inSlope: -0.000000006449943 + outSlope: -0.000000006449943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.000000010797983 + inSlope: 1.0798808e-10 + outSlope: 1.0798808e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.000000010941464 + inSlope: 1.07242625e-10 + outSlope: 1.07242625e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 1 + inSlope: -0.06997977 + outSlope: -0.06997977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.99416834 + inSlope: -0.2275319 + outSlope: -0.2275319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.98103905 + inSlope: -0.37448448 + outSlope: -0.37448448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.9629613 + inSlope: -0.6294918 + outSlope: -0.6294918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.9285813 + inSlope: -0.89363086 + outSlope: -0.89363086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.861097 + inSlope: -0.4456929 + outSlope: -0.4456929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.85134137 + inSlope: -0.00011658647 + outSlope: -0.00011658647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.8511865 + inSlope: -0.00011587187 + outSlope: -0.00011587187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000003987768 + inSlope: -0.0000017488703 + outSlope: -0.0000017488703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.00000035043956 + inSlope: 0.00000038694714 + outSlope: 0.00000038694714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.0000025608733 + inSlope: 0.00002290382 + outSlope: 0.00002290382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0000127271105 + inSlope: 0.000042475192 + outSlope: 0.000042475192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.000022387683 + inSlope: 0.000025798257 + outSlope: 0.000025798257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.00002090004 + inSlope: -0.000048492417 + outSlope: -0.000048492417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.000011436125 + inSlope: -0.00009659922 + outSlope: -0.00009659922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.0000014622872 + inSlope: -0.00009730363 + outSlope: -0.00009730363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.000011452509 + inSlope: -0.0000073261303 + outSlope: -0.0000073261303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.00017383475 + inSlope: -0.004217627 + outSlope: -0.004217627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.0015009011 + inSlope: -0.010229927 + outSlope: -0.010229927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.0029942028 + inSlope: -0.0038667147 + outSlope: -0.0038667147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.003796461 + inSlope: -0.015636355 + outSlope: -0.015636355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.005231385 + inSlope: -0.01443045 + outSlope: -0.01443045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.005920659 + inSlope: -0.0002872583 + outSlope: -0.0002872583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.0055652135 + inSlope: 0.0007510338 + outSlope: 0.0007510338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.00644282 + inSlope: -0.00998313 + outSlope: -0.00998313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.007855812 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000010233669 + inSlope: -0.0000070340925 + outSlope: -0.0000070340925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.0000027825113 + inSlope: -0.000019621955 + outSlope: -0.000019621955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.0000109994535 + inSlope: -0.00003193017 + outSlope: -0.00003193017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.000019439974 + inSlope: -0.000025165644 + outSlope: -0.000025165644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.000026149639 + inSlope: -0.000036548103 + outSlope: -0.000036548103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.000035898112 + inSlope: -0.00007485167 + outSlope: -0.00007485167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.000044943983 + inSlope: -0.00006215808 + outSlope: -0.00006215808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.000050561393 + inSlope: -0.000028074699 + outSlope: -0.000028074699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.000053651023 + inSlope: -0.000018483312 + outSlope: -0.000018483312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.000014007153 + inSlope: 0.002008062 + outSlope: 0.002008062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.0005226768 + inSlope: 0.0021867696 + outSlope: 0.0021867696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.00048722888 + inSlope: -0.00031536873 + outSlope: -0.00031536873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.0007424611 + inSlope: 0.008523259 + outSlope: 0.008523259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.001967367 + inSlope: 0.019826496 + outSlope: 0.019826496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.0037638894 + inSlope: 0.018371442 + outSlope: 0.018371442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0047113807 + inSlope: 0.003990516 + outSlope: 0.003990516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.0044130073 + inSlope: -0.004586831 + outSlope: -0.004586831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0032033285 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.24623103 + inSlope: 0.09652126 + outSlope: 0.09652126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.11984934 + inSlope: 0.9321978 + outSlope: 0.9321978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.22809677 + inSlope: 1.2922332 + outSlope: 1.2922332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.5483443 + inSlope: 0.78618634 + outSlope: 0.78618634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.65074146 + inSlope: -0.084924534 + outSlope: -0.084924534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.5035247 + inSlope: -1.6584425 + outSlope: -1.6584425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.24698873 + inSlope: -2.2787232 + outSlope: -2.2787232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.02852691 + inSlope: -1.9122734 + outSlope: -1.9122734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.20840348 + inSlope: -0.06298718 + outSlope: -0.06298718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.1259089 + inSlope: 1.8412399 + outSlope: 1.8412399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.42604092 + inSlope: 1.5824678 + outSlope: 1.5824678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.6367064 + inSlope: 0.32242355 + outSlope: 0.32242355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.62582695 + inSlope: -0.7853214 + outSlope: -0.7853214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.50509596 + inSlope: -1.9391451 + outSlope: -1.9391451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.32595086 + inSlope: -2.0788236 + outSlope: -2.0788236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.18404913 + inSlope: -0.9849402 + outSlope: -0.9849402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.16132107 + inSlope: 0.000032722888 + outSlope: 0.000032722888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.1613218 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.96921116 + inSlope: 0.024308681 + outSlope: 0.024308681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.99279207 + inSlope: 0.11034464 + outSlope: 0.11034464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.9736385 + inSlope: -0.30273473 + outSlope: -0.30273473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.8362527 + inSlope: -0.512915 + outSlope: -0.512915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.7592994 + inSlope: 0.071568556 + outSlope: 0.071568556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.8639808 + inSlope: 0.95298696 + outSlope: 0.95298696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.96901834 + inSlope: 0.5808133 + outSlope: 0.5808133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.999593 + inSlope: -0.04286515 + outSlope: -0.04286515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.97804296 + inSlope: -0.012713589 + outSlope: -0.012713589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.9920418 + inSlope: -0.23677061 + outSlope: -0.23677061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.9047025 + inSlope: -0.73984325 + outSlope: -0.73984325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.77110034 + inSlope: -0.26180565 + outSlope: -0.26180565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.77995235 + inSlope: 0.6067996 + outSlope: 0.6067996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.8630451 + inSlope: 1.1182855 + outSlope: 1.1182855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.9453607 + inSlope: 0.73016554 + outSlope: 0.73016554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.98289 + inSlope: 0.20369872 + outSlope: 0.20369872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.98687106 + inSlope: -0.000050783063 + outSlope: -0.000050783063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9868654 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.02652352 + inSlope: -0.019829974 + outSlope: -0.019829974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.09521316 + inSlope: -0.15482259 + outSlope: -0.15482259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.032938134 + inSlope: 0.37756228 + outSlope: 0.37756228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.06851528 + inSlope: 0.070938095 + outSlope: 0.070938095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.047626074 + inSlope: 0.00882834 + outSlope: 0.00882834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.07227802 + inSlope: -0.19961014 + outSlope: -0.19961014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.030221257 + inSlope: -0.6286282 + outSlope: -0.6286282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.107310325 + inSlope: -0.5382749 + outSlope: -0.5382749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.15224762 + inSlope: -0.5987053 + outSlope: -0.5987053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.20081782 + inSlope: -0.45802405 + outSlope: -0.45802405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.22519355 + inSlope: -0.13917276 + outSlope: -0.13917276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.22803572 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.22803572 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13469812 + inSlope: 0.00049495697 + outSlope: 0.00049495697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.12932664 + inSlope: -0.07310684 + outSlope: -0.07310684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.0209898 + inSlope: -0.44684976 + outSlope: -0.44684976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.15448542 + inSlope: -0.47473428 + outSlope: -0.47473428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.17840524 + inSlope: 0.29406655 + outSlope: 0.29406655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.006062578 + inSlope: 0.67848426 + outSlope: 0.67848426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.13321517 + inSlope: 0.01394067 + outSlope: 0.01394067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.092231594 + inSlope: -0.6428905 + outSlope: -0.6428905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.005711881 + inSlope: -1.7200435 + outSlope: -1.7200435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.18373752 + inSlope: -2.3409042 + outSlope: -2.3409042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.34464332 + inSlope: -1.1292222 + outSlope: -1.1292222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.37079942 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.37079942 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.26623374 + inSlope: 0.008289814 + outSlope: 0.008289814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.19443509 + inSlope: 0.34869066 + outSlope: 0.34869066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.044325124 + inSlope: 0.08554253 + outSlope: 0.08554253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.047394663 + inSlope: -0.06074495 + outSlope: -0.06074495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.09277482 + inSlope: -0.19948357 + outSlope: -0.19948357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.21356305 + inSlope: -0.4416322 + outSlope: -0.4416322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.30198634 + inSlope: 0.0012645684 + outSlope: 0.0012645684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.28489056 + inSlope: 0.25019634 + outSlope: 0.25019634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.25567898 + inSlope: 0.48765874 + outSlope: 0.48765874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.2047058 + inSlope: 0.642684 + outSlope: 0.642684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.1587215 + inSlope: 0.32949606 + outSlope: 0.32949606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.15096878 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.15096878 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.954082 + inSlope: 0.0016822815 + outSlope: 0.0016822815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.96767974 + inSlope: 0.06447603 + outSlope: 0.06447603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.9982534 + inSlope: 0.02494526 + outSlope: 0.02494526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.9844763 + inSlope: -0.081820205 + outSlope: -0.081820205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.97841513 + inSlope: 0.0338559 + outSlope: 0.0338559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.97423303 + inSlope: -0.08735688 + outSlope: -0.08735688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.94347477 + inSlope: -0.022107799 + outSlope: -0.022107799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.94805866 + inSlope: 0.07452879 + outSlope: 0.07452879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.9546813 + inSlope: 0.014831018 + outSlope: 0.014831018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.94021714 + inSlope: -0.4037761 + outSlope: -0.4037761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.8973942 + inSlope: -0.37887597 + outSlope: -0.37887597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.8875336 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.8875336 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13871254 + inSlope: -0.0129003525 + outSlope: -0.0129003525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.17867425 + inSlope: 0.16140376 + outSlope: 0.16140376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.102292314 + inSlope: -0.12045981 + outSlope: -0.12045981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.13052417 + inSlope: 0.26128596 + outSlope: 0.26128596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.000000004676871 + inSlope: 0.058031093 + outSlope: 0.058031093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9903327 + inSlope: -0.0018110275 + outSlope: -0.0018110275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9839083 + inSlope: 0.02923537 + outSlope: 0.02923537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.9947544 + inSlope: -0.012459747 + outSlope: -0.012459747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.9914451 + inSlope: 0.034051873 + outSlope: 0.034051873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 1 + inSlope: 0.00006794911 + outSlope: 0.00006794911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.x + path: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.z + path: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.x + path: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.z + path: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0013052019 + inSlope: -0.0002477789 + outSlope: -0.0002477789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.0013155261 + inSlope: -0.0002477789 + outSlope: -0.0007124126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0013452099 + inSlope: -0.0007124126 + outSlope: -0.0011305476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.0013923161 + inSlope: -0.0011305476 + outSlope: -0.001502255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00145491 + inSlope: -0.001502255 + outSlope: -0.0018274537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.0015310539 + inSlope: -0.0018274537 + outSlope: -0.0021062419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.002164087 + inSlope: -0.0028031503 + outSlope: -0.0028031522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.002395748 + inSlope: -0.0027567123 + outSlope: -0.0026637616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.0026119212 + inSlope: -0.0025243938 + outSlope: -0.0023385347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: -0.0027971198 + inSlope: -0.002106237 + outSlope: -0.0018274846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.002982965 + inSlope: -0.00113057 + outSlope: -0.00071238715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: -0.003017534 + inSlope: 0.00013053429 + outSlope: 0.0003827546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.00289622 + inSlope: 0.0010597453 + outSlope: 0.0012588727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.002843767 + inSlope: 0.0012588727 + outSlope: 0.0014447066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.002783571 + inSlope: 0.0014447066 + outSlope: 0.0016172876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.002716184 + inSlope: 0.0016172876 + outSlope: 0.0017765752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0025620519 + inSlope: 0.0019225894 + outSlope: 0.0020553393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: -0.002385796 + inSlope: 0.0021748086 + outSlope: 0.0022810034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.00219184 + inSlope: 0.0023739396 + outSlope: 0.002453569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: -0.002089608 + inSlope: 0.002453569 + outSlope: 0.0025199484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.00198461 + inSlope: 0.0025199484 + outSlope: 0.002573042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.0018774 + inSlope: 0.002573042 + outSlope: 0.0026128816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.0016585549 + inSlope: 0.0026393959 + outSlope: 0.0026526963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: -0.001437497 + inSlope: 0.0026526998 + outSlope: 0.0026394173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.001006444 + inSlope: 0.0025199235 + outSlope: 0.0024535852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.0007102561 + inSlope: 0.002281011 + outSlope: 0.002174813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.0006196387 + inSlope: 0.002174813 + outSlope: 0.00205533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.0005339998 + inSlope: 0.00205533 + outSlope: 0.0019225995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.0004538918 + inSlope: 0.0019225995 + outSlope: 0.0017765773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.0003798676 + inSlope: 0.0017765773 + outSlope: 0.00161727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.0003124812 + inSlope: 0.00161727 + outSlope: 0.0014447144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: -0.000252285 + inSlope: 0.0014447144 + outSlope: 0.0012588624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.0001998323 + inSlope: 0.0012588624 + outSlope: 0.0010597564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.00015567569 + inSlope: 0.0010597564 + outSlope: 0.0008473519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.0001203695 + inSlope: 0.0008473519 + outSlope: 0.00062169216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.00009446561 + inSlope: 0.00062169216 + outSlope: 0.0003827469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.00007851779 + inSlope: 0.0003827469 + outSlope: 0.000130534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: -0.000073078896 + inSlope: 0.000130534 + outSlope: 0.000009291825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.000072691735 + inSlope: 0.000009291825 + outSlope: 0.00002665619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.00007158106 + inSlope: 0.00002665619 + outSlope: 0.000042193657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: -0.000069823 + inSlope: 0.000042193657 + outSlope: 0.000055902157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: -0.00006749374 + inSlope: 0.000055902157 + outSlope: 0.000067783534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083333 + value: -0.000025954108 + inSlope: 0.000086062406 + outSlope: 0.00007783661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: -0.00001988659 + inSlope: 0.00006778359 + outSlope: 0.000055902674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333333 + value: -0.00001755732 + inSlope: 0.000055902674 + outSlope: 0.000042193107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: -0.00001579927 + inSlope: 0.000042193107 + outSlope: 0.000026656524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -0.0000146885795 + inSlope: 0.000026656524 + outSlope: 0.0000005465549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0000143014295 + inSlope: 0.00000054655806 + outSlope: 0.00000054655806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.005500984 + inSlope: 0.00017618178 + outSlope: 0.00017618178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.005508325 + inSlope: 0.00017618178 + outSlope: 0.0005042553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.0055293357 + inSlope: 0.0005042553 + outSlope: 0.0007958937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.005562498 + inSlope: 0.0007958937 + outSlope: 0.0010510539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.005606292 + inSlope: 0.0010510539 + outSlope: 0.0012697938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.0056592 + inSlope: 0.0012697938 + outSlope: 0.0014520548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.006082968 + inSlope: 0.0018165912 + outSlope: 0.0017801289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.006228274 + inSlope: 0.0017072145 + outSlope: 0.0015978399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.006355354 + inSlope: 0.0014520828 + outSlope: 0.0012697643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.0064520547 + inSlope: 0.0010510549 + outSlope: 0.0007959076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.006503317 + inSlope: -0.000069851936 + outSlope: -0.000069866146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.0064778263 + inSlope: -0.00047206922 + outSlope: -0.00064908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.006328215 + inSlope: -0.0011394464 + outSlope: -0.0012893354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.0062744925 + inSlope: -0.0012893354 + outSlope: -0.0014323827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00621481 + inSlope: -0.0014323827 + outSlope: -0.0015686718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.0061494485 + inSlope: -0.0015686718 + outSlope: -0.0016981903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.006002823 + inSlope: -0.0018208231 + outSlope: -0.0019367284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: 0.0058368808 + inSlope: -0.0020458908 + outSlope: -0.002148138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.005653889 + inSlope: -0.0022436592 + outSlope: -0.0023324224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: 0.005556705 + inSlope: -0.0023324224 + outSlope: -0.0024143266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.0054561077 + inSlope: -0.0024143266 + outSlope: -0.00248945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.0053523807 + inSlope: -0.00248945 + outSlope: -0.002557771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.005136667 + inSlope: -0.0026193615 + outSlope: -0.0026740863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.004911828 + inSlope: -0.0027220515 + outSlope: -0.002763185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.004337036 + inSlope: -0.0047227317 + outSlope: -0.005654023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.003560543 + inSlope: -0.006676559 + outSlope: -0.0067677936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.003278551 + inSlope: -0.0067677936 + outSlope: -0.006579017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.0030044247 + inSlope: -0.006579017 + outSlope: -0.006110324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.0027498289 + inSlope: -0.006110324 + outSlope: -0.005361568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.00252643 + inSlope: -0.005361568 + outSlope: -0.0043327534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.0023458982 + inSlope: -0.0043327534 + outSlope: -0.0030240412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.0022198968 + inSlope: -0.0030240412 + outSlope: -0.0014352724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.0021600937 + inSlope: -0.0014352724 + outSlope: 0.00043351567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.002178157 + inSlope: 0.00043351567 + outSlope: 0.0025822904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.002285752 + inSlope: 0.0025822904 + outSlope: 0.0041878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.0024602439 + inSlope: 0.0041878 + outSlope: 0.004766319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.002658841 + inSlope: 0.004766319 + outSlope: 0.004899163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: 0.002862972 + inSlope: 0.004899163 + outSlope: 0.004586268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.0030540668 + inSlope: 0.004586268 + outSlope: 0.003827734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.003213556 + inSlope: 0.003827734 + outSlope: 0.002623468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.0033228667 + inSlope: 0.002623468 + outSlope: 0.00097353983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 0.003363431 + inSlope: 0.00097353983 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083333 + value: 0.003363431 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: 0.003363431 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333333 + value: 0.003363431 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0.003363431 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0.003363431 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.003363431 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00058792246 + inSlope: 0.0009826523 + outSlope: 0.0009826523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0006288663 + inSlope: 0.0009826523 + outSlope: 0.0027651393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00074408046 + inSlope: 0.0027651393 + outSlope: 0.0042733955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.00092213857 + inSlope: 0.0042733955 + outSlope: 0.005507433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0011516149 + inSlope: 0.005507433 + outSlope: 0.00646721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.001421082 + inSlope: 0.00646721 + outSlope: 0.007152814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.0032378458 + inSlope: 0.006467203 + outSlope: 0.0055074487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.003645381 + inSlope: 0.004273393 + outSlope: 0.0027651384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.0038015388 + inSlope: 0.0009826536 + outSlope: -0.00082777935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.0036675169 + inSlope: -0.0023887488 + outSlope: -0.0038078122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.0030378108 + inSlope: -0.0062201843 + outSlope: -0.007213529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.002035602 + inSlope: -0.008774504 + outSlope: -0.009342115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.0003958043 + inSlope: -0.010193563 + outSlope: -0.010193569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.000028927325 + inSlope: -0.010193569 + outSlope: -0.010051627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0004477459 + inSlope: -0.010051627 + outSlope: -0.009767843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.000854739 + inSlope: -0.009767843 + outSlope: -0.009342127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0016095979 + inSlope: -0.00877448 + outSlope: -0.00806497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: -0.002246202 + inSlope: -0.00721354 + outSlope: -0.006220188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.00271725 + inSlope: -0.005084958 + outSlope: -0.0038077962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: -0.002875908 + inSlope: -0.0038077962 + outSlope: -0.002388742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.002975439 + inSlope: -0.002388742 + outSlope: -0.0008277806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.0030099298 + inSlope: -0.0008277806 + outSlope: 0.00075408054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.0028893768 + inSlope: 0.00213919 + outSlope: 0.0033395751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: -0.002568758 + inSlope: 0.004355282 + outSlope: 0.005186345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.0015735539 + inSlope: 0.006571428 + outSlope: 0.006663751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.0007598217 + inSlope: 0.0062944386 + outSlope: 0.0058326987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.00051679206 + inSlope: 0.0058326987 + outSlope: 0.005186327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.0003006947 + inSlope: 0.005186327 + outSlope: 0.004355316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.00011922389 + inSlope: 0.004355316 + outSlope: 0.0033395728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.000019925235 + inSlope: 0.0033395728 + outSlope: 0.0021391676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.000109057386 + inSlope: 0.0021391676 + outSlope: 0.0007540975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.00014047799 + inSlope: 0.0007540975 + outSlope: -0.00053317787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.00011826221 + inSlope: -0.00053317787 + outSlope: -0.0014472031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.00005796196 + inSlope: -0.0014472031 + outSlope: -0.0021327322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.00003090154 + inSlope: -0.0021327322 + outSlope: -0.0025897312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.00013880721 + inSlope: -0.0025897312 + outSlope: -0.0028182345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.00025623388 + inSlope: -0.0028182345 + outSlope: -0.0028182524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: -0.00037366062 + inSlope: -0.0028182524 + outSlope: -0.0025897285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.00048156618 + inSlope: -0.0025897285 + outSlope: -0.0021327205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.0005704297 + inSlope: -0.0021327205 + outSlope: -0.0014472093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: -0.00063072983 + inSlope: -0.0014472093 + outSlope: -0.000533181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: -0.0006529458 + inSlope: -0.000533181 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083333 + value: -0.0006529458 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: -0.0006529458 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333333 + value: -0.0006529458 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: -0.0006529458 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -0.0006529458 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0006529458 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0010659234 + inSlope: -0.000029418468 + outSlope: -0.000029418468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0010473212 + inSlope: -0.00019073901 + outSlope: -0.00023830896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.00071313744 + inSlope: -0.00058237166 + outSlope: -0.0005777654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.00057605444 + inSlope: -0.00050865015 + outSlope: -0.00048560544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.0005187453 + inSlope: -0.00043030272 + outSlope: -0.00039807416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.00047353024 + inSlope: -0.0003243321 + outSlope: -0.00028286243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: 0.00046174432 + inSlope: -0.00028286243 + outSlope: -0.00023832991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: 0.0004380326 + inSlope: -0.00014004094 + outSlope: -0.000086253414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.00043443873 + inSlope: -0.000086253414 + outSlope: -0.000029427436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.00043321258 + inSlope: -0.000029427436 + outSlope: -0.000056979115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.00043083847 + inSlope: -0.000056979115 + outSlope: -0.00017820741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.00042341312 + inSlope: -0.00017820741 + outSlope: -0.00031038732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.00041048034 + inSlope: -0.00031038732 + outSlope: -0.0004534967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.0003662699 + inSlope: -0.0006075532 + outSlope: -0.00077253685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.0003340809 + inSlope: -0.00077253685 + outSlope: -0.00094846037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: 0.00029456176 + inSlope: -0.00094846037 + outSlope: -0.0011353107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.00024725703 + inSlope: -0.0011353107 + outSlope: -0.0013331182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.00019171051 + inSlope: -0.0013331182 + outSlope: -0.0015418468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.00012746677 + inSlope: -0.0015418468 + outSlope: -0.0017615253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.00005407017 + inSlope: -0.0017615253 + outSlope: -0.0016169976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.000013304862 + inSlope: -0.0016169976 + outSlope: -0.001134086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.000060558537 + inSlope: -0.001134086 + outSlope: -0.0007009102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.000089763016 + inSlope: -0.0007009102 + outSlope: -0.00031735032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.00010298597 + inSlope: -0.00031735032 + outSlope: 0.000016495107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.000102298676 + inSlope: 0.000016495107 + outSlope: 0.00030067522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: -0.00008977059 + inSlope: 0.00030067522 + outSlope: 0.0005351596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.00006747223 + inSlope: 0.0005351596 + outSlope: 0.00071997487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.000037473226 + inSlope: 0.00071997487 + outSlope: 0.0008551207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.0000018433319 + inSlope: 0.0008551207 + outSlope: 0.0009405609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.00003734678 + inSlope: 0.0009405609 + outSlope: 0.0009763353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: 0.00011812919 + inSlope: 0.0009624443 + outSlope: 0.000898853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.00015558147 + inSlope: 0.000898853 + outSlope: 0.0007855779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.00018831395 + inSlope: 0.0007855779 + outSlope: 0.00062263967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.00021425716 + inSlope: 0.00062263967 + outSlope: 0.0004100124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 0.00023134104 + inSlope: 0.0004100124 + outSlope: 0.00014771434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.00023749581 + inSlope: 0.00014771434 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.00023749587 + inSlope: -0 + outSlope: 4.4703397e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00023749605 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0007641401 + inSlope: -0.000015769601 + outSlope: -0.000015769601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00077417714 + inSlope: -0.0001032561 + outSlope: -0.00012956682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.0009667142 + inSlope: -0.00035716454 + outSlope: -0.00035930137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.0010557991 + inSlope: -0.00034864817 + outSlope: -0.00034221265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.0010975398 + inSlope: -0.00032513766 + outSlope: -0.00031450004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.0011352808 + inSlope: -0.00028887956 + outSlope: -0.0002739575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: -0.0011466957 + inSlope: -0.0002739575 + outSlope: -0.00025759172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: -0.0011766129 + inSlope: -0.00022060295 + outSlope: -0.00019999764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.0011849462 + inSlope: -0.00019999764 + outSlope: -0.00017790751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.0011923589 + inSlope: -0.00017790751 + outSlope: -0.00015446857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.0011987952 + inSlope: -0.00015446857 + outSlope: -0.00012956653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.0012041937 + inSlope: -0.00012956653 + outSlope: -0.00010325263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.0012084959 + inSlope: -0.00010325263 + outSlope: -0.00007550604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.0012129366 + inSlope: -0.000031068863 + outSlope: -0.00003106895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.0012142311 + inSlope: -0.00003106895 + outSlope: -0.000008168228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: -0.0012145714 + inSlope: -0.000008168228 + outSlope: -0.000008169993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.0012149118 + inSlope: -0.000008169993 + outSlope: -0.000008168228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.0012152522 + inSlope: -0.000008168228 + outSlope: -0.000008168205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.0012155925 + inSlope: -0.000008168205 + outSlope: -0.000008168252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.0012159329 + inSlope: -0.000008168252 + outSlope: -0.000008169993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.0012162733 + inSlope: -0.000008169993 + outSlope: -0.000008168205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.0012166136 + inSlope: -0.000008168205 + outSlope: -0.000008168252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.001216954 + inSlope: -0.000008168252 + outSlope: -0.000018449986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.0012177227 + inSlope: -0.000018449986 + outSlope: -0.000018449986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.0012184915 + inSlope: -0.000018449986 + outSlope: -0.000018448303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: -0.0012192602 + inSlope: -0.000018448303 + outSlope: -0.000018449986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.0012200288 + inSlope: -0.000018449986 + outSlope: -0.000023009732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.0012209876 + inSlope: -0.000023009732 + outSlope: -0.000023008077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.0012219463 + inSlope: -0.000023008077 + outSlope: -0.000023009732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.001222905 + inSlope: -0.000023009732 + outSlope: -0.000026087115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: -0.001225079 + inSlope: -0.000026085476 + outSlope: -0.000026087115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.0012261659 + inSlope: -0.000026087115 + outSlope: -0.00002844209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.0012273509 + inSlope: -0.00002844209 + outSlope: -0.000028440465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: -0.001228536 + inSlope: -0.000028440465 + outSlope: -0.00002844209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: -0.001229721 + inSlope: -0.00002844209 + outSlope: -0.00002984399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.0012309646 + inSlope: -0.00002984399 + outSlope: -0.000029842371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.001242497 + inSlope: -0.000030827465 + outSlope: -0.00003025347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.001261696 + inSlope: -0.0000073242463 + outSlope: -0.0000073242463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00018158685 + inSlope: -0.00008799523 + outSlope: -0.00008799523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00020767159 + inSlope: -0.00022009668 + outSlope: -0.000254286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.00041406244 + inSlope: -0.00013148539 + outSlope: -0.00008194681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.0003964084 + inSlope: 0.00023959391 + outSlope: 0.0003186807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.00034586742 + inSlope: 0.0004916172 + outSlope: 0.00058547314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.0002601303 + inSlope: 0.0007879622 + outSlope: 0.00089659175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: -0.00022277236 + inSlope: 0.00089659175 + outSlope: 0.0010101466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: -0.00009410739 + inSlope: 0.0010236035 + outSlope: 0.0009901981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.000052849053 + inSlope: 0.0009901981 + outSlope: 0.00095400185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.000013099015 + inSlope: 0.00095400185 + outSlope: 0.00091501325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0000250265 + inSlope: 0.00091501325 + outSlope: 0.00087320403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.000061410065 + inSlope: 0.00087320403 + outSlope: 0.0008286031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.00009593517 + inSlope: 0.0008286031 + outSlope: 0.00078120304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.00015894367 + inSlope: 0.0007310007 + outSlope: 0.00067800586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.0001871939 + inSlope: 0.00067800586 + outSlope: 0.00062220154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: 0.00021311894 + inSlope: 0.00062220154 + outSlope: 0.000563599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.00023660227 + inSlope: 0.000563599 + outSlope: 0.0005021994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.00025752722 + inSlope: 0.0005021994 + outSlope: 0.00043799318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.00027577698 + inSlope: 0.00043799318 + outSlope: 0.00037099203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.00029123493 + inSlope: 0.00037099203 + outSlope: 0.00030118733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.0003037844 + inSlope: 0.00030118733 + outSlope: 0.00022858547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.00031330882 + inSlope: 0.00022858547 + outSlope: 0.00015318065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.00031969132 + inSlope: 0.00015318065 + outSlope: 0.00007497832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.00032281544 + inSlope: 0.00007497832 + outSlope: -0.0000060287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.00032256424 + inSlope: -0.0000060287 + outSlope: -0.00008983468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.00031882114 + inSlope: -0.00008983468 + outSlope: -0.00017643806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.00031146954 + inSlope: -0.00017643806 + outSlope: -0.0002658453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.00030039262 + inSlope: -0.0002658453 + outSlope: -0.00029913493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.00028792873 + inSlope: -0.00029913493 + outSlope: -0.00027499386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.00027647062 + inSlope: -0.00027499386 + outSlope: -0.00025169176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: 0.00025643234 + inSlope: -0.00022922782 + outSlope: -0.00020759454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.00024778253 + inSlope: -0.00020759454 + outSlope: -0.00018680388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.00023999903 + inSlope: -0.00018680388 + outSlope: -0.00016684386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.00023304722 + inSlope: -0.00016684386 + outSlope: -0.00014772327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 0.00022689208 + inSlope: -0.00014772327 + outSlope: -0.00012943421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.00022149898 + inSlope: -0.00012943421 + outSlope: -0.00011198623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.00020232501 + inSlope: 0.000002055015 + outSlope: 0.000002055015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00024273239 + inSlope: 0.000018472445 + outSlope: 0.000018472445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00002182968 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00002182968 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00299883 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00299883 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000053090826 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.000053090826 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000019310834 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.000019310834 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00259617 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00259617 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00038391232 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00038391232 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0005545899 + inSlope: 0.000046821533 + outSlope: 0.000046821533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.0004911879 + inSlope: 0.0004422068 + outSlope: 0.0005049635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.00023502293 + inSlope: 0.00081036426 + outSlope: 0.0008240104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.00002845467 + inSlope: 0.0008103574 + outSlope: 0.00079127273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.000004515043 + inSlope: 0.00079127273 + outSlope: 0.00076673925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.00003646248 + inSlope: 0.00076673925 + outSlope: 0.0007367251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00006715937 + inSlope: 0.0007367251 + outSlope: 0.0007012915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.00012389556 + inSlope: 0.0006603762 + outSlope: 0.00061402866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00019394464 + inSlope: 0.0005049347 + outSlope: 0.00044223678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00024047295 + inSlope: 0.00030041352 + outSlope: 0.00022134994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.00025734658 + inSlope: 0.000046812056 + outSlope: 0.000027928972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.00027627192 + inSlope: 0.00020010505 + outSlope: 0.0002593569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.00033469842 + inSlope: 0.0004426838 + outSlope: 0.0005056401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.00035576677 + inSlope: 0.0005056401 + outSlope: 0.0005695354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.0003794974 + inSlope: 0.0005695354 + outSlope: 0.0006343591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: 0.000405929 + inSlope: 0.0006343591 + outSlope: 0.0007001258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.00043510098 + inSlope: 0.0007001258 + outSlope: 0.0007667826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.0004670502 + inSlope: 0.0007667826 + outSlope: 0.0008343863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.0005018164 + inSlope: 0.0008343863 + outSlope: 0.0009029271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.0005394382 + inSlope: 0.0009029271 + outSlope: 0.00083036744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.0005740369 + inSlope: 0.00083036744 + outSlope: 0.0006281087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.0006302656 + inSlope: 0.00027755534 + outSlope: 0.00012925541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.0006308848 + inSlope: -0.0001133553 + outSlope: -0.00020767322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.00061039836 + inSlope: -0.0002840005 + outSlope: -0.00034234038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.00059613417 + inSlope: -0.00034234038 + outSlope: -0.0003826834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.000580189 + inSlope: -0.0003826834 + outSlope: -0.00040504368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.0005145893 + inSlope: -0.00036416668 + outSlope: -0.00031455458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.00048206153 + inSlope: -0.000057785397 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.00048206147 + inSlope: -8.9406793e-10 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: 0.00048206127 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00048206127 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0010460541 + inSlope: 0.000031104682 + outSlope: 0.000031104682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.001067124 + inSlope: 0.0001332253 + outSlope: 0.00014985685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.001141881 + inSlope: 0.00023700166 + outSlope: 0.00024216223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.001203801 + inSlope: 0.00024895358 + outSlope: 0.0002465074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0012140721 + inSlope: 0.0002465074 + outSlope: 0.00024278305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.0012241881 + inSlope: 0.00024278305 + outSlope: 0.00023778844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.001234096 + inSlope: 0.00023778844 + outSlope: 0.00023150883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.0012530738 + inSlope: 0.00022395866 + outSlope: 0.00021519203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.001278657 + inSlope: 0.00019372664 + outSlope: 0.00018111007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.001299505 + inSlope: 0.00015203805 + outSlope: 0.00013560189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.001314189 + inSlope: 0.00009893041 + outSlope: 0.000078646015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.0013206329 + inSlope: -0.000015488878 + outSlope: -0.000015488878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.001312332 + inSlope: -0.0000986875 + outSlope: -0.00012911772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.0013069521 + inSlope: -0.00012911772 + outSlope: -0.00016082182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.0013002511 + inSlope: -0.00016082182 + outSlope: -0.00019378084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: 0.001292177 + inSlope: -0.00019378084 + outSlope: -0.0002045985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.001283652 + inSlope: -0.0002045985 + outSlope: -0.00019265074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.0012756248 + inSlope: -0.00019265074 + outSlope: -0.0001810273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.0012680821 + inSlope: -0.0001810273 + outSlope: -0.00016965931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.001261013 + inSlope: -0.00016965931 + outSlope: -0.0001586613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.0012544021 + inSlope: -0.0001586613 + outSlope: -0.00014793607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.0012371971 + inSlope: -0.00012744045 + outSlope: -0.00011767186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.001223661 + inSlope: -0.00009900193 + outSlope: -0.00009016854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.0012165031 + inSlope: -0.000081621714 + outSlope: -0.00007339225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.0012134451 + inSlope: -0.00007339225 + outSlope: -0.00006544756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.0012107181 + inSlope: -0.00006544756 + outSlope: -0.000054179036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.0012028541 + inSlope: -0.000040188585 + outSlope: -0.000024495674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.0012000515 + inSlope: 0.0000062280774 + outSlope: 0.0000062280774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.001201868 + inSlope: 0.0000062280774 + outSlope: 0.000006228113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: 0.0012238666 + inSlope: 0.00001177302 + outSlope: 0.000011771366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.001224357 + inSlope: 0.000011771366 + outSlope: 0.000011771366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0005271861 + inSlope: -0.000004350543 + outSlope: -0.000004350543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.00052272796 + inSlope: -0.000051566356 + outSlope: -0.0000651312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.00047776697 + inSlope: -0.00017498009 + outSlope: -0.00018887033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.0004218194 + inSlope: -0.00025882944 + outSlope: -0.00027291643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.00041044786 + inSlope: -0.00027291643 + outSlope: -0.00028705742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.00039848714 + inSlope: -0.00028705742 + outSlope: -0.00030121906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00038593635 + inSlope: -0.00030121906 + outSlope: -0.0003154245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.000359058 + inSlope: -0.00032965536 + outSlope: -0.00034392657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00031427748 + inSlope: -0.00037257333 + outSlope: -0.00038694657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00026410638 + inSlope: -0.0004158024 + outSlope: -0.00043028395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.00020850539 + inSlope: -0.00045934707 + outSlope: -0.0004739289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.00012585669 + inSlope: -0.0005178885 + outSlope: -0.0005326157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.00003339231 + inSlope: -0.0005769902 + outSlope: -0.0005918551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.000008731633 + inSlope: -0.0005918551 + outSlope: -0.0006067556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.000016549826 + inSlope: -0.0006067556 + outSlope: -0.0005518275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: -0.000039542614 + inSlope: -0.0005518275 + outSlope: -0.00043607628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.000057712496 + inSlope: -0.00043607628 + outSlope: -0.00033388886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.00007162451 + inSlope: -0.00033388886 + outSlope: -0.00024526072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.00008184373 + inSlope: -0.00024526072 + outSlope: -0.00017018145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.0000889346 + inSlope: -0.00017018145 + outSlope: -0.00010866323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.000093462244 + inSlope: -0.00010866323 + outSlope: -0.000060698272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.00009719753 + inSlope: -0.0000026585112 + outSlope: -0.0000026587347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.00009842806 + inSlope: -0.000024215384 + outSlope: -0.000057587138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.00010518225 + inSlope: -0.000104513565 + outSlope: -0.00016499532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.00011205707 + inSlope: -0.00016499532 + outSlope: -0.00023903445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.00012201685 + inSlope: -0.00023903445 + outSlope: -0.00032663348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: -0.0001758606 + inSlope: -0.00028743554 + outSlope: -0.00025488625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -0.00021079525 + inSlope: -0.00016574768 + outSlope: -0.00013887021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.00023073501 + inSlope: 0.0000011068561 + outSlope: 0.0000011068624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: -0.00016371667 + inSlope: 0.00003818006 + outSlope: 0.000023943276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00016271904 + inSlope: 0.000023943276 + outSlope: 0.000023943276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0029990706 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0029990706 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000001607649 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0000001607649 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000054637305 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.000054637305 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00035560774 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00035560774 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000036823505 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.000036823505 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0026000005 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0026000005 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000011850639 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.000011850639 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.6015975e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 1.6015975e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000067961104 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.000067961104 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00285833 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00285833 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.4901161e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 1.4901161e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00014242723 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00014242723 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0014556204 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0014556204 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0014599606 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0014599606 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00012458155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00012458155 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0027749704 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0027749704 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000016925856 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00000016925856 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000543423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00000543423 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00209827 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00209827 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000001693517 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0000001693517 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000005433392 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.000005433392 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0014555808 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0014555808 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0014553496 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0014553496 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00012458135 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00012458135 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0027952401 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0027952401 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.259629e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -3.259629e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.0256266e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 2.0256266e-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_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0020026595 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0020026595 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.2351741e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -2.2351741e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3969838e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -1.3969838e-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_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0027371915 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0027371915 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.8231094e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -7.8231094e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00019367966 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00019367966 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.x + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000475085 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0000475085 + inSlope: 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.z + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0136136385 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0136136385 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0010463829 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0010463829 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.004070008 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.004070008 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0136136385 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0136136385 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0010463829 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0010463829 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.004080487 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.004080487 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999976 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999976 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999976 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999976 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -89.98021 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -89.98021 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -90.000206 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -90.000206 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -15.629818 + inSlope: 6.4393616 + outSlope: 6.4393616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -13.527083 + inSlope: 29.648048 + outSlope: 29.144077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -6.46954 + inSlope: 19.34995 + outSlope: 17.579817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.33176246 + inSlope: 38.039597 + outSlope: 38.039593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 12.220559 + inSlope: 29.211458 + outSlope: 29.516308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 14.637719 + inSlope: -15.560219 + outSlope: -15.57296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 10.908998 + inSlope: -37.27224 + outSlope: -37.27122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 9.321519 + inSlope: -33.494118 + outSlope: -33.537434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 6.876253 + inSlope: -30.82824 + outSlope: -31.038755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -3.1128683 + inSlope: -35.999542 + outSlope: -36.003124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -13.517373 + inSlope: -47.724323 + outSlope: -47.306576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -28.149897 + inSlope: -37.72492 + outSlope: -44.442398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -34.403023 + inSlope: -41.470276 + outSlope: -41.623196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -33.149475 + inSlope: 52.64371 + outSlope: 52.64371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -27.000715 + inSlope: 8.333641 + outSlope: 8.339235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -26.996672 + inSlope: 0.013791773 + outSlope: 0.013829549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -26.981077 + inSlope: 0.013870239 + outSlope: 0.013870239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -39.889194 + inSlope: 16.326141 + outSlope: 16.326141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -34.319805 + inSlope: 81.60489 + outSlope: 81.610344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -11.684521 + inSlope: 111.724525 + outSlope: 111.69592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 5.168427 + inSlope: -18.26713 + outSlope: -18.267128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -14.949999 + inSlope: -100.354904 + outSlope: -100.24745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -35.516113 + inSlope: -25.742609 + outSlope: -25.775757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -36.107002 + inSlope: -3.730774 + outSlope: -3.769962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -36.482113 + inSlope: -42.841503 + outSlope: -42.77978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -43.00425 + inSlope: -82.93658 + outSlope: -82.55026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -66.63007 + inSlope: -53.33486 + outSlope: -53.332764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -65.106155 + inSlope: 64.63733 + outSlope: 65.024475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -36.01486 + inSlope: 95.36083 + outSlope: 91.2117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -31.425726 + inSlope: -43.0399 + outSlope: -42.938843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -48.33784 + inSlope: -69.52152 + outSlope: -69.52152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -52.49906 + inSlope: -2.0602102 + outSlope: -2.0277634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -52.488136 + inSlope: 0.037353534 + outSlope: 0.037434895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -52.44601 + inSlope: 0.037465412 + outSlope: 0.037465412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 80.49676 + inSlope: 3.4293823 + outSlope: 3.4293823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 81.794174 + inSlope: 24.549683 + outSlope: 25.084204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 91.765686 + inSlope: 63.813866 + outSlope: 64.10114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 103.25163 + inSlope: 15.599488 + outSlope: 15.599486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 101.627144 + inSlope: -23.557903 + outSlope: -23.192225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 98.56013 + inSlope: 1.1655576 + outSlope: 1.0171509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 98.46976 + inSlope: -3.6635742 + outSlope: -3.7045934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 98.26234 + inSlope: -8.547921 + outSlope: -8.365261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 97.471306 + inSlope: -6.5036283 + outSlope: -4.9249363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 96.50189 + inSlope: -1.406878 + outSlope: -1.640625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 90.527405 + inSlope: -50.854614 + outSlope: -51.30553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 62.486713 + inSlope: -164.45755 + outSlope: -161.34018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 45.644497 + inSlope: -39.43643 + outSlope: -39.30048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 59.135876 + inSlope: 92.35604 + outSlope: 92.35604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 67.460266 + inSlope: 8.669857 + outSlope: 8.649384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 67.45531 + inSlope: -0.016950345 + outSlope: -0.017008463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 67.43619 + inSlope: -0.016927084 + outSlope: -0.016927084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 59.691696 + inSlope: 1.6757288 + outSlope: 1.6757288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 69.389305 + inSlope: 72.7867 + outSlope: 75.85412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 79.37261 + inSlope: -64.657074 + outSlope: -64.65706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 74.0543 + inSlope: 11.194517 + outSlope: 11.152616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 75.428154 + inSlope: -27.63054 + outSlope: -27.212435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 63.446983 + inSlope: -147.44235 + outSlope: -147.22174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 41.89277 + inSlope: -157.03436 + outSlope: -157.06784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 36.039227 + inSlope: -67.02298 + outSlope: -67.02298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 36.312862 + inSlope: 21.456594 + outSlope: 21.451296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 56.096252 + inSlope: 153.24518 + outSlope: 154.37442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 79.8164 + inSlope: -51.75207 + outSlope: -66.42717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 58.491497 + inSlope: -126.519356 + outSlope: -126.53053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 37.460846 + inSlope: -67.39011 + outSlope: -67.405106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 30.934397 + inSlope: 51.59651 + outSlope: 51.598194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 48.009914 + inSlope: 114.96727 + outSlope: 115.243744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 56.999607 + inSlope: 14.304474 + outSlope: 14.301513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 57.010635 + inSlope: 0.055810567 + outSlope: 0.055613555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 57.073338 + inSlope: 0.046966556 + outSlope: 0.046966556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -156.58969 + inSlope: -2.061035 + outSlope: -2.061035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -148.41444 + inSlope: 205.12305 + outSlope: 179.77788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -54.329082 + inSlope: 367.50055 + outSlope: 367.50046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -26.545912 + inSlope: -25.50698 + outSlope: -26.021927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -30.33722 + inSlope: 66.028465 + outSlope: 70.710175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -11.690107 + inSlope: 77.38131 + outSlope: 82.031204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -2.668961 + inSlope: 27.333996 + outSlope: 29.71918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -1.6030244 + inSlope: 10.125894 + outSlope: 10.125894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -1.6909894 + inSlope: -3.0237923 + outSlope: -3.1006312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -7.47494 + inSlope: -122.86918 + outSlope: -112.951385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -72.18435 + inSlope: -906.6849 + outSlope: -835.1951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -158.00381 + inSlope: -58.389465 + outSlope: -56.43088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -166.7662 + inSlope: -19.292715 + outSlope: -19.418123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -169.17793 + inSlope: 12.9454155 + outSlope: 12.907007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -162.32825 + inSlope: 63.471832 + outSlope: 61.36743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -158.28381 + inSlope: 6.032593 + outSlope: 6.0877466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: -158.2814 + inSlope: 0.0008789066 + outSlope: 0.00083344564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -158.26187 + inSlope: 0.036254887 + outSlope: 0.036254887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -154.42084 + inSlope: -2.5842981 + outSlope: -2.5842981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -147.58447 + inSlope: 196.08115 + outSlope: 170.7047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -55.526077 + inSlope: 361.10196 + outSlope: 361.10187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -28.095972 + inSlope: -24.340288 + outSlope: -24.855688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -31.68804 + inSlope: 65.22621 + outSlope: 69.90882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -13.366863 + inSlope: 73.24629 + outSlope: 77.914215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -4.2886753 + inSlope: 30.15477 + outSlope: 32.491684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -3.0427938 + inSlope: 11.701035 + outSlope: 11.701035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -3.1843367 + inSlope: -4.04002 + outSlope: -4.1122503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -9.478686 + inSlope: -123.843544 + outSlope: -113.930954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -73.14186 + inSlope: -893.6682 + outSlope: -822.18365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -155.78026 + inSlope: -38.73405 + outSlope: -36.68974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -160.50996 + inSlope: -1.7664176 + outSlope: -1.9636971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -161.48851 + inSlope: -1.9151374 + outSlope: -2.0044546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -158.09364 + inSlope: 42.772778 + outSlope: 40.55786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -155.75284 + inSlope: 3.3398438 + outSlope: 3.397633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: -155.74513 + inSlope: 0.038891617 + outSlope: 0.038982525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -155.70126 + inSlope: 0.0326938 + outSlope: 0.0326938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -75.18267 + inSlope: -4.407715 + outSlope: -4.407715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -72.84926 + inSlope: 55.14386 + outSlope: 55.20146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -51.256706 + inSlope: 122.98216 + outSlope: 122.98216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -34.849846 + inSlope: 24.01029 + outSlope: 24.270916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -30.900229 + inSlope: 44.499706 + outSlope: 44.46778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -10.060378 + inSlope: 104.97325 + outSlope: 104.973976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.82796115 + inSlope: 30.326563 + outSlope: 30.27102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.51997095 + inSlope: -32.87777 + outSlope: -32.40613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -29.192684 + inSlope: -135.6613 + outSlope: -135.99724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -68.59385 + inSlope: -162.11133 + outSlope: -162.4156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -81.56248 + inSlope: 112.55792 + outSlope: 112.831894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -71.339066 + inSlope: -8.677011 + outSlope: -11.786865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -75.31406 + inSlope: 62.496094 + outSlope: 70.85162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -62.602627 + inSlope: 44.40857 + outSlope: 44.26236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -61.60895 + inSlope: 0.047698975 + outSlope: 0.047799114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -61.545204 + inSlope: 0.047859196 + outSlope: 0.047859196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.446224 + inSlope: 3.3854828 + outSlope: 3.3854828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 4.548964 + inSlope: -60.154526 + outSlope: -60.983547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -6.0793724 + inSlope: -23.115728 + outSlope: -23.115728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -4.1515393 + inSlope: 27.396227 + outSlope: 26.93177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 7.613032 + inSlope: 22.287388 + outSlope: 22.454653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 6.796484 + inSlope: -19.435066 + outSlope: -20.446426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 3.8968997 + inSlope: -19.293537 + outSlope: -19.386036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 2.3612862 + inSlope: -21.029058 + outSlope: -21.716852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.9198304 + inSlope: 6.3248315 + outSlope: 8.221803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 7.2307367 + inSlope: 81.860306 + outSlope: 73.03275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 165.50989 + inSlope: 94.96926 + outSlope: 97.75424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 150.23482 + inSlope: -266.73978 + outSlope: -265.4037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 84.715065 + inSlope: -595.43134 + outSlope: -563.5414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 29.880716 + inSlope: -69.95531 + outSlope: -71.07628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 28.317589 + inSlope: -0.003479004 + outSlope: -0.0035533907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 28.313019 + inSlope: -0.0032958987 + outSlope: -0.0032958987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 109.15193 + inSlope: -10.689148 + outSlope: -10.689148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 103.68422 + inSlope: -13.153015 + outSlope: -12.267993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 98.009 + inSlope: -47.24736 + outSlope: -47.24736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 86.82897 + inSlope: -50.19598 + outSlope: -49.79749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 74.61998 + inSlope: -16.687918 + outSlope: -16.872803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 76.6453 + inSlope: 23.61905 + outSlope: 24.492004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 80.01796 + inSlope: 25.057251 + outSlope: 25.127369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 82.1341 + inSlope: 28.454302 + outSlope: 28.971436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 96.07286 + inSlope: 47.61819 + outSlope: 46.7265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 105.48935 + inSlope: -0.62438965 + outSlope: 8.531536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -30.982098 + inSlope: 42.640488 + outSlope: 39.8331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 5.1689153 + inSlope: 303.12158 + outSlope: 301.80176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 63.849117 + inSlope: 501.22495 + outSlope: 469.31824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 106.22793 + inSlope: 39.09991 + outSlope: 40.25775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 107.1726 + inSlope: 0.0067749023 + outSlope: 0.006952286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 107.181595 + inSlope: 0.006557465 + outSlope: 0.006557465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -13.3639965 + inSlope: -7.953415 + outSlope: -7.953415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -16.681734 + inSlope: -50.819412 + outSlope: -50.707905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -26.153254 + inSlope: -23.964579 + outSlope: -27.192398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -25.486677 + inSlope: 57.962723 + outSlope: 57.962723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -16.342567 + inSlope: 66.64691 + outSlope: 66.02043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -10.866025 + inSlope: 102.0338 + outSlope: 102.24273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 6.173687 + inSlope: 132.79623 + outSlope: 133.43892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 14.915659 + inSlope: 40.717716 + outSlope: 40.717747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 11.445709 + inSlope: -111.41567 + outSlope: -111.294014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -7.445826 + inSlope: -148.23967 + outSlope: -150.27242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -18.683088 + inSlope: -102.60149 + outSlope: -98.88762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -26.521618 + inSlope: -18.802826 + outSlope: -19.840446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -27.078453 + inSlope: 14.672763 + outSlope: 14.672805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -25.307692 + inSlope: 103.09676 + outSlope: 103.09676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -18.13795 + inSlope: 134.4791 + outSlope: 134.47871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -14.3609295 + inSlope: 92.588066 + outSlope: 94.57634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -6.0181494 + inSlope: -27.774696 + outSlope: -27.774696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -17.743404 + inSlope: -31.6212 + outSlope: -32.029633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -14.008459 + inSlope: 100.32912 + outSlope: 99.091896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -4.243151 + inSlope: 32.538826 + outSlope: 32.937214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -6.5781493 + inSlope: -1.5714928 + outSlope: -1.5714883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -3.6868339 + inSlope: 43.576466 + outSlope: 43.576466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -3.3604958 + inSlope: -42.086945 + outSlope: -42.08719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -7.3652835 + inSlope: -106.65434 + outSlope: -107.6967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -21.383821 + inSlope: -89.47627 + outSlope: -89.26631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -30.899273 + inSlope: -2.4659488 + outSlope: -2.9561462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -25.733725 + inSlope: 63.929947 + outSlope: 64.35413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -18.210428 + inSlope: 8.887558 + outSlope: 8.881764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -18.253265 + inSlope: -0.14674604 + outSlope: -0.14660645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -18.41782 + inSlope: -0.14557903 + outSlope: -0.14557903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 69.6086 + inSlope: 0.09448242 + outSlope: 0.09448242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 69.90571 + inSlope: 33.18219 + outSlope: 33.42631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 94.91627 + inSlope: 266.36884 + outSlope: 266.1568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 132.31401 + inSlope: 287.82092 + outSlope: 287.82092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 160.94707 + inSlope: 152.19324 + outSlope: 152.95444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 171.80986 + inSlope: 114.062836 + outSlope: 113.555786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -172.93558 + inSlope: 155.15479 + outSlope: 154.44627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -158.36678 + inSlope: 165.67155 + outSlope: 165.67168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -150.9736 + inSlope: -23.761236 + outSlope: -24.18053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -169.8026 + inSlope: -239.86916 + outSlope: -238.33269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 167.48503 + inSlope: -290.38596 + outSlope: -292.41394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 139.71179 + inSlope: -104.93262 + outSlope: -104.52812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 137.24028 + inSlope: -19.618248 + outSlope: -19.618305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 138.057 + inSlope: 141.44252 + outSlope: 141.44252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 148.59865 + inSlope: 15.377578 + outSlope: 15.377534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 140.11551 + inSlope: -198.84557 + outSlope: -195.56493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 112.333 + inSlope: -111.23591 + outSlope: -111.23591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 106.9715 + inSlope: 58.525284 + outSlope: 58.219482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 119.87234 + inSlope: 133.04315 + outSlope: 134.46738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 129.67992 + inSlope: -20.425222 + outSlope: -19.80727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 124.91347 + inSlope: 5.659063 + outSlope: 5.6590466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 129.76651 + inSlope: 72.793076 + outSlope: 72.793076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 131.30258 + inSlope: -7.9628754 + outSlope: -7.962921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 129.23222 + inSlope: -40.56058 + outSlope: -37.319458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 127.74415 + inSlope: 12.881653 + outSlope: 14.044778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 125.77716 + inSlope: -49.847694 + outSlope: -49.819336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 118.76588 + inSlope: -34.52362 + outSlope: -33.27716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 117.309746 + inSlope: 2.5923603 + outSlope: 2.6101177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 117.2645 + inSlope: -0.15545663 + outSlope: -0.15561931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 117.08903 + inSlope: -0.15692139 + outSlope: -0.15692139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.54148036 + inSlope: -3.7728724 + outSlope: -3.7728724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.8493758 + inSlope: -27.242546 + outSlope: -27.513418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -11.804596 + inSlope: -110.120895 + outSlope: -109.377686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -25.614492 + inSlope: -93.08702 + outSlope: -93.08702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -34.8269 + inSlope: -38.53354 + outSlope: -39.91842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -37.322136 + inSlope: -21.091833 + outSlope: -19.624695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -38.759636 + inSlope: 26.835754 + outSlope: 24.258625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -34.719284 + inSlope: 70.80466 + outSlope: 70.8047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -29.842638 + inSlope: 34.459793 + outSlope: 34.7117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -26.304602 + inSlope: 60.51317 + outSlope: 56.02614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -20.363747 + inSlope: 100.20008 + outSlope: 104.16815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -9.79194 + inSlope: 45.25802 + outSlope: 44.64348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -8.821758 + inSlope: -5.226461 + outSlope: -5.2264757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -10.215311 + inSlope: -85.291756 + outSlope: -85.291756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -15.30764 + inSlope: -26.89071 + outSlope: -26.890635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -13.626339 + inSlope: 38.75063 + outSlope: 31.512573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -8.396294 + inSlope: 16.732594 + outSlope: 16.732594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -12.424948 + inSlope: -59.59882 + outSlope: -59.29637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -21.263037 + inSlope: -82.53282 + outSlope: -84.43518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -31.051537 + inSlope: -158.52412 + outSlope: -158.51584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -38.64735 + inSlope: -199.74948 + outSlope: -199.74892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -47.66337 + inSlope: -184.78914 + outSlope: -184.78914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -54.248 + inSlope: -139.38768 + outSlope: -139.38737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -59.23281 + inSlope: -127.81433 + outSlope: -127.22937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -75.08761 + inSlope: -91.85596 + outSlope: -92.42299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -75.61041 + inSlope: 94.5244 + outSlope: 94.50952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -58.723595 + inSlope: 131.41406 + outSlope: 130.60143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -46.77147 + inSlope: 6.0586824 + outSlope: 6.0611606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -46.6731 + inSlope: 0.33763358 + outSlope: 0.33765665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -46.293236 + inSlope: 0.33803305 + outSlope: 0.33803305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.43519548 + inSlope: -0.13839555 + outSlope: -0.13839555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.4294277 + inSlope: -0.13839984 + outSlope: -0.1384138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.41787684 + inSlope: -0.13786556 + outSlope: -0.13732265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.39480567 + inSlope: -0.13869809 + outSlope: -0.13869812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.3717189 + inSlope: -0.13677175 + outSlope: -0.13786231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.36016795 + inSlope: -0.13840948 + outSlope: -0.13841558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.34286445 + inSlope: -0.13841486 + outSlope: -0.13841486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.32554564 + inSlope: -0.13768029 + outSlope: -0.13785592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.31400996 + inSlope: -0.13840416 + outSlope: -0.13840407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.30245915 + inSlope: -0.13675934 + outSlope: -0.13728847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.29669142 + inSlope: -0.1372949 + outSlope: -0.13566393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.28515607 + inSlope: -0.1373226 + outSlope: -0.1373226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.27360523 + inSlope: -0.13842338 + outSlope: -0.13842358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.26206937 + inSlope: -0.13731743 + outSlope: -0.13730523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.25630143 + inSlope: -0.13729665 + outSlope: -0.13729705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.2505335 + inSlope: -0.1350912 + outSlope: -0.1350912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.24475029 + inSlope: -0.1317867 + outSlope: -0.13178633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.23898248 + inSlope: -0.13837919 + outSlope: -0.13842337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.17550592 + inSlope: -0.13842337 + outSlope: -0.13837919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.16973808 + inSlope: -0.13837811 + outSlope: -0.13837852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.16397023 + inSlope: -0.1361791 + outSlope: -0.1361791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.15818734 + inSlope: -0.1317985 + outSlope: -0.13179813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.15241961 + inSlope: -0.13729772 + outSlope: -0.13729772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.14665192 + inSlope: -0.13730738 + outSlope: -0.13786782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.1351165 + inSlope: -0.13787587 + outSlope: -0.1369611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.11779804 + inSlope: -0.138066 + outSlope: -0.13751444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.083175935 + inSlope: -0.13824794 + outSlope: -0.13843264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.060089286 + inSlope: -0.09228826 + outSlope: -0.092287004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.04660052 + inSlope: -0.04630139 + outSlope: -0.046305817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0054014158 + inSlope: -0.0461431 + outSlope: -0.0461431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 128.22536 + inSlope: 54.943726 + outSlope: 54.943726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 130.51466 + inSlope: 95.50964 + outSlope: 95.514595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 143.42421 + inSlope: 170.03706 + outSlope: 169.74068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 159.77876 + inSlope: -23.507719 + outSlope: -23.507723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 136.03185 + inSlope: -202.19157 + outSlope: -202.68839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 122.242645 + inSlope: -83.87292 + outSlope: -83.843994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 119.9975 + inSlope: -27.35083 + outSlope: -27.35083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 108.45526 + inSlope: -147.47607 + outSlope: -147.54861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 99.7581 + inSlope: 53.99397 + outSlope: 53.99393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 119.88578 + inSlope: 351.09406 + outSlope: 351.5557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 135.91956 + inSlope: 368.19177 + outSlope: 367.37274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 161.29628 + inSlope: 198.11472 + outSlope: 198.11472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 168.00478 + inSlope: -49.67521 + outSlope: -49.675278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 153.39484 + inSlope: -276.1702 + outSlope: -276.332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 140.03992 + inSlope: -373.7322 + outSlope: -373.73328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 122.15425 + inSlope: -675.17316 + outSlope: -675.17316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 83.256355 + inSlope: -453.09253 + outSlope: -453.09344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 83.256355 + inSlope: -0.00054931536 + outSlope: -0.000049937862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 83.25636 + inSlope: 0.0002996272 + outSlope: -0.0010986307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 83.25638 + inSlope: 139.76341 + outSlope: 139.76381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 94.91453 + inSlope: 596.94653 + outSlope: 596.94653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 133.4076 + inSlope: 590.94635 + outSlope: 590.9447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 145.4007 + inSlope: 247.34132 + outSlope: 247.34132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 154.06473 + inSlope: 236.50223 + outSlope: 236.37767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 175.33017 + inSlope: 224.00046 + outSlope: 223.68164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -165.45287 + inSlope: 100.87976 + outSlope: 100.732544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -158.32806 + inSlope: -47.713623 + outSlope: -47.72239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -166.80055 + inSlope: -11.637812 + outSlope: -11.637039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -166.8938 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -166.8938 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 180 + inSlope: 0.0021972656 + outSlope: 0.0021972656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 180 + inSlope: 0 + outSlope: -0.0021972659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 180 + inSlope: -0.0065917973 + outSlope: -0.011535644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 180 + inSlope: -0.00054931635 + outSlope: -0.00054931646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 180 + inSlope: 0.013732911 + outSlope: 0.006591796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 180 + inSlope: 0.0054931636 + outSlope: 0.006591797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 180 + inSlope: 0.0007324219 + outSlope: 0.0007324219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 180 + inSlope: 0.0073242188 + outSlope: 0.004394532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 180 + inSlope: 0.004394532 + outSlope: 0.0043945294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 180 + inSlope: -0.010986323 + outSlope: -0.0043945354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 180 + inSlope: -0.008789071 + outSlope: -0.013183587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 180 + inSlope: -0.009887691 + outSlope: -0.009887691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 180 + inSlope: -0.0021972647 + outSlope: -0.0021972677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 180 + inSlope: 0.007690437 + outSlope: 0.004394523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 180 + inSlope: 0.004394523 + outSlope: 0.0043945354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 180 + inSlope: -0.0021972677 + outSlope: -0.0021972677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -180 + inSlope: 0.030761749 + outSlope: 0.030761661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -180 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -180 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -180 + inSlope: 0.005493154 + outSlope: 0.005493169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 180 + inSlope: 0.008789071 + outSlope: 0.008789071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 180 + inSlope: -0.026367214 + outSlope: -0.026367137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 180 + inSlope: -0.008789046 + outSlope: -0.008789046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 180 + inSlope: -0.004394523 + outSlope: -0.0065918034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 180 + inSlope: -0.008789071 + outSlope: -0.012451172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 180 + inSlope: -0.005859375 + outSlope: -0.010986328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 180 + inSlope: 0.0043945312 + outSlope: 0.0027465806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 180 + inSlope: 0.0010986323 + outSlope: 0.001255581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 180 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 180 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -71.71055 + inSlope: 0.042297363 + outSlope: 0.042297363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -71.696495 + inSlope: 0.16699219 + outSlope: 0.028198242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -71.84497 + inSlope: -7.7036133 + outSlope: -7.890656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -76.21349 + inSlope: -35.43256 + outSlope: -36.116455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -79.79808 + inSlope: -13.300049 + outSlope: -13.627435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -80.2547 + inSlope: -10.883052 + outSlope: -10.312869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -79.014946 + inSlope: 51.57478 + outSlope: 51.754395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -71.0051 + inSlope: 55.788574 + outSlope: 55.896763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -67.558586 + inSlope: 21.443106 + outSlope: 21.631002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -67.04884 + inSlope: 3.3299592 + outSlope: 3.5665283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -68.97639 + inSlope: -40.528564 + outSlope: -40.69334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -73.9725 + inSlope: -37.755596 + outSlope: -37.755596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -73.823166 + inSlope: 79.558556 + outSlope: 68.00434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -70.94221 + inSlope: 81.547195 + outSlope: 81.547195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -68.008095 + inSlope: 68.144966 + outSlope: 68.14587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -65.89341 + inSlope: 35.635185 + outSlope: 35.63419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -65.503105 + inSlope: -10.816051 + outSlope: -10.816051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -67.07471 + inSlope: -33.101837 + outSlope: -33.10174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -68.93295 + inSlope: -40.20549 + outSlope: -40.61759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -71.53923 + inSlope: -24.362206 + outSlope: -24.361073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -73.115906 + inSlope: -9.386714 + outSlope: -9.386714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -71.47716 + inSlope: 56.375217 + outSlope: 56.375298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -66.93269 + inSlope: 42.948895 + outSlope: 43.31543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -65.239174 + inSlope: -10.049561 + outSlope: -9.597638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -65.83097 + inSlope: -12.94187 + outSlope: -12.941907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -65.72056 + inSlope: 19.114033 + outSlope: 19.114033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -63.46584 + inSlope: 107.565315 + outSlope: 107.56721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -58.7497 + inSlope: 127.61722 + outSlope: 134.02632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -50.45747 + inSlope: 105.94332 + outSlope: 107.91568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -36.680756 + inSlope: 82.81787 + outSlope: 83.14202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -35.41606 + inSlope: -70.2655 + outSlope: -70.341064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -48.55354 + inSlope: -102.88742 + outSlope: -102.88742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -57.433304 + inSlope: -24.764648 + outSlope: -24.764648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -57.841015 + inSlope: -0.17697144 + outSlope: -0.17613317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -58.074116 + inSlope: -0.17227079 + outSlope: -0.17227079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 115.95907 + inSlope: 21.401642 + outSlope: 21.401642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 119.10757 + inSlope: 62.79593 + outSlope: 62.779724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 128.95389 + inSlope: 87.31348 + outSlope: 87.318794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 145.76936 + inSlope: 137.88805 + outSlope: 131.68323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 159.904 + inSlope: 47.45984 + outSlope: 43.583843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 159.77933 + inSlope: 127.2348 + outSlope: 129.77823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 179.32875 + inSlope: 70.922806 + outSlope: 65.65686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 171.88387 + inSlope: -97.74426 + outSlope: -99.12904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 163.69313 + inSlope: -47.027504 + outSlope: -46.785324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 163.02654 + inSlope: 31.01773 + outSlope: 30.76941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 173.30046 + inSlope: -28.118042 + outSlope: -25.918385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 151.58107 + inSlope: -609.926 + outSlope: -609.926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 84.713455 + inSlope: -749.92804 + outSlope: -788.53455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 51.880432 + inSlope: -682.39886 + outSlope: -682.39886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 23.54949 + inSlope: -595.80054 + outSlope: -595.7999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.8832257 + inSlope: -504.23514 + outSlope: -504.2355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -20.555126 + inSlope: -496.55533 + outSlope: -496.55533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -43.448586 + inSlope: -271.45428 + outSlope: -271.45352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -42.388367 + inSlope: 50.244778 + outSlope: 47.877365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -34.640697 + inSlope: 84.842964 + outSlope: 84.84284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -32.613243 + inSlope: -104.01548 + outSlope: -104.01548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -49.675808 + inSlope: -200.98668 + outSlope: -200.98642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -64.68632 + inSlope: -142.57411 + outSlope: -140.20679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -80.13318 + inSlope: -33.561768 + outSlope: -34.22015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -78.778984 + inSlope: 226.00372 + outSlope: 226.00217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -61.442924 + inSlope: 689.3922 + outSlope: 689.3922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -22.060398 + inSlope: 728.6494 + outSlope: 728.64954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 2.4380245 + inSlope: 432.57224 + outSlope: 414.26553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 28.334148 + inSlope: 234.56451 + outSlope: 228.80649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 48.984695 + inSlope: 73.29346 + outSlope: 72.154594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 52.9555 + inSlope: -13.114854 + outSlope: -12.488434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 46.206562 + inSlope: -118.0936 + outSlope: -118.0936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 31.893692 + inSlope: -61.390503 + outSlope: -61.390503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 30.910334 + inSlope: -0.52098083 + outSlope: -0.52235276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 30.21013 + inSlope: -0.530747 + outSlope: -0.530747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -31.898987 + inSlope: 17.875854 + outSlope: 17.875854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -29.15102 + inSlope: 58.243057 + outSlope: 58.227997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -20.09583 + inSlope: 59.875626 + outSlope: 59.732224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -25.153534 + inSlope: -177.541 + outSlope: -171.35742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -52.04521 + inSlope: -163.00781 + outSlope: -159.24236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -56.303566 + inSlope: -211.71413 + outSlope: -214.23454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -80.5397 + inSlope: -121.16934 + outSlope: -115.92993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -82.43595 + inSlope: -21.407959 + outSlope: -19.919302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -86.19347 + inSlope: -81.89864 + outSlope: -82.12068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -89.989 + inSlope: -81.57796 + outSlope: -81.319336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -91.650734 + inSlope: 126.77014 + outSlope: 124.68378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -66.631516 + inSlope: 539.8141 + outSlope: 539.8141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -16.56636 + inSlope: 434.13718 + outSlope: 472.7806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 1.0678952 + inSlope: 298.27518 + outSlope: 298.27518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 12.495837 + inSlope: 194.82384 + outSlope: 194.82327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 20.331661 + inSlope: 142.1477 + outSlope: 142.14812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 26.374672 + inSlope: 122.688286 + outSlope: 122.688286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 31.69297 + inSlope: 169.71202 + outSlope: 169.71153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 39.569878 + inSlope: 209.60611 + outSlope: 211.61583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 60.007244 + inSlope: 291.78192 + outSlope: 291.7826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 89.6487 + inSlope: 445.57614 + outSlope: 445.57614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 128.89314 + inSlope: 347.35843 + outSlope: 347.35892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 144.93726 + inSlope: 57.493706 + outSlope: 55.044434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 140.91127 + inSlope: -136.52234 + outSlope: -136.16759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 133.0593 + inSlope: -267.59567 + outSlope: -267.59424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 118.74394 + inSlope: -404.1995 + outSlope: -404.1995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 100.24071 + inSlope: -379.35278 + outSlope: -379.35388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 84.102036 + inSlope: -261.86414 + outSlope: -243.02824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 69.413826 + inSlope: -121.37954 + outSlope: -115.15521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 56.137707 + inSlope: -52.813385 + outSlope: -51.573578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 55.213253 + inSlope: 49.831833 + outSlope: 49.364227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 66.65175 + inSlope: 136.47363 + outSlope: 136.47363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 80.42998 + inSlope: 49.71277 + outSlope: 49.71277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 81.01907 + inSlope: 0.6057129 + outSlope: 0.6074067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 81.83258 + inSlope: 0.6156464 + outSlope: 0.6156464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 29.426844 + inSlope: -2.3504837 + outSlope: -2.3504837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 26.26313 + inSlope: -11.044829 + outSlope: -10.611803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 20.592821 + inSlope: -7.587972 + outSlope: -7.587973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 2.7636032 + inSlope: -41.334045 + outSlope: -41.706646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -5.6057553 + inSlope: -35.85658 + outSlope: -35.85654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -12.329899 + inSlope: -23.612183 + outSlope: -23.69783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -12.264832 + inSlope: 13.886719 + outSlope: 13.759006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -9.391288 + inSlope: -1.0766003 + outSlope: -1.0667036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -9.494087 + inSlope: 0.00007847375 + outSlope: 0.000019618446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -9.494087 + inSlope: 0.000019618446 + outSlope: 0.000019618446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -11.638364 + inSlope: 5.7018833 + outSlope: 5.7018833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -2.0241318 + inSlope: 33.667328 + outSlope: 33.676277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 7.2925663 + inSlope: -16.875776 + outSlope: -16.875778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -12.844387 + inSlope: -32.812153 + outSlope: -32.546623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -18.608799 + inSlope: -22.7355 + outSlope: -22.735476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -23.028273 + inSlope: -13.211956 + outSlope: -13.034752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -19.043085 + inSlope: 49.561455 + outSlope: 49.544456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -2.9249249 + inSlope: 16.159777 + outSlope: 16.160707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -2.547786 + inSlope: -0.00004659379 + outSlope: -0.0000116484525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -2.5477862 + inSlope: -0.000011035376 + outSlope: -0.000011035376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 34.794968 + inSlope: -0.72553706 + outSlope: -0.72553706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 30.118929 + inSlope: -22.387512 + outSlope: -22.523445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 11.012416 + inSlope: -29.761204 + outSlope: -29.761206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 3.4559705 + inSlope: 6.758461 + outSlope: 5.124578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 4.374013 + inSlope: -7.025169 + outSlope: -7.025161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -6.8210673 + inSlope: -61.47341 + outSlope: -61.460182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -9.607345 + inSlope: 10.149342 + outSlope: 10.305857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -5.24405 + inSlope: 5.1633096 + outSlope: 5.165466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -5.1302276 + inSlope: -0.00006375992 + outSlope: -0.000015939988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -5.130226 + inSlope: 0.000019618446 + outSlope: 0.000019618446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.232529 + inSlope: -5.4656982 + outSlope: -5.4656982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -22.352205 + inSlope: -54.547096 + outSlope: -54.400505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -37.483887 + inSlope: -22.225655 + outSlope: -22.225655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -37.170994 + inSlope: 21.082645 + outSlope: 20.82463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -34.628403 + inSlope: -1.633667 + outSlope: -1.5881838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -31.108833 + inSlope: 33.080112 + outSlope: 33.96917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -15.640357 + inSlope: 55.89833 + outSlope: 58.12193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -8.38472 + inSlope: 3.6735544 + outSlope: 2.718896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -12.32903 + inSlope: -12.448318 + outSlope: -12.507145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -14.011504 + inSlope: -3.1933708 + outSlope: -3.4993804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -13.638042 + inSlope: 2.9256053 + outSlope: 2.925602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -13.497775 + inSlope: 0.0022384627 + outSlope: 0.0022393507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -13.494868 + inSlope: 0.0022216307 + outSlope: 0.0022216307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 57.336376 + inSlope: -11.54512 + outSlope: -11.54512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 44.47052 + inSlope: -98.47302 + outSlope: -98.78435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 3.9830067 + inSlope: -174.50389 + outSlope: -174.50389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -39.192722 + inSlope: -93.355965 + outSlope: -93.66847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -46.016068 + inSlope: 35.313538 + outSlope: 35.324562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -7.360075 + inSlope: 118.139496 + outSlope: 119.14745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 24.55559 + inSlope: 96.42099 + outSlope: 95.91118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 38.852463 + inSlope: 78.57396 + outSlope: 78.5296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 53.354046 + inSlope: 51.44111 + outSlope: 51.432907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 61.85992 + inSlope: 19.565231 + outSlope: 19.534853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 64.02638 + inSlope: 3.5371594 + outSlope: 3.5371554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 64.13442 + inSlope: 0.01856688 + outSlope: 0.018588161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 64.15844 + inSlope: 0.018517282 + outSlope: 0.018517282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -35.905334 + inSlope: -0.13916016 + outSlope: -0.13916016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -36.782818 + inSlope: 7.8612213 + outSlope: 8.60869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -27.6649 + inSlope: 66.72293 + outSlope: 66.72293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -11.234218 + inSlope: 29.992939 + outSlope: 30.360844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -9.176636 + inSlope: -3.1620483 + outSlope: -3.1957035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -8.391287 + inSlope: 19.146576 + outSlope: 17.76683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 2.3448596 + inSlope: 59.828278 + outSlope: 58.28284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 14.588494 + inSlope: 101.317154 + outSlope: 101.248535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 30.127392 + inSlope: 10.293803 + outSlope: 10.214951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 9.86431 + inSlope: -131.78914 + outSlope: -131.8864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -14.303451 + inSlope: -68.96869 + outSlope: -68.96861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -17.391739 + inSlope: 0.002197264 + outSlope: 0.0021972659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -17.388893 + inSlope: 0.0022149857 + outSlope: 0.0022149857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -46.420708 + inSlope: 23.940857 + outSlope: 23.940857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -45.346653 + inSlope: 27.902252 + outSlope: 30.2867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -41.967808 + inSlope: 78.08932 + outSlope: 69.501976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -38.52905 + inSlope: 109.8575 + outSlope: 117.48217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -29.109236 + inSlope: 94.33679 + outSlope: 94.33678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -26.067432 + inSlope: -15.0654125 + outSlope: -16.754978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -28.019733 + inSlope: 7.52701 + outSlope: 7.860854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -20.308586 + inSlope: 122.72249 + outSlope: 122.974884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -8.223682 + inSlope: 63.690018 + outSlope: 63.690033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.6183481 + inSlope: 97.13601 + outSlope: 96.975266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 20.26992 + inSlope: 130.96104 + outSlope: 130.9615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 46.00173 + inSlope: 197.25407 + outSlope: 203.24342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 55.787407 + inSlope: 295.06064 + outSlope: 295.06064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 70.770546 + inSlope: 427.51962 + outSlope: 427.5206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 82.22443 + inSlope: -491.40213 + outSlope: -491.40134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 56.746113 + inSlope: -504.02383 + outSlope: -504.02383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 40.365704 + inSlope: -308.0402 + outSlope: -308.0404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 31.201654 + inSlope: -157.86073 + outSlope: -156.34447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 24.90939 + inSlope: -16.536163 + outSlope: -21.206203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 10.49199 + inSlope: -180.49712 + outSlope: -175.89847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -14.795395 + inSlope: -196.90576 + outSlope: -196.90576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -31.20704 + inSlope: -38.703873 + outSlope: -34.811092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -32.130756 + inSlope: -6.2879534 + outSlope: -6.2879534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -37.2938 + inSlope: -49.176292 + outSlope: -48.06817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -28.55957 + inSlope: 227.4452 + outSlope: 216.65547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -18.446678 + inSlope: 360.54807 + outSlope: 360.54794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 1.2401108 + inSlope: 479.8232 + outSlope: 479.82376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 21.620539 + inSlope: 403.3407 + outSlope: 403.3407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 35.01209 + inSlope: 267.9272 + outSlope: 267.17004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 49.217335 + inSlope: 82.78522 + outSlope: 82.63687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 50.961952 + inSlope: -0.02142334 + outSlope: -0.021715166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 50.931343 + inSlope: -0.019449236 + outSlope: -0.019449236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -67.4381 + inSlope: 101.77954 + outSlope: 101.77954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -63.26403 + inSlope: 155.39502 + outSlope: 153.902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -43.61663 + inSlope: 252.15465 + outSlope: 259.1603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -32.677288 + inSlope: 225.9577 + outSlope: 216.68158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -18.137482 + inSlope: 118.62049 + outSlope: 118.62047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -7.6355996 + inSlope: 149.7072 + outSlope: 149.39285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.5153887 + inSlope: 85.630226 + outSlope: 85.5195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -4.99039 + inSlope: -85.29005 + outSlope: -84.313385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -11.520755 + inSlope: -21.314135 + outSlope: -21.31414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -15.303156 + inSlope: -81.35829 + outSlope: -81.50659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -36.64859 + inSlope: -168.89369 + outSlope: -168.89384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -65.31406 + inSlope: -179.32864 + outSlope: -149.14284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -70.23558 + inSlope: -73.39533 + outSlope: -73.39533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -69.00557 + inSlope: 425.75467 + outSlope: 425.75674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 35.738983 + inSlope: 1575.7012 + outSlope: 1575.7035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 59.914745 + inSlope: 100.84168 + outSlope: 100.84168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 64.43018 + inSlope: -30.171232 + outSlope: -30.171146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 60.41373 + inSlope: -129.1531 + outSlope: -127.93405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 37.432575 + inSlope: -208.93369 + outSlope: -207.26622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -6.1884017 + inSlope: -135.0767 + outSlope: -144.06479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -15.426612 + inSlope: 41.784096 + outSlope: 41.784096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -2.870478 + inSlope: 134.03563 + outSlope: 135.36018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 7.3016057 + inSlope: -3.4052193 + outSlope: -3.4052193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.000745875 + inSlope: -124.90382 + outSlope: -126.11895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -49.78483 + inSlope: -170.71947 + outSlope: -199.79369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -57.20476 + inSlope: -142.20209 + outSlope: -142.20181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -62.154716 + inSlope: -72.69351 + outSlope: -72.6931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -63.950394 + inSlope: -11.76194 + outSlope: -11.76194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -63.61767 + inSlope: 25.600292 + outSlope: 30.354704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -60.951694 + inSlope: 27.962566 + outSlope: 29.153412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -60.401478 + inSlope: 0.07992554 + outSlope: 0.079762466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -60.29572 + inSlope: 0.08092976 + outSlope: 0.08092976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 128.24156 + inSlope: -109.7655 + outSlope: -109.7655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 123.73398 + inSlope: -181.90942 + outSlope: -180.45815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 98.04531 + inSlope: -374.89062 + outSlope: -381.4799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 81.05027 + inSlope: -380.15384 + outSlope: -371.748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 54.155556 + inSlope: -222.94365 + outSlope: -222.9436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 40.950996 + inSlope: -103.67494 + outSlope: -103.29842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 37.40286 + inSlope: -36.799538 + outSlope: -36.677166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 40.202213 + inSlope: 35.881207 + outSlope: 34.38784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 42.08231 + inSlope: -2.3189387 + outSlope: -2.3189392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 41.19741 + inSlope: -10.408997 + outSlope: -11.369067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 36.347725 + inSlope: -77.583405 + outSlope: -77.58335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 19.713324 + inSlope: -143.39825 + outSlope: -112.15555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 15.868537 + inSlope: -56.1176 + outSlope: -56.1176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 17.49613 + inSlope: 440.79346 + outSlope: 440.7955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 123.1071 + inSlope: 1650.1752 + outSlope: 1650.1799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 152.82454 + inSlope: 242.66075 + outSlope: 242.66075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 163.53537 + inSlope: 130.48474 + outSlope: 130.48438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 166.43875 + inSlope: 36.481133 + outSlope: 41.076416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 160.74463 + inSlope: -105.25488 + outSlope: -103.51279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 125.29229 + inSlope: -177.68799 + outSlope: -185.16779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 99.5808 + inSlope: -236.95953 + outSlope: -236.95953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 66.241234 + inSlope: -272.78522 + outSlope: -273.52798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 35.862335 + inSlope: -93.97453 + outSlope: -93.97453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 32.74056 + inSlope: 88.62385 + outSlope: 89.95076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 77.331566 + inSlope: 156.55315 + outSlope: 186.51729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 84.35758 + inSlope: 135.57707 + outSlope: 135.57785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 89.17242 + inSlope: 90.74357 + outSlope: 90.74305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 92.92415 + inSlope: 87.66084 + outSlope: 87.66084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 96.78485 + inSlope: 93.21223 + outSlope: 96.81381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 103.2795 + inSlope: 50.834064 + outSlope: 51.935486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 104.301414 + inSlope: 0.08441162 + outSlope: 0.08399392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 104.41748 + inSlope: 0.07649232 + outSlope: 0.07649232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.15570568 + inSlope: -1.9914619 + outSlope: -1.9914619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.24026413 + inSlope: -3.37066 + outSlope: -3.37066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.43975785 + inSlope: -5.463533 + outSlope: -5.5308943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -1.0624477 + inSlope: -1.3298693 + outSlope: -1.3471597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.61865795 + inSlope: 9.238054 + outSlope: 9.420083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.24565794 + inSlope: 7.5382037 + outSlope: 7.5382037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.004499845 + inSlope: 1.5764307 + outSlope: 1.5764295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.014128218 + inSlope: -1.4107461 + outSlope: -1.410747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.14325371 + inSlope: -3.5900304 + outSlope: -3.8410847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.4356191 + inSlope: -1.3356689 + outSlope: -1.332789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.50767696 + inSlope: -1.6050385 + outSlope: -1.610919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.819944 + inSlope: -2.0153131 + outSlope: -1.9336265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.9810419 + inSlope: 0.7869645 + outSlope: 0.76111186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.85203606 + inSlope: 2.6103697 + outSlope: 2.5576582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.7224432 + inSlope: 6.4523196 + outSlope: 6.452301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.3412955 + inSlope: 9.615373 + outSlope: 9.6154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.00003454489 + inSlope: 1.6998767 + outSlope: 1.6998767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.00003456162 + inSlope: 0.00029117137 + outSlope: 0.000010398966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.000035030134 + inSlope: 0.000011603715 + outSlope: 0.00032490343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.000035026675 + inSlope: -1.3103417 + outSlope: -1.3103492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.18856733 + inSlope: -9.842746 + outSlope: -9.8426895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.7494382 + inSlope: -9.0810795 + outSlope: -9.0810795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.8798676 + inSlope: -2.5048738 + outSlope: -2.496094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -1.015989 + inSlope: -0.8614105 + outSlope: -0.8468893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: -1.0355177 + inSlope: -0.000026409438 + outSlope: -0.000015605583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -1.0355198 + inSlope: -0.000008583071 + outSlope: -0.000008583071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 17.07026 + inSlope: 159.49457 + outSlope: 159.49457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 23.716673 + inSlope: 216.24184 + outSlope: 216.24184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 35.107258 + inSlope: 252.07443 + outSlope: 251.33487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 51.009018 + inSlope: -51.585938 + outSlope: -51.580803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 36.03665 + inSlope: -293.50632 + outSlope: -293.6712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 21.532583 + inSlope: -396.429 + outSlope: -396.429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 2.8831692 + inSlope: -218.43173 + outSlope: -218.43158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 3.2042832 + inSlope: 144.41861 + outSlope: 144.41872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 14.929078 + inSlope: 238.85704 + outSlope: 238.11209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 31.31382 + inSlope: 11.506894 + outSlope: 11.507907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 28.650826 + inSlope: 26.666845 + outSlope: 26.66803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 44.132854 + inSlope: 144.35751 + outSlope: 144.11499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 56.45323 + inSlope: -65.36712 + outSlope: -65.38071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 46.378944 + inSlope: -176.42303 + outSlope: -176.46751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 37.867702 + inSlope: -250.17404 + outSlope: -250.17442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 25.502789 + inSlope: -455.64914 + outSlope: -455.64932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.26057136 + inSlope: -305.16113 + outSlope: -305.16113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.2605713 + inSlope: -0.00021886846 + outSlope: -0.000007816723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.2605693 + inSlope: 0.0008110233 + outSlope: 0.00073599676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.26049927 + inSlope: 223.8505 + outSlope: 223.85068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 18.43906 + inSlope: 464.07498 + outSlope: 464.07452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 38.627148 + inSlope: 320.49063 + outSlope: 320.49063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 45.330387 + inSlope: 100.05862 + outSlope: 100.017845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 46.587273 + inSlope: -9.561136 + outSlope: -9.56178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 46.17495 + inSlope: 0.000042255102 + outSlope: 0.000024968931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 46.17495 + inSlope: 0.000024968931 + outSlope: 0.000024968931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.507061 + inSlope: 1.0340881 + outSlope: 1.0340881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.5468927 + inSlope: 1.5071483 + outSlope: 1.5071483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.62551653 + inSlope: 1.6470137 + outSlope: 1.3055964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.8599646 + inSlope: 2.7858982 + outSlope: 2.777541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.85029006 + inSlope: -4.9732957 + outSlope: -4.6467886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.6225809 + inSlope: -9.491597 + outSlope: -9.491597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.08940094 + inSlope: -4.8570347 + outSlope: -4.8570313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.25240928 + inSlope: 5.494376 + outSlope: 5.49438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.5372831 + inSlope: 4.7412753 + outSlope: 4.5082803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.7160384 + inSlope: 1.9272604 + outSlope: 1.9290388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9290944 + inSlope: 1.7874053 + outSlope: 1.7819352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.8450587 + inSlope: -2.174841 + outSlope: -2.2380834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.65043145 + inSlope: 1.0877178 + outSlope: 1.1065009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.8118981 + inSlope: 2.5122674 + outSlope: 2.5690951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.9289961 + inSlope: -0.9653558 + outSlope: -0.9653531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.7154149 + inSlope: -11.158166 + outSlope: -11.158197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.008113153 + inSlope: -9.400237 + outSlope: -9.400237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.0081131635 + inSlope: -0.0003248829 + outSlope: -0.000011602948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.008113462 + inSlope: 0.000028400282 + outSlope: -0.0003034243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.008111211 + inSlope: 7.1395354 + outSlope: 7.1395764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.56555265 + inSlope: 11.452127 + outSlope: 11.452063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.9377849 + inSlope: 2.135 + outSlope: 2.135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.86967903 + inSlope: -0.569404 + outSlope: -0.59946144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.96106166 + inSlope: 1.1381096 + outSlope: 1.1489047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.99374276 + inSlope: 0.0000062722415 + outSlope: 0.0000037063257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99374443 + inSlope: -0.000001755628 + outSlope: -0.000001755628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 12.268569 + inSlope: -0.66698456 + outSlope: -0.66698456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 10.489065 + inSlope: -10.604416 + outSlope: -10.604416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 5.1537533 + inSlope: -18.285812 + outSlope: -18.334023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.32168606 + inSlope: 1.6535499 + outSlope: 1.6539896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 7.4226785 + inSlope: 22.466545 + outSlope: 23.854027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 11.497025 + inSlope: 10.394822 + outSlope: 10.764956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 12.551742 + inSlope: 1.4801506 + outSlope: 1.5754731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 12.556564 + inSlope: -6.111142 + outSlope: -6.111142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 10.758675 + inSlope: -44.654182 + outSlope: -44.654247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 6.12995 + inSlope: -61.16337 + outSlope: -61.81216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 1.8661873 + inSlope: 6.5385303 + outSlope: 6.5385303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 6.871745 + inSlope: 49.99926 + outSlope: 51.281506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 10.748117 + inSlope: 28.783781 + outSlope: 28.783863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 11.90649 + inSlope: -3.3413575 + outSlope: -3.3413575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 10.573124 + inSlope: -22.440283 + outSlope: -21.861927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 9.671951 + inSlope: -15.949921 + outSlope: -16.475464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 9.410154 + inSlope: 0.000045776367 + outSlope: 0.000004291535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 9.410154 + inSlope: 0.000004291535 + outSlope: 0.000004291535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.864055 + inSlope: -1.3533058 + outSlope: -1.3533058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -7.6783047 + inSlope: -11.123611 + outSlope: -11.123611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -11.967914 + inSlope: -6.5700455 + outSlope: -6.3663354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -12.93768 + inSlope: 0.40801156 + outSlope: 0.40578184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -10.607492 + inSlope: 21.13655 + outSlope: 19.872423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -6.2781935 + inSlope: 22.073439 + outSlope: 21.915997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -3.4657636 + inSlope: 10.849903 + outSlope: 10.837064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -3.4988263 + inSlope: -24.185247 + outSlope: -24.185247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -7.4563694 + inSlope: -54.19354 + outSlope: -54.19362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -11.530587 + inSlope: -24.893085 + outSlope: -22.44413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -12.566689 + inSlope: 2.1549683 + outSlope: 2.1549683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -11.193323 + inSlope: 31.318954 + outSlope: 29.500774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -8.213255 + inSlope: 41.138706 + outSlope: 41.138275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -5.995293 + inSlope: 0.7297847 + outSlope: 0.7297847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -7.896548 + inSlope: -28.106813 + outSlope: -28.61806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -9.049334 + inSlope: -18.401928 + outSlope: -17.857864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -9.469021 + inSlope: -0.000091552734 + outSlope: -0.00000858307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -9.46902 + inSlope: -0.000010728837 + outSlope: -0.000010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 28.615183 + inSlope: -8.340164 + outSlope: -8.340164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 9.642059 + inSlope: -85.87671 + outSlope: -85.87671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -25.913929 + inSlope: -88.79245 + outSlope: -88.699066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -48.34814 + inSlope: 5.3951373 + outSlope: 5.3948035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -13.391499 + inSlope: 165.12843 + outSlope: 165.60025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 20.135971 + inSlope: 137.2313 + outSlope: 137.28519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 35.79645 + inSlope: 36.909058 + outSlope: 36.907314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 33.200188 + inSlope: -147.83827 + outSlope: -147.83827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 11.421344 + inSlope: -324.2724 + outSlope: -324.2723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -17.056036 + inSlope: -316.13278 + outSlope: -314.89807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -41.41047 + inSlope: 0.7369995 + outSlope: 0.7369995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -17.012451 + inSlope: 306.3197 + outSlope: 306.5306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 8.675273 + inSlope: 257.70435 + outSlope: 257.70453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 21.304676 + inSlope: 2.0779285 + outSlope: 2.0779285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 10.579016 + inSlope: -175.52728 + outSlope: -175.77034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 3.2621977 + inSlope: -127.15815 + outSlope: -126.85524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.049511027 + inSlope: -0.000089854 + outSlope: -0.000008423814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.04951189 + inSlope: -0.0000064792116 + outSlope: -0.0000064792116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 26.951088 + inSlope: -48.643616 + outSlope: -48.643616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 24.91967 + inSlope: -100.25409 + outSlope: -100.25409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 18.580153 + inSlope: -223.00914 + outSlope: -223.00916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 6.44623 + inSlope: -363.31253 + outSlope: -363.31247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -11.013907 + inSlope: -320.541 + outSlope: -320.541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -19.506433 + inSlope: 64.18171 + outSlope: 64.18173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -11.156216 + inSlope: 269.1857 + outSlope: 269.1866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.38217068 + inSlope: 251.7165 + outSlope: 250.8394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 15.976402 + inSlope: 134.46527 + outSlope: 134.46523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 26.062262 + inSlope: 119.27505 + outSlope: 117.10757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 46.06113 + inSlope: 111.330444 + outSlope: 110.210815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 62.505436 + inSlope: 1.1493345 + outSlope: 0.2671051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 44.417294 + inSlope: -94.228226 + outSlope: -94.018616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 25.650408 + inSlope: -31.081446 + outSlope: -31.192677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 17.68268 + inSlope: -83.18627 + outSlope: -83.28081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 1.3286182 + inSlope: -170.9419 + outSlope: -174.88527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -6.3936143 + inSlope: -175.887 + outSlope: -175.887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -13.467237 + inSlope: -137.84024 + outSlope: -132.44623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -20.589178 + inSlope: -25.824795 + outSlope: -22.769028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -19.401499 + inSlope: 36.256577 + outSlope: 36.934406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -7.9002533 + inSlope: 68.924255 + outSlope: 68.84964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 10.7945795 + inSlope: 166.2284 + outSlope: 165.85732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 18.224848 + inSlope: 182.86855 + outSlope: 182.8675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 26.021288 + inSlope: 123.76391 + outSlope: 123.76391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 28.53873 + inSlope: 57.629498 + outSlope: 57.640785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 30.860521 + inSlope: -48.24273 + outSlope: -48.24273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 21.275759 + inSlope: -120.5246 + outSlope: -120.524254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 14.994551 + inSlope: -22.53834 + outSlope: -22.539505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 14.994363 + inSlope: -0.0013046265 + outSlope: -0.0015084053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 14.992414 + inSlope: -0.0014840405 + outSlope: -0.0014840405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 25.432802 + inSlope: 16.042099 + outSlope: 16.042099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 26.079693 + inSlope: 21.544464 + outSlope: 21.544464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 27.086073 + inSlope: -16.335434 + outSlope: -16.335436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 24.582727 + inSlope: -186.44858 + outSlope: -186.44855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 10.975304 + inSlope: -494.48523 + outSlope: -494.48523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -15.592051 + inSlope: -548.7499 + outSlope: -548.75006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -32.33851 + inSlope: -212.83983 + outSlope: -212.83968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -35.17961 + inSlope: 19.379873 + outSlope: 23.818365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -25.21896 + inSlope: 171.9299 + outSlope: 171.92984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -9.411886 + inSlope: 203.62408 + outSlope: 207.70158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 26.321886 + inSlope: 224.02686 + outSlope: 228.28923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 44.2843 + inSlope: -76.173035 + outSlope: -76.01697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 32.65126 + inSlope: 17.495544 + outSlope: 18.239662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 41.64323 + inSlope: 17.665901 + outSlope: 17.547699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 38.237083 + inSlope: -76.30207 + outSlope: -76.45441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 18.497997 + inSlope: -255.43607 + outSlope: -253.4996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 6.483804 + inSlope: -310.6998 + outSlope: -310.6998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -7.400261 + inSlope: -333.15027 + outSlope: -336.09277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -32.29343 + inSlope: -241.73961 + outSlope: -241.90933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -51.653347 + inSlope: -86.03366 + outSlope: -85.382706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -56.7078 + inSlope: 24.114107 + outSlope: 24.40337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -49.592506 + inSlope: 34.29724 + outSlope: 37.53219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -48.201096 + inSlope: 24.574312 + outSlope: 24.574171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -47.446278 + inSlope: 37.96236 + outSlope: 37.96236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -44.822987 + inSlope: 62.127842 + outSlope: 62.33992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -39.31174 + inSlope: 78.69638 + outSlope: 78.69638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -33.33723 + inSlope: 38.754173 + outSlope: 38.754612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -32.033566 + inSlope: 1.8812678 + outSlope: 1.853302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -32.034935 + inSlope: -0.011169434 + outSlope: -0.01093317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -32.049088 + inSlope: -0.011057209 + outSlope: -0.011057209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 32.699562 + inSlope: 32.813416 + outSlope: 32.813416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 34.050453 + inSlope: 62.24579 + outSlope: 62.24579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 37.81123 + inSlope: 119.30301 + outSlope: 119.30302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 44.261066 + inSlope: 213.93651 + outSlope: 213.93646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 56.954853 + inSlope: 439.2858 + outSlope: 439.2858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 79.779236 + inSlope: 514.02386 + outSlope: 514.02405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 97.204185 + inSlope: 283.96423 + outSlope: 283.96405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 105.60021 + inSlope: 144.63548 + outSlope: 145.39557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 111.63107 + inSlope: 36.4076 + outSlope: 36.40759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 113.40866 + inSlope: 34.456417 + outSlope: 41.77387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 118.24536 + inSlope: 38.24561 + outSlope: 43.79501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 100.6578 + inSlope: -208.8337 + outSlope: -208.52481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 65.2213 + inSlope: -65.53693 + outSlope: -65.16981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 54.484356 + inSlope: -17.21962 + outSlope: -17.093277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 53.645195 + inSlope: 7.020947 + outSlope: 6.248474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 55.55904 + inSlope: 57.579254 + outSlope: 47.03444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 58.127495 + inSlope: 88.12197 + outSlope: 88.12197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 62.445766 + inSlope: 124.289825 + outSlope: 130.18752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 72.64802 + inSlope: 109.54435 + outSlope: 110.16412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 81.272446 + inSlope: 36.961304 + outSlope: 36.024822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 82.81927 + inSlope: -31.918682 + outSlope: -32.14969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 74.11029 + inSlope: -59.119053 + outSlope: -60.497543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 71.426834 + inSlope: -62.127922 + outSlope: -62.127567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 68.869774 + inSlope: -40.923447 + outSlope: -40.923447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 68.06416 + inSlope: -3.3640072 + outSlope: -2.8762236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 70.79601 + inSlope: 75.09849 + outSlope: 75.09849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 78.61402 + inSlope: 72.7974 + outSlope: 72.798294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 81.87298 + inSlope: 9.33534 + outSlope: 9.323181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 81.87262 + inSlope: -0.0029296875 + outSlope: -0.0028351818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 81.86895 + inSlope: -0.0028883414 + outSlope: -0.0028883414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000002134434 + inSlope: -0.00000031363112 + outSlope: -0.00000031363112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.000000029390861 + inSlope: 0.00000004318657 + outSlope: 0.0000002645178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.000000069037256 + inSlope: 0.00000062133546 + outSlope: 0.0000049706728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.000000073992474 + inSlope: 0.000005327448 + outSlope: 0.000005327448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.0000002420704 + inSlope: -0.000017429034 + outSlope: -0.000017429134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.0000004868124 + inSlope: -0.000035050627 + outSlope: -0.000035050423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.0000006924267 + inSlope: -0.000049854625 + outSlope: -0.000049854625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.0000009456754 + inSlope: -0.000068088506 + outSlope: -0.000034044348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0000012232897 + inSlope: -0.000044038472 + outSlope: -0.000029358953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.0000012449494 + inSlope: -0.000029878785 + outSlope: -0.0000028011364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0000011916821 + inSlope: -0.000002681285 + outSlope: -0.000002681285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000019209908 + inSlope: -0.0000028226802 + outSlope: -0.0000028226802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.00000087401395 + inSlope: 0.0000012842653 + outSlope: 0.000007866128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.0000013303412 + inSlope: -0.0002626852 + outSlope: 0.00009578439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.000024550047 + inSlope: -148.41776 + outSlope: -148.41776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -12.381536 + inSlope: -267.57996 + outSlope: -267.58038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -22.35046 + inSlope: -226.50517 + outSlope: -226.50497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -31.285639 + inSlope: -254.28398 + outSlope: -254.28398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -43.570534 + inSlope: -279.4999 + outSlope: -279.13074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -61.120052 + inSlope: -103.69689 + outSlope: -103.644745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -63.284267 + inSlope: -0.025360107 + outSlope: -0.025345804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -63.318085 + inSlope: -0.025405886 + outSlope: -0.025405886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000012806606 + inSlope: -0.0000018817871 + outSlope: -0.0000018817871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.0000014604551 + inSlope: -0.0000021459748 + outSlope: -0.000013144098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.0000014898092 + inSlope: -0.000013408286 + outSlope: -0.00010726605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.0000014934784 + inSlope: -0.000107530235 + outSlope: -0.000107530235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.0000014623263 + inSlope: -0.00010528728 + outSlope: -0.00010528789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.0000013880684 + inSlope: -0.0000999413 + outSlope: -0.000099940735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.0000012857174 + inSlope: -0.000092571485 + outSlope: -0.000092571485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.0000010926987 + inSlope: -0.00007867415 + outSlope: -0.00003933719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0000007319473 + inSlope: -0.000026350128 + outSlope: -0.000017566736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.00000068626053 + inSlope: -0.000016470252 + outSlope: -0.0000015440862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0000007381803 + inSlope: -0.0000016609058 + outSlope: -0.0000016609058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000007316483 + inSlope: -0.00027841315 + outSlope: -0.00027841315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.0000780822 + inSlope: 0.00020456454 + outSlope: 0.00033228856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.0005732218 + inSlope: 0.0052472795 + outSlope: 0.0052472795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.00244113 + inSlope: 0.006437689 + outSlope: 0.006412005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.0038979016 + inSlope: 0.0048609227 + outSlope: 0.004819461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.004140516 + inSlope: -0.0069633685 + outSlope: -0.0063548014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.002541924 + inSlope: -0.021089181 + outSlope: -0.021089181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.00033277986 + inSlope: -0.02240879 + outSlope: -0.022299746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.0025648002 + inSlope: -0.0016241228 + outSlope: -0.0015558611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.01955937 + inSlope: -0.5082209 + outSlope: -0.5089849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.18111806 + inSlope: -1.0657419 + outSlope: -1.045952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.30012265 + inSlope: -0.23206669 + outSlope: -0.23959123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.3925606 + inSlope: -2.2187726 + outSlope: -2.2187726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.63125527 + inSlope: -2.658724 + outSlope: -2.6587164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.78199714 + inSlope: -0.069233045 + outSlope: -0.069233246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.7261996 + inSlope: 0.46264502 + outSlope: 0.4783516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.81020576 + inSlope: -1.0445638 + outSlope: -1.0442284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.94764614 + inSlope: -0.0000021457674 + outSlope: -0.0000021457674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000010240673 + inSlope: -0.00079263933 + outSlope: -0.00079263933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.00031174117 + inSlope: -0.0023015863 + outSlope: -0.0022866833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.0011602812 + inSlope: -0.0015631673 + outSlope: -0.0015631673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0010631679 + inSlope: 0.0030880643 + outSlope: 0.0030534253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.0006058239 + inSlope: -0.0017022814 + outSlope: -0.001729448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.0023481639 + inSlope: -0.017608544 + outSlope: -0.017618677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.0046669645 + inSlope: -0.013603203 + outSlope: -0.013603203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.005786771 + inSlope: -0.00027765334 + outSlope: 0.00034107623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.0057394626 + inSlope: -0.0016091067 + outSlope: -0.001704228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.004100432 + inSlope: 0.039350823 + outSlope: 0.07847699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.01908856 + inSlope: -0.6921422 + outSlope: -0.7156516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.17541093 + inSlope: -0.44061065 + outSlope: -0.43685502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.20590836 + inSlope: 0.087566696 + outSlope: 0.087566696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.10822976 + inSlope: 2.703708 + outSlope: 2.7037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.18661736 + inSlope: 3.703399 + outSlope: 3.7034097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.4133108 + inSlope: 1.1745844 + outSlope: 1.1668446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.37999278 + inSlope: -0.7032008 + outSlope: -0.7033725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.21705978 + inSlope: -0.00000787899 + outSlope: -0.00000787899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -28.50919 + inSlope: 11.405869 + outSlope: 11.405869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -13.766815 + inSlope: 107.368286 + outSlope: 107.292946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 26.37009 + inSlope: 151.2525 + outSlope: 151.2525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 66.506996 + inSlope: 107.24782 + outSlope: 107.32938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 81.19505 + inSlope: -12.726746 + outSlope: -12.726291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 60.46693 + inSlope: -218.5024 + outSlope: -218.82486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 28.598783 + inSlope: -268.61346 + outSlope: -268.61346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -3.2693863 + inSlope: -218.6131 + outSlope: -218.22119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -24.057615 + inSlope: -7.362519 + outSlope: -7.36243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 14.466492 + inSlope: 210.5232 + outSlope: 212.01393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 50.43323 + inSlope: 199.4999 + outSlope: 199.13841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 79.094215 + inSlope: 47.568897 + outSlope: 47.58705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 77.487206 + inSlope: -113.7314 + outSlope: -113.7314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 60.67709 + inSlope: -256.29688 + outSlope: -256.2972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 38.046078 + inSlope: -252.10704 + outSlope: -252.10667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 21.209349 + inSlope: -115.15214 + outSlope: -115.084305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 18.565052 + inSlope: 0.006500244 + outSlope: 0.008986474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 18.566132 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.2096696 + inSlope: -2.2870445 + outSlope: -2.2870445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -7.6996665 + inSlope: -24.47461 + outSlope: -24.429169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -3.6637223 + inSlope: 41.37146 + outSlope: 41.215298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 6.907095 + inSlope: 3.0880675 + outSlope: 3.0071564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 3.4451575 + inSlope: 1.0151558 + outSlope: 1.0151558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 8.245838 + inSlope: -2.2573547 + outSlope: -3.5510101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 1.342697 + inSlope: -67.20282 + outSlope: -67.34143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -8.680312 + inSlope: -83.50417 + outSlope: -83.69286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -16.7248 + inSlope: -119.12899 + outSlope: -119.12865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -26.926619 + inSlope: -79.98533 + outSlope: -79.98556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -30.902544 + inSlope: -9.057618 + outSlope: -7.520462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -31.113626 + inSlope: -0.0001373291 + outSlope: -0.000012874604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -31.113626 + inSlope: -0.000012874604 + outSlope: -0.000012874604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 15.73625 + inSlope: 0.6703782 + outSlope: 0.6703782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 16.853954 + inSlope: -8.191181 + outSlope: -8.30912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 2.5744808 + inSlope: -52.708847 + outSlope: -52.97856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -18.23651 + inSlope: -56.308514 + outSlope: -56.29982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -21.013863 + inSlope: 33.31134 + outSlope: 33.31134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -1.1034815 + inSlope: 77.609344 + outSlope: 77.73903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 15.646247 + inSlope: 23.875774 + outSlope: 23.613121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 13.813372 + inSlope: -54.67021 + outSlope: -54.309387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 5.3177814 + inSlope: -188.31305 + outSlope: -188.31306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -17.175758 + inSlope: -311.04187 + outSlope: -311.04276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -39.612053 + inSlope: -165.69733 + outSlope: -165.72308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -43.500977 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -43.500977 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -31.016027 + inSlope: 0.66520965 + outSlope: 0.66520965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -23.864601 + inSlope: 38.343334 + outSlope: 38.38115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -5.1671853 + inSlope: 9.333587 + outSlope: 10.406476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -6.6223154 + inSlope: -11.771154 + outSlope: -11.787834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -11.472496 + inSlope: -21.74762 + outSlope: -21.74762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -24.808178 + inSlope: -46.165924 + outSlope: -46.209457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -35.313053 + inSlope: -10.784317 + outSlope: -10.20108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -34.504375 + inSlope: 25.91446 + outSlope: 25.306894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -30.76801 + inSlope: 82.84042 + outSlope: 82.84074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -20.42454 + inSlope: 161.99069 + outSlope: 161.99062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -8.690574 + inSlope: 88.79073 + outSlope: 88.92167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -6.6313887 + inSlope: -0.00011444092 + outSlope: -0.000010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -6.6313887 + inSlope: -0.000010728837 + outSlope: -0.000010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -15.946705 + inSlope: -1.4927535 + outSlope: -1.4927535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -20.585094 + inSlope: 18.78386 + outSlope: 18.78846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -11.742373 + inSlope: -13.874209 + outSlope: -13.875624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -14.999765 + inSlope: 30.176662 + outSlope: 30.179596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.00000053592987 + inSlope: 6.6496196 + outSlope: 6.649564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/hit1.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/hit1.anim.meta new file mode 100644 index 000000000..78c1a1730 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/hit1.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 76170fa24eac34343bd183f3af30efd4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/hit2fix.anim b/Assets/Resources/Models/Games/Airboarder/Animations/hit2fix.anim new file mode 100644 index 000000000..2fd6fc096 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/hit2fix.anim @@ -0,0 +1,33374 @@ +%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: hit2fix + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: 4.125 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 4.125 + 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: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.7071081, w: 0.7071055} + 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: 4.125 + value: {x: 0, y: 0, z: -0.7071081, w: 0.7071055} + 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: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.31590325, y: -0.1753519, z: 0.56630915, w: 0.7407772} + inSlope: {x: 0.114056826, y: 0.07909083, z: 0.085817814, w: 0.0010056496} + outSlope: {x: 0.114056826, y: 0.07909083, z: 0.085817814, w: 0.0010056496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.2768783, y: -0.14779104, z: 0.59493977, w: 0.7399614} + inSlope: {x: 0.57785726, y: 0.41296667, z: 0.42617154, w: -0.048866984} + outSlope: {x: 0.57785726, y: 0.41296667, z: 0.42617154, w: -0.048866984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.112037145, y: -0.030446185, z: 0.7090526, w: 0.6955322} + inSlope: {x: 0.813995, y: 0.5888485, z: 0.51339996, w: -0.36357602} + outSlope: {x: 0.813995, y: 0.5888485, z: 0.51339996, w: -0.36357602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.03355196, y: 0.030257534, z: 0.7832538, w: 0.62005824} + inSlope: {x: 0.08057261, y: -0.36472565, z: 0.08402398, w: -0.093940295} + outSlope: {x: 0.08057261, y: -0.36472565, z: 0.08402398, w: -0.093940295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.03357827, y: -0.1635339, z: 0.77289075, w: 0.61218387} + inSlope: {x: -0.4684781, y: -0.742672, z: -0.14062351, w: -0.04644797} + outSlope: {x: -0.4684781, y: -0.742672, z: -0.14062351, w: -0.04644797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.15013169, y: -0.28929853, z: 0.7412615, w: 0.58676934} + inSlope: {x: -0.25705558, y: -0.03731866, z: -0.04317495, w: -0.028412735} + outSlope: {x: -0.25705558, y: -0.03731866, z: -0.04317495, w: -0.028412735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: -0.17464542, y: -0.26988885, z: 0.7360788, w: 0.5956905} + inSlope: {x: -0.2238074, y: 0.20154499, z: -0.068513624, w: 0.1100871} + outSlope: {x: -0.2238074, y: 0.20154499, z: -0.068513624, w: 0.1100871} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1854263, y: -0.26249674, z: 0.73247606, w: 0.60015947} + inSlope: {x: -0.43991005, y: -0.03368143, z: -0.16062155, w: 0.0387154} + outSlope: {x: -0.43991005, y: -0.03368143, z: -0.16062155, w: 0.0387154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: -0.23821981, y: -0.2832488, z: 0.71259993, w: 0.5960058} + inSlope: {x: -0.6672269, y: -0.2634765, z: -0.26388994, w: -0.0780122} + outSlope: {x: -0.6672269, y: -0.2634765, z: -0.26388994, w: -0.0780122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: -0.42473492, y: -0.3486544, z: 0.6132983, w: 0.56736726} + inSlope: {x: -0.4477244, y: -0.07709105, z: -0.33199054, w: -0.021554252} + outSlope: {x: -0.4477244, y: -0.07709105, z: -0.33199054, w: -0.021554252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.44939166, y: -0.30562747, z: 0.5500201, w: 0.6341269} + inSlope: {x: 0.19068986, y: 0.4356287, z: -0.21801803, w: 0.530972} + outSlope: {x: 0.19068986, y: 0.4356287, z: -0.21801803, w: 0.530972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.35326606, y: -0.13641323, z: 0.41418204, w: 0.8276761} + inSlope: {x: 0.18403244, y: 0.37607586, z: -1.035946, w: 0.6563015} + outSlope: {x: 0.18403244, y: 0.37607586, z: -1.035946, w: 0.6563015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: -0.36273906, y: -0.12802929, z: 0.28285858, w: 0.8786466} + inSlope: {x: -0.3559196, y: -0.30489665, z: -0.5662142, w: -0.0045428723} + outSlope: {x: -0.3559196, y: -0.30489665, z: -0.5662142, w: -0.0045428723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.4200064, y: -0.21288529, z: 0.32990798, w: 0.8181903} + inSlope: {x: -0.08421441, y: -0.4055714, z: 0.6217159, w: -0.39704627} + outSlope: {x: -0.08421441, y: -0.4055714, z: 0.6217159, w: -0.39704627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: -0.4129358, y: -0.24140175, z: 0.39838806, w: 0.7826214} + inSlope: {x: 0.02276406, y: -0.024531823, z: 0.08638168, w: -0.039112996} + outSlope: {x: 0.02276406, y: -0.024531823, z: 0.08638168, w: -0.039112996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3 + value: {x: -0.4128638, y: -0.2413651, z: 0.39841026, w: 0.78265935} + inSlope: {x: 0.00024676346, y: 0.00012570631, z: 0.00007617481, w: 0.00013017666} + outSlope: {x: 0.00024676346, y: 0.00012570631, z: 0.00007617481, w: 0.00013017666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.41258615, y: -0.24122377, z: 0.39849585, w: 0.78280574} + inSlope: {x: 0.00024676416, y: 0.00012588549, z: 0.000076532655, w: 0.00013017704} + outSlope: {x: 0.00024676416, y: 0.00012588549, z: 0.000076532655, w: 0.00013017704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.85060865, y: -0.08955744, z: -0.063723385, w: 0.51418257} + inSlope: {x: -0.0032444, y: 0.013993084, z: 0.007861197, w: 0.008764744} + outSlope: {x: -0.0032444, y: 0.013993084, z: 0.007861197, w: 0.008764744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.8029568, y: -0.07207318, z: -0.061995428, w: 0.5884067} + inSlope: {x: -0.48041862, y: 0.07172324, z: -0.038140744, w: 0.6563315} + outSlope: {x: -0.48041862, y: 0.07172324, z: -0.038140744, w: 0.6563315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.6664017, y: -0.0462396, z: -0.060948417, w: 0.7416576} + inSlope: {x: -0.6483771, y: 0.14713097, z: 0.06916714, w: 0.6015072} + outSlope: {x: -0.6483771, y: 0.14713097, z: 0.06916714, w: 0.6015072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0.6130701, y: -0.035543274, z: -0.054487623, w: 0.78734547} + inSlope: {x: 0.089567944, y: -0.0113851335, z: 0.0026284766, w: -0.07035831} + outSlope: {x: 0.089567944, y: -0.0113851335, z: 0.0026284766, w: -0.07035831} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6244915, y: -0.03793551, z: -0.054471448, w: 0.7782057} + inSlope: {x: -0.22318608, y: 0.02492528, z: 0.015637735, w: 0.18021998} + outSlope: {x: -0.22318608, y: 0.02492528, z: 0.015637735, w: 0.18021998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.52961355, y: -0.025156073, z: -0.04529573, w: 0.8466552} + inSlope: {x: -1.1281182, y: 0.10259153, z: 0.05999796, w: 0.7024803} + outSlope: {x: -1.1281182, y: 0.10259153, z: 0.05999796, w: 0.7024803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.3579608, y: -0.008361921, z: -0.026615014, w: 0.93331975} + inSlope: {x: -1.2846392, y: 0.08802624, z: 0.13002431, w: 0.5062984} + outSlope: {x: -1.2846392, y: 0.08802624, z: 0.13002431, w: 0.5062984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.30955648, y: -0.005085415, z: -0.020919774, w: 0.9506373} + inSlope: {x: -0.553356, y: 0.036038045, z: 0.05775291, w: 0.19856447} + outSlope: {x: -0.553356, y: 0.036038045, z: 0.05775291, w: 0.19856447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.31184784, y: -0.0053587533, z: -0.021802276, w: 0.9498668} + inSlope: {x: 0.17825471, y: -0.008146561, z: -0.020900322, w: -0.060121447} + outSlope: {x: 0.17825471, y: -0.008146561, z: -0.020900322, w: -0.060121447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.47236198, y: -0.018564701, z: -0.04221794, w: 0.8801972} + inSlope: {x: 1.2441328, y: -0.15601861, z: -0.17762905, w: -0.6851477} + outSlope: {x: 1.2441328, y: -0.15601861, z: -0.17762905, w: -0.6851477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.6855909, y: -0.054020856, z: -0.065790996, w: 0.72299266} + inSlope: {x: 1.1410263, y: -0.2249561, z: -0.065029174, w: -1.101263} + outSlope: {x: 1.1410263, y: -0.2249561, z: -0.065029174, w: -1.101263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.85700047, y: -0.0885531, z: -0.062143944, w: 0.5038321} + inSlope: {x: 0.5581103, y: -0.21342117, z: 0.006912104, w: -0.98072565} + outSlope: {x: 0.5581103, y: -0.21342117, z: 0.006912104, w: -0.98072565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2083335 + value: {x: 0.93342066, y: -0.12276333, z: -0.053561673, w: 0.33284563} + inSlope: {x: 0.18703023, y: -0.12891433, z: 0.040010333, w: -0.56472605} + outSlope: {x: 0.18703023, y: -0.12891433, z: 0.040010333, w: -0.56472605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: 0.95104116, y: -0.12950432, z: -0.046998367, w: 0.2766596} + inSlope: {x: -0.11735608, y: 0.11040756, z: -0.03083855, w: 0.43699002} + outSlope: {x: -0.11735608, y: 0.11040756, z: -0.03083855, w: 0.43699002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: 0.8980983, y: -0.11016286, z: -0.061382763, w: 0.42132622} + inSlope: {x: -0.4331657, y: 0.14912988, z: -0.07532335, w: 0.95771027} + outSlope: {x: -0.4331657, y: 0.14912988, z: -0.07532335, w: 0.95771027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: 0.86271346, y: -0.09338541, z: -0.06343852, w: 0.49293023} + inSlope: {x: -0.05822242, y: 0.03353363, z: 0.0027527462, w: 0.11000684} + outSlope: {x: -0.05822242, y: 0.03353363, z: 0.0027527462, w: 0.11000684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9166667 + value: {x: 0.86266506, y: -0.09340801, z: -0.063397594, w: 0.49301603} + inSlope: {x: -0.00023817971, y: -0.00016334621, z: 0.0002923602, w: 0.00042343058} + outSlope: {x: -0.00023817971, y: -0.00016334621, z: 0.0002923602, w: 0.00042343058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.86238664, y: -0.093511455, z: -0.06320846, w: 0.49350744} + inSlope: {x: -0.00022029961, y: 0.000016450946, z: -0.000021457754, w: 0.00038552433} + outSlope: {x: -0.00022029961, y: 0.000016450946, z: -0.000021457754, w: 0.00038552433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.30507502, y: 0.52957237, z: 0.66998494, w: 0.4214292} + inSlope: {x: -0.048849106, y: 0.0075502396, z: -0.048006535, w: 0.031188011} + outSlope: {x: -0.048849106, y: 0.0075502396, z: -0.048006535, w: 0.031188011} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.34144744, y: 0.48624566, z: 0.6467568, w: 0.47820958} + inSlope: {x: -0.1521374, y: -0.5962578, z: -0.011311062, w: 0.5065333} + outSlope: {x: -0.1521374, y: -0.5962578, z: -0.011311062, w: 0.5065333} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.31942728, y: 0.29463515, z: 0.66450316, w: 0.6079407} + inSlope: {x: 0.37870547, y: -0.98990417, z: 0.07278372, w: 0.6022619} + outSlope: {x: 0.37870547, y: -0.98990417, z: 0.07278372, w: 0.6022619} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24113359, y: 0.18056874, z: 0.6474232, w: 0.7000662} + inSlope: {x: 0.21990652, y: -0.068041526, z: -0.2051939, w: 0.28418958} + outSlope: {x: 0.21990652, y: -0.068041526, z: -0.2051939, w: 0.28418958} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: -0.17263284, y: 0.21200983, z: 0.59700096, w: 0.7542146} + inSlope: {x: 0.38871175, y: -0.09209854, z: -0.041182987, w: 0.14655378} + outSlope: {x: 0.38871175, y: -0.09209854, z: -0.041182987, w: 0.14655378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.032052513, y: 0.10059876, z: 0.6206924, w: 0.7769128} + inSlope: {x: 0.62241703, y: -0.69928545, z: 0.17407267, w: -0.02230098} + outSlope: {x: 0.62241703, y: -0.69928545, z: 0.17407267, w: -0.02230098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.027389472, y: 0.021399133, z: 0.64233094, w: 0.7656389} + inSlope: {x: 0.096536346, y: -0.30585608, z: 0.16796868, w: -0.13068807} + outSlope: {x: 0.096536346, y: -0.30585608, z: 0.16796868, w: -0.13068807} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: 0.010115558, y: 0.018514844, z: 0.6568661, w: 0.75371206} + inSlope: {x: -0.3319075, y: 0.049925495, z: 0.19080727, w: -0.1644401} + outSlope: {x: -0.3319075, y: 0.049925495, z: 0.19080727, w: -0.1644401} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.17427737, y: 0.1821852, z: 0.71819586, w: 0.6485604} + inSlope: {x: -0.61326015, y: 0.99903417, z: 0.044560447, w: -0.49822253} + outSlope: {x: -0.61326015, y: 0.99903417, z: 0.044560447, w: -0.49822253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.29897076, y: 0.4791445, z: 0.6777549, w: 0.47083473} + inSlope: {x: -0.30377728, y: 1.205715, z: -0.33391982, w: -0.9350519} + outSlope: {x: -0.30377728, y: 1.205715, z: -0.33391982, w: -0.9350519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2083335 + value: {x: -0.2800079, y: 0.70187455, z: 0.59891313, w: 0.26508653} + inSlope: {x: 0.6529521, y: 0.9640675, z: -0.40458402, w: -0.9440788} + outSlope: {x: 0.6529521, y: 0.9640675, z: -0.40458402, w: -0.9440788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: -0.114209294, y: 0.7910959, z: 0.5723839, w: 0.18303065} + inSlope: {x: 0.69810706, y: -0.21862529, z: 0.35321385, w: 0.27319545} + outSlope: {x: 0.69810706, y: -0.21862529, z: 0.35321385, w: 0.27319545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.101104826, y: 0.6914493, z: 0.6587182, w: 0.27886552} + inSlope: {x: -0.1839566, y: -1.121557, z: 0.7633096, w: 0.91187817} + outSlope: {x: -0.1839566, y: -1.121557, z: 0.7633096, w: 0.91187817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.12510534, y: 0.5337179, z: 0.7407069, w: 0.3883906} + inSlope: {x: -0.048457053, y: -0.42374387, z: 0.17444411, w: 0.24805236} + outSlope: {x: -0.048457053, y: -0.42374387, z: 0.17444411, w: 0.24805236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: -0.12568066, y: 0.5243199, z: 0.7445795, w: 0.39356646} + inSlope: {x: 0.00025677631, y: -0.00025320007, z: 0.00013446782, w: 0.0001645085} + outSlope: {x: 0.00025677631, y: -0.00025320007, z: 0.00013446782, w: 0.0001645085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.12533785, y: 0.52398247, z: 0.74475825, w: 0.3937869} + inSlope: {x: 0.00025713543, y: -0.00025177098, z: 0.00013446859, w: 0.00016737048} + outSlope: {x: 0.00025713543, y: -0.00025177098, z: 0.00013446859, w: 0.00016737048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.09286303, y: 0.56734324, z: 0.07026752, w: 0.8152059} + inSlope: {x: -0.075226486, y: -0.0068764687, z: 0.012553453, w: -0.0050168037} + outSlope: {x: -0.075226486, y: -0.0068764687, z: 0.012553453, w: -0.0050168037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.12309447, y: 0.56594557, z: 0.07709313, w: 0.81154794} + inSlope: {x: -0.4699096, y: 0.15985678, z: 0.100617886, w: -0.19648789} + outSlope: {x: -0.4699096, y: 0.15985678, z: 0.100617886, w: -0.19648789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.22596635, y: 0.69814193, z: 0.09809146, w: 0.6722464} + inSlope: {x: -0.6190758, y: 1.2560483, z: 0.13192444, w: -1.5508981} + outSlope: {x: -0.6190758, y: 1.2560483, z: 0.13192444, w: -1.5508981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: -0.28470808, y: 0.850166, z: 0.10933957, w: 0.42918986} + inSlope: {x: -0.32280737, y: 0.97466385, z: -0.027540494, w: -2.1275039} + outSlope: {x: -0.32280737, y: 0.97466385, z: -0.027540494, w: -2.1275039} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.31458673, y: 0.92441815, z: 0.08472224, w: 0.19826357} + inSlope: {x: -0.16850773, y: 0.2618736, z: -0.17819999, w: -1.3644769} + outSlope: {x: -0.16850773, y: 0.2618736, z: -0.17819999, w: -1.3644769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.32412454, y: 0.93860024, z: 0.06672845, w: 0.09757124} + inSlope: {x: -0.0956365, y: 0.12493735, z: -0.53000927, w: -1.2052445} + outSlope: {x: -0.0956365, y: 0.12493735, z: -0.53000927, w: -1.2052445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.33384764, y: 0.9390806, z: -0.030287687, w: -0.07586938} + inSlope: {x: 0.07025917, y: -0.13185596, z: -0.6700892, w: -1.6340797} + outSlope: {x: 0.07025917, y: -0.13185596, z: -0.6700892, w: -1.6340797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.31383714, y: 0.92229456, z: -0.06616327, w: -0.21564187} + inSlope: {x: 0.40241626, y: -0.17497802, z: -0.035186447, w: -1.3897848} + outSlope: {x: 0.40241626, y: -0.17497802, z: -0.035186447, w: -1.3897848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.27218, y: 0.92434937, z: -0.029072868, w: -0.2658027} + inSlope: {x: 0.49372792, y: 0.2759434, z: 0.77982026, w: 0.4149229} + outSlope: {x: 0.49372792, y: 0.2759434, z: 0.77982026, w: 0.4149229} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.22054249, y: 0.96918184, z: 0.083157174, w: -0.07164178} + inSlope: {x: 0.36427957, y: 0.16972852, z: 0.81136554, w: 2.2672172} + outSlope: {x: 0.36427957, y: 0.16972852, z: 0.81136554, w: 2.2672172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.19080347, y: 0.9622849, z: 0.13979904, w: 0.13438018} + inSlope: {x: 0.34611997, y: -0.34301054, z: 0.5562984, w: 2.4371295} + outSlope: {x: 0.34611997, y: -0.34301054, z: 0.5562984, w: 2.4371295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.15669726, y: 0.9037203, z: 0.18595847, w: 0.3523565} + inSlope: {x: 0.12224584, y: -0.29208112, z: 0.1588188, w: 0.75491214} + outSlope: {x: 0.12224584, y: -0.29208112, z: 0.1588188, w: 0.75491214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: -0.15471789, y: 0.8960612, z: 0.19009702, w: 0.37013495} + inSlope: {x: -0.030058004, y: -0.038869627, z: -0.15972672, w: 0.16413286} + outSlope: {x: -0.030058004, y: -0.038869627, z: -0.15972672, w: 0.16413286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15920208, y: 0.90048116, z: 0.17264794, w: 0.36603427} + inSlope: {x: -0.17006455, y: 0.4853108, z: -0.9035794, w: -1.0209209} + outSlope: {x: -0.17006455, y: 0.4853108, z: -0.9035794, w: -1.0209209} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: -0.16888992, y: 0.9365037, z: 0.11479881, w: 0.2850583} + inSlope: {x: 0.07471997, y: 0.24647576, z: -1.1534722, w: -0.19304425} + outSlope: {x: 0.07471997, y: 0.24647576, z: -1.1534722, w: -0.19304425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: -0.15297538, y: 0.92102075, z: 0.07652524, w: 0.34994745} + inSlope: {x: 0.4549222, y: -0.42926633, z: -0.8860645, w: 1.5248344} + outSlope: {x: 0.4549222, y: -0.42926633, z: -0.8860645, w: 1.5248344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.08987467, y: 0.8251485, z: 0.002784221, w: 0.5577139} + inSlope: {x: -0.031559795, y: -0.54591584, z: 0.19454703, w: 0.8089393} + outSlope: {x: -0.031559795, y: -0.54591584, z: 0.19454703, w: 0.8089393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.1771604, y: 0.77949965, z: 0.059601527, w: 0.5978648} + inSlope: {x: -0.5324242, y: 0.15312599, z: 0.01566445, w: -0.36178315} + outSlope: {x: -0.5324242, y: 0.15312599, z: 0.01566445, w: -0.36178315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.21852058, y: 0.8329929, z: 0.011991585, w: 0.5081612} + inSlope: {x: -0.22879872, y: 0.59133947, z: -0.8490374, w: -1.0802195} + outSlope: {x: -0.22879872, y: 0.59133947, z: -0.8490374, w: -1.0802195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.25727466, y: 0.8672853, z: -0.0814371, w: 0.41832277} + inSlope: {x: -1.0657808, y: -0.39552537, z: -0.87498295, w: -0.039330512} + outSlope: {x: -1.0657808, y: -0.39552537, z: -0.87498295, w: -0.039330512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.317953, y: 0.8265539, z: -0.104758956, w: 0.4524822} + inSlope: {x: -1.4504647, y: -0.5398525, z: -0.76003504, w: -0.22178778} + outSlope: {x: -1.4504647, y: -0.5398525, z: -0.76003504, w: -0.22178778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0.37814677, y: 0.82229763, z: -0.14477341, w: 0.39984033} + inSlope: {x: -1.2959166, y: -0.25868174, z: -0.712252, w: -0.8821726} + outSlope: {x: -1.2959166, y: -0.25868174, z: -0.712252, w: -0.8821726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0833335 + value: {x: -0.42594624, y: 0.804997, z: -0.1641134, w: 0.37896767} + inSlope: {x: -1.0961757, y: -0.62524915, z: -0.19429988, w: 0.008915693} + outSlope: {x: -1.0961757, y: -0.62524915, z: -0.19429988, w: 0.008915693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0.46949467, y: 0.77019364, z: -0.16096511, w: 0.40058318} + inSlope: {x: -1.1166545, y: -0.9193953, z: 0.11820297, w: 0.4909982} + outSlope: {x: -1.1166545, y: -0.9193953, z: 0.11820297, w: 0.4909982} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.6023809, y: 0.64971966, z: -0.1316218, w: 0.4446094} + inSlope: {x: -0.7176873, y: -0.7427627, z: 0.28655, w: 0.21726564} + outSlope: {x: -0.7176873, y: -0.7427627, z: 0.28655, w: 0.21726564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.6218282, y: 0.60345566, z: -0.08190499, w: 0.49240482} + inSlope: {x: 0.52768034, y: 0.27825755, z: 0.16554268, w: 0.34313756} + outSlope: {x: 0.52768034, y: 0.27825755, z: 0.16554268, w: 0.34313756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.5102162, y: 0.6755971, z: -0.076426245, w: 0.5266945} + inSlope: {x: 0.99792325, y: 0.6454227, z: 0.01586613, w: 0.14625306} + outSlope: {x: 0.99792325, y: 0.6454227, z: 0.01586613, w: 0.14625306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: -0.41027436, y: 0.74134064, z: -0.07982321, w: 0.5250879} + inSlope: {x: 0.06964825, y: 0.05921591, z: -0.025707936, w: -0.032295875} + outSlope: {x: 0.06964825, y: 0.05921591, z: -0.025707936, w: -0.032295875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3 + value: {x: -0.40976283, y: 0.7413626, z: -0.07923257, w: 0.5255456} + inSlope: {x: 0.0017555968, y: 0.000073671414, z: 0.0020255167, w: 0.0015692725} + outSlope: {x: 0.0017555968, y: 0.000073671414, z: 0.0020255167, w: 0.0015692725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.40778738, y: 0.74144053, z: -0.076954715, w: 0.5273076} + inSlope: {x: 0.0017581054, y: 0.000062942745, z: 0.0020240026, w: 0.001563555} + outSlope: {x: 0.0017581054, y: 0.000062942745, z: 0.0020240026, w: 0.001563555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.89964795, y: -0.0016580974, z: 0.4365995, w: 0.0034166866} + inSlope: {x: 0.20501947, y: 0.0021516401, z: -0.43341422, w: -0.0003184788} + outSlope: {x: 0.20501947, y: 0.0021516401, z: -0.43341422, w: -0.0003184788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.9081904, y: -0.0015684457, z: 0.41854057, w: 0.0034034166} + inSlope: {x: 0.33764148, y: 0.0033447426, z: -0.7620224, w: 0.00016153604} + outSlope: {x: 0.33764148, y: 0.0033447426, z: -0.7620224, w: 0.00016153604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.94948554, y: -0.0011442617, z: 0.31378967, w: 0.0034624627} + inSlope: {x: 0.4676864, y: 0.005519242, z: -1.4091861, w: 0.0005597379} + outSlope: {x: 0.4676864, y: 0.005519242, z: -1.4091861, w: 0.0005597379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.9844648, y: -0.00060479366, z: 0.17554812, w: 0.0033918156} + inSlope: {x: -0.0387118, y: -0.00046579106, z: 0.20145437, w: -0.0013212113} + outSlope: {x: -0.0387118, y: -0.00046579106, z: 0.20145437, w: -0.0013212113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.92728305, y: -0.0012143067, z: 0.37434697, w: 0.0030079787} + inSlope: {x: -0.66106164, y: -0.004877355, z: 1.6422343, w: -0.0032620279} + outSlope: {x: -0.66106164, y: -0.004877355, z: 1.6422343, w: -0.0032620279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.87564003, y: -0.0015179339, z: 0.48295414, w: 0.002752186} + inSlope: {x: -0.3427647, y: -0.0014684738, z: 0.64722425, w: -0.0021458361} + outSlope: {x: -0.3427647, y: -0.0014684738, z: 0.64722425, w: -0.0021458361} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.86601067, y: -0.0014960594, z: 0.5000166, w: 0.00259115} + inSlope: {x: -0.12066502, y: -0.000005441252, z: 0.2059274, w: -0.0014032417} + outSlope: {x: -0.12066502, y: -0.000005441252, z: 0.2059274, w: -0.0014032417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.81134266, y: -0.0016606847, z: 0.5845641, w: 0.0023049547} + inSlope: {x: -0.7553698, y: -0.0022565706, z: 1.0433044, w: -0.0031230482} + outSlope: {x: -0.7553698, y: -0.0022565706, z: 1.0433044, w: -0.0031230482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.764683, y: -0.0017658077, z: 0.6444008, w: 0.0020954167} + inSlope: {x: 0.28925622, y: 0.0017609781, z: -0.37214357, w: -0.00016095332} + outSlope: {x: 0.28925622, y: 0.0017609781, z: -0.37214357, w: -0.00016095332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: 0.86552364, y: -0.0013219807, z: 0.5008611, w: 0.0022845052} + inSlope: {x: 1.5056394, y: 0.007645854, z: -2.6736355, w: 0.0029289308} + outSlope: {x: 1.5056394, y: 0.007645854, z: -2.6736355, w: 0.0029289308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.9269176, y: -0.0009715604, z: 0.37525594, w: 0.0023999005} + inSlope: {x: 1.2232709, y: 0.008156299, z: -2.974329, w: 0.0020601545} + outSlope: {x: 1.2232709, y: 0.008156299, z: -2.974329, w: 0.0020601545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.986706, y: -0.0004043386, z: 0.16249648, w: 0.0024553768} + inSlope: {x: 0.31615978, y: 0.004458148, z: -1.7031558, w: -0.00039782785} + outSlope: {x: 0.31615978, y: 0.004458148, z: -1.7031558, w: -0.00039782785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.99452347, y: -0.0002494508, z: 0.104486585, w: 0.0023745827} + inSlope: {x: -0.055923775, y: -0.0008704723, z: 0.4299015, w: -0.0013328479} + outSlope: {x: -0.055923775, y: -0.0008704723, z: 0.4299015, w: -0.0013328479} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.973166, y: -0.00052619394, z: 0.23009287, w: 0.0022256179} + inSlope: {x: -0.5920774, y: -0.0050508734, z: 2.3375514, w: -0.002519249} + outSlope: {x: -0.5920774, y: -0.0050508734, z: 2.3375514, w: -0.002519249} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.9398094, y: -0.0007642225, z: 0.3416919, w: 0.0021020242} + inSlope: {x: -1.1747575, y: -0.0063738716, z: 3.0424523, w: -0.0037440823} + outSlope: {x: -1.1747575, y: -0.0063738716, z: 3.0424523, w: -0.0037440823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.87526953, y: -0.0010573501, z: 0.48363063, w: 0.001913611} + inSlope: {x: -3.306207, y: -0.009986998, z: 4.869339, w: -0.008198529} + outSlope: {x: -3.306207, y: -0.009986998, z: 4.869339, w: -0.008198529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.6642924, y: -0.0015964715, z: 0.7474698, w: 0.0014188141} + inSlope: {x: -2.5317273, y: -0.00601799, z: 3.1660736, w: -0.006338802} + outSlope: {x: -2.5317273, y: -0.00601799, z: 3.1660736, w: -0.006338802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: 0.66429245, y: -0.0015588487, z: 0.74746984, w: 0.0013853778} + inSlope: {x: 0.0000014305108, y: 0.00090294844, z: 0.0000021457672, w: -0.0008024691} + outSlope: {x: 0.0000014305108, y: 0.00090294844, z: 0.0000021457672, w: -0.0008024691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.6642932, y: -0.0011447978, z: 0.7474706, w: 0.0010174024} + inSlope: {x: 0.000003576276, y: 0.00090295123, z: 0.00000071525847, w: -0.0008024649} + outSlope: {x: 0.000003576276, y: 0.00090295123, z: 0.00000071525847, w: -0.0008024649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: 0.6642934, y: -0.0011071747, z: 0.74747056, w: 0.0009839664} + inSlope: {x: 0.8697525, y: 0.002127807, z: -0.85597813, w: 0.00044209388} + outSlope: {x: 0.8697525, y: 0.002127807, z: -0.85597813, w: 0.00044209388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.73677254, y: -0.0009674806, z: 0.6761392, w: 0.0010542434} + inSlope: {x: 3.0501432, y: 0.006735026, z: -4.2238407, w: 0.0034071435} + outSlope: {x: 3.0501432, y: 0.006735026, z: -4.2238407, w: 0.0034071435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.91847175, y: -0.000545923, z: 0.39548418, w: 0.0012678948} + inSlope: {x: 2.615872, y: 0.0068636355, z: -4.5452456, w: 0.0025883259} + outSlope: {x: 2.615872, y: 0.0068636355, z: -4.5452456, w: 0.0025883259} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.95476174, y: -0.00039551107, z: 0.2973688, w: 0.001269937} + inSlope: {x: 0.6722926, y: 0.0031051598, z: -2.0530024, w: -0.00024908176} + outSlope: {x: 0.6722926, y: 0.0031051598, z: -2.0530024, w: -0.00024908176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0833335 + value: {x: 0.97449625, y: -0.0002871592, z: 0.22440031, w: 0.0012471379} + inSlope: {x: 0.44201195, y: 0.002837834, z: -2.016026, w: -0.0006098834} + outSlope: {x: 0.44201195, y: 0.002837834, z: -2.016026, w: -0.0006098834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: 0.99916905, y: -0.00004801307, z: 0.04074062, w: 0.0011781343} + inSlope: {x: 0.09407598, y: 0.002363283, z: -1.9552599, w: -0.0010932132} + outSlope: {x: 0.09407598, y: 0.002363283, z: -1.9552599, w: -0.0010932132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2916667 + value: {x: 0.9919525, y: 0.00013017365, z: -0.12660687, w: 0.001019711} + inSlope: {x: -0.1087766, y: 0.00074946956, z: -0.87409717, w: -0.0013097537} + outSlope: {x: -0.1087766, y: 0.00074946956, z: -0.87409717, w: -0.0013097537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.9821692, y: 0.00013648033, z: -0.18799764, w: 0.00071290677} + inSlope: {x: 0.07691559, y: -0.0005201658, z: 0.4093374, w: -0.0011312342} + outSlope: {x: 0.07691559, y: -0.0005201658, z: 0.4093374, w: -0.0011312342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: 0.9933732, y: 0.000060290695, z: -0.114932135, w: 0.0005209042} + inSlope: {x: 0.012017711, y: -0.00014986786, z: 0.100844935, w: -0.00079317356} + outSlope: {x: 0.012017711, y: -0.00014986786, z: 0.100844935, w: -0.00079317356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3 + value: {x: 0.99346644, y: 0.00004643222, z: -0.11412382, w: 0.0004040103} + inSlope: {x: 0, y: -0.000045957364, z: 0, w: -0.00040003998} + outSlope: {x: 0, y: -0.000045957364, z: 0, w: -0.00040003998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99346656, y: -0.0000053761696, z: -0.11412382, w: -0.00004696013} + inSlope: {x: 0, y: -0.000045957517, z: 0, w: -0.000400041} + outSlope: {x: 0, y: -0.000045957517, z: 0, w: -0.000400041} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.48744908, y: 0.57539284, z: 0.3594173, w: 0.5496687} + inSlope: {x: 0.15821314, y: 0.17768812, z: 0.17545938, w: -0.1647706} + outSlope: {x: 0.15821314, y: 0.17768812, z: 0.17545938, w: -0.1647706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.46306655, y: 0.6016266, z: 0.3852696, w: 0.5245781} + inSlope: {x: 0.52126694, y: 0.52092505, z: 0.5147742, w: -0.52881503} + outSlope: {x: 0.52126694, y: 0.52092505, z: 0.5147742, w: -0.52881503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.37641352, y: 0.6754705, z: 0.46043783, w: 0.43594682} + inSlope: {x: 0.6880582, y: 0.49632382, z: 0.5650027, w: -0.76162076} + outSlope: {x: 0.6880582, y: 0.49632382, z: 0.5650027, w: -0.76162076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.3410101, y: 0.6944242, z: 0.5252225, w: 0.35444102} + inSlope: {x: -0.44129193, y: -0.31451502, z: 0.11694433, w: 0.0064891055} + outSlope: {x: -0.44129193, y: -0.31451502, z: 0.11694433, w: 0.0064891055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -0.43198514, y: 0.6297272, z: 0.5088434, w: 0.39738008} + inSlope: {x: -0.662825, y: -0.5211825, z: -0.2988209, w: 0.49925238} + outSlope: {x: -0.662825, y: -0.5211825, z: -0.2988209, w: 0.49925238} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.454902, y: 0.61031324, z: 0.49609447, w: 0.41769868} + inSlope: {x: -0.5578567, y: -0.4356771, z: -0.1942412, w: 0.26864707} + outSlope: {x: -0.5578567, y: -0.4356771, z: -0.1942412, w: 0.26864707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.50155044, y: 0.58627385, z: 0.4824804, w: 0.41465986} + inSlope: {x: -0.513793, y: -0.06556186, z: -0.3825581, w: -0.08586757} + outSlope: {x: -0.513793, y: -0.06556186, z: -0.3825581, w: -0.08586757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.5659936, y: 0.58374923, z: 0.39778024, w: 0.42503992} + inSlope: {x: -0.60167897, y: -0.23248458, z: -0.8806201, w: 0.32925832} + outSlope: {x: -0.60167897, y: -0.23248458, z: -0.8806201, w: 0.32925832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.61973137, y: 0.5469223, z: 0.32134375, w: 0.46211186} + inSlope: {x: -0.5842947, y: -0.5361172, z: -0.7053752, w: 0.36111513} + outSlope: {x: -0.5842947, y: -0.5361172, z: -0.7053752, w: 0.36111513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.6406094, y: 0.52545214, z: 0.2993032, w: 0.47322026} + inSlope: {x: -0.30696794, y: -0.31054422, z: -0.17879954, w: 0.059802704} + outSlope: {x: -0.30696794, y: -0.31054422, z: -0.17879954, w: 0.059802704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.61320865, y: 0.5496607, z: 0.35936382, w: 0.4389828} + inSlope: {x: 0.6437926, y: 0.40970048, z: 0.5594497, w: -0.071360655} + outSlope: {x: 0.6437926, y: 0.40970048, z: 0.5594497, w: -0.071360655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.5487179, y: 0.56597, z: 0.37967414, w: 0.4841842} + inSlope: {x: 0.6660747, y: -0.33395752, z: -0.25460446, w: 1.2938462} + outSlope: {x: 0.6660747, y: -0.33395752, z: -0.25460446, w: 1.2938462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: -0.51678747, y: 0.46914402, z: 0.3152966, w: 0.6429795} + inSlope: {x: 0.08811428, y: -2.1182342, z: -1.1633967, w: 2.1150136} + outSlope: {x: 0.08811428, y: -2.1182342, z: -1.1633967, w: 2.1150136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.5184858, y: 0.36109647, z: 0.26065278, w: 0.72996026} + inSlope: {x: -0.10840069, y: -2.8967624, z: -1.3623505, w: 1.816006} + outSlope: {x: -0.10840069, y: -2.8967624, z: -1.3623505, w: 1.816006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.52582085, y: 0.22774738, z: 0.20176749, w: 0.7943132} + inSlope: {x: -0.21552786, y: -3.257709, z: -1.4000435, w: 1.1610911} + outSlope: {x: -0.21552786, y: -3.257709, z: -1.4000435, w: 1.1610911} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: -0.53644645, y: 0.08962059, z: 0.14398244, w: 0.82671785} + inSlope: {x: -0.32029432, y: -3.0288324, z: -1.2834718, w: 0.4009752} + outSlope: {x: -0.32029432, y: -3.0288324, z: -1.2834718, w: 0.4009752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.55251205, y: -0.024655472, z: 0.09481145, w: 0.82772785} + inSlope: {x: -0.49842072, y: -2.9552608, z: -1.5512226, w: -0.3117581} + outSlope: {x: -0.49842072, y: -2.9552608, z: -1.5512226, w: -0.3117581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: -0.5779815, y: -0.1566509, z: 0.014714017, w: 0.80073804} + inSlope: {x: -0.5385431, y: -0.92655647, z: -0.3256529, w: -0.4218923} + outSlope: {x: -0.5385431, y: -0.92655647, z: -0.3256529, w: -0.4218923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: -0.59739065, y: -0.10186829, z: 0.067673884, w: 0.7925702} + inSlope: {x: -0.35881487, y: 1.6056356, z: 1.5476019, w: -0.24184006} + outSlope: {x: -0.35881487, y: 1.6056356, z: 1.5476019, w: -0.24184006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.6040357, y: 0.069854505, z: 0.23663163, w: 0.7578039} + inSlope: {x: 0.25183904, y: 2.2161705, z: 2.2811418, w: -0.73071253} + outSlope: {x: 0.25183904, y: 2.2161705, z: 2.2811418, w: -0.73071253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.5644609, y: 0.24302782, z: 0.42484534, w: 0.66470134} + inSlope: {x: 0.50707173, y: 1.6804063, z: 2.0242736, w: -1.4385846} + outSlope: {x: 0.50707173, y: 1.6804063, z: 2.0242736, w: -1.4385846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: -0.5362444, y: 0.3311404, z: 0.5587249, w: 0.5390867} + inSlope: {x: 0.002873607, y: 0.34991425, z: 0.9888529, w: -1.1740456} + outSlope: {x: 0.002873607, y: 0.34991425, z: 0.9888529, w: -1.1740456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.56590444, y: 0.3098194, z: 0.583186, w: 0.49361748} + inSlope: {x: -0.6031361, y: -0.6079973, z: -0.2499457, w: -0.028078668} + outSlope: {x: -0.6031361, y: -0.6079973, z: -0.2499457, w: -0.028078668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.6489217, y: 0.2074019, z: 0.49136844, w: 0.5426252} + inSlope: {x: -0.38860145, y: -0.8730458, z: -0.88306975, w: 0.6789403} + outSlope: {x: -0.38860145, y: -0.8730458, z: -0.88306975, w: 0.6789403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: -0.65590876, y: 0.17305331, z: 0.45777056, w: 0.57470196} + inSlope: {x: 0.5043204, y: -0.2958219, z: -0.13457468, w: 0.7654177} + outSlope: {x: 0.5043204, y: -0.2958219, z: -0.13457468, w: 0.7654177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.6068951, y: 0.18275, z: 0.4801538, w: 0.60641} + inSlope: {x: 2.4003725, y: 1.4252813, z: 1.4199052, w: 0.45328158} + outSlope: {x: 2.4003725, y: 1.4252813, z: 1.4199052, w: 0.45328158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: -0.4558779, y: 0.29182664, z: 0.5760959, w: 0.6124754} + inSlope: {x: 3.0619044, y: 1.913867, z: 1.3336737, w: 0.40238944} + outSlope: {x: 3.0619044, y: 1.913867, z: 1.3336737, w: 0.40238944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0.35173634, y: 0.3422389, z: 0.5912932, w: 0.6399425} + inSlope: {x: 2.1608229, y: 1.0676613, z: 0.16919415, w: 0.52462834} + outSlope: {x: 2.1608229, y: 1.0676613, z: 0.16919415, w: 0.52462834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0.21367584, y: 0.41731802, z: 0.58516175, w: 0.66164494} + inSlope: {x: 1.4596087, y: 0.80888903, z: -0.26829797, w: 0.20142817} + outSlope: {x: 1.4596087, y: 0.80888903, z: -0.26829797, w: 0.20142817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.06750724, y: 0.4819648, z: 0.5215482, w: 0.70081395} + inSlope: {x: 0.6980411, y: 0.23329931, z: -0.44911337, w: 0.25246638} + outSlope: {x: 0.6980411, y: 0.23329931, z: -0.44911337, w: 0.25246638} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.044447884, y: 0.5025361, z: 0.5153115, w: 0.69277406} + inSlope: {x: -0.3407659, y: 0.12025178, z: 0.43747246, w: -0.4427024} + outSlope: {x: -0.3407659, y: 0.12025178, z: 0.43747246, w: -0.4427024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.11946843, y: 0.50663906, z: 0.59545064, w: 0.6119499} + inSlope: {x: -0.7327898, y: -0.12909447, z: 0.6379483, w: -0.65347} + outSlope: {x: -0.7327898, y: -0.12909447, z: 0.6379483, w: -0.65347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.19721332, y: 0.4822849, z: 0.64526093, w: 0.55870074} + inSlope: {x: -0.29614016, y: -0.1087251, z: 0.10804632, w: -0.12956403} + outSlope: {x: -0.29614016, y: -0.1087251, z: 0.10804632, w: -0.12956403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: -0.20286733, y: 0.48011282, z: 0.6459875, w: 0.5577066} + inSlope: {x: -0.0015152664, y: -0.0007681832, z: 0.0018317665, w: -0.0020120107} + outSlope: {x: -0.0015152664, y: -0.0007681832, z: 0.0018317665, w: -0.0020120107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.20488772, y: 0.47908357, z: 0.64842653, w: 0.55501634} + inSlope: {x: -0.0015152751, y: -0.00077462493, z: 0.0018267701, w: -0.0020213204} + outSlope: {x: -0.0015152751, y: -0.00077462493, z: 0.0018267701, w: -0.0020213204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.21179546, y: -0.16912827, z: 0.31227723, w: 0.910506} + inSlope: {x: -0.0024393797, y: 0.05208707, z: -0.0165689, w: 0.015851498} + outSlope: {x: -0.0024393797, y: 0.05208707, z: -0.0165689, w: 0.015851498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: 0.21488203, y: -0.07562941, z: 0.25686285, w: 0.9392164} + inSlope: {x: -0.0077301273, y: 0.34247863, z: -0.23932579, w: 0.09470914} + outSlope: {x: -0.0077301273, y: 0.34247863, z: -0.23932579, w: 0.09470914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0.18355975, y: 0.045167744, z: 0.08290242, w: 0.97846454} + inSlope: {x: -0.08176765, y: -0.09402339, z: -0.22513995, w: 0.03877185} + outSlope: {x: -0.08176765, y: -0.09402339, z: -0.22513995, w: 0.03877185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: 0.020580513, y: -0.11249309, z: 0.03265261, w: 0.99290264} + inSlope: {x: -0.37586617, y: -0.27210414, z: 0.0026303064, w: -0.023014778} + outSlope: {x: -0.37586617, y: -0.27210414, z: 0.0026303064, w: -0.023014778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.05438393, y: -0.15952702, z: 0.029713703, w: 0.9852465} + inSlope: {x: -0.30279124, y: -0.18573269, z: -0.12632605, w: -0.043079115} + outSlope: {x: -0.30279124, y: -0.18573269, z: -0.12632605, w: -0.043079115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0833335 + value: {x: -0.09323751, y: -0.20436397, z: -0.079353936, w: 0.9712081} + inSlope: {x: -0.07736817, y: -0.17715177, z: -0.57173103, w: -0.08926614} + outSlope: {x: -0.07736817, y: -0.17715177, z: -0.57173103, w: -0.08926614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3333335 + value: {x: -0.09121171, y: -0.17271675, z: -0.09972447, w: 0.97565585} + inSlope: {x: 0.06401045, y: 0.43802097, z: 0.1410596, w: 0.097217664} + outSlope: {x: 0.06401045, y: 0.43802097, z: 0.1410596, w: 0.097217664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.08058676, y: -0.02915348, z: -0.04766572, w: 0.9951803} + inSlope: {x: -0.016736057, y: 0.14363676, z: 0.056144115, w: 0.0059745195} + outSlope: {x: -0.016736057, y: 0.14363676, z: 0.056144115, w: 0.0059745195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9583335 + value: {x: -0.081661865, y: -0.025836177, z: -0.046428174, w: 0.99524283} + inSlope: {x: 0, y: 0, z: 0.0000000447034, w: 0} + outSlope: {x: 0, y: 0, z: 0.0000000447034, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.081661865, y: -0.025836179, z: -0.046428163, w: 0.99524283} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.25013512, y: 0.4193594, z: -0.21182506, w: 0.8465816} + inSlope: {x: -0.017915726, y: -0.10122013, z: -0.0033066273, w: 0.04371071} + outSlope: {x: -0.017915726, y: -0.10122013, z: -0.0033066273, w: 0.04371071} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.28737518, y: 0.2956673, z: -0.21690744, w: 0.88484323} + inSlope: {x: -0.21039674, y: -0.9093689, z: -0.018439472, w: 0.22864506} + outSlope: {x: -0.21039674, y: -0.9093689, z: -0.018439472, w: 0.22864506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.31966755, y: -0.04481838, z: -0.2154274, w: 0.92162627} + inSlope: {x: 0.058105562, y: -1.2641667, z: 0.045111336, w: -0.030251011} + outSlope: {x: 0.058105562, y: -1.2641667, z: 0.045111336, w: -0.030251011} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.26770082, y: -0.34576362, z: -0.19378442, w: 0.8781978} + inSlope: {x: 0.21299641, y: -0.6591258, z: 0.07355298, w: -0.17603377} + outSlope: {x: 0.21299641, y: -0.6591258, z: 0.07355298, w: -0.17603377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0.24320833, y: -0.39386708, z: -0.18624726, w: 0.8666201} + inSlope: {x: -0.059577823, y: 0.2612828, z: 0.0463572, w: 0.1109377} + outSlope: {x: -0.059577823, y: 0.2612828, z: 0.0463572, w: 0.1109377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.2623595, y: -0.08124652, z: -0.08750275, w: 0.95755404} + inSlope: {x: 0.19578144, y: 1.0608575, z: 0.40793598, w: 0.18012422} + outSlope: {x: 0.19578144, y: 1.0608575, z: 0.40793598, w: 0.18012422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: -0.12861392, y: 0.21335031, z: 0.048735693, w: 0.96724606} + inSlope: {x: 0.65829176, y: 0.8702803, z: 0.46887094, w: -0.12714955} + outSlope: {x: 0.65829176, y: 0.8702803, z: 0.46887094, w: -0.12714955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.026270755, y: 0.337772, z: 0.1435341, w: 0.9298483} + inSlope: {x: 0.45817733, y: 0.6534107, z: 0.8189466, w: -0.35177383} + outSlope: {x: 0.45817733, y: 0.6534107, z: 0.8189466, w: -0.35177383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: 0.023351304, y: 0.45596394, z: 0.27743903, w: 0.84532785} + inSlope: {x: 0.07493499, y: 0.39797395, z: 0.11189153, w: -0.25087976} + outSlope: {x: 0.07493499, y: 0.39797395, z: 0.11189153, w: -0.25087976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.060376264, y: 0.5172587, z: 0.13565807, w: 0.8428494} + inSlope: {x: -0.6104499, y: 0.071875915, z: -0.93915457, w: 0.062207103} + outSlope: {x: -0.6104499, y: 0.071875915, z: -0.93915457, w: 0.062207103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: -0.16542505, y: 0.50973535, z: -0.042364985, w: 0.84321386} + inSlope: {x: -0.2889711, y: -0.06706175, z: -0.51599133, w: -0.038353488} + outSlope: {x: -0.2889711, y: -0.06706175, z: -0.51599133, w: -0.038353488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8333335 + value: {x: -0.17815556, y: 0.5061175, z: -0.06555932, w: 0.841313} + inSlope: {x: 0.000015199199, y: 0.00014376655, z: 0.000034511122, w: -0.00008082397} + outSlope: {x: 0.000015199199, y: 0.00014376655, z: 0.000034511122, w: -0.00008082397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.17813589, y: 0.50630313, z: -0.06551472, w: 0.841209} + inSlope: {x: 0.000015378057, y: 0.0001430517, z: 0.00003451122, w: -0.00008010895} + outSlope: {x: 0.000015378057, y: 0.0001430517, z: 0.00003451122, w: -0.00008010895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.6021034, y: 0.07225429, z: 0.5922933, w: 0.53050864} + inSlope: {x: 0.421988, y: -0.32226044, z: 0.35478973, w: 0.11022806} + outSlope: {x: 0.421988, y: -0.32226044, z: 0.35478973, w: 0.11022806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.5845206, y: 0.058826774, z: 0.6070762, w: 0.5351015} + inSlope: {x: 0.69390535, y: -0.50190973, z: 0.536381, w: 0.17447019} + outSlope: {x: 0.69390535, y: -0.50190973, z: 0.536381, w: 0.17447019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.43012196, y: -0.042506475, z: 0.69991654, w: 0.5685993} + inSlope: {x: 1.5446646, y: -0.9180961, z: 0.6772513, w: 0.26039883} + outSlope: {x: 1.5446646, y: -0.9180961, z: 0.6772513, w: 0.26039883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.22365578, y: -0.15258148, z: 0.7591877, w: 0.5918877} + inSlope: {x: 1.5886269, y: -0.7561055, z: 0.23799127, w: 0.11311482} + outSlope: {x: 1.5886269, y: -0.7561055, z: 0.23799127, w: 0.11311482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.032566316, y: -0.22699243, z: 0.7535639, w: 0.61608064} + inSlope: {x: 0.96668065, y: -0.10794908, z: -0.21424338, w: 0.17531273} + outSlope: {x: 0.96668065, y: -0.10794908, z: -0.21424338, w: 0.17531273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16896062, y: -0.22794157, z: 0.7117116, w: 0.64262086} + inSlope: {x: 0.9104078, y: -0.12102997, z: -0.3147789, w: 0.06351611} + outSlope: {x: 0.9104078, y: -0.12102997, z: -0.3147789, w: 0.06351611} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.31271344, y: -0.26031294, z: 0.6541908, w: 0.6375593} + inSlope: {x: 0.4863149, y: 0.026815765, z: -0.18584272, w: -0.029592976} + outSlope: {x: 0.4863149, y: 0.026815765, z: -0.18584272, w: -0.029592976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.32491386, y: -0.25289488, z: 0.65108913, w: 0.6376192} + inSlope: {x: 0.12755993, y: 0.29575375, z: 0.052085556, w: -0.002212284} + outSlope: {x: 0.12755993, y: 0.29575375, z: 0.052085556, w: -0.002212284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.32334343, y: -0.2356668, z: 0.65853125, w: 0.63737494} + inSlope: {x: 0.44938675, y: -0.05256413, z: -0.020616524, w: -0.246158} + outSlope: {x: 0.44938675, y: -0.05256413, z: -0.020616524, w: -0.246158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: 0.36236277, y: -0.25727522, z: 0.6493711, w: 0.617106} + inSlope: {x: 0.9352715, y: -0.4694848, z: -0.14101478, w: -0.59868646} + outSlope: {x: 0.9352715, y: -0.4694848, z: -0.14101478, w: -0.59868646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.4798964, y: -0.27893978, z: 0.6698687, w: 0.49312076} + inSlope: {x: 0.9034425, y: 0.30299264, z: 0.5290723, w: -1.454607} + outSlope: {x: 0.9034425, y: 0.30299264, z: 0.5290723, w: -1.454607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.5406186, y: -0.22633648, z: 0.73114413, w: 0.34918702} + inSlope: {x: 0.373034, y: 0.8420556, z: 0.84656847, w: -1.7972529} + outSlope: {x: 0.373034, y: 0.8420556, z: 0.84656847, w: -1.7972529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.5032097, y: -0.13883851, z: 0.8332831, w: 0.18205251} + inSlope: {x: -0.8908758, y: 0.29384476, z: 0.7170743, w: -0.5784297} + outSlope: {x: -0.8908758, y: 0.29384476, z: 0.7170743, w: -0.5784297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.21092494, y: -0.14187686, z: 0.92982846, w: 0.266084} + inSlope: {x: -1.7082593, y: 0.059311386, z: 0.08361851, w: 1.0676765} + outSlope: {x: -1.7082593, y: 0.059311386, z: 0.08361851, w: 1.0676765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: -0.08174794, y: -0.07156811, z: 0.8581773, w: 0.5017241} + inSlope: {x: -1.6033028, y: 0.8609309, z: -1.0523577, w: 1.6492805} + outSlope: {x: -1.6033028, y: 0.8609309, z: -1.0523577, w: 1.6492805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7916667 + value: {x: -0.2237159, y: 0.06118312, z: 0.67225033, w: 0.7030558} + inSlope: {x: -0.5511773, y: 1.0229638, z: -1.7772081, w: 1.4473865} + outSlope: {x: -0.5511773, y: 1.0229638, z: -1.7772081, w: 1.4473865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.23782632, y: 0.15373184, z: 0.39494634, w: 0.87396944} + inSlope: {x: 0.01783027, y: 0.04762839, z: -1.25286, w: 0.57316} + outSlope: {x: 0.01783027, y: 0.04762839, z: -1.25286, w: 0.57316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0.26778665, y: 0.12220441, z: 0.2694934, w: 0.91691315} + inSlope: {x: -0.37109318, y: -0.2841968, z: -0.28235996, w: 0.013112923} + outSlope: {x: -0.37109318, y: -0.2841968, z: -0.28235996, w: 0.013112923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.3372636, y: 0.058971353, z: 0.2867571, w: 0.8947324} + inSlope: {x: -0.7635383, y: -0.90020394, z: 0.62915057, w: -0.44429412} + outSlope: {x: -0.7635383, y: -0.90020394, z: 0.62915057, w: -0.44429412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.42955306, y: -0.17870061, z: 0.46815115, w: 0.75125545} + inSlope: {x: 0.0025852844, y: -1.8009903, z: 1.3442926, w: -1.2781217} + outSlope: {x: 0.0025852844, y: -1.8009903, z: 1.3442926, w: -1.2781217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: -0.421567, y: -0.25568485, z: 0.52502275, w: 0.6937273} + inSlope: {x: 0.8857645, y: -2.3450012, z: 1.6441565, w: -1.742807} + outSlope: {x: 0.8857645, y: -2.3450012, z: 1.6441565, w: -1.742807} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.3557396, y: -0.37411708, z: 0.605164, w: 0.60602176} + inSlope: {x: 1.8488739, y: -2.615405, z: 1.7688475, w: -2.301264} + outSlope: {x: 1.8488739, y: -2.615405, z: 1.7688475, w: -2.301264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.26749426, y: -0.47363502, z: 0.6724265, w: 0.50195545} + inSlope: {x: 1.7953889, y: -1.8097302, z: 1.2732337, w: -2.2370777} + outSlope: {x: 1.7953889, y: -1.8097302, z: 1.2732337, w: -2.2370777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: -0.20612356, y: -0.5249282, z: 0.711267, w: 0.41959825} + inSlope: {x: 1.2483182, y: -0.957327, z: 0.7360548, w: -1.7201159} + outSlope: {x: 1.2483182, y: -0.957327, z: 0.7360548, w: -1.7201159} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.13884659, y: -0.56758195, z: 0.7454773, w: 0.3206805} + inSlope: {x: 0.39648014, y: -0.22621922, z: 0.1807219, w: -0.6092905} + outSlope: {x: 0.39648014, y: -0.22621922, z: 0.1807219, w: -0.6092905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: -0.1304289, y: -0.57223034, z: 0.7488513, w: 0.30783504} + inSlope: {x: -0.00001394746, y: 0.00040197297, z: 0.00032114921, w: -0.00003826611} + outSlope: {x: -0.00001394746, y: 0.00040197297, z: 0.00032114921, w: -0.00003826611} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.13047805, y: -0.57168514, z: 0.7492886, w: 0.30776337} + inSlope: {x: 0.000067234294, y: 0.00037765648, z: 0.000296117, w: 0.000016450946} + outSlope: {x: 0.000067234294, y: 0.00037765648, z: 0.000296117, w: 0.000016450946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00068698515, y: 0.14841421, z: 0.004577604, w: 0.9889145} + inSlope: {x: -0.008170764, y: 1.123999, z: 0.013999566, w: -0.19619036} + outSlope: {x: -0.008170764, y: 1.123999, z: 0.013999566, w: -0.19619036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.0010274337, y: 0.1952475, z: 0.0051609194, w: 0.9807399} + inSlope: {x: -0.015446043, y: 1.6364539, z: 0.024807505, w: -0.36417818} + outSlope: {x: -0.015446043, y: 1.6364539, z: 0.024807505, w: -0.36417818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.0019741554, y: 0.28478536, z: 0.006644896, w: 0.9585663} + inSlope: {x: -0.029455971, y: 2.1534758, z: 0.041454792, w: -0.64370227} + outSlope: {x: -0.029455971, y: 2.1534758, z: 0.041454792, w: -0.64370227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.007580073, y: 0.51543695, z: 0.012600226, w: 0.85680133} + inSlope: {x: -0.048979186, y: 1.2510772, z: 0.04158353, w: -0.73766184} + outSlope: {x: -0.048979186, y: 1.2510772, z: 0.04158353, w: -0.73766184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.011305118, y: 0.5836043, z: 0.01572569, w: 0.8118072} + inSlope: {x: 0.0018293676, y: -0.19285302, z: 0.005131, w: 0.13506678} + outSlope: {x: 0.0018293676, y: -0.19285302, z: 0.005131, w: 0.13506678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.008359398, y: 0.5023341, z: 0.014386477, w: 0.86451346} + inSlope: {x: 0.032182552, y: -0.870337, z: -0.022455404, w: 0.50355875} + outSlope: {x: 0.032182552, y: -0.870337, z: -0.022455404, w: 0.50355875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.00454492, y: 0.3758761, z: 0.011203935, w: 0.9265911} + inSlope: {x: 0.021363173, y: -0.85490847, z: -0.021746293, w: 0.35562372} + outSlope: {x: 0.021363173, y: -0.85490847, z: -0.021746293, w: 0.35562372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.0027683934, y: 0.32387516, z: 0.008086694, w: 0.9460612} + inSlope: {x: 0.016436841, y: -0.42286238, z: -0.037434056, w: 0.14144182} + outSlope: {x: 0.016436841, y: -0.42286238, z: -0.037434056, w: 0.14144182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: -0.0012799957, y: 0.24834044, z: 0.0049927044, w: 0.96865916} + inSlope: {x: 0.016216755, y: -1.8518804, z: -0.023241417, w: 0.4224688} + outSlope: {x: 0.016216755, y: -1.8518804, z: -0.023241417, w: 0.4224688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.00065092416, y: 0.14447673, z: 0.0044581573, w: 0.98949796} + inSlope: {x: 0.015358167, y: -3.0073726, z: -0.06076229, w: 0.37605947} + outSlope: {x: 0.015358167, y: -3.0073726, z: -0.06076229, w: 0.37605947} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.00000014866032, y: -0.002273912, z: -0.00007082167, w: 0.99999744} + inSlope: {x: 0.0078093023, y: -1.7610068, z: -0.054347716, w: 0.12599367} + outSlope: {x: 0.0078093023, y: -1.7610068, z: -0.054347716, w: 0.12599367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: -0.00000014866298, y: -0.0022739123, z: -0.0000708215, w: 0.99999744} + inSlope: {x: -6.343727e-11, y: -0.000000005587937, z: 0.0000000041909525, w: 0} + outSlope: {x: -6.343727e-11, y: -0.000000005587937, z: 0.0000000041909525, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.00000014875522, y: -0.0022739198, z: -0.000070815375, w: 0.99999744} + inSlope: {x: 9.94019e-10, y: 0.0000073201813, z: 0.00000024097926, w: 0} + outSlope: {x: 9.94019e-10, y: 0.0000073201813, z: 0.00000024097926, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: -0.00000014866976, y: -0.0022733093, z: -0.000070795475, w: 0.99999744} + inSlope: {x: -0.010002344, y: 1.9499509, z: 0.062482562, w: -0.15516102} + outSlope: {x: -0.010002344, y: 1.9499509, z: 0.062482562, w: -0.15516102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.0008336742, y: 0.16022138, z: 0.005136045, w: 0.9870674} + inSlope: {x: -0.04158677, y: 3.9965167, z: 0.119498216, w: -0.676128} + outSlope: {x: -0.04158677, y: 3.9965167, z: 0.119498216, w: -0.676128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.0034657146, y: 0.33076948, z: 0.009887379, w: 0.9436534} + inSlope: {x: -0.039929263, y: 2.7018838, z: 0.057921004, w: -0.772464} + outSlope: {x: -0.039929263, y: 2.7018838, z: 0.057921004, w: -0.772464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: -0.004161119, y: 0.3853788, z: 0.009962805, w: 0.9226953} + inSlope: {x: -0.013416282, y: 0.81343716, z: 0.007917157, w: -0.3189774} + outSlope: {x: -0.013416282, y: 0.81343716, z: 0.007917157, w: -0.3189774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.0048265294, y: 0.39547783, z: 0.011208382, w: 0.9183945} + inSlope: {x: -0.0039348993, y: -0.07654044, z: 0.011670537, w: 0.032788694} + outSlope: {x: -0.0039348993, y: -0.07654044, z: 0.011670537, w: 0.032788694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.2083335 + value: {x: -0.0049116467, y: 0.39217752, z: 0.011519688, w: 0.91980433} + inSlope: {x: -0.0000000055879568, y: 0, z: 0.0000000111759135, w: 0} + outSlope: {x: -0.0000000055879568, y: 0, z: 0.0000000111759135, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.00491165, y: 0.39217758, z: 0.011519694, w: 0.91980433} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.09302472, y: -0.06726652, z: 0.24988492, w: 0.9614464} + inSlope: {x: -0.0035843253, y: -0.003250301, z: -0.06900215, w: 0.017942905} + outSlope: {x: -0.0035843253, y: -0.003250301, z: -0.06900215, w: 0.017942905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.08527519, y: -0.07410445, z: 0.08960247, w: 0.98954946} + inSlope: {x: -0.036425553, y: -0.03416186, z: -0.74219894, w: 0.067100994} + outSlope: {x: -0.036425553, y: -0.03416186, z: -0.74219894, w: 0.067100994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.066927545, y: -0.09146698, z: -0.21820422, w: 0.96929944} + inSlope: {x: -0.061687067, y: -0.05364473, z: -0.7683259, w: -0.17319492} + outSlope: {x: -0.061687067, y: -0.05364473, z: -0.7683259, w: -0.17319492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.04868122, y: -0.10164024, z: -0.40661272, w: 0.9066231} + inSlope: {x: 0.0068936488, y: 0.0067596184, z: 0.04410781, w: 0.019904912} + outSlope: {x: 0.0068936488, y: 0.0067596184, z: 0.04410781, w: 0.019904912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.07476821, y: -0.08409772, z: -0.10991193, w: 0.98755085} + inSlope: {x: 0.08403956, y: 0.06958228, z: 1.4375074, w: 0.15847848} + outSlope: {x: 0.08403956, y: 0.06958228, z: 1.4375074, w: 0.15847848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.088947, y: -0.071129516, z: 0.17907692, w: 0.9772208} + inSlope: {x: 0.052410863, y: 0.055789463, z: 1.158354, w: -0.20937128} + outSlope: {x: 0.052410863, y: 0.055789463, z: 1.158354, w: -0.20937128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.094739884, y: -0.062184263, z: 0.30849138, w: 0.9444525} + inSlope: {x: 0.023085577, y: 0.054158915, z: 0.29573005, w: -0.093279384} + outSlope: {x: 0.023085577, y: 0.054158915, z: 0.29573005, w: -0.093279384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.09608156, y: -0.060308225, z: 0.28704348, w: 0.9511768} + inSlope: {x: -0.029900936, y: -0.063856974, z: -1.2152963, w: 0.3344482} + outSlope: {x: -0.029900936, y: -0.063856974, z: -1.2152963, w: 0.3344482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.086644925, y: -0.07372433, z: 0.104922794, w: 0.98795176} + inSlope: {x: -0.19390894, y: -0.21805155, z: -2.7881188, w: 0.2767505} + outSlope: {x: -0.19390894, y: -0.21805155, z: -2.7881188, w: 0.2767505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: 0.06748502, y: -0.09131194, z: -0.14202023, w: 0.98333013} + inSlope: {x: -0.21663651, y: -0.14827234, z: -2.7678034, w: -0.3783266} + outSlope: {x: -0.21663651, y: -0.14827234, z: -2.7678034, w: -0.3783266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: 0.05383192, y: -0.096639805, z: -0.34972268, w: 0.9302994} + inSlope: {x: 0.045800477, y: 0.037333105, z: 0.01127553, w: 0.0049202815} + outSlope: {x: 0.045800477, y: 0.037333105, z: 0.01127553, w: 0.0049202815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: 0.07338922, y: -0.0874561, z: -0.14116663, w: 0.9833806} + inSlope: {x: 0.19181202, y: 0.095815994, z: 2.661439, w: 0.3651853} + outSlope: {x: 0.19181202, y: 0.095815994, z: 2.661439, w: 0.3651853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0.08775699, y: -0.07815931, z: 0.08179582, w: 0.98969656} + inSlope: {x: 0.12610024, y: 0.12073743, z: 2.2149925, w: -0.15167606} + outSlope: {x: 0.12610024, y: 0.12073743, z: 2.2149925, w: -0.15167606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.09217548, y: -0.07026226, z: 0.18893102, w: 0.9751266} + inSlope: {x: -0.028516565, y: 0.009721382, z: 0.016255766, w: 0.0007030964} + outSlope: {x: -0.028516565, y: 0.009721382, z: 0.016255766, w: 0.0007030964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: 0.08520625, y: -0.07674479, z: 0.09789538, w: 0.98856795} + inSlope: {x: -0.09065475, y: -0.1044506, z: -1.507415, w: 0.14908175} + outSlope: {x: -0.09065475, y: -0.1044506, z: -1.507415, w: 0.14908175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: 0.081769235, y: -0.08096774, z: 0.03492231, w: 0.9927429} + inSlope: {x: -0.050031684, y: -0.06944297, z: -1.0990905, w: 0.05640353} + outSlope: {x: -0.050031684, y: -0.06944297, z: -1.0990905, w: 0.05640353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: 0.081782475, y: -0.082225345, z: 0.0063412376, w: 0.9932323} + 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: 4.125 + value: {x: 0.08178248, y: -0.08222532, z: 0.0063412366, w: 0.9932323} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.27838156, y: 0.1414196, z: 0.21781455, w: 0.9246951} + inSlope: {x: -0.30947828, y: 0.18473482, z: 0.33990455, w: -0.020686626} + outSlope: {x: -0.30947828, y: 0.18473482, z: 0.33990455, w: -0.020686626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.26548663, y: 0.14911689, z: 0.23197724, w: 0.92383313} + inSlope: {x: -0.6602869, y: 0.31639034, z: 0.6874847, w: -0.057144642} + outSlope: {x: -0.6602869, y: 0.31639034, z: 0.6874847, w: -0.057144642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.22335765, y: 0.16778547, z: 0.27510494, w: 0.919933} + inSlope: {x: -1.6143391, y: 0.32490778, z: 1.4932307, w: -0.18793704} + outSlope: {x: -1.6143391, y: 0.32490778, z: 1.4932307, w: -0.18793704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.13095838, y: 0.17619254, z: 0.35641313, w: 0.9081717} + inSlope: {x: -3.1432602, y: -0.46277738, z: 2.4647837, w: -0.6404514} + outSlope: {x: -3.1432602, y: -0.46277738, z: 2.4647837, w: -0.6404514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.03858071, y: 0.12922068, z: 0.4805036, w: 0.86656207} + inSlope: {x: -4.1456704, y: -2.0535662, z: 3.0258598, w: -1.7307913} + outSlope: {x: -4.1456704, y: -2.0535662, z: 3.0258598, w: -1.7307913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.21451418, y: 0.0050619976, z: 0.60856813, w: 0.7639391} + inSlope: {x: -2.772726, y: -2.909634, z: 2.623766, w: -2.5696616} + outSlope: {x: -2.772726, y: -2.909634, z: 2.623766, w: -2.5696616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.26964122, y: -0.1132488, z: 0.69915074, w: 0.6524236} + inSlope: {x: -0.29129237, y: -2.2836337, z: 1.8159097, w: -2.26099} + outSlope: {x: -0.29129237, y: -2.2836337, z: 1.8159097, w: -2.26099} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.23878852, y: -0.1852408, z: 0.75989395, w: 0.57552326} + inSlope: {x: 1.1267083, y: -1.3027105, z: 1.1841493, w: -1.4410577} + outSlope: {x: 1.1267083, y: -1.3027105, z: 1.1841493, w: -1.4410577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.10263877, y: -0.23365352, z: 0.81649286, w: 0.51789063} + inSlope: {x: 1.8177117, y: -0.13635871, z: 0.2984791, w: -0.17344312} + outSlope: {x: 1.8177117, y: -0.13635871, z: 0.2984791, w: -0.17344312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.05655375, y: -0.23171009, z: 0.8217338, w: 0.51755744} + inSlope: {x: 1.9550209, y: 0.044321544, z: -0.12804654, w: 0.00600815} + outSlope: {x: 1.9550209, y: 0.044321544, z: -0.12804654, w: 0.00600815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.37534347, y: -0.21941811, z: 0.72340065, w: 0.53634363} + inSlope: {x: 1.6669312, y: 0.10609658, z: -1.0276232, w: 0.26932457} + outSlope: {x: 1.6669312, y: 0.10609658, z: -1.0276232, w: 0.26932457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.5547883, y: -0.16419777, z: 0.4846657, w: 0.6560093} + inSlope: {x: -0.0012646839, y: 0.54136187, z: -0.85514987, w: 0.7729334} + outSlope: {x: -0.0012646839, y: 0.54136187, z: -0.85514987, w: 0.7729334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.44580686, y: 0.023725305, z: 0.38932964, w: 0.80567724} + inSlope: {x: -0.54502034, y: 0.82438993, z: -0.18432623, w: 0.36752665} + outSlope: {x: -0.54502034, y: 0.82438993, z: -0.18432623, w: 0.36752665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.34311983, y: 0.21317276, z: 0.34703127, w: 0.84640145} + inSlope: {x: -0.19020784, y: 0.31253058, z: -0.06659426, w: 0.02663038} + outSlope: {x: -0.19020784, y: 0.31253058, z: -0.06659426, w: 0.02663038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: 0.27562886, y: 0.22328356, z: 0.37635133, w: 0.85588133} + inSlope: {x: -0.8378906, y: -0.24683246, z: 0.46882284, w: 0.11773823} + outSlope: {x: -0.8378906, y: -0.24683246, z: 0.46882284, w: 0.11773823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: 0.08502878, y: 0.13685839, z: 0.45833167, w: 0.8740549} + inSlope: {x: -2.3052227, y: -1.2519646, z: 0.7170056, w: 0.0065050907} + outSlope: {x: -2.3052227, y: -1.2519646, z: 0.7170056, w: 0.0065050907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: -0.021236727, y: 0.076400496, z: 0.4870069, w: 0.8697909} + inSlope: {x: -2.6197448, y: -1.5721345, z: 0.58700776, w: -0.27173236} + outSlope: {x: -2.6197448, y: -1.5721345, z: 0.58700776, w: -0.27173236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: -0.13328308, y: 0.0058473055, z: 0.50724894, w: 0.85141057} + inSlope: {x: -2.5076683, y: -1.6657531, z: 0.35982156, w: -0.5724416} + outSlope: {x: -2.5076683, y: -1.6657531, z: 0.35982156, w: -0.5724416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: -0.3003825, y: -0.118768305, z: 0.5197835, w: 0.7908791} + inSlope: {x: -1.4141729, y: -1.2154058, z: 0.035276446, w: -0.71249413} + outSlope: {x: -1.4141729, y: -1.2154058, z: 0.035276446, w: -0.71249413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.39475965, y: -0.22709353, z: 0.5221159, w: 0.7211022} + inSlope: {x: -0.28180674, y: -0.6105102, z: 0.073852375, w: -0.3948959} + outSlope: {x: -0.28180674, y: -0.6105102, z: 0.073852375, w: -0.3948959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: -0.35884923, y: -0.3152422, z: 0.55616605, w: 0.6800948} + inSlope: {x: 0.5968626, y: -0.3127035, z: 0.1185012, w: 0.06928669} + outSlope: {x: 0.5968626, y: -0.3127035, z: 0.1185012, w: 0.06928669} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3333335 + value: {x: -0.18345323, y: -0.384669, z: 0.57608515, w: 0.69749594} + inSlope: {x: 1.476967, y: -0.60142744, z: 0.093512535, w: -0.030460773} + outSlope: {x: 1.476967, y: -0.60142744, z: 0.093512535, w: -0.030460773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: -0.11797162, y: -0.41175374, z: 0.5786312, w: 0.694066} + inSlope: {x: 1.5814476, y: -0.6621586, z: 0.03618418, w: -0.15624827} + outSlope: {x: 1.5814476, y: -0.6621586, z: 0.03618418, w: -0.15624827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.051666055, y: -0.43984884, z: 0.5791005, w: 0.68447524} + inSlope: {x: 1.2002215, y: -0.2637579, z: 0.0080308765, w: -0.04997626} + outSlope: {x: 1.2002215, y: -0.2637579, z: 0.0080308765, w: -0.04997626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: -0.017952971, y: -0.4337336, z: 0.57930046, w: 0.6899013} + inSlope: {x: 0.7272756, y: 0.15823871, z: 0.07773571, w: 0.05652936} + outSlope: {x: 0.7272756, y: 0.15823871, z: 0.07773571, w: 0.05652936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.01642461, y: -0.4094467, z: 0.59879, w: 0.68813825} + inSlope: {x: -0.17947778, y: 0.661007, z: 0.3935251, w: 0.03935902} + outSlope: {x: -0.17947778, y: 0.661007, z: 0.3935251, w: 0.03935902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: -0.04174523, y: -0.33015496, z: 0.637398, w: 0.6949668} + inSlope: {x: -0.7828877, y: 0.8573564, z: 0.36367595, w: 0.039334156} + outSlope: {x: -0.7828877, y: 0.8573564, z: 0.36367595, w: 0.039334156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: -0.08450034, y: -0.28883126, z: 0.6515999, w: 0.69631445} + inSlope: {x: -0.15895402, y: 0.13557826, z: 0.035042457, w: 0.006843554} + outSlope: {x: -0.15895402, y: 0.13557826, z: 0.035042457, w: 0.006843554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8333335 + value: {x: -0.084508464, y: -0.28883886, z: 0.6515965, w: 0.69631344} + inSlope: {x: -0.00006499892, y: -0.000060796796, z: -0.000027179743, w: -0.000007867819} + outSlope: {x: -0.00006499892, y: -0.000060796796, z: -0.000027179743, w: -0.000007867819} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.08459233, y: -0.2889174, z: 0.6515617, w: 0.6963033} + inSlope: {x: -0.00006473089, y: -0.00006079697, z: -0.000027179822, w: -0.0000071525847} + outSlope: {x: -0.00006473089, y: -0.00006079697, z: -0.000027179822, w: -0.0000071525847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000000016763806, y: -0.000000034458935, z: 0.0000000074505815, w: 1} + inSlope: {x: 0.000000019030622, y: 0.000000002312305, z: -0.00000001041181, w: 0} + outSlope: {x: 0.000000019030622, y: 0.000000002312305, z: -0.00000001041181, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.000000022090408, y: -0.000000029738093, z: -0.000000013806841, w: 1} + inSlope: {x: 0.00000001903065, y: 0.0000000023122366, z: -0.000000010411812, w: 0} + outSlope: {x: 0.00000001903065, y: 0.0000000023122366, z: -0.000000010411812, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: 0.000000028433952, y: -0.000000028967342, z: -0.00000001727744, w: 1} + inSlope: {x: 0.000000019030619, y: -0.000002423272, z: -0.000000010411714, w: 0} + outSlope: {x: 0.000000019030619, y: -0.000002423272, z: -0.000000010411714, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: 0.000000029226895, y: -0.0000002310034, z: -0.000000017711258, w: 1} + inSlope: {x: -0.0000000065511205, y: -1.2940674, z: 0.000000029705706, w: -0.06997977} + outSlope: {x: -0.0000000065511205, y: -1.2940674, z: 0.000000029705706, w: -0.06997977} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0.000000027888024, y: -0.10783919, z: -0.00000001480196, w: 0.99416834} + inSlope: {x: -0.00000003118967, y: -2.3257215, z: 0.000000065477444, w: -0.2275319} + outSlope: {x: -0.00000003118967, y: -2.3257215, z: 0.000000065477444, w: -0.2275319} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: 0.000000026627758, y: -0.19381024, z: -0.000000012254809, w: 0.98103905} + inSlope: {x: -0.00000003095421, y: -1.9416062, z: 0.00000006018699, w: -0.37448376} + outSlope: {x: -0.00000003095421, y: -1.9416062, z: 0.00000006018699, w: -0.37448376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.000000025308509, y: -0.26963952, z: -0.000000009786382, w: 0.9629614} + inSlope: {x: -0.000000045121645, y: -2.1278224, z: 0.00000007465403, w: -0.6294918} + outSlope: {x: -0.000000045121645, y: -2.1278224, z: 0.00000007465403, w: -0.6294918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: 0.000000022867614, y: -0.3711291, z: -0.0000000060336274, w: 0.9285813} + inSlope: {x: -0.0000000592917, y: -2.2710295, z: 0.00000008825015, w: -0.8936316} + outSlope: {x: -0.0000000592917, y: -2.2710295, z: 0.00000008825015, w: -0.8936316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: 0.000000018935424, y: -0.5084408, z: -2.1337383e-10, w: 0.861097} + inSlope: {x: -0.000000019728288, y: -0.7884539, z: 0.000000036149906, w: -0.4456929} + outSlope: {x: -0.000000019728288, y: -0.7884539, z: 0.000000036149906, w: -0.4456929} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: 0.0000000196178, y: -0.5246121, z: 6.7434464e-10, w: 0.85134137} + inSlope: {x: 0.000000010731086, y: -0.0001881119, z: 0.0000000011290607, w: -0.00011658647} + outSlope: {x: 0.000000010731086, y: -0.0001881119, z: 0.0000000011290607, w: -0.00011658647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.000000033918536, y: -0.52486336, z: 0.0000000021882938, w: 0.8511865} + inSlope: {x: 0.00000001072017, y: -0.00018739772, z: 0.0000000011416671, w: -0.00011587187} + outSlope: {x: 0.00000001072017, y: -0.00018739772, z: 0.0000000011416671, w: -0.00011587187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000000026424967, y: -0.00000010618032, z: -0.24623105, w: 0.96921116} + inSlope: {x: -0.0000017700168, y: -0.000007071475, z: 0.09652197, w: 0.024308681} + outSlope: {x: -0.0000017700168, y: -0.000007071475, z: 0.09652197, w: 0.024308681} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.0000003195321, y: -0.000002812703, z: -0.1198493, w: 0.9927921} + inSlope: {x: 0.0000003684985, y: -0.000019902182, z: 0.9321981, w: 0.11034464} + outSlope: {x: 0.0000003684985, y: -0.000019902182, z: 0.9321981, w: 0.11034464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.0000025934787, y: -0.0000110022165, z: 0.22809677, w: 0.9736385} + inSlope: {x: 0.000022923163, y: -0.000031907806, z: 1.2922333, w: -0.30273473} + outSlope: {x: 0.000022923163, y: -0.000031907806, z: 1.2922333, w: -0.30273473} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.0000127684125, y: -0.000019452029, z: 0.5483443, w: 0.8362527} + inSlope: {x: 0.00004216034, y: -0.000024658408, z: 0.7861849, w: -0.512915} + outSlope: {x: 0.00004216034, y: -0.000024658408, z: 0.7861849, w: -0.512915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.000022432447, y: -0.00002616315, z: 0.65074146, w: 0.7592994} + inSlope: {x: 0.000025403193, y: -0.0000360957, z: -0.084924534, w: 0.071568556} + outSlope: {x: 0.000025403193, y: -0.0000360957, z: -0.084924534, w: 0.071568556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.00002092527, y: -0.00003589498, z: 0.5035247, w: 0.8639808} + inSlope: {x: -0.000048819616, y: -0.00007450884, z: -1.658442, w: 0.95298696} + outSlope: {x: -0.000048819616, y: -0.00007450884, z: -1.658442, w: 0.95298696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.000011454995, y: -0.00004492892, z: 0.24698867, w: 0.9690184} + inSlope: {x: -0.00009664183, y: -0.000062326806, z: -2.278724, w: 0.5808133} + outSlope: {x: -0.00009664183, y: -0.000062326806, z: -2.278724, w: 0.5808133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.0000014427534, y: -0.000050600604, z: -0.02852687, w: 0.999593} + inSlope: {x: -0.00009733493, y: -0.000028022052, z: -1.9122729, w: -0.04286515} + outSlope: {x: -0.00009733493, y: -0.000028022052, z: -1.9122729, w: -0.04286515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: -0.000011433824, y: -0.00005365364, z: -0.2084035, w: 0.97804296} + inSlope: {x: -0.0000073925085, y: -0.000018765939, z: -0.062987715, w: -0.012714304} + outSlope: {x: -0.0000073925085, y: -0.000018765939, z: -0.062987715, w: -0.012714304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.0001737878, y: -0.000014036259, z: 0.12590893, w: 0.99204177} + inSlope: {x: -0.004218376, y: 0.0020078518, z: 1.8412404, w: -0.23677061} + outSlope: {x: -0.004218376, y: 0.0020078518, z: 1.8412404, w: -0.23677061} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0.0015009218, y: 0.0005226746, z: 0.42604098, w: 0.9047025} + inSlope: {x: -0.010229759, y: 0.0021865629, z: 1.5824685, w: -0.73984325} + outSlope: {x: -0.010229759, y: 0.0021865629, z: 1.5824685, w: -0.73984325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3333335 + value: {x: -0.002994208, y: 0.0004872179, z: 0.6367064, w: 0.77110034} + inSlope: {x: -0.003866698, y: -0.0003156579, z: 0.32242498, w: -0.26180637} + outSlope: {x: -0.003866698, y: -0.0003156579, z: 0.32242498, w: -0.26180637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.0037964368, y: 0.0007424459, z: 0.62582695, w: 0.77995235} + inSlope: {x: -0.015636124, y: 0.008523074, z: -0.7853214, w: 0.6067996} + outSlope: {x: -0.015636124, y: 0.008523074, z: -0.7853214, w: 0.6067996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.005231393, y: 0.0019673477, z: 0.50509596, w: 0.8630451} + inSlope: {x: -0.014430964, y: 0.019826483, z: -1.9391444, w: 1.1182855} + outSlope: {x: -0.014430964, y: 0.019826483, z: -1.9391444, w: 1.1182855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: -0.005920632, y: 0.0037638983, z: 0.32595086, w: 0.9453607} + inSlope: {x: -0.0002866157, y: 0.01837151, z: -2.0788245, w: 0.73016554} + outSlope: {x: -0.0002866157, y: 0.01837151, z: -2.0788245, w: 0.73016554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.0055651963, y: 0.004711366, z: 0.18404916, w: 0.98289} + inSlope: {x: 0.0007509779, y: 0.0039904825, z: -0.9849398, w: 0.20369872} + outSlope: {x: 0.0007509779, y: 0.0039904825, z: -0.9849398, w: 0.20369872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: -0.0064428165, y: 0.0044129826, z: 0.16132109, w: 0.98687106} + inSlope: {x: -0.009982884, y: -0.004586943, z: 0.000032722888, w: -0.000050783063} + outSlope: {x: -0.009982884, y: -0.004586943, z: 0.000032722888, w: -0.000050783063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.007855794, y: 0.0032032826, z: 0.16132183, w: 0.9868654} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.022035776, y: 0.13550477, z: 0.08266353, w: 0.98707634} + inSlope: {x: 0.046839595, y: -0.0017359257, z: 0.07064241, w: -0.0068764687} + outSlope: {x: 0.046839595, y: -0.0017359257, z: 0.07064241, w: -0.0068764687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.08219796, y: 0.13217247, z: 0.1685417, w: 0.9733281} + inSlope: {x: 0.38137698, y: -0.0055155144, z: 0.42968518, w: -0.10614466} + outSlope: {x: 0.38137698, y: -0.0055155144, z: 0.42968518, w: -0.10614466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25348395, y: 0.12095764, z: 0.237558, w: 0.9298824} + inSlope: {x: 0.3635761, y: -0.045844384, z: -0.15826832, w: -0.052572705} + outSlope: {x: 0.3635761, y: -0.045844384, z: -0.15826832, w: -0.052572705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.31785214, y: 0.05090629, z: 0.13574876, w: 0.9369903} + inSlope: {x: -0.009412687, y: -0.59439015, z: -0.291826, w: 0.07647295} + outSlope: {x: -0.009412687, y: -0.59439015, z: -0.291826, w: 0.07647295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.22287974, y: -0.16106588, z: 0.084774144, w: 0.95770335} + inSlope: {x: -0.5610868, y: -0.61018807, z: -0.11903021, w: 0.039334036} + outSlope: {x: -0.5610868, y: -0.61018807, z: -0.11903021, w: 0.039334036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: 0.032899056, y: -0.19517173, z: 0.00069952046, w: 0.9802169} + inSlope: {x: -0.40496248, y: 0.37955147, z: -0.51223683, w: 0.08879825} + outSlope: {x: -0.40496248, y: 0.37955147, z: -0.51223683, w: 0.08879825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.0701865, y: 0.017907262, z: -0.21723242, w: 0.9734286} + inSlope: {x: -0.1797561, y: 0.7343961, z: -0.7609227, w: -0.19634718} + outSlope: {x: -0.1797561, y: 0.7343961, z: -0.7609227, w: -0.19634718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2083335 + value: {x: -0.10188675, y: 0.16273664, z: -0.3768744, w: 0.9061465} + inSlope: {x: -0.17077865, y: 0.23131526, z: -0.2892876, w: -0.17802213} + outSlope: {x: -0.17077865, y: 0.23131526, z: -0.2892876, w: -0.17802213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.15509485, y: 0.10071139, z: -0.3417551, w: 0.9214154} + inSlope: {x: -0.24339928, y: -0.74643517, z: 0.5138091, w: 0.22744732} + outSlope: {x: -0.24339928, y: -0.74643517, z: 0.5138091, w: 0.22744732} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.17884806, y: 0.008562282, z: -0.28995135, w: 0.9401427} + inSlope: {x: -0.38416213, y: -1.757889, z: 0.75603724, w: 0.14443193} + outSlope: {x: -0.38416213, y: -1.757889, z: 0.75603724, w: 0.14443193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5833335 + value: {x: -0.21200025, y: -0.1829935, z: -0.21742837, w: 0.935037} + inSlope: {x: -0.301943, y: -2.3537652, z: 0.85123867, w: -0.31759423} + outSlope: {x: -0.301943, y: -2.3537652, z: 0.85123867, w: -0.31759423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.22668575, y: -0.34449032, z: -0.16014868, w: 0.8968235} + inSlope: {x: -0.073302306, y: -1.1359323, z: 0.3981081, w: -0.35161474} + outSlope: {x: -0.073302306, y: -1.1359323, z: 0.3981081, w: -0.35161474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: -0.22803783, y: -0.37079808, z: -0.15097386, w: 0.8875328} + 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: 4.125 + value: {x: -0.22803785, y: -0.37079814, z: -0.15097387, w: 0.8875328} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.13871254, w: 0.9903327} + inSlope: {x: 0, y: -0, z: -0.0129003525, w: -0.0018110275} + outSlope: {x: 0, y: -0, z: -0.0129003525, w: -0.0018110275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0, y: -0, z: -0.17867425, w: 0.9839083} + inSlope: {x: 0, y: 0, z: 0.16140376, w: 0.02923537} + outSlope: {x: 0, y: 0, z: 0.16140376, w: 0.02923537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0, y: -0, z: -0.102292314, w: 0.9947544} + inSlope: {x: 0, y: 0, z: -0.12045981, w: -0.012459747} + outSlope: {x: 0, y: 0, z: -0.12045981, w: -0.012459747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0, y: -0, z: -0.13052417, w: 0.9914451} + inSlope: {x: 0, y: 0, z: 0.26128596, w: 0.034051873} + outSlope: {x: 0, y: 0, z: 0.26128596, w: 0.034051873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0, y: 0, z: 0.000000004676871, w: 1} + inSlope: {x: 0, y: 0, z: 0.058031093, w: 0.00006794911} + outSlope: {x: 0, y: 0, z: 0.058031093, w: 0.00006794911} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9583335 + 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: 4.125 + 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: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0013052019, y: 0.005500984, z: 0.00058792246} + inSlope: {x: -0.0002477789, y: 0.00017618178, z: 0.0009826523} + outSlope: {x: -0.0002477789, y: 0.00017618178, z: 0.0009826523} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.0013155261, y: 0.005508325, z: 0.0006288663} + inSlope: {x: -0.0002477789, y: 0.00017618178, z: 0.0009826523} + outSlope: {x: -0.0007124126, y: 0.0005042553, z: 0.0027651393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.0013452099, y: 0.0055293357, z: 0.00074408046} + inSlope: {x: -0.0007124126, y: 0.0005042553, z: 0.0027651393} + outSlope: {x: -0.0011305476, y: 0.0007958937, z: 0.0042733955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.0013923161, y: 0.005562498, z: 0.00092213857} + inSlope: {x: -0.0011305476, y: 0.0007958937, z: 0.0042733955} + outSlope: {x: -0.001502255, y: 0.0010510539, z: 0.005507433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.00145491, y: 0.005606292, z: 0.0011516149} + inSlope: {x: -0.001502255, y: 0.0010510539, z: 0.005507433} + outSlope: {x: -0.0018274537, y: 0.0012697938, z: 0.00646721} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: -0.0015310539, y: 0.0056592, z: 0.001421082} + inSlope: {x: -0.0018274537, y: 0.0012697938, z: 0.00646721} + outSlope: {x: -0.0021062419, y: 0.0014520548, z: 0.007152814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.002164087, y: 0.006082968, z: 0.0032378458} + inSlope: {x: -0.0028031503, y: 0.0018165912, z: 0.006467203} + outSlope: {x: -0.0028031522, y: 0.0017801289, z: 0.0055074487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.002395748, y: 0.006228274, z: 0.003645381} + inSlope: {x: -0.0027567123, y: 0.0017072145, z: 0.004273393} + outSlope: {x: -0.0026637616, y: 0.0015978399, z: 0.0027651384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.0026119212, y: 0.006355354, z: 0.0038015388} + inSlope: {x: -0.0025243938, y: 0.0014520828, z: 0.0009826536} + outSlope: {x: -0.0023385347, y: 0.0012697643, z: -0.00082777935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: -0.0027971198, y: 0.0064520547, z: 0.0036675169} + inSlope: {x: -0.002106237, y: 0.0010510549, z: -0.0023887488} + outSlope: {x: -0.0018274846, y: 0.0007959076, z: -0.0038078122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: -0.002982965, y: 0.006503317, z: 0.0030378108} + inSlope: {x: -0.00113057, y: -0.000069851936, z: -0.0062201843} + outSlope: {x: -0.00071238715, y: -0.000069866146, z: -0.007213529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: -0.003017534, y: 0.0064778263, z: 0.002035602} + inSlope: {x: 0.00013053429, y: -0.00047206922, z: -0.008774504} + outSlope: {x: 0.0003827546, y: -0.00064908, z: -0.009342115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: -0.00289622, y: 0.006328215, z: 0.0003958043} + inSlope: {x: 0.0010597453, y: -0.0011394464, z: -0.010193563} + outSlope: {x: 0.0012588727, y: -0.0012893354, z: -0.010193569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: -0.002843767, y: 0.0062744925, z: -0.000028927325} + inSlope: {x: 0.0012588727, y: -0.0012893354, z: -0.010193569} + outSlope: {x: 0.0014447066, y: -0.0014323827, z: -0.010051627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: -0.002783571, y: 0.00621481, z: -0.0004477459} + inSlope: {x: 0.0014447066, y: -0.0014323827, z: -0.010051627} + outSlope: {x: 0.0016172876, y: -0.0015686718, z: -0.009767843} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.002716184, y: 0.0061494485, z: -0.000854739} + inSlope: {x: 0.0016172876, y: -0.0015686718, z: -0.009767843} + outSlope: {x: 0.0017765752, y: -0.0016981903, z: -0.009342127} + tangentMode: 0 + weightedMode: 0 + 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.0025620519, y: 0.006002823, z: -0.0016095979} + inSlope: {x: 0.0019225894, y: -0.0018208231, z: -0.00877448} + outSlope: {x: 0.0020553393, y: -0.0019367284, z: -0.00806497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4166666 + value: {x: -0.002385796, y: 0.0058368808, z: -0.002246202} + inSlope: {x: 0.0021748086, y: -0.0020458908, z: -0.00721354} + outSlope: {x: 0.0022810034, y: -0.002148138, z: -0.006220188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: -0.00219184, y: 0.005653889, z: -0.00271725} + inSlope: {x: 0.0023739396, y: -0.0022436592, z: -0.005084958} + outSlope: {x: 0.002453569, y: -0.0023324224, z: -0.0038077962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5416666 + value: {x: -0.002089608, y: 0.005556705, z: -0.002875908} + inSlope: {x: 0.002453569, y: -0.0023324224, z: -0.0038077962} + outSlope: {x: 0.0025199484, y: -0.0024143266, z: -0.002388742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.00198461, y: 0.0054561077, z: -0.002975439} + inSlope: {x: 0.0025199484, y: -0.0024143266, z: -0.002388742} + outSlope: {x: 0.002573042, y: -0.00248945, z: -0.0008277806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: -0.0018774, y: 0.0053523807, z: -0.0030099298} + inSlope: {x: 0.002573042, y: -0.00248945, z: -0.0008277806} + outSlope: {x: 0.0026128816, y: -0.002557771, z: 0.00075408054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: -0.0016585549, y: 0.005136667, z: -0.0028893768} + inSlope: {x: 0.0026393959, y: -0.0026193615, z: 0.00213919} + outSlope: {x: 0.0026526963, y: -0.0026740863, z: 0.0033395751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7916666 + value: {x: -0.001437497, y: 0.004911828, z: -0.002568758} + inSlope: {x: 0.0026526998, y: -0.0027220515, z: 0.004355282} + outSlope: {x: 0.0026394173, y: -0.002763185, z: 0.005186345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.001006444, y: 0.004337036, z: -0.0015735539} + inSlope: {x: 0.0025199235, y: -0.0047227317, z: 0.006571428} + outSlope: {x: 0.0024535852, y: -0.005654023, z: 0.006663751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0833333 + value: {x: -0.0007102561, y: 0.003560543, z: -0.0007598217} + inSlope: {x: 0.002281011, y: -0.006676559, z: 0.0062944386} + outSlope: {x: 0.002174813, y: -0.0067677936, z: 0.0058326987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0.0006196387, y: 0.003278551, z: -0.00051679206} + inSlope: {x: 0.002174813, y: -0.0067677936, z: 0.0058326987} + outSlope: {x: 0.00205533, y: -0.006579017, z: 0.005186327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: -0.0005339998, y: 0.0030044247, z: -0.0003006947} + inSlope: {x: 0.00205533, y: -0.006579017, z: 0.005186327} + outSlope: {x: 0.0019225995, y: -0.006110324, z: 0.004355316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2083333 + value: {x: -0.0004538918, y: 0.0027498289, z: -0.00011922389} + inSlope: {x: 0.0019225995, y: -0.006110324, z: 0.004355316} + outSlope: {x: 0.0017765773, y: -0.005361568, z: 0.0033395728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.0003798676, y: 0.00252643, z: 0.000019925235} + inSlope: {x: 0.0017765773, y: -0.005361568, z: 0.0033395728} + outSlope: {x: 0.00161727, y: -0.0043327534, z: 0.0021391676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2916667 + value: {x: -0.0003124812, y: 0.0023458982, z: 0.000109057386} + inSlope: {x: 0.00161727, y: -0.0043327534, z: 0.0021391676} + outSlope: {x: 0.0014447144, y: -0.0030240412, z: 0.0007540975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3333333 + value: {x: -0.000252285, y: 0.0022198968, z: 0.00014047799} + inSlope: {x: 0.0014447144, y: -0.0030240412, z: 0.0007540975} + outSlope: {x: 0.0012588624, y: -0.0014352724, z: -0.00053317787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: -0.0001998323, y: 0.0021600937, z: 0.00011826221} + inSlope: {x: 0.0012588624, y: -0.0014352724, z: -0.00053317787} + outSlope: {x: 0.0010597564, y: 0.00043351567, z: -0.0014472031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.00015567569, y: 0.002178157, z: 0.00005796196} + inSlope: {x: 0.0010597564, y: 0.00043351567, z: -0.0014472031} + outSlope: {x: 0.0008473519, y: 0.0025822904, z: -0.0021327322} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0.0001203695, y: 0.002285752, z: -0.00003090154} + inSlope: {x: 0.0008473519, y: 0.0025822904, z: -0.0021327322} + outSlope: {x: 0.00062169216, y: 0.0041878, z: -0.0025897312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: -0.00009446561, y: 0.0024602439, z: -0.00013880721} + inSlope: {x: 0.00062169216, y: 0.0041878, z: -0.0025897312} + outSlope: {x: 0.0003827469, y: 0.004766319, z: -0.0028182345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: -0.00007851779, y: 0.002658841, z: -0.00025623388} + inSlope: {x: 0.0003827469, y: 0.004766319, z: -0.0028182345} + outSlope: {x: 0.000130534, y: 0.004899163, z: -0.0028182524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5833333 + value: {x: -0.000073078896, y: 0.002862972, z: -0.00037366062} + inSlope: {x: 0.000130534, y: 0.004899163, z: -0.0028182524} + outSlope: {x: 0.000009291825, y: 0.004586268, z: -0.0025897285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: -0.000072691735, y: 0.0030540668, z: -0.00048156618} + inSlope: {x: 0.000009291825, y: 0.004586268, z: -0.0025897285} + outSlope: {x: 0.00002665619, y: 0.003827734, z: -0.0021327205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.00007158106, y: 0.003213556, z: -0.0005704297} + inSlope: {x: 0.00002665619, y: 0.003827734, z: -0.0021327205} + outSlope: {x: 0.000042193657, y: 0.002623468, z: -0.0014472093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7083333 + value: {x: -0.000069823, y: 0.0033228667, z: -0.00063072983} + inSlope: {x: 0.000042193657, y: 0.002623468, z: -0.0014472093} + outSlope: {x: 0.000055902157, y: 0.00097353983, z: -0.000533181} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.75 + value: {x: -0.00006749374, y: 0.003363431, z: -0.0006529458} + inSlope: {x: 0.000055902157, y: 0.00097353983, z: -0.000533181} + outSlope: {x: 0.000067783534, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.2083333 + value: {x: -0.000025954108, y: 0.003363431, z: -0.0006529458} + inSlope: {x: 0.000086062406, y: -0, z: -0} + outSlope: {x: 0.00007783661, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.2916667 + value: {x: -0.00001988659, y: 0.003363431, z: -0.0006529458} + inSlope: {x: 0.00006778359, y: -0, z: -0} + outSlope: {x: 0.000055902674, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.3333333 + value: {x: -0.00001755732, y: 0.003363431, z: -0.0006529458} + inSlope: {x: 0.000055902674, y: -0, z: -0} + outSlope: {x: 0.000042193107, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.375 + value: {x: -0.00001579927, y: 0.003363431, z: -0.0006529458} + inSlope: {x: 0.000042193107, y: -0, z: -0} + outSlope: {x: 0.000026656524, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.4166667 + value: {x: -0.0000146885795, y: 0.003363431, z: -0.0006529458} + inSlope: {x: 0.000026656524, y: -0, z: -0} + outSlope: {x: 0.0000005465549, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0000143014295, y: 0.003363431, z: -0.0006529458} + inSlope: {x: 0.00000054655806, y: -0, z: -0} + outSlope: {x: 0.00000054655806, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.001065924, y: -0.0007641399, z: -0.00018158692} + inSlope: {x: -0.00002942562, y: -0.000015773177, z: -0.00008799523} + outSlope: {x: -0.00002942562, y: -0.000015773177, z: -0.00008799523} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.0010473218, y: -0.00077417685, z: -0.00020767166} + inSlope: {x: -0.00019073901, y: -0.000103248945, z: -0.00022009668} + outSlope: {x: -0.0002383161, y: -0.00012957038, z: -0.00025428418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.00071313744, y: -0.0009667142, z: -0.00041406244} + inSlope: {x: -0.00058237166, y: -0.00035716454, z: -0.00013148539} + outSlope: {x: -0.0005777654, y: -0.00035930137, z: -0.000081950384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.00057605444, y: -0.0010557991, z: -0.0003964084} + inSlope: {x: -0.00050865015, y: -0.0003486553, z: 0.00023959747} + outSlope: {x: -0.00048560544, y: -0.00034221265, z: 0.0003186789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.0005187453, y: -0.0010975398, z: -0.0003458675} + inSlope: {x: -0.000430317, y: -0.00032513766, z: 0.000491619} + outSlope: {x: -0.00039807416, y: -0.00031450004, z: 0.0005854749} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.00047353085, y: -0.0011352808, z: -0.00026013047} + inSlope: {x: -0.0003243321, y: -0.00028887956, z: 0.0007879586} + outSlope: {x: -0.00028286243, y: -0.0002739575, z: 0.0008965953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4166666 + value: {x: 0.00046174493, y: -0.0011466957, z: -0.00022277236} + inSlope: {x: -0.00028286243, y: -0.0002739575, z: 0.0008965953} + outSlope: {x: -0.00023834422, y: -0.00025759172, z: 0.0010101394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5416666 + value: {x: 0.00043803322, y: -0.0011766126, z: -0.00009410769} + inSlope: {x: -0.00014004094, y: -0.00022060295, z: 0.0010236035} + outSlope: {x: -0.00008626772, y: -0.00019999764, z: 0.0009902053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.00043443873, y: -0.0011849458, z: -0.000052849053} + inSlope: {x: -0.00008626772, y: -0.00019999764, z: 0.0009902053} + outSlope: {x: -0.000029420284, y: -0.00017790751, z: 0.00095400185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: 0.00043321287, y: -0.0011923587, z: -0.000013099015} + inSlope: {x: -0.000029420284, y: -0.00017790751, z: 0.00095400185} + outSlope: {x: -0.000056979115, y: -0.00015447571, z: 0.0009150061} + tangentMode: 0 + weightedMode: 0 + 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.00043083876, y: -0.0011987952, z: 0.000025026202} + inSlope: {x: -0.000056979115, y: -0.00015447571, z: 0.0009150061} + outSlope: {x: -0.00017820741, y: -0.00012956653, z: 0.00087320403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.00042341344, y: -0.0012041937, z: 0.00006140977} + inSlope: {x: -0.00017820741, y: -0.00012956653, z: 0.00087320403} + outSlope: {x: -0.00031038732, y: -0.00010325263, z: 0.00082861027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.00041048063, y: -0.0012084959, z: 0.00009593517} + inSlope: {x: -0.00031038732, y: -0.00010325263, z: 0.00082861027} + outSlope: {x: -0.0004534967, y: -0.00007550604, z: 0.00078120304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.0003662702, y: -0.0012129365, z: 0.00015894353} + inSlope: {x: -0.0006075532, y: -0.000031067073, z: 0.00073099707} + outSlope: {x: -0.00077253685, y: -0.000031067164, z: 0.00067800947} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.00033408118, y: -0.0012142309, z: 0.0001871939} + inSlope: {x: -0.00077253685, y: -0.000031067164, z: 0.00067800947} + outSlope: {x: -0.00094846037, y: -0.000008168228, z: 0.000622198} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9166666 + value: {x: 0.00029456205, y: -0.0012145713, z: 0.0002131188} + inSlope: {x: -0.00094846037, y: -0.000008168228, z: 0.000622198} + outSlope: {x: -0.0011353107, y: -0.000008169993, z: 0.000563599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.00024725735, y: -0.0012149117, z: 0.00023660212} + inSlope: {x: -0.0011353107, y: -0.000008169993, z: 0.000563599} + outSlope: {x: -0.0013331182, y: -0.000008170016, z: 0.0005021994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.00019171082, y: -0.0012152521, z: 0.00025752708} + inSlope: {x: -0.0013331182, y: -0.000008170016, z: 0.0005021994} + outSlope: {x: -0.0015418468, y: -0.000008168205, z: 0.00043799495} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.00012746708, y: -0.0012155925, z: 0.0002757769} + inSlope: {x: -0.0015418468, y: -0.000008168205, z: 0.00043799495} + outSlope: {x: -0.0017615253, y: -0.000008168252, z: 0.00037099203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0833333 + value: {x: 0.000054070468, y: -0.0012159328, z: 0.00029123484} + inSlope: {x: -0.0017615253, y: -0.000008168252, z: 0.00037099203} + outSlope: {x: -0.0016169976, y: -0.000008169993, z: 0.00030118733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0.000013304563, y: -0.0012162732, z: 0.00030378433} + inSlope: {x: -0.0016169976, y: -0.000008169993, z: 0.00030118733} + outSlope: {x: -0.001134086, y: -0.000008169993, z: 0.00022858547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: -0.00006055824, y: -0.0012166136, z: 0.00031330876} + inSlope: {x: -0.001134086, y: -0.000008169993, z: 0.00022858547} + outSlope: {x: -0.0007009102, y: -0.000008168252, z: 0.00015318065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2083333 + value: {x: -0.00008976272, y: -0.001216954, z: 0.00031969126} + inSlope: {x: -0.0007009102, y: -0.000008168252, z: 0.00015318065} + outSlope: {x: -0.00031735032, y: -0.000018449986, z: 0.00007497832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: -0.00010298568, y: -0.0012177227, z: 0.00032281535} + inSlope: {x: -0.00031735032, y: -0.000018449986, z: 0.00007497832} + outSlope: {x: 0.000016495107, y: -0.000018449986, z: -0.0000060287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2916667 + value: {x: -0.00010229838, y: -0.0012184915, z: 0.00032256416} + inSlope: {x: 0.000016495107, y: -0.000018449986, z: -0.0000060287} + outSlope: {x: 0.00030067522, y: -0.000018448303, z: -0.00008983468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3333333 + value: {x: -0.00008977029, y: -0.0012192602, z: 0.00031882105} + inSlope: {x: 0.00030067522, y: -0.000018448303, z: -0.00008983468} + outSlope: {x: 0.0005351596, y: -0.000018449986, z: -0.00017643806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: -0.000067471934, y: -0.0012200288, z: 0.00031146946} + inSlope: {x: 0.0005351596, y: -0.000018449986, z: -0.00017643806} + outSlope: {x: 0.00071997487, y: -0.000023007944, z: -0.0002658453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: -0.000037472928, y: -0.0012209875, z: 0.00030039257} + inSlope: {x: 0.00071997487, y: -0.000023007944, z: -0.0002658453} + outSlope: {x: 0.0008551207, y: -0.000023008077, z: -0.00029913493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0.0000018430339, y: -0.0012219462, z: 0.00028792865} + inSlope: {x: 0.0008551207, y: -0.000023008077, z: -0.00029913493} + outSlope: {x: 0.0009405609, y: -0.000023007944, z: -0.00027499386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: 0.000037347076, y: -0.0012229049, z: 0.00027647056} + inSlope: {x: 0.0009405609, y: -0.000023007944, z: -0.00027499386} + outSlope: {x: 0.0009763353, y: -0.000026087115, z: -0.00025169176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5833333 + value: {x: 0.00011812949, y: -0.001225079, z: 0.00025643225} + inSlope: {x: 0.0009624443, y: -0.000026089052, z: -0.00022922782} + outSlope: {x: 0.00089884584, y: -0.000026087115, z: -0.00020759454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: 0.00015558147, y: -0.0012261659, z: 0.00024778247} + inSlope: {x: 0.00089884584, y: -0.000026087115, z: -0.00020759454} + outSlope: {x: 0.0007855851, y: -0.000028440301, z: -0.00018680388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: 0.00018831424, y: -0.0012273509, z: 0.00023999896} + inSlope: {x: 0.0007855851, y: -0.000028440301, z: -0.00018680388} + outSlope: {x: 0.00062263967, y: -0.000028440465, z: -0.00016684386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7083333 + value: {x: 0.00021425745, y: -0.0012285359, z: 0.00023304715} + inSlope: {x: 0.00062263967, y: -0.000028440465, z: -0.00016684386} + outSlope: {x: 0.0004100124, y: -0.000028440301, z: -0.00014772327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.75 + value: {x: 0.00023134134, y: -0.0012297209, z: 0.000226892} + inSlope: {x: 0.0004100124, y: -0.000028440301, z: -0.00014772327} + outSlope: {x: 0.00014771434, y: -0.000029845778, z: -0.00012943421} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: 0.00023749612, y: -0.0012309644, z: 0.0002214989} + inSlope: {x: 0.00014771434, y: -0.000029845778, z: -0.00012943421} + outSlope: {x: -0, y: -0.00002984416, z: -0.00011198623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: 0.00023749618, y: -0.001242497, z: 0.00020232494} + inSlope: {x: -0, y: -0.000030827465, z: 0.000002055015} + outSlope: {x: 4.4703397e-10, y: -0.000030251682, z: 0.000002055015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.00023749634, y: -0.001261696, z: 0.0002427323} + inSlope: {x: -0, y: -0.0000073242463, z: 0.000018472445} + outSlope: {x: -0, y: -0.0000073242463, z: 0.000018472445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000021828468, y: -0.00299883, z: -0.000053090378} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.000021828468, y: -0.00299883, z: -0.000053090378} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000019311008, y: -0.0025961702, z: 0.00038391192} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.000019311008, y: -0.0025961702, z: 0.00038391192} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0005545899, y: 0.0010460541, z: 0.0005271861} + inSlope: {x: 0.000046821533, y: 0.000031104682, z: -0.000004350543} + outSlope: {x: 0.000046821533, y: 0.000031104682, z: -0.000004350543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.0004911879, y: 0.001067124, z: 0.00052272796} + inSlope: {x: 0.0004422068, y: 0.00013322351, z: -0.00005156278} + outSlope: {x: 0.0005049635, y: 0.00014985685, z: -0.0000651312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.00023502293, y: 0.001141881, z: 0.00047776697} + inSlope: {x: 0.00081036426, y: 0.00023700524, z: -0.00017498009} + outSlope: {x: 0.0008240104, y: 0.00024215865, z: -0.00018887033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.00002845467, y: 0.001203801, z: 0.0004218194} + inSlope: {x: 0.0008103574, y: 0.00024895358, z: -0.00025882944} + outSlope: {x: 0.00079127273, y: 0.00024650383, z: -0.00027291643} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.000004515043, y: 0.001214072, z: 0.00041044786} + inSlope: {x: 0.00079127273, y: 0.00024650383, z: -0.00027291643} + outSlope: {x: 0.00076673925, y: 0.00024278663, z: -0.00028705742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: 0.00003646248, y: 0.0012241881, z: 0.00039848714} + inSlope: {x: 0.00076673925, y: 0.00024278663, z: -0.00028705742} + outSlope: {x: 0.0007367251, y: 0.00023778486, z: -0.00030121906} + tangentMode: 0 + weightedMode: 0 + 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.00006715937, y: 0.0012340958, z: 0.00038593635} + inSlope: {x: 0.0007367251, y: 0.00023778486, z: -0.00030121906} + outSlope: {x: 0.0007012915, y: 0.0002315124, z: -0.0003154245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.00012389556, y: 0.0012530738, z: 0.000359058} + inSlope: {x: 0.0006603762, y: 0.00022395866, z: -0.00032965536} + outSlope: {x: 0.00061402866, y: 0.00021518847, z: -0.00034392657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.00019394464, y: 0.001278657, z: 0.00031427748} + inSlope: {x: 0.0005049347, y: 0.00019372664, z: -0.00037257333} + outSlope: {x: 0.00044223678, y: 0.00018110649, z: -0.00038694657} + tangentMode: 0 + weightedMode: 0 + 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.00024047295, y: 0.001299505, z: 0.00026410638} + inSlope: {x: 0.00030041352, y: 0.00015204163, z: -0.0004158024} + outSlope: {x: 0.00022134994, y: 0.00013559831, z: -0.00043028395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.00025734658, y: 0.001314189, z: 0.00020850539} + inSlope: {x: 0.000046812056, y: 0.00009893041, z: -0.0004593435} + outSlope: {x: 0.000027928972, y: 0.000078646015, z: -0.0004739289} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.625 + value: {x: 0.00027627192, y: 0.0013206326, z: 0.00012585669} + inSlope: {x: 0.00020010505, y: -0.000015488878, z: -0.0005178885} + outSlope: {x: 0.0002593569, y: -0.000015485302, z: -0.0005326157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7916666 + value: {x: 0.00033469842, y: 0.0013123319, z: 0.00003339231} + inSlope: {x: 0.0004426838, y: -0.000098691075, z: -0.0005769902} + outSlope: {x: 0.0005056401, y: -0.00012911772, z: -0.0005918587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.00035576677, y: 0.0013069519, z: 0.000008731484} + inSlope: {x: 0.0005056401, y: -0.00012911772, z: -0.0005918587} + outSlope: {x: 0.0005695354, y: -0.00016082182, z: -0.000606752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.0003794974, y: 0.001300251, z: -0.000016549826} + inSlope: {x: 0.0005695354, y: -0.00016082182, z: -0.000606752} + outSlope: {x: 0.0006343591, y: -0.00019377726, z: -0.0005518275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9166666 + value: {x: 0.000405929, y: 0.001292177, z: -0.000039542614} + inSlope: {x: 0.0006343591, y: -0.00019377726, z: -0.0005518275} + outSlope: {x: 0.0007001258, y: -0.0002045985, z: -0.00043607628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.00043510098, y: 0.001283652, z: -0.000057712496} + inSlope: {x: 0.0007001258, y: -0.0002045985, z: -0.00043607628} + outSlope: {x: 0.0007667826, y: -0.00019265074, z: -0.00033388886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.0004670502, y: 0.0012756248, z: -0.00007162451} + inSlope: {x: 0.0007667826, y: -0.00019265074, z: -0.00033388886} + outSlope: {x: 0.0008343863, y: -0.00018103087, z: -0.00024526072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.0005018164, y: 0.001268082, z: -0.00008184373} + inSlope: {x: 0.0008343863, y: -0.00018103087, z: -0.00024526072} + outSlope: {x: 0.0009029271, y: -0.00016965573, z: -0.00017018145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0833333 + value: {x: 0.0005394382, y: 0.001261013, z: -0.0000889346} + inSlope: {x: 0.0009029271, y: -0.00016965573, z: -0.00017018145} + outSlope: {x: 0.00083036744, y: -0.0001586613, z: -0.00010866323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: 0.0005740369, y: 0.0012544021, z: -0.000093462244} + inSlope: {x: 0.00083036744, y: -0.0001586613, z: -0.00010866323} + outSlope: {x: 0.0006281087, y: -0.00014793786, z: -0.000060698272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: 0.0006302656, y: 0.0012371971, z: -0.00009719753} + inSlope: {x: 0.00027755534, y: -0.00012743866, z: -0.0000026585112} + outSlope: {x: 0.00012925541, y: -0.00011767186, z: -0.0000026587347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: 0.0006308848, y: 0.001223661, z: -0.00009842806} + inSlope: {x: -0.0001133553, y: -0.00009900193, z: -0.000024215384} + outSlope: {x: -0.00020767322, y: -0.00009017033, z: -0.000057587138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: 0.00061039836, y: 0.0012165031, z: -0.00010518225} + inSlope: {x: -0.0002840005, y: -0.000081619924, z: -0.000104513565} + outSlope: {x: -0.00034234038, y: -0.00007339225, z: -0.00016499711} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: 0.00059613417, y: 0.0012134451, z: -0.00011205714} + inSlope: {x: -0.00034234038, y: -0.00007339225, z: -0.00016499711} + outSlope: {x: -0.0003826834, y: -0.00006544935, z: -0.00023903445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.000580189, y: 0.001210718, z: -0.00012201693} + inSlope: {x: -0.0003826834, y: -0.00006544935, z: -0.00023903445} + outSlope: {x: -0.00040504368, y: -0.000054179036, z: -0.00032663348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7083333 + value: {x: 0.0005145893, y: 0.001202854, z: -0.0001758606} + inSlope: {x: -0.00036416668, y: -0.000040188585, z: -0.00028743554} + outSlope: {x: -0.00031455458, y: -0.000024495674, z: -0.00025488625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.875 + value: {x: 0.00048206153, y: 0.0012000515, z: -0.00021079532} + inSlope: {x: -0.000057785397, y: 0.0000062280774, z: -0.00016574947} + outSlope: {x: -0, y: 0.0000062280774, z: -0.00013886843} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: 0.00048206147, y: 0.001201868, z: -0.00023073498} + inSlope: {x: -8.9406793e-10, y: 0.0000062280774, z: 0.000001105962} + outSlope: {x: -0, y: 0.000006228113, z: 0.0000011059684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.00048206127, y: 0.0012238666, z: -0.00016371667} + inSlope: {x: -0, y: 0.00001177302, z: 0.00003818006} + outSlope: {x: -0, y: 0.000011771366, z: 0.000023945064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.00048206127, y: 0.001224357, z: -0.00016271896} + inSlope: {x: -0, y: 0.000011771366, z: 0.000023945064} + outSlope: {x: -0, y: 0.000011771366, z: 0.000023945064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0029990708, y: -0.00000016063451, z: 0.00005463671} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0029990708, y: -0.00000016063451, z: 0.00005463671} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0003556077, y: 0.00003682375, z: -0.0026000002} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.0003556077, y: 0.00003682375, z: -0.0026000002} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000011850639, y: 1.6015975e-10, z: -0.00006796103} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.000011850639, y: 1.6015975e-10, z: -0.00006796103} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0028583303, y: 2.9802322e-10, z: -0.00014242693} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0028583303, y: 2.9802322e-10, z: -0.00014242693} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014556195, y: -0.0014599605, z: -0.00012458116} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0014556195, y: -0.0014599605, z: -0.00012458116} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00277497, y: 0.00000016862526, z: -0.0000054334846} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.00277497, y: 0.00000016862526, z: -0.0000054334846} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0020982698, y: -0.00000017039477, z: 0.000005433019} + inSlope: {x: -0, y: 2.5756888e-10, z: 3.352761e-10} + outSlope: {x: -0, y: 2.5756888e-10, z: 3.352761e-10} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: -0.0020982698, y: -0.00000016986928, z: 0.000005433692} + inSlope: {x: -0, y: 2.5713184e-10, z: 3.2130568e-10} + outSlope: {x: 0.0000000035762717, y: 2.5756838e-10, z: 3.3527547e-10} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0020982698, y: -0.00000016933306, z: 0.0000054343786} + inSlope: {x: -0, y: 2.5756988e-10, z: 3.352774e-10} + outSlope: {x: -0, y: 2.5756988e-10, z: 3.352774e-10} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014555797, y: 0.0014553498, z: -0.00012458157} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0014555797, y: 0.0014553498, z: -0.00012458157} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00279524, y: 8.288771e-10, z: -1.2048985e-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} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.00279524, y: 8.288771e-10, z: -1.2048985e-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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0020026602, y: 2.9802322e-10, z: -3.72529e-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} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.0020026602, y: 2.9802322e-10, z: -3.72529e-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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00273719, y: -3.655441e-10, z: -0.00019367877} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.00273719, y: -3.655441e-10, z: -0.00019367877} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.0000475085, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0, y: 0.0000475085, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0136136385, y: -0.0010463829, z: 0.0040700077} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0136136385, y: -0.0010463829, z: 0.0040700077} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0136136385, y: -0.0010463829, z: -0.0040804865} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: -0.0136136385, y: -0.0010463829, z: -0.0040804865} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999998, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.9999998, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.99999994, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 0.99999994, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000001, y: 1, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 1.0000001, y: 1, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.9999999, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000001, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 1.0000001, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 1.0000001, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.9999999, y: 1.0000001, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 0.9999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 1, y: 0.99999994, z: 0.9999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999998, y: 0.9999998, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.9999998, y: 0.9999998, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + m_FloatCurves: [] + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 2100000, guid: a18a0015544712349972ba1f9e49f3a7, type: 2} + - time: 2.5416667 + value: {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + - time: 4.125 + value: {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + attribute: m_Materials.Array.data[1] + path: airboy_model + classID: 137 + script: {fileID: 0} + m_SampleRate: 24 + 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: 2504784628 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 279179908 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4291209787 + attribute: 1 + script: {fileID: 0} + typeID: 137 + customType: 21 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 804800636 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4196139211 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 279179908 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1848425199 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2485356428 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 804800636 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4196139211 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2504784628 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1848425199 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2485356428 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: + - {fileID: 2100000, guid: a18a0015544712349972ba1f9e49f3a7, type: 2} + - {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + - {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 4.1666665 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7071068 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.7071068 + inSlope: 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7071067 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.7071067 + inSlope: 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7071081 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.7071081 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7071055 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.7071055 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.31590325 + inSlope: 0.114056826 + outSlope: 0.114056826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.2768783 + inSlope: 0.57785726 + outSlope: 0.57785726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.112037145 + inSlope: 0.813995 + outSlope: 0.813995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.03355196 + inSlope: 0.08057261 + outSlope: 0.08057261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.03357827 + inSlope: -0.4684781 + outSlope: -0.4684781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.15013169 + inSlope: -0.25705558 + outSlope: -0.25705558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.17464542 + inSlope: -0.2238074 + outSlope: -0.2238074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.1854263 + inSlope: -0.43991005 + outSlope: -0.43991005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.23821981 + inSlope: -0.6672269 + outSlope: -0.6672269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.42473492 + inSlope: -0.4477244 + outSlope: -0.4477244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.44939166 + inSlope: 0.19068986 + outSlope: 0.19068986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.35326606 + inSlope: 0.18403244 + outSlope: 0.18403244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.36273906 + inSlope: -0.3559196 + outSlope: -0.3559196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.4200064 + inSlope: -0.08421441 + outSlope: -0.08421441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.4129358 + inSlope: 0.02276406 + outSlope: 0.02276406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.4128638 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.41258615 + inSlope: 0.00024676416 + outSlope: 0.00024676416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1753519 + inSlope: 0.07909083 + outSlope: 0.07909083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.14779104 + inSlope: 0.41296667 + outSlope: 0.41296667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.030446185 + inSlope: 0.5888485 + outSlope: 0.5888485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.030257534 + inSlope: -0.36472565 + outSlope: -0.36472565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.1635339 + inSlope: -0.742672 + outSlope: -0.742672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.28929853 + inSlope: -0.03731866 + outSlope: -0.03731866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.26988885 + inSlope: 0.20154499 + outSlope: 0.20154499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.26249674 + inSlope: -0.03368143 + outSlope: -0.03368143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.2832488 + inSlope: -0.2634765 + outSlope: -0.2634765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.3486544 + inSlope: -0.07709105 + outSlope: -0.07709105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.30562747 + inSlope: 0.4356287 + outSlope: 0.4356287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.13641323 + inSlope: 0.37607586 + outSlope: 0.37607586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.12802929 + inSlope: -0.30489665 + outSlope: -0.30489665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.21288529 + inSlope: -0.4055714 + outSlope: -0.4055714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.24140175 + inSlope: -0.024531823 + outSlope: -0.024531823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.2413651 + inSlope: 0.00012570631 + outSlope: 0.00012570631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.24122377 + inSlope: 0.00012588549 + outSlope: 0.00012588549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.56630915 + inSlope: 0.085817814 + outSlope: 0.085817814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.59493977 + inSlope: 0.42617154 + outSlope: 0.42617154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7090526 + inSlope: 0.51339996 + outSlope: 0.51339996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.7832538 + inSlope: 0.08402398 + outSlope: 0.08402398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.77289075 + inSlope: -0.14062351 + outSlope: -0.14062351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.7412615 + inSlope: -0.04317495 + outSlope: -0.04317495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.7360788 + inSlope: -0.068513624 + outSlope: -0.068513624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.73247606 + inSlope: -0.16062155 + outSlope: -0.16062155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.71259993 + inSlope: -0.26388994 + outSlope: -0.26388994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.6132983 + inSlope: -0.33199054 + outSlope: -0.33199054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.5500201 + inSlope: -0.21801803 + outSlope: -0.21801803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.41418204 + inSlope: -1.035946 + outSlope: -1.035946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.28285858 + inSlope: -0.5662142 + outSlope: -0.5662142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.32990798 + inSlope: 0.6217159 + outSlope: 0.6217159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.39838806 + inSlope: 0.08638168 + outSlope: 0.08638168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.39841026 + inSlope: 0.00007617481 + outSlope: 0.00007617481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.39849585 + inSlope: 0.000076532655 + outSlope: 0.000076532655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7407772 + inSlope: 0.0010056496 + outSlope: 0.0010056496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.7399614 + inSlope: -0.048866984 + outSlope: -0.048866984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.6955322 + inSlope: -0.36357602 + outSlope: -0.36357602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.62005824 + inSlope: -0.093940295 + outSlope: -0.093940295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.61218387 + inSlope: -0.04644797 + outSlope: -0.04644797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.58676934 + inSlope: -0.028412735 + outSlope: -0.028412735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.5956905 + inSlope: 0.1100871 + outSlope: 0.1100871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.60015947 + inSlope: 0.0387154 + outSlope: 0.0387154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.5960058 + inSlope: -0.0780122 + outSlope: -0.0780122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.56736726 + inSlope: -0.021554252 + outSlope: -0.021554252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.6341269 + inSlope: 0.530972 + outSlope: 0.530972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.8276761 + inSlope: 0.6563015 + outSlope: 0.6563015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.8786466 + inSlope: -0.0045428723 + outSlope: -0.0045428723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.8181903 + inSlope: -0.39704627 + outSlope: -0.39704627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.7826214 + inSlope: -0.039112996 + outSlope: -0.039112996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.78265935 + inSlope: 0.00013017666 + outSlope: 0.00013017666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.78280574 + inSlope: 0.00013017704 + outSlope: 0.00013017704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.85060865 + inSlope: -0.0032444 + outSlope: -0.0032444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.8029568 + inSlope: -0.48041862 + outSlope: -0.48041862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6664017 + inSlope: -0.6483771 + outSlope: -0.6483771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.6130701 + inSlope: 0.089567944 + outSlope: 0.089567944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6244915 + inSlope: -0.22318608 + outSlope: -0.22318608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.52961355 + inSlope: -1.1281182 + outSlope: -1.1281182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.3579608 + inSlope: -1.2846392 + outSlope: -1.2846392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.30955648 + inSlope: -0.553356 + outSlope: -0.553356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.31184784 + inSlope: 0.17825471 + outSlope: 0.17825471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.47236198 + inSlope: 1.2441328 + outSlope: 1.2441328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.6855909 + inSlope: 1.1410263 + outSlope: 1.1410263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.85700047 + inSlope: 0.5581103 + outSlope: 0.5581103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.93342066 + inSlope: 0.18703023 + outSlope: 0.18703023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.95104116 + inSlope: -0.11735608 + outSlope: -0.11735608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.8980983 + inSlope: -0.4331657 + outSlope: -0.4331657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.86271346 + inSlope: -0.05822242 + outSlope: -0.05822242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 0.86266506 + inSlope: -0.00023817971 + outSlope: -0.00023817971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.86238664 + inSlope: -0.00022029961 + outSlope: -0.00022029961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08955744 + inSlope: 0.013993084 + outSlope: 0.013993084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.07207318 + inSlope: 0.07172324 + outSlope: 0.07172324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0462396 + inSlope: 0.14713097 + outSlope: 0.14713097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.035543274 + inSlope: -0.0113851335 + outSlope: -0.0113851335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.03793551 + inSlope: 0.02492528 + outSlope: 0.02492528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.025156073 + inSlope: 0.10259153 + outSlope: 0.10259153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.008361921 + inSlope: 0.08802624 + outSlope: 0.08802624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.005085415 + inSlope: 0.036038045 + outSlope: 0.036038045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.0053587533 + inSlope: -0.008146561 + outSlope: -0.008146561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.018564701 + inSlope: -0.15601861 + outSlope: -0.15601861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.054020856 + inSlope: -0.2249561 + outSlope: -0.2249561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.0885531 + inSlope: -0.21342117 + outSlope: -0.21342117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.12276333 + inSlope: -0.12891433 + outSlope: -0.12891433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.12950432 + inSlope: 0.11040756 + outSlope: 0.11040756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.11016286 + inSlope: 0.14912988 + outSlope: 0.14912988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.09338541 + inSlope: 0.03353363 + outSlope: 0.03353363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: -0.09340801 + inSlope: -0.00016334621 + outSlope: -0.00016334621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.093511455 + inSlope: 0.000016450946 + outSlope: 0.000016450946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.063723385 + inSlope: 0.007861197 + outSlope: 0.007861197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.061995428 + inSlope: -0.038140744 + outSlope: -0.038140744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.060948417 + inSlope: 0.06916714 + outSlope: 0.06916714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.054487623 + inSlope: 0.0026284766 + outSlope: 0.0026284766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.054471448 + inSlope: 0.015637735 + outSlope: 0.015637735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.04529573 + inSlope: 0.05999796 + outSlope: 0.05999796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.026615014 + inSlope: 0.13002431 + outSlope: 0.13002431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.020919774 + inSlope: 0.05775291 + outSlope: 0.05775291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.021802276 + inSlope: -0.020900322 + outSlope: -0.020900322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.04221794 + inSlope: -0.17762905 + outSlope: -0.17762905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.065790996 + inSlope: -0.065029174 + outSlope: -0.065029174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.062143944 + inSlope: 0.006912104 + outSlope: 0.006912104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.053561673 + inSlope: 0.040010333 + outSlope: 0.040010333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.046998367 + inSlope: -0.03083855 + outSlope: -0.03083855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.061382763 + inSlope: -0.07532335 + outSlope: -0.07532335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.06343852 + inSlope: 0.0027527462 + outSlope: 0.0027527462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: -0.063397594 + inSlope: 0.0002923602 + outSlope: 0.0002923602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.06320846 + inSlope: -0.000021457754 + outSlope: -0.000021457754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.51418257 + inSlope: 0.008764744 + outSlope: 0.008764744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.5884067 + inSlope: 0.6563315 + outSlope: 0.6563315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.7416576 + inSlope: 0.6015072 + outSlope: 0.6015072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.78734547 + inSlope: -0.07035831 + outSlope: -0.07035831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.7782057 + inSlope: 0.18021998 + outSlope: 0.18021998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.8466552 + inSlope: 0.7024803 + outSlope: 0.7024803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.93331975 + inSlope: 0.5062984 + outSlope: 0.5062984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9506373 + inSlope: 0.19856447 + outSlope: 0.19856447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.9498668 + inSlope: -0.060121447 + outSlope: -0.060121447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.8801972 + inSlope: -0.6851477 + outSlope: -0.6851477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.72299266 + inSlope: -1.101263 + outSlope: -1.101263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.5038321 + inSlope: -0.98072565 + outSlope: -0.98072565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.33284563 + inSlope: -0.56472605 + outSlope: -0.56472605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.2766596 + inSlope: 0.43699002 + outSlope: 0.43699002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.42132622 + inSlope: 0.95771027 + outSlope: 0.95771027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.49293023 + inSlope: 0.11000684 + outSlope: 0.11000684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 0.49301603 + inSlope: 0.00042343058 + outSlope: 0.00042343058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.49350744 + inSlope: 0.00038552433 + outSlope: 0.00038552433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.30507502 + inSlope: -0.048849106 + outSlope: -0.048849106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.34144744 + inSlope: -0.1521374 + outSlope: -0.1521374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.31942728 + inSlope: 0.37870547 + outSlope: 0.37870547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.24113359 + inSlope: 0.21990652 + outSlope: 0.21990652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.17263284 + inSlope: 0.38871175 + outSlope: 0.38871175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.032052513 + inSlope: 0.62241703 + outSlope: 0.62241703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.027389472 + inSlope: 0.096536346 + outSlope: 0.096536346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.010115558 + inSlope: -0.3319075 + outSlope: -0.3319075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.17427737 + inSlope: -0.61326015 + outSlope: -0.61326015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.29897076 + inSlope: -0.30377728 + outSlope: -0.30377728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.2800079 + inSlope: 0.6529521 + outSlope: 0.6529521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.114209294 + inSlope: 0.69810706 + outSlope: 0.69810706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.101104826 + inSlope: -0.1839566 + outSlope: -0.1839566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.12510534 + inSlope: -0.048457053 + outSlope: -0.048457053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.12568066 + inSlope: 0.00025677631 + outSlope: 0.00025677631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.12533785 + inSlope: 0.00025713543 + outSlope: 0.00025713543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.52957237 + inSlope: 0.0075502396 + outSlope: 0.0075502396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.48624566 + inSlope: -0.5962578 + outSlope: -0.5962578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.29463515 + inSlope: -0.98990417 + outSlope: -0.98990417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.18056874 + inSlope: -0.068041526 + outSlope: -0.068041526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.21200983 + inSlope: -0.09209854 + outSlope: -0.09209854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.10059876 + inSlope: -0.69928545 + outSlope: -0.69928545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.021399133 + inSlope: -0.30585608 + outSlope: -0.30585608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.018514844 + inSlope: 0.049925495 + outSlope: 0.049925495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.1821852 + inSlope: 0.99903417 + outSlope: 0.99903417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.4791445 + inSlope: 1.205715 + outSlope: 1.205715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.70187455 + inSlope: 0.9640675 + outSlope: 0.9640675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.7910959 + inSlope: -0.21862529 + outSlope: -0.21862529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.6914493 + inSlope: -1.121557 + outSlope: -1.121557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.5337179 + inSlope: -0.42374387 + outSlope: -0.42374387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.5243199 + inSlope: -0.00025320007 + outSlope: -0.00025320007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.52398247 + inSlope: -0.00025177098 + outSlope: -0.00025177098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.66998494 + inSlope: -0.048006535 + outSlope: -0.048006535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.6467568 + inSlope: -0.011311062 + outSlope: -0.011311062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.66450316 + inSlope: 0.07278372 + outSlope: 0.07278372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6474232 + inSlope: -0.2051939 + outSlope: -0.2051939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.59700096 + inSlope: -0.041182987 + outSlope: -0.041182987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.6206924 + inSlope: 0.17407267 + outSlope: 0.17407267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.64233094 + inSlope: 0.16796868 + outSlope: 0.16796868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.6568661 + inSlope: 0.19080727 + outSlope: 0.19080727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.71819586 + inSlope: 0.044560447 + outSlope: 0.044560447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.6777549 + inSlope: -0.33391982 + outSlope: -0.33391982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.59891313 + inSlope: -0.40458402 + outSlope: -0.40458402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.5723839 + inSlope: 0.35321385 + outSlope: 0.35321385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.6587182 + inSlope: 0.7633096 + outSlope: 0.7633096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.7407069 + inSlope: 0.17444411 + outSlope: 0.17444411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.7445795 + inSlope: 0.00013446782 + outSlope: 0.00013446782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.74475825 + inSlope: 0.00013446859 + outSlope: 0.00013446859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4214292 + inSlope: 0.031188011 + outSlope: 0.031188011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.47820958 + inSlope: 0.5065333 + outSlope: 0.5065333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.6079407 + inSlope: 0.6022619 + outSlope: 0.6022619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.7000662 + inSlope: 0.28418958 + outSlope: 0.28418958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.7542146 + inSlope: 0.14655378 + outSlope: 0.14655378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.7769128 + inSlope: -0.02230098 + outSlope: -0.02230098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.7656389 + inSlope: -0.13068807 + outSlope: -0.13068807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.75371206 + inSlope: -0.1644401 + outSlope: -0.1644401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.6485604 + inSlope: -0.49822253 + outSlope: -0.49822253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.47083473 + inSlope: -0.9350519 + outSlope: -0.9350519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.26508653 + inSlope: -0.9440788 + outSlope: -0.9440788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.18303065 + inSlope: 0.27319545 + outSlope: 0.27319545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.27886552 + inSlope: 0.91187817 + outSlope: 0.91187817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.3883906 + inSlope: 0.24805236 + outSlope: 0.24805236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.39356646 + inSlope: 0.0001645085 + outSlope: 0.0001645085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.3937869 + inSlope: 0.00016737048 + outSlope: 0.00016737048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09286303 + inSlope: -0.075226486 + outSlope: -0.075226486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.12309447 + inSlope: -0.4699096 + outSlope: -0.4699096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.22596635 + inSlope: -0.6190758 + outSlope: -0.6190758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.28470808 + inSlope: -0.32280737 + outSlope: -0.32280737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.31458673 + inSlope: -0.16850773 + outSlope: -0.16850773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.32412454 + inSlope: -0.0956365 + outSlope: -0.0956365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.33384764 + inSlope: 0.07025917 + outSlope: 0.07025917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.31383714 + inSlope: 0.40241626 + outSlope: 0.40241626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.27218 + inSlope: 0.49372792 + outSlope: 0.49372792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.22054249 + inSlope: 0.36427957 + outSlope: 0.36427957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.19080347 + inSlope: 0.34611997 + outSlope: 0.34611997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.15669726 + inSlope: 0.12224584 + outSlope: 0.12224584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.15471789 + inSlope: -0.030058004 + outSlope: -0.030058004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.15920208 + inSlope: -0.17006455 + outSlope: -0.17006455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.16888992 + inSlope: 0.07471997 + outSlope: 0.07471997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.15297538 + inSlope: 0.4549222 + outSlope: 0.4549222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.08987467 + inSlope: -0.031559795 + outSlope: -0.031559795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.1771604 + inSlope: -0.5324242 + outSlope: -0.5324242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.21852058 + inSlope: -0.22879872 + outSlope: -0.22879872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.25727466 + inSlope: -1.0657808 + outSlope: -1.0657808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.317953 + inSlope: -1.4504647 + outSlope: -1.4504647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.37814677 + inSlope: -1.2959166 + outSlope: -1.2959166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0.42594624 + inSlope: -1.0961757 + outSlope: -1.0961757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.46949467 + inSlope: -1.1166545 + outSlope: -1.1166545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.6023809 + inSlope: -0.7176873 + outSlope: -0.7176873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.6218282 + inSlope: 0.52768034 + outSlope: 0.52768034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.5102162 + inSlope: 0.99792325 + outSlope: 0.99792325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.41027436 + inSlope: 0.06964825 + outSlope: 0.06964825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.40976283 + inSlope: 0.0017555968 + outSlope: 0.0017555968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.40778738 + inSlope: 0.0017581054 + outSlope: 0.0017581054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.56734324 + inSlope: -0.0068764687 + outSlope: -0.0068764687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.56594557 + inSlope: 0.15985678 + outSlope: 0.15985678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.69814193 + inSlope: 1.2560483 + outSlope: 1.2560483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.850166 + inSlope: 0.97466385 + outSlope: 0.97466385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.92441815 + inSlope: 0.2618736 + outSlope: 0.2618736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.93860024 + inSlope: 0.12493735 + outSlope: 0.12493735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.9390806 + inSlope: -0.13185596 + outSlope: -0.13185596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.92229456 + inSlope: -0.17497802 + outSlope: -0.17497802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.92434937 + inSlope: 0.2759434 + outSlope: 0.2759434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.96918184 + inSlope: 0.16972852 + outSlope: 0.16972852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.9622849 + inSlope: -0.34301054 + outSlope: -0.34301054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.9037203 + inSlope: -0.29208112 + outSlope: -0.29208112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.8960612 + inSlope: -0.038869627 + outSlope: -0.038869627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.90048116 + inSlope: 0.4853108 + outSlope: 0.4853108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.9365037 + inSlope: 0.24647576 + outSlope: 0.24647576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.92102075 + inSlope: -0.42926633 + outSlope: -0.42926633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.8251485 + inSlope: -0.54591584 + outSlope: -0.54591584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.77949965 + inSlope: 0.15312599 + outSlope: 0.15312599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.8329929 + inSlope: 0.59133947 + outSlope: 0.59133947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.8672853 + inSlope: -0.39552537 + outSlope: -0.39552537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.8265539 + inSlope: -0.5398525 + outSlope: -0.5398525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.82229763 + inSlope: -0.25868174 + outSlope: -0.25868174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.804997 + inSlope: -0.62524915 + outSlope: -0.62524915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.77019364 + inSlope: -0.9193953 + outSlope: -0.9193953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.64971966 + inSlope: -0.7427627 + outSlope: -0.7427627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.60345566 + inSlope: 0.27825755 + outSlope: 0.27825755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.6755971 + inSlope: 0.6454227 + outSlope: 0.6454227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.74134064 + inSlope: 0.05921591 + outSlope: 0.05921591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.7413626 + inSlope: 0.000073671414 + outSlope: 0.000073671414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.74144053 + inSlope: 0.000062942745 + outSlope: 0.000062942745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07026752 + inSlope: 0.012553453 + outSlope: 0.012553453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.07709313 + inSlope: 0.100617886 + outSlope: 0.100617886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.09809146 + inSlope: 0.13192444 + outSlope: 0.13192444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.10933957 + inSlope: -0.027540494 + outSlope: -0.027540494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.08472224 + inSlope: -0.17819999 + outSlope: -0.17819999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.06672845 + inSlope: -0.53000927 + outSlope: -0.53000927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.030287687 + inSlope: -0.6700892 + outSlope: -0.6700892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.06616327 + inSlope: -0.035186447 + outSlope: -0.035186447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.029072868 + inSlope: 0.77982026 + outSlope: 0.77982026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.083157174 + inSlope: 0.81136554 + outSlope: 0.81136554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.13979904 + inSlope: 0.5562984 + outSlope: 0.5562984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.18595847 + inSlope: 0.1588188 + outSlope: 0.1588188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.19009702 + inSlope: -0.15972672 + outSlope: -0.15972672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.17264794 + inSlope: -0.9035794 + outSlope: -0.9035794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.11479881 + inSlope: -1.1534722 + outSlope: -1.1534722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.07652524 + inSlope: -0.8860645 + outSlope: -0.8860645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.002784221 + inSlope: 0.19454703 + outSlope: 0.19454703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.059601527 + inSlope: 0.01566445 + outSlope: 0.01566445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.011991585 + inSlope: -0.8490374 + outSlope: -0.8490374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.0814371 + inSlope: -0.87498295 + outSlope: -0.87498295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.104758956 + inSlope: -0.76003504 + outSlope: -0.76003504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.14477341 + inSlope: -0.712252 + outSlope: -0.712252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0.1641134 + inSlope: -0.19429988 + outSlope: -0.19429988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.16096511 + inSlope: 0.11820297 + outSlope: 0.11820297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.1316218 + inSlope: 0.28655 + outSlope: 0.28655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.08190499 + inSlope: 0.16554268 + outSlope: 0.16554268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.076426245 + inSlope: 0.01586613 + outSlope: 0.01586613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.07982321 + inSlope: -0.025707936 + outSlope: -0.025707936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.07923257 + inSlope: 0.0020255167 + outSlope: 0.0020255167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.076954715 + inSlope: 0.0020240026 + outSlope: 0.0020240026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8152059 + inSlope: -0.0050168037 + outSlope: -0.0050168037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.81154794 + inSlope: -0.19648789 + outSlope: -0.19648789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.6722464 + inSlope: -1.5508981 + outSlope: -1.5508981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.42918986 + inSlope: -2.1275039 + outSlope: -2.1275039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.19826357 + inSlope: -1.3644769 + outSlope: -1.3644769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.09757124 + inSlope: -1.2052445 + outSlope: -1.2052445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.07586938 + inSlope: -1.6340797 + outSlope: -1.6340797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.21564187 + inSlope: -1.3897848 + outSlope: -1.3897848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.2658027 + inSlope: 0.4149229 + outSlope: 0.4149229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.07164178 + inSlope: 2.2672172 + outSlope: 2.2672172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.13438018 + inSlope: 2.4371295 + outSlope: 2.4371295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.3523565 + inSlope: 0.75491214 + outSlope: 0.75491214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.37013495 + inSlope: 0.16413286 + outSlope: 0.16413286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.36603427 + inSlope: -1.0209209 + outSlope: -1.0209209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.2850583 + inSlope: -0.19304425 + outSlope: -0.19304425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.34994745 + inSlope: 1.5248344 + outSlope: 1.5248344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.5577139 + inSlope: 0.8089393 + outSlope: 0.8089393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.5978648 + inSlope: -0.36178315 + outSlope: -0.36178315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.5081612 + inSlope: -1.0802195 + outSlope: -1.0802195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.41832277 + inSlope: -0.039330512 + outSlope: -0.039330512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.4524822 + inSlope: -0.22178778 + outSlope: -0.22178778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.39984033 + inSlope: -0.8821726 + outSlope: -0.8821726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.37896767 + inSlope: 0.008915693 + outSlope: 0.008915693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.40058318 + inSlope: 0.4909982 + outSlope: 0.4909982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.4446094 + inSlope: 0.21726564 + outSlope: 0.21726564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.49240482 + inSlope: 0.34313756 + outSlope: 0.34313756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.5266945 + inSlope: 0.14625306 + outSlope: 0.14625306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.5250879 + inSlope: -0.032295875 + outSlope: -0.032295875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.5255456 + inSlope: 0.0015692725 + outSlope: 0.0015692725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.5273076 + inSlope: 0.001563555 + outSlope: 0.001563555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.89964795 + inSlope: 0.20501947 + outSlope: 0.20501947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.9081904 + inSlope: 0.33764148 + outSlope: 0.33764148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.94948554 + inSlope: 0.4676864 + outSlope: 0.4676864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.9844648 + inSlope: -0.0387118 + outSlope: -0.0387118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.92728305 + inSlope: -0.66106164 + outSlope: -0.66106164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.87564003 + inSlope: -0.3427647 + outSlope: -0.3427647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.86601067 + inSlope: -0.12066502 + outSlope: -0.12066502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.81134266 + inSlope: -0.7553698 + outSlope: -0.7553698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.764683 + inSlope: 0.28925622 + outSlope: 0.28925622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.86552364 + inSlope: 1.5056394 + outSlope: 1.5056394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9269176 + inSlope: 1.2232709 + outSlope: 1.2232709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.986706 + inSlope: 0.31615978 + outSlope: 0.31615978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.99452347 + inSlope: -0.055923775 + outSlope: -0.055923775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.973166 + inSlope: -0.5920774 + outSlope: -0.5920774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.9398094 + inSlope: -1.1747575 + outSlope: -1.1747575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.87526953 + inSlope: -3.306207 + outSlope: -3.306207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.6642924 + inSlope: -2.5317273 + outSlope: -2.5317273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.66429245 + inSlope: 0.0000014305108 + outSlope: 0.0000014305108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.6642932 + inSlope: 0.000003576276 + outSlope: 0.000003576276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.6642934 + inSlope: 0.8697525 + outSlope: 0.8697525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.73677254 + inSlope: 3.0501432 + outSlope: 3.0501432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.91847175 + inSlope: 2.615872 + outSlope: 2.615872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.95476174 + inSlope: 0.6722926 + outSlope: 0.6722926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.97449625 + inSlope: 0.44201195 + outSlope: 0.44201195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.99916905 + inSlope: 0.09407598 + outSlope: 0.09407598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.9919525 + inSlope: -0.1087766 + outSlope: -0.1087766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.9821692 + inSlope: 0.07691559 + outSlope: 0.07691559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.9933732 + inSlope: 0.012017711 + outSlope: 0.012017711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.99346644 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99346656 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0016580974 + inSlope: 0.0021516401 + outSlope: 0.0021516401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.0015684457 + inSlope: 0.0033447426 + outSlope: 0.0033447426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.0011442617 + inSlope: 0.005519242 + outSlope: 0.005519242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.00060479366 + inSlope: -0.00046579106 + outSlope: -0.00046579106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.0012143067 + inSlope: -0.004877355 + outSlope: -0.004877355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.0015179339 + inSlope: -0.0014684738 + outSlope: -0.0014684738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0014960594 + inSlope: -0.000005441252 + outSlope: -0.000005441252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.0016606847 + inSlope: -0.0022565706 + outSlope: -0.0022565706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.0017658077 + inSlope: 0.0017609781 + outSlope: 0.0017609781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.0013219807 + inSlope: 0.007645854 + outSlope: 0.007645854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0009715604 + inSlope: 0.008156299 + outSlope: 0.008156299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.0004043386 + inSlope: 0.004458148 + outSlope: 0.004458148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.0002494508 + inSlope: -0.0008704723 + outSlope: -0.0008704723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.00052619394 + inSlope: -0.0050508734 + outSlope: -0.0050508734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.0007642225 + inSlope: -0.0063738716 + outSlope: -0.0063738716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0010573501 + inSlope: -0.009986998 + outSlope: -0.009986998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.0015964715 + inSlope: -0.00601799 + outSlope: -0.00601799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.0015588487 + inSlope: 0.00090294844 + outSlope: 0.00090294844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.0011447978 + inSlope: 0.00090295123 + outSlope: 0.00090295123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -0.0011071747 + inSlope: 0.002127807 + outSlope: 0.002127807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.0009674806 + inSlope: 0.006735026 + outSlope: 0.006735026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.000545923 + inSlope: 0.0068636355 + outSlope: 0.0068636355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.00039551107 + inSlope: 0.0031051598 + outSlope: 0.0031051598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0.0002871592 + inSlope: 0.002837834 + outSlope: 0.002837834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.00004801307 + inSlope: 0.002363283 + outSlope: 0.002363283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.00013017365 + inSlope: 0.00074946956 + outSlope: 0.00074946956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.00013648033 + inSlope: -0.0005201658 + outSlope: -0.0005201658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.000060290695 + inSlope: -0.00014986786 + outSlope: -0.00014986786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.00004643222 + inSlope: -0.000045957364 + outSlope: -0.000045957364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0000053761696 + inSlope: -0.000045957517 + outSlope: -0.000045957517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4365995 + inSlope: -0.43341422 + outSlope: -0.43341422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.41854057 + inSlope: -0.7620224 + outSlope: -0.7620224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.31378967 + inSlope: -1.4091861 + outSlope: -1.4091861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.17554812 + inSlope: 0.20145437 + outSlope: 0.20145437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.37434697 + inSlope: 1.6422343 + outSlope: 1.6422343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.48295414 + inSlope: 0.64722425 + outSlope: 0.64722425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.5000166 + inSlope: 0.2059274 + outSlope: 0.2059274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.5845641 + inSlope: 1.0433044 + outSlope: 1.0433044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.6444008 + inSlope: -0.37214357 + outSlope: -0.37214357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.5008611 + inSlope: -2.6736355 + outSlope: -2.6736355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.37525594 + inSlope: -2.974329 + outSlope: -2.974329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.16249648 + inSlope: -1.7031558 + outSlope: -1.7031558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.104486585 + inSlope: 0.4299015 + outSlope: 0.4299015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.23009287 + inSlope: 2.3375514 + outSlope: 2.3375514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.3416919 + inSlope: 3.0424523 + outSlope: 3.0424523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.48363063 + inSlope: 4.869339 + outSlope: 4.869339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.7474698 + inSlope: 3.1660736 + outSlope: 3.1660736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.74746984 + inSlope: 0.0000021457672 + outSlope: 0.0000021457672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.7474706 + inSlope: 0.00000071525847 + outSlope: 0.00000071525847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.74747056 + inSlope: -0.85597813 + outSlope: -0.85597813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.6761392 + inSlope: -4.2238407 + outSlope: -4.2238407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.39548418 + inSlope: -4.5452456 + outSlope: -4.5452456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.2973688 + inSlope: -2.0530024 + outSlope: -2.0530024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.22440031 + inSlope: -2.016026 + outSlope: -2.016026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.04074062 + inSlope: -1.9552599 + outSlope: -1.9552599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.12660687 + inSlope: -0.87409717 + outSlope: -0.87409717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.18799764 + inSlope: 0.4093374 + outSlope: 0.4093374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.114932135 + inSlope: 0.100844935 + outSlope: 0.100844935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -0.11412382 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.11412382 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0034166866 + inSlope: -0.0003184788 + outSlope: -0.0003184788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0034034166 + inSlope: 0.00016153604 + outSlope: 0.00016153604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0034624627 + inSlope: 0.0005597379 + outSlope: 0.0005597379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.0033918156 + inSlope: -0.0013212113 + outSlope: -0.0013212113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.0030079787 + inSlope: -0.0032620279 + outSlope: -0.0032620279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.002752186 + inSlope: -0.0021458361 + outSlope: -0.0021458361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00259115 + inSlope: -0.0014032417 + outSlope: -0.0014032417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.0023049547 + inSlope: -0.0031230482 + outSlope: -0.0031230482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.0020954167 + inSlope: -0.00016095332 + outSlope: -0.00016095332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.0022845052 + inSlope: 0.0029289308 + outSlope: 0.0029289308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0023999005 + inSlope: 0.0020601545 + outSlope: 0.0020601545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.0024553768 + inSlope: -0.00039782785 + outSlope: -0.00039782785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.0023745827 + inSlope: -0.0013328479 + outSlope: -0.0013328479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.0022256179 + inSlope: -0.002519249 + outSlope: -0.002519249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.0021020242 + inSlope: -0.0037440823 + outSlope: -0.0037440823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.001913611 + inSlope: -0.008198529 + outSlope: -0.008198529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.0014188141 + inSlope: -0.006338802 + outSlope: -0.006338802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.0013853778 + inSlope: -0.0008024691 + outSlope: -0.0008024691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.0010174024 + inSlope: -0.0008024649 + outSlope: -0.0008024649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.0009839664 + inSlope: 0.00044209388 + outSlope: 0.00044209388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.0010542434 + inSlope: 0.0034071435 + outSlope: 0.0034071435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.0012678948 + inSlope: 0.0025883259 + outSlope: 0.0025883259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.001269937 + inSlope: -0.00024908176 + outSlope: -0.00024908176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.0012471379 + inSlope: -0.0006098834 + outSlope: -0.0006098834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.0011781343 + inSlope: -0.0010932132 + outSlope: -0.0010932132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.001019711 + inSlope: -0.0013097537 + outSlope: -0.0013097537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.00071290677 + inSlope: -0.0011312342 + outSlope: -0.0011312342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.0005209042 + inSlope: -0.00079317356 + outSlope: -0.00079317356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.0004040103 + inSlope: -0.00040003998 + outSlope: -0.00040003998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00004696013 + inSlope: -0.000400041 + outSlope: -0.000400041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.48744908 + inSlope: 0.15821314 + outSlope: 0.15821314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.46306655 + inSlope: 0.52126694 + outSlope: 0.52126694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.37641352 + inSlope: 0.6880582 + outSlope: 0.6880582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.3410101 + inSlope: -0.44129193 + outSlope: -0.44129193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.43198514 + inSlope: -0.662825 + outSlope: -0.662825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.454902 + inSlope: -0.5578567 + outSlope: -0.5578567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.50155044 + inSlope: -0.513793 + outSlope: -0.513793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.5659936 + inSlope: -0.60167897 + outSlope: -0.60167897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.61973137 + inSlope: -0.5842947 + outSlope: -0.5842947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.6406094 + inSlope: -0.30696794 + outSlope: -0.30696794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.61320865 + inSlope: 0.6437926 + outSlope: 0.6437926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.5487179 + inSlope: 0.6660747 + outSlope: 0.6660747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.51678747 + inSlope: 0.08811428 + outSlope: 0.08811428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.5184858 + inSlope: -0.10840069 + outSlope: -0.10840069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.52582085 + inSlope: -0.21552786 + outSlope: -0.21552786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.53644645 + inSlope: -0.32029432 + outSlope: -0.32029432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.55251205 + inSlope: -0.49842072 + outSlope: -0.49842072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.5779815 + inSlope: -0.5385431 + outSlope: -0.5385431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.59739065 + inSlope: -0.35881487 + outSlope: -0.35881487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.6040357 + inSlope: 0.25183904 + outSlope: 0.25183904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.5644609 + inSlope: 0.50707173 + outSlope: 0.50707173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.5362444 + inSlope: 0.002873607 + outSlope: 0.002873607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.56590444 + inSlope: -0.6031361 + outSlope: -0.6031361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.6489217 + inSlope: -0.38860145 + outSlope: -0.38860145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -0.65590876 + inSlope: 0.5043204 + outSlope: 0.5043204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.6068951 + inSlope: 2.4003725 + outSlope: 2.4003725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.4558779 + inSlope: 3.0619044 + outSlope: 3.0619044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.35173634 + inSlope: 2.1608229 + outSlope: 2.1608229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.21367584 + inSlope: 1.4596087 + outSlope: 1.4596087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.06750724 + inSlope: 0.6980411 + outSlope: 0.6980411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.044447884 + inSlope: -0.3407659 + outSlope: -0.3407659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.11946843 + inSlope: -0.7327898 + outSlope: -0.7327898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.19721332 + inSlope: -0.29614016 + outSlope: -0.29614016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.20286733 + inSlope: -0.0015152664 + outSlope: -0.0015152664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.20488772 + inSlope: -0.0015152751 + outSlope: -0.0015152751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57539284 + inSlope: 0.17768812 + outSlope: 0.17768812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.6016266 + inSlope: 0.52092505 + outSlope: 0.52092505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.6754705 + inSlope: 0.49632382 + outSlope: 0.49632382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.6944242 + inSlope: -0.31451502 + outSlope: -0.31451502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6297272 + inSlope: -0.5211825 + outSlope: -0.5211825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.61031324 + inSlope: -0.4356771 + outSlope: -0.4356771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.58627385 + inSlope: -0.06556186 + outSlope: -0.06556186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.58374923 + inSlope: -0.23248458 + outSlope: -0.23248458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.5469223 + inSlope: -0.5361172 + outSlope: -0.5361172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.52545214 + inSlope: -0.31054422 + outSlope: -0.31054422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5496607 + inSlope: 0.40970048 + outSlope: 0.40970048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.56597 + inSlope: -0.33395752 + outSlope: -0.33395752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.46914402 + inSlope: -2.1182342 + outSlope: -2.1182342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.36109647 + inSlope: -2.8967624 + outSlope: -2.8967624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.22774738 + inSlope: -3.257709 + outSlope: -3.257709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.08962059 + inSlope: -3.0288324 + outSlope: -3.0288324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.024655472 + inSlope: -2.9552608 + outSlope: -2.9552608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.1566509 + inSlope: -0.92655647 + outSlope: -0.92655647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.10186829 + inSlope: 1.6056356 + outSlope: 1.6056356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.069854505 + inSlope: 2.2161705 + outSlope: 2.2161705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.24302782 + inSlope: 1.6804063 + outSlope: 1.6804063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.3311404 + inSlope: 0.34991425 + outSlope: 0.34991425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.3098194 + inSlope: -0.6079973 + outSlope: -0.6079973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.2074019 + inSlope: -0.8730458 + outSlope: -0.8730458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.17305331 + inSlope: -0.2958219 + outSlope: -0.2958219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.18275 + inSlope: 1.4252813 + outSlope: 1.4252813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.29182664 + inSlope: 1.913867 + outSlope: 1.913867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.3422389 + inSlope: 1.0676613 + outSlope: 1.0676613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.41731802 + inSlope: 0.80888903 + outSlope: 0.80888903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.4819648 + inSlope: 0.23329931 + outSlope: 0.23329931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.5025361 + inSlope: 0.12025178 + outSlope: 0.12025178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.50663906 + inSlope: -0.12909447 + outSlope: -0.12909447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.4822849 + inSlope: -0.1087251 + outSlope: -0.1087251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.48011282 + inSlope: -0.0007681832 + outSlope: -0.0007681832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.47908357 + inSlope: -0.00077462493 + outSlope: -0.00077462493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3594173 + inSlope: 0.17545938 + outSlope: 0.17545938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.3852696 + inSlope: 0.5147742 + outSlope: 0.5147742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.46043783 + inSlope: 0.5650027 + outSlope: 0.5650027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.5252225 + inSlope: 0.11694433 + outSlope: 0.11694433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5088434 + inSlope: -0.2988209 + outSlope: -0.2988209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.49609447 + inSlope: -0.1942412 + outSlope: -0.1942412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.4824804 + inSlope: -0.3825581 + outSlope: -0.3825581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.39778024 + inSlope: -0.8806201 + outSlope: -0.8806201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.32134375 + inSlope: -0.7053752 + outSlope: -0.7053752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.2993032 + inSlope: -0.17879954 + outSlope: -0.17879954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.35936382 + inSlope: 0.5594497 + outSlope: 0.5594497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.37967414 + inSlope: -0.25460446 + outSlope: -0.25460446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.3152966 + inSlope: -1.1633967 + outSlope: -1.1633967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.26065278 + inSlope: -1.3623505 + outSlope: -1.3623505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.20176749 + inSlope: -1.4000435 + outSlope: -1.4000435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.14398244 + inSlope: -1.2834718 + outSlope: -1.2834718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.09481145 + inSlope: -1.5512226 + outSlope: -1.5512226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.014714017 + inSlope: -0.3256529 + outSlope: -0.3256529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.067673884 + inSlope: 1.5476019 + outSlope: 1.5476019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.23663163 + inSlope: 2.2811418 + outSlope: 2.2811418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.42484534 + inSlope: 2.0242736 + outSlope: 2.0242736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.5587249 + inSlope: 0.9888529 + outSlope: 0.9888529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.583186 + inSlope: -0.2499457 + outSlope: -0.2499457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.49136844 + inSlope: -0.88306975 + outSlope: -0.88306975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.45777056 + inSlope: -0.13457468 + outSlope: -0.13457468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.4801538 + inSlope: 1.4199052 + outSlope: 1.4199052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.5760959 + inSlope: 1.3336737 + outSlope: 1.3336737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.5912932 + inSlope: 0.16919415 + outSlope: 0.16919415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.58516175 + inSlope: -0.26829797 + outSlope: -0.26829797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.5215482 + inSlope: -0.44911337 + outSlope: -0.44911337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.5153115 + inSlope: 0.43747246 + outSlope: 0.43747246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.59545064 + inSlope: 0.6379483 + outSlope: 0.6379483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.64526093 + inSlope: 0.10804632 + outSlope: 0.10804632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.6459875 + inSlope: 0.0018317665 + outSlope: 0.0018317665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.64842653 + inSlope: 0.0018267701 + outSlope: 0.0018267701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5496687 + inSlope: -0.1647706 + outSlope: -0.1647706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.5245781 + inSlope: -0.52881503 + outSlope: -0.52881503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.43594682 + inSlope: -0.76162076 + outSlope: -0.76162076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.35444102 + inSlope: 0.0064891055 + outSlope: 0.0064891055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.39738008 + inSlope: 0.49925238 + outSlope: 0.49925238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.41769868 + inSlope: 0.26864707 + outSlope: 0.26864707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.41465986 + inSlope: -0.08586757 + outSlope: -0.08586757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.42503992 + inSlope: 0.32925832 + outSlope: 0.32925832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.46211186 + inSlope: 0.36111513 + outSlope: 0.36111513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.47322026 + inSlope: 0.059802704 + outSlope: 0.059802704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.4389828 + inSlope: -0.071360655 + outSlope: -0.071360655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.4841842 + inSlope: 1.2938462 + outSlope: 1.2938462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.6429795 + inSlope: 2.1150136 + outSlope: 2.1150136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.72996026 + inSlope: 1.816006 + outSlope: 1.816006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.7943132 + inSlope: 1.1610911 + outSlope: 1.1610911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.82671785 + inSlope: 0.4009752 + outSlope: 0.4009752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.82772785 + inSlope: -0.3117581 + outSlope: -0.3117581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.80073804 + inSlope: -0.4218923 + outSlope: -0.4218923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.7925702 + inSlope: -0.24184006 + outSlope: -0.24184006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.7578039 + inSlope: -0.73071253 + outSlope: -0.73071253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.66470134 + inSlope: -1.4385846 + outSlope: -1.4385846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.5390867 + inSlope: -1.1740456 + outSlope: -1.1740456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.49361748 + inSlope: -0.028078668 + outSlope: -0.028078668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.5426252 + inSlope: 0.6789403 + outSlope: 0.6789403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.57470196 + inSlope: 0.7654177 + outSlope: 0.7654177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.60641 + inSlope: 0.45328158 + outSlope: 0.45328158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.6124754 + inSlope: 0.40238944 + outSlope: 0.40238944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.6399425 + inSlope: 0.52462834 + outSlope: 0.52462834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.66164494 + inSlope: 0.20142817 + outSlope: 0.20142817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.70081395 + inSlope: 0.25246638 + outSlope: 0.25246638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.69277406 + inSlope: -0.4427024 + outSlope: -0.4427024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.6119499 + inSlope: -0.65347 + outSlope: -0.65347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.55870074 + inSlope: -0.12956403 + outSlope: -0.12956403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.5577066 + inSlope: -0.0020120107 + outSlope: -0.0020120107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.55501634 + inSlope: -0.0020213204 + outSlope: -0.0020213204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.21179546 + inSlope: -0.0024393797 + outSlope: -0.0024393797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.21488203 + inSlope: -0.0077301273 + outSlope: -0.0077301273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.18355975 + inSlope: -0.08176765 + outSlope: -0.08176765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.020580513 + inSlope: -0.37586617 + outSlope: -0.37586617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.05438393 + inSlope: -0.30279124 + outSlope: -0.30279124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0.09323751 + inSlope: -0.07736817 + outSlope: -0.07736817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.09121171 + inSlope: 0.06401045 + outSlope: 0.06401045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.08058676 + inSlope: -0.016736057 + outSlope: -0.016736057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0.081661865 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.081661865 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.16912827 + inSlope: 0.05208707 + outSlope: 0.05208707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.07562941 + inSlope: 0.34247863 + outSlope: 0.34247863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.045167744 + inSlope: -0.09402339 + outSlope: -0.09402339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.11249309 + inSlope: -0.27210414 + outSlope: -0.27210414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.15952702 + inSlope: -0.18573269 + outSlope: -0.18573269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0.20436397 + inSlope: -0.17715177 + outSlope: -0.17715177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.17271675 + inSlope: 0.43802097 + outSlope: 0.43802097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.02915348 + inSlope: 0.14363676 + outSlope: 0.14363676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0.025836177 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.025836179 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.31227723 + inSlope: -0.0165689 + outSlope: -0.0165689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.25686285 + inSlope: -0.23932579 + outSlope: -0.23932579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.08290242 + inSlope: -0.22513995 + outSlope: -0.22513995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.03265261 + inSlope: 0.0026303064 + outSlope: 0.0026303064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.029713703 + inSlope: -0.12632605 + outSlope: -0.12632605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0.079353936 + inSlope: -0.57173103 + outSlope: -0.57173103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.09972447 + inSlope: 0.1410596 + outSlope: 0.1410596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.04766572 + inSlope: 0.056144115 + outSlope: 0.056144115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0.046428174 + inSlope: 0.0000000447034 + outSlope: 0.0000000447034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.046428163 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.910506 + inSlope: 0.015851498 + outSlope: 0.015851498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.9392164 + inSlope: 0.09470914 + outSlope: 0.09470914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.97846454 + inSlope: 0.03877185 + outSlope: 0.03877185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.99290264 + inSlope: -0.023014778 + outSlope: -0.023014778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.9852465 + inSlope: -0.043079115 + outSlope: -0.043079115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.9712081 + inSlope: -0.08926614 + outSlope: -0.08926614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.97565585 + inSlope: 0.097217664 + outSlope: 0.097217664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.9951803 + inSlope: 0.0059745195 + outSlope: 0.0059745195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: 0.99524283 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99524283 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.25013512 + inSlope: -0.017915726 + outSlope: -0.017915726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.28737518 + inSlope: -0.21039674 + outSlope: -0.21039674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.31966755 + inSlope: 0.058105562 + outSlope: 0.058105562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.26770082 + inSlope: 0.21299641 + outSlope: 0.21299641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.24320833 + inSlope: -0.059577823 + outSlope: -0.059577823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.2623595 + inSlope: 0.19578144 + outSlope: 0.19578144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -0.12861392 + inSlope: 0.65829176 + outSlope: 0.65829176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.026270755 + inSlope: 0.45817733 + outSlope: 0.45817733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.023351304 + inSlope: 0.07493499 + outSlope: 0.07493499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.060376264 + inSlope: -0.6104499 + outSlope: -0.6104499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.16542505 + inSlope: -0.2889711 + outSlope: -0.2889711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.17815556 + inSlope: 0.000015199199 + outSlope: 0.000015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.17813589 + inSlope: 0.000015378057 + outSlope: 0.000015378057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4193594 + inSlope: -0.10122013 + outSlope: -0.10122013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.2956673 + inSlope: -0.9093689 + outSlope: -0.9093689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.04481838 + inSlope: -1.2641667 + outSlope: -1.2641667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.34576362 + inSlope: -0.6591258 + outSlope: -0.6591258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.39386708 + inSlope: 0.2612828 + outSlope: 0.2612828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.08124652 + inSlope: 1.0608575 + outSlope: 1.0608575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.21335031 + inSlope: 0.8702803 + outSlope: 0.8702803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.337772 + inSlope: 0.6534107 + outSlope: 0.6534107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.45596394 + inSlope: 0.39797395 + outSlope: 0.39797395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.5172587 + inSlope: 0.071875915 + outSlope: 0.071875915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.50973535 + inSlope: -0.06706175 + outSlope: -0.06706175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.5061175 + inSlope: 0.00014376655 + outSlope: 0.00014376655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.50630313 + inSlope: 0.0001430517 + outSlope: 0.0001430517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.21182506 + inSlope: -0.0033066273 + outSlope: -0.0033066273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.21690744 + inSlope: -0.018439472 + outSlope: -0.018439472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.2154274 + inSlope: 0.045111336 + outSlope: 0.045111336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.19378442 + inSlope: 0.07355298 + outSlope: 0.07355298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.18624726 + inSlope: 0.0463572 + outSlope: 0.0463572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.08750275 + inSlope: 0.40793598 + outSlope: 0.40793598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.048735693 + inSlope: 0.46887094 + outSlope: 0.46887094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.1435341 + inSlope: 0.8189466 + outSlope: 0.8189466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.27743903 + inSlope: 0.11189153 + outSlope: 0.11189153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.13565807 + inSlope: -0.93915457 + outSlope: -0.93915457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.042364985 + inSlope: -0.51599133 + outSlope: -0.51599133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.06555932 + inSlope: 0.000034511122 + outSlope: 0.000034511122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.06551472 + inSlope: 0.00003451122 + outSlope: 0.00003451122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8465816 + inSlope: 0.04371071 + outSlope: 0.04371071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.88484323 + inSlope: 0.22864506 + outSlope: 0.22864506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.92162627 + inSlope: -0.030251011 + outSlope: -0.030251011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.8781978 + inSlope: -0.17603377 + outSlope: -0.17603377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.8666201 + inSlope: 0.1109377 + outSlope: 0.1109377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.95755404 + inSlope: 0.18012422 + outSlope: 0.18012422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.96724606 + inSlope: -0.12714955 + outSlope: -0.12714955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.9298483 + inSlope: -0.35177383 + outSlope: -0.35177383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.84532785 + inSlope: -0.25087976 + outSlope: -0.25087976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.8428494 + inSlope: 0.062207103 + outSlope: 0.062207103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.84321386 + inSlope: -0.038353488 + outSlope: -0.038353488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.841313 + inSlope: -0.00008082397 + outSlope: -0.00008082397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.841209 + inSlope: -0.00008010895 + outSlope: -0.00008010895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6021034 + inSlope: 0.421988 + outSlope: 0.421988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.5845206 + inSlope: 0.69390535 + outSlope: 0.69390535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.43012196 + inSlope: 1.5446646 + outSlope: 1.5446646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.22365578 + inSlope: 1.5886269 + outSlope: 1.5886269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.032566316 + inSlope: 0.96668065 + outSlope: 0.96668065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.16896062 + inSlope: 0.9104078 + outSlope: 0.9104078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.31271344 + inSlope: 0.4863149 + outSlope: 0.4863149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.32491386 + inSlope: 0.12755993 + outSlope: 0.12755993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.32334343 + inSlope: 0.44938675 + outSlope: 0.44938675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.36236277 + inSlope: 0.9352715 + outSlope: 0.9352715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.4798964 + inSlope: 0.9034425 + outSlope: 0.9034425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.5406186 + inSlope: 0.373034 + outSlope: 0.373034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.5032097 + inSlope: -0.8908758 + outSlope: -0.8908758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.21092494 + inSlope: -1.7082593 + outSlope: -1.7082593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.08174794 + inSlope: -1.6033028 + outSlope: -1.6033028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -0.2237159 + inSlope: -0.5511773 + outSlope: -0.5511773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.23782632 + inSlope: 0.01783027 + outSlope: 0.01783027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.26778665 + inSlope: -0.37109318 + outSlope: -0.37109318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.3372636 + inSlope: -0.7635383 + outSlope: -0.7635383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.42955306 + inSlope: 0.0025852844 + outSlope: 0.0025852844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.421567 + inSlope: 0.8857645 + outSlope: 0.8857645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.3557396 + inSlope: 1.8488739 + outSlope: 1.8488739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.26749426 + inSlope: 1.7953889 + outSlope: 1.7953889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.20612356 + inSlope: 1.2483182 + outSlope: 1.2483182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.13884659 + inSlope: 0.39648014 + outSlope: 0.39648014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.1304289 + inSlope: -0.00001394746 + outSlope: -0.00001394746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.13047805 + inSlope: 0.000067234294 + outSlope: 0.000067234294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07225429 + inSlope: -0.32226044 + outSlope: -0.32226044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.058826774 + inSlope: -0.50190973 + outSlope: -0.50190973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.042506475 + inSlope: -0.9180961 + outSlope: -0.9180961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.15258148 + inSlope: -0.7561055 + outSlope: -0.7561055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.22699243 + inSlope: -0.10794908 + outSlope: -0.10794908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.22794157 + inSlope: -0.12102997 + outSlope: -0.12102997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.26031294 + inSlope: 0.026815765 + outSlope: 0.026815765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.25289488 + inSlope: 0.29575375 + outSlope: 0.29575375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.2356668 + inSlope: -0.05256413 + outSlope: -0.05256413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.25727522 + inSlope: -0.4694848 + outSlope: -0.4694848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.27893978 + inSlope: 0.30299264 + outSlope: 0.30299264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.22633648 + inSlope: 0.8420556 + outSlope: 0.8420556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.13883851 + inSlope: 0.29384476 + outSlope: 0.29384476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.14187686 + inSlope: 0.059311386 + outSlope: 0.059311386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.07156811 + inSlope: 0.8609309 + outSlope: 0.8609309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.06118312 + inSlope: 1.0229638 + outSlope: 1.0229638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.15373184 + inSlope: 0.04762839 + outSlope: 0.04762839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.12220441 + inSlope: -0.2841968 + outSlope: -0.2841968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.058971353 + inSlope: -0.90020394 + outSlope: -0.90020394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.17870061 + inSlope: -1.8009903 + outSlope: -1.8009903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.25568485 + inSlope: -2.3450012 + outSlope: -2.3450012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.37411708 + inSlope: -2.615405 + outSlope: -2.615405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.47363502 + inSlope: -1.8097302 + outSlope: -1.8097302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.5249282 + inSlope: -0.957327 + outSlope: -0.957327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.56758195 + inSlope: -0.22621922 + outSlope: -0.22621922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.57223034 + inSlope: 0.00040197297 + outSlope: 0.00040197297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.57168514 + inSlope: 0.00037765648 + outSlope: 0.00037765648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5922933 + inSlope: 0.35478973 + outSlope: 0.35478973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.6070762 + inSlope: 0.536381 + outSlope: 0.536381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.69991654 + inSlope: 0.6772513 + outSlope: 0.6772513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.7591877 + inSlope: 0.23799127 + outSlope: 0.23799127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.7535639 + inSlope: -0.21424338 + outSlope: -0.21424338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.7117116 + inSlope: -0.3147789 + outSlope: -0.3147789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6541908 + inSlope: -0.18584272 + outSlope: -0.18584272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.65108913 + inSlope: 0.052085556 + outSlope: 0.052085556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.65853125 + inSlope: -0.020616524 + outSlope: -0.020616524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.6493711 + inSlope: -0.14101478 + outSlope: -0.14101478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.6698687 + inSlope: 0.5290723 + outSlope: 0.5290723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.73114413 + inSlope: 0.84656847 + outSlope: 0.84656847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.8332831 + inSlope: 0.7170743 + outSlope: 0.7170743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.92982846 + inSlope: 0.08361851 + outSlope: 0.08361851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.8581773 + inSlope: -1.0523577 + outSlope: -1.0523577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.67225033 + inSlope: -1.7772081 + outSlope: -1.7772081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.39494634 + inSlope: -1.25286 + outSlope: -1.25286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.2694934 + inSlope: -0.28235996 + outSlope: -0.28235996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.2867571 + inSlope: 0.62915057 + outSlope: 0.62915057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.46815115 + inSlope: 1.3442926 + outSlope: 1.3442926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.52502275 + inSlope: 1.6441565 + outSlope: 1.6441565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.605164 + inSlope: 1.7688475 + outSlope: 1.7688475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.6724265 + inSlope: 1.2732337 + outSlope: 1.2732337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.711267 + inSlope: 0.7360548 + outSlope: 0.7360548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.7454773 + inSlope: 0.1807219 + outSlope: 0.1807219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.7488513 + inSlope: 0.00032114921 + outSlope: 0.00032114921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.7492886 + inSlope: 0.000296117 + outSlope: 0.000296117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.53050864 + inSlope: 0.11022806 + outSlope: 0.11022806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.5351015 + inSlope: 0.17447019 + outSlope: 0.17447019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.5685993 + inSlope: 0.26039883 + outSlope: 0.26039883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.5918877 + inSlope: 0.11311482 + outSlope: 0.11311482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.61608064 + inSlope: 0.17531273 + outSlope: 0.17531273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.64262086 + inSlope: 0.06351611 + outSlope: 0.06351611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6375593 + inSlope: -0.029592976 + outSlope: -0.029592976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.6376192 + inSlope: -0.002212284 + outSlope: -0.002212284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.63737494 + inSlope: -0.246158 + outSlope: -0.246158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.617106 + inSlope: -0.59868646 + outSlope: -0.59868646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.49312076 + inSlope: -1.454607 + outSlope: -1.454607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.34918702 + inSlope: -1.7972529 + outSlope: -1.7972529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.18205251 + inSlope: -0.5784297 + outSlope: -0.5784297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.266084 + inSlope: 1.0676765 + outSlope: 1.0676765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.5017241 + inSlope: 1.6492805 + outSlope: 1.6492805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 0.7030558 + inSlope: 1.4473865 + outSlope: 1.4473865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.87396944 + inSlope: 0.57316 + outSlope: 0.57316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.91691315 + inSlope: 0.013112923 + outSlope: 0.013112923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.8947324 + inSlope: -0.44429412 + outSlope: -0.44429412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.75125545 + inSlope: -1.2781217 + outSlope: -1.2781217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.6937273 + inSlope: -1.742807 + outSlope: -1.742807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.60602176 + inSlope: -2.301264 + outSlope: -2.301264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.50195545 + inSlope: -2.2370777 + outSlope: -2.2370777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.41959825 + inSlope: -1.7201159 + outSlope: -1.7201159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.3206805 + inSlope: -0.6092905 + outSlope: -0.6092905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.30783504 + inSlope: -0.00003826611 + outSlope: -0.00003826611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.30776337 + inSlope: 0.000016450946 + outSlope: 0.000016450946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00068698515 + inSlope: -0.008170764 + outSlope: -0.008170764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.0010274337 + inSlope: -0.015446043 + outSlope: -0.015446043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0019741554 + inSlope: -0.029455971 + outSlope: -0.029455971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.007580073 + inSlope: -0.048979186 + outSlope: -0.048979186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.011305118 + inSlope: 0.0018293676 + outSlope: 0.0018293676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.008359398 + inSlope: 0.032182552 + outSlope: 0.032182552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.00454492 + inSlope: 0.021363173 + outSlope: 0.021363173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.0027683934 + inSlope: 0.016436841 + outSlope: 0.016436841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0012799957 + inSlope: 0.016216755 + outSlope: 0.016216755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.00065092416 + inSlope: 0.015358167 + outSlope: 0.015358167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.00000014866032 + inSlope: 0.0078093023 + outSlope: 0.0078093023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.00000014866298 + inSlope: -6.343727e-11 + outSlope: -6.343727e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.00000014875522 + inSlope: 9.94019e-10 + outSlope: 9.94019e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.00000014866976 + inSlope: -0.010002344 + outSlope: -0.010002344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.0008336742 + inSlope: -0.04158677 + outSlope: -0.04158677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.0034657146 + inSlope: -0.039929263 + outSlope: -0.039929263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.004161119 + inSlope: -0.013416282 + outSlope: -0.013416282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.0048265294 + inSlope: -0.0039348993 + outSlope: -0.0039348993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: -0.0049116467 + inSlope: -0.0000000055879568 + outSlope: -0.0000000055879568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00491165 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14841421 + inSlope: 1.123999 + outSlope: 1.123999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.1952475 + inSlope: 1.6364539 + outSlope: 1.6364539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.28478536 + inSlope: 2.1534758 + outSlope: 2.1534758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.51543695 + inSlope: 1.2510772 + outSlope: 1.2510772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.5836043 + inSlope: -0.19285302 + outSlope: -0.19285302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.5023341 + inSlope: -0.870337 + outSlope: -0.870337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.3758761 + inSlope: -0.85490847 + outSlope: -0.85490847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.32387516 + inSlope: -0.42286238 + outSlope: -0.42286238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.24834044 + inSlope: -1.8518804 + outSlope: -1.8518804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.14447673 + inSlope: -3.0073726 + outSlope: -3.0073726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.002273912 + inSlope: -1.7610068 + outSlope: -1.7610068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.0022739123 + inSlope: -0.000000005587937 + outSlope: -0.000000005587937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.0022739198 + inSlope: 0.0000073201813 + outSlope: 0.0000073201813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.0022733093 + inSlope: 1.9499509 + outSlope: 1.9499509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.16022138 + inSlope: 3.9965167 + outSlope: 3.9965167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.33076948 + inSlope: 2.7018838 + outSlope: 2.7018838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.3853788 + inSlope: 0.81343716 + outSlope: 0.81343716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.39547783 + inSlope: -0.07654044 + outSlope: -0.07654044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.39217752 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.39217758 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.004577604 + inSlope: 0.013999566 + outSlope: 0.013999566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0051609194 + inSlope: 0.024807505 + outSlope: 0.024807505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.006644896 + inSlope: 0.041454792 + outSlope: 0.041454792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.012600226 + inSlope: 0.04158353 + outSlope: 0.04158353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.01572569 + inSlope: 0.005131 + outSlope: 0.005131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.014386477 + inSlope: -0.022455404 + outSlope: -0.022455404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.011203935 + inSlope: -0.021746293 + outSlope: -0.021746293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.008086694 + inSlope: -0.037434056 + outSlope: -0.037434056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0049927044 + inSlope: -0.023241417 + outSlope: -0.023241417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.0044581573 + inSlope: -0.06076229 + outSlope: -0.06076229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.00007082167 + inSlope: -0.054347716 + outSlope: -0.054347716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.0000708215 + inSlope: 0.0000000041909525 + outSlope: 0.0000000041909525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.000070815375 + inSlope: 0.00000024097926 + outSlope: 0.00000024097926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.000070795475 + inSlope: 0.062482562 + outSlope: 0.062482562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.005136045 + inSlope: 0.119498216 + outSlope: 0.119498216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.009887379 + inSlope: 0.057921004 + outSlope: 0.057921004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.009962805 + inSlope: 0.007917157 + outSlope: 0.007917157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.011208382 + inSlope: 0.011670537 + outSlope: 0.011670537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.011519688 + inSlope: 0.0000000111759135 + outSlope: 0.0000000111759135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.011519694 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9889145 + inSlope: -0.19619036 + outSlope: -0.19619036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.9807399 + inSlope: -0.36417818 + outSlope: -0.36417818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.9585663 + inSlope: -0.64370227 + outSlope: -0.64370227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.85680133 + inSlope: -0.73766184 + outSlope: -0.73766184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.8118072 + inSlope: 0.13506678 + outSlope: 0.13506678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.86451346 + inSlope: 0.50355875 + outSlope: 0.50355875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.9265911 + inSlope: 0.35562372 + outSlope: 0.35562372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.9460612 + inSlope: 0.14144182 + outSlope: 0.14144182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.96865916 + inSlope: 0.4224688 + outSlope: 0.4224688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.98949796 + inSlope: 0.37605947 + outSlope: 0.37605947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.99999744 + inSlope: 0.12599367 + outSlope: 0.12599367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.99999744 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.99999744 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.99999744 + inSlope: -0.15516102 + outSlope: -0.15516102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.9870674 + inSlope: -0.676128 + outSlope: -0.676128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.9436534 + inSlope: -0.772464 + outSlope: -0.772464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.9226953 + inSlope: -0.3189774 + outSlope: -0.3189774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.9183945 + inSlope: 0.032788694 + outSlope: 0.032788694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.91980433 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.91980433 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09302472 + inSlope: -0.0035843253 + outSlope: -0.0035843253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.08527519 + inSlope: -0.036425553 + outSlope: -0.036425553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.066927545 + inSlope: -0.061687067 + outSlope: -0.061687067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.04868122 + inSlope: 0.0068936488 + outSlope: 0.0068936488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.07476821 + inSlope: 0.08403956 + outSlope: 0.08403956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.088947 + inSlope: 0.052410863 + outSlope: 0.052410863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.094739884 + inSlope: 0.023085577 + outSlope: 0.023085577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.09608156 + inSlope: -0.029900936 + outSlope: -0.029900936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.086644925 + inSlope: -0.19390894 + outSlope: -0.19390894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.06748502 + inSlope: -0.21663651 + outSlope: -0.21663651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.05383192 + inSlope: 0.045800477 + outSlope: 0.045800477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.07338922 + inSlope: 0.19181202 + outSlope: 0.19181202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.08775699 + inSlope: 0.12610024 + outSlope: 0.12610024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.09217548 + inSlope: -0.028516565 + outSlope: -0.028516565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.08520625 + inSlope: -0.09065475 + outSlope: -0.09065475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.081769235 + inSlope: -0.050031684 + outSlope: -0.050031684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.081782475 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.08178248 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06726652 + inSlope: -0.003250301 + outSlope: -0.003250301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.07410445 + inSlope: -0.03416186 + outSlope: -0.03416186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.09146698 + inSlope: -0.05364473 + outSlope: -0.05364473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.10164024 + inSlope: 0.0067596184 + outSlope: 0.0067596184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.08409772 + inSlope: 0.06958228 + outSlope: 0.06958228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.071129516 + inSlope: 0.055789463 + outSlope: 0.055789463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.062184263 + inSlope: 0.054158915 + outSlope: 0.054158915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.060308225 + inSlope: -0.063856974 + outSlope: -0.063856974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.07372433 + inSlope: -0.21805155 + outSlope: -0.21805155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.09131194 + inSlope: -0.14827234 + outSlope: -0.14827234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.096639805 + inSlope: 0.037333105 + outSlope: 0.037333105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.0874561 + inSlope: 0.095815994 + outSlope: 0.095815994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.07815931 + inSlope: 0.12073743 + outSlope: 0.12073743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.07026226 + inSlope: 0.009721382 + outSlope: 0.009721382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.07674479 + inSlope: -0.1044506 + outSlope: -0.1044506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.08096774 + inSlope: -0.06944297 + outSlope: -0.06944297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.082225345 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.08222532 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.24988492 + inSlope: -0.06900215 + outSlope: -0.06900215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.08960247 + inSlope: -0.74219894 + outSlope: -0.74219894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.21820422 + inSlope: -0.7683259 + outSlope: -0.7683259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.40661272 + inSlope: 0.04410781 + outSlope: 0.04410781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.10991193 + inSlope: 1.4375074 + outSlope: 1.4375074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.17907692 + inSlope: 1.158354 + outSlope: 1.158354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.30849138 + inSlope: 0.29573005 + outSlope: 0.29573005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.28704348 + inSlope: -1.2152963 + outSlope: -1.2152963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.104922794 + inSlope: -2.7881188 + outSlope: -2.7881188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.14202023 + inSlope: -2.7678034 + outSlope: -2.7678034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.34972268 + inSlope: 0.01127553 + outSlope: 0.01127553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.14116663 + inSlope: 2.661439 + outSlope: 2.661439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.08179582 + inSlope: 2.2149925 + outSlope: 2.2149925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.18893102 + inSlope: 0.016255766 + outSlope: 0.016255766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.09789538 + inSlope: -1.507415 + outSlope: -1.507415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.03492231 + inSlope: -1.0990905 + outSlope: -1.0990905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.0063412376 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0063412366 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9614464 + inSlope: 0.017942905 + outSlope: 0.017942905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.98954946 + inSlope: 0.067100994 + outSlope: 0.067100994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.96929944 + inSlope: -0.17319492 + outSlope: -0.17319492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.9066231 + inSlope: 0.019904912 + outSlope: 0.019904912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.98755085 + inSlope: 0.15847848 + outSlope: 0.15847848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.9772208 + inSlope: -0.20937128 + outSlope: -0.20937128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.9444525 + inSlope: -0.093279384 + outSlope: -0.093279384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.9511768 + inSlope: 0.3344482 + outSlope: 0.3344482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.98795176 + inSlope: 0.2767505 + outSlope: 0.2767505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.98333013 + inSlope: -0.3783266 + outSlope: -0.3783266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.9302994 + inSlope: 0.0049202815 + outSlope: 0.0049202815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.9833806 + inSlope: 0.3651853 + outSlope: 0.3651853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.98969656 + inSlope: -0.15167606 + outSlope: -0.15167606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.9751266 + inSlope: 0.0007030964 + outSlope: 0.0007030964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.98856795 + inSlope: 0.14908175 + outSlope: 0.14908175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.9927429 + inSlope: 0.05640353 + outSlope: 0.05640353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.9932323 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9932323 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.27838156 + inSlope: -0.30947828 + outSlope: -0.30947828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.26548663 + inSlope: -0.6602869 + outSlope: -0.6602869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.22335765 + inSlope: -1.6143391 + outSlope: -1.6143391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.13095838 + inSlope: -3.1432602 + outSlope: -3.1432602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.03858071 + inSlope: -4.1456704 + outSlope: -4.1456704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.21451418 + inSlope: -2.772726 + outSlope: -2.772726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.26964122 + inSlope: -0.29129237 + outSlope: -0.29129237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.23878852 + inSlope: 1.1267083 + outSlope: 1.1267083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.10263877 + inSlope: 1.8177117 + outSlope: 1.8177117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.05655375 + inSlope: 1.9550209 + outSlope: 1.9550209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.37534347 + inSlope: 1.6669312 + outSlope: 1.6669312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.5547883 + inSlope: -0.0012646839 + outSlope: -0.0012646839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.44580686 + inSlope: -0.54502034 + outSlope: -0.54502034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.34311983 + inSlope: -0.19020784 + outSlope: -0.19020784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.27562886 + inSlope: -0.8378906 + outSlope: -0.8378906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.08502878 + inSlope: -2.3052227 + outSlope: -2.3052227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.021236727 + inSlope: -2.6197448 + outSlope: -2.6197448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.13328308 + inSlope: -2.5076683 + outSlope: -2.5076683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.3003825 + inSlope: -1.4141729 + outSlope: -1.4141729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.39475965 + inSlope: -0.28180674 + outSlope: -0.28180674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.35884923 + inSlope: 0.5968626 + outSlope: 0.5968626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.18345323 + inSlope: 1.476967 + outSlope: 1.476967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.11797162 + inSlope: 1.5814476 + outSlope: 1.5814476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.051666055 + inSlope: 1.2002215 + outSlope: 1.2002215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.017952971 + inSlope: 0.7272756 + outSlope: 0.7272756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.01642461 + inSlope: -0.17947778 + outSlope: -0.17947778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.04174523 + inSlope: -0.7828877 + outSlope: -0.7828877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.08450034 + inSlope: -0.15895402 + outSlope: -0.15895402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.084508464 + inSlope: -0.00006499892 + outSlope: -0.00006499892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.08459233 + inSlope: -0.00006473089 + outSlope: -0.00006473089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1414196 + inSlope: 0.18473482 + outSlope: 0.18473482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.14911689 + inSlope: 0.31639034 + outSlope: 0.31639034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.16778547 + inSlope: 0.32490778 + outSlope: 0.32490778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.17619254 + inSlope: -0.46277738 + outSlope: -0.46277738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.12922068 + inSlope: -2.0535662 + outSlope: -2.0535662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.0050619976 + inSlope: -2.909634 + outSlope: -2.909634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.1132488 + inSlope: -2.2836337 + outSlope: -2.2836337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.1852408 + inSlope: -1.3027105 + outSlope: -1.3027105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.23365352 + inSlope: -0.13635871 + outSlope: -0.13635871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.23171009 + inSlope: 0.044321544 + outSlope: 0.044321544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.21941811 + inSlope: 0.10609658 + outSlope: 0.10609658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.16419777 + inSlope: 0.54136187 + outSlope: 0.54136187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.023725305 + inSlope: 0.82438993 + outSlope: 0.82438993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.21317276 + inSlope: 0.31253058 + outSlope: 0.31253058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.22328356 + inSlope: -0.24683246 + outSlope: -0.24683246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.13685839 + inSlope: -1.2519646 + outSlope: -1.2519646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.076400496 + inSlope: -1.5721345 + outSlope: -1.5721345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.0058473055 + inSlope: -1.6657531 + outSlope: -1.6657531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.118768305 + inSlope: -1.2154058 + outSlope: -1.2154058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.22709353 + inSlope: -0.6105102 + outSlope: -0.6105102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.3152422 + inSlope: -0.3127035 + outSlope: -0.3127035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.384669 + inSlope: -0.60142744 + outSlope: -0.60142744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.41175374 + inSlope: -0.6621586 + outSlope: -0.6621586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.43984884 + inSlope: -0.2637579 + outSlope: -0.2637579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.4337336 + inSlope: 0.15823871 + outSlope: 0.15823871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.4094467 + inSlope: 0.661007 + outSlope: 0.661007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.33015496 + inSlope: 0.8573564 + outSlope: 0.8573564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.28883126 + inSlope: 0.13557826 + outSlope: 0.13557826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.28883886 + inSlope: -0.000060796796 + outSlope: -0.000060796796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.2889174 + inSlope: -0.00006079697 + outSlope: -0.00006079697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.21781455 + inSlope: 0.33990455 + outSlope: 0.33990455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.23197724 + inSlope: 0.6874847 + outSlope: 0.6874847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.27510494 + inSlope: 1.4932307 + outSlope: 1.4932307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.35641313 + inSlope: 2.4647837 + outSlope: 2.4647837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.4805036 + inSlope: 3.0258598 + outSlope: 3.0258598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.60856813 + inSlope: 2.623766 + outSlope: 2.623766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.69915074 + inSlope: 1.8159097 + outSlope: 1.8159097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.75989395 + inSlope: 1.1841493 + outSlope: 1.1841493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.81649286 + inSlope: 0.2984791 + outSlope: 0.2984791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.8217338 + inSlope: -0.12804654 + outSlope: -0.12804654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.72340065 + inSlope: -1.0276232 + outSlope: -1.0276232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.4846657 + inSlope: -0.85514987 + outSlope: -0.85514987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.38932964 + inSlope: -0.18432623 + outSlope: -0.18432623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.34703127 + inSlope: -0.06659426 + outSlope: -0.06659426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.37635133 + inSlope: 0.46882284 + outSlope: 0.46882284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.45833167 + inSlope: 0.7170056 + outSlope: 0.7170056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.4870069 + inSlope: 0.58700776 + outSlope: 0.58700776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.50724894 + inSlope: 0.35982156 + outSlope: 0.35982156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.5197835 + inSlope: 0.035276446 + outSlope: 0.035276446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.5221159 + inSlope: 0.073852375 + outSlope: 0.073852375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.55616605 + inSlope: 0.1185012 + outSlope: 0.1185012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.57608515 + inSlope: 0.093512535 + outSlope: 0.093512535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.5786312 + inSlope: 0.03618418 + outSlope: 0.03618418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.5791005 + inSlope: 0.0080308765 + outSlope: 0.0080308765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.57930046 + inSlope: 0.07773571 + outSlope: 0.07773571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.59879 + inSlope: 0.3935251 + outSlope: 0.3935251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.637398 + inSlope: 0.36367595 + outSlope: 0.36367595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.6515999 + inSlope: 0.035042457 + outSlope: 0.035042457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.6515965 + inSlope: -0.000027179743 + outSlope: -0.000027179743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.6515617 + inSlope: -0.000027179822 + outSlope: -0.000027179822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9246951 + inSlope: -0.020686626 + outSlope: -0.020686626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.92383313 + inSlope: -0.057144642 + outSlope: -0.057144642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.919933 + inSlope: -0.18793704 + outSlope: -0.18793704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.9081717 + inSlope: -0.6404514 + outSlope: -0.6404514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.86656207 + inSlope: -1.7307913 + outSlope: -1.7307913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.7639391 + inSlope: -2.5696616 + outSlope: -2.5696616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.6524236 + inSlope: -2.26099 + outSlope: -2.26099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.57552326 + inSlope: -1.4410577 + outSlope: -1.4410577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.51789063 + inSlope: -0.17344312 + outSlope: -0.17344312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.51755744 + inSlope: 0.00600815 + outSlope: 0.00600815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.53634363 + inSlope: 0.26932457 + outSlope: 0.26932457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6560093 + inSlope: 0.7729334 + outSlope: 0.7729334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.80567724 + inSlope: 0.36752665 + outSlope: 0.36752665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.84640145 + inSlope: 0.02663038 + outSlope: 0.02663038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.85588133 + inSlope: 0.11773823 + outSlope: 0.11773823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.8740549 + inSlope: 0.0065050907 + outSlope: 0.0065050907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.8697909 + inSlope: -0.27173236 + outSlope: -0.27173236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.85141057 + inSlope: -0.5724416 + outSlope: -0.5724416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.7908791 + inSlope: -0.71249413 + outSlope: -0.71249413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.7211022 + inSlope: -0.3948959 + outSlope: -0.3948959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.6800948 + inSlope: 0.06928669 + outSlope: 0.06928669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.69749594 + inSlope: -0.030460773 + outSlope: -0.030460773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.694066 + inSlope: -0.15624827 + outSlope: -0.15624827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.68447524 + inSlope: -0.04997626 + outSlope: -0.04997626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.6899013 + inSlope: 0.05652936 + outSlope: 0.05652936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.68813825 + inSlope: 0.03935902 + outSlope: 0.03935902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.6949668 + inSlope: 0.039334156 + outSlope: 0.039334156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.69631445 + inSlope: 0.006843554 + outSlope: 0.006843554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.69631344 + inSlope: -0.000007867819 + outSlope: -0.000007867819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.6963033 + inSlope: -0.0000071525847 + outSlope: -0.0000071525847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000016763806 + inSlope: 0.000000019030622 + outSlope: 0.000000019030622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.000000022090408 + inSlope: 0.00000001903065 + outSlope: 0.00000001903065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.000000028433952 + inSlope: 0.000000019030619 + outSlope: 0.000000019030619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.000000029226895 + inSlope: -0.0000000065511205 + outSlope: -0.0000000065511205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.000000027888024 + inSlope: -0.00000003118967 + outSlope: -0.00000003118967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.000000026627758 + inSlope: -0.00000003095421 + outSlope: -0.00000003095421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.000000025308509 + inSlope: -0.000000045121645 + outSlope: -0.000000045121645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.000000022867614 + inSlope: -0.0000000592917 + outSlope: -0.0000000592917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.000000018935424 + inSlope: -0.000000019728288 + outSlope: -0.000000019728288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.0000000196178 + inSlope: 0.000000010731086 + outSlope: 0.000000010731086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.000000033918536 + inSlope: 0.00000001072017 + outSlope: 0.00000001072017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000034458935 + inSlope: 0.000000002312305 + outSlope: 0.000000002312305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.000000029738093 + inSlope: 0.0000000023122366 + outSlope: 0.0000000023122366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.000000028967342 + inSlope: -0.000002423272 + outSlope: -0.000002423272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.0000002310034 + inSlope: -1.2940674 + outSlope: -1.2940674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.10783919 + inSlope: -2.3257215 + outSlope: -2.3257215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.19381024 + inSlope: -1.9416062 + outSlope: -1.9416062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.26963952 + inSlope: -2.1278224 + outSlope: -2.1278224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.3711291 + inSlope: -2.2710295 + outSlope: -2.2710295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.5084408 + inSlope: -0.7884539 + outSlope: -0.7884539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.5246121 + inSlope: -0.0001881119 + outSlope: -0.0001881119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.52486336 + inSlope: -0.00018739772 + outSlope: -0.00018739772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000000074505815 + inSlope: -0.00000001041181 + outSlope: -0.00000001041181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.000000013806841 + inSlope: -0.000000010411812 + outSlope: -0.000000010411812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.00000001727744 + inSlope: -0.000000010411714 + outSlope: -0.000000010411714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.000000017711258 + inSlope: 0.000000029705706 + outSlope: 0.000000029705706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.00000001480196 + inSlope: 0.000000065477444 + outSlope: 0.000000065477444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.000000012254809 + inSlope: 0.00000006018699 + outSlope: 0.00000006018699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.000000009786382 + inSlope: 0.00000007465403 + outSlope: 0.00000007465403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.0000000060336274 + inSlope: 0.00000008825015 + outSlope: 0.00000008825015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -2.1337383e-10 + inSlope: 0.000000036149906 + outSlope: 0.000000036149906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 6.7434464e-10 + inSlope: 0.0000000011290607 + outSlope: 0.0000000011290607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0000000021882938 + inSlope: 0.0000000011416671 + outSlope: 0.0000000011416671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 1 + inSlope: -0.06997977 + outSlope: -0.06997977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.99416834 + inSlope: -0.2275319 + outSlope: -0.2275319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.98103905 + inSlope: -0.37448376 + outSlope: -0.37448376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.9629614 + inSlope: -0.6294918 + outSlope: -0.6294918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.9285813 + inSlope: -0.8936316 + outSlope: -0.8936316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.861097 + inSlope: -0.4456929 + outSlope: -0.4456929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.85134137 + inSlope: -0.00011658647 + outSlope: -0.00011658647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.8511865 + inSlope: -0.00011587187 + outSlope: -0.00011587187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000000026424967 + inSlope: -0.0000017700168 + outSlope: -0.0000017700168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.0000003195321 + inSlope: 0.0000003684985 + outSlope: 0.0000003684985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.0000025934787 + inSlope: 0.000022923163 + outSlope: 0.000022923163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0000127684125 + inSlope: 0.00004216034 + outSlope: 0.00004216034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.000022432447 + inSlope: 0.000025403193 + outSlope: 0.000025403193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.00002092527 + inSlope: -0.000048819616 + outSlope: -0.000048819616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.000011454995 + inSlope: -0.00009664183 + outSlope: -0.00009664183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.0000014427534 + inSlope: -0.00009733493 + outSlope: -0.00009733493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.000011433824 + inSlope: -0.0000073925085 + outSlope: -0.0000073925085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.0001737878 + inSlope: -0.004218376 + outSlope: -0.004218376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.0015009218 + inSlope: -0.010229759 + outSlope: -0.010229759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.002994208 + inSlope: -0.003866698 + outSlope: -0.003866698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.0037964368 + inSlope: -0.015636124 + outSlope: -0.015636124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.005231393 + inSlope: -0.014430964 + outSlope: -0.014430964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.005920632 + inSlope: -0.0002866157 + outSlope: -0.0002866157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.0055651963 + inSlope: 0.0007509779 + outSlope: 0.0007509779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.0064428165 + inSlope: -0.009982884 + outSlope: -0.009982884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.007855794 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000010618032 + inSlope: -0.000007071475 + outSlope: -0.000007071475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.000002812703 + inSlope: -0.000019902182 + outSlope: -0.000019902182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.0000110022165 + inSlope: -0.000031907806 + outSlope: -0.000031907806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.000019452029 + inSlope: -0.000024658408 + outSlope: -0.000024658408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.00002616315 + inSlope: -0.0000360957 + outSlope: -0.0000360957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.00003589498 + inSlope: -0.00007450884 + outSlope: -0.00007450884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.00004492892 + inSlope: -0.000062326806 + outSlope: -0.000062326806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.000050600604 + inSlope: -0.000028022052 + outSlope: -0.000028022052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.00005365364 + inSlope: -0.000018765939 + outSlope: -0.000018765939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.000014036259 + inSlope: 0.0020078518 + outSlope: 0.0020078518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.0005226746 + inSlope: 0.0021865629 + outSlope: 0.0021865629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.0004872179 + inSlope: -0.0003156579 + outSlope: -0.0003156579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.0007424459 + inSlope: 0.008523074 + outSlope: 0.008523074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.0019673477 + inSlope: 0.019826483 + outSlope: 0.019826483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.0037638983 + inSlope: 0.01837151 + outSlope: 0.01837151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.004711366 + inSlope: 0.0039904825 + outSlope: 0.0039904825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.0044129826 + inSlope: -0.004586943 + outSlope: -0.004586943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0032032826 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.24623105 + inSlope: 0.09652197 + outSlope: 0.09652197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.1198493 + inSlope: 0.9321981 + outSlope: 0.9321981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.22809677 + inSlope: 1.2922333 + outSlope: 1.2922333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.5483443 + inSlope: 0.7861849 + outSlope: 0.7861849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.65074146 + inSlope: -0.084924534 + outSlope: -0.084924534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.5035247 + inSlope: -1.658442 + outSlope: -1.658442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.24698867 + inSlope: -2.278724 + outSlope: -2.278724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.02852687 + inSlope: -1.9122729 + outSlope: -1.9122729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.2084035 + inSlope: -0.062987715 + outSlope: -0.062987715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.12590893 + inSlope: 1.8412404 + outSlope: 1.8412404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.42604098 + inSlope: 1.5824685 + outSlope: 1.5824685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.6367064 + inSlope: 0.32242498 + outSlope: 0.32242498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.62582695 + inSlope: -0.7853214 + outSlope: -0.7853214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.50509596 + inSlope: -1.9391444 + outSlope: -1.9391444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.32595086 + inSlope: -2.0788245 + outSlope: -2.0788245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.18404916 + inSlope: -0.9849398 + outSlope: -0.9849398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.16132109 + inSlope: 0.000032722888 + outSlope: 0.000032722888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.16132183 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.96921116 + inSlope: 0.024308681 + outSlope: 0.024308681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.9927921 + inSlope: 0.11034464 + outSlope: 0.11034464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.9736385 + inSlope: -0.30273473 + outSlope: -0.30273473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.8362527 + inSlope: -0.512915 + outSlope: -0.512915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.7592994 + inSlope: 0.071568556 + outSlope: 0.071568556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.8639808 + inSlope: 0.95298696 + outSlope: 0.95298696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.9690184 + inSlope: 0.5808133 + outSlope: 0.5808133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.999593 + inSlope: -0.04286515 + outSlope: -0.04286515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.97804296 + inSlope: -0.012714304 + outSlope: -0.012714304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.99204177 + inSlope: -0.23677061 + outSlope: -0.23677061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.9047025 + inSlope: -0.73984325 + outSlope: -0.73984325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.77110034 + inSlope: -0.26180637 + outSlope: -0.26180637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.77995235 + inSlope: 0.6067996 + outSlope: 0.6067996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.8630451 + inSlope: 1.1182855 + outSlope: 1.1182855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.9453607 + inSlope: 0.73016554 + outSlope: 0.73016554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.98289 + inSlope: 0.20369872 + outSlope: 0.20369872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.98687106 + inSlope: -0.000050783063 + outSlope: -0.000050783063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9868654 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.022035776 + inSlope: 0.046839595 + outSlope: 0.046839595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.08219796 + inSlope: 0.38137698 + outSlope: 0.38137698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.25348395 + inSlope: 0.3635761 + outSlope: 0.3635761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.31785214 + inSlope: -0.009412687 + outSlope: -0.009412687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.22287974 + inSlope: -0.5610868 + outSlope: -0.5610868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.032899056 + inSlope: -0.40496248 + outSlope: -0.40496248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.0701865 + inSlope: -0.1797561 + outSlope: -0.1797561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.10188675 + inSlope: -0.17077865 + outSlope: -0.17077865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.15509485 + inSlope: -0.24339928 + outSlope: -0.24339928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.17884806 + inSlope: -0.38416213 + outSlope: -0.38416213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.21200025 + inSlope: -0.301943 + outSlope: -0.301943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.22668575 + inSlope: -0.073302306 + outSlope: -0.073302306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.22803783 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.22803785 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13550477 + inSlope: -0.0017359257 + outSlope: -0.0017359257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.13217247 + inSlope: -0.0055155144 + outSlope: -0.0055155144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.12095764 + inSlope: -0.045844384 + outSlope: -0.045844384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.05090629 + inSlope: -0.59439015 + outSlope: -0.59439015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.16106588 + inSlope: -0.61018807 + outSlope: -0.61018807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.19517173 + inSlope: 0.37955147 + outSlope: 0.37955147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.017907262 + inSlope: 0.7343961 + outSlope: 0.7343961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.16273664 + inSlope: 0.23131526 + outSlope: 0.23131526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.10071139 + inSlope: -0.74643517 + outSlope: -0.74643517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.008562282 + inSlope: -1.757889 + outSlope: -1.757889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.1829935 + inSlope: -2.3537652 + outSlope: -2.3537652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.34449032 + inSlope: -1.1359323 + outSlope: -1.1359323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.37079808 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.37079814 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08266353 + inSlope: 0.07064241 + outSlope: 0.07064241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.1685417 + inSlope: 0.42968518 + outSlope: 0.42968518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.237558 + inSlope: -0.15826832 + outSlope: -0.15826832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.13574876 + inSlope: -0.291826 + outSlope: -0.291826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.084774144 + inSlope: -0.11903021 + outSlope: -0.11903021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.00069952046 + inSlope: -0.51223683 + outSlope: -0.51223683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.21723242 + inSlope: -0.7609227 + outSlope: -0.7609227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.3768744 + inSlope: -0.2892876 + outSlope: -0.2892876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.3417551 + inSlope: 0.5138091 + outSlope: 0.5138091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.28995135 + inSlope: 0.75603724 + outSlope: 0.75603724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.21742837 + inSlope: 0.85123867 + outSlope: 0.85123867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.16014868 + inSlope: 0.3981081 + outSlope: 0.3981081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.15097386 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.15097387 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98707634 + inSlope: -0.0068764687 + outSlope: -0.0068764687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.9733281 + inSlope: -0.10614466 + outSlope: -0.10614466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9298824 + inSlope: -0.052572705 + outSlope: -0.052572705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9369903 + inSlope: 0.07647295 + outSlope: 0.07647295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.95770335 + inSlope: 0.039334036 + outSlope: 0.039334036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.9802169 + inSlope: 0.08879825 + outSlope: 0.08879825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.9734286 + inSlope: -0.19634718 + outSlope: -0.19634718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.9061465 + inSlope: -0.17802213 + outSlope: -0.17802213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.9214154 + inSlope: 0.22744732 + outSlope: 0.22744732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.9401427 + inSlope: 0.14443193 + outSlope: 0.14443193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.935037 + inSlope: -0.31759423 + outSlope: -0.31759423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.8968235 + inSlope: -0.35161474 + outSlope: -0.35161474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.8875328 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.8875328 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13871254 + inSlope: -0.0129003525 + outSlope: -0.0129003525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.17867425 + inSlope: 0.16140376 + outSlope: 0.16140376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.102292314 + inSlope: -0.12045981 + outSlope: -0.12045981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.13052417 + inSlope: 0.26128596 + outSlope: 0.26128596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.000000004676871 + inSlope: 0.058031093 + outSlope: 0.058031093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9903327 + inSlope: -0.0018110275 + outSlope: -0.0018110275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9839083 + inSlope: 0.02923537 + outSlope: 0.02923537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.9947544 + inSlope: -0.012459747 + outSlope: -0.012459747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.9914451 + inSlope: 0.034051873 + outSlope: 0.034051873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 1 + inSlope: 0.00006794911 + outSlope: 0.00006794911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.x + path: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.z + path: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.x + path: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.z + path: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0013052019 + inSlope: -0.0002477789 + outSlope: -0.0002477789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.0013155261 + inSlope: -0.0002477789 + outSlope: -0.0007124126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0013452099 + inSlope: -0.0007124126 + outSlope: -0.0011305476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.0013923161 + inSlope: -0.0011305476 + outSlope: -0.001502255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00145491 + inSlope: -0.001502255 + outSlope: -0.0018274537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.0015310539 + inSlope: -0.0018274537 + outSlope: -0.0021062419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.002164087 + inSlope: -0.0028031503 + outSlope: -0.0028031522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.002395748 + inSlope: -0.0027567123 + outSlope: -0.0026637616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.0026119212 + inSlope: -0.0025243938 + outSlope: -0.0023385347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: -0.0027971198 + inSlope: -0.002106237 + outSlope: -0.0018274846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.002982965 + inSlope: -0.00113057 + outSlope: -0.00071238715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: -0.003017534 + inSlope: 0.00013053429 + outSlope: 0.0003827546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.00289622 + inSlope: 0.0010597453 + outSlope: 0.0012588727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.002843767 + inSlope: 0.0012588727 + outSlope: 0.0014447066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.002783571 + inSlope: 0.0014447066 + outSlope: 0.0016172876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.002716184 + inSlope: 0.0016172876 + outSlope: 0.0017765752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0025620519 + inSlope: 0.0019225894 + outSlope: 0.0020553393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: -0.002385796 + inSlope: 0.0021748086 + outSlope: 0.0022810034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.00219184 + inSlope: 0.0023739396 + outSlope: 0.002453569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: -0.002089608 + inSlope: 0.002453569 + outSlope: 0.0025199484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.00198461 + inSlope: 0.0025199484 + outSlope: 0.002573042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.0018774 + inSlope: 0.002573042 + outSlope: 0.0026128816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.0016585549 + inSlope: 0.0026393959 + outSlope: 0.0026526963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: -0.001437497 + inSlope: 0.0026526998 + outSlope: 0.0026394173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.001006444 + inSlope: 0.0025199235 + outSlope: 0.0024535852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.0007102561 + inSlope: 0.002281011 + outSlope: 0.002174813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.0006196387 + inSlope: 0.002174813 + outSlope: 0.00205533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.0005339998 + inSlope: 0.00205533 + outSlope: 0.0019225995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.0004538918 + inSlope: 0.0019225995 + outSlope: 0.0017765773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.0003798676 + inSlope: 0.0017765773 + outSlope: 0.00161727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.0003124812 + inSlope: 0.00161727 + outSlope: 0.0014447144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: -0.000252285 + inSlope: 0.0014447144 + outSlope: 0.0012588624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.0001998323 + inSlope: 0.0012588624 + outSlope: 0.0010597564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.00015567569 + inSlope: 0.0010597564 + outSlope: 0.0008473519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.0001203695 + inSlope: 0.0008473519 + outSlope: 0.00062169216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.00009446561 + inSlope: 0.00062169216 + outSlope: 0.0003827469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.00007851779 + inSlope: 0.0003827469 + outSlope: 0.000130534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: -0.000073078896 + inSlope: 0.000130534 + outSlope: 0.000009291825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.000072691735 + inSlope: 0.000009291825 + outSlope: 0.00002665619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.00007158106 + inSlope: 0.00002665619 + outSlope: 0.000042193657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: -0.000069823 + inSlope: 0.000042193657 + outSlope: 0.000055902157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: -0.00006749374 + inSlope: 0.000055902157 + outSlope: 0.000067783534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083333 + value: -0.000025954108 + inSlope: 0.000086062406 + outSlope: 0.00007783661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: -0.00001988659 + inSlope: 0.00006778359 + outSlope: 0.000055902674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333333 + value: -0.00001755732 + inSlope: 0.000055902674 + outSlope: 0.000042193107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: -0.00001579927 + inSlope: 0.000042193107 + outSlope: 0.000026656524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -0.0000146885795 + inSlope: 0.000026656524 + outSlope: 0.0000005465549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0000143014295 + inSlope: 0.00000054655806 + outSlope: 0.00000054655806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.005500984 + inSlope: 0.00017618178 + outSlope: 0.00017618178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.005508325 + inSlope: 0.00017618178 + outSlope: 0.0005042553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.0055293357 + inSlope: 0.0005042553 + outSlope: 0.0007958937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.005562498 + inSlope: 0.0007958937 + outSlope: 0.0010510539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.005606292 + inSlope: 0.0010510539 + outSlope: 0.0012697938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.0056592 + inSlope: 0.0012697938 + outSlope: 0.0014520548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.006082968 + inSlope: 0.0018165912 + outSlope: 0.0017801289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.006228274 + inSlope: 0.0017072145 + outSlope: 0.0015978399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.006355354 + inSlope: 0.0014520828 + outSlope: 0.0012697643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.0064520547 + inSlope: 0.0010510549 + outSlope: 0.0007959076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.006503317 + inSlope: -0.000069851936 + outSlope: -0.000069866146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.0064778263 + inSlope: -0.00047206922 + outSlope: -0.00064908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.006328215 + inSlope: -0.0011394464 + outSlope: -0.0012893354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.0062744925 + inSlope: -0.0012893354 + outSlope: -0.0014323827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00621481 + inSlope: -0.0014323827 + outSlope: -0.0015686718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.0061494485 + inSlope: -0.0015686718 + outSlope: -0.0016981903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.006002823 + inSlope: -0.0018208231 + outSlope: -0.0019367284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: 0.0058368808 + inSlope: -0.0020458908 + outSlope: -0.002148138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.005653889 + inSlope: -0.0022436592 + outSlope: -0.0023324224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: 0.005556705 + inSlope: -0.0023324224 + outSlope: -0.0024143266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.0054561077 + inSlope: -0.0024143266 + outSlope: -0.00248945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.0053523807 + inSlope: -0.00248945 + outSlope: -0.002557771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.005136667 + inSlope: -0.0026193615 + outSlope: -0.0026740863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.004911828 + inSlope: -0.0027220515 + outSlope: -0.002763185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.004337036 + inSlope: -0.0047227317 + outSlope: -0.005654023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.003560543 + inSlope: -0.006676559 + outSlope: -0.0067677936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.003278551 + inSlope: -0.0067677936 + outSlope: -0.006579017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.0030044247 + inSlope: -0.006579017 + outSlope: -0.006110324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.0027498289 + inSlope: -0.006110324 + outSlope: -0.005361568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.00252643 + inSlope: -0.005361568 + outSlope: -0.0043327534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.0023458982 + inSlope: -0.0043327534 + outSlope: -0.0030240412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.0022198968 + inSlope: -0.0030240412 + outSlope: -0.0014352724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.0021600937 + inSlope: -0.0014352724 + outSlope: 0.00043351567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.002178157 + inSlope: 0.00043351567 + outSlope: 0.0025822904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.002285752 + inSlope: 0.0025822904 + outSlope: 0.0041878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.0024602439 + inSlope: 0.0041878 + outSlope: 0.004766319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.002658841 + inSlope: 0.004766319 + outSlope: 0.004899163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: 0.002862972 + inSlope: 0.004899163 + outSlope: 0.004586268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.0030540668 + inSlope: 0.004586268 + outSlope: 0.003827734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.003213556 + inSlope: 0.003827734 + outSlope: 0.002623468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.0033228667 + inSlope: 0.002623468 + outSlope: 0.00097353983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 0.003363431 + inSlope: 0.00097353983 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083333 + value: 0.003363431 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: 0.003363431 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333333 + value: 0.003363431 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: 0.003363431 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0.003363431 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.003363431 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00058792246 + inSlope: 0.0009826523 + outSlope: 0.0009826523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0006288663 + inSlope: 0.0009826523 + outSlope: 0.0027651393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00074408046 + inSlope: 0.0027651393 + outSlope: 0.0042733955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.00092213857 + inSlope: 0.0042733955 + outSlope: 0.005507433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0011516149 + inSlope: 0.005507433 + outSlope: 0.00646721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.001421082 + inSlope: 0.00646721 + outSlope: 0.007152814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.0032378458 + inSlope: 0.006467203 + outSlope: 0.0055074487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.003645381 + inSlope: 0.004273393 + outSlope: 0.0027651384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.0038015388 + inSlope: 0.0009826536 + outSlope: -0.00082777935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083333 + value: 0.0036675169 + inSlope: -0.0023887488 + outSlope: -0.0038078122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.0030378108 + inSlope: -0.0062201843 + outSlope: -0.007213529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.002035602 + inSlope: -0.008774504 + outSlope: -0.009342115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.0003958043 + inSlope: -0.010193563 + outSlope: -0.010193569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.000028927325 + inSlope: -0.010193569 + outSlope: -0.010051627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -0.0004477459 + inSlope: -0.010051627 + outSlope: -0.009767843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.000854739 + inSlope: -0.009767843 + outSlope: -0.009342127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0016095979 + inSlope: -0.00877448 + outSlope: -0.00806497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: -0.002246202 + inSlope: -0.00721354 + outSlope: -0.006220188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.00271725 + inSlope: -0.005084958 + outSlope: -0.0038077962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: -0.002875908 + inSlope: -0.0038077962 + outSlope: -0.002388742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.002975439 + inSlope: -0.002388742 + outSlope: -0.0008277806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.0030099298 + inSlope: -0.0008277806 + outSlope: 0.00075408054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.0028893768 + inSlope: 0.00213919 + outSlope: 0.0033395751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: -0.002568758 + inSlope: 0.004355282 + outSlope: 0.005186345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.0015735539 + inSlope: 0.006571428 + outSlope: 0.006663751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.0007598217 + inSlope: 0.0062944386 + outSlope: 0.0058326987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.00051679206 + inSlope: 0.0058326987 + outSlope: 0.005186327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.0003006947 + inSlope: 0.005186327 + outSlope: 0.004355316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.00011922389 + inSlope: 0.004355316 + outSlope: 0.0033395728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.000019925235 + inSlope: 0.0033395728 + outSlope: 0.0021391676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.000109057386 + inSlope: 0.0021391676 + outSlope: 0.0007540975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.00014047799 + inSlope: 0.0007540975 + outSlope: -0.00053317787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.00011826221 + inSlope: -0.00053317787 + outSlope: -0.0014472031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.00005796196 + inSlope: -0.0014472031 + outSlope: -0.0021327322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.00003090154 + inSlope: -0.0021327322 + outSlope: -0.0025897312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.00013880721 + inSlope: -0.0025897312 + outSlope: -0.0028182345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.00025623388 + inSlope: -0.0028182345 + outSlope: -0.0028182524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: -0.00037366062 + inSlope: -0.0028182524 + outSlope: -0.0025897285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.00048156618 + inSlope: -0.0025897285 + outSlope: -0.0021327205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.0005704297 + inSlope: -0.0021327205 + outSlope: -0.0014472093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: -0.00063072983 + inSlope: -0.0014472093 + outSlope: -0.000533181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: -0.0006529458 + inSlope: -0.000533181 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083333 + value: -0.0006529458 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2916667 + value: -0.0006529458 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333333 + value: -0.0006529458 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.375 + value: -0.0006529458 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -0.0006529458 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0006529458 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.001065924 + inSlope: -0.00002942562 + outSlope: -0.00002942562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0010473218 + inSlope: -0.00019073901 + outSlope: -0.0002383161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.00071313744 + inSlope: -0.00058237166 + outSlope: -0.0005777654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.00057605444 + inSlope: -0.00050865015 + outSlope: -0.00048560544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.0005187453 + inSlope: -0.000430317 + outSlope: -0.00039807416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.00047353085 + inSlope: -0.0003243321 + outSlope: -0.00028286243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: 0.00046174493 + inSlope: -0.00028286243 + outSlope: -0.00023834422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: 0.00043803322 + inSlope: -0.00014004094 + outSlope: -0.00008626772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.00043443873 + inSlope: -0.00008626772 + outSlope: -0.000029420284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.00043321287 + inSlope: -0.000029420284 + outSlope: -0.000056979115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.00043083876 + inSlope: -0.000056979115 + outSlope: -0.00017820741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.00042341344 + inSlope: -0.00017820741 + outSlope: -0.00031038732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.00041048063 + inSlope: -0.00031038732 + outSlope: -0.0004534967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.0003662702 + inSlope: -0.0006075532 + outSlope: -0.00077253685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.00033408118 + inSlope: -0.00077253685 + outSlope: -0.00094846037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: 0.00029456205 + inSlope: -0.00094846037 + outSlope: -0.0011353107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.00024725735 + inSlope: -0.0011353107 + outSlope: -0.0013331182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.00019171082 + inSlope: -0.0013331182 + outSlope: -0.0015418468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.00012746708 + inSlope: -0.0015418468 + outSlope: -0.0017615253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.000054070468 + inSlope: -0.0017615253 + outSlope: -0.0016169976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.000013304563 + inSlope: -0.0016169976 + outSlope: -0.001134086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.00006055824 + inSlope: -0.001134086 + outSlope: -0.0007009102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.00008976272 + inSlope: -0.0007009102 + outSlope: -0.00031735032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.00010298568 + inSlope: -0.00031735032 + outSlope: 0.000016495107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.00010229838 + inSlope: 0.000016495107 + outSlope: 0.00030067522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: -0.00008977029 + inSlope: 0.00030067522 + outSlope: 0.0005351596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.000067471934 + inSlope: 0.0005351596 + outSlope: 0.00071997487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.000037472928 + inSlope: 0.00071997487 + outSlope: 0.0008551207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.0000018430339 + inSlope: 0.0008551207 + outSlope: 0.0009405609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.000037347076 + inSlope: 0.0009405609 + outSlope: 0.0009763353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: 0.00011812949 + inSlope: 0.0009624443 + outSlope: 0.00089884584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.00015558147 + inSlope: 0.00089884584 + outSlope: 0.0007855851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.00018831424 + inSlope: 0.0007855851 + outSlope: 0.00062263967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.00021425745 + inSlope: 0.00062263967 + outSlope: 0.0004100124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 0.00023134134 + inSlope: 0.0004100124 + outSlope: 0.00014771434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.00023749612 + inSlope: 0.00014771434 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.00023749618 + inSlope: -0 + outSlope: 4.4703397e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00023749634 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0007641399 + inSlope: -0.000015773177 + outSlope: -0.000015773177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00077417685 + inSlope: -0.000103248945 + outSlope: -0.00012957038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.0009667142 + inSlope: -0.00035716454 + outSlope: -0.00035930137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.0010557991 + inSlope: -0.0003486553 + outSlope: -0.00034221265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.0010975398 + inSlope: -0.00032513766 + outSlope: -0.00031450004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.0011352808 + inSlope: -0.00028887956 + outSlope: -0.0002739575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: -0.0011466957 + inSlope: -0.0002739575 + outSlope: -0.00025759172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: -0.0011766126 + inSlope: -0.00022060295 + outSlope: -0.00019999764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.0011849458 + inSlope: -0.00019999764 + outSlope: -0.00017790751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.0011923587 + inSlope: -0.00017790751 + outSlope: -0.00015447571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.0011987952 + inSlope: -0.00015447571 + outSlope: -0.00012956653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -0.0012041937 + inSlope: -0.00012956653 + outSlope: -0.00010325263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.0012084959 + inSlope: -0.00010325263 + outSlope: -0.00007550604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.0012129365 + inSlope: -0.000031067073 + outSlope: -0.000031067164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.0012142309 + inSlope: -0.000031067164 + outSlope: -0.000008168228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: -0.0012145713 + inSlope: -0.000008168228 + outSlope: -0.000008169993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.0012149117 + inSlope: -0.000008169993 + outSlope: -0.000008170016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.0012152521 + inSlope: -0.000008170016 + outSlope: -0.000008168205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.0012155925 + inSlope: -0.000008168205 + outSlope: -0.000008168252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.0012159328 + inSlope: -0.000008168252 + outSlope: -0.000008169993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.0012162732 + inSlope: -0.000008169993 + outSlope: -0.000008169993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.0012166136 + inSlope: -0.000008169993 + outSlope: -0.000008168252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.001216954 + inSlope: -0.000008168252 + outSlope: -0.000018449986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.0012177227 + inSlope: -0.000018449986 + outSlope: -0.000018449986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -0.0012184915 + inSlope: -0.000018449986 + outSlope: -0.000018448303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: -0.0012192602 + inSlope: -0.000018448303 + outSlope: -0.000018449986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.0012200288 + inSlope: -0.000018449986 + outSlope: -0.000023007944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.0012209875 + inSlope: -0.000023007944 + outSlope: -0.000023008077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.0012219462 + inSlope: -0.000023008077 + outSlope: -0.000023007944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.0012229049 + inSlope: -0.000023007944 + outSlope: -0.000026087115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: -0.001225079 + inSlope: -0.000026089052 + outSlope: -0.000026087115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.0012261659 + inSlope: -0.000026087115 + outSlope: -0.000028440301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.0012273509 + inSlope: -0.000028440301 + outSlope: -0.000028440465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: -0.0012285359 + inSlope: -0.000028440465 + outSlope: -0.000028440301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: -0.0012297209 + inSlope: -0.000028440301 + outSlope: -0.000029845778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.0012309644 + inSlope: -0.000029845778 + outSlope: -0.00002984416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.001242497 + inSlope: -0.000030827465 + outSlope: -0.000030251682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.001261696 + inSlope: -0.0000073242463 + outSlope: -0.0000073242463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00018158692 + inSlope: -0.00008799523 + outSlope: -0.00008799523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00020767166 + inSlope: -0.00022009668 + outSlope: -0.00025428418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.00041406244 + inSlope: -0.00013148539 + outSlope: -0.000081950384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.0003964084 + inSlope: 0.00023959747 + outSlope: 0.0003186789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.0003458675 + inSlope: 0.000491619 + outSlope: 0.0005854749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.00026013047 + inSlope: 0.0007879586 + outSlope: 0.0008965953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: -0.00022277236 + inSlope: 0.0008965953 + outSlope: 0.0010101394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416666 + value: -0.00009410769 + inSlope: 0.0010236035 + outSlope: 0.0009902053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.000052849053 + inSlope: 0.0009902053 + outSlope: 0.00095400185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.000013099015 + inSlope: 0.00095400185 + outSlope: 0.0009150061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.000025026202 + inSlope: 0.0009150061 + outSlope: 0.00087320403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 0.00006140977 + inSlope: 0.00087320403 + outSlope: 0.00082861027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.00009593517 + inSlope: 0.00082861027 + outSlope: 0.00078120304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.00015894353 + inSlope: 0.00073099707 + outSlope: 0.00067800947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.0001871939 + inSlope: 0.00067800947 + outSlope: 0.000622198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: 0.0002131188 + inSlope: 0.000622198 + outSlope: 0.000563599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.00023660212 + inSlope: 0.000563599 + outSlope: 0.0005021994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.00025752708 + inSlope: 0.0005021994 + outSlope: 0.00043799495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.0002757769 + inSlope: 0.00043799495 + outSlope: 0.00037099203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.00029123484 + inSlope: 0.00037099203 + outSlope: 0.00030118733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.00030378433 + inSlope: 0.00030118733 + outSlope: 0.00022858547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.00031330876 + inSlope: 0.00022858547 + outSlope: 0.00015318065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.00031969126 + inSlope: 0.00015318065 + outSlope: 0.00007497832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.00032281535 + inSlope: 0.00007497832 + outSlope: -0.0000060287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.00032256416 + inSlope: -0.0000060287 + outSlope: -0.00008983468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.00031882105 + inSlope: -0.00008983468 + outSlope: -0.00017643806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.00031146946 + inSlope: -0.00017643806 + outSlope: -0.0002658453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.00030039257 + inSlope: -0.0002658453 + outSlope: -0.00029913493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.00028792865 + inSlope: -0.00029913493 + outSlope: -0.00027499386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.00027647056 + inSlope: -0.00027499386 + outSlope: -0.00025169176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833333 + value: 0.00025643225 + inSlope: -0.00022922782 + outSlope: -0.00020759454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.00024778247 + inSlope: -0.00020759454 + outSlope: -0.00018680388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.00023999896 + inSlope: -0.00018680388 + outSlope: -0.00016684386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.00023304715 + inSlope: -0.00016684386 + outSlope: -0.00014772327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 0.000226892 + inSlope: -0.00014772327 + outSlope: -0.00012943421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.0002214989 + inSlope: -0.00012943421 + outSlope: -0.00011198623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.00020232494 + inSlope: 0.000002055015 + outSlope: 0.000002055015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0002427323 + inSlope: 0.000018472445 + outSlope: 0.000018472445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000021828468 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.000021828468 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00299883 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00299883 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000053090378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.000053090378 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000019311008 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.000019311008 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0025961702 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0025961702 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00038391192 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00038391192 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0005545899 + inSlope: 0.000046821533 + outSlope: 0.000046821533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.0004911879 + inSlope: 0.0004422068 + outSlope: 0.0005049635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.00023502293 + inSlope: 0.00081036426 + outSlope: 0.0008240104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.00002845467 + inSlope: 0.0008103574 + outSlope: 0.00079127273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.000004515043 + inSlope: 0.00079127273 + outSlope: 0.00076673925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.00003646248 + inSlope: 0.00076673925 + outSlope: 0.0007367251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00006715937 + inSlope: 0.0007367251 + outSlope: 0.0007012915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.00012389556 + inSlope: 0.0006603762 + outSlope: 0.00061402866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00019394464 + inSlope: 0.0005049347 + outSlope: 0.00044223678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00024047295 + inSlope: 0.00030041352 + outSlope: 0.00022134994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.00025734658 + inSlope: 0.000046812056 + outSlope: 0.000027928972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.00027627192 + inSlope: 0.00020010505 + outSlope: 0.0002593569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.00033469842 + inSlope: 0.0004426838 + outSlope: 0.0005056401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.00035576677 + inSlope: 0.0005056401 + outSlope: 0.0005695354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.0003794974 + inSlope: 0.0005695354 + outSlope: 0.0006343591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: 0.000405929 + inSlope: 0.0006343591 + outSlope: 0.0007001258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.00043510098 + inSlope: 0.0007001258 + outSlope: 0.0007667826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.0004670502 + inSlope: 0.0007667826 + outSlope: 0.0008343863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.0005018164 + inSlope: 0.0008343863 + outSlope: 0.0009029271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.0005394382 + inSlope: 0.0009029271 + outSlope: 0.00083036744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.0005740369 + inSlope: 0.00083036744 + outSlope: 0.0006281087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.0006302656 + inSlope: 0.00027755534 + outSlope: 0.00012925541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.0006308848 + inSlope: -0.0001133553 + outSlope: -0.00020767322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.00061039836 + inSlope: -0.0002840005 + outSlope: -0.00034234038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.00059613417 + inSlope: -0.00034234038 + outSlope: -0.0003826834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.000580189 + inSlope: -0.0003826834 + outSlope: -0.00040504368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.0005145893 + inSlope: -0.00036416668 + outSlope: -0.00031455458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.00048206153 + inSlope: -0.000057785397 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.00048206147 + inSlope: -8.9406793e-10 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: 0.00048206127 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00048206127 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0010460541 + inSlope: 0.000031104682 + outSlope: 0.000031104682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.001067124 + inSlope: 0.00013322351 + outSlope: 0.00014985685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.001141881 + inSlope: 0.00023700524 + outSlope: 0.00024215865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.001203801 + inSlope: 0.00024895358 + outSlope: 0.00024650383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.001214072 + inSlope: 0.00024650383 + outSlope: 0.00024278663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.0012241881 + inSlope: 0.00024278663 + outSlope: 0.00023778486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0012340958 + inSlope: 0.00023778486 + outSlope: 0.0002315124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.0012530738 + inSlope: 0.00022395866 + outSlope: 0.00021518847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.001278657 + inSlope: 0.00019372664 + outSlope: 0.00018110649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.001299505 + inSlope: 0.00015204163 + outSlope: 0.00013559831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.001314189 + inSlope: 0.00009893041 + outSlope: 0.000078646015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.0013206326 + inSlope: -0.000015488878 + outSlope: -0.000015485302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.0013123319 + inSlope: -0.000098691075 + outSlope: -0.00012911772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.0013069519 + inSlope: -0.00012911772 + outSlope: -0.00016082182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.001300251 + inSlope: -0.00016082182 + outSlope: -0.00019377726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: 0.001292177 + inSlope: -0.00019377726 + outSlope: -0.0002045985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.001283652 + inSlope: -0.0002045985 + outSlope: -0.00019265074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.0012756248 + inSlope: -0.00019265074 + outSlope: -0.00018103087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.001268082 + inSlope: -0.00018103087 + outSlope: -0.00016965573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.001261013 + inSlope: -0.00016965573 + outSlope: -0.0001586613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.0012544021 + inSlope: -0.0001586613 + outSlope: -0.00014793786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 0.0012371971 + inSlope: -0.00012743866 + outSlope: -0.00011767186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.001223661 + inSlope: -0.00009900193 + outSlope: -0.00009017033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: 0.0012165031 + inSlope: -0.000081619924 + outSlope: -0.00007339225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.0012134451 + inSlope: -0.00007339225 + outSlope: -0.00006544935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.001210718 + inSlope: -0.00006544935 + outSlope: -0.000054179036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: 0.001202854 + inSlope: -0.000040188585 + outSlope: -0.000024495674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.0012000515 + inSlope: 0.0000062280774 + outSlope: 0.0000062280774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.001201868 + inSlope: 0.0000062280774 + outSlope: 0.000006228113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: 0.0012238666 + inSlope: 0.00001177302 + outSlope: 0.000011771366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.001224357 + inSlope: 0.000011771366 + outSlope: 0.000011771366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0005271861 + inSlope: -0.000004350543 + outSlope: -0.000004350543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.00052272796 + inSlope: -0.00005156278 + outSlope: -0.0000651312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.00047776697 + inSlope: -0.00017498009 + outSlope: -0.00018887033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.0004218194 + inSlope: -0.00025882944 + outSlope: -0.00027291643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.00041044786 + inSlope: -0.00027291643 + outSlope: -0.00028705742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.00039848714 + inSlope: -0.00028705742 + outSlope: -0.00030121906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00038593635 + inSlope: -0.00030121906 + outSlope: -0.0003154245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.000359058 + inSlope: -0.00032965536 + outSlope: -0.00034392657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.00031427748 + inSlope: -0.00037257333 + outSlope: -0.00038694657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00026410638 + inSlope: -0.0004158024 + outSlope: -0.00043028395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.00020850539 + inSlope: -0.0004593435 + outSlope: -0.0004739289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 0.00012585669 + inSlope: -0.0005178885 + outSlope: -0.0005326157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916666 + value: 0.00003339231 + inSlope: -0.0005769902 + outSlope: -0.0005918587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.000008731484 + inSlope: -0.0005918587 + outSlope: -0.000606752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -0.000016549826 + inSlope: -0.000606752 + outSlope: -0.0005518275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166666 + value: -0.000039542614 + inSlope: -0.0005518275 + outSlope: -0.00043607628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.000057712496 + inSlope: -0.00043607628 + outSlope: -0.00033388886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.00007162451 + inSlope: -0.00033388886 + outSlope: -0.00024526072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.00008184373 + inSlope: -0.00024526072 + outSlope: -0.00017018145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.0000889346 + inSlope: -0.00017018145 + outSlope: -0.00010866323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.000093462244 + inSlope: -0.00010866323 + outSlope: -0.000060698272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -0.00009719753 + inSlope: -0.0000026585112 + outSlope: -0.0000026587347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.00009842806 + inSlope: -0.000024215384 + outSlope: -0.000057587138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583333 + value: -0.00010518225 + inSlope: -0.000104513565 + outSlope: -0.00016499711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.00011205714 + inSlope: -0.00016499711 + outSlope: -0.00023903445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.00012201693 + inSlope: -0.00023903445 + outSlope: -0.00032663348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083333 + value: -0.0001758606 + inSlope: -0.00028743554 + outSlope: -0.00025488625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -0.00021079532 + inSlope: -0.00016574947 + outSlope: -0.00013886843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.00023073498 + inSlope: 0.000001105962 + outSlope: 0.0000011059684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: -0.00016371667 + inSlope: 0.00003818006 + outSlope: 0.000023945064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00016271896 + inSlope: 0.000023945064 + outSlope: 0.000023945064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0029990708 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0029990708 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000016063451 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00000016063451 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00005463671 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00005463671 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0003556077 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0003556077 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00003682375 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00003682375 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0026000002 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0026000002 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000011850639 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.000011850639 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.6015975e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 1.6015975e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00006796103 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00006796103 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0028583303 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0028583303 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.9802322e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 2.9802322e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00014242693 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00014242693 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0014556195 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0014556195 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0014599605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0014599605 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00012458116 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00012458116 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00277497 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00277497 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000016862526 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00000016862526 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000054334846 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0000054334846 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0020982698 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.0020982698 + inSlope: -0 + outSlope: 0.0000000035762717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0020982698 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000017039477 + inSlope: 2.5756888e-10 + outSlope: 2.5756888e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.00000016986928 + inSlope: 2.5713184e-10 + outSlope: 2.5756838e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00000016933306 + inSlope: 2.5756988e-10 + outSlope: 2.5756988e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000005433019 + inSlope: 3.352761e-10 + outSlope: 3.352761e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.000005433692 + inSlope: 3.2130568e-10 + outSlope: 3.3527547e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0000054343786 + inSlope: 3.352774e-10 + outSlope: 3.352774e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0014555797 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0014555797 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0014553498 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0014553498 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00012458157 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00012458157 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00279524 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00279524 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.288771e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 8.288771e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.2048985e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -1.2048985e-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_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0020026602 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0020026602 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.9802322e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 2.9802322e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.72529e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -3.72529e-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_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00273719 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00273719 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.655441e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -3.655441e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00019367877 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.00019367877 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.x + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000475085 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0000475085 + inSlope: 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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.z + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0136136385 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0136136385 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0010463829 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0010463829 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0040700077 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0040700077 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0136136385 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0136136385 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0010463829 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0010463829 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0040804865 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0040804865 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -89.98021 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -89.98021 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -90.000206 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -90.000206 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -15.629818 + inSlope: 6.4393616 + outSlope: 6.4393616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -13.527083 + inSlope: 29.648048 + outSlope: 29.144077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -6.46954 + inSlope: 19.34995 + outSlope: 17.579817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.33176246 + inSlope: 38.039597 + outSlope: 38.039593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 12.220559 + inSlope: 29.211458 + outSlope: 29.516308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 14.637719 + inSlope: -15.560219 + outSlope: -15.57296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 10.908998 + inSlope: -37.27224 + outSlope: -37.27122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 9.321519 + inSlope: -33.494118 + outSlope: -33.537434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 6.876253 + inSlope: -30.82824 + outSlope: -31.038755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -3.1128683 + inSlope: -35.999542 + outSlope: -36.003124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -13.517373 + inSlope: -47.724323 + outSlope: -47.306576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -28.149897 + inSlope: -37.72492 + outSlope: -44.442398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -34.403023 + inSlope: -41.470276 + outSlope: -41.623196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -33.149475 + inSlope: 52.64371 + outSlope: 52.64371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -27.000715 + inSlope: 8.333641 + outSlope: 8.339235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -26.996672 + inSlope: 0.013791773 + outSlope: 0.013829549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -26.981077 + inSlope: 0.013870239 + outSlope: 0.013870239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -39.889194 + inSlope: 16.326141 + outSlope: 16.326141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -34.319805 + inSlope: 81.60489 + outSlope: 81.610344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -11.684521 + inSlope: 111.724525 + outSlope: 111.69592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 5.168427 + inSlope: -18.26713 + outSlope: -18.267128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -14.949999 + inSlope: -100.354904 + outSlope: -100.24745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -35.516113 + inSlope: -25.742609 + outSlope: -25.775757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -36.107002 + inSlope: -3.730774 + outSlope: -3.769962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -36.482113 + inSlope: -42.841503 + outSlope: -42.77978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -43.00425 + inSlope: -82.93658 + outSlope: -82.55026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -66.63007 + inSlope: -53.33486 + outSlope: -53.332764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -65.106155 + inSlope: 64.63733 + outSlope: 65.024475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -36.01486 + inSlope: 95.36083 + outSlope: 91.2117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -31.425726 + inSlope: -43.0399 + outSlope: -42.938843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -48.33784 + inSlope: -69.52152 + outSlope: -69.52152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -52.49906 + inSlope: -2.0602102 + outSlope: -2.0277634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -52.488136 + inSlope: 0.037353534 + outSlope: 0.037434895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -52.44601 + inSlope: 0.037465412 + outSlope: 0.037465412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 80.49676 + inSlope: 3.4293823 + outSlope: 3.4293823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 81.794174 + inSlope: 24.549683 + outSlope: 25.084204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 91.765686 + inSlope: 63.813866 + outSlope: 64.10114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 103.25163 + inSlope: 15.599488 + outSlope: 15.599486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 101.627144 + inSlope: -23.557903 + outSlope: -23.192225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 98.56013 + inSlope: 1.1655576 + outSlope: 1.0171509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 98.46976 + inSlope: -3.6635742 + outSlope: -3.7045934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 98.26234 + inSlope: -8.547921 + outSlope: -8.365261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 97.471306 + inSlope: -6.5036283 + outSlope: -4.9249363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 96.50189 + inSlope: -1.406878 + outSlope: -1.640625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 90.527405 + inSlope: -50.854614 + outSlope: -51.30553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 62.486713 + inSlope: -164.45755 + outSlope: -161.34018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 45.644497 + inSlope: -39.43643 + outSlope: -39.30048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 59.135876 + inSlope: 92.35604 + outSlope: 92.35604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 67.460266 + inSlope: 8.669857 + outSlope: 8.649384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 67.45531 + inSlope: -0.016950345 + outSlope: -0.017008463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 67.43619 + inSlope: -0.016927084 + outSlope: -0.016927084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 59.691696 + inSlope: 1.6757288 + outSlope: 1.6757288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 69.389305 + inSlope: 72.786064 + outSlope: 75.85368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 79.37261 + inSlope: -64.657074 + outSlope: -64.65706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 74.0543 + inSlope: 11.194517 + outSlope: 11.152616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 75.428154 + inSlope: -27.63054 + outSlope: -27.212435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 63.44699 + inSlope: -147.44221 + outSlope: -147.22192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 41.89277 + inSlope: -157.03436 + outSlope: -157.06784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 36.03923 + inSlope: -67.023254 + outSlope: -67.023254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 36.312862 + inSlope: 21.456594 + outSlope: 21.451296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 56.096252 + inSlope: 153.2454 + outSlope: 154.37442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 79.8164 + inSlope: -51.75262 + outSlope: -66.42761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 58.491497 + inSlope: -126.519356 + outSlope: -126.53035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 37.460846 + inSlope: -67.39011 + outSlope: -67.405106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 30.934397 + inSlope: 51.59651 + outSlope: 51.598194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 48.00991 + inSlope: 114.967064 + outSlope: 115.243835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 56.99958 + inSlope: 14.304749 + outSlope: 14.301458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: 57.010635 + inSlope: 0.055371113 + outSlope: 0.055689324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 57.073338 + inSlope: 0.046966556 + outSlope: 0.046966556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -156.58968 + inSlope: -2.061192 + outSlope: -2.061192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -148.41444 + inSlope: 205.12305 + outSlope: 179.77832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -54.32908 + inSlope: 367.5003 + outSlope: 367.50018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -26.545904 + inSlope: -25.50665 + outSlope: -26.02169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -30.337223 + inSlope: 66.02866 + outSlope: 70.71024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -11.690102 + inSlope: 77.3812 + outSlope: 82.03143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -2.6689558 + inSlope: 27.33387 + outSlope: 29.718801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -1.6030222 + inSlope: 10.125739 + outSlope: 10.125739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -1.6909847 + inSlope: -3.0230284 + outSlope: -3.1004786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -7.4749374 + inSlope: -122.86942 + outSlope: -112.95116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -72.18442 + inSlope: -906.684 + outSlope: -835.1946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -158.00381 + inSlope: -58.389465 + outSlope: -56.4307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -166.7662 + inSlope: -19.292715 + outSlope: -19.418123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -169.17793 + inSlope: 12.9454155 + outSlope: 12.907007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -162.32823 + inSlope: 63.471832 + outSlope: 61.367798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -158.28381 + inSlope: 6.0322266 + outSlope: 6.087527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: -158.2814 + inSlope: 0.0008789066 + outSlope: 0.00083344564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -158.26187 + inSlope: 0.03633065 + outSlope: 0.03633065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -154.42084 + inSlope: -2.584455 + outSlope: -2.584455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -147.58447 + inSlope: 196.08115 + outSlope: 170.70514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -55.526073 + inSlope: 361.10168 + outSlope: 361.10156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -28.095968 + inSlope: -24.340122 + outSlope: -24.855413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -31.688046 + inSlope: 65.22611 + outSlope: 69.90865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -13.366861 + inSlope: 73.24626 + outSlope: 77.9138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -4.2886744 + inSlope: 30.154747 + outSlope: 32.491615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -3.0427916 + inSlope: 11.701979 + outSlope: 11.701979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -3.1843352 + inSlope: -4.040123 + outSlope: -4.1122713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -9.4786825 + inSlope: -123.8436 + outSlope: -113.93102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -73.14193 + inSlope: -893.6671 + outSlope: -822.1829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -155.78026 + inSlope: -38.73405 + outSlope: -36.689556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -160.50998 + inSlope: -1.7662345 + outSlope: -1.9634773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -161.48851 + inSlope: -1.9153572 + outSlope: -2.0047293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -158.09364 + inSlope: 42.773052 + outSlope: 40.558228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -155.75285 + inSlope: 3.3398438 + outSlope: 3.397633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9166667 + value: -155.74513 + inSlope: 0.038891617 + outSlope: 0.038982525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -155.70126 + inSlope: 0.03276957 + outSlope: 0.03276957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -75.182655 + inSlope: -4.408081 + outSlope: -4.408081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -72.84926 + inSlope: 55.14331 + outSlope: 55.20146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -51.256695 + inSlope: 122.981995 + outSlope: 122.981995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -34.849842 + inSlope: 24.010454 + outSlope: 24.271034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -30.900219 + inSlope: 44.499767 + outSlope: 44.467667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -10.060372 + inSlope: 104.97319 + outSlope: 104.97384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.82796645 + inSlope: 30.326803 + outSlope: 30.27138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -0.51997256 + inSlope: -32.877712 + outSlope: -32.406254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -29.192675 + inSlope: -135.66112 + outSlope: -135.99716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -68.59385 + inSlope: -162.11133 + outSlope: -162.41603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -81.562454 + inSlope: 112.55727 + outSlope: 112.831345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -71.339066 + inSlope: -8.676461 + outSlope: -11.786133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -75.313995 + inSlope: 62.493896 + outSlope: 70.85025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -62.602627 + inSlope: 44.408295 + outSlope: 44.262726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -61.60897 + inSlope: 0.047607422 + outSlope: 0.04779053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -61.545185 + inSlope: 0.04786778 + outSlope: 0.04786778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.446233 + inSlope: 3.3870277 + outSlope: 3.3870277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 4.54896 + inSlope: -60.154663 + outSlope: -60.983494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -6.079377 + inSlope: -23.11588 + outSlope: -23.11588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -4.1515374 + inSlope: 27.3962 + outSlope: 26.931908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 7.6130376 + inSlope: 22.287172 + outSlope: 22.454584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 6.7964845 + inSlope: -19.435072 + outSlope: -20.446438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 3.8969002 + inSlope: -19.293549 + outSlope: -19.386053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 2.361286 + inSlope: -21.029049 + outSlope: -21.716848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.91983026 + inSlope: 6.32483 + outSlope: 8.221984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 7.230738 + inSlope: 81.85974 + outSlope: 73.03273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 165.5099 + inSlope: 94.969925 + outSlope: 97.75452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 150.23482 + inSlope: -266.73978 + outSlope: -265.4037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 84.715096 + inSlope: -595.43134 + outSlope: -563.5414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 29.88068 + inSlope: -69.95658 + outSlope: -71.07724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 28.317562 + inSlope: -0.0035705566 + outSlope: -0.0035619738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 28.313023 + inSlope: -0.003098488 + outSlope: -0.003098488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 109.15192 + inSlope: -10.69043 + outSlope: -10.69043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 103.68422 + inSlope: -13.153015 + outSlope: -12.267114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 98.00901 + inSlope: -47.247032 + outSlope: -47.247032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 86.82898 + inSlope: -50.19609 + outSlope: -49.7982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 74.619965 + inSlope: -16.687918 + outSlope: -16.872803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 76.6453 + inSlope: 23.61905 + outSlope: 24.492004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 80.017944 + inSlope: 25.056152 + outSlope: 25.127918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 82.1341 + inSlope: 28.454302 + outSlope: 28.971436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 96.07287 + inSlope: 47.618122 + outSlope: 46.726776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 105.48935 + inSlope: -0.6236572 + outSlope: 8.531536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -30.982096 + inSlope: 42.640022 + outSlope: 39.832516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 5.168916 + inSlope: 303.12183 + outSlope: 301.80206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 63.849083 + inSlope: 501.22504 + outSlope: 469.31882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 106.22797 + inSlope: 39.100872 + outSlope: 40.2583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 107.17263 + inSlope: 0.0067749023 + outSlope: 0.006952286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 107.18162 + inSlope: 0.006299973 + outSlope: 0.006299973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -13.3639965 + inSlope: -7.953415 + outSlope: -7.953415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -16.681734 + inSlope: -50.819412 + outSlope: -50.707905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -26.153254 + inSlope: -23.964579 + outSlope: -27.192398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -25.486677 + inSlope: 57.962723 + outSlope: 57.962723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -16.342567 + inSlope: 66.64691 + outSlope: 66.02043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -10.866025 + inSlope: 102.0338 + outSlope: 102.24273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 6.173687 + inSlope: 132.79623 + outSlope: 133.43892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 14.915659 + inSlope: 40.717716 + outSlope: 40.717747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 11.445709 + inSlope: -111.41567 + outSlope: -111.294014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -7.445826 + inSlope: -148.23967 + outSlope: -150.27242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -18.683088 + inSlope: -102.60149 + outSlope: -98.88762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -26.521618 + inSlope: -18.802826 + outSlope: -19.840446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -27.078453 + inSlope: 14.672763 + outSlope: 14.672805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -25.307692 + inSlope: 103.09676 + outSlope: 103.09676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -18.13795 + inSlope: 134.4791 + outSlope: 134.47871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -14.3609295 + inSlope: 92.588066 + outSlope: 94.57634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -6.0181494 + inSlope: -27.774696 + outSlope: -27.774696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -17.743404 + inSlope: -31.6212 + outSlope: -32.029633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -14.008459 + inSlope: 100.32912 + outSlope: 99.091896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -4.243151 + inSlope: 32.538826 + outSlope: 32.937214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -6.5781493 + inSlope: -1.5714928 + outSlope: -1.5714883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -3.6868339 + inSlope: 43.576466 + outSlope: 43.576466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -3.3604958 + inSlope: -42.086945 + outSlope: -42.08719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -7.3652835 + inSlope: -106.65434 + outSlope: -107.6967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -21.383821 + inSlope: -89.47627 + outSlope: -89.26631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -30.899273 + inSlope: -2.4659488 + outSlope: -2.9561462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -25.733725 + inSlope: 63.929947 + outSlope: 64.35413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -18.210428 + inSlope: 8.887558 + outSlope: 8.881764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -18.253265 + inSlope: -0.14674604 + outSlope: -0.14660645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -18.41782 + inSlope: -0.14557903 + outSlope: -0.14557903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 69.6086 + inSlope: 0.09448242 + outSlope: 0.09448242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 69.90571 + inSlope: 33.18219 + outSlope: 33.42631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 94.91627 + inSlope: 266.36884 + outSlope: 266.1568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 132.31401 + inSlope: 287.82092 + outSlope: 287.82092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 160.94707 + inSlope: 152.19324 + outSlope: 152.95444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 171.80986 + inSlope: 114.062836 + outSlope: 113.555786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -172.93558 + inSlope: 155.15479 + outSlope: 154.44627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -158.36678 + inSlope: 165.67155 + outSlope: 165.67168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -150.9736 + inSlope: -23.761236 + outSlope: -24.18053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -169.8026 + inSlope: -239.86916 + outSlope: -238.33269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 167.48503 + inSlope: -290.38596 + outSlope: -292.41394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 139.71179 + inSlope: -104.93262 + outSlope: -104.52812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 137.24028 + inSlope: -19.618248 + outSlope: -19.618305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 138.057 + inSlope: 141.44252 + outSlope: 141.44252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 148.59865 + inSlope: 15.377578 + outSlope: 15.377534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 140.11551 + inSlope: -198.84557 + outSlope: -195.56493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 112.333 + inSlope: -111.23591 + outSlope: -111.23591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 106.9715 + inSlope: 58.525284 + outSlope: 58.219482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 119.87234 + inSlope: 133.04315 + outSlope: 134.46738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 129.67992 + inSlope: -20.425222 + outSlope: -19.80727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 124.91347 + inSlope: 5.659063 + outSlope: 5.6590466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 129.76651 + inSlope: 72.793076 + outSlope: 72.793076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 131.30258 + inSlope: -7.9628754 + outSlope: -7.962921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 129.23222 + inSlope: -40.56058 + outSlope: -37.319458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 127.74415 + inSlope: 12.881653 + outSlope: 14.044778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 125.77716 + inSlope: -49.847694 + outSlope: -49.819336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 118.76588 + inSlope: -34.52362 + outSlope: -33.27716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 117.309746 + inSlope: 2.5923603 + outSlope: 2.6101177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 117.2645 + inSlope: -0.15545663 + outSlope: -0.15561931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 117.08903 + inSlope: -0.15692139 + outSlope: -0.15692139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.54148036 + inSlope: -3.7728724 + outSlope: -3.7728724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.8493758 + inSlope: -27.242546 + outSlope: -27.513418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -11.804596 + inSlope: -110.120895 + outSlope: -109.377686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -25.614492 + inSlope: -93.08702 + outSlope: -93.08702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -34.8269 + inSlope: -38.53354 + outSlope: -39.91842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -37.322136 + inSlope: -21.091833 + outSlope: -19.624695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -38.759636 + inSlope: 26.835754 + outSlope: 24.258625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -34.719284 + inSlope: 70.80466 + outSlope: 70.8047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -29.842638 + inSlope: 34.459793 + outSlope: 34.7117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -26.304602 + inSlope: 60.51317 + outSlope: 56.02614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -20.363747 + inSlope: 100.20008 + outSlope: 104.16815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -9.79194 + inSlope: 45.25802 + outSlope: 44.64348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -8.821758 + inSlope: -5.226461 + outSlope: -5.2264757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -10.215311 + inSlope: -85.291756 + outSlope: -85.291756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -15.30764 + inSlope: -26.89071 + outSlope: -26.890635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -13.626339 + inSlope: 38.75063 + outSlope: 31.512573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -8.396294 + inSlope: 16.732594 + outSlope: 16.732594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -12.424948 + inSlope: -59.59882 + outSlope: -59.29637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -21.263037 + inSlope: -82.53282 + outSlope: -84.43518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -31.051537 + inSlope: -158.52412 + outSlope: -158.51584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -38.64735 + inSlope: -199.74948 + outSlope: -199.74892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -47.66337 + inSlope: -184.78914 + outSlope: -184.78914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -54.248 + inSlope: -139.38768 + outSlope: -139.38737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -59.23281 + inSlope: -127.81433 + outSlope: -127.22937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -75.08761 + inSlope: -91.85596 + outSlope: -92.42299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -75.61041 + inSlope: 94.5244 + outSlope: 94.50952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -58.723595 + inSlope: 131.41406 + outSlope: 130.60143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -46.77147 + inSlope: 6.0586824 + outSlope: 6.0611606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -46.6731 + inSlope: 0.33763358 + outSlope: 0.33765665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -46.293236 + inSlope: 0.33803305 + outSlope: 0.33803305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.43519306 + inSlope: -0.13822174 + outSlope: -0.13822174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.4294254 + inSlope: -0.13823247 + outSlope: -0.13833012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.41787505 + inSlope: -0.13780119 + outSlope: -0.13729046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.39480466 + inSlope: -0.13867985 + outSlope: -0.13867988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.37171695 + inSlope: -0.13673635 + outSlope: -0.1377915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.36016554 + inSlope: -0.13832258 + outSlope: -0.13835764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.34286207 + inSlope: -0.13835764 + outSlope: -0.13835764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.32554308 + inSlope: -0.13761878 + outSlope: -0.13776365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.31400734 + inSlope: -0.13830975 + outSlope: -0.13830966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 0.3024569 + inSlope: -0.1366778 + outSlope: -0.13712539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.29668963 + inSlope: -0.13716616 + outSlope: -0.13559955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.28515524 + inSlope: -0.13729256 + outSlope: -0.13729256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.2736047 + inSlope: -0.13840407 + outSlope: -0.13840427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.26206827 + inSlope: -0.13727774 + outSlope: -0.13722584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 0.25629985 + inSlope: -0.13718292 + outSlope: -0.13718332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.25053144 + inSlope: -0.13494314 + outSlope: -0.13494314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.24474786 + inSlope: -0.13161182 + outSlope: -0.13161145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 0.23898004 + inSlope: -0.13820323 + outSlope: -0.13840738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 0.17550369 + inSlope: -0.13840874 + outSlope: -0.13821825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 0.1697359 + inSlope: -0.1382204 + outSlope: -0.1382208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.16396803 + inSlope: -0.13602032 + outSlope: -0.13602032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.15818575 + inSlope: -0.1316837 + outSlope: -0.13168333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.1524184 + inSlope: -0.13721082 + outSlope: -0.13721082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.14665098 + inSlope: -0.13723978 + outSlope: -0.13783403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.13511634 + inSlope: -0.13786997 + outSlope: -0.13695717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.117798574 + inSlope: -0.13807887 + outSlope: -0.13752088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.08317666 + inSlope: -0.13825661 + outSlope: -0.13844565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.060089715 + inSlope: -0.092295974 + outSlope: -0.092291415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0.04660092 + inSlope: -0.046148542 + outSlope: -0.046144117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0054163835 + inSlope: -0.046143875 + outSlope: -0.046143875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 128.22536 + inSlope: 54.943726 + outSlope: 54.943726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 130.51466 + inSlope: 95.50964 + outSlope: 95.514595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 143.42421 + inSlope: 170.03706 + outSlope: 169.74068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 159.77876 + inSlope: -23.507719 + outSlope: -23.507723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 136.03185 + inSlope: -202.19157 + outSlope: -202.68839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 122.242645 + inSlope: -83.87292 + outSlope: -83.843994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 119.9975 + inSlope: -27.35083 + outSlope: -27.35083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 108.45526 + inSlope: -147.47607 + outSlope: -147.54861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 99.7581 + inSlope: 53.99397 + outSlope: 53.99393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 119.88578 + inSlope: 351.09515 + outSlope: 351.5557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 135.91957 + inSlope: 368.19287 + outSlope: 367.3733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 161.29628 + inSlope: 198.11472 + outSlope: 198.11472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 168.00478 + inSlope: -49.67521 + outSlope: -49.675278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 153.39484 + inSlope: -276.1702 + outSlope: -276.332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 140.0399 + inSlope: -373.7311 + outSlope: -373.73218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 122.15427 + inSlope: -675.17426 + outSlope: -675.17426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 83.256355 + inSlope: -453.09253 + outSlope: -453.09344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 83.256355 + inSlope: -0.00054931536 + outSlope: -0.000049937862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 83.25636 + inSlope: 0.0002996272 + outSlope: -0.0010986307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 83.25638 + inSlope: 139.76341 + outSlope: 139.76381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 94.91453 + inSlope: 596.94653 + outSlope: 596.94653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 133.40761 + inSlope: 590.94525 + outSlope: 590.9436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 145.4007 + inSlope: 247.34132 + outSlope: 247.34132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 154.06473 + inSlope: 236.50223 + outSlope: 236.37767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 175.33017 + inSlope: 224.00046 + outSlope: 223.68164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: -165.45287 + inSlope: 100.879395 + outSlope: 100.73236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -158.32808 + inSlope: -47.713623 + outSlope: -47.72239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -166.80057 + inSlope: -11.637537 + outSlope: -11.637039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -166.8938 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -166.8938 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 179.99998 + inSlope: 0.005493164 + outSlope: 0.005493164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 179.99998 + inSlope: 0.0010986328 + outSlope: -0.0016479493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 179.99998 + inSlope: -0.006042481 + outSlope: -0.011260985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 179.99998 + inSlope: -0.00027465817 + outSlope: -0.00027465823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 179.99998 + inSlope: 0.014556886 + outSlope: 0.0071411123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 179.99998 + inSlope: 0.0071411123 + outSlope: 0.0076904297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 180 + inSlope: 0.0007324219 + outSlope: 0.0007324219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 180 + inSlope: 0.0073242188 + outSlope: 0.004394532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 180 + inSlope: 0.004394532 + outSlope: 0.0043945294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 180 + inSlope: -0.010986323 + outSlope: -0.0043945354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 179.99998 + inSlope: -0.007690437 + outSlope: -0.012634272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 179.99998 + inSlope: -0.009338374 + outSlope: -0.009338374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 179.99998 + inSlope: -0.0016479484 + outSlope: -0.0016479508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 179.99998 + inSlope: 0.0071411203 + outSlope: 0.005493154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 179.99998 + inSlope: 0.005493154 + outSlope: 0.005493169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 180 + inSlope: -0.0021972677 + outSlope: -0.0021972677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -180 + inSlope: 0.030761749 + outSlope: 0.030761661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -180 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -180 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -180 + inSlope: 0.005493154 + outSlope: 0.005493169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 180 + inSlope: 0.008789071 + outSlope: 0.008789071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 179.99998 + inSlope: -0.025268579 + outSlope: -0.025268506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 179.99998 + inSlope: -0.0076904153 + outSlope: -0.0076904153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 179.99998 + inSlope: -0.0032958922 + outSlope: -0.006042486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 179.99998 + inSlope: -0.008239754 + outSlope: -0.012084961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 179.99998 + inSlope: -0.005493164 + outSlope: -0.010803223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 179.99998 + inSlope: 0.0045776367 + outSlope: 0.003570555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 179.99998 + inSlope: 0.0013732903 + outSlope: 0.0014125287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 179.99998 + inSlope: 0.00015694763 + outSlope: 0.000040690105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 179.99998 + inSlope: 0.000040690105 + outSlope: 0.000040690105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -71.71055 + inSlope: 0.041748047 + outSlope: 0.041748047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -71.69645 + inSlope: 0.16864014 + outSlope: 0.028564453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -71.84496 + inSlope: -7.7025146 + outSlope: -7.8903813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -76.21346 + inSlope: -35.43201 + outSlope: -36.115356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -79.798065 + inSlope: -13.299316 + outSlope: -13.625237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -80.2547 + inSlope: -10.878657 + outSlope: -10.312869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -79.014946 + inSlope: 51.576427 + outSlope: 51.75586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -71.0051 + inSlope: 55.78784 + outSlope: 55.896763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -67.558586 + inSlope: 21.442556 + outSlope: 21.629904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -67.04886 + inSlope: 3.3310578 + outSlope: 3.5672607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -68.97636 + inSlope: -40.529297 + outSlope: -40.69444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -73.97253 + inSlope: -37.755596 + outSlope: -37.755596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -73.82318 + inSlope: 79.558556 + outSlope: 68.001045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -70.94219 + inSlope: 81.5461 + outSlope: 81.5461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -68.00812 + inSlope: 68.146065 + outSlope: 68.14477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -65.89341 + inSlope: 35.635185 + outSlope: 35.63419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -65.50313 + inSlope: -10.814952 + outSlope: -10.814952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -67.0747 + inSlope: -33.10074 + outSlope: -33.100643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -68.93295 + inSlope: -40.20659 + outSlope: -40.61759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -71.539246 + inSlope: -24.360008 + outSlope: -24.361073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -73.115906 + inSlope: -9.387813 + outSlope: -9.387813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -71.47719 + inSlope: 56.375767 + outSlope: 56.375847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -66.93271 + inSlope: 42.949993 + outSlope: 43.31653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -65.23917 + inSlope: -10.048828 + outSlope: -9.597638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -65.83096 + inSlope: -12.94187 + outSlope: -12.941907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -65.72054 + inSlope: 19.115131 + outSlope: 19.115131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -63.46584 + inSlope: 107.56422 + outSlope: 107.56611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -58.7497 + inSlope: 127.61722 + outSlope: 134.02687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -50.45746 + inSlope: 105.94346 + outSlope: 107.915405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -36.68075 + inSlope: 82.81778 + outSlope: 83.14168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -35.416084 + inSlope: -70.26509 + outSlope: -70.34088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -48.553535 + inSlope: -102.88733 + outSlope: -102.88733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -57.43333 + inSlope: -24.76474 + outSlope: -24.76474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -57.841038 + inSlope: -0.17642212 + outSlope: -0.17597868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -58.07413 + inSlope: -0.17227079 + outSlope: -0.17227079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 115.95905 + inSlope: 21.402191 + outSlope: 21.402191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 119.10751 + inSlope: 62.796753 + outSlope: 62.77954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 128.9539 + inSlope: 87.31384 + outSlope: 87.31907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 145.76938 + inSlope: 137.88777 + outSlope: 131.68286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 159.90408 + inSlope: 47.45874 + outSlope: 43.582745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 159.77933 + inSlope: 127.2348 + outSlope: 129.78043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 179.32886 + inSlope: 70.91896 + outSlope: 65.65283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 171.88394 + inSlope: -97.743164 + outSlope: -99.128494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 163.69316 + inSlope: -47.027504 + outSlope: -46.78752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 163.02658 + inSlope: 31.01883 + outSlope: 30.769043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 173.30045 + inSlope: -28.117676 + outSlope: -25.917835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 151.58109 + inSlope: -609.9266 + outSlope: -609.9266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 84.713524 + inSlope: -749.92944 + outSlope: -788.5351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 51.88039 + inSlope: -682.398 + outSlope: -682.398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 23.549513 + inSlope: -595.8 + outSlope: -595.7994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -0.8832257 + inSlope: -504.23514 + outSlope: -504.2355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -20.555143 + inSlope: -496.55627 + outSlope: -496.55627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -43.448605 + inSlope: -271.4551 + outSlope: -271.45435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: -42.388367 + inSlope: 50.244778 + outSlope: 47.877365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -34.640717 + inSlope: 84.84145 + outSlope: 84.84188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -32.613243 + inSlope: -104.01328 + outSlope: -104.01328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -49.675804 + inSlope: -200.98709 + outSlope: -200.98738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -64.68636 + inSlope: -142.57521 + outSlope: -140.20825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -80.13321 + inSlope: -33.5614 + outSlope: -34.22015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: -78.77901 + inSlope: 226.00262 + outSlope: 226.00327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -61.442932 + inSlope: 689.39056 + outSlope: 689.39056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -22.06047 + inSlope: 728.6502 + outSlope: 728.6503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 2.4379916 + inSlope: 432.57242 + outSlope: 414.2661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 28.33416 + inSlope: 234.5641 + outSlope: 228.80658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 48.9847 + inSlope: 73.293365 + outSlope: 72.1548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 52.955494 + inSlope: -13.114991 + outSlope: -12.488983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 46.206608 + inSlope: -118.09433 + outSlope: -118.09433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 31.893682 + inSlope: -61.391373 + outSlope: -61.391373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 30.910295 + inSlope: -0.5207977 + outSlope: -0.5219236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 30.210184 + inSlope: -0.5306955 + outSlope: -0.5306955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -31.898983 + inSlope: 17.875168 + outSlope: 17.875168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -29.150959 + inSlope: 58.24196 + outSlope: 58.227997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -20.09585 + inSlope: 59.87535 + outSlope: 59.731743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -25.15357 + inSlope: -177.54062 + outSlope: -171.35692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -52.045277 + inSlope: -163.00626 + outSlope: -159.23988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -56.303566 + inSlope: -211.71413 + outSlope: -214.23564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -80.53982 + inSlope: -121.1644 + outSlope: -115.92554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -82.436066 + inSlope: -21.407959 + outSlope: -19.9204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -86.19348 + inSlope: -81.89864 + outSlope: -82.12068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -89.989044 + inSlope: -81.57796 + outSlope: -81.3197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -91.65072 + inSlope: 126.769775 + outSlope: 124.684326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -66.63153 + inSlope: 539.81354 + outSlope: 539.81354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -16.56643 + inSlope: 434.13855 + outSlope: 472.78336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 1.0679154 + inSlope: 298.27368 + outSlope: 298.27368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 12.495804 + inSlope: 194.82404 + outSlope: 194.82458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 20.331661 + inSlope: 142.1477 + outSlope: 142.14812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 26.374691 + inSlope: 122.69021 + outSlope: 122.69021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 31.693008 + inSlope: 169.71147 + outSlope: 169.71098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166667 + value: 39.569878 + inSlope: 209.60611 + outSlope: 211.61473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 60.007267 + inSlope: 291.7833 + outSlope: 291.78287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 89.6487 + inSlope: 445.57394 + outSlope: 445.57394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 128.89313 + inSlope: 347.35898 + outSlope: 347.35947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 144.93729 + inSlope: 57.494804 + outSlope: 55.045166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 140.9113 + inSlope: -136.52234 + outSlope: -136.16759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9166667 + value: 133.05931 + inSlope: -267.59457 + outSlope: -267.59534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 118.74395 + inSlope: -404.20004 + outSlope: -404.20004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 100.240776 + inSlope: -379.35333 + outSlope: -379.35443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 84.10207 + inSlope: -261.8647 + outSlope: -243.02852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 69.413795 + inSlope: -121.38064 + outSlope: -115.15521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 56.13768 + inSlope: -52.813477 + outSlope: -51.573647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 55.21325 + inSlope: 49.8319 + outSlope: 49.363953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 66.65172 + inSlope: 136.47437 + outSlope: 136.47437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 80.42999 + inSlope: 49.713135 + outSlope: 49.713135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 81.01911 + inSlope: 0.6055298 + outSlope: 0.6068402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 81.83251 + inSlope: 0.6156636 + outSlope: 0.6156636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 29.426844 + inSlope: -2.3504837 + outSlope: -2.3504837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 26.26313 + inSlope: -11.044829 + outSlope: -10.611803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 20.592821 + inSlope: -7.587972 + outSlope: -7.587973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 2.7636032 + inSlope: -41.334045 + outSlope: -41.706646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -5.6057553 + inSlope: -35.85658 + outSlope: -35.85654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -12.329899 + inSlope: -23.612183 + outSlope: -23.69783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -12.264832 + inSlope: 13.886719 + outSlope: 13.759006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -9.391288 + inSlope: -1.0766003 + outSlope: -1.0667036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -9.494087 + inSlope: 0.00007847375 + outSlope: 0.000019618446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -9.494087 + inSlope: 0.000019618446 + outSlope: 0.000019618446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -11.638364 + inSlope: 5.7018833 + outSlope: 5.7018833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -2.0241318 + inSlope: 33.667328 + outSlope: 33.676277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 7.2925663 + inSlope: -16.875776 + outSlope: -16.875778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -12.844387 + inSlope: -32.812153 + outSlope: -32.546623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -18.608799 + inSlope: -22.7355 + outSlope: -22.735476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -23.028273 + inSlope: -13.211956 + outSlope: -13.034752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -19.043085 + inSlope: 49.561455 + outSlope: 49.544456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -2.9249249 + inSlope: 16.159777 + outSlope: 16.160707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -2.547786 + inSlope: -0.00004659379 + outSlope: -0.0000116484525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -2.5477862 + inSlope: -0.000011035376 + outSlope: -0.000011035376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 34.794968 + inSlope: -0.72553706 + outSlope: -0.72553706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 30.118929 + inSlope: -22.387512 + outSlope: -22.523445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 11.012416 + inSlope: -29.761204 + outSlope: -29.761206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 3.4559705 + inSlope: 6.758461 + outSlope: 5.124578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 4.374013 + inSlope: -7.025169 + outSlope: -7.025161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -6.8210673 + inSlope: -61.47341 + outSlope: -61.460182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -9.607345 + inSlope: 10.149342 + outSlope: 10.305857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -5.24405 + inSlope: 5.1633096 + outSlope: 5.165466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -5.1302276 + inSlope: -0.00006375992 + outSlope: -0.000015939988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -5.130226 + inSlope: 0.000019618446 + outSlope: 0.000019618446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.232539 + inSlope: -5.4653893 + outSlope: -5.4653893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -22.352211 + inSlope: -54.547394 + outSlope: -54.40076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -37.483887 + inSlope: -22.225655 + outSlope: -22.225655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -37.170986 + inSlope: 21.082253 + outSlope: 20.824356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -34.628407 + inSlope: -1.6336212 + outSlope: -1.5881562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -31.108833 + inSlope: 33.080112 + outSlope: 33.96917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -15.640355 + inSlope: 55.89832 + outSlope: 58.121895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -8.384722 + inSlope: 3.6735888 + outSlope: 2.7189233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -12.329027 + inSlope: -12.448359 + outSlope: -12.507362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -14.011511 + inSlope: -3.1932907 + outSlope: -3.4992843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -13.63805 + inSlope: 2.925935 + outSlope: 2.9259317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -13.497782 + inSlope: 0.0021148666 + outSlope: 0.0022548556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -13.494874 + inSlope: 0.0022349206 + outSlope: 0.0022349206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 57.33636 + inSlope: -11.54512 + outSlope: -11.54512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 44.470528 + inSlope: -98.47275 + outSlope: -98.784424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 3.9830074 + inSlope: -174.50389 + outSlope: -174.50389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -39.192722 + inSlope: -93.35612 + outSlope: -93.668655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -46.016068 + inSlope: 35.31372 + outSlope: 35.324673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -7.3600755 + inSlope: 118.139496 + outSlope: 119.14745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 24.555588 + inSlope: 96.42101 + outSlope: 95.91094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 38.852463 + inSlope: 78.57396 + outSlope: 78.5296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 53.354053 + inSlope: 51.440998 + outSlope: 51.432816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 61.859936 + inSlope: 19.565231 + outSlope: 19.534853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 64.02638 + inSlope: 3.5369399 + outSlope: 3.5369358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 64.13442 + inSlope: 0.01856688 + outSlope: 0.01865904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 64.15844 + inSlope: 0.018517282 + outSlope: 0.018517282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -35.905334 + inSlope: -0.13916016 + outSlope: -0.13916016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -36.78282 + inSlope: 7.86145 + outSlope: 8.608729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -27.664904 + inSlope: 66.72312 + outSlope: 66.72312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -11.234217 + inSlope: 29.992771 + outSlope: 30.36065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -9.176634 + inSlope: -3.1620712 + outSlope: -3.195717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -8.391286 + inSlope: 19.14657 + outSlope: 17.76682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 2.3448598 + inSlope: 59.82827 + outSlope: 58.282833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 14.588494 + inSlope: 101.317154 + outSlope: 101.248535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 30.127386 + inSlope: 10.293885 + outSlope: 10.214836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 9.864311 + inSlope: -131.78897 + outSlope: -131.88641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -14.30345 + inSlope: -68.968704 + outSlope: -68.96863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -17.391735 + inSlope: 0.0021423323 + outSlope: 0.002188406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -17.388893 + inSlope: 0.0022149857 + outSlope: 0.0022149857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -46.421745 + inSlope: 52.97113 + outSlope: 52.97113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -44.18523 + inSlope: 85.73099 + outSlope: 87.25351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -25.444214 + inSlope: 185.37524 + outSlope: 185.37523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -1.8958181 + inSlope: 175.91173 + outSlope: 176.04523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 22.4721 + inSlope: 79.36404 + outSlope: 79.227486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 32.79348 + inSlope: 83.567085 + outSlope: 83.567085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 47.67483 + inSlope: 39.117435 + outSlope: 39.326973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 48.04386 + inSlope: -16.915115 + outSlope: -16.915092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 46.267067 + inSlope: 40.490643 + outSlope: 40.490643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 51.385876 + inSlope: 114.56675 + outSlope: 112.03281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 57.886833 + inSlope: -85.1131 + outSlope: -78.55193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 45.11488 + inSlope: -208.60266 + outSlope: -209.51797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 24.494427 + inSlope: -74.6846 + outSlope: -73.9362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 22.091682 + inSlope: -53.975082 + outSlope: -50.14556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 2.3386853 + inSlope: -209.17989 + outSlope: -207.7482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -23.38017 + inSlope: -150.5955 + outSlope: -146.43932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -32.488987 + inSlope: 12.131175 + outSlope: 12.131175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -33.844494 + inSlope: -32.38887 + outSlope: -32.309418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -39.59392 + inSlope: -38.465973 + outSlope: -35.270424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -28.560753 + inSlope: 225.50293 + outSlope: 216.65382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -18.446821 + inSlope: 360.55728 + outSlope: 360.55716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 1.2395471 + inSlope: 479.80338 + outSlope: 479.80286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 21.618767 + inSlope: 403.34964 + outSlope: 403.34964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 35.012146 + inSlope: 267.94943 + outSlope: 267.1916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 49.216938 + inSlope: 82.78522 + outSlope: 82.6376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 50.962116 + inSlope: -0.021331787 + outSlope: -0.021294596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 50.932274 + inSlope: -0.017629625 + outSlope: -0.017629625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -67.436935 + inSlope: 74.696045 + outSlope: 74.696045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -64.40835 + inSlope: 110.39612 + outSlope: 106.01221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -46.079563 + inSlope: 126.83432 + outSlope: 126.834305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -31.36583 + inSlope: 93.75732 + outSlope: 92.32999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -14.451466 + inSlope: 70.52174 + outSlope: 70.49658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -3.5777416 + inSlope: 66.42027 + outSlope: 66.42027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 6.5851965 + inSlope: 55.27374 + outSlope: 54.09955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 8.653818 + inSlope: 47.11093 + outSlope: 47.110863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 10.455178 + inSlope: 61.71615 + outSlope: 61.71615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 14.199444 + inSlope: 121.17172 + outSlope: 131.87778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 43.784233 + inSlope: 294.43964 + outSlope: 305.65076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 63.669483 + inSlope: 88.43646 + outSlope: 80.84537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 59.999493 + inSlope: -121.59183 + outSlope: -120.93727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 19.989178 + inSlope: -220.38203 + outSlope: -222.6147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -12.257181 + inSlope: -92.527466 + outSlope: -97.582535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: -13.530699 + inSlope: 110.25142 + outSlope: 116.71682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 5.500765 + inSlope: 57.308514 + outSlope: 57.308514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 5.5113163 + inSlope: -37.161983 + outSlope: -37.1743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -6.5498476 + inSlope: -199.39679 + outSlope: -200.86107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -49.783924 + inSlope: -177.33209 + outSlope: -199.8 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -57.20438 + inSlope: -142.21198 + outSlope: -142.2117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -62.155025 + inSlope: -72.72015 + outSlope: -72.72084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -63.95205 + inSlope: -11.775124 + outSlope: -11.775124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -63.61896 + inSlope: 25.612652 + outSlope: 30.368025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -60.952988 + inSlope: 27.967373 + outSlope: 29.157715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -60.402084 + inSlope: 0.080566406 + outSlope: 0.08064652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -60.295177 + inSlope: 0.0819769 + outSlope: 0.0819769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 128.24055 + inSlope: -58.43518 + outSlope: -58.43518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 125.89307 + inSlope: -84.31348 + outSlope: -79.688965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 112.78953 + inSlope: -76.325134 + outSlope: -76.32513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 104.65002 + inSlope: -37.935604 + outSlope: -33.988075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 98.57853 + inSlope: -24.868324 + outSlope: -25.525768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 94.7877 + inSlope: -11.545669 + outSlope: -11.545669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 94.387436 + inSlope: 14.758207 + outSlope: 13.347302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 95.06048 + inSlope: 24.232018 + outSlope: 24.231983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 96.347496 + inSlope: 51.686806 + outSlope: 51.686806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: 99.77728 + inSlope: 122.23163 + outSlope: 132.92798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 132.34082 + inSlope: 340.86475 + outSlope: 351.96664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 157.86565 + inSlope: 182.07468 + outSlope: 175.45422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 169.6384 + inSlope: 19.96582 + outSlope: 22.092636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 152.0021 + inSlope: -161.44151 + outSlope: -163.833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 119.12438 + inSlope: -195.27516 + outSlope: -197.7735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7916667 + value: 90.245834 + inSlope: -281.00208 + outSlope: -285.21173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 47.03249 + inSlope: -179.96632 + outSlope: -179.96632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 31.079596 + inSlope: -22.798937 + outSlope: -22.917984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 37.900703 + inSlope: 168.53741 + outSlope: 170.08078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 77.33048 + inSlope: 163.40274 + outSlope: 186.52718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 84.357765 + inSlope: 135.57927 + outSlope: 135.58005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 89.171745 + inSlope: 90.73698 + outSlope: 90.738655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 92.92389 + inSlope: 87.675125 + outSlope: 87.675125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 96.78583 + inSlope: 93.21223 + outSlope: 96.81491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 103.27852 + inSlope: 50.835438 + outSlope: 51.937134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 104.30108 + inSlope: 0.08441162 + outSlope: 0.08419991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 104.41706 + inSlope: 0.07393456 + outSlope: 0.07393456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.15570158 + inSlope: -1.7676358 + outSlope: -1.7676358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.23093717 + inSlope: -3.2819476 + outSlope: -3.2819476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.433702 + inSlope: -6.1621284 + outSlope: -6.276821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -1.4886245 + inSlope: -8.29816 + outSlope: -8.29816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -2.1038187 + inSlope: -0.0015163422 + outSlope: -0.0015163422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -1.6564946 + inSlope: 5.4726677 + outSlope: 5.4726663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.9652015 + inSlope: 4.1064854 + outSlope: 4.094728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.60025865 + inSlope: 3.433929 + outSlope: 3.4741778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.28416187 + inSlope: 3.343595 + outSlope: 3.389101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.14761564 + inSlope: 3.973911 + outSlope: 3.9739053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.000035489255 + inSlope: 0.7133703 + outSlope: 0.7133703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.00003548952 + inSlope: 0.00035797965 + outSlope: 0.000010227995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.000035498553 + inSlope: 0.000010246577 + outSlope: 0.0003586295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.00003547862 + inSlope: -1.3103094 + outSlope: -1.3103168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.18859477 + inSlope: -9.844065 + outSlope: -9.844008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.74955064 + inSlope: -9.082873 + outSlope: -9.082873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.8799715 + inSlope: -2.5039854 + outSlope: -2.4951005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -1.0159446 + inSlope: -0.86026037 + outSlope: -0.84569824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: -1.0354502 + inSlope: 0.000022448023 + outSlope: 0.000013264745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -1.0354508 + inSlope: 0.0000152154425 + outSlope: 0.0000152154425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 17.06957 + inSlope: 130.74129 + outSlope: 130.74129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 22.517557 + inSlope: 192.11064 + outSlope: 192.11064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 33.090332 + inSlope: 257.44812 + outSlope: 256.80652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 62.05052 + inSlope: 166.11438 + outSlope: 166.11438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 71.41136 + inSlope: -27.00586 + outSlope: -27.00586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 60.304653 + inSlope: -115.14871 + outSlope: -115.14905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 44.151962 + inSlope: -105.97776 + outSlope: -105.925255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 37.79226 + inSlope: -51.059383 + outSlope: -51.05976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 28.757763 + inSlope: -217.67352 + outSlope: -217.67096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 16.61349 + inSlope: -347.3063 + outSlope: -347.30582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.26057133 + inSlope: -201.36086 + outSlope: -201.36086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.26057136 + inSlope: -0.00021457662 + outSlope: -0.0000061307633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.2605722 + inSlope: 0.0008431026 + outSlope: 0.00094413577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.26050225 + inSlope: 223.84743 + outSlope: 223.84761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 18.438812 + inSlope: 464.07416 + outSlope: 464.0737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 38.62704 + inSlope: 320.49612 + outSlope: 320.49612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 45.330627 + inSlope: 100.05889 + outSlope: 100.01853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 46.586708 + inSlope: -9.560587 + outSlope: -9.560851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 46.174965 + inSlope: -0.000042255102 + outSlope: -0.000024968931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 46.174973 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5070647 + inSlope: 1.2557459 + outSlope: 1.2557459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.5570331 + inSlope: 2.000915 + outSlope: 2.000915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.66550875 + inSlope: 2.4282188 + outSlope: 2.032917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.78969455 + inSlope: -1.4829426 + outSlope: -1.4829426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7073543 + inSlope: 1.0978374 + outSlope: 1.0978374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.94445324 + inSlope: 1.065422 + outSlope: 1.0654218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.9940594 + inSlope: -0.66199046 + outSlope: -0.71402246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.77400523 + inSlope: -3.2640958 + outSlope: -3.221853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.5177786 + inSlope: -1.7315196 + outSlope: -1.6437064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.49473318 + inSlope: -6.330146 + outSlope: -6.330137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.008115506 + inSlope: -6.2348943 + outSlope: -6.2348943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583334 + value: -0.008115486 + inSlope: -0.00015764676 + outSlope: -0.000004504195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.008114785 + inSlope: 0.000025442667 + outSlope: -0.00020813903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.008112504 + inSlope: 7.1407275 + outSlope: 7.1407685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.5656419 + inSlope: 11.454493 + outSlope: 11.454427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.9379287 + inSlope: 2.1345365 + outSlope: 2.1345365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.8697742 + inSlope: -0.5707644 + outSlope: -0.60069096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.9610383 + inSlope: 1.1373028 + outSlope: 1.1477665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2083335 + value: 0.99367744 + inSlope: 0.000030040737 + outSlope: 0.00001775135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.99367785 + inSlope: 0.000016385862 + outSlope: 0.000016385862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 12.268567 + inSlope: -0.6668472 + outSlope: -0.6668472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 10.489067 + inSlope: -10.604431 + outSlope: -10.604431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 5.1537523 + inSlope: -18.285805 + outSlope: -18.333906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.32169503 + inSlope: 1.6534854 + outSlope: 1.6540463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 7.4226785 + inSlope: 22.466545 + outSlope: 23.854027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 11.497023 + inSlope: 10.39485 + outSlope: 10.764991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 12.551745 + inSlope: 1.4800819 + outSlope: 1.5753357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 12.5565605 + inSlope: -6.111005 + outSlope: -6.111005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 10.758673 + inSlope: -44.654663 + outSlope: -44.65418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 6.12995 + inSlope: -61.16337 + outSlope: -61.81216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: 1.8661869 + inSlope: 6.538542 + outSlope: 6.538542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 6.8717475 + inSlope: 49.999203 + outSlope: 51.28142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 10.74812 + inSlope: 28.783678 + outSlope: 28.78376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 11.9064865 + inSlope: -3.3417695 + outSlope: -3.3417695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 10.573123 + inSlope: -22.440248 + outSlope: -21.861858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 9.67195 + inSlope: -15.949852 + outSlope: -16.475807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 9.410154 + inSlope: 0.000045776367 + outSlope: 0.000004291535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 9.410154 + inSlope: 0.000004291535 + outSlope: 0.000004291535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.864052 + inSlope: -1.3532104 + outSlope: -1.3532104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -7.678307 + inSlope: -11.123714 + outSlope: -11.123714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -11.967912 + inSlope: -6.570183 + outSlope: -6.366349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -12.937679 + inSlope: 0.40789482 + outSlope: 0.40577325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -10.607496 + inSlope: 21.136585 + outSlope: 19.872478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -6.278192 + inSlope: 22.073198 + outSlope: 21.91597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: -3.4657626 + inSlope: 10.849886 + outSlope: 10.837029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -3.4988248 + inSlope: -24.185299 + outSlope: -24.185299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -7.4563704 + inSlope: -54.193504 + outSlope: -54.193584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -11.530582 + inSlope: -24.892708 + outSlope: -22.443878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -12.566685 + inSlope: 2.155243 + outSlope: 2.155243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -11.193317 + inSlope: 31.319183 + outSlope: 29.501118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -8.213254 + inSlope: 41.13867 + outSlope: 41.13879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -5.995289 + inSlope: 0.73017955 + outSlope: 0.73017955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -7.896548 + inSlope: -28.106813 + outSlope: -28.61806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -9.049333 + inSlope: -18.400898 + outSlope: -17.857887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -9.469024 + inSlope: -0.000022888184 + outSlope: -0.0000021457674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -9.469021 + inSlope: -0.00000858307 + outSlope: -0.00000858307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 28.615185 + inSlope: -8.340179 + outSlope: -8.340179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 9.642057 + inSlope: -85.87681 + outSlope: -85.87681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -25.913933 + inSlope: -88.79254 + outSlope: -88.69926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -48.34812 + inSlope: 5.395 + outSlope: 5.3949065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -13.391508 + inSlope: 165.12823 + outSlope: 165.59993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 20.135971 + inSlope: 137.2313 + outSlope: 137.28519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.875 + value: 35.79645 + inSlope: 36.909058 + outSlope: 36.907314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 33.200184 + inSlope: -147.83868 + outSlope: -147.83868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 11.42134 + inSlope: -324.27225 + outSlope: -324.2722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -17.056042 + inSlope: -316.13312 + outSlope: -314.8983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -41.410473 + inSlope: 0.73672485 + outSlope: 0.73672485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -17.012447 + inSlope: 306.3196 + outSlope: 306.53046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 8.675271 + inSlope: 257.70438 + outSlope: 257.70404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 21.30467 + inSlope: 2.0781345 + outSlope: 2.0781345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 10.579012 + inSlope: -175.52715 + outSlope: -175.77007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 3.2621937 + inSlope: -127.15785 + outSlope: -126.85515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.049513247 + inSlope: -0.00003656745 + outSlope: -0.0000034281986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.04951319 + inSlope: -0.0000035539272 + outSlope: -0.0000035539272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 26.951082 + inSlope: -48.643204 + outSlope: -48.643204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 24.919674 + inSlope: -100.253265 + outSlope: -100.253265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 18.580149 + inSlope: -223.00887 + outSlope: -223.00888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 6.4462295 + inSlope: -363.3125 + outSlope: -363.31244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -11.013902 + inSlope: -320.54138 + outSlope: -320.54138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -19.506432 + inSlope: 64.18377 + outSlope: 64.181595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -11.156215 + inSlope: 269.18564 + outSlope: 269.18546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.38216898 + inSlope: 251.71661 + outSlope: 250.83945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 15.976407 + inSlope: 134.4651 + outSlope: 134.46506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 26.062265 + inSlope: 119.27546 + outSlope: 117.10777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 46.06113 + inSlope: 111.330444 + outSlope: 110.210594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 62.505436 + inSlope: 1.148895 + outSlope: 0.266922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 44.41729 + inSlope: -94.22818 + outSlope: -94.01873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 25.650408 + inSlope: -31.081446 + outSlope: -31.192677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 17.68268 + inSlope: -83.186 + outSlope: -83.28044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 1.3286122 + inSlope: -170.94138 + outSlope: -174.88486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: -6.3936133 + inSlope: -175.88705 + outSlope: -175.88705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -13.467237 + inSlope: -137.84024 + outSlope: -132.44623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -20.589178 + inSlope: -25.824795 + outSlope: -22.769028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -19.401499 + inSlope: 36.25621 + outSlope: 36.93419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -7.9002533 + inSlope: 68.924255 + outSlope: 68.84964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 10.794581 + inSlope: 166.22865 + outSlope: 165.85718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 18.224854 + inSlope: 182.86703 + outSlope: 182.86708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 26.021286 + inSlope: 123.76295 + outSlope: 123.76295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 28.53872 + inSlope: 57.63032 + outSlope: 57.641197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 30.860521 + inSlope: -48.24273 + outSlope: -48.24273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 21.275764 + inSlope: -120.5248 + outSlope: -120.52446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 14.994551 + inSlope: -22.53834 + outSlope: -22.539505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 14.994363 + inSlope: -0.0013046265 + outSlope: -0.0015084053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 14.992413 + inSlope: -0.0015150503 + outSlope: -0.0015150503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 25.432808 + inSlope: 16.041687 + outSlope: 16.041687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 26.079693 + inSlope: 21.544464 + outSlope: 21.544464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 27.086073 + inSlope: -16.335434 + outSlope: -16.335436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 24.582735 + inSlope: -186.44913 + outSlope: -186.4491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 10.975304 + inSlope: -494.48523 + outSlope: -494.48523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -15.592046 + inSlope: -548.7491 + outSlope: -548.74927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -32.338505 + inSlope: -212.839 + outSlope: -212.83885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -35.179607 + inSlope: 19.379599 + outSlope: 23.818228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -25.218967 + inSlope: 171.93018 + outSlope: 171.93011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -9.4118805 + inSlope: 203.62387 + outSlope: 207.70149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 26.321878 + inSlope: 224.02727 + outSlope: 228.28934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 44.28433 + inSlope: -76.17297 + outSlope: -76.01674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 32.651268 + inSlope: 17.495453 + outSlope: 18.239897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 41.64323 + inSlope: 17.665901 + outSlope: 17.547699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 38.237072 + inSlope: -76.302414 + outSlope: -76.45413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 18.498 + inSlope: -255.43611 + outSlope: -253.49974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 6.483806 + inSlope: -310.69992 + outSlope: -310.69992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -7.4002585 + inSlope: -333.15045 + outSlope: -336.09283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -32.29343 + inSlope: -241.73961 + outSlope: -241.90933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -51.653347 + inSlope: -86.03366 + outSlope: -85.382706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -56.7078 + inSlope: 24.113888 + outSlope: 24.403095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -49.592495 + inSlope: 34.297035 + outSlope: 37.532463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -48.201107 + inSlope: 24.574038 + outSlope: 24.573896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -47.44628 + inSlope: 37.961536 + outSlope: 37.961536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -44.822975 + inSlope: 62.128117 + outSlope: 62.340057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -39.31174 + inSlope: 78.69638 + outSlope: 78.69638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -33.337234 + inSlope: 38.75431 + outSlope: 38.75475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -32.033566 + inSlope: 1.8807185 + outSlope: 1.853302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -32.03494 + inSlope: -0.011077881 + outSlope: -0.01095975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -32.049088 + inSlope: -0.01091545 + outSlope: -0.01091545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 32.699577 + inSlope: 32.812317 + outSlope: 32.812317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 34.050453 + inSlope: 62.24579 + outSlope: 62.24579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 37.811234 + inSlope: 119.302734 + outSlope: 119.30274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 44.261066 + inSlope: 213.93651 + outSlope: 213.93646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 56.954853 + inSlope: 439.2858 + outSlope: 439.2858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 79.77923 + inSlope: 514.0266 + outSlope: 514.0246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 97.2042 + inSlope: 283.96313 + outSlope: 283.96295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 105.60022 + inSlope: 144.63493 + outSlope: 145.3953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 111.63107 + inSlope: 36.4076 + outSlope: 36.40759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 113.40867 + inSlope: 34.456142 + outSlope: 41.77373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 118.24534 + inSlope: 38.245472 + outSlope: 43.79534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 100.657814 + inSlope: -208.83347 + outSlope: -208.52463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 65.221306 + inSlope: -65.53702 + outSlope: -65.16988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 54.484356 + inSlope: -17.21962 + outSlope: -17.093277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 53.64519 + inSlope: 7.0204663 + outSlope: 6.2481995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 55.55906 + inSlope: 57.579163 + outSlope: 47.034164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7083334 + value: 58.127502 + inSlope: 88.12142 + outSlope: 88.12142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 62.445766 + inSlope: 124.289825 + outSlope: 130.18752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 72.64802 + inSlope: 109.54435 + outSlope: 110.16412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 81.272446 + inSlope: 36.961304 + outSlope: 36.024822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 82.81927 + inSlope: -31.918682 + outSlope: -32.14969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 74.1103 + inSlope: -59.11919 + outSlope: -60.498093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 71.42684 + inSlope: -62.12957 + outSlope: -62.127018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 68.869774 + inSlope: -40.923447 + outSlope: -40.923447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 68.06417 + inSlope: -3.363458 + outSlope: -2.875949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 70.79601 + inSlope: 75.09849 + outSlope: 75.09849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 78.61402 + inSlope: 72.7985 + outSlope: 72.798294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 81.87298 + inSlope: 9.33534 + outSlope: 9.323181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 81.87262 + inSlope: -0.0029296875 + outSlope: -0.0028351818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 81.86895 + inSlope: -0.0028883414 + outSlope: -0.0028883414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000019209906 + inSlope: 0.00000282268 + outSlope: 0.00000282268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.000002531374 + inSlope: -0.00000371957 + outSlope: -0.000022782373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.0000032582907 + inSlope: -0.000029324625 + outSlope: -0.00023459649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 0.000003349155 + inSlope: -0.00024113868 + outSlope: -0.00024113868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.0000029941812 + inSlope: -0.00021558063 + outSlope: -0.00021558187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.000002721293 + inSlope: -0.00019593384 + outSlope: -0.00019593272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.0000024903404 + inSlope: -0.00017930417 + outSlope: -0.00017930417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.0000021766875 + inSlope: -0.0001567212 + outSlope: -0.00007836083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0000018560106 + inSlope: -0.00006681645 + outSlope: -0.000044544257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.0000019543834 + inSlope: -0.000046905203 + outSlope: -0.000004397363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0000034399875 + inSlope: -0.000007739973 + outSlope: -0.000007739973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000003948703 + inSlope: 0.000005802176 + outSlope: 0.000005802176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.0000034077343 + inSlope: 0.0000050072827 + outSlope: 0.000030669617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.0000033194128 + inSlope: -0.00024478356 + outSlope: 0.00023899727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.000026471038 + inSlope: -148.41762 + outSlope: -148.41762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -12.381537 + inSlope: -267.57983 + outSlope: -267.58026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -22.350458 + inSlope: -226.50531 + outSlope: -226.50511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -31.28563 + inSlope: -254.28467 + outSlope: -254.28467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -43.570534 + inSlope: -279.5021 + outSlope: -279.13184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -61.120052 + inSlope: -103.69689 + outSlope: -103.644745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -63.284267 + inSlope: -0.025360107 + outSlope: -0.025345804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -63.318085 + inSlope: -0.025234224 + outSlope: -0.025234224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000008537738 + inSlope: -0.0000012545247 + outSlope: -0.0000012545247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.0000015821474 + inSlope: 0.000002324788 + outSlope: 0.00001423933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.0000019798488 + inSlope: 0.000017818642 + outSlope: 0.00014254883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.0000020295613 + inSlope: 0.00014612814 + outSlope: 0.00014612814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0.000002030913 + inSlope: 0.00014622546 + outSlope: 0.0001462263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.0000019690472 + inSlope: 0.00014177195 + outSlope: 0.00014177113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.0000018618928 + inSlope: 0.00013405601 + outSlope: 0.00013405601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.0000016145435 + inSlope: 0.00011624691 + outSlope: 0.00005812362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.0000011242896 + inSlope: 0.000040474464 + outSlope: 0.00002698295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.0000011135594 + inSlope: 0.000026725425 + outSlope: 0.0000025055087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.0000018265836 + inSlope: 0.0000041098133 + outSlope: 0.0000041098133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000032894684 + inSlope: -0.00032673732 + outSlope: -0.00032673732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.00007498063 + inSlope: 0.00016734566 + outSlope: 0.00030038666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.00057693187 + inSlope: 0.005209119 + outSlope: 0.005209119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0024458454 + inSlope: 0.0062322416 + outSlope: 0.0063554216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.0039028039 + inSlope: 0.0048020957 + outSlope: 0.0050058793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.004142833 + inSlope: -0.006730418 + outSlope: -0.0060442016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 0.0025435926 + inSlope: -0.02112923 + outSlope: -0.02112923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.0003306703 + inSlope: -0.022459421 + outSlope: -0.02233772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.0025627685 + inSlope: -0.0016606931 + outSlope: -0.0017337059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.019553613 + inSlope: -0.50812316 + outSlope: -0.5090886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.1811201 + inSlope: -1.0657052 + outSlope: -1.0459225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.30012232 + inSlope: -0.23207141 + outSlope: -0.23960303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.39255732 + inSlope: -2.2188907 + outSlope: -2.2188907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.6312549 + inSlope: -2.6592863 + outSlope: -2.6592786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -0.7819946 + inSlope: -0.06932531 + outSlope: -0.069325514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.7261974 + inSlope: 0.46256563 + outSlope: 0.47829866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -0.81020486 + inSlope: -1.044219 + outSlope: -1.0441961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -0.94764334 + inSlope: -0.000008448959 + outSlope: -0.000008448959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000011718188 + inSlope: -0.00077490904 + outSlope: -0.00077490904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.00031560045 + inSlope: -0.0024383804 + outSlope: -0.0024039352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.0011597372 + inSlope: -0.0015687629 + outSlope: -0.0015687629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0010617278 + inSlope: 0.0030732509 + outSlope: 0.0030361433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0.0006036615 + inSlope: -0.0017282297 + outSlope: -0.0017683704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.0023463978 + inSlope: -0.017365674 + outSlope: -0.017661061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: -0.0046647578 + inSlope: -0.013656165 + outSlope: -0.013656165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0.0057913256 + inSlope: -0.0005345531 + outSlope: 0.00014840152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.0057402016 + inSlope: -0.0015958046 + outSlope: -0.0016966268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.0041030645 + inSlope: 0.039377898 + outSlope: 0.07852437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.019089805 + inSlope: -0.6921198 + outSlope: -0.71563363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.17541227 + inSlope: -0.44059134 + outSlope: -0.43680674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -0.20590796 + inSlope: 0.08755221 + outSlope: 0.08755221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.10823212 + inSlope: 2.703793 + outSlope: 2.7037852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 0.18661931 + inSlope: 3.7033286 + outSlope: 3.703339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.41330943 + inSlope: 1.1746337 + outSlope: 1.1668775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 0.37999007 + inSlope: -0.70350194 + outSlope: -0.70336634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.21705486 + inSlope: 0.0000031851234 + outSlope: 0.0000031851234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -28.509192 + inSlope: 11.405891 + outSlope: 11.405891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -13.766809 + inSlope: 107.36822 + outSlope: 107.292885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 26.37009 + inSlope: 151.2525 + outSlope: 151.2525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 66.506996 + inSlope: 107.24782 + outSlope: 107.32938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 81.19505 + inSlope: -12.726746 + outSlope: -12.726291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 60.46693 + inSlope: -218.5024 + outSlope: -218.82486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.375 + value: 28.598774 + inSlope: -268.61362 + outSlope: -268.61362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -3.269382 + inSlope: -218.61282 + outSlope: -218.221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -24.057617 + inSlope: -7.362759 + outSlope: -7.3624105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 14.466497 + inSlope: 210.52313 + outSlope: 212.01384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 50.43324 + inSlope: 199.50003 + outSlope: 199.13852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 79.094215 + inSlope: 47.569336 + outSlope: 47.58705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 77.487206 + inSlope: -113.7314 + outSlope: -113.7314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 60.67709 + inSlope: -256.29688 + outSlope: -256.2972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: 38.046078 + inSlope: -252.10704 + outSlope: -252.10667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 21.209352 + inSlope: -115.152275 + outSlope: -115.0844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: 18.565054 + inSlope: 0.006454468 + outSlope: 0.0089821825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 18.566135 + inSlope: -0.00000858307 + outSlope: -0.00000858307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.2089951 + inSlope: 4.198707 + outSlope: 4.198707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 6.630043 + inSlope: 34.756893 + outSlope: 34.545105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 24.45331 + inSlope: 44.66002 + outSlope: 44.66339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 35.579205 + inSlope: 11.020284 + outSlope: 11.623258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 27.014357 + inSlope: -64.88851 + outSlope: -64.97891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: 3.713617 + inSlope: -54.503685 + outSlope: -54.503666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -7.403896 + inSlope: 9.837118 + outSlope: 7.7703915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -3.5538201 + inSlope: 0.737394 + outSlope: 0.57308143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -12.531499 + inSlope: -63.427544 + outSlope: -65.38228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -19.348919 + inSlope: -105.30639 + outSlope: -105.30664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -28.426569 + inSlope: -60.602875 + outSlope: -60.603046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -31.126781 + inSlope: 1.1622173 + outSlope: 2.7962952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -31.114082 + inSlope: 0.00018310547 + outSlope: 0.00001716614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -31.114082 + inSlope: 0.00001716614 + outSlope: 0.00001716614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 15.736315 + inSlope: 0.39266312 + outSlope: 0.39266312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 16.673695 + inSlope: 12.654798 + outSlope: 13.152435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 22.29786 + inSlope: 7.8287964 + outSlope: 7.840874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 12.908777 + inSlope: -92.56595 + outSlope: -92.42507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: -17.690344 + inSlope: -75.992035 + outSlope: -75.55748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -22.543217 + inSlope: 45.89818 + outSlope: 45.898163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 3.7788715 + inSlope: 91.89401 + outSlope: 92.37847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 21.866158 + inSlope: 33.79933 + outSlope: 33.81011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: 17.380701 + inSlope: -79.933174 + outSlope: -77.93304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 7.2954817 + inSlope: -204.96535 + outSlope: -204.9653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -16.51703 + inSlope: -323.7719 + outSlope: -323.77173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -39.56838 + inSlope: -167.6316 + outSlope: -167.39493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -43.50068 + inSlope: 0.00018310547 + outSlope: 0.00001716614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -43.50069 + inSlope: 0.00000858307 + outSlope: 0.00000858307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.741307 + inSlope: 8.796861 + outSlope: 8.796861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 20.620502 + inSlope: 57.594997 + outSlope: 57.747528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 33.55255 + inSlope: -5.473633 + outSlope: -5.5068974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 20.644775 + inSlope: -65.6874 + outSlope: -65.51946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916667 + value: 5.8355556 + inSlope: -18.327854 + outSlope: -17.624542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.625 + value: -0.6586125 + inSlope: -49.332493 + outSlope: -49.332474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -25.404821 + inSlope: -95.043625 + outSlope: -95.52711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -45.852413 + inSlope: -40.269863 + outSlope: -40.281223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4166667 + value: -42.622787 + inSlope: 67.44136 + outSlope: 65.20392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -35.52611 + inSlope: 122.782906 + outSlope: 122.783104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5833335 + value: -21.970371 + inSlope: 190.9905 + outSlope: 190.98994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -8.807337 + inSlope: 94.4889 + outSlope: 94.30174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7916667 + value: -6.631948 + inSlope: 0.00012588501 + outSlope: 0.000011801721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -6.6319456 + inSlope: 0.000006437302 + outSlope: 0.000006437302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -15.946705 + inSlope: -1.4927535 + outSlope: -1.4927535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -20.585094 + inSlope: 18.78386 + outSlope: 18.78846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -11.742373 + inSlope: -13.874209 + outSlope: -13.875624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -14.999765 + inSlope: 30.176662 + outSlope: 30.179596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4583335 + value: 0.00000053592987 + inSlope: 6.6496196 + outSlope: 6.649564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9583335 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/hit2fix.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/hit2fix.anim.meta new file mode 100644 index 000000000..fc3419dca --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/hit2fix.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 075efdf7c3d99334db629d7af0aa5a4a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/hold.anim b/Assets/Resources/Models/Games/Airboarder/Animations/hold.anim new file mode 100644 index 000000000..9f2126243 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/hold.anim @@ -0,0 +1,1428 @@ +%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: hold + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: 4.0833335 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 4.0833335 + 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: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.7071081, w: 0.7071055} + 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: 4.0833335 + value: {x: 0, y: 0, z: -0.7071081, w: 0.7071055} + 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: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.41258702, y: -0.24122356, z: 0.39849386, w: 0.78280634} + 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: 4.0833335 + value: {x: -0.41258702, y: -0.24122356, z: 0.39849386, w: 0.78280634} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.8623899, y: -0.09351306, z: -0.06320802, w: 0.49350145} + 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: 4.0833335 + value: {x: 0.8623899, y: -0.09351306, z: -0.06320802, w: 0.49350145} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.12533143, y: 0.52398396, z: 0.74475724, w: 0.3937888} + 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: 4.0833335 + value: {x: -0.12533143, y: 0.52398396, z: 0.74475724, w: 0.3937888} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.38922656, y: 0.7619824, z: -0.08407465, w: 0.51070243} + 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: 4.0833335 + value: {x: -0.38922656, y: 0.7619824, z: -0.08407465, w: 0.51070243} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.996801, y: 0.00000008407857, z: -0.079923354, w: 0.000001457408} + 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: 4.0833335 + value: {x: 0.996801, y: 0.00000008407857, z: -0.079923354, w: 0.000001457408} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.21978399, y: 0.47358307, z: 0.6553658, w: 0.54581106} + 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: 4.0833335 + value: {x: -0.21978399, y: 0.47358307, z: 0.6553658, w: 0.54581106} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.081661806, y: -0.025835231, z: -0.04642718, w: 0.9952429} + 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: 4.0833335 + value: {x: -0.081661806, y: -0.025835231, z: -0.04642718, w: 0.9952429} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.17813604, y: 0.5063012, z: -0.06551841, w: 0.8412098} + 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: 4.0833335 + value: {x: -0.17813604, y: 0.5063012, z: -0.06551841, w: 0.8412098} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1304835, y: -0.57168347, z: 0.7492902, w: 0.30776006} + 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: 4.0833335 + value: {x: -0.1304835, y: -0.57168347, z: 0.7492902, w: 0.30776006} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0049119843, y: 0.39217904, z: 0.011520397, w: 0.9198037} + 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: 4.0833335 + value: {x: -0.0049119843, y: 0.39217904, z: 0.011520397, w: 0.9198037} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000000018626451, y: 0.00000003352761, z: -0.0000000065192585, 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: 4.0833335 + value: {x: -0.0000000018626451, y: 0.00000003352761, z: -0.0000000065192585, 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08459271, y: -0.2889125, z: 0.6515609, w: 0.696306} + 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: 4.0833335 + value: {x: -0.08459271, y: -0.2889125, z: 0.6515609, w: 0.696306} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000000019694644, y: -0.52486336, z: 0.000000074401946, w: 0.8511865} + 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: 4.0833335 + value: {x: 0.000000019694644, y: -0.52486336, z: 0.000000074401946, w: 0.8511865} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.007855659, y: 0.003202716, z: 0.1613168, w: 0.98686624} + 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: 4.0833335 + value: {x: -0.007855659, y: 0.003202716, z: 0.1613168, w: 0.98686624} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.22803625, y: -0.37079912, z: -0.15097, w: 0.8875334} + 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: 4.0833335 + value: {x: -0.22803625, y: -0.37079912, z: -0.15097, w: 0.8875334} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 4.0833335 + 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: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 4.0833335 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 4.0833335 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000143014295, y: 0.0033634438, z: -0.00065276027} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0.0000143014295, y: 0.0033634438, z: -0.00065276027} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00023749874, y: -0.0012651699, z: 0.0002429378} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.00023749874, y: -0.0012651699, z: 0.0002429378} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000021829324, y: -0.0029988303, z: -0.000053090676} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.000021829324, y: -0.0029988303, z: -0.000053090676} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00001931115, y: -0.00259617, z: 0.00038391203} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0.00001931115, y: -0.00259617, z: 0.00038391203} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0004820574, y: 0.0012244481, z: -0.00016237325} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.0004820574, y: 0.0012244481, z: -0.00016237325} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0029990696, y: -0.0000001604855, z: 0.00005463697} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0.0029990696, y: -0.0000001604855, z: 0.00005463697} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00035560728, y: 0.000036823378, z: -0.0025999995} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.00035560728, y: 0.000036823378, z: -0.0025999995} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000011850246, y: 4.2064128e-13, z: -0.00006796099} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0.000011850246, y: 4.2064128e-13, z: -0.00006796099} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0028583296, y: -3.7252902e-11, z: -0.00014242704} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0.0028583296, y: -3.7252902e-11, z: -0.00014242704} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014556202, y: -0.0014599597, z: -0.00012458394} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0.0014556202, y: -0.0014599597, z: -0.00012458394} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0027749697, y: 0.00000016999664, z: -0.000005434239} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0.0027749697, y: 0.00000016999664, z: -0.000005434239} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0020982702, y: -0.00000016903505, z: 0.000005433913} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0.0020982702, y: -0.00000016903505, z: 0.000005433913} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014555797, y: 0.0014553501, z: -0.00012458261} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0.0014555797, y: 0.0014553501, z: -0.00012458261} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0027952397, y: -7.0780515e-10, z: -7.4505804e-11} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.0027952397, y: -7.0780515e-10, z: -7.4505804e-11} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0020026595, y: 6.3329936e-10, z: 0.0000000010989606} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.0020026595, y: 6.3329936e-10, z: 0.0000000010989606} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0027371903, y: 2.4214386e-10, z: -0.00019368083} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0.0027371903, y: 2.4214386e-10, z: -0.00019368083} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.000047508467, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0, y: 0.000047508467, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.013613639, y: -0.0010463829, z: 0.004070008} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0.013613639, y: -0.0010463829, z: 0.004070008} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.013613639, y: -0.0010463829, z: -0.004080487} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0.013613639, y: -0.0010463829, z: -0.004080487} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999976, y: 0.9999999, z: 0.9999996} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.99999976, y: 0.9999999, z: 0.9999996} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 1, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.99999994, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.99999994, y: 0.99999994, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.99999994, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000002, y: 1.0000001, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 1.0000002, y: 1.0000001, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1.0000002, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 1, y: 1.0000002, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.99999994, y: 1, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1.0000001, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 1, y: 1.0000001, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000001, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 1.0000001, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.9999999, z: 0.99999976} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.99999994, y: 0.9999999, z: 0.99999976} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000001, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 1.0000001, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 24 + 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: 4.0833335 + 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/Resources/Models/Games/Airboarder/Animations/hold.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/hold.anim.meta new file mode 100644 index 000000000..b4e35a190 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/hold.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 57cdf694ecf05ca4bb5ca39034cc97d8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/hover.anim b/Assets/Resources/Models/Games/Airboarder/Animations/hover.anim new file mode 100644 index 000000000..9d400bca6 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/hover.anim @@ -0,0 +1,205 @@ +%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: hover + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: -0.55, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0, y: -0.4, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + 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, y: -0.55, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 0 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.55 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.4 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.55 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/hover.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/hover.anim.meta new file mode 100644 index 000000000..d3d424268 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/hover.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5ac047d6d29b065478606ced9573944e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/idle.anim b/Assets/Resources/Models/Games/Airboarder/Animations/idle.anim new file mode 100644 index 000000000..956321bd9 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/idle.anim @@ -0,0 +1,6209 @@ +%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: idle + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7069847, y: 0, z: 0, w: 0.70722884} + 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: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.7071081, w: 0.70710546} + 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: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.41133493, y: -0.25914955, z: 0.46802723, w: 0.73796725} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.81977034, y: -0.079990625, z: -0.06436482, w: 0.5634138} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.15215224, y: 0.4273284, z: 0.762352, w: 0.46158385} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.35741645, y: 0.79305655, z: -0.0921694, w: 0.4845818} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99866843, y: -0.000022480306, z: 0.05158596, w: 0.00043204488} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.29651344, y: 0.42120978, z: 0.64521, w: 0.56423944} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.068738304, y: 0.0024351156, z: -0.049046103, w: 0.9964255} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1670009, y: 0.4665506, z: -0.06106927, w: 0.86643624} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.12871465, y: -0.5380341, z: 0.7738363, w: 0.30843037} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.005124278, y: 0.390366, z: 0.012084135, w: 0.9205661} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0000590497, y: 0.000094801384, z: -0.0020114193, w: 0.999998} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.089402616, y: -0.27249154, z: 0.60932934, w: 0.7392383} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000000008798814, y: -0.5319579, z: 0.0000000065991115, w: 0.84677076} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.002321854, y: 0.00088261097, z: 0.157549, w: 0.98750806} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.25735798, y: -0.39074507, z: -0.14830789, w: 0.8712576} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.00000000745058, 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.00000000745058, 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00032524837, y: 0.0026615, z: -0.001018421} + inSlope: {x: 0.008868958, y: 0, z: 0} + outSlope: {x: 0.008868958, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00023749852, y: -0.0012651699, z: 0.00016842558} + inSlope: {x: -0, y: 0, z: 0} + outSlope: {x: -0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000021828784, y: -0.00299883, z: -0.000053091644} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000019310237, y: -0.0025961706, z: 0.00038391133} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0004820577, y: 0.0012244481, z: -0.00016237333} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0029990696, y: -0.00000016089528, z: 0.000054637192} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00035560734, y: 0.00003682382, z: -0.0025999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000011850246, y: -1.0635972e-10, z: -0.00006796107} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00285833, y: 4.6566126e-11, z: -0.00014242729} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014556204, y: -0.0014599604, z: -0.00012458261} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0027749697, y: 0.00000016846461, z: -0.000005434183} + inSlope: {x: -0, y: 0, z: 0} + outSlope: {x: -0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0020982707, y: -0.00000016995705, z: 0.000005434453} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014555797, y: 0.0014553501, z: -0.00012458238} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00279524, y: 7.4505804e-11, z: 7.4505804e-11} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00200266, y: -2.4214386e-10, z: 3.9115547e-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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00273719, y: -2.4214386e-10, z: -0.00019367904} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: -0.001137677, z: 0} + inSlope: {x: -0, y: 0, z: 0} + outSlope: {x: -0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.013613599, y: -0.0010463799, z: 0.0040700096} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.013613599, y: -0.0010463799, z: -0.0040804893} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.9999999, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 0.9999999, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000001, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1.0000001, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.9999999, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 24 + 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: 2504784628 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 804800636 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4196139211 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 279179908 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1848425199 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2485356428 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 804800636 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4196139211 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2504784628 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 279179908 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1848425199 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2485356428 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.x + path: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.z + path: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.x + path: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.z + path: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00032524837 + inSlope: 0.008868958 + outSlope: 0.008868958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0026615 + inSlope: -0.04002537 + outSlope: -0.04002537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.001018421 + inSlope: 0.010182075 + outSlope: 0.010182075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00023749852 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0012651699 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00016842558 + inSlope: 0.0024308348 + outSlope: 0.0024308348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000021828784 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00299883 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000053091644 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000019310237 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0025961706 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00038391133 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0004820577 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0012244481 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00016237333 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0029990696 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000016089528 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000054637192 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00035560734 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00003682382 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0025999998 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000011850246 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.0635972e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00006796107 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00285833 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.6566126e-11 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00014242729 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0014556204 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0014599604 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00012458261 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0027749697 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000016846461 + inSlope: -0.0000000010865926 + outSlope: -0.0000000010865926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000005434183 + inSlope: -5.5879405e-11 + outSlope: -5.5879405e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0020982707 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000016995705 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000005434453 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0014555797 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0014553501 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00012458238 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00279524 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.4505804e-11 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.4505804e-11 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00200266 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.4214386e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.9115547e-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_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00273719 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.4214386e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00019367904 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.x + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.001137677 + inSlope: -0.01848882 + outSlope: -0.01848882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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.z + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013613599 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0010463799 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0040700096 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013613599 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0010463799 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0040804893 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7069847 + inSlope: 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.70722884 + inSlope: 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7071081 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.70710546 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.41133493 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.25914955 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46802723 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.73796725 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81977034 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.079990625 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06436482 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5634138 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.15215224 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4273284 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.762352 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46158385 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.35741645 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.79305655 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0921694 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4845818 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99866843 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000022480306 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05158596 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00043204488 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.29651344 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.42120978 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.64521 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.56423944 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.068738304 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0024351156 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.049046103 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9964255 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1670009 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4665506 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06106927 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.86643624 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12871465 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5380341 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7738363 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.30843037 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.005124278 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.390366 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.012084135 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9205661 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000590497 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000094801384 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0020114193 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.999998 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.089402616 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.27249154 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.60932934 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7392383 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000008798814 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5319579 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000000065991115 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.84677076 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.002321854 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00088261097 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.157549 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98750806 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.25735798 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.39074507 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.14830789 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8712576 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000000745058 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000000745058 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -89.98021 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -90.000206 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -21.378368 + inSlope: -209.29662 + outSlope: -209.29662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -55.510715 + inSlope: -43.991222 + outSlope: -43.991222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 76.11207 + inSlope: -224.21194 + outSlope: -224.21194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 65.98554 + inSlope: -553.04846 + outSlope: -553.04846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -151.26318 + inSlope: -436.61578 + outSlope: -436.61578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -149.9687 + inSlope: -380.03723 + outSlope: -380.03723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -52.373867 + inSlope: -475.15063 + outSlope: -475.15063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 15.437476 + inSlope: 367.8518 + outSlope: 367.8518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 109.98563 + inSlope: -37.53153 + outSlope: -37.53153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -11.548885 + inSlope: -243.50148 + outSlope: -243.50148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 121.59952 + inSlope: -250.52148 + outSlope: -250.52148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -42.050903 + inSlope: -50.5031 + outSlope: -50.5031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.049575664 + inSlope: -4.7647653 + outSlope: -4.7647653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 174.08604 + inSlope: 853.3715 + outSlope: 853.3715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 180 + inSlope: -2.1621115 + outSlope: -2.1621115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -61.41959 + inSlope: 73.35606 + outSlope: 73.35606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 11.173061 + inSlope: 661.9338 + outSlope: 661.9338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 91.009964 + inSlope: -148.81764 + outSlope: -148.81764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.859611 + inSlope: -86.21917 + outSlope: -86.21917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6706894 + inSlope: -169.97437 + outSlope: -169.97437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.681956 + inSlope: 20.745125 + outSlope: 20.745125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -13.438849 + inSlope: -0.7916344 + outSlope: -0.7916344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 58.452263 + inSlope: 300.61752 + outSlope: 300.61752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -15.605968 + inSlope: -91.8153 + outSlope: -91.8153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 48.877182 + inSlope: 55.711723 + outSlope: 55.711723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -53.856438 + inSlope: -251.01147 + outSlope: -251.01147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 110.542534 + inSlope: -162.35117 + outSlope: -162.35117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.081175 + inSlope: 4.533933 + outSlope: 4.533933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 45.948864 + inSlope: -100.404976 + outSlope: -100.404976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0457664 + inSlope: -0.5947386 + outSlope: -0.5947386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0067884335 + inSlope: -0.45371038 + outSlope: -0.45371038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.010849805 + inSlope: -0.72906417 + outSlope: -0.72906417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23049118 + inSlope: 15.418094 + outSlope: 15.418094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 11.53079 + inSlope: 250.18764 + outSlope: 250.18764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -31.491116 + inSlope: -16.85991 + outSlope: -16.85991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 75.73403 + inSlope: 217.5828 + outSlope: 217.5828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000004515055 + inSlope: 0.00003250843 + outSlope: 0.00003250843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -64.27567 + inSlope: -65.953186 + outSlope: -65.953186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000011766873 + inSlope: -0.00008472156 + outSlope: -0.00008472156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.27867672 + inSlope: -6.694769 + outSlope: -6.694769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.057958774 + inSlope: 1.3580447 + outSlope: 1.3580447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 18.129232 + inSlope: 5.0536275 + outSlope: 5.0536275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -34.35726 + inSlope: 153.78622 + outSlope: 153.78622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -47.079945 + inSlope: 31.972717 + outSlope: 31.972717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.980493 + inSlope: -76.471954 + outSlope: -76.471954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000008537735 + inSlope: 0.0000021197134 + outSlope: 0.0000021197134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000008537735 + inSlope: 0.0000021197134 + outSlope: 0.0000021197134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/idle.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/idle.anim.meta new file mode 100644 index 000000000..92810d6cd --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/idle.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cffd03476f5b2334391a5b2f9fbc68d4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/jumpfix.anim b/Assets/Resources/Models/Games/Airboarder/Animations/jumpfix.anim new file mode 100644 index 000000000..26156384e --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/jumpfix.anim @@ -0,0 +1,30005 @@ +%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: jumpfix + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.7069847, y: 0, z: 0, w: 0.70722884} + 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: 2.0666666 + value: {x: -0.7069847, y: 0, z: 0, w: 0.70722884} + 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: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + 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: 2.0666666 + 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: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0, y: 0, z: -0.7071081, w: 0.70710546} + 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: 2.0666666 + value: {x: 0, y: 0, z: -0.7071081, w: 0.70710546} + 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: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.17566532, y: -0.35140306, z: 0.80324876, w: 0.44771528} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.27644634, y: -0.33187866, z: -0.14519691, w: -0.10871887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: -0.20973846, y: -0.3913922, z: 0.784619, w: 0.4326604} + inSlope: {x: -0.59080124, y: -0.6376505, z: -0.32186508, w: -0.28073788} + outSlope: {x: -0.5912781, y: -0.63836575, z: -0.32186508, w: -0.2808571} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.35 + value: {x: -0.3856112, y: -0.52212363, z: 0.6772891, w: 0.34636724} + inSlope: {x: -0.729084, y: -0.2901554, z: -0.49614906, w: -0.27930737} + outSlope: {x: -0.7297098, y: -0.28997657, z: -0.4959106, w: -0.27939674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.55 + value: {x: -0.53361374, y: -0.51781476, z: 0.57813215, w: 0.33598754} + inSlope: {x: -0.5766749, y: 0.42021272, z: -0.30159947, w: 0.25168058} + outSlope: {x: -0.576675, y: 0.42110685, z: -0.30219558, w: 0.25190416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.68333334 + value: {x: -0.5645914, y: -0.4423092, z: 0.58054453, w: 0.38544413} + inSlope: {x: 0.090301044, y: 0.70050365, z: 0.34287575, w: 0.41954222} + outSlope: {x: 0.09083747, y: 0.70059294, z: 0.34403798, w: 0.41878217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.85 + value: {x: -0.54348254, y: -0.34878975, z: 0.6338532, w: 0.425679} + inSlope: {x: -0.13160704, y: 0.55325025, z: 0.04720687, w: 0.21547076} + outSlope: {x: -0.13276936, y: 0.55409974, z: 0.045597557, w: 0.21569432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.98333335 + value: {x: -0.6301176, y: -0.2541272, z: 0.5897976, w: 0.43647438} + inSlope: {x: -1.1269749, y: 0.9410084, z: -0.679493, w: -0.160262} + outSlope: {x: -1.1290822, y: 0.9423494, z: -0.6810256, w: -0.16042164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1 + value: {x: -0.74597645, y: -0.1463321, z: 0.47911385, w: 0.43881196} + inSlope: {x: -0.55074686, y: 0.60119796, z: -0.9541, w: 0.30551636} + outSlope: {x: -0.55074745, y: 0.6017095, z: -0.95427126, w: 0.30756027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.15 + value: {x: -0.76097864, y: -0.12777695, z: 0.44004884, w: 0.45928386} + inSlope: {x: -0.4398827, y: 0.481904, z: -1.1497747, w: 0.5108123} + outSlope: {x: -0.43630642, y: 0.48637438, z: -1.1488806, w: 0.5087261} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1833333 + value: {x: -0.7809707, y: -0.10657036, z: 0.38296834, w: 0.48172903} + inSlope: {x: -0.3397468, y: 0.76890063, z: -1.5583649, w: 0.8592018} + outSlope: {x: -0.34153372, y: 0.7751564, z: -1.5637238, w: 0.8618809} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2166667 + value: {x: -0.7859138, y: -0.06441897, z: 0.3094852, w: 0.5314213} + inSlope: {x: 0.5221353, y: 0.8976436, z: -1.5458424, w: 1.779194} + outSlope: {x: 0.52332926, y: 0.8994349, z: -1.5497222, w: 1.7857568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.73678297, y: -0.030681044, z: 0.25126576, w: 0.62695694} + inSlope: {x: 1.8131751, y: 0.32186538, z: -0.9191045, w: 2.5129342} + outSlope: {x: 1.8155549, y: 0.32544088, z: -0.9191023, w: 2.5200808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3166667 + value: {x: -0.65005845, y: -0.020660788, z: 0.21623148, w: 0.7281765} + inSlope: {x: 2.1517246, y: -0.22709337, z: -0.3725285, w: 2.0241709} + outSlope: {x: 2.1582863, y: -0.22888206, z: -0.37506258, w: 2.0349045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.35 + value: {x: -0.55892813, y: -0.027894199, z: 0.19993588, w: 0.80426794} + inSlope: {x: 1.863243, y: -0.29727846, z: -0.07912524, w: 1.3053429} + outSlope: {x: 1.866104, y: -0.29522207, z: -0.07581718, w: 1.3060582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333333 + value: {x: -0.45515245, y: -0.03866954, z: 0.22669512, w: 0.86020356} + inSlope: {x: 0.790716, y: -0.06830699, z: 0.82844573, w: 0.195265} + outSlope: {x: 0.7885688, y: -0.067949235, z: 0.830143, w: 0.19535406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5666667 + value: {x: -0.42398065, y: -0.093557015, z: 0.37791288, w: 0.81772196} + inSlope: {x: -0.04135069, y: -0.96291226, z: 1.0579071, w: -0.62093085} + outSlope: {x: -0.041382693, y: -0.96495754, z: 1.0588349, w: -0.6207404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6833333 + value: {x: -0.45987338, y: -0.23145132, z: 0.45028228, w: 0.72951543} + inSlope: {x: -0.17472692, y: -0.72445256, z: 0.34613302, w: -0.55330193} + outSlope: {x: -0.17344943, y: -0.72258675, z: 0.34403783, w: -0.55289245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666667 + value: {x: -0.4626494, y: -0.2567258, z: 0.47080025, w: 0.70597064} + inSlope: {x: 0.044345833, y: -0.022888172, z: 0.0039339047, w: 0.017881384} + outSlope: {x: 0.04506109, y: -0.0232458, z: 0.0032186492, w: 0.020027151} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.85 + value: {x: -0.455936, y: -0.25384736, z: 0.4653181, w: 0.7149566} + inSlope: {x: 0.11801714, y: -0.012874597, z: -0.008940692, w: 0.07581707} + outSlope: {x: 0.11801724, y: -0.013892473, z: -0.008390503, w: 0.07620227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.43144792, y: -0.25103867, z: 0.44542372, w: 0.7432563} + inSlope: {x: 0.10096114, y: 0.03920153, z: -0.18871754, w: 0.18431598} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.18205696, y: -0.00055216765, z: -0.005153567, w: 0.9832743} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.91597444, y: -0.030220255, z: -0.11335128, w: -0.16808511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: 0.22004427, y: -0.00173663, z: -0.009825446, w: 0.97543883} + inSlope: {x: 1.3223292, y: -0.055488203, z: -0.15914442, w: -0.30219558} + outSlope: {x: 1.322776, y: -0.05548121, z: -0.15906988, w: -0.29981133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: 0.36680657, y: -0.009630591, z: -0.027131187, w: 0.9298516} + inSlope: {x: 1.7660855, y: -0.16691162, z: -0.2423115, w: -0.70571893} + outSlope: {x: 1.7683421, y: -0.16917875, z: -0.2444243, w: -0.706826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.38333333 + value: {x: 0.70900595, y: -0.054626822, z: -0.060129374, w: 0.7005076} + inSlope: {x: 0.5474261, y: -0.58702064, z: -0.45763597, w: -0.63938755} + outSlope: {x: 0.55034953, y: -0.5880991, z: -0.45955178, w: -0.6421407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.68333334 + value: {x: 0.82935727, y: -0.08289418, z: -0.06404081, w: 0.54881126} + inSlope: {x: -0.100135796, y: 0.026350219, z: -0.0111262, w: 0.15358129} + outSlope: {x: -0.100433834, y: 0.026896598, z: -0.011175872, w: 0.15527011} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8833333 + value: {x: 0.81423354, y: -0.078207985, z: -0.06455082, w: 0.5716121} + inSlope: {x: 0.10252, y: -0.04321337, z: -0.008866192, w: -0.15288593} + outSlope: {x: 0.10288677, y: -0.042846564, z: -0.009697216, w: -0.15350486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1 + value: {x: 0.8432976, y: -0.08706624, z: -0.064136945, w: 0.5264551} + inSlope: {x: 0.09215794, y: -0.02665015, z: 0.0033011797, w: -0.15185428} + outSlope: {x: 0.09417543, y: -0.025928045, z: 0.0028312234, w: -0.15020385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.15 + value: {x: 0.846584, y: -0.08829776, z: -0.06415562, w: 0.52094436} + inSlope: {x: 0.19431132, y: -0.06705529, z: 0.008344659, w: -0.32663375} + outSlope: {x: 0.19516262, y: -0.06628887, z: 0.0070886947, w: -0.32799584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.8652806, y: -0.09451677, z: -0.063053995, w: 0.4882419} + inSlope: {x: -0.5078315, y: 0.13826148, z: -0.061116043, w: 0.91961443} + outSlope: {x: -0.50902295, y: 0.14081576, z: -0.0627338, w: 0.9244667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3166667 + value: {x: 0.8291738, y: -0.08239704, z: -0.06461935, w: 0.5490956} + inSlope: {x: -1.1193737, y: 0.26598534, z: -0.08463848, w: 1.7213796} + outSlope: {x: -1.1265289, y: 0.26956227, z: -0.087171875, w: 1.7291324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.35 + value: {x: 0.7717006, y: -0.06645806, z: -0.06472978, w: 0.62918323} + inSlope: {x: -1.4251484, y: 0.16316786, z: -0.15154496, w: 1.7470138} + outSlope: {x: -1.4247001, y: 0.16227366, z: -0.15422703, w: 1.7479063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4833333 + value: {x: 0.65424585, y: -0.041386694, z: -0.05864711, w: 0.7528678} + inSlope: {x: -0.20876528, y: 0.023357572, z: 0.0075995927, w: 0.18283726} + outSlope: {x: -0.20435877, y: 0.02235174, z: 0.006003039, w: 0.17983572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7526572, y: -0.06314127, z: -0.06356336, w: 0.6522883} + inSlope: {x: 1.1607578, y: -0.7372243, z: -0.4286425, w: -1.4529909} + outSlope: {x: 1.1587154, y: -0.7390983, z: -0.4270677, w: -1.4519706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.65 + value: {x: 0.81406033, y: -0.07888031, z: -0.06363742, w: 0.57186884} + inSlope: {x: 1.2958062, y: -0.45925424, z: -0.056624465, w: -1.914503} + outSlope: {x: 1.2981881, y: -0.46201012, z: -0.05654986, w: -1.9177779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7166667 + value: {x: 0.89144135, y: -0.10513272, z: -0.059337907, w: 0.436759} + inSlope: {x: 0.454187, y: -0.20664167, z: 0.027380861, w: -0.97632325} + outSlope: {x: 0.45382988, y: -0.20836298, z: 0.029638417, w: -0.9725692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8833333 + value: {x: 0.902672, y: -0.109950155, z: -0.058968633, w: 0.41184598} + inSlope: {x: -0.095129035, y: 0.054046523, z: -0.016406182, w: 0.22172934} + outSlope: {x: -0.09590932, y: 0.05335972, z: -0.015402387, w: 0.22156678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0.88626194, y: -0.10253357, z: -0.061569035, w: 0.44747734} + inSlope: {x: -0.0994856, y: 0.033365063, z: -0.017962677, w: 0.20352283} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.05307544, y: 0.05293618, z: 0.63705176, w: 0.7671674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.31445462, y: 0.2013376, z: 0.030535918, w: -0.017331196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: -0.024800679, y: 0.07346113, z: 0.65346056, w: 0.7529792} + inSlope: {x: -0.14927524, y: -0.18672301, z: 0.16533412, w: -0.13012153} + outSlope: {x: -0.14820382, y: -0.18782522, z: 0.16601463, w: -0.13044006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.55 + value: {x: 0.03935981, y: -0.039489217, z: 0.7622011, w: 0.64493495} + inSlope: {x: 0.33893475, y: -0.032810006, z: 0.4632222, w: -0.56938124} + outSlope: {x: 0.33887273, y: -0.03180043, z: 0.4626404, w: -0.56927854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06916079, y: -0.03504093, z: 0.81268483, w: 0.57752246} + inSlope: {x: 0.014345754, y: -0.06347895, z: 0.121593475, w: -0.17718835} + outSlope: {x: 0.014177389, y: -0.063925974, z: 0.12108257, w: -0.17625944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.85 + value: {x: 0.06611476, y: -0.043116376, z: 0.8254539, w: 0.55892384} + inSlope: {x: -0.056837283, y: 0.092791654, z: 0.25851384, w: -0.36733487} + outSlope: {x: -0.056829307, y: 0.09331853, z: 0.25838616, w: -0.36835673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.98333335 + value: {x: 0.046332024, y: -0.0020155087, z: 0.857287, w: 0.512746} + inSlope: {x: -0.33661726, y: 0.42944685, z: -0.03486872, w: 0.09164215} + outSlope: {x: -0.33757514, y: 0.429808, z: -0.037295476, w: 0.09196144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1 + value: {x: -0.01377858, y: 0.060690425, z: 0.8068347, w: 0.5874901} + inSlope: {x: -0.5242122, y: 0.6909562, z: -0.73875695, w: 0.9313651} + outSlope: {x: -0.52493113, y: 0.6921596, z: -0.7414825, w: 0.93340963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.15 + value: {x: -0.0375781, y: 0.09196105, z: 0.772104, w: 0.6276833} + inSlope: {x: -0.53286606, y: 0.9013721, z: -0.67353314, w: 0.6651885} + outSlope: {x: -0.53286606, y: 0.90256417, z: -0.6705529, w: 0.6651885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1833333 + value: {x: -0.05926026, y: 0.13527583, z: 0.7515855, w: 0.64289016} + inSlope: {x: -0.68944013, y: 1.381339, z: -0.35584006, w: 0.057220515} + outSlope: {x: -0.69200814, y: 1.3880395, z: -0.34868625, w: 0.059008442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2166667 + value: {x: -0.09572092, y: 0.2066255, z: 0.741949, w: 0.6305989} + inSlope: {x: -1.168993, y: 1.779194, z: -0.464915, w: -0.21457615} + outSlope: {x: -1.1733185, y: 1.7848628, z: -0.46372458, w: -0.21457693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15764728, y: 0.28268656, z: 0.71229035, w: 0.6227985} + inSlope: {x: -1.4132274, y: 1.368524, z: -0.82969743, w: -0.034570727} + outSlope: {x: -1.4170984, y: 1.371501, z: -0.8285034, w: -0.033378553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3166667 + value: {x: -0.2155223, y: 0.32022062, z: 0.675216, w: 0.6285636} + inSlope: {x: -1.0552987, y: 0.4380935, z: -0.80823785, w: 0.2837177} + outSlope: {x: -1.0556737, y: 0.43675345, z: -0.80823976, w: 0.28342035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3833333 + value: {x: -0.25275382, y: 0.30169824, z: 0.63381785, w: 0.6658593} + inSlope: {x: 0.08314856, y: -0.4778807, z: 0.04917388, w: 0.2002718} + outSlope: {x: 0.08381904, y: -0.47899786, z: 0.051856045, w: 0.19937755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5166667 + value: {x: -0.20926715, y: 0.2631855, z: 0.73608, w: 0.58747494} + inSlope: {x: 0.30655417, y: 0.36835673, z: 1.0259451, w: -1.3415517} + outSlope: {x: 0.3059505, y: 0.37014467, z: 1.0242457, w: -1.3411039} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18293454, y: 0.3419849, z: 0.7967378, w: 0.4634547} + inSlope: {x: 0.2868174, y: 1.3607734, z: 0.19025794, w: -1.2162918} + outSlope: {x: 0.28610256, y: 1.3595833, z: 0.18596667, w: -1.2153399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.65 + value: {x: -0.17054895, y: 0.40612164, z: 0.7921916, w: 0.4223869} + inSlope: {x: 0.076890066, y: 1.4358772, z: -0.43630642, w: -0.53167397} + outSlope: {x: 0.075996, y: 1.4403477, z: -0.4398827, w: -0.53107786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6833333 + value: {x: -0.17785189, y: 0.46169624, z: 0.7618514, w: 0.41807628} + inSlope: {x: -0.36299264, y: 1.0657321, z: -0.8189686, w: 0.15556827} + outSlope: {x: -0.36209726, y: 1.0594698, z: -0.8118131, w: 0.15735584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7166667 + value: {x: -0.20321095, y: 0.4940114, z: 0.72584754, w: 0.43336287} + inSlope: {x: -0.43004638, y: 0.6347878, z: -0.6687624, w: 0.19222447} + outSlope: {x: -0.4282594, y: 0.6359071, z: -0.66831714, w: 0.19289555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.85 + value: {x: -0.21297103, y: 0.5315479, z: 0.70061725, w: 0.42571795} + inSlope: {x: 0.041574243, y: 0.016093256, z: -0.0022351744, w: 0.006258488} + outSlope: {x: 0.040501367, y: 0.01573563, z: -0.0039339075, w: 0.006258489} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0166667 + value: {x: -0.18917601, y: 0.52583414, z: 0.71247303, w: 0.42437375} + inSlope: {x: 0.22798783, y: 0.006079675, z: 0.106930755, w: -0.0856519} + outSlope: {x: 0.22888206, y: 0.00596047, z: 0.107288465, w: -0.08642682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.17905785, y: 0.5262885, z: 0.71692383, w: 0.42068845} + inSlope: {x: 0.24259114, y: 0.008344659, z: 0.10371218, w: -0.088214956} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.5206117, y: 0.752144, z: -0.2471272, w: 0.31964207} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.091642134, y: -0.004470348, z: -0.1366809, w: 0.05342066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: -0.488893, y: 0.7483036, z: -0.2930428, w: 0.33933952} + inSlope: {x: 0.48726794, y: -0.09655952, z: -0.7241964, w: 0.2916902} + outSlope: {x: 0.487268, y: -0.09298325, z: -0.7241965, w: 0.29057267} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.18333334 + value: {x: -0.46451542, y: 0.743024, z: -0.32763165, w: 0.3532679} + inSlope: {x: 0.5301834, y: -0.26822093, z: -0.7832051, w: 0.5301834} + outSlope: {x: 0.5296468, y: -0.26750562, z: -0.7817744, w: 0.53286546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4229958, y: 0.7044222, z: -0.39189968, w: 0.41385818} + inSlope: {x: 0.5586147, y: -0.50210947, z: -0.9073018, w: 0.5657672} + outSlope: {x: 0.5598665, y: -0.50139433, z: -0.9074808, w: 0.566125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333334 + value: {x: -0.31297547, y: 0.6538231, z: -0.5448069, w: 0.42160073} + inSlope: {x: 0.6744862, y: -0.08475781, z: -0.7817746, w: -0.37640336} + outSlope: {x: 0.6741287, y: -0.08583071, z: -0.7803442, w: -0.37765512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.51666665 + value: {x: -0.24942972, y: 0.66289365, z: -0.5996842, w: 0.3724724} + inSlope: {x: 0.86832064, y: 0.23746496, z: -0.5929471, w: -0.7932188} + outSlope: {x: 0.8703761, y: 0.23961048, z: -0.59187365, w: -0.7921451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.55 + value: {x: -0.2107156, y: 0.67501867, z: -0.6228373, w: 0.33469743} + inSlope: {x: 0.6687636, y: 0.16987309, z: -0.40233102, w: -0.66965765} + outSlope: {x: 0.66786987, y: 0.17046924, z: -0.40054312, w: -0.66757184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19403279, y: 0.6781689, z: -0.6338954, w: 0.31719851} + inSlope: {x: 0.39041033, y: 0.11920926, z: -0.21696086, w: -0.44524658} + outSlope: {x: 0.38951635, y: 0.118255615, z: -0.21576881, w: -0.44608116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.85 + value: {x: -0.121106386, y: 0.743724, z: -0.62665284, w: 0.19878188} + inSlope: {x: 0.30589104, y: 0.3657341, z: 0.22411346, w: -0.47391653} + outSlope: {x: 0.30648708, y: 0.36597252, z: 0.22482872, w: -0.4749298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1 + value: {x: -0.027319148, y: 0.8485328, z: -0.5227129, w: 0.07756999} + inSlope: {x: 0.1489222, y: 0.57792664, z: 0.9009838, w: -0.19341707} + outSlope: {x: 0.14822397, y: 0.5783353, z: 0.90275484, w: -0.1931829} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2166667 + value: {x: -0.008380126, y: 0.9376037, z: -0.3426809, w: 0.05829857} + inSlope: {x: 0.02160136, y: 0.7796287, z: 2.1386144, w: 0.03349568} + outSlope: {x: 0.021569451, y: 0.7820137, z: 2.139809, w: 0.033751164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0071289465, y: 0.96789557, z: -0.24369271, w: 0.06116536} + inSlope: {x: -0.16309336, y: 0.50544786, z: 2.4047518, w: 1.5603765} + outSlope: {x: -0.16443408, y: 0.5054467, z: 2.4104085, w: 1.5693135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3166667 + value: {x: -0.026686652, y: 0.97114533, z: -0.14120527, w: 0.19033042} + inSlope: {x: -0.13213585, y: -0.30398324, z: 2.2530522, w: 3.2061293} + outSlope: {x: -0.13193128, y: -0.30577213, z: 2.2597632, w: 3.2164187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.35 + value: {x: -0.026598677, y: 0.94185287, z: -0.057699885, w: 0.3299642} + inSlope: {x: 0.2244117, y: -0.82075673, z: 1.6151384, w: 2.6392963} + outSlope: {x: 0.22636747, y: -0.8225449, z: 1.619497, w: 2.6455548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3833333 + value: {x: -0.013288427, y: 0.9106287, z: -0.0064661955, w: 0.41296124} + inSlope: {x: 0.31664068, y: -0.72956157, z: 0.8334553, w: 1.6307846} + outSlope: {x: 0.3172736, y: -0.7301567, z: 0.8328956, w: 1.6322728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4833333 + value: {x: -0.017290505, y: 0.8691853, z: 0.007435806, w: 0.49412808} + inSlope: {x: -0.8778831, y: -0.2497434, z: -0.2642627, w: 0.41156998} + outSlope: {x: -0.8805241, y: -0.24962413, z: -0.26482332, w: 0.41162947} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5666667 + value: {x: -0.16030994, y: 0.85051996, z: -0.03682082, w: 0.4995607} + inSlope: {x: -2.0974865, y: -0.3383158, z: -0.6464121, w: -0.14162056} + outSlope: {x: -2.0990222, y: -0.3402577, z: -0.6471793, w: -0.14279583} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6833333 + value: {x: -0.3748516, y: 0.79690313, z: -0.10756862, w: 0.46136814} + inSlope: {x: -0.983733, y: -0.29529873, z: -0.3978614, w: -0.38317308} + outSlope: {x: -0.9804363, y: -0.29289708, z: -0.39656442, w: -0.382304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.85 + value: {x: -0.43023118, y: 0.76897746, z: -0.11942128, w: 0.45750776} + inSlope: {x: -0.1485943, y: -0.18703929, z: 0.09968872, w: 0.20080796} + outSlope: {x: -0.14869073, y: -0.18734206, z: 0.09931055, w: 0.20109698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.43182352, y: 0.74947536, z: -0.099316105, w: 0.49188572} + inSlope: {x: 0.12063068, y: 0.003026083, z: 0.08056947, w: 0.1176046} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.6642774, y: -0.0052527795, z: 0.7474529, w: 0.004702485} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0.002486631, z: 0, w: -0.002210727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: 0.6642793, y: -0.0049416996, z: 0.747455, w: 0.004426023} + inSlope: {x: 0, y: 0.002486631, z: 0, w: -0.0022072345} + outSlope: {x: 0, y: 0.0024866315, z: 0, w: -0.0022212046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.18333334 + value: {x: 0.6642799, y: -0.0048380727, z: 0.74745566, w: 0.0043339273} + inSlope: {x: 0.4398823, y: -0.0043446203, z: -0.39160255, w: 0.008982607} + outSlope: {x: 0.4434585, y: 0.07070973, z: -0.39410585, w: 0.09349174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7404492, y: -0.004450508, z: 0.6720803, w: 0.004822435} + inSlope: {x: 0.7023811, y: 0.09696184, z: -0.7739066, w: 0.060863785} + outSlope: {x: 0.69941807, y: -0.04043271, z: -0.7704328, w: -0.06387012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.38333333 + value: {x: 0.7708167, y: -0.0035228303, z: 0.63703287, w: 0.0042762537} + inSlope: {x: -0.06590572, y: -0.054588154, z: 0.07918904, w: -0.04711828} + outSlope: {x: -0.06571413, y: 0.054292034, z: 0.08001924, w: 0.04287693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.51666665 + value: {x: 0.7154564, y: -0.0037471396, z: 0.69863683, w: 0.0038311009} + inSlope: {x: -0.9897352, y: 0.046030622, z: 1.0138751, w: 0.04180649} + outSlope: {x: -0.99420464, y: -0.20601304, z: 1.0192386, w: -0.20430872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.55 + value: {x: 0.66428477, y: -0.003905077, z: 0.74746126, w: 0.003504754} + inSlope: {x: -0.63478893, y: -0.18839708, z: 0.5668397, w: -0.21650438} + outSlope: {x: -0.63300115, y: -0.00069849176, z: 0.5626677, w: -0.0053271637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.66428524, y: -0.0038013174, z: 0.7474618, w: 0.0034125408} + inSlope: {x: 0.0011920927, y: 0.0024912872, z: -0.0011920927, w: -0.0022025774} + outSlope: {x: 0, y: 0.0024866313, z: 0, w: -0.0022098774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2166667 + value: {x: 0.664291, y: -0.0022240116, z: 0.74746805, w: 0.002005175} + inSlope: {x: 0, y: 0.0026429424, z: 0, w: -0.0023491983} + outSlope: {x: -0.0035762822, y: 0.0026356454, z: 0.0023841881, w: -0.0023562484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6642912, y: -0.002114171, z: 0.7474685, w: 0.0019061214} + inSlope: {x: 2.4056458, y: 0.007119968, z: -2.1374247, w: 0.0027334343} + outSlope: {x: 2.419945, y: 0.13231747, z: -2.1517246, w: 0.14353523} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3166667 + value: {x: 0.84014744, y: -0.0015127608, z: 0.5423515, w: 0.0022186274} + inSlope: {x: 3.6525674, y: 0.1575423, z: -5.6564727, w: 0.09700176} + outSlope: {x: 3.6656892, y: 0.017423898, z: -5.679136, w: 0.0064610564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.35 + value: {x: 0.9627576, y: -0.0007959551, z: 0.27035493, w: 0.0023482807} + inSlope: {x: 1.5413775, y: 0.014699777, z: -5.491381, w: -0.000097788965} + outSlope: {x: 1.546742, y: 0.014746925, z: -5.5092626, w: -0.000118743745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3833333 + value: {x: 0.9960597, y: -0.00034270264, z: 0.08865591, w: 0.002262808} + inSlope: {x: 0.32901797, y: 0.008782671, z: -3.697652, w: -0.0030314578} + outSlope: {x: 0.31232864, y: 0.008372016, z: -3.5171244, w: -0.0030966506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333333 + value: {x: 0.9992665, y: -0.000050469964, z: -0.03823631, w: 0.00211555} + inSlope: {x: -0.0798703, y: 0.0042920914, z: -2.0965953, w: -0.003734607} + outSlope: {x: -0.087022655, y: 0.004690221, z: -2.2847173, w: -0.0037159717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4833333 + value: {x: 0.9947299, y: 0.00008388434, z: -0.102511495, w: 0.0019624769} + inSlope: {x: -0.10251984, y: 0.0016154058, z: -0.99837637, w: -0.0035203942} + outSlope: {x: -0.102996774, y: 0.0016160476, z: -0.99894357, w: -0.0035259856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5666667 + value: {x: 0.9934012, y: 0.00010010864, z: -0.11467836, w: 0.0016890576} + inSlope: {x: 0.061511964, y: -0.0012646191, z: 0.5328653, w: -0.0030524083} + outSlope: {x: 0.061512053, y: -0.0012694229, z: 0.5357271, w: -0.0030524128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.65 + value: {x: 0.9998979, y: -0.000053565942, z: -0.014218165, w: 0.0014365063} + inSlope: {x: 0.022888206, y: -0.0023370252, z: 1.5962735, w: -0.003126453} + outSlope: {x: 0.020563586, y: -0.0021364014, z: 1.4571927, w: -0.003118764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7166667 + value: {x: 0.9935412, y: -0.00018440542, z: 0.1134658, w: 0.00116228} + inSlope: {x: -0.084936544, y: -0.00050509657, z: 0.74610054, w: -0.0033597434} + outSlope: {x: -0.10281802, y: -0.000684413, z: 0.8998812, w: -0.0033894323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.85 + value: {x: 0.9952723, y: -0.00009837674, z: 0.09712104, w: 0.0007520578} + inSlope: {x: 0.050067905, y: 0.000710661, z: -0.5107932, w: -0.0032746177} + outSlope: {x: 0.045666344, y: 0.0006772016, z: -0.467633, w: -0.0032759286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0.9999977, y: -0.0000004037359, z: -0.0021627687, w: 0.000068708265} + inSlope: {x: -0.000550197, y: 0.000016892996, z: -0.3455226, w: -0.003279421} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.70566684, y: 0.21189564, z: 0.43733487, w: 0.51562864} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.09208917, y: 0.13276935, z: -0.07353722, w: 0.13232231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: -0.6746908, y: 0.25144973, z: 0.41224295, w: 0.55823034} + inSlope: {x: 0.53599477, y: 0.5339831, z: -0.36768612, w: 0.67904586} + outSlope: {x: 0.53823, y: 0.5346537, z: -0.3665686, w: 0.68128115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.18333334 + value: {x: -0.6511872, y: 0.2782857, z: 0.39206058, w: 0.5871975} + inSlope: {x: 0.8028746, y: 0.859201, z: -0.32722953, w: 0.70452696} + outSlope: {x: 0.8089541, y: 0.8572339, z: -0.32401082, w: 0.70595735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.56569576, y: 0.38073766, z: 0.36604276, w: 0.6332769} + inSlope: {x: 1.2145041, y: 0.9090899, z: -0.25284287, w: 0.6837844} + outSlope: {x: 1.2173654, y: 0.91087824, z: -0.253737, w: 0.6870032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333334 + value: {x: -0.41958004, y: 0.5072006, z: 0.23204115, w: 0.7161404} + inSlope: {x: 0.6650091, y: 0.30219558, z: -0.80949074, w: 0.43809417} + outSlope: {x: 0.66447276, y: 0.30183798, z: -0.80949086, w: 0.43702134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.51666665 + value: {x: -0.37443408, y: 0.5123956, z: 0.16765764, w: 0.7544142} + inSlope: {x: 0.4173518, y: -0.21743779, z: -0.754595, w: 0.52285206} + outSlope: {x: 0.41753018, y: -0.21815282, z: -0.75459415, w: 0.5221363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.55 + value: {x: -0.35902542, y: 0.49707723, z: 0.136626, w: 0.77804136} + inSlope: {x: 0.39339033, y: -0.04827972, z: -0.5359943, w: 0.31113598} + outSlope: {x: 0.3939866, y: -0.05185603, z: -0.53465354, w: 0.3075599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3417863, y: 0.5085803, z: 0.12327692, w: 0.7805965} + inSlope: {x: 0.37372103, y: 0.24676317, z: -0.30130142, w: 0.048875798} + outSlope: {x: 0.3736019, y: 0.24819374, z: -0.30192733, w: 0.0500679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.85 + value: {x: -0.30698252, y: 0.5421314, z: 0.06596848, w: 0.77942514} + inSlope: {x: -0.029563904, y: 0.14567375, z: -0.13777614, w: -0.10108948} + outSlope: {x: -0.029435521, y: 0.1460772, z: -0.13778988, w: -0.101786375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.36067486, y: 0.5748859, z: 0.11492452, w: 0.7254049} + inSlope: {x: -0.56532705, y: -0.004401573, z: 0.723371, w: -0.39174} + outSlope: {x: -0.56632984, y: -0.0061307694, z: 0.7252189, w: -0.39288014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1833333 + value: {x: -0.4671773, y: 0.5286012, z: 0.2597277, w: 0.6594449} + inSlope: {x: -1.3160719, y: -0.78627115, z: 1.5155773, w: -0.8986686} + outSlope: {x: -1.3196434, y: -0.7903555, z: 1.5208086, w: -0.90121984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2166667 + value: {x: -0.5239253, y: 0.48503494, z: 0.33066323, w: 0.61717516} + inSlope: {x: -1.5395839, y: -1.1140078, z: 1.6415076, w: -1.3124908} + outSlope: {x: -1.5461459, y: -1.1199723, z: 1.64807, w: -1.3148798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5846716, y: 0.42732406, z: 0.40379542, w: 0.55901927} + inSlope: {x: -0.96559614, y: 0.84281045, z: 1.2695801, w: -2.5689626} + outSlope: {x: -1.046656, y: 0.73552024, z: 1.1724217, w: -2.5045836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3166667 + value: {x: -0.56497943, y: 0.43181935, z: 0.5536529, w: 0.4333575} + inSlope: {x: 0.9345995, y: 0.043511327, z: 3.2424881, w: -2.9659228} + outSlope: {x: 1.1461984, y: 0.2700093, z: 3.461841, w: -3.1989844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.35 + value: {x: -0.49178943, y: 0.42821988, z: 0.6893003, w: 0.3156517} + inSlope: {x: 1.7452257, y: -0.15109792, z: 2.496245, w: -2.5212789} + outSlope: {x: 1.6424075, y: -0.27447966, z: 2.421143, w: -2.360346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3833333 + value: {x: -0.43079063, y: 0.4107098, z: 0.7654809, w: 0.24449117} + inSlope: {x: 1.3151778, y: -0.26553893, z: 1.3232244, w: -1.3764216} + outSlope: {x: 1.318456, y: -0.26702908, z: 1.3244165, w: -1.3792528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333333 + value: {x: -0.38310993, y: 0.40688038, z: 0.80395925, w: 0.20328468} + inSlope: {x: 0.99957085, y: 0.104308225, z: 0.55193955, w: -0.507236} + outSlope: {x: 1.0002847, y: 0.10478491, z: 0.55146194, w: -0.50675845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5166667 + value: {x: -0.3134298, y: 0.44315284, z: 0.80286145, w: 0.24655779} + inSlope: {x: 0.89657265, y: 0.45847872, z: -0.37121755, w: 1.5247457} + outSlope: {x: 0.8983608, y: 0.4606245, z: -0.3719328, w: 1.525461} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2636463, y: 0.47678784, z: 0.7293194, w: 0.41383246} + inSlope: {x: 0.2646445, y: -0.22888173, z: -0.97417784, w: 2.1514883} + outSlope: {x: 0.26464486, y: -0.23102783, z: -0.9748945, w: 2.1511338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6833333 + value: {x: -0.26915804, y: 0.43444768, z: 0.6416717, w: 0.5718972} + inSlope: {x: -0.19848366, y: -0.7270582, z: -0.81181604, w: 1.3675703} + outSlope: {x: -0.20062914, y: -0.72777236, z: -0.8103844, w: 1.3697141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666667 + value: {x: -0.27887124, y: 0.39399865, z: 0.6035208, w: 0.6346326} + inSlope: {x: 0.071883164, y: -0.102639146, z: -0.12874597, w: 0.2181529} + outSlope: {x: 0.07224079, y: -0.10192389, z: -0.12874597, w: 0.21672238} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.85 + value: {x: -0.26438323, y: 0.40185106, z: 0.60365015, w: 0.635786} + inSlope: {x: 0.19133082, y: 0.13840193, z: 0.0014305108, w: -0.00929832} + outSlope: {x: 0.19119343, y: 0.13782434, z: 0.0019256893, w: -0.009628447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.23382343, y: 0.43769205, z: 0.6179739, w: 0.60980356} + inSlope: {x: 0.08796274, y: 0.1706986, z: 0.13562354, w: -0.22640604} + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.022216426, y: -0.00050248066, z: 0.19298077, w: 0.98095083} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.05644436, y: -0.06906533, z: -0.05409122, w: 0.012318294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.31666666 + value: {x: -0.045399137, y: -0.059223935, z: 0.1516597, w: 0.98561186} + inSlope: {x: -0.4267072, y: -0.32057366, z: -0.22545458, w: -0.0041723256} + outSlope: {x: -0.42725354, y: -0.320717, z: -0.22571194, w: -0.004226511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.68333334 + value: {x: -0.22663361, y: -0.1609809, z: 0.04477325, w: 0.95954037} + inSlope: {x: -0.43524936, y: -0.12606382, z: -0.28709796, w: -0.11053952} + outSlope: {x: -0.4351139, y: -0.1257658, z: -0.28705597, w: -0.11062622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2962696, y: -0.164332, z: -0.03977686, w: 0.9400197} + inSlope: {x: -0.020623207, y: 0.15711784, z: -0.44551492, w: 0.0019073486} + outSlope: {x: -0.019944634, y: 0.15776893, z: -0.44603765, w: 0.0024758857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.15 + value: {x: -0.22529724, y: -0.062480107, z: -0.19365475, w: 0.95280397} + inSlope: {x: 0.6937294, y: 0.70652145, z: -0.7766715, w: 0.053093992} + outSlope: {x: 0.6943728, y: 0.7066982, z: -0.7759247, w: 0.052111484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3833333 + value: {x: -0.069227435, y: 0.121061474, z: -0.28059465, w: 0.9496412} + inSlope: {x: 0.41657257, y: 0.46175504, z: 0.3986273, w: 0.08940696} + outSlope: {x: 0.41624534, y: 0.4610047, z: 0.40076676, w: 0.089406975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5166667 + value: {x: -0.05017499, y: 0.1282565, z: -0.1790264, w: 0.9741573} + inSlope: {x: -0.116173185, y: -0.5506352, z: 1.2378396, w: 0.294596} + outSlope: {x: -0.11663134, y: -0.55181956, z: 1.2382859, w: 0.29396996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0693693, y: 0.060950156, z: -0.06591294, w: 0.99354345} + inSlope: {x: -0.17210832, y: -0.7436868, z: 1.2952381, w: 0.12087816} + outSlope: {x: -0.17161672, y: -0.7430168, z: 1.2945685, w: 0.11909011} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666667 + value: {x: -0.08197356, y: -0.0041749957, z: 0.053663917, w: 0.9951799} + inSlope: {x: 0.008225443, y: -0.25174215, z: 0.06645174, w: -0.0042915354} + outSlope: {x: 0.008252949, y: -0.2515151, z: 0.06478565, w: -0.0038513765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9833333 + value: {x: -0.081488974, y: -0.027242072, z: -0.029157978, w: 0.9958751} + inSlope: {x: -0.0046766712, y: 0.0044445572, z: -0.2670001, w: -0.007702753} + outSlope: {x: -0.0045597595, y: 0.004604463, z: -0.2661648, w: -0.007867821} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.0816469, y: -0.026070543, z: -0.04355304, w: 0.9953679} + inSlope: {x: -0.00035762822, y: 0.011242937, z: -0.13862564, w: -0.005006795} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.108499326, y: 0.436815, z: -0.119272634, w: 0.8849829} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.005856157, y: -0.009477139, z: -0.00551343, w: 0.0045299535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.51666665 + value: {x: 0.03596154, y: 0.40200138, z: -0.09065704, w: 0.9104301} + inSlope: {x: -0.30173364, y: -0.12171269, z: 0.19724669, w: 0.08523465} + outSlope: {x: -0.3021549, y: -0.12175603, z: 0.19771132, w: 0.08550557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8833333 + value: {x: -0.11497011, y: 0.3469233, z: 0.024398882, w: 0.9305002} + inSlope: {x: -0.44807112, y: -0.19425695, z: 0.33777037, w: 0.008127906} + outSlope: {x: -0.4480913, y: -0.19409433, z: 0.3376636, w: 0.008453019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20692706, y: 0.27650222, z: 0.07282563, w: 0.935641} + inSlope: {x: -0.60032696, y: -0.7424027, z: 0.22282647, w: 0.069249734} + outSlope: {x: -0.6008154, y: -0.74412215, z: 0.22249584, w: 0.070503846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1833333 + value: {x: -0.24971764, y: 0.2167099, z: 0.058532566, w: 0.9419405} + inSlope: {x: 0.10511715, y: 0.09745368, z: -0.5181458, w: 0.03780641} + outSlope: {x: 0.10657305, y: 0.09915228, z: -0.5195213, w: 0.037550908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.35 + value: {x: -0.17843045, y: 0.30189484, z: -0.053398944, w: 0.934971} + inSlope: {x: 0.54028606, y: 0.48905587, z: -0.67486584, w: -0.09334083} + outSlope: {x: 0.54180676, y: 0.48995066, z: -0.67623025, w: -0.0951291} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333333 + value: {x: -0.13942353, y: 0.32097262, z: -0.1135125, w: 0.92986697} + inSlope: {x: 0.37229097, y: -0.13339533, z: -0.6933517, w: 0.017166154} + outSlope: {x: 0.371754, y: -0.13375276, z: -0.6933507, w: 0.016450875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5166667 + value: {x: -0.11558012, y: 0.2976024, z: -0.16267817, w: 0.93360054} + inSlope: {x: 0.18945327, y: -0.18382064, z: -0.44131258, w: 0.005722043} + outSlope: {x: 0.18915163, y: -0.18261375, z: -0.44055286, 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.65 + value: {x: -0.10739632, y: 0.27438417, z: -0.19001526, w: 0.936522} + inSlope: {x: -0.04202128, y: -0.3755093, z: 0.05409122, w: 0.116229065} + outSlope: {x: -0.04227672, y: -0.3757647, z: 0.05492142, w: 0.11750629} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666667 + value: {x: -0.12215173, y: 0.2665883, z: -0.14229426, w: 0.9453899} + inSlope: {x: -0.2076796, y: 0.46900338, z: 0.57463133, w: -0.07254736} + outSlope: {x: -0.20800535, y: 0.47028077, z: 0.5747081, w: -0.07331373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333333 + value: {x: -0.16728383, y: 0.40714076, z: -0.060834493, w: 0.89585245} + inSlope: {x: -0.20053987, y: 0.93430305, z: 0.15317652, w: -0.45168412} + outSlope: {x: -0.2000481, y: 0.9336323, z: 0.15204774, w: -0.45061114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.17770608, y: 0.4982978, z: -0.06455359, w: 0.8461397} + inSlope: {x: -0.033862893, y: 0.5163253, z: -0.043194745, w: -0.3151596} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.06146781, y: -0.36719373, z: 0.55583566, w: 0.74326116} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.015310942, y: 0.094994895, z: -0.018328426, w: 0.05945563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: -0.06549897, y: -0.33149672, z: 0.5533751, w: 0.7613118} + inSlope: {x: -0.1645088, y: 0.68798655, z: -0.050067898, w: 0.3223121} + outSlope: {x: -0.1653135, y: 0.68879133, z: -0.04935265, w: 0.32258037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: -0.0811834, y: -0.25644094, z: 0.54797155, w: 0.7920698} + inSlope: {x: 0.098794706, y: 0.6719828, z: -0.06651879, w: 0.27465823} + outSlope: {x: 0.099688776, y: 0.6701947, z: -0.06723405, w: 0.27322772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.31666666 + value: {x: -0.05272789, y: -0.21803494, z: 0.5441519, w: 0.8084426} + inSlope: {x: 0.41686, y: 0.50014263, z: -0.057220463, w: 0.20241739} + outSlope: {x: 0.41722882, y: 0.50058967, z: -0.05847216, w: 0.20116569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.65 + value: {x: 0.17354135, y: -0.05141582, z: 0.49332902, w: 0.8508033} + inSlope: {x: 0.8577705, y: 0.36616626, z: -0.18614532, w: -0.044703487} + outSlope: {x: 0.85811526, y: 0.36573833, z: -0.18609421, w: -0.045214377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8833333 + value: {x: 0.36223322, y: -0.0028347522, z: 0.43814185, w: 0.82268506} + inSlope: {x: 0.4871402, y: 0.029184986, z: -0.13985804, w: -0.14049666} + outSlope: {x: 0.48588607, y: 0.028691499, z: -0.13931227, w: -0.13914971} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3454181, y: -0.047809944, z: 0.4334194, w: 0.8309922} + inSlope: {x: -0.74142736, y: -0.58715975, z: 0.11362809, w: 0.21490176} + outSlope: {x: -0.74207854, y: -0.5874937, z: 0.113725774, w: 0.21600744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.15 + value: {x: 0.25012454, y: -0.11796131, z: 0.44571492, w: 0.8513878} + inSlope: {x: -1.6926544, y: -1.1394929, z: 0.32365352, w: 0.17094629} + outSlope: {x: -1.6951547, y: -1.1407202, z: 0.32365295, w: 0.16987309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2166667 + value: {x: 0.073355496, y: -0.23972851, z: 0.4678377, w: 0.8475123} + inSlope: {x: -2.210809, y: -1.5494214, z: 0.13723958, w: -0.32275888} + outSlope: {x: -2.2105315, y: -1.5495346, z: 0.13634564, w: -0.32275918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.35 + value: {x: -0.14700653, y: -0.40834865, z: 0.4259658, w: 0.7938473} + inSlope: {x: -1.0543318, y: -0.9349734, z: -0.46715143, w: -0.4255772} + outSlope: {x: -1.0567913, y: -0.93788, z: -0.4675989, 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: 1.3833333 + value: {x: -0.17906684, y: -0.44137347, z: 0.40768495, w: 0.77904916} + inSlope: {x: -0.5503004, y: -0.5945569, z: -0.151992, w: -0.38087404} + outSlope: {x: -0.5528336, y: -0.59306675, z: -0.15258804, w: -0.38504636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333333 + value: {x: -0.19310448, y: -0.45834365, z: 0.4135026, w: 0.76265806} + inSlope: {x: 0.94801277, y: -2.1356366, z: 1.0257969, w: -1.597406} + outSlope: {x: 0.95128876, y: -2.1344392, z: 1.0257945, w: -1.5974022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4833333 + value: {x: -0.098191455, y: -0.60550565, z: 0.48462027, w: 0.62359} + inSlope: {x: 1.7762159, y: -1.8727753, z: 1.7476057, w: -2.8967817} + outSlope: {x: 1.7800944, y: -1.87576, z: 1.7532723, w: -2.9039412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5166667 + value: {x: -0.050296873, y: -0.62393236, z: 0.5728582, w: 0.52916163} + inSlope: {x: 0.9611258, y: 0.46670482, z: 2.5910163, w: -2.1690152} + outSlope: {x: 0.95635515, y: 0.4625314, z: 2.5856457, w: -2.1648376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5666667 + value: {x: -0.015472293, y: -0.5754975, z: 0.69095397, w: 0.43720222} + inSlope: {x: 0.588297, y: 1.8882724, z: 2.9098947, w: -2.0909278} + outSlope: {x: 0.5882984, y: 1.8954295, z: 2.9218225, w: -2.0992775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.011862591, y: -0.48313686, z: 0.80554795, w: 0.34282726} + inSlope: {x: 0.37059224, y: 2.3290536, z: 2.206566, w: -1.915099} + outSlope: {x: 0.3676418, y: 2.3235104, z: 2.1994135, w: -1.9090194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6833333 + value: {x: 0.031795766, y: -0.32635158, z: 0.91836405, w: 0.22156517} + inSlope: {x: -0.33657286, y: 1.2323868, z: 0.61655104, w: -0.69272584} + outSlope: {x: -0.33907577, y: 1.2309545, z: 0.6158349, w: -0.69308245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666667 + value: {x: -0.01853183, y: -0.2825644, z: 0.9357693, w: 0.21011837} + inSlope: {x: -0.48530078, y: -0.1473426, z: -0.10156626, w: 0.21654357} + outSlope: {x: -0.48382592, y: -0.14913085, z: -0.10335448, w: 0.21833186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333333 + value: {x: -0.076803744, y: -0.4406239, z: 0.8492514, w: 0.28057745} + inSlope: {x: -0.5490483, y: -1.2041333, z: -0.82469004, w: 0.45382988} + outSlope: {x: -0.549495, y: -1.2044901, z: -0.82325894, w: 0.45382956} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0166667 + value: {x: -0.11057606, y: -0.5343734, z: 0.7829981, w: 0.29854977} + inSlope: {x: -0.39696676, y: -0.82111317, z: -0.6909367, w: 0.19383422} + outSlope: {x: -0.39905348, y: -0.8225449, z: -0.69141454, w: 0.19490737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.12459484, y: -0.5620673, z: 0.7586578, w: 0.30495045} + inSlope: {x: -0.34332308, y: -0.64373076, z: -0.59723914, w: 0.1585485} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.0011592172, y: 0.19253, z: 0.00590821, w: 0.98127264} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0019819709, y: -0.12874603, z: -0.0063423063, w: 0.025480984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: -0.00049887283, y: 0.136355, z: 0.0036244425, w: 0.9906533} + inSlope: {x: 0.00674132, y: -1.2994184, z: -0.036054406, w: 0.17881392} + outSlope: {x: 0.0067544174, y: -1.3031067, z: -0.036126006, w: 0.18060209} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.18333334 + value: {x: -0.00011774597, y: 0.06135602, z: 0.0019154605, w: 0.99811417} + inSlope: {x: 0.0051360987, y: -1.6656519, z: -0.038741857, w: 0.10192395} + outSlope: {x: 0.005110342, y: -1.6635658, z: -0.03870344, w: 0.10252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: 0.0000009458856, y: -0.0022738648, z: 0.0004153578, w: 0.9999974} + inSlope: {x: 0.0011143142, y: -0.7639267, z: -0.027003117, w: -0.001192093} + outSlope: {x: 0.001111838, y: -0.7616982, z: -0.026997576, 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.26666668 + value: {x: -0.00000075533495, y: -0.0022738643, z: -0.00033293566, w: 0.9999974} + inSlope: {x: -0.000020168605, y: 0.000670552, z: -0.01149368, w: 0} + outSlope: {x: -0.000018380666, y: 0.000004170101, z: -0.011449768, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3833333 + value: {x: -0.0000001511666, y: -0.0022738564, z: -0.00007081767, w: 0.99999744} + inSlope: {x: 0.00000014204916, y: 0.000011467778, z: 0.0000123930195, w: 0} + outSlope: {x: 0.000108742985, y: -0.005997723, z: -0.00016123538, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333333 + value: {x: -0.00000015073, y: -0.0022728974, z: -0.00007078816, w: 0.99999744} + inSlope: {x: -0.10841307, y: 5.9956465, z: 0.16125691, w: 0.015497223} + outSlope: {x: -0.108554356, y: 6.0027285, z: 0.1615138, w: 0.011920912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4833333 + value: {x: -0.0077440487, y: 0.48834866, z: 0.01383586, w: 0.8725046} + inSlope: {x: -0.19516768, y: 7.438649, z: 0.15579142, w: -4.163975} + outSlope: {x: -0.19609481, y: 7.4458194, z: 0.15568003, w: -4.175309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5166667 + value: {x: -0.016401013, y: 0.67985386, z: 0.01768195, w: 0.7329509} + inSlope: {x: -0.15568003, y: 3.2669337, z: 0.02453106, w: -3.0326872} + outSlope: {x: -0.15512086, y: 3.2508326, z: 0.024214352, w: -3.019567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5666667 + value: {x: -0.021278456, y: 0.7735819, z: 0.01741429, w: 0.6330994} + inSlope: {x: -0.062808305, y: 1.2361985, z: -0.012516958, w: -1.5175321} + outSlope: {x: -0.06303197, y: 1.2391818, z: -0.012572867, w: -1.5145555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.021968905, y: 0.7902842, z: 0.017015895, w: 0.61211014} + inSlope: {x: 0.0263192, y: -0.3182891, z: -0.0044703525, w: 0.41484872} + outSlope: {x: 0.026509192, y: -0.32401115, z: -0.004515056, w: 0.41699448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6833333 + value: {x: -0.014337268, y: 0.6537421, z: 0.016588667, w: 0.7563997} + inSlope: {x: 0.110942975, y: -2.3953938, z: -0.035963986, w: 2.0742435} + outSlope: {x: 0.11069671, y: -2.390736, z: -0.03593033, w: 2.0706599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7166667 + value: {x: -0.009863947, y: 0.5443978, z: 0.015195182, w: 0.8386315} + inSlope: {x: 0.08538343, y: -2.2119226, z: -0.042859353, w: 1.4358721} + outSlope: {x: 0.08553275, y: -2.2149107, z: -0.043027144, w: 1.4400496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666667 + value: {x: -0.007217846, y: 0.4722073, z: 0.013471819, w: 0.881355} + inSlope: {x: 0.043408986, y: -1.1265289, z: -0.03639612, w: 0.6055838} + outSlope: {x: 0.043269183, y: -1.123546, z: -0.036284275, w: 0.6031982} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8166667 + value: {x: -0.006232734, y: 0.4520598, z: 0.012296747, w: 0.89188117} + inSlope: {x: 0.016745156, y: -0.3230567, z: -0.021494893, w: 0.16689277} + outSlope: {x: 0.016771805, y: -0.32467532, z: -0.021529537, 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.9333333 + value: {x: -0.0056739543, y: 0.43631572, z: 0.011699932, w: 0.8996997} + inSlope: {x: 0.0003472506, y: -0.17549327, z: 0.005220733, w: 0.08531987} + outSlope: {x: 0.00035972337, y: -0.17613174, z: 0.0052107503, w: 0.08538366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.0051886104, y: 0.40061978, z: 0.011865544, w: 0.91615283} + inSlope: {x: 0.009366778, y: -0.40054324, z: -0.0072713015, w: 0.17523767} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.0000014514663, y: -0.0000019650906, z: -0.0000031208622, w: 1} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.003957097, y: 0.012921992, z: -0.25483042, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: 0.0006476445, y: 0.001965602, z: -0.03902825, w: 0.9992359} + inSlope: {x: 0.017110957, y: 0.04083384, z: -0.8597374, w: -0.034332275} + outSlope: {x: 0.017154261, y: 0.040892508, z: -0.861056, w: -0.033617016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0062396554, y: 0.010434766, z: -0.25646186, w: 0.9664779} + inSlope: {x: 0.046558674, y: 0.03500841, z: -1.4221071, w: -0.3780126} + outSlope: {x: 0.046528164, y: 0.034911707, z: -1.4217085, w: -0.3779852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.48333332 + value: {x: 0.010746172, y: 0.011933403, z: -0.440006, w: 0.8978512} + inSlope: {x: -0.0046508824, y: -0.0062584886, z: -0.09174532, w: -0.04484104} + outSlope: {x: -0.00468269, y: -0.006236136, z: -0.090390444, w: -0.043988228} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.81666666 + value: {x: 0.006214778, y: 0.0111540435, z: -0.33224064, w: 0.9431082} + inSlope: {x: -0.016691163, y: 0.0026458874, z: 0.600189, w: 0.21135807} + outSlope: {x: -0.01670285, y: 0.00261871, z: 0.6008962, w: 0.2116507} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1833333 + value: {x: -0.00023539274, y: 0.00480219, z: -0.045295577, w: 0.99896204} + inSlope: {x: -0.004997869, y: -0.03344888, z: 0.8248302, w: 0.03771349} + outSlope: {x: -0.004966386, y: -0.03348657, z: 0.82494676, w: 0.03743916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7166667 + value: {x: -0.006073159, y: -0.00696985, z: 0.25597543, w: 0.9666391} + inSlope: {x: -0.012997187, y: 0.008324277, z: 0.085774794, w: -0.022687014} + outSlope: {x: -0.013012906, y: 0.008371427, z: 0.08516014, 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: 1.85 + value: {x: -0.006814612, y: -0.004726231, z: 0.21951532, w: 0.9755738} + inSlope: {x: 0.012321399, y: 0.026472846, z: -0.8251146, w: 0.1859665} + outSlope: {x: 0.012356323, y: 0.026455384, z: -0.8254499, w: 0.18641354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9833333 + value: {x: -0.0030797578, y: -0.0016393133, z: 0.081673056, w: 0.9966531} + inSlope: {x: 0.037812863, y: 0.012006204, z: -1.0841154, w: 0.089406975} + outSlope: {x: 0.037824772, y: 0.011988927, z: -1.0843288, w: 0.08869179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.00044517062, y: -0.00061951583, z: 0.01121125, w: 0.9999369} + inSlope: {x: 0.02711164, y: 0.015557526, z: -0.683204, w: 0.007867821} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.28050935, y: 0.26088005, z: 0.40519342, w: 0.830105} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.09518403, y: 0.032461606, z: 0.07688999, w: -0.079503424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: -0.36610705, y: 0.28238612, z: 0.47099674, w: 0.75125605} + inSlope: {x: -0.74936795, y: -0.17069854, z: 0.8356113, w: -0.8252951} + outSlope: {x: -0.7510186, y: -0.17089504, z: 0.83710474, w: -0.82612044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.35 + value: {x: -0.46657562, y: 0.25350636, z: 0.58569765, w: 0.6123724} + inSlope: {x: -0.4204682, y: -0.52596843, z: 1.0948522, w: -1.1495183} + outSlope: {x: -0.41896108, y: -0.5264283, z: 1.094699, w: -1.1483432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.51666665 + value: {x: -0.46606126, y: 0.1823673, z: 0.74195415, w: 0.44613132} + inSlope: {x: 0.51087147, y: -0.3410876, z: 0.77247626, w: -0.610292} + outSlope: {x: 0.5121032, y: -0.34098822, z: 0.7710854, w: -0.60886145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.81666666 + value: {x: -0.23899135, y: 0.07576603, z: 0.8758398, w: 0.41236794} + inSlope: {x: 0.77014166, y: -0.46064454, z: 0.17742315, w: 0.15487273} + outSlope: {x: 0.7699726, y: -0.46116102, z: 0.17666812, w: 0.15485284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09117789, y: -0.04409159, z: 0.86156154, w: 0.49744773} + inSlope: {x: 0.18489356, y: -0.43205908, z: -0.25534624, w: 0.437498} + outSlope: {x: 0.18408912, y: -0.43188077, z: -0.25534654, w: 0.43630642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.15 + value: {x: -0.10661709, y: -0.06885025, z: 0.83602166, w: 0.5338166} + inSlope: {x: -0.9319791, y: -0.11068593, z: -0.3397468, w: 0.33044848} + outSlope: {x: -0.9349726, y: -0.110417515, z: -0.33795807, w: 0.3308055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2166667 + value: {x: -0.24209403, y: -0.06944022, z: 0.79616636, w: 0.55017054} + inSlope: {x: -1.8934145, y: 0.102370895, z: -0.67591614, w: 0.15646206} + outSlope: {x: -1.892894, y: 0.10311601, z: -0.6735323, w: 0.1555681} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3166667 + value: {x: -0.37167296, y: -0.043836296, z: 0.7151384, w: 0.59035134} + inSlope: {x: -0.64700824, y: 0.56281674, z: -1.1163948, w: 0.9870527} + outSlope: {x: -0.6455189, y: 0.5628174, z: -1.1175882, w: 0.99063015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3833333 + value: {x: -0.34197295, y: -0.00089652836, z: 0.6279063, w: 0.69913334} + inSlope: {x: 1.0487447, y: 0.08784243, z: -0.72419715, w: 1.1640798} + outSlope: {x: 1.0520229, y: 0.08612879, z: -0.722409, w: 1.1646758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333333 + value: {x: -0.2913175, y: -0.005767137, z: 0.6053972, w: 0.740672} + inSlope: {x: 0.761152, y: 0.22709392, z: -0.6163126, w: 0.8046635} + outSlope: {x: 0.7569779, y: 0.22828546, z: -0.61631113, w: 0.8034695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4833333 + value: {x: -0.27971193, y: 0.019221634, z: 0.5767154, w: 0.7673272} + inSlope: {x: 0.509619, y: 0.24259056, z: -0.5793563, w: 0.61273485} + outSlope: {x: 0.5114083, y: 0.24229312, z: -0.5793577, w: 0.61690867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5166667 + value: {x: -0.24936984, y: 0.015060112, z: 0.55689573, w: 0.7921205} + inSlope: {x: 1.1354696, y: -0.64998925, z: -0.37550962, w: 0.6312138} + outSlope: {x: 1.1342162, y: -0.64972013, z: -0.36978704, w: 0.63085526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.090900466, y: -0.12418564, z: 0.5246155, w: 0.8373134} + inSlope: {x: 2.309202, y: -2.7251232, z: -0.7023808, w: 0.2882479} + outSlope: {x: 2.306553, y: -2.7237859, z: -0.70333546, w: 0.28491047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.65 + value: {x: 0.015646242, y: -0.25313807, z: 0.4899792, w: 0.8340244} + inSlope: {x: 1.6370431, y: -1.8787402, z: -1.0114918, w: -0.00596047} + outSlope: {x: 1.6408429, y: -1.8793362, z: -1.0156641, 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.6833333 + value: {x: 0.04921794, y: -0.28128994, z: 0.44978294, w: 0.8462558} + inSlope: {x: 0.62450826, y: -0.6508833, z: -0.86277807, w: 0.20742436} + outSlope: {x: 0.62260723, y: -0.6499881, z: -0.8600943, w: 0.20474179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8166667 + value: {x: 0.07920715, y: -0.36754215, z: 0.39963025, w: 0.83602315} + inSlope: {x: 0.101532705, y: -0.8144968, z: 0.13992178, w: -0.43407047} + outSlope: {x: 0.102371074, y: -0.81718045, z: 0.139475, w: -0.43630642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.85 + value: {x: 0.0837298, y: -0.40257448, z: 0.41373312, w: 0.8122488} + inSlope: {x: 0.113993995, y: -0.8073457, z: 0.5346542, w: -0.6830699} + outSlope: {x: 0.1153351, y: -0.8064516, z: 0.5346542, w: -0.68664616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8833333 + value: {x: 0.08813068, y: -0.43440902, z: 0.44425845, w: 0.77856034} + inSlope: {x: -0.6692118, y: 0.47117516, z: 1.0210285, w: -0.24497533} + outSlope: {x: -0.6741292, y: 0.47743365, z: 1.0252008, w: -0.24080299} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333333 + value: {x: 0.028289214, y: -0.36067677, z: 0.49777737, w: 0.7882447} + inSlope: {x: -1.2338173, y: 1.2284529, z: 1.2665999, w: -0.19192713} + outSlope: {x: -1.2317282, y: 1.2260658, z: 1.2630206, w: -0.19311877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9833333 + value: {x: -0.012105107, y: -0.33101353, z: 0.55371916, w: 0.7639886} + inSlope: {x: -0.9062873, y: 0.59544957, z: 1.2707692, w: -0.6771078} + outSlope: {x: -0.90926975, y: 0.5981332, z: 1.2749445, w: -0.67770547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0166667 + value: {x: -0.046194054, y: -0.3102364, z: 0.6048021, w: 0.7320067} + inSlope: {x: -0.74364316, y: 0.42557758, z: 1.0067234, w: -0.69916314} + outSlope: {x: -0.74714494, y: 0.42676967, z: 1.0120878, w: -0.7009513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.073828645, y: -0.29524052, z: 0.63904893, w: 0.7063985} + inSlope: {x: -0.66220826, y: 0.36299264, z: 0.79393464, w: -0.6365782} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.000000029802322, y: -0.000000011175872, z: 0, w: 1} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.000000064866484, y: 0.000000028115396, z: 3.631496e-11, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3833333 + value: {x: -0.00000002070152, y: -0.0000000039444257, z: 0.000000008303623, w: 1} + inSlope: {x: 0.000000045024148, y: -0.000003761188, z: -0.00000001806035, w: 0} + outSlope: {x: 0.000000043662894, y: 0.0020158836, z: -0.000000017426077, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333333 + value: {x: -0.000000020425738, y: -0.00000031887188, z: 0.000000008555242, w: 1} + inSlope: {x: 0.0000014523507, y: -2.0148287, z: -0.0000006567553, w: 0} + outSlope: {x: 0.0000014479774, y: -2.0165458, z: -0.0000006545866, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4833333 + value: {x: -0.000000018388114, y: -0.16766466, z: 0.000000005303767, w: 0.9858441} + inSlope: {x: 0.0000012990124, y: -3.6051817, z: -0.0000004478189, w: -0.61273485} + outSlope: {x: 0.0000013028524, y: -3.6165152, z: -0.0000004485483, w: -0.61512053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5166667 + value: {x: -0.000000016210594, y: -0.30199674, z: 0.000000002633611, w: 0.95330894} + inSlope: {x: 0.0000011598732, y: -2.0098705, z: -0.00000022344814, w: -0.6365782} + outSlope: {x: 0.0000011570817, y: -1.999733, z: -0.00000022271931, w: -0.63300043} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5666667 + value: {x: -0.00000001530559, y: -0.33754373, z: 0.0000000021483952, w: 0.94130987} + inSlope: {x: 0.0000010992436, y: 0.65207386, z: -0.0000001433518, w: 0.23484196} + outSlope: {x: 0.0000011014666, y: 0.65803593, z: -0.00000014360526, w: 0.23603462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00000001637381, y: -0.24619518, z: 0.0000000045103064, w: 0.9692203} + inSlope: {x: 0.0000011950985, y: 3.992025, z: -0.0000002566616, w: 1.013876} + outSlope: {x: 0.0000011920787, y: 3.9860644, z: -0.0000002563019, w: 1.0120878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.65 + value: {x: -0.000000019046828, y: -0.000000013038518, z: 0.000000009813372, w: 1} + inSlope: {x: 0.0000013945125, y: 2.9392066, z: -0.00000064739385, w: 0} + outSlope: {x: 0.0000013978698, y: 2.9357388, z: -0.00000064958766, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6833333 + value: {x: -0.000000018771047, y: -0.0000000131937385, z: 0.000000010064999, w: 1} + inSlope: {x: 0.0000013489489, y: -0.0029312007, z: -0.00000072368846, w: 0} + outSlope: {x: 0.0000013484034, y: 0.00000094771616, z: -0.0000007229574, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.85 + value: {x: -0.000000017667922, y: -0.000000013814621, z: 0.000000011071497, w: 1} + inSlope: {x: 0.0000003162269, y: 0.00000024727942, z: -0.0000001980175, w: 0} + outSlope: {x: 0.0000003166004, y: 0.0035930632, z: -0.00000019824161, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8833333 + value: {x: -0.000000017392141, y: -0.000000013969841, z: 0.000000011323122, w: 1} + inSlope: {x: 0.0000012060764, y: -3.5715487, z: -0.0000008737286, w: 0} + outSlope: {x: 0.0000012105173, y: -3.5973208, z: -0.00000087652637, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333333 + value: {x: -0.000000012908206, y: -0.29688865, z: 0.0000000059712146, w: 0.9549121} + inSlope: {x: 0.0000008945209, y: -4.906659, z: -0.00000049462705, w: -1.5246882} + outSlope: {x: 0.00000089556676, y: -4.8971105, z: -0.0000004942884, w: -1.5234926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9833333 + value: {x: -0.000000010261488, y: -0.42278174, z: 0.0000000035975434, w: 0.9062315} + inSlope: {x: 0.0000007270085, y: -2.2047727, z: -0.00000028307093, w: -1.0287747} + outSlope: {x: 0.0000007291241, y: -2.2128246, z: -0.00000028367336, w: -1.0317574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0166667 + value: {x: -0.000000008646113, y: -0.4841628, z: 0.0000000025479234, w: 0.87497795} + inSlope: {x: 0.0000006138029, y: -1.0943424, z: -0.00000019263942, w: -0.6043917} + outSlope: {x: 0.00000061845697, y: -1.1003028, z: -0.00000019400056, w: -0.60916007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.000000007606867, y: -0.51527846, z: 0.0000000021733901, w: 0.8570228} + inSlope: {x: 0.00000054219794, y: -0.73552203, z: -0.00000016206162, w: -0.44226688} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.000000011313912, y: -0.000000003771304, z: 0.1557325, w: 0.9877993} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.000024062918, y: 0.00007188569, z: -0.21468846, w: 0.033527613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: -0.000007010448, y: 0.000025196487, z: 0.0852614, w: 0.99635863} + inSlope: {x: -0.00006262553, y: 0.0003935156, z: -0.9900145, w: 0.08493661} + outSlope: {x: -0.00006265146, y: 0.00039413502, z: -0.9913892, w: 0.08475781} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.31666666 + value: {x: -0.000008445571, y: 0.00012496037, z: -0.11518801, w: 0.9933437} + inSlope: {x: 0.00014399849, y: 0.00073909183, z: -1.1530371, w: -0.13375284} + outSlope: {x: 0.00014450599, y: 0.00073935377, z: -1.1529924, w: -0.13375284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.48333332 + value: {x: 0.000014034289, y: 0.00026610354, z: -0.23019786, w: 0.9731438} + inSlope: {x: -0.0000060463212, y: 0.0009045471, z: 0.14394523, w: 0.03433228} + outSlope: {x: -0.0000067666383, y: 0.00090504566, z: 0.14688283, w: 0.03474098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.000040939398, y: 0.00037739897, z: -0.06817984, w: 0.997673} + inSlope: {x: -0.0010039571, y: 0.00060519314, z: 2.2740016, w: 0.15582351} + outSlope: {x: -0.0010053047, y: 0.0006052434, z: 2.2754972, w: 0.15521052} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.68333334 + value: {x: -0.00014375393, y: 0.0004269933, z: 0.15056127, w: 0.9886006} + inSlope: {x: -0.0013919201, y: 0.00017951247, z: 2.6997335, w: -0.41127214} + outSlope: {x: -0.0013940156, y: 0.00017811549, z: 2.7013428, w: -0.41127214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.76666665 + value: {x: -0.00026345826, y: 0.00043999817, z: 0.36088583, w: 0.93260986} + inSlope: {x: -0.0012737004, y: -0.00014703258, z: 2.1225219, w: -0.82111377} + outSlope: {x: -0.001274398, y: -0.00014773097, z: 2.1232357, w: -0.8218284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.85 + value: {x: -0.00035344402, y: 0.00043746043, z: 0.4911814, w: 0.87105715} + inSlope: {x: -0.00068382325, y: 0.00005308536, z: 0.8186098, w: -0.46133974} + outSlope: {x: -0.00068146625, y: 0.000054569686, z: 0.8180738, w: -0.46133998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.98333335 + value: {x: -0.00044956885, y: 0.00042946835, z: 0.4965408, w: 0.86801314} + inSlope: {x: -0.0032209211, y: -0.0015091792, z: -0.3037602, w: 0.17389657} + outSlope: {x: -0.003242852, y: -0.0015175766, z: -0.3048252, w: 0.1743962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0040143854, y: -0.000028802431, z: 0.30342388, w: 0.9528472} + inSlope: {x: -0.01691501, y: 0.0035545025, z: -0.8711395, w: 0.27747717} + outSlope: {x: -0.016929293, y: 0.003567144, z: -0.871649, w: 0.2775742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4833333 + value: {x: -0.0073306058, y: 0.0010217433, z: 0.124251164, w: 0.9922232} + inSlope: {x: -0.010539704, y: 0.008861712, z: -0.9721287, w: 0.12186856} + outSlope: {x: -0.010536055, y: 0.008877136, z: -0.97306097, w: 0.121593505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.65 + value: {x: -0.008130842, y: 0.0026322645, z: -0.06998535, w: 0.99751145} + inSlope: {x: 0.0030510135, y: 0.0067404485, z: -1.1130276, w: -0.07760526} + outSlope: {x: 0.0030621872, y: 0.006729268, z: -1.112401, w: -0.078320466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8166667 + value: {x: -0.007599566, y: 0.0027892117, z: -0.17947182, w: 0.9837298} + inSlope: {x: 0.0021010628, y: -0.0057569677, z: 0.12212986, w: 0.022172917} + outSlope: {x: 0.002099469, y: -0.005781523, z: 0.124531254, w: 0.022479488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333333 + value: {x: -0.007497542, y: 0.0013948106, z: -0.046362843, w: 0.99889565} + inSlope: {x: 0.0019517879, y: -0.007132607, z: 1.6902404, w: 0.078678206} + outSlope: {x: 0.0019557765, y: -0.007084102, z: 1.6901038, w: 0.07796284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0166667 + value: {x: -0.0075528123, y: 0.0020360048, z: 0.09398581, w: 0.99554276} + inSlope: {x: -0.0034309907, y: 0.017149366, z: 1.3775818, w: -0.12946123} + outSlope: {x: -0.0034272703, y: 0.017196888, z: 1.3798488, w: -0.13113034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.0077420967, y: 0.002824664, z: 0.14256987, w: 0.9897504} + inSlope: {x: -0.004442413, y: 0.018635783, z: 1.1566292, w: -0.16689317} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.404153, y: -0.16687715, z: -0.13939673, w: 0.8884712} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.06356836, y: 0.021636488, z: 0.08676947, w: 0.046312813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.35 + value: {x: -0.3073586, y: -0.14351565, z: -0.068415076, w: 0.9382182} + inSlope: {x: 0.6063581, y: 0.17447771, z: 0.2922714, w: 0.24658443} + outSlope: {x: 0.606974, y: 0.17479064, z: 0.2920628, w: 0.24656457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.65 + value: {x: -0.05959607, y: -0.06506102, z: -0.03204786, w: 0.99558437} + inSlope: {x: 0.9643163, y: 0.3125022, z: -0.047385696, w: 0.076691315} + outSlope: {x: 0.96455795, y: 0.31249517, z: -0.047788016, w: 0.0763893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18814996, y: 0.05740916, z: -0.06260353, w: 0.9784604} + inSlope: {x: -0.11322496, y: 0.2655565, z: 0.12618896, w: 0.014305112} + outSlope: {x: -0.11461984, y: 0.26562837, z: 0.1267792, w: 0.013589872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.15 + value: {x: 0.15731497, y: 0.06743938, z: -0.04709459, w: 0.984117} + inSlope: {x: -0.7404692, y: -0.29835135, z: 0.2536478, w: 0.15163437} + outSlope: {x: -0.7416946, y: -0.3003435, z: 0.25385192, w: 0.15071459} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.012120517, y: -0.046818912, z: -0.02646488, w: 0.9984792} + inSlope: {x: -1.2695948, y: -1.1906772, z: -0.03748706, w: -0.04138265} + outSlope: {x: -1.2705181, y: -1.1917951, z: -0.03842265, w: -0.04184247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333333 + value: {x: -0.13946363, y: -0.16805908, z: -0.089463316, w: 0.97175217} + inSlope: {x: -0.54699194, y: 0.22941834, z: -0.36562988, w: -0.07259847} + outSlope: {x: -0.5469022, y: 0.23174275, z: -0.36509317, w: -0.07152554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23038779, y: -0.025092013, z: -0.10950649, w: 0.966592} + inSlope: {x: -0.500947, y: 0.9656507, z: 0.022843469, w: -0.09155269} + outSlope: {x: -0.5008583, y: 0.9654397, z: 0.022977613, w: -0.09083757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6833333 + value: {x: -0.26919642, y: 0.021479994, z: -0.100168645, w: 0.95762104} + inSlope: {x: -0.4055504, y: -0.26321435, z: 0.20509978, w: -0.08797654} + outSlope: {x: -0.40546027, y: -0.2658458, z: 0.20513295, w: -0.08627765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8166667 + value: {x: -0.2970391, y: -0.16467465, z: -0.06912338, w: 0.9380149} + inSlope: {x: 0.08314841, y: -2.217179, z: 0.1941806, w: -0.34823984} + outSlope: {x: 0.0849367, y: -2.2242239, z: 0.19446033, w: -0.34958157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8833333 + value: {x: -0.28848472, y: -0.3552105, z: -0.062506266, w: 0.88695836} + inSlope: {x: 0.20116587, y: -2.0192583, z: -0.061132073, w: -0.7456548} + outSlope: {x: 0.20116563, y: -2.0167227, z: -0.061616287, w: -0.74744207} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9833333 + value: {x: -0.27255157, y: -0.4806496, z: -0.079564214, w: 0.8296754} + inSlope: {x: 0.23961061, y: -0.66936, z: -0.38042656, w: -0.34451476} + outSlope: {x: 0.24139903, y: -0.67234105, z: -0.38266218, 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: 2.0166667 + value: {x: -0.26116735, y: -0.4879016, z: -0.099491954, w: 0.8269492} + inSlope: {x: 0.30219585, y: 0.2548101, z: -0.50917315, w: 0.18417853} + outSlope: {x: 0.30458003, y: 0.2574923, z: -0.51289845, w: 0.18835086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.24735938, y: -0.45887825, z: -0.122393765, w: 0.8445495} + inSlope: {x: 0.3460053, y: 0.7021434, z: -0.53778344, w: 0.4029278} + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0, y: 0, z: 0.2814121, w: 0.95958704} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: -0.099658966, w: 0.029087067} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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, y: 0, z: 0.16111101, w: 0.9869363} + inSlope: {x: 0, y: 0, z: -0.83476305, w: 0.13637543} + outSlope: {x: 0, y: 0, z: -0.8352996, w: 0.13637544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.51666665 + value: {x: 0, y: 0, z: -0.06615745, w: 0.9978092} + inSlope: {x: 0, y: 0, z: -0.8146764, w: -0.054121025} + outSlope: {x: 0, y: 0, z: -0.8141174, w: -0.0540018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.85 + value: {x: 0, y: 0, z: -0.17610423, w: 0.98437154} + inSlope: {x: 0, y: 0, z: 0.14179944, w: 0.025391575} + outSlope: {x: 0, y: 0, z: 0.1427293, w: 0.025463106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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, y: 0, z: -0.019886285, w: 0.99980223} + inSlope: {x: 0, y: 0, z: 0.39163384, w: 0.007724763} + outSlope: {x: 0, y: 0, z: 0.39140996, w: 0.007748602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5666667 + value: {x: 0, y: 0, z: 0.029368473, w: 0.99956864} + inSlope: {x: 0, y: 0, z: -0.06443509, w: 0.0017881389} + outSlope: {x: 0, y: 0, z: -0.06470831, w: 0.0019073491} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0, y: 0, z: 0.0003747149, w: 0.99999994} + inSlope: {x: 0, y: 0, z: -0.025400374, 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: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + 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: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + 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: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.004812095, y: 0.042091697, z: -0.0022147377} + inSlope: {x: 0.00026229143, y: 0.0030574035, z: 0.00008932113} + outSlope: {x: 0.00026229143, y: 0.0030574035, z: 0.00008932113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.43333334 + value: {x: -0.0038750477, y: 0.044757847, z: -0.00191088} + inSlope: {x: 0.003936411, y: 0.0039011773, z: 0.00123804} + outSlope: {x: 0.003936411, y: 0.0039011773, z: 0.00123804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.68333334 + value: {x: -0.002679167, y: 0.04256608, z: -0.0015534569} + inSlope: {x: 0.005263965, y: -0.021011457, z: 0.0015119533} + outSlope: {x: 0.005263965, y: -0.021011457, z: 0.0015119533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.85 + value: {x: -0.001730327, y: 0.036196746, z: -0.001302939} + inSlope: {x: 0.00627586, y: -0.04923436, z: 0.001475953} + outSlope: {x: 0.00627586, y: -0.04923436, z: 0.001475953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8833333 + value: {x: -0.001421135, y: 0.033841565, z: -0.0012429559} + inSlope: {x: 0.0074206027, y: -0.056524284, z: 0.0014395944} + outSlope: {x: 0.0074206027, y: -0.056524284, z: 0.0014395944} + tangentMode: 0 + weightedMode: 0 + 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.001074055, y: 0.031139096, z: -0.0011849409} + inSlope: {x: 0.008329918, y: -0.06485925, z: 0.0013923591} + outSlope: {x: 0.008329918, y: -0.06485925, z: 0.0013923591} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.98333335 + value: {x: -0.0006988959, y: 0.02809997, z: -0.001129351} + inSlope: {x: 0.009003826, y: -0.072939105, z: 0.0013341607} + outSlope: {x: 0.009003826, y: -0.072939105, z: 0.0013341607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0166667 + value: {x: -0.00030546868, y: 0.02497075, z: -0.0010766399} + inSlope: {x: 0.009442248, y: -0.07510124, z: 0.001265065} + outSlope: {x: 0.009442248, y: -0.07510124, z: 0.001265065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1 + value: {x: 0.000496953, y: 0.01949825, z: -0.0009816819} + inSlope: {x: 0.009612824, y: -0.061525777, z: 0.0010940173} + outSlope: {x: 0.009612824, y: -0.061525777, z: 0.0010940173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.15 + value: {x: 0.0008863276, y: 0.01714743, z: -0.0009403443} + inSlope: {x: 0.009344999, y: -0.056419738, z: 0.0009921036} + outSlope: {x: 0.009344999, y: -0.056419738, z: 0.0009921036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1833333 + value: {x: 0.001254732, y: 0.014933329, z: -0.00090302114} + inSlope: {x: 0.008841714, y: -0.05313846, z: 0.0008957567} + outSlope: {x: 0.008841714, y: -0.05313846, z: 0.0008957567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2166667 + value: {x: 0.0015923559, y: 0.0127799, z: -0.00086907006} + inSlope: {x: 0.008102959, y: -0.05168222, z: 0.0008148249} + outSlope: {x: 0.008102959, y: -0.05168222, z: 0.0008148249} + tangentMode: 0 + weightedMode: 0 + 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.001889389, y: 0.0106990095, z: -0.000838332} + inSlope: {x: 0.0071287993, y: -0.049941406, z: 0.00073771365} + outSlope: {x: 0.0071287993, y: -0.049941406, z: 0.00073771365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3166667 + value: {x: 0.002136023, y: 0.00878821, z: -0.0008106472} + inSlope: {x: 0.0059192223, y: -0.04585922, z: 0.0006644357} + outSlope: {x: 0.0059192223, y: -0.04585922, z: 0.0006644357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.35 + value: {x: 0.002322447, y: 0.0070999996, z: -0.0007858564} + inSlope: {x: 0.0044741663, y: -0.040516987, z: 0.000594979} + outSlope: {x: 0.0044741663, y: -0.040516987, z: 0.000594979} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3833333 + value: {x: 0.002438852, y: 0.005686879, z: -0.00076380005} + inSlope: {x: 0.0027937235, y: -0.033914927, z: 0.00052935234} + outSlope: {x: 0.0027937235, y: -0.033914927, z: 0.00052935234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4333333 + value: {x: 0.0024319869, y: 0.0046013473, z: -0.0007443191} + inSlope: {x: -0.00016476288, y: -0.026052792, z: 0.00046754343} + outSlope: {x: -0.00016476288, y: -0.026052792, z: 0.00046754343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4833333 + value: {x: 0.002256728, y: 0.0038959028, z: -0.0007272539} + inSlope: {x: -0.004206207, y: -0.016930629, z: 0.0004095636} + outSlope: {x: -0.004206207, y: -0.016930629, z: 0.0004095636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5166667 + value: {x: 0.0019154539, y: 0.0036230467, z: -0.0007124449} + inSlope: {x: -0.008190583, y: -0.0065485514, z: 0.00035541627} + outSlope: {x: -0.008190583, y: -0.0065485514, z: 0.00035541627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.55 + value: {x: 0.0014105419, y: 0.0038509928, z: -0.0006997328} + inSlope: {x: -0.012117899, y: 0.0054707103, z: 0.00030509083} + outSlope: {x: -0.012117899, y: 0.0054707103, z: 0.00030509083} + tangentMode: 0 + weightedMode: 0 + 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.00080719276, y: 0.004330124, z: -0.00068895816} + inSlope: {x: -0.014480353, y: 0.011499124, z: 0.0002585913} + outSlope: {x: -0.014480353, y: 0.011499124, z: 0.0002585913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.65 + value: {x: 0.0002109858, y: 0.004636195, z: -0.00067996164} + inSlope: {x: -0.014308981, y: 0.007345712, z: 0.00021591624} + outSlope: {x: -0.014308981, y: 0.007345712, z: 0.00021591624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6833333 + value: {x: -0.0003151323, y: 0.004598214, z: -0.0006725839} + inSlope: {x: -0.012626845, y: -0.00091154425, z: 0.00017706708} + outSlope: {x: -0.012626845, y: -0.00091154425, z: 0.00017706708} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7166667 + value: {x: -0.00070821424, y: 0.004416071, z: -0.0006666652} + inSlope: {x: -0.009433949, y: -0.004371427, z: 0.00014204773} + outSlope: {x: -0.009433949, y: -0.004371427, z: 0.00014204773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7666667 + value: {x: -0.0009053131, y: 0.00422184, z: -0.00066204637} + inSlope: {x: -0.004730377, y: -0.004661548, z: 0.00011085222} + outSlope: {x: -0.004730377, y: -0.004661548, z: 0.00011085222} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8166667 + value: {x: -0.000952621, y: 0.0040696, z: -0.00065856805} + inSlope: {x: -0.001135391, y: -0.0036537587, z: 0.00008347937} + outSlope: {x: -0.001135391, y: -0.0036537587, z: 0.00008347937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.85 + value: {x: -0.0009459499, y: 0.0039265826, z: -0.00065607077} + inSlope: {x: 0.00016010612, y: -0.0034324054, z: 0.000059934737} + outSlope: {x: 0.00016010612, y: -0.0034324054, z: 0.000059934737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8833333 + value: {x: -0.0008967824, y: 0.0037945989, z: -0.000654395} + inSlope: {x: 0.0011800211, y: -0.0031676202, z: 0.000040218867} + outSlope: {x: 0.0011800211, y: -0.0031676202, z: 0.000040218867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9333333 + value: {x: -0.0008166009, y: 0.0036754548, z: -0.0006536328} + inSlope: {x: 0.001924358, y: -0.0028594593, z: 0.000018292683} + outSlope: {x: 0.001924358, y: -0.0028594593, z: 0.000018292683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.0005047996, y: 0.0034131461, z: -0.00065271935} + inSlope: {x: 0.0025038507, y: -0.0016745678, z: 0.000001814958} + outSlope: {x: 0.0025038507, y: -0.0016745678, z: 0.000001814958} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.0008178445, y: -0.0010341642, z: -0.000032050608} + inSlope: {x: -0.00005962372, y: 0.000009961724, z: 0.00011477709} + outSlope: {x: -0.00005962372, y: 0.000009961724, z: 0.00011477709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: 0.0008153602, y: -0.0010337491, z: -0.00002726823} + inSlope: {x: -0.00005962372, y: 0.000009961724, z: 0.00011477709} + outSlope: {x: -0.00005962372, y: 0.000009961724, z: 0.00011477709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: 0.0008080788, y: -0.0010333341, z: -0.000013523698} + inSlope: {x: -0.00017475485, y: 0.000009961724, z: 0.00032986878} + outSlope: {x: -0.00017475485, y: 0.000009961724, z: 0.00032986878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: 0.00079624343, y: -0.001032919, z: 0.000008279085} + inSlope: {x: -0.00028404774, y: 0.000009959937, z: 0.0005232668} + outSlope: {x: -0.00028404774, y: 0.000009959937, z: 0.0005232668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.18333334 + value: {x: 0.0007801118, y: -0.001032504, z: 0.000037236063} + inSlope: {x: -0.00038715894, y: 0.000009961723, z: 0.0006949674} + outSlope: {x: -0.00038715894, y: 0.000009961723, z: 0.0006949674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.21666667 + value: {x: 0.0007599318, y: -0.0010320889, z: 0.00007244289} + inSlope: {x: -0.0004843212, y: 0.000009961726, z: 0.000844964} + outSlope: {x: -0.0004843212, y: 0.000009961726, z: 0.000844964} + tangentMode: 0 + weightedMode: 0 + 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.0007359464, y: -0.0010296259, z: 0.00011299595} + inSlope: {x: -0.00057564845, y: 0.0000591123, z: 0.00097327336} + outSlope: {x: -0.00057564845, y: 0.0000591123, z: 0.00097327336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.31666666 + value: {x: 0.0007084134, y: -0.0010266597, z: 0.00015799105} + inSlope: {x: -0.00066079275, y: 0.000071187635, z: 0.0010798826} + outSlope: {x: -0.00066079275, y: 0.000071187635, z: 0.0010798826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.55 + value: {x: 0.00048262253, y: -0.0010026436, z: 0.00047061875} + inSlope: {x: -0.0010462353, y: 0.00010457928, z: 0.0012639028} + outSlope: {x: -0.0010462353, y: 0.00010457928, z: 0.0012639028} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.76666665 + value: {x: 0.00024263111, y: -0.0009829833, z: 0.00068755966} + inSlope: {x: -0.0012024507, y: 0.00008140322, z: 0.00082060177} + outSlope: {x: -0.0012024507, y: 0.00008140322, z: 0.00082060177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8833333 + value: {x: 0.00009000454, y: -0.0009775291, z: 0.0007480809} + inSlope: {x: -0.0012242581, y: 0.000000581145, z: 0.00029425963} + outSlope: {x: -0.0012242581, y: 0.000000581145, z: 0.00029425963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.98333335 + value: {x: -0.000011175734, y: -0.0009855622, z: 0.0007443433} + inSlope: {x: -0.001208758, y: -0.00019337851, z: -0.00016511872} + outSlope: {x: -0.001208758, y: -0.00019337851, z: -0.00016511872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.05 + value: {x: -0.00010957146, y: -0.001016803, z: 0.00069689995} + inSlope: {x: -0.0011693917, y: -0.000428317, z: -0.0007112849} + outSlope: {x: -0.0011693917, y: -0.000428317, z: -0.0007112849} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1 + value: {x: -0.00015709682, y: -0.001038217, z: 0.00065452856} + inSlope: {x: -0.0011406064, y: -0.0005139353, z: -0.0010169111} + outSlope: {x: -0.0011406064, y: -0.0005139353, z: -0.0010169111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.15 + value: {x: -0.00020317848, y: -0.001062313, z: 0.0005985188} + inSlope: {x: -0.0011059612, y: -0.00057830446, z: -0.001344236} + outSlope: {x: -0.0011059612, y: -0.00057830446, z: -0.001344236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2166667 + value: {x: -0.00029000334, y: -0.001115018, z: 0.00045592806} + inSlope: {x: -0.0010185494, y: -0.000643416, z: -0.0017289182} + outSlope: {x: -0.0010185494, y: -0.000643416, z: -0.0017289182} + tangentMode: 0 + weightedMode: 0 + 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.000330247, y: -0.001141857, z: 0.0003953965} + inSlope: {x: -0.0009658487, y: -0.0006441349, z: -0.001452759} + outSlope: {x: -0.0009658487, y: -0.0006441349, z: -0.001452759} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3166667 + value: {x: -0.00034974387, y: -0.001167841, z: 0.00034537265} + inSlope: {x: -0.00046792522, y: -0.00062361953, z: -0.001200573} + outSlope: {x: -0.00046792522, y: -0.00062361953, z: -0.001200573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.35 + value: {x: -0.00033359102, y: -0.001192086, z: 0.00030485712} + inSlope: {x: 0.00038766785, y: -0.0005818773, z: -0.0009723713} + outSlope: {x: 0.00038766785, y: -0.0005818773, z: -0.0009723713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3833333 + value: {x: -0.0002870145, y: -0.001213706, z: 0.00027285068} + inSlope: {x: 0.0011178375, y: -0.00051887915, z: -0.000768155} + outSlope: {x: 0.0011178375, y: -0.00051887915, z: -0.000768155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4333333 + value: {x: -0.0002152385, y: -0.001231817, z: 0.0002483539} + inSlope: {x: 0.0017226258, y: -0.0004346649, z: -0.0005879238} + outSlope: {x: 0.0017226258, y: -0.0004346649, z: -0.0005879238} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4833333 + value: {x: -0.00012348928, y: -0.0012455359, z: 0.00023036756} + inSlope: {x: 0.002201977, y: -0.00032925484, z: -0.00043167121} + outSlope: {x: 0.002201977, y: -0.00032925484, z: -0.00043167121} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5166667 + value: {x: -0.000016991506, y: -0.001253977, z: 0.0002178923} + inSlope: {x: 0.0025559491, y: -0.00020258385, z: -0.00029940633} + outSlope: {x: 0.0025559491, y: -0.00020258385, z: -0.00029940633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.55 + value: {x: 0.000099029574, y: -0.0012562551, z: 0.0002099289} + inSlope: {x: 0.0027845087, y: -0.000054674198, z: -0.00019112189} + outSlope: {x: 0.0027845087, y: -0.000054674198, z: -0.00019112189} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.65 + value: {x: 0.000338742, y: -0.0012387879, z: 0.00020354024} + inSlope: {x: 0.0028654253, y: 0.0003047779, z: -0.000046504185} + outSlope: {x: 0.0028654253, y: 0.0003047779, z: -0.000046504185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6833333 + value: {x: 0.00043323325, y: -0.0012172731, z: 0.0002031163} + inSlope: {x: 0.0022677928, y: 0.0005163561, z: -0.000010174522} + outSlope: {x: 0.0022677928, y: 0.0005163561, z: -0.000010174522} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7166667 + value: {x: 0.0004868141, y: -0.0011971738, z: 0.00020423136} + inSlope: {x: 0.001285938, y: 0.00048238185, z: 0.000026761241} + outSlope: {x: 0.001285938, y: 0.00048238185, z: 0.000026761241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7666667 + value: {x: 0.0005062089, y: -0.001187956, z: 0.00020725772} + inSlope: {x: 0.00046547636, y: 0.0002212288, z: 0.0000726325} + outSlope: {x: 0.00046547636, y: 0.0002212288, z: 0.0000726325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8166667 + value: {x: 0.00049814075, y: -0.001187584, z: 0.00021171778} + inSlope: {x: -0.0001936369, y: 0.0000089264, z: 0.0001070417} + outSlope: {x: -0.0001936369, y: 0.0000089264, z: 0.0001070417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.85 + value: {x: 0.0004693341, y: -0.0011940241, z: 0.00021713346} + inSlope: {x: -0.0006913577, y: -0.0001545611, z: 0.00012997602} + outSlope: {x: -0.0006913577, y: -0.0001545611, z: 0.00012997602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9333333 + value: {x: 0.0003763976, y: -0.001219197, z: 0.00022892046} + inSlope: {x: -0.0012027305, y: -0.0003349671, z: 0.00014144374} + outSlope: {x: -0.0012027305, y: -0.0003349671, z: 0.00014144374} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0166667 + value: {x: 0.00028119015, y: -0.001247196, z: 0.00023879617} + inSlope: {x: -0.0010686159, y: -0.00032004146, z: 0.0001070417} + outSlope: {x: -0.0010686159, y: -0.00032004146, z: 0.0001070417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0.0002495436, y: -0.001257169, z: 0.00024182259} + inSlope: {x: -0.0007595157, y: -0.00023934913, z: 0.00007263408} + outSlope: {x: -0.0007595157, y: -0.00023934913, z: 0.00007263408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.000021827052, y: -0.002998827, z: -0.000053089054} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0.000021827052, y: -0.002998827, z: -0.000053089054} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.000019310299, y: -0.0025961718, z: 0.0003839118} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.000019310299, y: -0.0025961718, z: 0.0003839118} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.00014042061, y: 0.001305686, z: 0.00007776916} + inSlope: {x: 0.00005916506, y: -0.00001861453, z: -0.00008173227} + outSlope: {x: 0.00005916506, y: -0.00001861453, z: -0.00008173227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: -0.0001379554, y: 0.0013049103, z: 0.00007436365} + inSlope: {x: 0.00005916506, y: -0.00001861453, z: -0.00008173227} + outSlope: {x: 0.00005916506, y: -0.00001861453, z: -0.00008173227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: -0.0001307362, y: 0.0013041347, z: 0.000064565385} + inSlope: {x: 0.00017326087, y: -0.00001861453, z: -0.0002351582} + outSlope: {x: 0.00017326087, y: -0.00001861453, z: -0.0002351582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: -0.000119010954, y: 0.00130124, z: 0.000049001424} + inSlope: {x: 0.00028140598, y: -0.00006947279, z: -0.00037353518} + outSlope: {x: 0.00028140598, y: -0.00006947279, z: -0.00037353518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.18333334 + value: {x: -0.00010303715, y: 0.001296989, z: 0.000028298944} + inSlope: {x: 0.00038337123, y: -0.00010202407, z: -0.0004968595} + outSlope: {x: 0.00038337123, y: -0.00010202407, z: -0.0004968595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.21666667 + value: {x: -0.000083053215, y: 0.0012914222, z: 0.0000030849874} + inSlope: {x: 0.00047961462, y: -0.00013360265, z: -0.0006051351} + outSlope: {x: 0.00047961462, y: -0.00013360265, z: -0.0006051351} + tangentMode: 0 + weightedMode: 0 + 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.000059330923, y: 0.0012845799, z: -0.000026012956} + inSlope: {x: 0.0005693349, y: -0.00016421554, z: -0.0006983506} + outSlope: {x: 0.0005693349, y: -0.00016421554, z: -0.0006983506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.31666666 + value: {x: -0.000032113472, y: 0.0012765063, z: -0.00005836785} + inSlope: {x: 0.000653219, y: -0.00019376639, z: -0.0007765175} + outSlope: {x: 0.000653219, y: -0.00019376639, z: -0.0007765175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.35 + value: {x: -0.0000016583489, y: 0.00126724, z: -0.00009335279} + inSlope: {x: 0.0007309227, y: -0.00022239078, z: -0.0008396383} + outSlope: {x: 0.0007309227, y: -0.00022239078, z: -0.0008396383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.38333333 + value: {x: 0.000031791267, y: 0.0012568242, z: -0.00013034015} + inSlope: {x: 0.000802791, y: -0.00024997836, z: -0.0008876969} + outSlope: {x: 0.000802791, y: -0.00024997836, z: -0.0008876969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.43333334 + value: {x: 0.00006797312, y: 0.0012452994, z: -0.00016870335} + inSlope: {x: 0.0008683645, y: -0.0002765984, z: -0.00092071673} + outSlope: {x: 0.0008683645, y: -0.0002765984, z: -0.00092071673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.48333332 + value: {x: 0.00010663926, y: 0.0012327068, z: -0.00020781456} + inSlope: {x: 0.00092798687, y: -0.00030221863, z: -0.00093866896} + outSlope: {x: 0.00092798687, y: -0.00030221863, z: -0.00093866896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.65 + value: {x: 0.00028110173, y: 0.0011724961, z: -0.0003591998} + inSlope: {x: 0.0011058246, y: -0.00039472262, z: -0.00085999083} + outSlope: {x: 0.0011058246, y: -0.00039472262, z: -0.00085999083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.81666666 + value: {x: 0.00047508563, y: 0.001098523, z: -0.00047238483} + inSlope: {x: 0.0011866185, y: -0.00047131217, z: -0.00054047914} + outSlope: {x: 0.0011866185, y: -0.00047131217, z: -0.00054047914} + tangentMode: 0 + weightedMode: 0 + 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.0006236674, y: 0.001035606, z: -0.00050805864} + inSlope: {x: 0.0011835769, y: -0.0005183527, z: -0.0001427936} + outSlope: {x: 0.0011835769, y: -0.0005183527, z: -0.0001427936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0166667 + value: {x: 0.0007204079, y: 0.0009907412, z: -0.00049899815} + inSlope: {x: 0.0011513002, y: -0.0005447242, z: 0.00019758573} + outSlope: {x: 0.0011513002, y: -0.0005447242, z: 0.00019758573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1 + value: {x: 0.0008129318, y: 0.0009439269, z: -0.00045780957} + inSlope: {x: 0.0010946217, y: -0.0005671198, z: 0.0005981708} + outSlope: {x: 0.0010946217, y: -0.0005671198, z: 0.0005981708} + tangentMode: 0 + weightedMode: 0 + 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.0009665938, y: 0.00084577536, z: -0.00032281532} + inSlope: {x: 0.00065254804, y: -0.00059998565, z: 0.0007217527} + outSlope: {x: 0.00065254804, y: -0.00059998565, z: 0.0007217527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3166667 + value: {x: 0.00097119866, y: 0.00083231553, z: -0.0002960167} + inSlope: {x: 0.000110516055, y: -0.0003230366, z: 0.00064316747} + outSlope: {x: 0.000110516055, y: -0.0003230366, z: 0.00064316747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.35 + value: {x: 0.00095495745, y: 0.0008398289, z: -0.00027230708} + inSlope: {x: -0.0003897886, y: 0.000180321, z: 0.00056902954} + outSlope: {x: -0.0003897886, y: 0.000180321, z: 0.00056902954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4333333 + value: {x: 0.00086689874, y: 0.000903609, z: -0.00023341313} + inSlope: {x: -0.0012650901, y: 0.00093205244, z: 0.00043411055} + outSlope: {x: -0.0012650901, y: 0.00093205244, z: 0.00043411055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5166667 + value: {x: 0.00071634067, y: 0.0010087892, z: -0.00020465009} + inSlope: {x: -0.0019733103, y: 0.0013438684, z: 0.0003169891} + outSlope: {x: -0.0019733103, y: 0.0013438684, z: 0.0003169891} + tangentMode: 0 + weightedMode: 0 + 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.00051720336, y: 0.0011270421, z: -0.00018453479} + inSlope: {x: -0.0025144937, y: 0.0014157566, z: 0.00021766621} + outSlope: {x: -0.0025144937, y: 0.0014157566, z: 0.00021766621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.65 + value: {x: 0.00040376844, y: 0.001182218, z: -0.00017725638} + inSlope: {x: -0.0027224403, y: 0.0013242238, z: 0.00017468171} + outSlope: {x: -0.0027224403, y: 0.0013242238, z: 0.00017468171} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6833333 + value: {x: 0.0003087422, y: 0.00123004, z: -0.00017158374} + inSlope: {x: -0.0022806327, y: 0.0011477291, z: 0.00013614369} + outSlope: {x: -0.0022806327, y: 0.0011477291, z: 0.00013614369} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7166667 + value: {x: 0.000253695, y: 0.0012669661, z: -0.00016733116} + inSlope: {x: -0.0013211297, y: 0.00088622514, z: 0.00010206143} + outSlope: {x: -0.0013211297, y: 0.00088622514, z: 0.00010206143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7666667 + value: {x: 0.00023210981, y: 0.001289456, z: -0.0001643136} + inSlope: {x: -0.000518045, y: 0.00053975754, z: 0.0000724215} + outSlope: {x: -0.000518045, y: 0.00053975754, z: 0.0000724215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8166667 + value: {x: 0.00023746933, y: 0.001293968, z: -0.00016234539} + inSlope: {x: 0.00012862858, y: 0.00010828624, z: 0.00004723732} + outSlope: {x: 0.00012862858, y: 0.00010828624, z: 0.00004723732} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.85 + value: {x: 0.00026325847, y: 0.001286253, z: -0.00016124122} + inSlope: {x: 0.0006189382, y: -0.0001851579, z: 0.000026500173} + outSlope: {x: 0.0006189382, y: -0.0001851579, z: 0.000026500173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8833333 + value: {x: 0.0003029586, y: 0.0012753869, z: -0.00016143109} + inSlope: {x: 0.00095280376, y: -0.00026078607, z: -0.0000045570773} + outSlope: {x: 0.00095280376, y: -0.00026078607, z: -0.0000045570773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0166667 + value: {x: 0.0004403625, y: 0.0012383519, z: -0.0001620007} + inSlope: {x: 0.0010160494, y: -0.0002792665, z: -0.0000045566303} + outSlope: {x: 0.0010160494, y: -0.0002792665, z: -0.0000045566303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0.00047054238, y: 0.001229356, z: -0.00016219057} + inSlope: {x: 0.0007243157, y: -0.00021590132, z: -0.000004557064} + outSlope: {x: 0.0007243157, y: -0.00021590132, z: -0.000004557064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.0029990699, y: -0.0000001625903, z: 0.000054634773} + inSlope: {x: -0, y: 4.4703483e-10, z: 0.0000000012293457} + outSlope: {x: -0, y: 4.4703483e-10, z: 0.0000000012293457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.0029990699, y: -0.00000016167759, z: 0.000054637192} + inSlope: {x: -0, y: 4.4703397e-10, z: 0.0000000012293435} + outSlope: {x: -0, y: 4.4703397e-10, z: 0.0000000012293435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.0003556059, y: 0.000036821402, z: -0.0025999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0.0003556059, y: 0.000036821402, z: -0.0025999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.000011851057, y: -1.2456439e-10, z: -0.00006796107} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.000011851057, y: -1.2456439e-10, z: -0.00006796107} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.0028583296, y: 0.0000000032130627, z: -0.00014242699} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.0028583296, y: 0.0000000032130627, z: -0.00014242699} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.0014556211, y: -0.0014599595, z: -0.0001245801} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.0014556211, y: -0.0014599595, z: -0.0001245801} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.0027749708, y: 0.00000016488134, z: -0.0000054341554} + inSlope: {x: -0, y: 0.000000002089364, z: -0} + outSlope: {x: -0, y: 0.000000002089364, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.00277497, y: 0.0000001691468, z: -0.000005434151} + inSlope: {x: -0, y: 0.00000000208936, z: -0} + outSlope: {x: -0, y: 0.00000000208936, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.0020982707, y: -0.00000017091631, z: 0.000005436465} + inSlope: {x: -0, y: 0.0000000011040537, z: -9.080395e-10} + outSlope: {x: -0, y: 0.0000000011040537, z: -9.080395e-10} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.0020982695, y: -0.00000016866251, z: 0.0000054346024} + inSlope: {x: -0, y: 0.0000000011040516, z: -9.080378e-10} + outSlope: {x: -0, y: 0.0000000011040516, z: -9.080378e-10} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.0014555797, y: 0.0014553503, z: -0.00012458029} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.0014555797, y: 0.0014553503, z: -0.00012458029} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.0027952413, y: -0.0000000026077032, z: 1.4901161e-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} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0.0027952413, y: -0.0000000026077032, z: 1.4901161e-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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.0020026602, y: -0.0000000040233132, z: 8.9406965e-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} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0.0020026602, y: -0.0000000040233132, z: 8.9406965e-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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.0027371924, y: 2.840534e-10, z: -0.00019367921} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.0027371924, y: 2.840534e-10, z: -0.00019367921} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0, y: 0.03325773, z: 0} + inSlope: {x: -0, y: 0.0021326637, z: -0} + outSlope: {x: -0, y: 0.0021326637, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.65 + value: {x: 0, y: 0.03384314, z: 0} + inSlope: {x: -0, y: -0.015893718, z: -0} + outSlope: {x: -0, y: -0.015893718, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.81666666 + value: {x: 0, y: 0.028756138, z: 0} + inSlope: {x: -0, y: -0.04043928, z: -0} + outSlope: {x: -0, y: -0.04043928, z: -0} + tangentMode: 0 + weightedMode: 0 + 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, y: 0.02171585, z: 0} + inSlope: {x: -0, y: -0.06483401, z: -0} + outSlope: {x: -0, y: -0.06483401, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.05 + value: {x: 0, y: 0.012730669, z: 0} + inSlope: {x: -0, y: -0.06882437, z: -0} + outSlope: {x: -0, y: -0.06882437, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1 + value: {x: 0, y: 0.01022708, z: 0} + inSlope: {x: -0, y: -0.06008603, z: -0} + outSlope: {x: -0, y: -0.06008603, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.15 + value: {x: 0, y: 0.00802035, z: 0} + inSlope: {x: -0, y: -0.05296159, z: -0} + outSlope: {x: -0, y: -0.05296159, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1833333 + value: {x: 0, y: 0.006097788, z: 0} + inSlope: {x: -0, y: -0.04614152, z: -0} + outSlope: {x: -0, y: -0.04614152, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2166667 + value: {x: 0, y: 0.004446701, z: 0} + inSlope: {x: -0, y: -0.039626013, z: -0} + outSlope: {x: -0, y: -0.039626013, z: -0} + tangentMode: 0 + weightedMode: 0 + 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, y: 0.0030544018, z: 0} + inSlope: {x: -0, y: -0.033415213, z: -0} + outSlope: {x: -0, y: -0.033415213, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3166667 + value: {x: 0, y: 0.001908195, z: 0} + inSlope: {x: -0, y: -0.02750899, z: -0} + outSlope: {x: -0, y: -0.02750899, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.35 + value: {x: 0, y: 0.0009953922, z: 0} + inSlope: {x: -0, y: -0.021907223, z: -0} + outSlope: {x: -0, y: -0.021907223, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3833333 + value: {x: 0, y: 0.0003032978, z: 0} + inSlope: {x: -0, y: -0.016610282, z: -0} + outSlope: {x: -0, y: -0.016610282, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4333333 + value: {x: 0, y: -0.0001807769, z: 0} + inSlope: {x: -0, y: -0.011617805, z: -0} + outSlope: {x: -0, y: -0.011617805, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4833333 + value: {x: 0, y: -0.0004695227, z: 0} + inSlope: {x: -0, y: -0.0069298856, z: -0} + outSlope: {x: -0, y: -0.0069298856, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5166667 + value: {x: 0, y: -0.0005113571, z: 0} + inSlope: {x: -0, y: -0.0010040269, z: -0} + outSlope: {x: -0, y: -0.0010040269, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.55 + value: {x: 0, y: -0.00018209779, z: 0} + inSlope: {x: -0, y: 0.007902232, z: -0} + outSlope: {x: -0, y: 0.007902232, z: -0} + tangentMode: 0 + weightedMode: 0 + 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, y: 0.0004466991, z: 0} + inSlope: {x: -0, y: 0.015091096, z: -0} + outSlope: {x: -0, y: 0.015091096, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.65 + value: {x: 0, y: 0.0008997148, z: 0} + inSlope: {x: -0, y: 0.010872387, z: -0} + outSlope: {x: -0, y: 0.010872387, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6833333 + value: {x: 0, y: 0.0009635709, z: 0} + inSlope: {x: -0, y: 0.0015325478, z: -0} + outSlope: {x: -0, y: 0.0015325478, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7166667 + value: {x: 0, y: 0.00086266693, z: 0} + inSlope: {x: -0, y: -0.0024216904, z: -0} + outSlope: {x: -0, y: -0.0024216904, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7666667 + value: {x: 0, y: 0.00074423157, z: 0} + inSlope: {x: -0, y: -0.0028424521, z: -0} + outSlope: {x: -0, y: -0.0028424521, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.85 + value: {x: 0, y: 0.000562093, z: 0} + inSlope: {x: -0, y: -0.0023195976, z: -0} + outSlope: {x: -0, y: -0.0023195976, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9833333 + value: {x: 0, y: 0.0002586545, z: 0} + inSlope: {x: -0, y: -0.002353102, z: -0} + outSlope: {x: -0, y: -0.002353102, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0166667 + value: {x: 0, y: 0.00017083938, z: 0} + inSlope: {x: -0, y: -0.0021075646, z: -0} + outSlope: {x: -0, y: -0.0021075646, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0, y: 0.000098603516, z: 0} + inSlope: {x: -0, y: -0.0017336577, z: -0} + outSlope: {x: -0, y: -0.0017336577, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.013613639, y: -0.001046381, z: 0.004070008} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.013613639, y: -0.001046381, z: 0.004070008} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: -0.013613639, y: -0.001046381, z: -0.004080487} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: -0.013613639, y: -0.001046381, z: -0.004080487} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.99999994, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0.99999994, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.99999994, y: 1.0000001, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0.99999994, y: 1.0000001, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 1, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 1.0000001, y: 1.0000001, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 1.0000001, y: 1.0000001, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 1, y: 1, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 1, y: 1, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 1, y: 0.9999999, z: 0.9999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 1, y: 0.9999999, z: 0.9999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 1, y: 1.0000001, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 1, y: 1.0000001, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 1, y: 0.9999999, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 1, y: 0.9999999, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 1, y: 0.99999994, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 1, y: 0.99999994, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.99999994, y: 0.99999994, z: 0.9999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0.99999994, y: 0.99999994, z: 0.9999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 0.99999994, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 0.99999994, y: 0.99999994, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0666666 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 2504784628 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 279179908 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 279179908 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 804800636 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4196139211 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1848425199 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2485356428 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 804800636 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4196139211 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2504784628 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1848425199 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2485356428 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 279179908 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 2.0666666 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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.x + path: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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.z + path: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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.x + path: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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.z + path: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.004812095 + inSlope: 0.00026229143 + outSlope: 0.00026229143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: -0.0038750477 + inSlope: 0.003936411 + outSlope: 0.003936411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -0.002679167 + inSlope: 0.005263965 + outSlope: 0.005263965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -0.001730327 + inSlope: 0.00627586 + outSlope: 0.00627586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: -0.001421135 + inSlope: 0.0074206027 + outSlope: 0.0074206027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.001074055 + inSlope: 0.008329918 + outSlope: 0.008329918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: -0.0006988959 + inSlope: 0.009003826 + outSlope: 0.009003826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0166667 + value: -0.00030546868 + inSlope: 0.009442248 + outSlope: 0.009442248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.000496953 + inSlope: 0.009612824 + outSlope: 0.009612824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.0008863276 + inSlope: 0.009344999 + outSlope: 0.009344999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.001254732 + inSlope: 0.008841714 + outSlope: 0.008841714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.0015923559 + inSlope: 0.008102959 + outSlope: 0.008102959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.001889389 + inSlope: 0.0071287993 + outSlope: 0.0071287993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.002136023 + inSlope: 0.0059192223 + outSlope: 0.0059192223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.002322447 + inSlope: 0.0044741663 + outSlope: 0.0044741663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.002438852 + inSlope: 0.0027937235 + outSlope: 0.0027937235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.0024319869 + inSlope: -0.00016476288 + outSlope: -0.00016476288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.002256728 + inSlope: -0.004206207 + outSlope: -0.004206207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.0019154539 + inSlope: -0.008190583 + outSlope: -0.008190583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.55 + value: 0.0014105419 + inSlope: -0.012117899 + outSlope: -0.012117899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.00080719276 + inSlope: -0.014480353 + outSlope: -0.014480353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.0002109858 + inSlope: -0.014308981 + outSlope: -0.014308981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.0003151323 + inSlope: -0.012626845 + outSlope: -0.012626845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -0.00070821424 + inSlope: -0.009433949 + outSlope: -0.009433949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.0009053131 + inSlope: -0.004730377 + outSlope: -0.004730377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -0.000952621 + inSlope: -0.001135391 + outSlope: -0.001135391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.0009459499 + inSlope: 0.00016010612 + outSlope: 0.00016010612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -0.0008967824 + inSlope: 0.0011800211 + outSlope: 0.0011800211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.0008166009 + inSlope: 0.001924358 + outSlope: 0.001924358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0005047996 + inSlope: 0.0025038507 + outSlope: 0.0025038507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.042091697 + inSlope: 0.0030574035 + outSlope: 0.0030574035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 0.044757847 + inSlope: 0.0039011773 + outSlope: 0.0039011773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 0.04256608 + inSlope: -0.021011457 + outSlope: -0.021011457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.036196746 + inSlope: -0.04923436 + outSlope: -0.04923436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 0.033841565 + inSlope: -0.056524284 + outSlope: -0.056524284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.031139096 + inSlope: -0.06485925 + outSlope: -0.06485925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 0.02809997 + inSlope: -0.072939105 + outSlope: -0.072939105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0166667 + value: 0.02497075 + inSlope: -0.07510124 + outSlope: -0.07510124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.01949825 + inSlope: -0.061525777 + outSlope: -0.061525777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.01714743 + inSlope: -0.056419738 + outSlope: -0.056419738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.014933329 + inSlope: -0.05313846 + outSlope: -0.05313846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.0127799 + inSlope: -0.05168222 + outSlope: -0.05168222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0106990095 + inSlope: -0.049941406 + outSlope: -0.049941406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.00878821 + inSlope: -0.04585922 + outSlope: -0.04585922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.0070999996 + inSlope: -0.040516987 + outSlope: -0.040516987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.005686879 + inSlope: -0.033914927 + outSlope: -0.033914927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.0046013473 + inSlope: -0.026052792 + outSlope: -0.026052792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.0038959028 + inSlope: -0.016930629 + outSlope: -0.016930629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.0036230467 + inSlope: -0.0065485514 + outSlope: -0.0065485514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.55 + value: 0.0038509928 + inSlope: 0.0054707103 + outSlope: 0.0054707103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.004330124 + inSlope: 0.011499124 + outSlope: 0.011499124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.004636195 + inSlope: 0.007345712 + outSlope: 0.007345712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.004598214 + inSlope: -0.00091154425 + outSlope: -0.00091154425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.004416071 + inSlope: -0.004371427 + outSlope: -0.004371427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.00422184 + inSlope: -0.004661548 + outSlope: -0.004661548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.0040696 + inSlope: -0.0036537587 + outSlope: -0.0036537587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.0039265826 + inSlope: -0.0034324054 + outSlope: -0.0034324054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 0.0037945989 + inSlope: -0.0031676202 + outSlope: -0.0031676202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.0036754548 + inSlope: -0.0028594593 + outSlope: -0.0028594593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.0034131461 + inSlope: -0.0016745678 + outSlope: -0.0016745678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0022147377 + inSlope: 0.00008932113 + outSlope: 0.00008932113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: -0.00191088 + inSlope: 0.00123804 + outSlope: 0.00123804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -0.0015534569 + inSlope: 0.0015119533 + outSlope: 0.0015119533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -0.001302939 + inSlope: 0.001475953 + outSlope: 0.001475953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: -0.0012429559 + inSlope: 0.0014395944 + outSlope: 0.0014395944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.0011849409 + inSlope: 0.0013923591 + outSlope: 0.0013923591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: -0.001129351 + inSlope: 0.0013341607 + outSlope: 0.0013341607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0166667 + value: -0.0010766399 + inSlope: 0.001265065 + outSlope: 0.001265065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.0009816819 + inSlope: 0.0010940173 + outSlope: 0.0010940173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.0009403443 + inSlope: 0.0009921036 + outSlope: 0.0009921036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -0.00090302114 + inSlope: 0.0008957567 + outSlope: 0.0008957567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -0.00086907006 + inSlope: 0.0008148249 + outSlope: 0.0008148249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.000838332 + inSlope: 0.00073771365 + outSlope: 0.00073771365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.0008106472 + inSlope: 0.0006644357 + outSlope: 0.0006644357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.0007858564 + inSlope: 0.000594979 + outSlope: 0.000594979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.00076380005 + inSlope: 0.00052935234 + outSlope: 0.00052935234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.0007443191 + inSlope: 0.00046754343 + outSlope: 0.00046754343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.0007272539 + inSlope: 0.0004095636 + outSlope: 0.0004095636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.0007124449 + inSlope: 0.00035541627 + outSlope: 0.00035541627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.55 + value: -0.0006997328 + inSlope: 0.00030509083 + outSlope: 0.00030509083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00068895816 + inSlope: 0.0002585913 + outSlope: 0.0002585913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.00067996164 + inSlope: 0.00021591624 + outSlope: 0.00021591624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.0006725839 + inSlope: 0.00017706708 + outSlope: 0.00017706708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -0.0006666652 + inSlope: 0.00014204773 + outSlope: 0.00014204773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.00066204637 + inSlope: 0.00011085222 + outSlope: 0.00011085222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -0.00065856805 + inSlope: 0.00008347937 + outSlope: 0.00008347937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.00065607077 + inSlope: 0.000059934737 + outSlope: 0.000059934737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -0.000654395 + inSlope: 0.000040218867 + outSlope: 0.000040218867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.0006536328 + inSlope: 0.000018292683 + outSlope: 0.000018292683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.00065271935 + inSlope: 0.000001814958 + outSlope: 0.000001814958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.0008178445 + inSlope: -0.00005962372 + outSlope: -0.00005962372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.0008153602 + inSlope: -0.00005962372 + outSlope: -0.00005962372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.0008080788 + inSlope: -0.00017475485 + outSlope: -0.00017475485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.00079624343 + inSlope: -0.00028404774 + outSlope: -0.00028404774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.0007801118 + inSlope: -0.00038715894 + outSlope: -0.00038715894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.21666667 + value: 0.0007599318 + inSlope: -0.0004843212 + outSlope: -0.0004843212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0007359464 + inSlope: -0.00057564845 + outSlope: -0.00057564845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: 0.0007084134 + inSlope: -0.00066079275 + outSlope: -0.00066079275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.00048262253 + inSlope: -0.0010462353 + outSlope: -0.0010462353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: 0.00024263111 + inSlope: -0.0012024507 + outSlope: -0.0012024507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 0.00009000454 + inSlope: -0.0012242581 + outSlope: -0.0012242581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: -0.000011175734 + inSlope: -0.001208758 + outSlope: -0.001208758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.05 + value: -0.00010957146 + inSlope: -0.0011693917 + outSlope: -0.0011693917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.00015709682 + inSlope: -0.0011406064 + outSlope: -0.0011406064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.00020317848 + inSlope: -0.0011059612 + outSlope: -0.0011059612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -0.00029000334 + inSlope: -0.0010185494 + outSlope: -0.0010185494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.000330247 + inSlope: -0.0009658487 + outSlope: -0.0009658487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.00034974387 + inSlope: -0.00046792522 + outSlope: -0.00046792522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.00033359102 + inSlope: 0.00038766785 + outSlope: 0.00038766785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.0002870145 + inSlope: 0.0011178375 + outSlope: 0.0011178375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.0002152385 + inSlope: 0.0017226258 + outSlope: 0.0017226258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.00012348928 + inSlope: 0.002201977 + outSlope: 0.002201977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.000016991506 + inSlope: 0.0025559491 + outSlope: 0.0025559491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.55 + value: 0.000099029574 + inSlope: 0.0027845087 + outSlope: 0.0027845087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.000338742 + inSlope: 0.0028654253 + outSlope: 0.0028654253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.00043323325 + inSlope: 0.0022677928 + outSlope: 0.0022677928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.0004868141 + inSlope: 0.001285938 + outSlope: 0.001285938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.0005062089 + inSlope: 0.00046547636 + outSlope: 0.00046547636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.00049814075 + inSlope: -0.0001936369 + outSlope: -0.0001936369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.0004693341 + inSlope: -0.0006913577 + outSlope: -0.0006913577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.0003763976 + inSlope: -0.0012027305 + outSlope: -0.0012027305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.00028119015 + inSlope: -0.0010686159 + outSlope: -0.0010686159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.0002495436 + inSlope: -0.0007595157 + outSlope: -0.0007595157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0010341642 + inSlope: 0.000009961724 + outSlope: 0.000009961724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.0010337491 + inSlope: 0.000009961724 + outSlope: 0.000009961724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.0010333341 + inSlope: 0.000009961724 + outSlope: 0.000009961724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.001032919 + inSlope: 0.000009959937 + outSlope: 0.000009959937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -0.001032504 + inSlope: 0.000009961723 + outSlope: 0.000009961723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.21666667 + value: -0.0010320889 + inSlope: 0.000009961726 + outSlope: 0.000009961726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0010296259 + inSlope: 0.0000591123 + outSlope: 0.0000591123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: -0.0010266597 + inSlope: 0.000071187635 + outSlope: 0.000071187635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: -0.0010026436 + inSlope: 0.00010457928 + outSlope: 0.00010457928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: -0.0009829833 + inSlope: 0.00008140322 + outSlope: 0.00008140322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: -0.0009775291 + inSlope: 0.000000581145 + outSlope: 0.000000581145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: -0.0009855622 + inSlope: -0.00019337851 + outSlope: -0.00019337851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.05 + value: -0.001016803 + inSlope: -0.000428317 + outSlope: -0.000428317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.001038217 + inSlope: -0.0005139353 + outSlope: -0.0005139353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.001062313 + inSlope: -0.00057830446 + outSlope: -0.00057830446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -0.001115018 + inSlope: -0.000643416 + outSlope: -0.000643416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.001141857 + inSlope: -0.0006441349 + outSlope: -0.0006441349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.001167841 + inSlope: -0.00062361953 + outSlope: -0.00062361953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.001192086 + inSlope: -0.0005818773 + outSlope: -0.0005818773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.001213706 + inSlope: -0.00051887915 + outSlope: -0.00051887915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.001231817 + inSlope: -0.0004346649 + outSlope: -0.0004346649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.0012455359 + inSlope: -0.00032925484 + outSlope: -0.00032925484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.001253977 + inSlope: -0.00020258385 + outSlope: -0.00020258385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.55 + value: -0.0012562551 + inSlope: -0.000054674198 + outSlope: -0.000054674198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.0012387879 + inSlope: 0.0003047779 + outSlope: 0.0003047779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.0012172731 + inSlope: 0.0005163561 + outSlope: 0.0005163561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -0.0011971738 + inSlope: 0.00048238185 + outSlope: 0.00048238185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.001187956 + inSlope: 0.0002212288 + outSlope: 0.0002212288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -0.001187584 + inSlope: 0.0000089264 + outSlope: 0.0000089264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.0011940241 + inSlope: -0.0001545611 + outSlope: -0.0001545611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.001219197 + inSlope: -0.0003349671 + outSlope: -0.0003349671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.001247196 + inSlope: -0.00032004146 + outSlope: -0.00032004146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.001257169 + inSlope: -0.00023934913 + outSlope: -0.00023934913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.000032050608 + inSlope: 0.00011477709 + outSlope: 0.00011477709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.00002726823 + inSlope: 0.00011477709 + outSlope: 0.00011477709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.000013523698 + inSlope: 0.00032986878 + outSlope: 0.00032986878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.000008279085 + inSlope: 0.0005232668 + outSlope: 0.0005232668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.000037236063 + inSlope: 0.0006949674 + outSlope: 0.0006949674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.21666667 + value: 0.00007244289 + inSlope: 0.000844964 + outSlope: 0.000844964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00011299595 + inSlope: 0.00097327336 + outSlope: 0.00097327336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: 0.00015799105 + inSlope: 0.0010798826 + outSlope: 0.0010798826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.00047061875 + inSlope: 0.0012639028 + outSlope: 0.0012639028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: 0.00068755966 + inSlope: 0.00082060177 + outSlope: 0.00082060177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 0.0007480809 + inSlope: 0.00029425963 + outSlope: 0.00029425963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 0.0007443433 + inSlope: -0.00016511872 + outSlope: -0.00016511872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.05 + value: 0.00069689995 + inSlope: -0.0007112849 + outSlope: -0.0007112849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.00065452856 + inSlope: -0.0010169111 + outSlope: -0.0010169111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.0005985188 + inSlope: -0.001344236 + outSlope: -0.001344236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.00045592806 + inSlope: -0.0017289182 + outSlope: -0.0017289182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0003953965 + inSlope: -0.001452759 + outSlope: -0.001452759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.00034537265 + inSlope: -0.001200573 + outSlope: -0.001200573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.00030485712 + inSlope: -0.0009723713 + outSlope: -0.0009723713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.00027285068 + inSlope: -0.000768155 + outSlope: -0.000768155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.0002483539 + inSlope: -0.0005879238 + outSlope: -0.0005879238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.00023036756 + inSlope: -0.00043167121 + outSlope: -0.00043167121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.0002178923 + inSlope: -0.00029940633 + outSlope: -0.00029940633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.55 + value: 0.0002099289 + inSlope: -0.00019112189 + outSlope: -0.00019112189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.00020354024 + inSlope: -0.000046504185 + outSlope: -0.000046504185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.0002031163 + inSlope: -0.000010174522 + outSlope: -0.000010174522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.00020423136 + inSlope: 0.000026761241 + outSlope: 0.000026761241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.00020725772 + inSlope: 0.0000726325 + outSlope: 0.0000726325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.00021171778 + inSlope: 0.0001070417 + outSlope: 0.0001070417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.00021713346 + inSlope: 0.00012997602 + outSlope: 0.00012997602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.00022892046 + inSlope: 0.00014144374 + outSlope: 0.00014144374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.00023879617 + inSlope: 0.0001070417 + outSlope: 0.0001070417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.00024182259 + inSlope: 0.00007263408 + outSlope: 0.00007263408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.000021827052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.000021827052 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.002998827 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.002998827 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.000053089054 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.000053089054 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.000019310299 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.000019310299 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0025961718 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0025961718 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.0003839118 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.0003839118 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.00014042061 + inSlope: 0.00005916506 + outSlope: 0.00005916506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.0001379554 + inSlope: 0.00005916506 + outSlope: 0.00005916506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.0001307362 + inSlope: 0.00017326087 + outSlope: 0.00017326087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.000119010954 + inSlope: 0.00028140598 + outSlope: 0.00028140598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -0.00010303715 + inSlope: 0.00038337123 + outSlope: 0.00038337123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.21666667 + value: -0.000083053215 + inSlope: 0.00047961462 + outSlope: 0.00047961462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.000059330923 + inSlope: 0.0005693349 + outSlope: 0.0005693349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: -0.000032113472 + inSlope: 0.000653219 + outSlope: 0.000653219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: -0.0000016583489 + inSlope: 0.0007309227 + outSlope: 0.0007309227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: 0.000031791267 + inSlope: 0.000802791 + outSlope: 0.000802791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 0.00006797312 + inSlope: 0.0008683645 + outSlope: 0.0008683645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: 0.00010663926 + inSlope: 0.00092798687 + outSlope: 0.00092798687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: 0.00028110173 + inSlope: 0.0011058246 + outSlope: 0.0011058246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: 0.00047508563 + inSlope: 0.0011866185 + outSlope: 0.0011866185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0006236674 + inSlope: 0.0011835769 + outSlope: 0.0011835769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0166667 + value: 0.0007204079 + inSlope: 0.0011513002 + outSlope: 0.0011513002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.0008129318 + inSlope: 0.0010946217 + outSlope: 0.0010946217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0009665938 + inSlope: 0.00065254804 + outSlope: 0.00065254804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.00097119866 + inSlope: 0.000110516055 + outSlope: 0.000110516055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.00095495745 + inSlope: -0.0003897886 + outSlope: -0.0003897886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.00086689874 + inSlope: -0.0012650901 + outSlope: -0.0012650901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.00071634067 + inSlope: -0.0019733103 + outSlope: -0.0019733103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.00051720336 + inSlope: -0.0025144937 + outSlope: -0.0025144937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.00040376844 + inSlope: -0.0027224403 + outSlope: -0.0027224403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.0003087422 + inSlope: -0.0022806327 + outSlope: -0.0022806327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.000253695 + inSlope: -0.0013211297 + outSlope: -0.0013211297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.00023210981 + inSlope: -0.000518045 + outSlope: -0.000518045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.00023746933 + inSlope: 0.00012862858 + outSlope: 0.00012862858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.00026325847 + inSlope: 0.0006189382 + outSlope: 0.0006189382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 0.0003029586 + inSlope: 0.00095280376 + outSlope: 0.00095280376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.0004403625 + inSlope: 0.0010160494 + outSlope: 0.0010160494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.00047054238 + inSlope: 0.0007243157 + outSlope: 0.0007243157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.001305686 + inSlope: -0.00001861453 + outSlope: -0.00001861453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.0013049103 + inSlope: -0.00001861453 + outSlope: -0.00001861453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.0013041347 + inSlope: -0.00001861453 + outSlope: -0.00001861453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.00130124 + inSlope: -0.00006947279 + outSlope: -0.00006947279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.001296989 + inSlope: -0.00010202407 + outSlope: -0.00010202407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.21666667 + value: 0.0012914222 + inSlope: -0.00013360265 + outSlope: -0.00013360265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0012845799 + inSlope: -0.00016421554 + outSlope: -0.00016421554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: 0.0012765063 + inSlope: -0.00019376639 + outSlope: -0.00019376639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: 0.00126724 + inSlope: -0.00022239078 + outSlope: -0.00022239078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: 0.0012568242 + inSlope: -0.00024997836 + outSlope: -0.00024997836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 0.0012452994 + inSlope: -0.0002765984 + outSlope: -0.0002765984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: 0.0012327068 + inSlope: -0.00030221863 + outSlope: -0.00030221863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: 0.0011724961 + inSlope: -0.00039472262 + outSlope: -0.00039472262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: 0.001098523 + inSlope: -0.00047131217 + outSlope: -0.00047131217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.001035606 + inSlope: -0.0005183527 + outSlope: -0.0005183527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0166667 + value: 0.0009907412 + inSlope: -0.0005447242 + outSlope: -0.0005447242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.0009439269 + inSlope: -0.0005671198 + outSlope: -0.0005671198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.00084577536 + inSlope: -0.00059998565 + outSlope: -0.00059998565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.00083231553 + inSlope: -0.0003230366 + outSlope: -0.0003230366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.0008398289 + inSlope: 0.000180321 + outSlope: 0.000180321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.000903609 + inSlope: 0.00093205244 + outSlope: 0.00093205244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.0010087892 + inSlope: 0.0013438684 + outSlope: 0.0013438684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0011270421 + inSlope: 0.0014157566 + outSlope: 0.0014157566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.001182218 + inSlope: 0.0013242238 + outSlope: 0.0013242238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.00123004 + inSlope: 0.0011477291 + outSlope: 0.0011477291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.0012669661 + inSlope: 0.00088622514 + outSlope: 0.00088622514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.001289456 + inSlope: 0.00053975754 + outSlope: 0.00053975754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.001293968 + inSlope: 0.00010828624 + outSlope: 0.00010828624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.001286253 + inSlope: -0.0001851579 + outSlope: -0.0001851579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 0.0012753869 + inSlope: -0.00026078607 + outSlope: -0.00026078607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.0012383519 + inSlope: -0.0002792665 + outSlope: -0.0002792665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.001229356 + inSlope: -0.00021590132 + outSlope: -0.00021590132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.00007776916 + inSlope: -0.00008173227 + outSlope: -0.00008173227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.00007436365 + inSlope: -0.00008173227 + outSlope: -0.00008173227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.000064565385 + inSlope: -0.0002351582 + outSlope: -0.0002351582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.000049001424 + inSlope: -0.00037353518 + outSlope: -0.00037353518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.000028298944 + inSlope: -0.0004968595 + outSlope: -0.0004968595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.21666667 + value: 0.0000030849874 + inSlope: -0.0006051351 + outSlope: -0.0006051351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.000026012956 + inSlope: -0.0006983506 + outSlope: -0.0006983506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: -0.00005836785 + inSlope: -0.0007765175 + outSlope: -0.0007765175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: -0.00009335279 + inSlope: -0.0008396383 + outSlope: -0.0008396383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: -0.00013034015 + inSlope: -0.0008876969 + outSlope: -0.0008876969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: -0.00016870335 + inSlope: -0.00092071673 + outSlope: -0.00092071673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: -0.00020781456 + inSlope: -0.00093866896 + outSlope: -0.00093866896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: -0.0003591998 + inSlope: -0.00085999083 + outSlope: -0.00085999083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: -0.00047238483 + inSlope: -0.00054047914 + outSlope: -0.00054047914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.00050805864 + inSlope: -0.0001427936 + outSlope: -0.0001427936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0166667 + value: -0.00049899815 + inSlope: 0.00019758573 + outSlope: 0.00019758573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.00045780957 + inSlope: 0.0005981708 + outSlope: 0.0005981708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.00032281532 + inSlope: 0.0007217527 + outSlope: 0.0007217527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.0002960167 + inSlope: 0.00064316747 + outSlope: 0.00064316747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.00027230708 + inSlope: 0.00056902954 + outSlope: 0.00056902954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.00023341313 + inSlope: 0.00043411055 + outSlope: 0.00043411055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.00020465009 + inSlope: 0.0003169891 + outSlope: 0.0003169891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00018453479 + inSlope: 0.00021766621 + outSlope: 0.00021766621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.00017725638 + inSlope: 0.00017468171 + outSlope: 0.00017468171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.00017158374 + inSlope: 0.00013614369 + outSlope: 0.00013614369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -0.00016733116 + inSlope: 0.00010206143 + outSlope: 0.00010206143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.0001643136 + inSlope: 0.0000724215 + outSlope: 0.0000724215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -0.00016234539 + inSlope: 0.00004723732 + outSlope: 0.00004723732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.00016124122 + inSlope: 0.000026500173 + outSlope: 0.000026500173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -0.00016143109 + inSlope: -0.0000045570773 + outSlope: -0.0000045570773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.0001620007 + inSlope: -0.0000045566303 + outSlope: -0.0000045566303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.00016219057 + inSlope: -0.000004557064 + outSlope: -0.000004557064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0029990699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0029990699 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0000001625903 + inSlope: 4.4703483e-10 + outSlope: 4.4703483e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.00000016167759 + inSlope: 4.4703397e-10 + outSlope: 4.4703397e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.000054634773 + inSlope: 0.0000000012293457 + outSlope: 0.0000000012293457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.000054637192 + inSlope: 0.0000000012293435 + outSlope: 0.0000000012293435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.0003556059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.0003556059 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.000036821402 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.000036821402 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0025999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0025999998 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.000011851057 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.000011851057 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -1.2456439e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -1.2456439e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.00006796107 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.00006796107 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0028583296 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0028583296 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.0000000032130627 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.0000000032130627 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.00014242699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.00014242699 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0014556211 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0014556211 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0014599595 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0014599595 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0001245801 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0001245801 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0027749708 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.00277497 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.00000016488134 + inSlope: 0.000000002089364 + outSlope: 0.000000002089364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.0000001691468 + inSlope: 0.00000000208936 + outSlope: 0.00000000208936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0000054341554 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.000005434151 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0020982707 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0020982695 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.00000017091631 + inSlope: 0.0000000011040537 + outSlope: 0.0000000011040537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.00000016866251 + inSlope: 0.0000000011040516 + outSlope: 0.0000000011040516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.000005436465 + inSlope: -9.080395e-10 + outSlope: -9.080395e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.0000054346024 + inSlope: -9.080378e-10 + outSlope: -9.080378e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0014555797 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0014555797 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.0014553503 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.0014553503 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.00012458029 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.00012458029 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.0027952413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.0027952413 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0000000026077032 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0000000026077032 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1.4901161e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 1.4901161e-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_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.0020026602 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.0020026602 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0000000040233132 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0000000040233132 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 8.9406965e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 8.9406965e-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_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0027371924 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0027371924 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 2.840534e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 2.840534e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.00019367921 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.00019367921 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.05 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.55 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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.x + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.03325773 + inSlope: 0.0021326637 + outSlope: 0.0021326637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: 0.03384314 + inSlope: -0.015893718 + outSlope: -0.015893718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: 0.028756138 + inSlope: -0.04043928 + outSlope: -0.04043928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.02171585 + inSlope: -0.06483401 + outSlope: -0.06483401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.05 + value: 0.012730669 + inSlope: -0.06882437 + outSlope: -0.06882437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.01022708 + inSlope: -0.06008603 + outSlope: -0.06008603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.00802035 + inSlope: -0.05296159 + outSlope: -0.05296159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.006097788 + inSlope: -0.04614152 + outSlope: -0.04614152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.004446701 + inSlope: -0.039626013 + outSlope: -0.039626013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0030544018 + inSlope: -0.033415213 + outSlope: -0.033415213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.001908195 + inSlope: -0.02750899 + outSlope: -0.02750899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.0009953922 + inSlope: -0.021907223 + outSlope: -0.021907223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.0003032978 + inSlope: -0.016610282 + outSlope: -0.016610282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.0001807769 + inSlope: -0.011617805 + outSlope: -0.011617805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.0004695227 + inSlope: -0.0069298856 + outSlope: -0.0069298856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.0005113571 + inSlope: -0.0010040269 + outSlope: -0.0010040269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.55 + value: -0.00018209779 + inSlope: 0.007902232 + outSlope: 0.007902232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0004466991 + inSlope: 0.015091096 + outSlope: 0.015091096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.0008997148 + inSlope: 0.010872387 + outSlope: 0.010872387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.0009635709 + inSlope: 0.0015325478 + outSlope: 0.0015325478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.00086266693 + inSlope: -0.0024216904 + outSlope: -0.0024216904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.00074423157 + inSlope: -0.0028424521 + outSlope: -0.0028424521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.000562093 + inSlope: -0.0023195976 + outSlope: -0.0023195976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 0.0002586545 + inSlope: -0.002353102 + outSlope: -0.002353102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.00017083938 + inSlope: -0.0021075646 + outSlope: -0.0021075646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.000098603516 + inSlope: -0.0017336577 + outSlope: -0.0017336577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.05 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.55 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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.z + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.013613639 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.013613639 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.001046381 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.001046381 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.004070008 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.004070008 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.013613639 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.013613639 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.001046381 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.001046381 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.004080487 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.004080487 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.7069847 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.7069847 + inSlope: 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.70722884 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.70722884 + inSlope: 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.7071081 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.7071081 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.70710546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.70710546 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.17566532 + inSlope: 0 + outSlope: -0.27644634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.20973846 + inSlope: -0.59080124 + outSlope: -0.5912781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: -0.3856112 + inSlope: -0.729084 + outSlope: -0.7297098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: -0.53361374 + inSlope: -0.5766749 + outSlope: -0.576675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -0.5645914 + inSlope: 0.090301044 + outSlope: 0.09083747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -0.54348254 + inSlope: -0.13160704 + outSlope: -0.13276936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: -0.6301176 + inSlope: -1.1269749 + outSlope: -1.1290822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.74597645 + inSlope: -0.55074686 + outSlope: -0.55074745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.76097864 + inSlope: -0.4398827 + outSlope: -0.43630642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -0.7809707 + inSlope: -0.3397468 + outSlope: -0.34153372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -0.7859138 + inSlope: 0.5221353 + outSlope: 0.52332926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.73678297 + inSlope: 1.8131751 + outSlope: 1.8155549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.65005845 + inSlope: 2.1517246 + outSlope: 2.1582863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.55892813 + inSlope: 1.863243 + outSlope: 1.866104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.45515245 + inSlope: 0.790716 + outSlope: 0.7885688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.42398065 + inSlope: -0.04135069 + outSlope: -0.041382693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.45987338 + inSlope: -0.17472692 + outSlope: -0.17344943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.4626494 + inSlope: 0.044345833 + outSlope: 0.04506109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.455936 + inSlope: 0.11801714 + outSlope: 0.11801724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.43144792 + inSlope: 0.10096114 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.35140306 + inSlope: 0 + outSlope: -0.33187866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.3913922 + inSlope: -0.6376505 + outSlope: -0.63836575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: -0.52212363 + inSlope: -0.2901554 + outSlope: -0.28997657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: -0.51781476 + inSlope: 0.42021272 + outSlope: 0.42110685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -0.4423092 + inSlope: 0.70050365 + outSlope: 0.70059294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -0.34878975 + inSlope: 0.55325025 + outSlope: 0.55409974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: -0.2541272 + inSlope: 0.9410084 + outSlope: 0.9423494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.1463321 + inSlope: 0.60119796 + outSlope: 0.6017095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.12777695 + inSlope: 0.481904 + outSlope: 0.48637438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -0.10657036 + inSlope: 0.76890063 + outSlope: 0.7751564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -0.06441897 + inSlope: 0.8976436 + outSlope: 0.8994349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.030681044 + inSlope: 0.32186538 + outSlope: 0.32544088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.020660788 + inSlope: -0.22709337 + outSlope: -0.22888206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.027894199 + inSlope: -0.29727846 + outSlope: -0.29522207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.03866954 + inSlope: -0.06830699 + outSlope: -0.067949235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.093557015 + inSlope: -0.96291226 + outSlope: -0.96495754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.23145132 + inSlope: -0.72445256 + outSlope: -0.72258675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.2567258 + inSlope: -0.022888172 + outSlope: -0.0232458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.25384736 + inSlope: -0.012874597 + outSlope: -0.013892473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.25103867 + inSlope: 0.03920153 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.80324876 + inSlope: 0 + outSlope: -0.14519691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.784619 + inSlope: -0.32186508 + outSlope: -0.32186508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: 0.6772891 + inSlope: -0.49614906 + outSlope: -0.4959106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.57813215 + inSlope: -0.30159947 + outSlope: -0.30219558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 0.58054453 + inSlope: 0.34287575 + outSlope: 0.34403798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.6338532 + inSlope: 0.04720687 + outSlope: 0.045597557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 0.5897976 + inSlope: -0.679493 + outSlope: -0.6810256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.47911385 + inSlope: -0.9541 + outSlope: -0.95427126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.44004884 + inSlope: -1.1497747 + outSlope: -1.1488806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.38296834 + inSlope: -1.5583649 + outSlope: -1.5637238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.3094852 + inSlope: -1.5458424 + outSlope: -1.5497222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.25126576 + inSlope: -0.9191045 + outSlope: -0.9191023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.21623148 + inSlope: -0.3725285 + outSlope: -0.37506258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.19993588 + inSlope: -0.07912524 + outSlope: -0.07581718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.22669512 + inSlope: 0.82844573 + outSlope: 0.830143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.37791288 + inSlope: 1.0579071 + outSlope: 1.0588349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.45028228 + inSlope: 0.34613302 + outSlope: 0.34403783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.47080025 + inSlope: 0.0039339047 + outSlope: 0.0032186492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.4653181 + inSlope: -0.008940692 + outSlope: -0.008390503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.44542372 + inSlope: -0.18871754 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.44771528 + inSlope: 0 + outSlope: -0.10871887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.4326604 + inSlope: -0.28073788 + outSlope: -0.2808571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: 0.34636724 + inSlope: -0.27930737 + outSlope: -0.27939674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.33598754 + inSlope: 0.25168058 + outSlope: 0.25190416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 0.38544413 + inSlope: 0.41954222 + outSlope: 0.41878217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.425679 + inSlope: 0.21547076 + outSlope: 0.21569432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 0.43647438 + inSlope: -0.160262 + outSlope: -0.16042164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.43881196 + inSlope: 0.30551636 + outSlope: 0.30756027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.45928386 + inSlope: 0.5108123 + outSlope: 0.5087261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.48172903 + inSlope: 0.8592018 + outSlope: 0.8618809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.5314213 + inSlope: 1.779194 + outSlope: 1.7857568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.62695694 + inSlope: 2.5129342 + outSlope: 2.5200808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.7281765 + inSlope: 2.0241709 + outSlope: 2.0349045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.80426794 + inSlope: 1.3053429 + outSlope: 1.3060582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.86020356 + inSlope: 0.195265 + outSlope: 0.19535406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.81772196 + inSlope: -0.62093085 + outSlope: -0.6207404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.72951543 + inSlope: -0.55330193 + outSlope: -0.55289245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.70597064 + inSlope: 0.017881384 + outSlope: 0.020027151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.7149566 + inSlope: 0.07581707 + outSlope: 0.07620227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.7432563 + inSlope: 0.18431598 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.18205696 + inSlope: 0 + outSlope: 0.91597444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.22004427 + inSlope: 1.3223292 + outSlope: 1.322776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.36680657 + inSlope: 1.7660855 + outSlope: 1.7683421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: 0.70900595 + inSlope: 0.5474261 + outSlope: 0.55034953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 0.82935727 + inSlope: -0.100135796 + outSlope: -0.100433834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 0.81423354 + inSlope: 0.10252 + outSlope: 0.10288677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.8432976 + inSlope: 0.09215794 + outSlope: 0.09417543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.846584 + inSlope: 0.19431132 + outSlope: 0.19516262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.8652806 + inSlope: -0.5078315 + outSlope: -0.50902295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.8291738 + inSlope: -1.1193737 + outSlope: -1.1265289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.7717006 + inSlope: -1.4251484 + outSlope: -1.4247001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.65424585 + inSlope: -0.20876528 + outSlope: -0.20435877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.7526572 + inSlope: 1.1607578 + outSlope: 1.1587154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.81406033 + inSlope: 1.2958062 + outSlope: 1.2981881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.89144135 + inSlope: 0.454187 + outSlope: 0.45382988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 0.902672 + inSlope: -0.095129035 + outSlope: -0.09590932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.88626194 + inSlope: -0.0994856 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.00055216765 + inSlope: 0 + outSlope: -0.030220255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.00173663 + inSlope: -0.055488203 + outSlope: -0.05548121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.009630591 + inSlope: -0.16691162 + outSlope: -0.16917875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: -0.054626822 + inSlope: -0.58702064 + outSlope: -0.5880991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -0.08289418 + inSlope: 0.026350219 + outSlope: 0.026896598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: -0.078207985 + inSlope: -0.04321337 + outSlope: -0.042846564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.08706624 + inSlope: -0.02665015 + outSlope: -0.025928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.08829776 + inSlope: -0.06705529 + outSlope: -0.06628887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.09451677 + inSlope: 0.13826148 + outSlope: 0.14081576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.08239704 + inSlope: 0.26598534 + outSlope: 0.26956227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.06645806 + inSlope: 0.16316786 + outSlope: 0.16227366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.041386694 + inSlope: 0.023357572 + outSlope: 0.02235174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.06314127 + inSlope: -0.7372243 + outSlope: -0.7390983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.07888031 + inSlope: -0.45925424 + outSlope: -0.46201012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -0.10513272 + inSlope: -0.20664167 + outSlope: -0.20836298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -0.109950155 + inSlope: 0.054046523 + outSlope: 0.05335972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.10253357 + inSlope: 0.033365063 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.005153567 + inSlope: 0 + outSlope: -0.11335128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.009825446 + inSlope: -0.15914442 + outSlope: -0.15906988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.027131187 + inSlope: -0.2423115 + outSlope: -0.2444243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: -0.060129374 + inSlope: -0.45763597 + outSlope: -0.45955178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -0.06404081 + inSlope: -0.0111262 + outSlope: -0.011175872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: -0.06455082 + inSlope: -0.008866192 + outSlope: -0.009697216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.064136945 + inSlope: 0.0033011797 + outSlope: 0.0028312234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.06415562 + inSlope: 0.008344659 + outSlope: 0.0070886947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.063053995 + inSlope: -0.061116043 + outSlope: -0.0627338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.06461935 + inSlope: -0.08463848 + outSlope: -0.087171875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.06472978 + inSlope: -0.15154496 + outSlope: -0.15422703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.05864711 + inSlope: 0.0075995927 + outSlope: 0.006003039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.06356336 + inSlope: -0.4286425 + outSlope: -0.4270677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.06363742 + inSlope: -0.056624465 + outSlope: -0.05654986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -0.059337907 + inSlope: 0.027380861 + outSlope: 0.029638417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -0.058968633 + inSlope: -0.016406182 + outSlope: -0.015402387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.061569035 + inSlope: -0.017962677 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.9832743 + inSlope: 0 + outSlope: -0.16808511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.97543883 + inSlope: -0.30219558 + outSlope: -0.29981133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.9298516 + inSlope: -0.70571893 + outSlope: -0.706826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: 0.7005076 + inSlope: -0.63938755 + outSlope: -0.6421407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 0.54881126 + inSlope: 0.15358129 + outSlope: 0.15527011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 0.5716121 + inSlope: -0.15288593 + outSlope: -0.15350486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.5264551 + inSlope: -0.15185428 + outSlope: -0.15020385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.52094436 + inSlope: -0.32663375 + outSlope: -0.32799584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.4882419 + inSlope: 0.91961443 + outSlope: 0.9244667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.5490956 + inSlope: 1.7213796 + outSlope: 1.7291324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.62918323 + inSlope: 1.7470138 + outSlope: 1.7479063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.7528678 + inSlope: 0.18283726 + outSlope: 0.17983572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.6522883 + inSlope: -1.4529909 + outSlope: -1.4519706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.57186884 + inSlope: -1.914503 + outSlope: -1.9177779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.436759 + inSlope: -0.97632325 + outSlope: -0.9725692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 0.41184598 + inSlope: 0.22172934 + outSlope: 0.22156678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.44747734 + inSlope: 0.20352283 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.05307544 + inSlope: 0 + outSlope: -0.31445462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: -0.024800679 + inSlope: -0.14927524 + outSlope: -0.14820382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.03935981 + inSlope: 0.33893475 + outSlope: 0.33887273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06916079 + inSlope: 0.014345754 + outSlope: 0.014177389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.06611476 + inSlope: -0.056837283 + outSlope: -0.056829307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 0.046332024 + inSlope: -0.33661726 + outSlope: -0.33757514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.01377858 + inSlope: -0.5242122 + outSlope: -0.52493113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.0375781 + inSlope: -0.53286606 + outSlope: -0.53286606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -0.05926026 + inSlope: -0.68944013 + outSlope: -0.69200814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -0.09572092 + inSlope: -1.168993 + outSlope: -1.1733185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.15764728 + inSlope: -1.4132274 + outSlope: -1.4170984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.2155223 + inSlope: -1.0552987 + outSlope: -1.0556737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.25275382 + inSlope: 0.08314856 + outSlope: 0.08381904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.20926715 + inSlope: 0.30655417 + outSlope: 0.3059505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.18293454 + inSlope: 0.2868174 + outSlope: 0.28610256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.17054895 + inSlope: 0.076890066 + outSlope: 0.075996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.17785189 + inSlope: -0.36299264 + outSlope: -0.36209726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -0.20321095 + inSlope: -0.43004638 + outSlope: -0.4282594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.21297103 + inSlope: 0.041574243 + outSlope: 0.040501367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.18917601 + inSlope: 0.22798783 + outSlope: 0.22888206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.17905785 + inSlope: 0.24259114 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.05293618 + inSlope: 0 + outSlope: 0.2013376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.07346113 + inSlope: -0.18672301 + outSlope: -0.18782522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: -0.039489217 + inSlope: -0.032810006 + outSlope: -0.03180043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.03504093 + inSlope: -0.06347895 + outSlope: -0.063925974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -0.043116376 + inSlope: 0.092791654 + outSlope: 0.09331853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: -0.0020155087 + inSlope: 0.42944685 + outSlope: 0.429808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.060690425 + inSlope: 0.6909562 + outSlope: 0.6921596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.09196105 + inSlope: 0.9013721 + outSlope: 0.90256417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.13527583 + inSlope: 1.381339 + outSlope: 1.3880395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.2066255 + inSlope: 1.779194 + outSlope: 1.7848628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.28268656 + inSlope: 1.368524 + outSlope: 1.371501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.32022062 + inSlope: 0.4380935 + outSlope: 0.43675345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.30169824 + inSlope: -0.4778807 + outSlope: -0.47899786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.2631855 + inSlope: 0.36835673 + outSlope: 0.37014467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.3419849 + inSlope: 1.3607734 + outSlope: 1.3595833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.40612164 + inSlope: 1.4358772 + outSlope: 1.4403477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.46169624 + inSlope: 1.0657321 + outSlope: 1.0594698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.4940114 + inSlope: 0.6347878 + outSlope: 0.6359071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.5315479 + inSlope: 0.016093256 + outSlope: 0.01573563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.52583414 + inSlope: 0.006079675 + outSlope: 0.00596047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.5262885 + inSlope: 0.008344659 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.63705176 + inSlope: 0 + outSlope: 0.030535918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.65346056 + inSlope: 0.16533412 + outSlope: 0.16601463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.7622011 + inSlope: 0.4632222 + outSlope: 0.4626404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.81268483 + inSlope: 0.121593475 + outSlope: 0.12108257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.8254539 + inSlope: 0.25851384 + outSlope: 0.25838616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 0.857287 + inSlope: -0.03486872 + outSlope: -0.037295476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.8068347 + inSlope: -0.73875695 + outSlope: -0.7414825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.772104 + inSlope: -0.67353314 + outSlope: -0.6705529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.7515855 + inSlope: -0.35584006 + outSlope: -0.34868625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.741949 + inSlope: -0.464915 + outSlope: -0.46372458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.71229035 + inSlope: -0.82969743 + outSlope: -0.8285034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.675216 + inSlope: -0.80823785 + outSlope: -0.80823976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.63381785 + inSlope: 0.04917388 + outSlope: 0.051856045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.73608 + inSlope: 1.0259451 + outSlope: 1.0242457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.7967378 + inSlope: 0.19025794 + outSlope: 0.18596667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.7921916 + inSlope: -0.43630642 + outSlope: -0.4398827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.7618514 + inSlope: -0.8189686 + outSlope: -0.8118131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.72584754 + inSlope: -0.6687624 + outSlope: -0.66831714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.70061725 + inSlope: -0.0022351744 + outSlope: -0.0039339075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.71247303 + inSlope: 0.106930755 + outSlope: 0.107288465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.71692383 + inSlope: 0.10371218 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.7671674 + inSlope: 0 + outSlope: -0.017331196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.7529792 + inSlope: -0.13012153 + outSlope: -0.13044006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.64493495 + inSlope: -0.56938124 + outSlope: -0.56927854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.57752246 + inSlope: -0.17718835 + outSlope: -0.17625944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.55892384 + inSlope: -0.36733487 + outSlope: -0.36835673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 0.512746 + inSlope: 0.09164215 + outSlope: 0.09196144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.5874901 + inSlope: 0.9313651 + outSlope: 0.93340963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.6276833 + inSlope: 0.6651885 + outSlope: 0.6651885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.64289016 + inSlope: 0.057220515 + outSlope: 0.059008442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.6305989 + inSlope: -0.21457615 + outSlope: -0.21457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.6227985 + inSlope: -0.034570727 + outSlope: -0.033378553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.6285636 + inSlope: 0.2837177 + outSlope: 0.28342035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.6658593 + inSlope: 0.2002718 + outSlope: 0.19937755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.58747494 + inSlope: -1.3415517 + outSlope: -1.3411039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.4634547 + inSlope: -1.2162918 + outSlope: -1.2153399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.4223869 + inSlope: -0.53167397 + outSlope: -0.53107786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.41807628 + inSlope: 0.15556827 + outSlope: 0.15735584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.43336287 + inSlope: 0.19222447 + outSlope: 0.19289555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.42571795 + inSlope: 0.006258488 + outSlope: 0.006258489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.42437375 + inSlope: -0.0856519 + outSlope: -0.08642682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.42068845 + inSlope: -0.088214956 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.5206117 + inSlope: 0 + outSlope: 0.091642134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.488893 + inSlope: 0.48726794 + outSlope: 0.487268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -0.46451542 + inSlope: 0.5301834 + outSlope: 0.5296468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.4229958 + inSlope: 0.5586147 + outSlope: 0.5598665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: -0.31297547 + inSlope: 0.6744862 + outSlope: 0.6741287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -0.24942972 + inSlope: 0.86832064 + outSlope: 0.8703761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: -0.2107156 + inSlope: 0.6687636 + outSlope: 0.66786987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.19403279 + inSlope: 0.39041033 + outSlope: 0.38951635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -0.121106386 + inSlope: 0.30589104 + outSlope: 0.30648708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.027319148 + inSlope: 0.1489222 + outSlope: 0.14822397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -0.008380126 + inSlope: 0.02160136 + outSlope: 0.021569451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0071289465 + inSlope: -0.16309336 + outSlope: -0.16443408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.026686652 + inSlope: -0.13213585 + outSlope: -0.13193128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.026598677 + inSlope: 0.2244117 + outSlope: 0.22636747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.013288427 + inSlope: 0.31664068 + outSlope: 0.3172736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.017290505 + inSlope: -0.8778831 + outSlope: -0.8805241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.16030994 + inSlope: -2.0974865 + outSlope: -2.0990222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.3748516 + inSlope: -0.983733 + outSlope: -0.9804363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.43023118 + inSlope: -0.1485943 + outSlope: -0.14869073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.43182352 + inSlope: 0.12063068 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.752144 + inSlope: 0 + outSlope: -0.004470348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.7483036 + inSlope: -0.09655952 + outSlope: -0.09298325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.743024 + inSlope: -0.26822093 + outSlope: -0.26750562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7044222 + inSlope: -0.50210947 + outSlope: -0.50139433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 0.6538231 + inSlope: -0.08475781 + outSlope: -0.08583071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.66289365 + inSlope: 0.23746496 + outSlope: 0.23961048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.67501867 + inSlope: 0.16987309 + outSlope: 0.17046924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.6781689 + inSlope: 0.11920926 + outSlope: 0.118255615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.743724 + inSlope: 0.3657341 + outSlope: 0.36597252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.8485328 + inSlope: 0.57792664 + outSlope: 0.5783353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.9376037 + inSlope: 0.7796287 + outSlope: 0.7820137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.96789557 + inSlope: 0.50544786 + outSlope: 0.5054467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.97114533 + inSlope: -0.30398324 + outSlope: -0.30577213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.94185287 + inSlope: -0.82075673 + outSlope: -0.8225449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.9106287 + inSlope: -0.72956157 + outSlope: -0.7301567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.8691853 + inSlope: -0.2497434 + outSlope: -0.24962413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.85051996 + inSlope: -0.3383158 + outSlope: -0.3402577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.79690313 + inSlope: -0.29529873 + outSlope: -0.29289708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.76897746 + inSlope: -0.18703929 + outSlope: -0.18734206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.74947536 + inSlope: 0.003026083 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.2471272 + inSlope: 0 + outSlope: -0.1366809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.2930428 + inSlope: -0.7241964 + outSlope: -0.7241965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -0.32763165 + inSlope: -0.7832051 + outSlope: -0.7817744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.39189968 + inSlope: -0.9073018 + outSlope: -0.9074808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: -0.5448069 + inSlope: -0.7817746 + outSlope: -0.7803442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -0.5996842 + inSlope: -0.5929471 + outSlope: -0.59187365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: -0.6228373 + inSlope: -0.40233102 + outSlope: -0.40054312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.6338954 + inSlope: -0.21696086 + outSlope: -0.21576881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -0.62665284 + inSlope: 0.22411346 + outSlope: 0.22482872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.5227129 + inSlope: 0.9009838 + outSlope: 0.90275484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -0.3426809 + inSlope: 2.1386144 + outSlope: 2.139809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.24369271 + inSlope: 2.4047518 + outSlope: 2.4104085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.14120527 + inSlope: 2.2530522 + outSlope: 2.2597632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.057699885 + inSlope: 1.6151384 + outSlope: 1.619497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.0064661955 + inSlope: 0.8334553 + outSlope: 0.8328956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.007435806 + inSlope: -0.2642627 + outSlope: -0.26482332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.03682082 + inSlope: -0.6464121 + outSlope: -0.6471793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.10756862 + inSlope: -0.3978614 + outSlope: -0.39656442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.11942128 + inSlope: 0.09968872 + outSlope: 0.09931055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.099316105 + inSlope: 0.08056947 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.31964207 + inSlope: 0 + outSlope: 0.05342066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.33933952 + inSlope: 0.2916902 + outSlope: 0.29057267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.3532679 + inSlope: 0.5301834 + outSlope: 0.53286546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.41385818 + inSlope: 0.5657672 + outSlope: 0.566125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 0.42160073 + inSlope: -0.37640336 + outSlope: -0.37765512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.3724724 + inSlope: -0.7932188 + outSlope: -0.7921451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.33469743 + inSlope: -0.66965765 + outSlope: -0.66757184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.31719851 + inSlope: -0.44524658 + outSlope: -0.44608116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.19878188 + inSlope: -0.47391653 + outSlope: -0.4749298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.07756999 + inSlope: -0.19341707 + outSlope: -0.1931829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.05829857 + inSlope: 0.03349568 + outSlope: 0.033751164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.06116536 + inSlope: 1.5603765 + outSlope: 1.5693135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.19033042 + inSlope: 3.2061293 + outSlope: 3.2164187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.3299642 + inSlope: 2.6392963 + outSlope: 2.6455548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.41296124 + inSlope: 1.6307846 + outSlope: 1.6322728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.49412808 + inSlope: 0.41156998 + outSlope: 0.41162947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.4995607 + inSlope: -0.14162056 + outSlope: -0.14279583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.46136814 + inSlope: -0.38317308 + outSlope: -0.382304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.45750776 + inSlope: 0.20080796 + outSlope: 0.20109698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.49188572 + inSlope: 0.1176046 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.6642774 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.6642793 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.6642799 + inSlope: 0.4398823 + outSlope: 0.4434585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7404492 + inSlope: 0.7023811 + outSlope: 0.69941807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: 0.7708167 + inSlope: -0.06590572 + outSlope: -0.06571413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.7154564 + inSlope: -0.9897352 + outSlope: -0.99420464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.66428477 + inSlope: -0.63478893 + outSlope: -0.63300115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.66428524 + inSlope: 0.0011920927 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.664291 + inSlope: 0 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.6642912 + inSlope: 2.4056458 + outSlope: 2.419945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.84014744 + inSlope: 3.6525674 + outSlope: 3.6656892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.9627576 + inSlope: 1.5413775 + outSlope: 1.546742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.9960597 + inSlope: 0.32901797 + outSlope: 0.31232864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.9992665 + inSlope: -0.0798703 + outSlope: -0.087022655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.9947299 + inSlope: -0.10251984 + outSlope: -0.102996774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.9934012 + inSlope: 0.061511964 + outSlope: 0.061512053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.9998979 + inSlope: 0.022888206 + outSlope: 0.020563586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.9935412 + inSlope: -0.084936544 + outSlope: -0.10281802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.9952723 + inSlope: 0.050067905 + outSlope: 0.045666344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.9999977 + inSlope: -0.000550197 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0052527795 + inSlope: 0 + outSlope: 0.002486631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.0049416996 + inSlope: 0.002486631 + outSlope: 0.0024866315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -0.0048380727 + inSlope: -0.0043446203 + outSlope: 0.07070973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.004450508 + inSlope: 0.09696184 + outSlope: -0.04043271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: -0.0035228303 + inSlope: -0.054588154 + outSlope: 0.054292034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -0.0037471396 + inSlope: 0.046030622 + outSlope: -0.20601304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: -0.003905077 + inSlope: -0.18839708 + outSlope: -0.00069849176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0038013174 + inSlope: 0.0024912872 + outSlope: 0.0024866313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -0.0022240116 + inSlope: 0.0026429424 + outSlope: 0.0026356454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.002114171 + inSlope: 0.007119968 + outSlope: 0.13231747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.0015127608 + inSlope: 0.1575423 + outSlope: 0.017423898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.0007959551 + inSlope: 0.014699777 + outSlope: 0.014746925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.00034270264 + inSlope: 0.008782671 + outSlope: 0.008372016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.000050469964 + inSlope: 0.0042920914 + outSlope: 0.004690221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.00008388434 + inSlope: 0.0016154058 + outSlope: 0.0016160476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.00010010864 + inSlope: -0.0012646191 + outSlope: -0.0012694229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.000053565942 + inSlope: -0.0023370252 + outSlope: -0.0021364014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -0.00018440542 + inSlope: -0.00050509657 + outSlope: -0.000684413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.00009837674 + inSlope: 0.000710661 + outSlope: 0.0006772016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0000004037359 + inSlope: 0.000016892996 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.7474529 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.747455 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.74745566 + inSlope: -0.39160255 + outSlope: -0.39410585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6720803 + inSlope: -0.7739066 + outSlope: -0.7704328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: 0.63703287 + inSlope: 0.07918904 + outSlope: 0.08001924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.69863683 + inSlope: 1.0138751 + outSlope: 1.0192386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.74746126 + inSlope: 0.5668397 + outSlope: 0.5626677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7474618 + inSlope: -0.0011920927 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.74746805 + inSlope: 0 + outSlope: 0.0023841881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.7474685 + inSlope: -2.1374247 + outSlope: -2.1517246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.5423515 + inSlope: -5.6564727 + outSlope: -5.679136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.27035493 + inSlope: -5.491381 + outSlope: -5.5092626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.08865591 + inSlope: -3.697652 + outSlope: -3.5171244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.03823631 + inSlope: -2.0965953 + outSlope: -2.2847173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.102511495 + inSlope: -0.99837637 + outSlope: -0.99894357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.11467836 + inSlope: 0.5328653 + outSlope: 0.5357271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.014218165 + inSlope: 1.5962735 + outSlope: 1.4571927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.1134658 + inSlope: 0.74610054 + outSlope: 0.8998812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.09712104 + inSlope: -0.5107932 + outSlope: -0.467633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0021627687 + inSlope: -0.3455226 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.004702485 + inSlope: 0 + outSlope: -0.002210727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.004426023 + inSlope: -0.0022072345 + outSlope: -0.0022212046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.0043339273 + inSlope: 0.008982607 + outSlope: 0.09349174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.004822435 + inSlope: 0.060863785 + outSlope: -0.06387012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: 0.0042762537 + inSlope: -0.04711828 + outSlope: 0.04287693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.0038311009 + inSlope: 0.04180649 + outSlope: -0.20430872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.003504754 + inSlope: -0.21650438 + outSlope: -0.0053271637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0034125408 + inSlope: -0.0022025774 + outSlope: -0.0022098774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.002005175 + inSlope: -0.0023491983 + outSlope: -0.0023562484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0019061214 + inSlope: 0.0027334343 + outSlope: 0.14353523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.0022186274 + inSlope: 0.09700176 + outSlope: 0.0064610564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.0023482807 + inSlope: -0.000097788965 + outSlope: -0.000118743745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.002262808 + inSlope: -0.0030314578 + outSlope: -0.0030966506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.00211555 + inSlope: -0.003734607 + outSlope: -0.0037159717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.0019624769 + inSlope: -0.0035203942 + outSlope: -0.0035259856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.0016890576 + inSlope: -0.0030524083 + outSlope: -0.0030524128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.0014365063 + inSlope: -0.003126453 + outSlope: -0.003118764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.00116228 + inSlope: -0.0033597434 + outSlope: -0.0033894323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.0007520578 + inSlope: -0.0032746177 + outSlope: -0.0032759286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.000068708265 + inSlope: -0.003279421 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.70566684 + inSlope: 0 + outSlope: 0.09208917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.6746908 + inSlope: 0.53599477 + outSlope: 0.53823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -0.6511872 + inSlope: 0.8028746 + outSlope: 0.8089541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.56569576 + inSlope: 1.2145041 + outSlope: 1.2173654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: -0.41958004 + inSlope: 0.6650091 + outSlope: 0.66447276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -0.37443408 + inSlope: 0.4173518 + outSlope: 0.41753018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: -0.35902542 + inSlope: 0.39339033 + outSlope: 0.3939866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.3417863 + inSlope: 0.37372103 + outSlope: 0.3736019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -0.30698252 + inSlope: -0.029563904 + outSlope: -0.029435521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.36067486 + inSlope: -0.56532705 + outSlope: -0.56632984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -0.4671773 + inSlope: -1.3160719 + outSlope: -1.3196434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -0.5239253 + inSlope: -1.5395839 + outSlope: -1.5461459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.5846716 + inSlope: -0.96559614 + outSlope: -1.046656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.56497943 + inSlope: 0.9345995 + outSlope: 1.1461984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.49178943 + inSlope: 1.7452257 + outSlope: 1.6424075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.43079063 + inSlope: 1.3151778 + outSlope: 1.318456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.38310993 + inSlope: 0.99957085 + outSlope: 1.0002847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.3134298 + inSlope: 0.89657265 + outSlope: 0.8983608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.2636463 + inSlope: 0.2646445 + outSlope: 0.26464486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.26915804 + inSlope: -0.19848366 + outSlope: -0.20062914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.27887124 + inSlope: 0.071883164 + outSlope: 0.07224079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.26438323 + inSlope: 0.19133082 + outSlope: 0.19119343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.23382343 + inSlope: 0.08796274 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.21189564 + inSlope: 0 + outSlope: 0.13276935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.25144973 + inSlope: 0.5339831 + outSlope: 0.5346537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.2782857 + inSlope: 0.859201 + outSlope: 0.8572339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.38073766 + inSlope: 0.9090899 + outSlope: 0.91087824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 0.5072006 + inSlope: 0.30219558 + outSlope: 0.30183798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.5123956 + inSlope: -0.21743779 + outSlope: -0.21815282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.49707723 + inSlope: -0.04827972 + outSlope: -0.05185603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.5085803 + inSlope: 0.24676317 + outSlope: 0.24819374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.5421314 + inSlope: 0.14567375 + outSlope: 0.1460772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.5748859 + inSlope: -0.004401573 + outSlope: -0.0061307694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.5286012 + inSlope: -0.78627115 + outSlope: -0.7903555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.48503494 + inSlope: -1.1140078 + outSlope: -1.1199723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.42732406 + inSlope: 0.84281045 + outSlope: 0.73552024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.43181935 + inSlope: 0.043511327 + outSlope: 0.2700093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.42821988 + inSlope: -0.15109792 + outSlope: -0.27447966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.4107098 + inSlope: -0.26553893 + outSlope: -0.26702908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.40688038 + inSlope: 0.104308225 + outSlope: 0.10478491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.44315284 + inSlope: 0.45847872 + outSlope: 0.4606245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.47678784 + inSlope: -0.22888173 + outSlope: -0.23102783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.43444768 + inSlope: -0.7270582 + outSlope: -0.72777236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.39399865 + inSlope: -0.102639146 + outSlope: -0.10192389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.40185106 + inSlope: 0.13840193 + outSlope: 0.13782434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.43769205 + inSlope: 0.1706986 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.43733487 + inSlope: 0 + outSlope: -0.07353722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.41224295 + inSlope: -0.36768612 + outSlope: -0.3665686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.39206058 + inSlope: -0.32722953 + outSlope: -0.32401082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.36604276 + inSlope: -0.25284287 + outSlope: -0.253737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 0.23204115 + inSlope: -0.80949074 + outSlope: -0.80949086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.16765764 + inSlope: -0.754595 + outSlope: -0.75459415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.136626 + inSlope: -0.5359943 + outSlope: -0.53465354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.12327692 + inSlope: -0.30130142 + outSlope: -0.30192733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.06596848 + inSlope: -0.13777614 + outSlope: -0.13778988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.11492452 + inSlope: 0.723371 + outSlope: 0.7252189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.2597277 + inSlope: 1.5155773 + outSlope: 1.5208086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.33066323 + inSlope: 1.6415076 + outSlope: 1.64807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.40379542 + inSlope: 1.2695801 + outSlope: 1.1724217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.5536529 + inSlope: 3.2424881 + outSlope: 3.461841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.6893003 + inSlope: 2.496245 + outSlope: 2.421143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.7654809 + inSlope: 1.3232244 + outSlope: 1.3244165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.80395925 + inSlope: 0.55193955 + outSlope: 0.55146194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.80286145 + inSlope: -0.37121755 + outSlope: -0.3719328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.7293194 + inSlope: -0.97417784 + outSlope: -0.9748945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.6416717 + inSlope: -0.81181604 + outSlope: -0.8103844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.6035208 + inSlope: -0.12874597 + outSlope: -0.12874597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.60365015 + inSlope: 0.0014305108 + outSlope: 0.0019256893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.6179739 + inSlope: 0.13562354 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.51562864 + inSlope: 0 + outSlope: 0.13232231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.55823034 + inSlope: 0.67904586 + outSlope: 0.68128115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.5871975 + inSlope: 0.70452696 + outSlope: 0.70595735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6332769 + inSlope: 0.6837844 + outSlope: 0.6870032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 0.7161404 + inSlope: 0.43809417 + outSlope: 0.43702134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.7544142 + inSlope: 0.52285206 + outSlope: 0.5221363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.77804136 + inSlope: 0.31113598 + outSlope: 0.3075599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7805965 + inSlope: 0.048875798 + outSlope: 0.0500679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.77942514 + inSlope: -0.10108948 + outSlope: -0.101786375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.7254049 + inSlope: -0.39174 + outSlope: -0.39288014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.6594449 + inSlope: -0.8986686 + outSlope: -0.90121984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.61717516 + inSlope: -1.3124908 + outSlope: -1.3148798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.55901927 + inSlope: -2.5689626 + outSlope: -2.5045836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.4333575 + inSlope: -2.9659228 + outSlope: -3.1989844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.3156517 + inSlope: -2.5212789 + outSlope: -2.360346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.24449117 + inSlope: -1.3764216 + outSlope: -1.3792528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.20328468 + inSlope: -0.507236 + outSlope: -0.50675845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.24655779 + inSlope: 1.5247457 + outSlope: 1.525461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.41383246 + inSlope: 2.1514883 + outSlope: 2.1511338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.5718972 + inSlope: 1.3675703 + outSlope: 1.3697141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.6346326 + inSlope: 0.2181529 + outSlope: 0.21672238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.635786 + inSlope: -0.00929832 + outSlope: -0.009628447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.60980356 + inSlope: -0.22640604 + 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.022216426 + inSlope: 0 + outSlope: -0.05644436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: -0.045399137 + inSlope: -0.4267072 + outSlope: -0.42725354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -0.22663361 + inSlope: -0.43524936 + outSlope: -0.4351139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.2962696 + inSlope: -0.020623207 + outSlope: -0.019944634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.22529724 + inSlope: 0.6937294 + outSlope: 0.6943728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.069227435 + inSlope: 0.41657257 + outSlope: 0.41624534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.05017499 + inSlope: -0.116173185 + outSlope: -0.11663134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0693693 + inSlope: -0.17210832 + outSlope: -0.17161672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.08197356 + inSlope: 0.008225443 + outSlope: 0.008252949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.081488974 + inSlope: -0.0046766712 + outSlope: -0.0045597595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0816469 + inSlope: -0.00035762822 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.00050248066 + inSlope: 0 + outSlope: -0.06906533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: -0.059223935 + inSlope: -0.32057366 + outSlope: -0.320717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -0.1609809 + inSlope: -0.12606382 + outSlope: -0.1257658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.164332 + inSlope: 0.15711784 + outSlope: 0.15776893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.062480107 + inSlope: 0.70652145 + outSlope: 0.7066982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.121061474 + inSlope: 0.46175504 + outSlope: 0.4610047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.1282565 + inSlope: -0.5506352 + outSlope: -0.55181956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.060950156 + inSlope: -0.7436868 + outSlope: -0.7430168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.0041749957 + inSlope: -0.25174215 + outSlope: -0.2515151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.027242072 + inSlope: 0.0044445572 + outSlope: 0.004604463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.026070543 + inSlope: 0.011242937 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.19298077 + inSlope: 0 + outSlope: -0.05409122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: 0.1516597 + inSlope: -0.22545458 + outSlope: -0.22571194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 0.04477325 + inSlope: -0.28709796 + outSlope: -0.28705597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.03977686 + inSlope: -0.44551492 + outSlope: -0.44603765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.19365475 + inSlope: -0.7766715 + outSlope: -0.7759247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.28059465 + inSlope: 0.3986273 + outSlope: 0.40076676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.1790264 + inSlope: 1.2378396 + outSlope: 1.2382859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.06591294 + inSlope: 1.2952381 + outSlope: 1.2945685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.053663917 + inSlope: 0.06645174 + outSlope: 0.06478565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.029157978 + inSlope: -0.2670001 + outSlope: -0.2661648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.04355304 + inSlope: -0.13862564 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.98095083 + inSlope: 0 + outSlope: 0.012318294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: 0.98561186 + inSlope: -0.0041723256 + outSlope: -0.004226511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 0.95954037 + inSlope: -0.11053952 + outSlope: -0.11062622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9400197 + inSlope: 0.0019073486 + outSlope: 0.0024758857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.95280397 + inSlope: 0.053093992 + outSlope: 0.052111484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.9496412 + inSlope: 0.08940696 + outSlope: 0.089406975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.9741573 + inSlope: 0.294596 + outSlope: 0.29396996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99354345 + inSlope: 0.12087816 + outSlope: 0.11909011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.9951799 + inSlope: -0.0042915354 + outSlope: -0.0038513765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 0.9958751 + inSlope: -0.007702753 + outSlope: -0.007867821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.9953679 + inSlope: -0.005006795 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.108499326 + inSlope: 0 + outSlope: -0.005856157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.03596154 + inSlope: -0.30173364 + outSlope: -0.3021549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: -0.11497011 + inSlope: -0.44807112 + outSlope: -0.4480913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.20692706 + inSlope: -0.60032696 + outSlope: -0.6008154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -0.24971764 + inSlope: 0.10511715 + outSlope: 0.10657305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.17843045 + inSlope: 0.54028606 + outSlope: 0.54180676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.13942353 + inSlope: 0.37229097 + outSlope: 0.371754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.11558012 + inSlope: 0.18945327 + outSlope: 0.18915163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.10739632 + inSlope: -0.04202128 + outSlope: -0.04227672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.12215173 + inSlope: -0.2076796 + outSlope: -0.20800535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.16728383 + inSlope: -0.20053987 + outSlope: -0.2000481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.17770608 + inSlope: -0.033862893 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.436815 + inSlope: 0 + outSlope: -0.009477139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.40200138 + inSlope: -0.12171269 + outSlope: -0.12175603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 0.3469233 + inSlope: -0.19425695 + outSlope: -0.19409433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.27650222 + inSlope: -0.7424027 + outSlope: -0.74412215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.2167099 + inSlope: 0.09745368 + outSlope: 0.09915228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.30189484 + inSlope: 0.48905587 + outSlope: 0.48995066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.32097262 + inSlope: -0.13339533 + outSlope: -0.13375276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.2976024 + inSlope: -0.18382064 + outSlope: -0.18261375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.27438417 + inSlope: -0.3755093 + outSlope: -0.3757647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.2665883 + inSlope: 0.46900338 + outSlope: 0.47028077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.40714076 + inSlope: 0.93430305 + outSlope: 0.9336323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.4982978 + inSlope: 0.5163253 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.119272634 + inSlope: 0 + outSlope: -0.00551343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -0.09065704 + inSlope: 0.19724669 + outSlope: 0.19771132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 0.024398882 + inSlope: 0.33777037 + outSlope: 0.3376636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.07282563 + inSlope: 0.22282647 + outSlope: 0.22249584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.058532566 + inSlope: -0.5181458 + outSlope: -0.5195213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.053398944 + inSlope: -0.67486584 + outSlope: -0.67623025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.1135125 + inSlope: -0.6933517 + outSlope: -0.6933507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.16267817 + inSlope: -0.44131258 + outSlope: -0.44055286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.19001526 + inSlope: 0.05409122 + outSlope: 0.05492142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.14229426 + inSlope: 0.57463133 + outSlope: 0.5747081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.060834493 + inSlope: 0.15317652 + outSlope: 0.15204774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.06455359 + inSlope: -0.043194745 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.8849829 + inSlope: 0 + outSlope: 0.0045299535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.9104301 + inSlope: 0.08523465 + outSlope: 0.08550557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 0.9305002 + inSlope: 0.008127906 + outSlope: 0.008453019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.935641 + inSlope: 0.069249734 + outSlope: 0.070503846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.9419405 + inSlope: 0.03780641 + outSlope: 0.037550908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.934971 + inSlope: -0.09334083 + outSlope: -0.0951291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.92986697 + inSlope: 0.017166154 + outSlope: 0.016450875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.93360054 + inSlope: 0.005722043 + outSlope: 0.004470349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.936522 + inSlope: 0.116229065 + outSlope: 0.11750629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.9453899 + inSlope: -0.07254736 + outSlope: -0.07331373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.89585245 + inSlope: -0.45168412 + outSlope: -0.45061114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.8461397 + inSlope: -0.3151596 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.06146781 + inSlope: 0 + outSlope: -0.015310942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.06549897 + inSlope: -0.1645088 + outSlope: -0.1653135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: -0.0811834 + inSlope: 0.098794706 + outSlope: 0.099688776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: -0.05272789 + inSlope: 0.41686 + outSlope: 0.41722882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: 0.17354135 + inSlope: 0.8577705 + outSlope: 0.85811526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 0.36223322 + inSlope: 0.4871402 + outSlope: 0.48588607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.3454181 + inSlope: -0.74142736 + outSlope: -0.74207854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.25012454 + inSlope: -1.6926544 + outSlope: -1.6951547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.073355496 + inSlope: -2.210809 + outSlope: -2.2105315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.14700653 + inSlope: -1.0543318 + outSlope: -1.0567913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.17906684 + inSlope: -0.5503004 + outSlope: -0.5528336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.19310448 + inSlope: 0.94801277 + outSlope: 0.95128876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.098191455 + inSlope: 1.7762159 + outSlope: 1.7800944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.050296873 + inSlope: 0.9611258 + outSlope: 0.95635515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.015472293 + inSlope: 0.588297 + outSlope: 0.5882984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.011862591 + inSlope: 0.37059224 + outSlope: 0.3676418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.031795766 + inSlope: -0.33657286 + outSlope: -0.33907577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.01853183 + inSlope: -0.48530078 + outSlope: -0.48382592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.076803744 + inSlope: -0.5490483 + outSlope: -0.549495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.11057606 + inSlope: -0.39696676 + outSlope: -0.39905348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.12459484 + inSlope: -0.34332308 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.36719373 + inSlope: 0 + outSlope: 0.094994895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.33149672 + inSlope: 0.68798655 + outSlope: 0.68879133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: -0.25644094 + inSlope: 0.6719828 + outSlope: 0.6701947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: -0.21803494 + inSlope: 0.50014263 + outSlope: 0.50058967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: -0.05141582 + inSlope: 0.36616626 + outSlope: 0.36573833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: -0.0028347522 + inSlope: 0.029184986 + outSlope: 0.028691499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.047809944 + inSlope: -0.58715975 + outSlope: -0.5874937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.11796131 + inSlope: -1.1394929 + outSlope: -1.1407202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -0.23972851 + inSlope: -1.5494214 + outSlope: -1.5495346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -0.40834865 + inSlope: -0.9349734 + outSlope: -0.93788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.44137347 + inSlope: -0.5945569 + outSlope: -0.59306675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.45834365 + inSlope: -2.1356366 + outSlope: -2.1344392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.60550565 + inSlope: -1.8727753 + outSlope: -1.87576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.62393236 + inSlope: 0.46670482 + outSlope: 0.4625314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.5754975 + inSlope: 1.8882724 + outSlope: 1.8954295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.48313686 + inSlope: 2.3290536 + outSlope: 2.3235104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.32635158 + inSlope: 1.2323868 + outSlope: 1.2309545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.2825644 + inSlope: -0.1473426 + outSlope: -0.14913085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.4406239 + inSlope: -1.2041333 + outSlope: -1.2044901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.5343734 + inSlope: -0.82111317 + outSlope: -0.8225449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.5620673 + inSlope: -0.64373076 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.55583566 + inSlope: 0 + outSlope: -0.018328426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.5533751 + inSlope: -0.050067898 + outSlope: -0.04935265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.54797155 + inSlope: -0.06651879 + outSlope: -0.06723405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: 0.5441519 + inSlope: -0.057220463 + outSlope: -0.05847216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: 0.49332902 + inSlope: -0.18614532 + outSlope: -0.18609421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 0.43814185 + inSlope: -0.13985804 + outSlope: -0.13931227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.4334194 + inSlope: 0.11362809 + outSlope: 0.113725774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.44571492 + inSlope: 0.32365352 + outSlope: 0.32365295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.4678377 + inSlope: 0.13723958 + outSlope: 0.13634564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.4259658 + inSlope: -0.46715143 + outSlope: -0.4675989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.40768495 + inSlope: -0.151992 + outSlope: -0.15258804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.4135026 + inSlope: 1.0257969 + outSlope: 1.0257945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.48462027 + inSlope: 1.7476057 + outSlope: 1.7532723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.5728582 + inSlope: 2.5910163 + outSlope: 2.5856457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.69095397 + inSlope: 2.9098947 + outSlope: 2.9218225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.80554795 + inSlope: 2.206566 + outSlope: 2.1994135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.91836405 + inSlope: 0.61655104 + outSlope: 0.6158349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.9357693 + inSlope: -0.10156626 + outSlope: -0.10335448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.8492514 + inSlope: -0.82469004 + outSlope: -0.82325894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.7829981 + inSlope: -0.6909367 + outSlope: -0.69141454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.7586578 + inSlope: -0.59723914 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.74326116 + inSlope: 0 + outSlope: 0.05945563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.7613118 + inSlope: 0.3223121 + outSlope: 0.32258037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.7920698 + inSlope: 0.27465823 + outSlope: 0.27322772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: 0.8084426 + inSlope: 0.20241739 + outSlope: 0.20116569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: 0.8508033 + inSlope: -0.044703487 + outSlope: -0.045214377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 0.82268506 + inSlope: -0.14049666 + outSlope: -0.13914971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.8309922 + inSlope: 0.21490176 + outSlope: 0.21600744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.8513878 + inSlope: 0.17094629 + outSlope: 0.16987309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.8475123 + inSlope: -0.32275888 + outSlope: -0.32275918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.7938473 + inSlope: -0.4255772 + outSlope: -0.42557758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.77904916 + inSlope: -0.38087404 + outSlope: -0.38504636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.76265806 + inSlope: -1.597406 + outSlope: -1.5974022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.62359 + inSlope: -2.8967817 + outSlope: -2.9039412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.52916163 + inSlope: -2.1690152 + outSlope: -2.1648376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.43720222 + inSlope: -2.0909278 + outSlope: -2.0992775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.34282726 + inSlope: -1.915099 + outSlope: -1.9090194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.22156517 + inSlope: -0.69272584 + outSlope: -0.69308245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.21011837 + inSlope: 0.21654357 + outSlope: 0.21833186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.28057745 + inSlope: 0.45382988 + outSlope: 0.45382956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.29854977 + inSlope: 0.19383422 + outSlope: 0.19490737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.30495045 + inSlope: 0.1585485 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0011592172 + inSlope: 0 + outSlope: 0.0019819709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.00049887283 + inSlope: 0.00674132 + outSlope: 0.0067544174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -0.00011774597 + inSlope: 0.0051360987 + outSlope: 0.005110342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.0000009458856 + inSlope: 0.0011143142 + outSlope: 0.001111838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00000075533495 + inSlope: -0.000020168605 + outSlope: -0.000018380666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.0000001511666 + inSlope: 0.00000014204916 + outSlope: 0.000108742985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.00000015073 + inSlope: -0.10841307 + outSlope: -0.108554356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.0077440487 + inSlope: -0.19516768 + outSlope: -0.19609481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.016401013 + inSlope: -0.15568003 + outSlope: -0.15512086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.021278456 + inSlope: -0.062808305 + outSlope: -0.06303197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.021968905 + inSlope: 0.0263192 + outSlope: 0.026509192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.014337268 + inSlope: 0.110942975 + outSlope: 0.11069671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -0.009863947 + inSlope: 0.08538343 + outSlope: 0.08553275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.007217846 + inSlope: 0.043408986 + outSlope: 0.043269183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -0.006232734 + inSlope: 0.016745156 + outSlope: 0.016771805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.0056739543 + inSlope: 0.0003472506 + outSlope: 0.00035972337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0051886104 + inSlope: 0.009366778 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.19253 + inSlope: 0 + outSlope: -0.12874603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.136355 + inSlope: -1.2994184 + outSlope: -1.3031067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.06135602 + inSlope: -1.6656519 + outSlope: -1.6635658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: -0.0022738648 + inSlope: -0.7639267 + outSlope: -0.7616982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0022738643 + inSlope: 0.000670552 + outSlope: 0.000004170101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.0022738564 + inSlope: 0.000011467778 + outSlope: -0.005997723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.0022728974 + inSlope: 5.9956465 + outSlope: 6.0027285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.48834866 + inSlope: 7.438649 + outSlope: 7.4458194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.67985386 + inSlope: 3.2669337 + outSlope: 3.2508326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.7735819 + inSlope: 1.2361985 + outSlope: 1.2391818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.7902842 + inSlope: -0.3182891 + outSlope: -0.32401115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.6537421 + inSlope: -2.3953938 + outSlope: -2.390736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.5443978 + inSlope: -2.2119226 + outSlope: -2.2149107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.4722073 + inSlope: -1.1265289 + outSlope: -1.123546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.4520598 + inSlope: -0.3230567 + outSlope: -0.32467532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.43631572 + inSlope: -0.17549327 + outSlope: -0.17613174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.40061978 + inSlope: -0.40054324 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.00590821 + inSlope: 0 + outSlope: -0.0063423063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.0036244425 + inSlope: -0.036054406 + outSlope: -0.036126006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.0019154605 + inSlope: -0.038741857 + outSlope: -0.03870344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.0004153578 + inSlope: -0.027003117 + outSlope: -0.026997576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00033293566 + inSlope: -0.01149368 + outSlope: -0.011449768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.00007081767 + inSlope: 0.0000123930195 + outSlope: -0.00016123538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.00007078816 + inSlope: 0.16125691 + outSlope: 0.1615138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.01383586 + inSlope: 0.15579142 + outSlope: 0.15568003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.01768195 + inSlope: 0.02453106 + outSlope: 0.024214352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.01741429 + inSlope: -0.012516958 + outSlope: -0.012572867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.017015895 + inSlope: -0.0044703525 + outSlope: -0.004515056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.016588667 + inSlope: -0.035963986 + outSlope: -0.03593033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.015195182 + inSlope: -0.042859353 + outSlope: -0.043027144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.013471819 + inSlope: -0.03639612 + outSlope: -0.036284275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.012296747 + inSlope: -0.021494893 + outSlope: -0.021529537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.011699932 + inSlope: 0.005220733 + outSlope: 0.0052107503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.011865544 + inSlope: -0.0072713015 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.98127264 + inSlope: 0 + outSlope: 0.025480984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.9906533 + inSlope: 0.17881392 + outSlope: 0.18060209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.99811417 + inSlope: 0.10192395 + outSlope: 0.10252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.9999974 + inSlope: -0.001192093 + outSlope: -0.0017881386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9999974 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.99999744 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.99999744 + inSlope: 0.015497223 + outSlope: 0.011920912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.8725046 + inSlope: -4.163975 + outSlope: -4.175309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.7329509 + inSlope: -3.0326872 + outSlope: -3.019567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.6330994 + inSlope: -1.5175321 + outSlope: -1.5145555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.61211014 + inSlope: 0.41484872 + outSlope: 0.41699448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.7563997 + inSlope: 2.0742435 + outSlope: 2.0706599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.8386315 + inSlope: 1.4358721 + outSlope: 1.4400496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.881355 + inSlope: 0.6055838 + outSlope: 0.6031982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.89188117 + inSlope: 0.16689277 + outSlope: 0.16450898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.8996997 + inSlope: 0.08531987 + outSlope: 0.08538366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.91615283 + inSlope: 0.17523767 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0000014514663 + inSlope: 0 + outSlope: 0.003957097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.0006476445 + inSlope: 0.017110957 + outSlope: 0.017154261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0062396554 + inSlope: 0.046558674 + outSlope: 0.046528164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: 0.010746172 + inSlope: -0.0046508824 + outSlope: -0.00468269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: 0.006214778 + inSlope: -0.016691163 + outSlope: -0.01670285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -0.00023539274 + inSlope: -0.004997869 + outSlope: -0.004966386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -0.006073159 + inSlope: -0.012997187 + outSlope: -0.013012906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.006814612 + inSlope: 0.012321399 + outSlope: 0.012356323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.0030797578 + inSlope: 0.037812863 + outSlope: 0.037824772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.00044517062 + inSlope: 0.02711164 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0000019650906 + inSlope: 0 + outSlope: 0.012921992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.001965602 + inSlope: 0.04083384 + outSlope: 0.040892508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.010434766 + inSlope: 0.03500841 + outSlope: 0.034911707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: 0.011933403 + inSlope: -0.0062584886 + outSlope: -0.006236136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: 0.0111540435 + inSlope: 0.0026458874 + outSlope: 0.00261871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.00480219 + inSlope: -0.03344888 + outSlope: -0.03348657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -0.00696985 + inSlope: 0.008324277 + outSlope: 0.008371427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.004726231 + inSlope: 0.026472846 + outSlope: 0.026455384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.0016393133 + inSlope: 0.012006204 + outSlope: 0.011988927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.00061951583 + inSlope: 0.015557526 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0000031208622 + inSlope: 0 + outSlope: -0.25483042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.03902825 + inSlope: -0.8597374 + outSlope: -0.861056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.25646186 + inSlope: -1.4221071 + outSlope: -1.4217085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: -0.440006 + inSlope: -0.09174532 + outSlope: -0.090390444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: -0.33224064 + inSlope: 0.600189 + outSlope: 0.6008962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -0.045295577 + inSlope: 0.8248302 + outSlope: 0.82494676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.25597543 + inSlope: 0.085774794 + outSlope: 0.08516014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.21951532 + inSlope: -0.8251146 + outSlope: -0.8254499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 0.081673056 + inSlope: -1.0841154 + outSlope: -1.0843288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.01121125 + inSlope: -0.683204 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.9992359 + inSlope: -0.034332275 + outSlope: -0.033617016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9664779 + inSlope: -0.3780126 + outSlope: -0.3779852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: 0.8978512 + inSlope: -0.04484104 + outSlope: -0.043988228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: 0.9431082 + inSlope: 0.21135807 + outSlope: 0.2116507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.99896204 + inSlope: 0.03771349 + outSlope: 0.03743916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.9666391 + inSlope: -0.022687014 + outSlope: -0.022351744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.9755738 + inSlope: 0.1859665 + outSlope: 0.18641354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 0.9966531 + inSlope: 0.089406975 + outSlope: 0.08869179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.9999369 + inSlope: 0.007867821 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.28050935 + inSlope: 0 + outSlope: -0.09518403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: -0.36610705 + inSlope: -0.74936795 + outSlope: -0.7510186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: -0.46657562 + inSlope: -0.4204682 + outSlope: -0.41896108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -0.46606126 + inSlope: 0.51087147 + outSlope: 0.5121032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: -0.23899135 + inSlope: 0.77014166 + outSlope: 0.7699726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.09117789 + inSlope: 0.18489356 + outSlope: 0.18408912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.10661709 + inSlope: -0.9319791 + outSlope: -0.9349726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -0.24209403 + inSlope: -1.8934145 + outSlope: -1.892894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.37167296 + inSlope: -0.64700824 + outSlope: -0.6455189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.34197295 + inSlope: 1.0487447 + outSlope: 1.0520229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.2913175 + inSlope: 0.761152 + outSlope: 0.7569779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.27971193 + inSlope: 0.509619 + outSlope: 0.5114083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.24936984 + inSlope: 1.1354696 + outSlope: 1.1342162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.090900466 + inSlope: 2.309202 + outSlope: 2.306553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.015646242 + inSlope: 1.6370431 + outSlope: 1.6408429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.04921794 + inSlope: 0.62450826 + outSlope: 0.62260723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.07920715 + inSlope: 0.101532705 + outSlope: 0.102371074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.0837298 + inSlope: 0.113993995 + outSlope: 0.1153351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 0.08813068 + inSlope: -0.6692118 + outSlope: -0.6741292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.028289214 + inSlope: -1.2338173 + outSlope: -1.2317282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.012105107 + inSlope: -0.9062873 + outSlope: -0.90926975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.046194054 + inSlope: -0.74364316 + outSlope: -0.74714494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.073828645 + inSlope: -0.66220826 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.26088005 + inSlope: 0 + outSlope: 0.032461606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.28238612 + inSlope: -0.17069854 + outSlope: -0.17089504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: 0.25350636 + inSlope: -0.52596843 + outSlope: -0.5264283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.1823673 + inSlope: -0.3410876 + outSlope: -0.34098822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: 0.07576603 + inSlope: -0.46064454 + outSlope: -0.46116102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.04409159 + inSlope: -0.43205908 + outSlope: -0.43188077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.06885025 + inSlope: -0.11068593 + outSlope: -0.110417515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -0.06944022 + inSlope: 0.102370895 + outSlope: 0.10311601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -0.043836296 + inSlope: 0.56281674 + outSlope: 0.5628174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.00089652836 + inSlope: 0.08784243 + outSlope: 0.08612879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.005767137 + inSlope: 0.22709392 + outSlope: 0.22828546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.019221634 + inSlope: 0.24259056 + outSlope: 0.24229312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.015060112 + inSlope: -0.64998925 + outSlope: -0.64972013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.12418564 + inSlope: -2.7251232 + outSlope: -2.7237859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.25313807 + inSlope: -1.8787402 + outSlope: -1.8793362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.28128994 + inSlope: -0.6508833 + outSlope: -0.6499881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -0.36754215 + inSlope: -0.8144968 + outSlope: -0.81718045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.40257448 + inSlope: -0.8073457 + outSlope: -0.8064516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -0.43440902 + inSlope: 0.47117516 + outSlope: 0.47743365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.36067677 + inSlope: 1.2284529 + outSlope: 1.2260658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.33101353 + inSlope: 0.59544957 + outSlope: 0.5981332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.3102364 + inSlope: 0.42557758 + outSlope: 0.42676967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.29524052 + inSlope: 0.36299264 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.40519342 + inSlope: 0 + outSlope: 0.07688999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.47099674 + inSlope: 0.8356113 + outSlope: 0.83710474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: 0.58569765 + inSlope: 1.0948522 + outSlope: 1.094699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.74195415 + inSlope: 0.77247626 + outSlope: 0.7710854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: 0.8758398 + inSlope: 0.17742315 + outSlope: 0.17666812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.86156154 + inSlope: -0.25534624 + outSlope: -0.25534654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.83602166 + inSlope: -0.3397468 + outSlope: -0.33795807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.79616636 + inSlope: -0.67591614 + outSlope: -0.6735323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.7151384 + inSlope: -1.1163948 + outSlope: -1.1175882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.6279063 + inSlope: -0.72419715 + outSlope: -0.722409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.6053972 + inSlope: -0.6163126 + outSlope: -0.61631113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.5767154 + inSlope: -0.5793563 + outSlope: -0.5793577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.55689573 + inSlope: -0.37550962 + outSlope: -0.36978704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.5246155 + inSlope: -0.7023808 + outSlope: -0.70333546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.4899792 + inSlope: -1.0114918 + outSlope: -1.0156641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.44978294 + inSlope: -0.86277807 + outSlope: -0.8600943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.39963025 + inSlope: 0.13992178 + outSlope: 0.139475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.41373312 + inSlope: 0.5346542 + outSlope: 0.5346542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 0.44425845 + inSlope: 1.0210285 + outSlope: 1.0252008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.49777737 + inSlope: 1.2665999 + outSlope: 1.2630206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 0.55371916 + inSlope: 1.2707692 + outSlope: 1.2749445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.6048021 + inSlope: 1.0067234 + outSlope: 1.0120878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.63904893 + inSlope: 0.79393464 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.830105 + inSlope: 0 + outSlope: -0.079503424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.75125605 + inSlope: -0.8252951 + outSlope: -0.82612044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: 0.6123724 + inSlope: -1.1495183 + outSlope: -1.1483432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.44613132 + inSlope: -0.610292 + outSlope: -0.60886145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: 0.41236794 + inSlope: 0.15487273 + outSlope: 0.15485284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.49744773 + inSlope: 0.437498 + outSlope: 0.43630642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.5338166 + inSlope: 0.33044848 + outSlope: 0.3308055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.55017054 + inSlope: 0.15646206 + outSlope: 0.1555681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.59035134 + inSlope: 0.9870527 + outSlope: 0.99063015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.69913334 + inSlope: 1.1640798 + outSlope: 1.1646758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.740672 + inSlope: 0.8046635 + outSlope: 0.8034695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.7673272 + inSlope: 0.61273485 + outSlope: 0.61690867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.7921205 + inSlope: 0.6312138 + outSlope: 0.63085526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.8373134 + inSlope: 0.2882479 + outSlope: 0.28491047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.8340244 + inSlope: -0.00596047 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.8462558 + inSlope: 0.20742436 + outSlope: 0.20474179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.83602315 + inSlope: -0.43407047 + outSlope: -0.43630642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.8122488 + inSlope: -0.6830699 + outSlope: -0.68664616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 0.77856034 + inSlope: -0.24497533 + outSlope: -0.24080299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.7882447 + inSlope: -0.19192713 + outSlope: -0.19311877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 0.7639886 + inSlope: -0.6771078 + outSlope: -0.67770547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.7320067 + inSlope: -0.69916314 + outSlope: -0.7009513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.7063985 + inSlope: -0.6365782 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.000000029802322 + inSlope: 0 + outSlope: 0.000000064866484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.00000002070152 + inSlope: 0.000000045024148 + outSlope: 0.000000043662894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.000000020425738 + inSlope: 0.0000014523507 + outSlope: 0.0000014479774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.000000018388114 + inSlope: 0.0000012990124 + outSlope: 0.0000013028524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.000000016210594 + inSlope: 0.0000011598732 + outSlope: 0.0000011570817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.00000001530559 + inSlope: 0.0000010992436 + outSlope: 0.0000011014666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00000001637381 + inSlope: 0.0000011950985 + outSlope: 0.0000011920787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.000000019046828 + inSlope: 0.0000013945125 + outSlope: 0.0000013978698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.000000018771047 + inSlope: 0.0000013489489 + outSlope: 0.0000013484034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.000000017667922 + inSlope: 0.0000003162269 + outSlope: 0.0000003166004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -0.000000017392141 + inSlope: 0.0000012060764 + outSlope: 0.0000012105173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.000000012908206 + inSlope: 0.0000008945209 + outSlope: 0.00000089556676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.000000010261488 + inSlope: 0.0000007270085 + outSlope: 0.0000007291241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.000000008646113 + inSlope: 0.0000006138029 + outSlope: 0.00000061845697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.000000007606867 + inSlope: 0.00000054219794 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.000000011175872 + inSlope: 0 + outSlope: 0.000000028115396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.0000000039444257 + inSlope: -0.000003761188 + outSlope: 0.0020158836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.00000031887188 + inSlope: -2.0148287 + outSlope: -2.0165458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.16766466 + inSlope: -3.6051817 + outSlope: -3.6165152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.30199674 + inSlope: -2.0098705 + outSlope: -1.999733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.33754373 + inSlope: 0.65207386 + outSlope: 0.65803593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.24619518 + inSlope: 3.992025 + outSlope: 3.9860644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.000000013038518 + inSlope: 2.9392066 + outSlope: 2.9357388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.0000000131937385 + inSlope: -0.0029312007 + outSlope: 0.00000094771616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.000000013814621 + inSlope: 0.00000024727942 + outSlope: 0.0035930632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -0.000000013969841 + inSlope: -3.5715487 + outSlope: -3.5973208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.29688865 + inSlope: -4.906659 + outSlope: -4.8971105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.42278174 + inSlope: -2.2047727 + outSlope: -2.2128246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.4841628 + inSlope: -1.0943424 + outSlope: -1.1003028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.51527846 + inSlope: -0.73552203 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 3.631496e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.000000008303623 + inSlope: -0.00000001806035 + outSlope: -0.000000017426077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.000000008555242 + inSlope: -0.0000006567553 + outSlope: -0.0000006545866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.000000005303767 + inSlope: -0.0000004478189 + outSlope: -0.0000004485483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.000000002633611 + inSlope: -0.00000022344814 + outSlope: -0.00000022271931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.0000000021483952 + inSlope: -0.0000001433518 + outSlope: -0.00000014360526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0000000045103064 + inSlope: -0.0000002566616 + outSlope: -0.0000002563019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.000000009813372 + inSlope: -0.00000064739385 + outSlope: -0.00000064958766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.000000010064999 + inSlope: -0.00000072368846 + outSlope: -0.0000007229574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.000000011071497 + inSlope: -0.0000001980175 + outSlope: -0.00000019824161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 0.000000011323122 + inSlope: -0.0000008737286 + outSlope: -0.00000087652637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.0000000059712146 + inSlope: -0.00000049462705 + outSlope: -0.0000004942884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 0.0000000035975434 + inSlope: -0.00000028307093 + outSlope: -0.00000028367336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.0000000025479234 + inSlope: -0.00000019263942 + outSlope: -0.00000019400056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.0000000021733901 + inSlope: -0.00000016206162 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.9858441 + inSlope: -0.61273485 + outSlope: -0.61512053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.95330894 + inSlope: -0.6365782 + outSlope: -0.63300043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.94130987 + inSlope: 0.23484196 + outSlope: 0.23603462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9692203 + inSlope: 1.013876 + outSlope: 1.0120878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.9549121 + inSlope: -1.5246882 + outSlope: -1.5234926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 0.9062315 + inSlope: -1.0287747 + outSlope: -1.0317574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.87497795 + inSlope: -0.6043917 + outSlope: -0.60916007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.8570228 + inSlope: -0.44226688 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.000000011313912 + inSlope: 0 + outSlope: -0.000024062918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.000007010448 + inSlope: -0.00006262553 + outSlope: -0.00006265146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: -0.000008445571 + inSlope: 0.00014399849 + outSlope: 0.00014450599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: 0.000014034289 + inSlope: -0.0000060463212 + outSlope: -0.0000067666383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.000040939398 + inSlope: -0.0010039571 + outSlope: -0.0010053047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -0.00014375393 + inSlope: -0.0013919201 + outSlope: -0.0013940156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: -0.00026345826 + inSlope: -0.0012737004 + outSlope: -0.001274398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -0.00035344402 + inSlope: -0.00068382325 + outSlope: -0.00068146625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: -0.00044956885 + inSlope: -0.0032209211 + outSlope: -0.003242852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0040143854 + inSlope: -0.01691501 + outSlope: -0.016929293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.0073306058 + inSlope: -0.010539704 + outSlope: -0.010536055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.008130842 + inSlope: 0.0030510135 + outSlope: 0.0030621872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -0.007599566 + inSlope: 0.0021010628 + outSlope: 0.002099469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.007497542 + inSlope: 0.0019517879 + outSlope: 0.0019557765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.0075528123 + inSlope: -0.0034309907 + outSlope: -0.0034272703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0077420967 + inSlope: -0.004442413 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.000000003771304 + inSlope: 0 + outSlope: 0.00007188569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.000025196487 + inSlope: 0.0003935156 + outSlope: 0.00039413502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: 0.00012496037 + inSlope: 0.00073909183 + outSlope: 0.00073935377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: 0.00026610354 + inSlope: 0.0009045471 + outSlope: 0.00090504566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00037739897 + inSlope: 0.00060519314 + outSlope: 0.0006052434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 0.0004269933 + inSlope: 0.00017951247 + outSlope: 0.00017811549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: 0.00043999817 + inSlope: -0.00014703258 + outSlope: -0.00014773097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.00043746043 + inSlope: 0.00005308536 + outSlope: 0.000054569686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 0.00042946835 + inSlope: -0.0015091792 + outSlope: -0.0015175766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.000028802431 + inSlope: 0.0035545025 + outSlope: 0.003567144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.0010217433 + inSlope: 0.008861712 + outSlope: 0.008877136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.0026322645 + inSlope: 0.0067404485 + outSlope: 0.006729268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.0027892117 + inSlope: -0.0057569677 + outSlope: -0.005781523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.0013948106 + inSlope: -0.007132607 + outSlope: -0.007084102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.0020360048 + inSlope: 0.017149366 + outSlope: 0.017196888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.002824664 + inSlope: 0.018635783 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.1557325 + inSlope: 0 + outSlope: -0.21468846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.0852614 + inSlope: -0.9900145 + outSlope: -0.9913892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: -0.11518801 + inSlope: -1.1530371 + outSlope: -1.1529924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: -0.23019786 + inSlope: 0.14394523 + outSlope: 0.14688283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.06817984 + inSlope: 2.2740016 + outSlope: 2.2754972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 0.15056127 + inSlope: 2.6997335 + outSlope: 2.7013428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: 0.36088583 + inSlope: 2.1225219 + outSlope: 2.1232357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.4911814 + inSlope: 0.8186098 + outSlope: 0.8180738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 0.4965408 + inSlope: -0.3037602 + outSlope: -0.3048252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.30342388 + inSlope: -0.8711395 + outSlope: -0.871649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.124251164 + inSlope: -0.9721287 + outSlope: -0.97306097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.06998535 + inSlope: -1.1130276 + outSlope: -1.112401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -0.17947182 + inSlope: 0.12212986 + outSlope: 0.124531254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.046362843 + inSlope: 1.6902404 + outSlope: 1.6901038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.09398581 + inSlope: 1.3775818 + outSlope: 1.3798488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.14256987 + inSlope: 1.1566292 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.9877993 + inSlope: 0 + outSlope: 0.033527613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.99635863 + inSlope: 0.08493661 + outSlope: 0.08475781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: 0.9933437 + inSlope: -0.13375284 + outSlope: -0.13375284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: 0.9731438 + inSlope: 0.03433228 + outSlope: 0.03474098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.997673 + inSlope: 0.15582351 + outSlope: 0.15521052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 0.9886006 + inSlope: -0.41127214 + outSlope: -0.41127214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: 0.93260986 + inSlope: -0.82111377 + outSlope: -0.8218284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.87105715 + inSlope: -0.46133974 + outSlope: -0.46133998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 0.86801314 + inSlope: 0.17389657 + outSlope: 0.1743962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9528472 + inSlope: 0.27747717 + outSlope: 0.2775742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.9922232 + inSlope: 0.12186856 + outSlope: 0.121593505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.99751145 + inSlope: -0.07760526 + outSlope: -0.078320466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.9837298 + inSlope: 0.022172917 + outSlope: 0.022479488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.99889565 + inSlope: 0.078678206 + outSlope: 0.07796284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.99554276 + inSlope: -0.12946123 + outSlope: -0.13113034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.9897504 + inSlope: -0.16689317 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.404153 + inSlope: 0 + outSlope: 0.06356836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: -0.3073586 + inSlope: 0.6063581 + outSlope: 0.606974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: -0.05959607 + inSlope: 0.9643163 + outSlope: 0.96455795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.18814996 + inSlope: -0.11322496 + outSlope: -0.11461984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.15731497 + inSlope: -0.7404692 + outSlope: -0.7416946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.012120517 + inSlope: -1.2695948 + outSlope: -1.2705181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.13946363 + inSlope: -0.54699194 + outSlope: -0.5469022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.23038779 + inSlope: -0.500947 + outSlope: -0.5008583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.26919642 + inSlope: -0.4055504 + outSlope: -0.40546027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -0.2970391 + inSlope: 0.08314841 + outSlope: 0.0849367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -0.28848472 + inSlope: 0.20116587 + outSlope: 0.20116563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.27255157 + inSlope: 0.23961061 + outSlope: 0.24139903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.26116735 + inSlope: 0.30219585 + outSlope: 0.30458003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.24735938 + inSlope: 0.3460053 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.16687715 + inSlope: 0 + outSlope: 0.021636488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: -0.14351565 + inSlope: 0.17447771 + outSlope: 0.17479064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: -0.06506102 + inSlope: 0.3125022 + outSlope: 0.31249517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.05740916 + inSlope: 0.2655565 + outSlope: 0.26562837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.06743938 + inSlope: -0.29835135 + outSlope: -0.3003435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.046818912 + inSlope: -1.1906772 + outSlope: -1.1917951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.16805908 + inSlope: 0.22941834 + outSlope: 0.23174275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.025092013 + inSlope: 0.9656507 + outSlope: 0.9654397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.021479994 + inSlope: -0.26321435 + outSlope: -0.2658458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -0.16467465 + inSlope: -2.217179 + outSlope: -2.2242239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -0.3552105 + inSlope: -2.0192583 + outSlope: -2.0167227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.4806496 + inSlope: -0.66936 + outSlope: -0.67234105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.4879016 + inSlope: 0.2548101 + outSlope: 0.2574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.45887825 + inSlope: 0.7021434 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.13939673 + inSlope: 0 + outSlope: 0.08676947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: -0.068415076 + inSlope: 0.2922714 + outSlope: 0.2920628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: -0.03204786 + inSlope: -0.047385696 + outSlope: -0.047788016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.06260353 + inSlope: 0.12618896 + outSlope: 0.1267792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -0.04709459 + inSlope: 0.2536478 + outSlope: 0.25385192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.02646488 + inSlope: -0.03748706 + outSlope: -0.03842265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.089463316 + inSlope: -0.36562988 + outSlope: -0.36509317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.10950649 + inSlope: 0.022843469 + outSlope: 0.022977613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.100168645 + inSlope: 0.20509978 + outSlope: 0.20513295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -0.06912338 + inSlope: 0.1941806 + outSlope: 0.19446033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -0.062506266 + inSlope: -0.061132073 + outSlope: -0.061616287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.079564214 + inSlope: -0.38042656 + outSlope: -0.38266218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.099491954 + inSlope: -0.50917315 + outSlope: -0.51289845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.122393765 + inSlope: -0.53778344 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.8884712 + inSlope: 0 + outSlope: 0.046312813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: 0.9382182 + inSlope: 0.24658443 + outSlope: 0.24656457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: 0.99558437 + inSlope: 0.076691315 + outSlope: 0.0763893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9784604 + inSlope: 0.014305112 + outSlope: 0.013589872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.984117 + inSlope: 0.15163437 + outSlope: 0.15071459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9984792 + inSlope: -0.04138265 + outSlope: -0.04184247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.97175217 + inSlope: -0.07259847 + outSlope: -0.07152554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.966592 + inSlope: -0.09155269 + outSlope: -0.09083757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.95762104 + inSlope: -0.08797654 + outSlope: -0.08627765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.9380149 + inSlope: -0.34823984 + outSlope: -0.34958157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 0.88695836 + inSlope: -0.7456548 + outSlope: -0.74744207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 0.8296754 + inSlope: -0.34451476 + outSlope: -0.3486875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.8269492 + inSlope: 0.18417853 + outSlope: 0.18835086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.8445495 + inSlope: 0.4029278 + 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.2814121 + inSlope: 0 + outSlope: -0.099658966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.16111101 + inSlope: -0.83476305 + outSlope: -0.8352996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -0.06615745 + inSlope: -0.8146764 + outSlope: -0.8141174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -0.17610423 + inSlope: 0.14179944 + outSlope: 0.1427293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.019886285 + inSlope: 0.39163384 + outSlope: 0.39140996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.029368473 + inSlope: -0.06443509 + outSlope: -0.06470831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.0003747149 + inSlope: -0.025400374 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.95958704 + inSlope: 0 + outSlope: 0.029087067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9869363 + inSlope: 0.13637543 + outSlope: 0.13637544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.9978092 + inSlope: -0.054121025 + outSlope: -0.0540018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.98437154 + inSlope: 0.025391575 + outSlope: 0.025463106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.99980223 + inSlope: 0.007724763 + outSlope: 0.007748602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.99956864 + inSlope: 0.0017881389 + outSlope: 0.0019073491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.99999994 + inSlope: 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -89.98021 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -89.98021 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -90.000206 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -90.000206 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 24.031073 + inSlope: 13.929909 + outSlope: 13.929909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 25.638802 + inSlope: 22.62497 + outSlope: 22.62497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: 26.11225 + inSlope: -26.46595 + outSlope: -26.46595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 13.895717 + inSlope: -85.8851 + outSlope: -85.8851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 4.492209 + inSlope: -52.481106 + outSlope: -52.481106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -1.1766647 + inSlope: -58.22783 + outSlope: -58.22783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: -14.494861 + inSlope: -132.52142 + outSlope: -132.52142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -30.961857 + inSlope: -119.98013 + outSlope: -119.98013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -35.912853 + inSlope: -134.13577 + outSlope: -134.13577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -42.129322 + inSlope: -200.37459 + outSlope: -200.37459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -52.69581 + inSlope: -283.83536 + outSlope: -283.83536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -65.29123 + inSlope: -226.32956 + outSlope: -226.32956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -69.681946 + inSlope: 96.478455 + outSlope: 96.478455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -62.610764 + inSlope: 206.18501 + outSlope: 206.18501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -49.952843 + inSlope: 113.56425 + outSlope: 113.56425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -38.512383 + inSlope: 101.48053 + outSlope: 101.48053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -27.550646 + inSlope: 68.842575 + outSlope: 68.842575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -24.299135 + inSlope: 4.3237424 + outSlope: 4.3237424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -24.56399 + inSlope: 6.7964826 + outSlope: 6.7964826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -24.690449 + inSlope: -8.790105 + outSlope: -8.790105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -40.806442 + inSlope: -56.132446 + outSlope: -56.132446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -47.794754 + inSlope: -118.43042 + outSlope: -118.43042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: -79.90556 + inSlope: -114.46802 + outSlope: -114.46802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: -96.25418 + inSlope: -18.97163 + outSlope: -18.97163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -91.655525 + inSlope: 83.14746 + outSlope: 83.14746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -80.44583 + inSlope: 28.352688 + outSlope: 28.352688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: -85.45366 + inSlope: -109.211426 + outSlope: -109.211426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -100.467316 + inSlope: -101.08008 + outSlope: -101.08008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -103.628136 + inSlope: -102.74424 + outSlope: -102.74424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -109.08931 + inSlope: -122.679695 + outSlope: -122.679695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -113.702225 + inSlope: 30.14871 + outSlope: 30.14871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -102.09426 + inSlope: 649.7892 + outSlope: 649.7892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -63.673084 + inSlope: 899.4536 + outSlope: 899.4536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -35.687756 + inSlope: 329.12296 + outSlope: 329.12296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -25.095234 + inSlope: 11.234751 + outSlope: 11.234751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -37.234932 + inSlope: -158.33844 + outSlope: -158.33844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -57.99497 + inSlope: -97.86319 + outSlope: -97.86319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -61.126797 + inSlope: 3.2012818 + outSlope: 3.2012818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -59.95496 + inSlope: 12.873362 + outSlope: 12.873362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -56.485867 + inSlope: 18.799746 + outSlope: 18.799746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 112.67798 + inSlope: -15.800537 + outSlope: -15.800537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 110.73822 + inSlope: -30.789185 + outSlope: -30.789185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: 103.842445 + inSlope: -17.57602 + outSlope: -17.57602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 104.18978 + inSlope: 27.082726 + outSlope: 27.082726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 108.21302 + inSlope: 34.53424 + outSlope: 34.53424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 113.22664 + inSlope: 25.789028 + outSlope: 25.789028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 120.392586 + inSlope: 105.004944 + outSlope: 105.004944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 131.84515 + inSlope: 47.72754 + outSlope: 47.72754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 132.33665 + inSlope: 22.6769 + outSlope: 22.6769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 133.78328 + inSlope: 31.703186 + outSlope: 31.703186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 134.77896 + inSlope: -104.596535 + outSlope: -104.596535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 120.47028 + inSlope: -707.7383 + outSlope: -707.7383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 79.825714 + inSlope: -946.8955 + outSlope: -946.8955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 50.07369 + inSlope: -353.96362 + outSlope: -353.96362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 41.36548 + inSlope: 61.004852 + outSlope: 61.004852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 63.03213 + inSlope: 178.25217 + outSlope: 178.25217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 78.84503 + inSlope: 69.1604 + outSlope: 69.1604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 81.88814 + inSlope: -4.676335 + outSlope: -4.676335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 80.43021 + inSlope: -14.220696 + outSlope: -14.220696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 75.2777 + inSlope: -34.348858 + outSlope: -34.348858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 20.978533 + inSlope: 106.6057 + outSlope: 106.6057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 25.419676 + inSlope: 155.22377 + outSlope: 155.22377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 42.971054 + inSlope: 215.6891 + outSlope: 215.6891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: 80.66569 + inSlope: -92.21237 + outSlope: -92.21237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 64.11919 + inSlope: 19.388199 + outSlope: 19.388199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 67.03667 + inSlope: -20.4772 + outSlope: -20.4772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 61.25258 + inSlope: -19.217281 + outSlope: -19.217281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 60.54203 + inSlope: -41.645363 + outSlope: -41.645363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 56.409523 + inSlope: 114.4129 + outSlope: 114.4129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 64.15049 + inSlope: 216.5945 + outSlope: 216.5945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 74.25491 + inSlope: 191.48969 + outSlope: 191.48969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 78.59877 + inSlope: -20.58435 + outSlope: -20.58435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 76.87374 + inSlope: -207.17194 + outSlope: -207.17194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 67.077415 + inSlope: -250.76044 + outSlope: -250.76044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 50.01506 + inSlope: -121.03302 + outSlope: -121.03302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 46.93305 + inSlope: 27.213621 + outSlope: 27.213621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 51.309895 + inSlope: 24.848522 + outSlope: 24.848522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.18177979 + inSlope: -6.876211 + outSlope: -6.876211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.48923543 + inSlope: -13.532372 + outSlope: -13.532372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -2.9623404 + inSlope: -55.14646 + outSlope: -55.14646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: -94.0117 + inSlope: -557.5525 + outSlope: -557.5525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -153.1406 + inSlope: 20.500645 + outSlope: 20.500645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: -150.09198 + inSlope: -18.648195 + outSlope: -18.648195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -155.44766 + inSlope: -15.010178 + outSlope: -15.010178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -155.92398 + inSlope: -29.821318 + outSlope: -29.821318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -158.65073 + inSlope: 76.28027 + outSlope: 76.28027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -153.04346 + inSlope: 225.40717 + outSlope: 225.40717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -137.44098 + inSlope: 646.9042 + outSlope: 646.9042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -44.704403 + inSlope: 122.287994 + outSlope: 122.287994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -128.36722 + inSlope: -481.5824 + outSlope: -481.5824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -150.15541 + inSlope: -258.3097 + outSlope: -258.3097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -162.0883 + inSlope: -48.591408 + outSlope: -48.591408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -163.23 + inSlope: 10.688327 + outSlope: 10.688327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -161.25374 + inSlope: 13.543939 + outSlope: 13.543939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.63425094 + inSlope: -14.756539 + outSlope: -14.756539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -1.2645668 + inSlope: -22.799213 + outSlope: -22.799213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -4.508853 + inSlope: -60.54281 + outSlope: -60.54281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: -94.45905 + inSlope: -547.1315 + outSlope: -547.1315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -151.57309 + inSlope: 17.376446 + outSlope: 17.376446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: -148.96275 + inSlope: -15.843605 + outSlope: -15.843605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -153.5296 + inSlope: -12.403563 + outSlope: -12.403563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -153.90121 + inSlope: -23.49868 + outSlope: -23.49868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -155.98752 + inSlope: 58.565186 + outSlope: 58.565186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -151.56548 + inSlope: 195.30688 + outSlope: 195.30688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -137.2996 + inSlope: 620.849 + outSlope: 620.849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -46.109978 + inSlope: 120.930725 + outSlope: 120.930725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -128.40164 + inSlope: -456.2732 + outSlope: -456.2732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -148.89514 + inSlope: -224.56845 + outSlope: -224.56845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -158.13887 + inSlope: -26.600634 + outSlope: -26.600634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -158.78796 + inSlope: 4.2489634 + outSlope: 4.2489634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -157.73528 + inSlope: 8.929684 + outSlope: 8.929684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.8015548 + inSlope: -42.604908 + outSlope: -42.604908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: -7.6636057 + inSlope: 0.15579987 + outSlope: 0.15579987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 6.3710313 + inSlope: 27.543423 + outSlope: 27.543423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 7.8649325 + inSlope: 6.019623 + outSlope: 6.019623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 8.3423395 + inSlope: -14.097496 + outSlope: -14.097496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 2.9215658 + inSlope: -61.608665 + outSlope: -61.608665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -6.553091 + inSlope: -96.20787 + outSlope: -96.20787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -10.905007 + inSlope: -115.82395 + outSlope: -115.82395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -16.232655 + inSlope: -171.84645 + outSlope: -171.84645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -25.2985 + inSlope: -246.49113 + outSlope: -246.49113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -36.803665 + inSlope: -231.54477 + outSlope: -231.54477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -44.69842 + inSlope: -122.8942 + outSlope: -122.8942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -45.97531 + inSlope: 48.279465 + outSlope: 48.279465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -39.296204 + inSlope: -12.074341 + outSlope: -12.074341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -45.602913 + inSlope: -130.03275 + outSlope: -130.03275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -51.955055 + inSlope: -155.89615 + outSlope: -155.89615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -58.451664 + inSlope: -134.15352 + outSlope: -134.15352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -63.288612 + inSlope: -90.9537 + outSlope: -90.9537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -67.84306 + inSlope: 2.057373 + outSlope: 2.057373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -65.48434 + inSlope: 14.509098 + outSlope: 14.509098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -64.86005 + inSlope: 14.941378 + outSlope: 14.941378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 8.560867 + inSlope: -5.314526 + outSlope: -5.314526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 4.5265923 + inSlope: -29.215446 + outSlope: -29.215446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.5225762 + inSlope: 32.144955 + outSlope: 32.144955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 4.1645494 + inSlope: -1.1807297 + outSlope: -1.1807297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 3.5318654 + inSlope: 4.288576 + outSlope: 4.288576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 4.443356 + inSlope: -8.3638115 + outSlope: -8.3638115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 2.8314905 + inSlope: 6.3198624 + outSlope: 6.3198624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 3.352128 + inSlope: 29.438925 + outSlope: 29.438925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 5.070417 + inSlope: 52.31477 + outSlope: 52.31477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 7.535007 + inSlope: 47.94524 + outSlope: 47.94524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 9.164952 + inSlope: 23.113815 + outSlope: 23.113815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 9.025561 + inSlope: -8.87055 + outSlope: -8.87055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 6.724477 + inSlope: -42.095978 + outSlope: -42.095978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.08551617 + inSlope: -18.499653 + outSlope: -18.499653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 2.087736 + inSlope: 71.82042 + outSlope: 71.82042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 6.790274 + inSlope: 122.33793 + outSlope: 122.33793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 12.703103 + inSlope: 135.78465 + outSlope: 135.78465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 17.233679 + inSlope: 108.3161 + outSlope: 108.3161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 24.126112 + inSlope: 10.883102 + outSlope: 10.883102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 25.209326 + inSlope: 15.480186 + outSlope: 15.480186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 25.974764 + inSlope: 18.267895 + outSlope: 18.267895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 79.472115 + inSlope: 0.7258667 + outSlope: 0.7258667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 81.60174 + inSlope: 26.18712 + outSlope: 26.18712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 99.55674 + inSlope: 86.18548 + outSlope: 86.18548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 109.48851 + inSlope: 24.764553 + outSlope: 24.764553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 112.052925 + inSlope: 51.52643 + outSlope: 51.52643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 118.34581 + inSlope: -13.796997 + outSlope: -13.796997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 107.717995 + inSlope: -139.25848 + outSlope: -139.25848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 101.461044 + inSlope: -114.36009 + outSlope: -114.36009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 98.19048 + inSlope: -46.823093 + outSlope: -46.823093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 97.5827 + inSlope: -43.918987 + outSlope: -43.918987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 94.61477 + inSlope: -91.43655 + outSlope: -91.43655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 90.381516 + inSlope: -101.85076 + outSlope: -101.85076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 84.320145 + inSlope: 8.644601 + outSlope: 8.644601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 102.781815 + inSlope: 211.94861 + outSlope: 211.94861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 118.74994 + inSlope: 109.60944 + outSlope: 109.60944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 120.556496 + inSlope: -37.701267 + outSlope: -37.701267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 115.36014 + inSlope: -165.75041 + outSlope: -165.75041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 107.651405 + inSlope: -155.51218 + outSlope: -155.51218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 101.07422 + inSlope: -7.901367 + outSlope: -7.901367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 102.07617 + inSlope: 12.027835 + outSlope: 12.027835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 102.51836 + inSlope: 10.75889 + outSlope: 10.75889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 2.231184 + inSlope: 11.837814 + outSlope: 11.837814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 6.1290693 + inSlope: 61.853508 + outSlope: 61.853508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 9.13026 + inSlope: 50.346214 + outSlope: 50.346214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 11.654235 + inSlope: 50.845863 + outSlope: 50.845863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 26.648333 + inSlope: 111.12392 + outSlope: 111.12392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 37.534733 + inSlope: 152.6791 + outSlope: 152.6791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 44.411095 + inSlope: 118.88795 + outSlope: 118.88795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 47.449562 + inSlope: 73.11782 + outSlope: 73.11782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 62.124523 + inSlope: 44.244553 + outSlope: 44.244553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 61.98683 + inSlope: -108.95563 + outSlope: -108.95563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 39.912777 + inSlope: -259.4838 + outSlope: -259.4838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 28.090528 + inSlope: -289.42947 + outSlope: -289.42947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 15.313665 + inSlope: -278.5846 + outSlope: -278.5846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 5.2289853 + inSlope: -180.20209 + outSlope: -180.20209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.045916587 + inSlope: -75.021515 + outSlope: -75.021515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -1.7199129 + inSlope: -24.064877 + outSlope: -24.064877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -5.5972643 + inSlope: -56.149277 + outSlope: -56.149277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -10.046398 + inSlope: -2.8433533 + outSlope: -2.8433533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -12.122564 + inSlope: -29.71133 + outSlope: -29.71133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -16.018377 + inSlope: -6.1252337 + outSlope: -6.1252337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 132.37848 + inSlope: -15.382324 + outSlope: -15.382324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 126.96928 + inSlope: -84.67621 + outSlope: -84.67621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 122.86033 + inSlope: -117.53227 + outSlope: -117.53227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 110.955635 + inSlope: -143.85966 + outSlope: -143.85966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 93.263214 + inSlope: -65.3269 + outSlope: -65.3269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 90.23744 + inSlope: -16.712955 + outSlope: -16.712955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 90.008224 + inSlope: -8.392452 + outSlope: -8.392452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 89.58682 + inSlope: 0.90966755 + outSlope: 0.90966755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 106.8572 + inSlope: 145.62021 + outSlope: 145.62021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 160.05666 + inSlope: 131.63654 + outSlope: 131.63654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 171.37215 + inSlope: 24.92688 + outSlope: 24.92688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 172.05908 + inSlope: -184.31122 + outSlope: -184.31122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 156.97704 + inSlope: -356.9748 + outSlope: -356.9748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 141.15355 + inSlope: -306.32 + outSlope: -306.32 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 131.21165 + inSlope: -204.01521 + outSlope: -204.01521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 120.78345 + inSlope: -53.402317 + outSlope: -53.402317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 120.036606 + inSlope: 15.710991 + outSlope: 15.710991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 124.03636 + inSlope: 38.007202 + outSlope: 38.007202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 124.43421 + inSlope: -18.396198 + outSlope: -18.396198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 121.092445 + inSlope: -12.775888 + outSlope: -12.775888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -70.36433 + inSlope: 3.5456543 + outSlope: 3.5456543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -69.37606 + inSlope: 9.019043 + outSlope: 9.019043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -69.00382 + inSlope: 0.5581054 + outSlope: 0.5581054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -69.99942 + inSlope: -25.805239 + outSlope: -25.805239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: -76.380264 + inSlope: -43.097713 + outSlope: -43.097713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -78.63033 + inSlope: -17.192509 + outSlope: -17.192509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: -79.078156 + inSlope: -13.196771 + outSlope: -13.196771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -79.68769 + inSlope: -6.6555142 + outSlope: -6.6555142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -66.654465 + inSlope: 130.96106 + outSlope: 130.96106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -15.74587 + inSlope: 128.93927 + outSlope: 128.93927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -4.1621594 + inSlope: 34.70628 + outSlope: 34.70628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -2.8335369 + inSlope: -43.88529 + outSlope: -43.88529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -6.2848444 + inSlope: -8.78623 + outSlope: -8.78623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -5.0802164 + inSlope: 72.54176 + outSlope: 72.54176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -1.6928912 + inSlope: 72.48822 + outSlope: 72.48822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -1.3018181 + inSlope: -101.796 + outSlope: -101.796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -18.117376 + inSlope: -249.8557 + outSlope: -249.8557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -45.0357 + inSlope: -134.61191 + outSlope: -134.61191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -52.04856 + inSlope: -10.523532 + outSlope: -10.523532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -50.81231 + inSlope: 19.944466 + outSlope: 19.944466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.8078925 + inSlope: -0.38160753 + outSlope: -0.38160753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.7602013 + inSlope: -0.3814273 + outSlope: -0.3814273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.7443144 + inSlope: 1.061953 + outSlope: 1.061953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.75195605 + inSlope: -2.3143754 + outSlope: -2.3143754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: 0.6348922 + inSlope: -0.17662239 + outSlope: -0.17662239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0.6140936 + inSlope: -0.25533628 + outSlope: -0.25533628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 0.6012784 + inSlope: -0.34758836 + outSlope: -0.34758836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.58537126 + inSlope: -0.38110524 + outSlope: -0.38110524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 0.34313467 + inSlope: -0.4051519 + outSlope: -0.4051519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.32618612 + inSlope: -0.39543524 + outSlope: -0.39543524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 0.30761358 + inSlope: -0.5117023 + outSlope: -0.5117023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 0.28373158 + inSlope: -0.5544067 + outSlope: -0.5544067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.26175946 + inSlope: -0.4951191 + outSlope: -0.4951191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.24202593 + inSlope: -0.43990397 + outSlope: -0.43990397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.22468404 + inSlope: -0.3964899 + outSlope: -0.3964899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.19359042 + inSlope: -0.3582319 + outSlope: -0.3582319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.16450763 + inSlope: -0.34836134 + outSlope: -0.34836134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.13472503 + inSlope: -0.3715244 + outSlope: -0.3715244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.08686693 + inSlope: -0.3826579 + outSlope: -0.3826579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.007873268 + inSlope: -0.3757285 + outSlope: -0.3757285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 83.256325 + inSlope: -0.00018310547 + outSlope: -0.00018310547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 83.25633 + inSlope: 0.00036621094 + outSlope: 0.00036621094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 83.25633 + inSlope: 67.6549 + outSlope: 67.6549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 95.54213 + inSlope: 119.44941 + outSlope: 119.44941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: 100.85668 + inSlope: -11.861389 + outSlope: -11.861389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 91.36291 + inSlope: -162.59528 + outSlope: -162.59528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 83.256325 + inSlope: -97.1526 + outSlope: -97.1526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 83.256325 + inSlope: -0.0005493162 + outSlope: -0.0005493162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 83.25635 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 83.25634 + inSlope: 370.1281 + outSlope: 370.1281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 114.31203 + inSlope: 772.5692 + outSlope: 772.5692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 148.62915 + inSlope: 654.23645 + outSlope: 654.23645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 169.82742 + inSlope: 426.10513 + outSlope: 426.10513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -175.61731 + inSlope: 262.40137 + outSlope: 262.40137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -168.23232 + inSlope: 115.36095 + outSlope: 115.36095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -166.8298 + inSlope: -61.645355 + outSlope: -61.645355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -178.37064 + inSlope: -182.89177 + outSlope: -182.89177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 166.9697 + inSlope: -103.99104 + outSlope: -103.99104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 168.85316 + inSlope: 58.775024 + outSlope: 58.775024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -179.75215 + inSlope: 44.757633 + outSlope: 44.757633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 179.99706 + inSlope: 0.00036621094 + outSlope: 0.00036621094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 179.99706 + inSlope: 0.00036621094 + outSlope: 0.00036621094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 179.99706 + inSlope: -0.051635735 + outSlope: -0.051635735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -179.99376 + inSlope: -0.09722901 + outSlope: -0.09722901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.38333333 + value: 179.999 + inSlope: 0.038085938 + outSlope: 0.038085938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -179.99948 + inSlope: -0.046875 + outSlope: -0.046875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 179.99706 + inSlope: -0.025268544 + outSlope: -0.025268544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 179.99706 + inSlope: 0.0010986323 + outSlope: 0.0010986323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 179.99753 + inSlope: 0.002783203 + outSlope: 0.002783203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 179.99765 + inSlope: 0.16040054 + outSlope: 0.16040054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -179.99223 + inSlope: 0.17797817 + outSlope: 0.17797817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -179.98492 + inSlope: 0.015380874 + outSlope: 0.015380874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -179.98386 + inSlope: -0.04504399 + outSlope: -0.04504399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -179.98494 + inSlope: -0.06262195 + outSlope: -0.06262195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -179.9865 + inSlope: -0.05163579 + outSlope: -0.05163579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -179.98918 + inSlope: -0.02856444 + outSlope: -0.02856444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -179.9915 + inSlope: -0.015380874 + outSlope: -0.015380874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -179.9941 + inSlope: -0.013183587 + outSlope: -0.013183587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -179.99713 + inSlope: -0.028198242 + outSlope: -0.028198242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -179.99992 + inSlope: -0.022851558 + outSlope: -0.022851558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -65.93207 + inSlope: -25.059814 + outSlope: -25.059814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -73.85941 + inSlope: -118.18286 + outSlope: -118.18286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -79.40786 + inSlope: -144.15709 + outSlope: -144.15709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -84.3938 + inSlope: 171.01485 + outSlope: 171.01485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: -56.755543 + inSlope: 132.27599 + outSlope: 132.27599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -47.45706 + inSlope: 91.855064 + outSlope: 91.855064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: -43.98743 + inSlope: 74.61498 + outSlope: 74.61498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -41.222645 + inSlope: 60.6239 + outSlope: 60.6239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -33.371597 + inSlope: 10.029968 + outSlope: 10.029968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -40.95056 + inSlope: -103.86824 + outSlope: -103.86824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -62.966396 + inSlope: -263.58847 + outSlope: -263.58847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -75.346596 + inSlope: -313.68195 + outSlope: -313.68195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -87.17922 + inSlope: 188.33441 + outSlope: 188.33441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -75.428 + inSlope: 299.64273 + outSlope: 299.64273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -64.26507 + inSlope: 218.62375 + outSlope: 218.62375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -57.07997 + inSlope: 121.44738 + outSlope: 121.44738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -54.09507 + inSlope: 17.434172 + outSlope: 17.434172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -60.012886 + inSlope: -105.6699 + outSlope: -105.6699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -66.017815 + inSlope: 49.339027 + outSlope: 49.339027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -59.929222 + inSlope: 77.036095 + outSlope: 77.036095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -56.050926 + inSlope: 20.018208 + outSlope: 20.018208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -55.218864 + inSlope: 8.071651 + outSlope: 8.071651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -55.70397 + inSlope: -11.909616 + outSlope: -11.909616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -102.13508 + inSlope: 8.808105 + outSlope: 8.808105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -97.6213 + inSlope: 134.84949 + outSlope: 134.84949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -90.92741 + inSlope: 343.28757 + outSlope: 343.28757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 44.184227 + inSlope: 639.27936 + outSlope: 639.27936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 75.91641 + inSlope: -3.5689082 + outSlope: -3.5689082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 73.28203 + inSlope: -64.711685 + outSlope: -64.711685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: 69.834724 + inSlope: -29.920702 + outSlope: -29.920702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 70.662994 + inSlope: 18.08898 + outSlope: 18.08898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 74.461945 + inSlope: 26.914307 + outSlope: 26.914307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 84.00823 + inSlope: 51.91885 + outSlope: 51.91885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 89.41353 + inSlope: 95.17786 + outSlope: 95.17786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 94.423965 + inSlope: 335.64032 + outSlope: 335.64032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 173.47847 + inSlope: 4582.4097 + outSlope: 4582.4097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -92.5832 + inSlope: 534.642 + outSlope: 534.642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -69.85476 + inSlope: 352.67685 + outSlope: 352.67685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -57.566376 + inSlope: 219.03024 + outSlope: 219.03024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -50.204685 + inSlope: 153.19005 + outSlope: 153.19005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -34.731655 + inSlope: 326.727 + outSlope: 326.727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 1.4176753 + inSlope: 386.58795 + outSlope: 386.58795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 17.5986 + inSlope: 22.253963 + outSlope: 22.253963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 17.021769 + inSlope: 12.415867 + outSlope: 12.415867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 19.646545 + inSlope: 38.285686 + outSlope: 38.285686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 25.752531 + inSlope: 14.599976 + outSlope: 14.599976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 158.12456 + inSlope: -6.072876 + outSlope: -6.072876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 154.20927 + inSlope: -128.38586 + outSlope: -128.38586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 147.78139 + inSlope: -301.21103 + outSlope: -301.21103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 19.649214 + inSlope: -571.21594 + outSlope: -571.21594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: -9.7961235 + inSlope: -21.96778 + outSlope: -21.96778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -11.149904 + inSlope: -12.502376 + outSlope: -12.502376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.55 + value: -11.571657 + inSlope: -11.379496 + outSlope: -11.379496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -11.907405 + inSlope: -8.13242 + outSlope: -8.13242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -15.987457 + inSlope: -23.058105 + outSlope: -23.058105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -19.165886 + inSlope: -6.171788 + outSlope: -6.171788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -19.45043 + inSlope: -65.34947 + outSlope: -65.34947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -23.306976 + inSlope: -311.35614 + outSlope: -311.35614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -101.46671 + inSlope: -4366.849 + outSlope: -4366.849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -178.15988 + inSlope: -101.72442 + outSlope: -101.72442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 178.15631 + inSlope: 21.208029 + outSlope: 21.208029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 177.84384 + inSlope: 23.238304 + outSlope: 23.238304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 178.52402 + inSlope: -13.27805 + outSlope: -13.27805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 166.33115 + inSlope: -371.67004 + outSlope: -371.67004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 119.935875 + inSlope: -571.8686 + outSlope: -571.8686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 86.38164 + inSlope: -205.47006 + outSlope: -205.47006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 78.01285 + inSlope: -34.769566 + outSlope: -34.769566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 76.68082 + inSlope: -17.679192 + outSlope: -17.679192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 76.98782 + inSlope: 22.444185 + outSlope: 22.444185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 2.5092328 + inSlope: -4.783459 + outSlope: -4.783459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: -4.1017604 + inSlope: -44.276474 + outSlope: -44.276474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -24.86697 + inSlope: -54.696075 + outSlope: -54.696075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -34.755226 + inSlope: -12.10025 + outSlope: -12.10025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -26.970213 + inSlope: 94.85638 + outSlope: 94.85638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -3.6432595 + inSlope: 53.977417 + outSlope: 53.977417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -2.9712043 + inSlope: -44.24786 + outSlope: -44.24786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -7.458497 + inSlope: -35.458874 + outSlope: -35.458874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -9.364159 + inSlope: 2.594834 + outSlope: 2.594834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -9.433008 + inSlope: -1.289218 + outSlope: -1.289218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -9.486098 + inSlope: -0.3532446 + outSlope: -0.3532446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.43523154 + inSlope: -9.142874 + outSlope: -9.142874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: -7.5186677 + inSlope: -43.33001 + outSlope: -43.33001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -21.276726 + inSlope: -17.65509 + outSlope: -17.65509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -20.325335 + inSlope: 38.59243 + outSlope: 38.59243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -2.0449595 + inSlope: 93.098915 + outSlope: 93.098915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 15.624037 + inSlope: 35.307335 + outSlope: 35.307335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 15.557768 + inSlope: -63.746292 + outSlope: -63.746292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 7.5487313 + inSlope: -93.82081 + outSlope: -93.82081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.99349236 + inSlope: -29.668444 + outSlope: -29.668444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -2.876649 + inSlope: 3.0812387 + outSlope: 3.0812387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -2.602613 + inSlope: 2.6426742 + outSlope: 2.6426742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 22.268675 + inSlope: -6.549401 + outSlope: -6.549401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: 17.76503 + inSlope: -21.07366 + outSlope: -21.07366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 10.086079 + inSlope: -18.809723 + outSlope: -18.809723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 1.5756387 + inSlope: -64.258865 + outSlope: -64.258865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -22.48699 + inSlope: -112.53772 + outSlope: -112.53772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -33.422123 + inSlope: 53.603622 + outSlope: 53.603622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -21.232725 + inSlope: 142.66072 + outSlope: 142.66072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -8.08376 + inSlope: 153.42416 + outSlope: 153.42416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 6.254606 + inSlope: 9.991012 + outSlope: 9.991012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -3.1167514 + inSlope: -30.870825 + outSlope: -30.870825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -4.79486 + inSlope: -16.19662 + outSlope: -16.19662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 17.231918 + inSlope: -0.38983154 + outSlope: -0.38983154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 7.953503 + inSlope: -41.916943 + outSlope: -41.916943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: -13.349387 + inSlope: -62.455273 + outSlope: -62.455273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -25.308487 + inSlope: -73.97393 + outSlope: -73.97393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -29.723007 + inSlope: 25.996216 + outSlope: 25.996216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -17.542479 + inSlope: 90.41417 + outSlope: 90.41417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -10.744041 + inSlope: 64.24664 + outSlope: 64.24664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -6.8334975 + inSlope: 32.055443 + outSlope: 32.055443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -5.5597463 + inSlope: -15.924488 + outSlope: -15.924488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -8.922251 + inSlope: -31.765274 + outSlope: -31.765274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -14.488568 + inSlope: -12.9249115 + outSlope: -12.9249115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -13.6738405 + inSlope: 9.662773 + outSlope: 9.662773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 51.47937 + inSlope: -1.3525085 + outSlope: -1.3525085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 47.097584 + inSlope: -13.455162 + outSlope: -13.455162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 41.131348 + inSlope: -22.6521 + outSlope: -22.6521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 32.61619 + inSlope: -92.87748 + outSlope: -92.87748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 25.87723 + inSlope: 27.50203 + outSlope: 27.50203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 37.73757 + inSlope: 57.021393 + outSlope: 57.021393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 39.776306 + inSlope: -19.85668 + outSlope: -19.85668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 36.693413 + inSlope: -24.356438 + outSlope: -24.356438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 33.874077 + inSlope: -43.05963 + outSlope: -43.05963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 33.053535 + inSlope: 56.40143 + outSlope: 56.40143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 50.756016 + inSlope: 123.730644 + outSlope: 123.730644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 63.058453 + inSlope: 70.9205 + outSlope: 70.9205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -6.9952335 + inSlope: -1.0649757 + outSlope: -1.0649757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -7.90223 + inSlope: 6.22124 + outSlope: 6.22124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: -2.024086 + inSlope: 20.850159 + outSlope: 20.850159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 1.3846936 + inSlope: 26.356386 + outSlope: 26.356386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.13431598 + inSlope: -64.45918 + outSlope: -64.45918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -12.574704 + inSlope: -61.3859 + outSlope: -61.3859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -17.816471 + inSlope: -58.410847 + outSlope: -58.410847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -22.03742 + inSlope: -40.166946 + outSlope: -40.166946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -24.632936 + inSlope: 6.5812225 + outSlope: 6.5812225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -19.771425 + inSlope: 52.53264 + outSlope: 52.53264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -14.670988 + inSlope: -9.892669 + outSlope: -9.892669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -17.13933 + inSlope: -14.670731 + outSlope: -14.670731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 18.471048 + inSlope: -9.016342 + outSlope: -9.016342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 15.494973 + inSlope: -64.71371 + outSlope: -64.71371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 8.768288 + inSlope: -38.08218 + outSlope: -38.08218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: 8.744777 + inSlope: 4.793506 + outSlope: 4.793506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: 20.244616 + inSlope: 64.97986 + outSlope: 64.97986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 36.76195 + inSlope: 48.11879 + outSlope: 48.11879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 37.989933 + inSlope: -41.044697 + outSlope: -41.044697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 32.07711 + inSlope: -115.341995 + outSlope: -115.341995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 20.404606 + inSlope: -139.25014 + outSlope: -139.25014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 6.573842 + inSlope: -65.36364 + outSlope: -65.36364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 4.639087 + inSlope: -21.267595 + outSlope: -21.267595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 4.8476872 + inSlope: 274.40164 + outSlope: 274.40164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 27.672577 + inSlope: 434.73383 + outSlope: 434.73383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 41.423485 + inSlope: 300.3868 + outSlope: 300.3868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 51.421593 + inSlope: 121.18831 + outSlope: 121.18831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 51.86087 + inSlope: -130.90881 + outSlope: -130.90881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 37.843643 + inSlope: -148.98607 + outSlope: -148.98607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 31.402197 + inSlope: 0.43485302 + outSlope: 0.43485302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 44.85396 + inSlope: 76.027275 + outSlope: 76.027275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 50.425938 + inSlope: 24.06324 + outSlope: 24.06324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 50.97242 + inSlope: 5.132253 + outSlope: 5.132253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -40.35578 + inSlope: 9.110779 + outSlope: 9.110779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -36.798836 + inSlope: 62.35785 + outSlope: 62.35785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: -30.070593 + inSlope: 73.200455 + outSlope: 73.200455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: -24.503105 + inSlope: 74.91549 + outSlope: 74.91549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: 5.1204596 + inSlope: 88.54247 + outSlope: 88.54247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 22.978931 + inSlope: 44.272293 + outSlope: 44.272293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 16.206379 + inSlope: -127.54716 + outSlope: -127.54716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 1.4950083 + inSlope: -227.0101 + outSlope: -227.0101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -21.11968 + inSlope: -276.13278 + outSlope: -276.13278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: -51.14099 + inSlope: -165.12708 + outSlope: -165.12708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -56.767036 + inSlope: -100.4448 + outSlope: -100.4448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -59.530636 + inSlope: -198.52065 + outSlope: -198.52065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -73.7755 + inSlope: -192.34222 + outSlope: -192.34222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -73.22956 + inSlope: 187.63788 + outSlope: 187.63788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -57.27372 + inSlope: 577.1838 + outSlope: 577.1838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -30.361322 + inSlope: 536.68115 + outSlope: 536.68115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -6.267902 + inSlope: 43.082985 + outSlope: 43.082985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -10.355526 + inSlope: -74.27877 + outSlope: -74.27877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -32.19523 + inSlope: -227.42664 + outSlope: -227.42664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -50.592426 + inSlope: -201.03558 + outSlope: -201.03558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -57.631683 + inSlope: -170.9832 + outSlope: -170.9832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 66.74153 + inSlope: -1.078125 + outSlope: -1.078125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 66.84216 + inSlope: 3.2735596 + outSlope: 3.2735596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 66.99317 + inSlope: -8.794829 + outSlope: -8.794829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: 65.98549 + inSlope: -13.94055 + outSlope: -13.94055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: 61.128407 + inSlope: 2.7339137 + outSlope: 2.7339137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8833333 + value: 63.805214 + inSlope: 19.020538 + outSlope: 19.020538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 60.701965 + inSlope: -51.053444 + outSlope: -51.053444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 55.695324 + inSlope: -42.107204 + outSlope: -42.107204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 53.95542 + inSlope: 8.066982 + outSlope: 8.066982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.35 + value: 53.286427 + inSlope: -7.0540466 + outSlope: -7.0540466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 52.739517 + inSlope: 11.932262 + outSlope: 11.932262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 54.158348 + inSlope: 51.497765 + outSlope: 51.497765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 54.759956 + inSlope: 52.195545 + outSlope: 52.195545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 63.155354 + inSlope: 357.41608 + outSlope: 357.41608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 85.890625 + inSlope: 727.544 + outSlope: 727.544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 118.86124 + inSlope: 661.2875 + outSlope: 661.2875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 150.72142 + inSlope: 123.14075 + outSlope: 123.14075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 151.77097 + inSlope: -49.162766 + outSlope: -49.162766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 129.85004 + inSlope: -213.95314 + outSlope: -213.95314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 113.1663 + inSlope: -182.29329 + outSlope: -182.29329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 106.8161 + inSlope: -154.48506 + outSlope: -154.48506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.26069844 + inSlope: 0.44609356 + outSlope: 0.44609356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.113264754 + inSlope: 1.8592232 + outSlope: 1.8592232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -0.026934622 + inSlope: 1.2207867 + outSlope: 1.2207867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.0002166182 + inSlope: 0.15688883 + outSlope: 0.15688883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00017330637 + inSlope: -0.0051000677 + outSlope: -0.0051000677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.000035774952 + inSlope: 0.000014019664 + outSlope: 0.000014019664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.000035709458 + inSlope: -12.3350525 + outSlope: -12.3350525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -1.5487149 + inSlope: -36.365246 + outSlope: -36.365246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -2.7561052 + inSlope: -15.869646 + outSlope: -15.869646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -3.0889087 + inSlope: -2.237121 + outSlope: -2.237121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -3.0834024 + inSlope: 1.8400573 + outSlope: 1.8400573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -2.486204 + inSlope: 13.474098 + outSlope: 13.474098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -1.8961991 + inSlope: 13.130108 + outSlope: 13.130108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -1.458103 + inSlope: 7.587423 + outSlope: 7.587423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -1.274102 + inSlope: 3.1723478 + outSlope: 3.1723478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -1.1700287 + inSlope: -0.04321289 + outSlope: -0.04321289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -1.0895027 + inSlope: 1.7602472 + outSlope: 1.7602472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 22.19989 + inSlope: -15.070679 + outSlope: -15.070679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 15.673666 + inSlope: -150.4623 + outSlope: -150.4623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 7.035261 + inSlope: -190.99496 + outSlope: -190.99496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: -0.26056585 + inSlope: -87.45836 + outSlope: -87.45836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.26056582 + inSlope: 0.0004849435 + outSlope: 0.0004849435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.26056495 + inSlope: 0.0013177395 + outSlope: 0.0013177395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.26045504 + inSlope: 687.40247 + outSlope: 687.40247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 58.459415 + inSlope: 976.8588 + outSlope: 976.8588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 85.69035 + inSlope: 509.9254 + outSlope: 509.9254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 101.42302 + inSlope: 224.8161 + outSlope: 224.8161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 104.50271 + inSlope: -60.187008 + outSlope: -60.187008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 81.66457 + inSlope: -363.29654 + outSlope: -363.29654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 65.96525 + inSlope: -302.54672 + outSlope: -302.54672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 56.350163 + inSlope: -146.36577 + outSlope: -146.36577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 53.746956 + inSlope: -41.733135 + outSlope: -41.733135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 51.73336 + inSlope: -22.42804 + outSlope: -22.42804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 47.228474 + inSlope: -50.17978 + outSlope: -50.17978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0.6387967 + inSlope: -0.63507557 + outSlope: -0.63507557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.40365767 + inSlope: -3.8415928 + outSlope: -3.8415928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.21825433 + inSlope: -4.3467574 + outSlope: -4.3467574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.047596123 + inSlope: -3.0940347 + outSlope: -3.0940347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.038151316 + inSlope: -1.314751 + outSlope: -1.314751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.008115045 + inSlope: 0.00003367414 + outSlope: 0.00003367414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.008111665 + inSlope: 18.52248 + outSlope: 18.52248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.950361 + inSlope: -8.592261 + outSlope: -8.592261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.20761818 + inSlope: -22.334639 + outSlope: -22.334639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.6237986 + inSlope: -12.55486 + outSlope: -12.55486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.7971415 + inSlope: 3.6952164 + outSlope: 3.6952164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.3641489 + inSlope: 13.067756 + outSlope: 13.067756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 0.8454056 + inSlope: 6.20014 + outSlope: 6.20014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.97039366 + inSlope: 0.5342451 + outSlope: 0.5342451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.9341554 + inSlope: -0.8688066 + outSlope: -0.8688066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.92278457 + inSlope: 0.7845669 + outSlope: 0.7845669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 1.0077223 + inSlope: 0.14205837 + outSlope: 0.14205837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.00016632648 + inSlope: 0.45368063 + outSlope: 0.45368063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.08294869 + inSlope: 2.335075 + outSlope: 2.335075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9977541 + inSlope: 7.6155 + outSlope: 7.6155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: 1.7075789 + inSlope: -0.7259525 + outSlope: -0.7259525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: 1.0963682 + inSlope: -2.3198435 + outSlope: -2.3198435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -0.0020203018 + inSlope: -1.1969721 + outSlope: -1.1969721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -0.468277 + inSlope: -1.6016375 + outSlope: -1.6016375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.64294964 + inSlope: 0.121343136 + outSlope: 0.121343136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.33639258 + inSlope: 3.9736905 + outSlope: 3.9736905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.050213672 + inSlope: 3.0425541 + outSlope: 3.0425541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.00022518226 + inSlope: 1.4802744 + outSlope: 1.4802744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.2221736 + inSlope: 4.5305586 + outSlope: 4.5305586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9724732 + inSlope: 1.0373831 + outSlope: 1.0373831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: 0.6862709 + inSlope: -0.57973737 + outSlope: -0.57973737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: 0.96905714 + inSlope: 1.6195043 + outSlope: 1.6195043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: 0.55094945 + inSlope: -3.8083518 + outSlope: -3.8083518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: -0.950258 + inSlope: 0.5047043 + outSlope: 0.5047043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.6998376 + inSlope: 3.8142915 + outSlope: 3.8142915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.21605055 + inSlope: 2.0899982 + outSlope: 2.0899982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.07155876 + inSlope: 1.8554113 + outSlope: 1.8554113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.00035762409 + inSlope: -29.197575 + outSlope: -29.197575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -4.4732924 + inSlope: -98.653 + outSlope: -98.653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -29.714228 + inSlope: -168.53752 + outSlope: -168.53752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: -52.205536 + inSlope: -11.610131 + outSlope: -11.610131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: -38.803673 + inSlope: 72.961235 + outSlope: 72.961235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1833333 + value: -5.192337 + inSlope: 94.626205 + outSlope: 94.626205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7166667 + value: 29.66796 + inSlope: 10.107983 + outSlope: 10.107983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 25.365946 + inSlope: -96.983505 + outSlope: -96.983505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 9.370169 + inSlope: -124.7162 + outSlope: -124.7162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 1.2847732 + inSlope: -78.41702 + outSlope: -78.41702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -42.618855 + inSlope: -13.9486265 + outSlope: -13.9486265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: -54.694904 + inSlope: -82.67074 + outSlope: -82.67074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: -60.27234 + inSlope: 71.67737 + outSlope: 71.67737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -43.350952 + inSlope: 98.42213 + outSlope: 98.42213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: -19.258001 + inSlope: 81.422554 + outSlope: 81.422554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.8444114 + inSlope: 47.297657 + outSlope: 47.297657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 0.074064024 + inSlope: -53.20401 + outSlope: -53.20401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -8.96401 + inSlope: -140.16824 + outSlope: -140.16824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -22.094616 + inSlope: -148.47424 + outSlope: -148.47424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -28.49248 + inSlope: 36.691143 + outSlope: 36.691143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -25.122728 + inSlope: 23.64267 + outSlope: 23.64267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -26.835594 + inSlope: 11.6911125 + outSlope: 11.6911125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -24.320208 + inSlope: 139.29813 + outSlope: 139.29813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -1.2563056 + inSlope: 372.4832 + outSlope: 372.4832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 15.912167 + inSlope: 241.9557 + outSlope: 241.9557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 19.654089 + inSlope: 71.57318 + outSlope: 71.57318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 25.226637 + inSlope: 54.186447 + outSlope: 54.186447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 27.9782 + inSlope: 75.65041 + outSlope: 75.65041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 31.547806 + inSlope: -41.822792 + outSlope: -41.822792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 23.807875 + inSlope: -141.94954 + outSlope: -141.94954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 20.369967 + inSlope: -72.69894 + outSlope: -72.69894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 17.916733 + inSlope: -55.293144 + outSlope: -55.293144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 15.845326 + inSlope: -50.026493 + outSlope: -50.026493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 16.239912 + inSlope: -5.1033416 + outSlope: -5.1033416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 7.898479 + inSlope: -188.14607 + outSlope: -188.14607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: -28.427893 + inSlope: -292.1223 + outSlope: -292.1223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -46.661358 + inSlope: 42.622494 + outSlope: 42.622494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: -22.164038 + inSlope: 71.02714 + outSlope: 71.02714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -11.595387 + inSlope: -5.964236 + outSlope: -5.964236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -14.582597 + inSlope: -97.74817 + outSlope: -97.74817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: -27.879488 + inSlope: -182.04385 + outSlope: -182.04385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: -39.019672 + inSlope: -10.358317 + outSlope: -10.358317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -29.344797 + inSlope: 155.7207 + outSlope: 155.7207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -23.51664 + inSlope: 115.70394 + outSlope: 115.70394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -19.17826 + inSlope: 90.96084 + outSlope: 90.96084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -16.177364 + inSlope: 46.963028 + outSlope: 46.963028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -17.662716 + inSlope: -122.8492 + outSlope: -122.8492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -25.032154 + inSlope: -134.59335 + outSlope: -134.59335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -27.291983 + inSlope: -63.86519 + outSlope: -63.86519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -37.542885 + inSlope: -94.70929 + outSlope: -94.70929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -41.458473 + inSlope: -85.27322 + outSlope: -85.27322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -44.57584 + inSlope: 75.751076 + outSlope: 75.751076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -36.20714 + inSlope: 117.192314 + outSlope: 117.192314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -33.629486 + inSlope: 41.85795 + outSlope: 41.85795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -32.416058 + inSlope: 15.88707 + outSlope: 15.88707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -32.118877 + inSlope: 3.5933464 + outSlope: 3.5933464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 45.6652 + inSlope: 12.682507 + outSlope: 12.682507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 60.081203 + inSlope: 238.6332 + outSlope: 238.6332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: 104.17932 + inSlope: 367.32056 + outSlope: 367.32056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 137.41814 + inSlope: 54.49741 + outSlope: 54.49741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.81666666 + value: 133.38197 + inSlope: -36.535973 + outSlope: -36.535973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 120.083244 + inSlope: -63.091812 + outSlope: -63.091812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 114.87242 + inSlope: -46.581528 + outSlope: -46.581528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2166667 + value: 112.93838 + inSlope: -10.496058 + outSlope: -10.496058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3166667 + value: 108.83445 + inSlope: -125.43552 + outSlope: -125.43552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 91.46198 + inSlope: -212.598 + outSlope: -212.598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 83.83347 + inSlope: -150.14162 + outSlope: -150.14162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 78.472206 + inSlope: -123.8012 + outSlope: -123.8012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 73.72595 + inSlope: -109.82933 + outSlope: -109.82933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 64.33328 + inSlope: -143.3056 + outSlope: -143.3056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 57.31336 + inSlope: -177.63838 + outSlope: -177.63838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 51.165035 + inSlope: -131.96835 + outSlope: -131.96835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 42.39852 + inSlope: -3.8911743 + outSlope: -3.8911743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 43.213528 + inSlope: 44.605907 + outSlope: 44.605907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 46.210453 + inSlope: 172.07436 + outSlope: 172.07436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 56.66015 + inSlope: 219.66737 + outSlope: 219.66737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 65.6519 + inSlope: 204.17451 + outSlope: 204.17451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 73.88151 + inSlope: 167.12363 + outSlope: 167.12363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 79.68041 + inSlope: 137.90508 + outSlope: 137.90508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0000034150944 + inSlope: 0.000007451115 + outSlope: 0.000007451115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.0000023722193 + inSlope: 0.000005175751 + outSlope: 0.000005175751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.0000023406164 + inSlope: 0.00016852406 + outSlope: 0.00016852406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.0000019753932 + inSlope: 0.00014222844 + outSlope: 0.00014222844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -0.0000016797244 + inSlope: 0.00012094027 + outSlope: 0.00012094027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.0000015678559 + inSlope: 0.0001128854 + outSlope: 0.0001128854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.000001691304 + inSlope: 0.000121774 + outSlope: 0.000121774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.0000021826056 + inSlope: 0.00015714776 + outSlope: 0.00015714776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.0000021510034 + inSlope: 0.00015487196 + outSlope: 0.00015487196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.0000020245946 + inSlope: 0.00003644271 + outSlope: 0.00003644271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -0.0000019929923 + inSlope: 0.00014349559 + outSlope: 0.00014349559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.0000012093323 + inSlope: 0.000087071756 + outSlope: 0.000087071756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -0.00000089132834 + inSlope: 0.0000641757 + outSlope: 0.0000641757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.0000007255419 + inSlope: 0.000052239066 + outSlope: 0.000052239066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.0000006187207 + inSlope: 0.000044547807 + outSlope: 0.000044547807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0000012806604 + inSlope: 0.000002794168 + outSlope: 0.000002794168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: -0.00000045199786 + inSlope: -0.00043180856 + outSlope: -0.00043180856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.000036540023 + inSlope: -231.04051 + outSlope: -231.04051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -19.304129 + inSlope: -419.47668 + outSlope: -419.47668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: -35.15514 + inSlope: -240.76424 + outSlope: -240.76424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -39.454586 + inSlope: 79.663635 + outSlope: 79.663635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -28.50495 + inSlope: 471.28796 + outSlope: 471.28796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.0000014941039 + inSlope: 336.6281 + outSlope: 336.6281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -0.0000015118909 + inSlope: 0.00010885594 + outSlope: 0.00010885594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: -0.0000015830387 + inSlope: 0.000028494704 + outSlope: 0.000028494704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -0.0000016008257 + inSlope: -411.00104 + outSlope: -411.00104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -34.54164 + inSlope: -588.89465 + outSlope: -588.89465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -50.020668 + inSlope: -279.42435 + outSlope: -279.42435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -57.915268 + inSlope: -143.99574 + outSlope: -143.99574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -62.032135 + inSlope: -98.75701 + outSlope: -98.75701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 3.8166654e-14 + inSlope: -8.32727e-14 + outSlope: -8.32727e-14 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3833333 + value: 0.000000951525 + inSlope: -0.0000020760547 + outSlope: -0.0000020760547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.0000009803591 + inSlope: -0.000070585724 + outSlope: -0.000070585724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.00000095245343 + inSlope: -0.000068576715 + outSlope: -0.000068576715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5166667 + value: 0.00000084868697 + inSlope: -0.00006110552 + outSlope: -0.00006110552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.00000082375414 + inSlope: -0.000059310183 + outSlope: -0.000059310183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0000009628708 + inSlope: -0.000069326765 + outSlope: -0.000069326765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.0000011245295 + inSlope: -0.0000809662 + outSlope: -0.0000809662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 0.0000011533638 + inSlope: -0.00008304203 + outSlope: -0.00008304203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.85 + value: 0.0000012687 + inSlope: -0.000022836604 + outSlope: -0.000022836604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 0.000001297534 + inSlope: -0.00009342253 + outSlope: -0.00009342253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.0000010925485 + inSlope: -0.00007866334 + outSlope: -0.00007866334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 0.0000008707327 + inSlope: -0.000062692816 + outSlope: -0.000062692816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.0000007351624 + inSlope: -0.000052931748 + outSlope: -0.000052931748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.00000066260264 + inSlope: -0.0000477073 + outSlope: -0.0000477073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.0000012133594 + inSlope: -0.0039991997 + outSlope: -0.0039991997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.0010465884 + inSlope: -0.008207073 + outSlope: -0.008207073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: 0.0006880741 + inSlope: 0.04282096 + outSlope: 0.04282096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: 0.008584494 + inSlope: 0.01878844 + outSlope: 0.01878844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0017318366 + inSlope: -0.20929037 + outSlope: -0.20929037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: -0.02365214 + inSlope: -0.2861573 + outSlope: -0.2861573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: -0.04635147 + inSlope: -0.2122065 + outSlope: -0.2122065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -0.059901863 + inSlope: -0.093532875 + outSlope: -0.093532875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: -0.06915375 + inSlope: -0.22885984 + outSlope: -0.22885984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.4373265 + inSlope: -2.1022139 + outSlope: -2.1022139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: -0.84807146 + inSlope: -1.3130393 + outSlope: -1.3130393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -0.90833515 + inSlope: 0.81234366 + outSlope: 0.81234366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -0.7993403 + inSlope: 0.059207052 + outSlope: 0.059207052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -0.850827 + inSlope: -0.15168571 + outSlope: -0.15168571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -0.88359356 + inSlope: -0.78596956 + outSlope: -0.78596956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -0.9242731 + inSlope: -1.0402273 + outSlope: -1.0402273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -0.00000062879076 + inSlope: 0.007705521 + outSlope: 0.007705521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.002808297 + inSlope: 0.04539384 + outSlope: 0.04539384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: 0.014335564 + inSlope: 0.08143737 + outSlope: 0.08143737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: 0.029304078 + inSlope: 0.10231786 + outSlope: 0.10231786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.043465953 + inSlope: 0.07302804 + outSlope: 0.07302804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 0.045891862 + inSlope: -0.06842786 + outSlope: -0.06842786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: 0.036127094 + inSlope: -0.17392749 + outSlope: -0.17392749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0.023771789 + inSlope: -0.08948797 + outSlope: -0.08948797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 0.017137744 + inSlope: -0.30986542 + outSlope: -0.30986542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.14272863 + inSlope: 0.20118532 + outSlope: 0.20118532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 0.011799756 + inSlope: 1.6902883 + outSlope: 1.6902883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: 0.36614028 + inSlope: 1.7585355 + outSlope: 1.7585355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: 0.4707633 + inSlope: -0.7929223 + outSlope: -0.7929223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: 0.19951224 + inSlope: -2.2632694 + outSlope: -2.2632694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 0.15094352 + inSlope: 0.6991517 + outSlope: 0.6991517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.19390567 + inSlope: 0.96481556 + outSlope: 0.96481556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 17.91856 + inSlope: -24.886871 + outSlope: -24.886871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 9.782111 + inSlope: -113.95512 + outSlope: -113.95512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.31666666 + value: -13.228937 + inSlope: -133.00003 + outSlope: -133.00003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.48333332 + value: -26.61744 + inSlope: 17.103655 + outSlope: 17.103655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -7.8189006 + inSlope: 261.3092 + outSlope: 261.3092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.68333334 + value: 17.318901 + inSlope: 312.90414 + outSlope: 312.90414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: 42.3092 + inSlope: 260.74533 + outSlope: 260.74533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 58.836517 + inSlope: 107.72639 + outSlope: 107.72639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.98333335 + value: 59.5428 + inSlope: -40.14148 + outSlope: -40.14148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 35.327564 + inSlope: -104.81402 + outSlope: -104.81402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4833333 + value: 14.2753315 + inSlope: -112.34708 + outSlope: -112.34708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.65 + value: -8.029487 + inSlope: -127.82365 + outSlope: -127.82365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -20.681961 + inSlope: 14.35061 + outSlope: 14.35061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333333 + value: -5.3163304 + inSlope: 193.88525 + outSlope: 193.88525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 10.785066 + inSlope: 158.74707 + outSlope: 158.74707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 16.392157 + inSlope: 134.45111 + outSlope: 134.45111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -49.878593 + inSlope: 9.778038 + outSlope: 9.778038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: -36.61079 + inSlope: 78.13239 + outSlope: 78.13239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: -7.055802 + inSlope: 111.142876 + outSlope: 111.142876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 22.047956 + inSlope: -12.334005 + outSlope: -12.334005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 18.420269 + inSlope: -88.940315 + outSlope: -88.940315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 1.2449089 + inSlope: -149.21313 + outSlope: -149.21313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -17.524792 + inSlope: -67.54948 + outSlope: -67.54948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -26.799994 + inSlope: -45.81317 + outSlope: -45.81317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -30.748663 + inSlope: -52.813244 + outSlope: -52.813244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -35.45194 + inSlope: 8.53537 + outSlope: 8.53537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -33.790207 + inSlope: 33.9368 + outSlope: 33.9368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -31.9206 + inSlope: 7.6961937 + outSlope: 7.6961937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -31.939857 + inSlope: -2.858096 + outSlope: -2.858096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -32.015057 + inSlope: 4.2558208 + outSlope: 4.2558208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -16.577326 + inSlope: -2.547781 + outSlope: -2.547781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: -16.445026 + inSlope: 16.70557 + outSlope: 16.70557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: -7.278189 + inSlope: 34.124386 + outSlope: 34.124386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 5.496951 + inSlope: 35.745308 + outSlope: 35.745308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: 7.1395826 + inSlope: -29.193277 + outSlope: -29.193277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -5.402927 + inSlope: -132.56499 + outSlope: -132.56499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -18.442497 + inSlope: 35.486237 + outSlope: 35.486237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.12520005 + inSlope: 126.51855 + outSlope: 126.51855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: 6.351098 + inSlope: -32.687916 + outSlope: -32.687916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -19.19809 + inSlope: -308.81287 + outSlope: -308.81287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: -45.62621 + inSlope: -276.31506 + outSlope: -276.31506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: -62.69317 + inSlope: -80.46548 + outSlope: -80.46548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: -62.830948 + inSlope: 63.10553 + outSlope: 63.10553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: -57.427284 + inSlope: 129.52307 + outSlope: 129.52307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: -10.082315 + inSlope: 11.299112 + outSlope: 11.299112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.35 + value: -2.8673952 + inSlope: 19.563437 + outSlope: 19.563437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.65 + value: -3.2381158 + inSlope: -14.389711 + outSlope: -14.389711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -6.2501016 + inSlope: 21.249166 + outSlope: 21.249166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.15 + value: -4.3204436 + inSlope: 19.863626 + outSlope: 19.863626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -3.0953023 + inSlope: 1.141016 + outSlope: 1.141016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -7.653234 + inSlope: -37.89091 + outSlope: -37.89091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -12.956937 + inSlope: -28.726011 + outSlope: -28.726011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6833333 + value: -13.691 + inSlope: 29.069468 + outSlope: 29.069468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8166667 + value: -2.240622 + inSlope: 120.12247 + outSlope: 120.12247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8833333 + value: 6.498876 + inSlope: 67.16864 + outSlope: 67.16864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9833333 + value: 8.8086815 + inSlope: -31.0159 + outSlope: -31.0159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0166667 + value: 6.1083007 + inSlope: -89.15919 + outSlope: -89.15919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 1.3705454 + inSlope: -113.54905 + outSlope: -113.54905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 32.689 + inSlope: -11.851547 + outSlope: -11.851547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 18.542776 + inSlope: -96.961555 + outSlope: -96.961555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.51666665 + value: -7.586626 + inSlope: -93.54105 + outSlope: -93.54105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85 + value: -20.285847 + inSlope: 16.566042 + outSlope: 16.566042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -2.2789505 + inSlope: 44.88018 + outSlope: 44.88018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 3.3658626 + inSlope: -7.4157963 + outSlope: -7.4157963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.04293916 + inSlope: -2.9036005 + outSlope: -2.9036005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/jumpfix.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/jumpfix.anim.meta new file mode 100644 index 000000000..5b7841039 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/jumpfix.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0497759d7cdd78c49967881bdeddabc5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/letsgo.anim b/Assets/Resources/Models/Games/Airboarder/Animations/letsgo.anim new file mode 100644 index 000000000..87d3e2fb4 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/letsgo.anim @@ -0,0 +1,33330 @@ +%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: letsgo + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: 6.791667 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 6.791667 + 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: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0.7071081, w: 0.7071055} + 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: 6.791667 + value: {x: 0, y: 0, z: -0.7071081, w: 0.7071055} + 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: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.46324453, y: -0.2583633, z: 0.3434011, w: 0.77506685} + inSlope: {x: -1.239958, y: -0.33999753, z: -1.4964144, w: -0.2984562} + outSlope: {x: -1.239958, y: -0.33999753, z: -1.4964144, w: -0.2984562} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.51490945, y: -0.27252987, z: 0.2810505, w: 0.7626312} + inSlope: {x: -0.5878569, y: -0.16401243, z: -0.7134522, w: -0.13833976} + outSlope: {x: -0.5878569, y: -0.16401243, z: -0.7134522, w: -0.13833976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.5122326, y: -0.272031, z: 0.28394675, w: 0.76353854} + inSlope: {x: 0.150208, y: 0.03803659, z: 0.15701008, w: 0.054327253} + outSlope: {x: 0.150208, y: 0.03803659, z: 0.15701008, w: 0.054327253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37628734, y: -0.2192313, z: 0.41724777, w: 0.79765266} + inSlope: {x: 0.79532987, y: 0.3962219, z: 0.68014044, w: 0.12741068} + outSlope: {x: 0.79532987, y: 0.3962219, z: 0.68014044, w: 0.12741068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.18637122, y: -0.0923896, z: 0.53829694, w: 0.8166801} + inSlope: {x: 0.6767478, y: 0.5668925, z: 0.2548714, w: 0.050678745} + outSlope: {x: 0.6767478, y: 0.5668925, z: 0.2548714, w: 0.050678745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.0007241853, y: 0.06927843, z: 0.55773777, w: 0.82712066} + inSlope: {x: 0.48763597, y: 0.41935062, z: -0.059613004, w: 0.007984405} + outSlope: {x: 0.48763597, y: 0.41935062, z: -0.059613004, w: 0.007984405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.02570387, y: 0.09416773, z: 0.55256134, w: 0.8277365} + inSlope: {x: -0.065447435, y: -0.04809223, z: 0.0049982117, w: 0.0041499175} + outSlope: {x: -0.065447435, y: -0.04809223, z: 0.0049982117, w: 0.0041499175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.00597085, y: 0.06816314, z: 0.55478776, w: 0.8291735} + inSlope: {x: 0.0074359737, y: 0.0019997675, z: -0.00078105996, w: 0.0004105572} + outSlope: {x: 0.0074359737, y: 0.0019997675, z: -0.00078105996, w: 0.0004105572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.875 + value: {x: 0.005383732, y: 0.07571678, z: 0.5534076, w: 0.8294444} + inSlope: {x: -0.023338117, y: -0.015334291, z: 0.0016708388, w: 0.0004355912} + outSlope: {x: -0.023338117, y: -0.015334291, z: 0.0016708388, w: 0.0004355912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.007062586, y: 0.075894676, z: 0.5528075, w: 0.8298156} + inSlope: {x: -0.011623021, y: -0.009678636, z: 0.0008275482, w: 0.0004312983} + outSlope: {x: -0.011623021, y: -0.009678636, z: 0.0008275482, w: 0.0004312983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.291667 + value: {x: -0.02119146, y: 0.056964453, z: 0.5550861, w: 0.8295694} + inSlope: {x: 0.046150427, y: 0.031719565, z: 0.00012803014, w: -0.0010864716} + outSlope: {x: 0.046150427, y: 0.031719565, z: 0.00012803014, w: -0.0010864716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.666667 + value: {x: -0.013450771, y: 0.061350375, z: 0.55540717, w: 0.8292033} + inSlope: {x: -0.04036715, y: -0.049216896, z: 0.0044453163, w: -0.00007510282} + outSlope: {x: -0.04036715, y: -0.049216896, z: 0.0044453163, w: -0.00007510282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.791667 + value: {x: -0.055554733, y: 0.0271133, z: 0.5539388, w: 0.8302592} + inSlope: {x: -0.78181195, y: -0.5982084, z: -0.079331964, w: 0.0131592415} + outSlope: {x: -0.78181195, y: -0.5982084, z: -0.079331964, w: 0.0131592415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6 + value: {x: -0.2698283, y: -0.12550159, z: 0.47259817, w: 0.8295137} + inSlope: {x: -1.1326686, y: -0.68130326, z: -0.6938659, w: -0.07659144} + outSlope: {x: -1.1326686, y: -0.68130326, z: -0.6938659, w: -0.07659144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.2083335 + value: {x: -0.474452, y: -0.22288443, z: 0.3153546, w: 0.79105586} + inSlope: {x: -0.6588893, y: -0.25895467, z: -0.59671617, w: -0.22401181} + outSlope: {x: -0.6588893, y: -0.25895467, z: -0.59671617, w: -0.22401181} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.375 + value: {x: -0.51748765, y: -0.24505734, z: 0.28149325, w: 0.7700098} + inSlope: {x: 0.07498485, y: -0.053593528, z: 0.14834246, w: -0.021351172} + outSlope: {x: 0.07498485, y: -0.053593528, z: 0.14834246, w: -0.021351172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.7083335 + value: {x: -0.4302517, y: -0.24377719, z: 0.38046348, w: 0.78147537} + inSlope: {x: 0.24414954, y: 0.02979302, z: 0.25638762, w: 0.019708231} + outSlope: {x: 0.24414954, y: 0.02979302, z: 0.25638762, w: 0.019708231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: -0.4154848, y: -0.24191855, z: 0.39605346, w: 0.78229755} + inSlope: {x: 0.14011467, y: 0.017802937, z: 0.14836007, w: 0.005929425} + outSlope: {x: 0.14011467, y: 0.017802937, z: 0.14836007, w: 0.005929425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.88786954, y: -0.10284441, z: -0.06141146, w: 0.44422907} + inSlope: {x: 0.4549713, y: -0.19126081, z: 0.06068355, w: -1.004111} + outSlope: {x: 0.4549713, y: -0.19126081, z: 0.06068355, w: -1.004111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.9068267, y: -0.11081361, z: -0.058882978, w: 0.4023911} + inSlope: {x: 0.20772028, y: -0.094064176, z: 0.025619343, w: -0.4580158} + outSlope: {x: 0.20772028, y: -0.094064176, z: 0.025619343, w: -0.4580158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.90517956, y: -0.11068309, z: -0.059276514, w: 0.40606108} + inSlope: {x: -0.07038903, y: 0.028807105, z: -0.00796558, w: 0.16206944} + outSlope: {x: -0.07038903, y: 0.028807105, z: -0.00796558, w: 0.16206944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: 0.7761982, y: -0.06924882, z: -0.06379754, w: 0.6234187} + inSlope: {x: -0.7748107, y: 0.1949048, z: 0.018446805, w: 0.9855436} + outSlope: {x: -0.7748107, y: 0.1949048, z: 0.018446805, w: 0.9855436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0.5027962, y: -0.020946551, z: -0.042676754, w: 0.8630968} + inSlope: {x: -0.9803623, y: 0.108203106, z: 0.096861795, w: 0.57908046} + outSlope: {x: -0.9803623, y: 0.108203106, z: 0.096861795, w: 0.57908046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.30339125, y: -0.0045300443, z: -0.020067558, w: 0.952644} + inSlope: {x: -0.70257175, y: 0.03723158, z: 0.080789685, w: 0.22989453} + outSlope: {x: -0.70257175, y: 0.03723158, z: 0.080789685, w: 0.22989453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.27847153, y: -0.003473664, z: -0.016621038, w: 0.96029437} + inSlope: {x: 0.12519184, y: -0.0049593197, z: -0.009179831, w: -0.036581732} + outSlope: {x: 0.12519184, y: -0.0049593197, z: -0.009179831, w: -0.036581732} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.37959635, y: -0.010397578, z: -0.02889813, w: 0.9246423} + inSlope: {x: -0.008902081, y: 0.000120040146, z: -0.0008900248, w: 0.003620628} + outSlope: {x: -0.008902081, y: 0.000120040146, z: -0.0008900248, w: 0.003620628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: 0.31490153, y: -0.005777356, z: -0.022224521, w: 0.9488465} + inSlope: {x: 0.027877396, y: 0.0008942076, z: 0.0041527892, w: -0.009160978} + outSlope: {x: 0.027877396, y: 0.0008942076, z: 0.0041527892, w: -0.009160978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.4583335 + value: {x: 0.36169064, y: -0.007893813, z: -0.024959922, w: 0.9319306} + inSlope: {x: -0.04512769, y: -0.00026305707, z: -0.0046142526, w: 0.017374301} + outSlope: {x: -0.04512769, y: -0.00026305707, z: -0.0046142526, w: 0.017374301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.375 + value: {x: 0.33533683, y: -0.0067644627, z: -0.024206065, w: 0.941763} + inSlope: {x: 0.15462938, y: -0.0040335287, z: 0.000772793, w: -0.055128925} + outSlope: {x: 0.15462938, y: -0.0040335287, z: 0.000772793, w: -0.055128925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.9583335 + value: {x: 0.40486017, y: -0.010894169, z: -0.029178698, w: 0.91384804} + inSlope: {x: -0.0064927586, y: -0.0038740188, z: -0.009885676, w: 0.0025148487} + outSlope: {x: -0.0064927586, y: -0.0038740188, z: -0.009885676, w: 0.0025148487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.5833335 + value: {x: 0.34260726, y: -0.0071595656, z: -0.025379146, w: 0.9391086} + inSlope: {x: -0.042831823, y: 0.004887255, z: 0.009690233, w: 0.015973868} + outSlope: {x: -0.042831823, y: 0.004887255, z: 0.009690233, w: 0.015973868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.666667 + value: {x: 0.3427021, y: -0.006994206, z: -0.024925385, w: 0.9390874} + inSlope: {x: 0.04005184, y: -0.0010805961, z: -0.0029329797, w: -0.0147371385} + outSlope: {x: 0.04005184, y: -0.0010805961, z: -0.0029329797, w: -0.0147371385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.75 + value: {x: 0.37051287, y: -0.008781524, z: -0.02826259, w: 0.9283557} + inSlope: {x: 0.9739133, y: -0.07317665, z: -0.108674146, w: -0.41214} + outSlope: {x: 0.9739133, y: -0.07317665, z: -0.108674146, w: -0.41214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.8333335 + value: {x: 0.49277753, y: -0.019846547, z: -0.041511066, w: 0.868938} + inSlope: {x: 1.6200594, y: -0.18208843, z: -0.16981363, w: -0.93747926} + outSlope: {x: 1.6200594, y: -0.18208843, z: -0.16981363, w: -0.93747926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6 + value: {x: 0.7271531, y: -0.057158902, z: -0.061472088, w: 0.681324} + inSlope: {x: 1.0358863, y: -0.21842167, z: -0.05278281, w: -1.1191323} + outSlope: {x: 1.0358863, y: -0.21842167, z: -0.05278281, w: -1.1191323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.2083335 + value: {x: 0.8467233, y: -0.08823363, z: -0.06385634, w: 0.5207656} + inSlope: {x: 0.22181165, y: -0.069485754, z: 0.007062909, w: -0.3686943} + outSlope: {x: 0.22181165, y: -0.069485754, z: 0.007062909, w: -0.3686943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.5 + value: {x: 0.8693508, y: -0.096112244, z: -0.06265683, w: 0.480693} + inSlope: {x: 0.011576468, y: -0.003841552, z: 0.0006544731, w: -0.02155862} + outSlope: {x: 0.011576468, y: -0.003841552, z: 0.0006544731, w: -0.02155862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 0.8635657, y: -0.09379505, z: -0.06305365, w: 0.49140725} + inSlope: {x: -0.035226077, y: 0.012475038, z: -0.0026948843, w: 0.0641744} + outSlope: {x: -0.035226077, y: 0.012475038, z: -0.0026948843, w: 0.0641744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08196824, y: 0.5335633, z: 0.7501199, w: 0.3819837} + inSlope: {x: 1.23948, y: -0.045520306, z: 0.24397087, w: -0.23982668} + outSlope: {x: 1.23948, y: -0.045520306, z: 0.24397087, w: -0.23982668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.030323235, y: 0.53166664, z: 0.7602854, w: 0.37199092} + inSlope: {x: 0.59762985, y: -0.035398006, z: 0.1271174, w: -0.11422205} + outSlope: {x: 0.59762985, y: -0.035398006, z: 0.1271174, w: -0.11422205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.032165747, y: 0.5306135, z: 0.76071304, w: 0.3724652} + inSlope: {x: -0.12377705, y: -0.016551018, z: -0.000023603905, w: 0.011850715} + outSlope: {x: -0.12377705, y: -0.016551018, z: -0.000023603905, w: 0.011850715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.1588209, y: 0.49527162, z: 0.75657994, w: 0.39631915} + inSlope: {x: -0.45903713, y: -0.37898463, z: 0.06431435, w: 0.16634235} + outSlope: {x: -0.45903713, y: -0.37898463, z: 0.06431435, w: 0.16634235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23575357, y: 0.35416076, z: 0.7837689, w: 0.4524344} + inSlope: {x: -0.12985069, y: -0.39127904, z: 0.0593476, w: 0.1365766} + outSlope: {x: -0.12985069, y: -0.39127904, z: 0.0593476, w: 0.1365766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.24663267, y: 0.26704708, z: 0.79583776, w: 0.48425248} + inSlope: {x: 0.047569133, y: -0.2393806, z: 0.033149943, w: 0.10287984} + outSlope: {x: 0.047569133, y: -0.2393806, z: 0.033149943, w: 0.10287984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.25004274, y: 0.27091417, z: 0.7943695, w: 0.48276424} + inSlope: {x: -0.050129928, y: 0.09867556, z: -0.015866507, w: -0.05527029} + outSlope: {x: -0.050129928, y: 0.09867556, z: -0.015866507, w: -0.05527029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: -0.2606309, y: 0.3072079, z: 0.7887266, w: 0.46433303} + inSlope: {x: 0.022747658, y: -0.062123597, z: 0.033521205, w: -0.003103855} + outSlope: {x: 0.022747658, y: -0.062123597, z: 0.033521205, w: -0.003103855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: -0.24434504, y: 0.26689488, z: 0.7981208, w: 0.48173216} + inSlope: {x: -0.015520841, y: 0.020688375, z: -0.0070338114, w: -0.007700786} + outSlope: {x: -0.015520841, y: 0.020688375, z: -0.0070338114, w: -0.007700786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.4166667 + value: {x: -0.25834185, y: 0.30383828, z: 0.78838825, w: 0.46838635} + inSlope: {x: 0.012789464, y: -0.025765251, z: 0.012717938, w: 0.0023360206} + outSlope: {x: 0.012789464, y: -0.025765251, z: 0.012717938, w: 0.0023360206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.375 + value: {x: -0.24896726, y: 0.27837634, z: 0.7953011, w: 0.47751257} + inSlope: {x: -0.029925523, y: 0.07280107, z: -0.0074622454, w: -0.04564967} + outSlope: {x: -0.029925523, y: 0.07280107, z: -0.0074622454, w: -0.04564967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.125 + value: {x: -0.25590387, y: 0.31132025, z: 0.78894275, w: 0.46385583} + inSlope: {x: 0.028427426, y: -0.06014642, z: 0.010847537, w: 0.037565157} + outSlope: {x: 0.028427426, y: -0.06014642, z: 0.010847537, w: 0.037565157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.666667 + value: {x: -0.24262764, y: 0.27323994, z: 0.7981552, w: 0.47897825} + inSlope: {x: 0.0033024761, y: 0.0054453565, z: -0.0024440894, w: 0.0026257199} + outSlope: {x: 0.0033024761, y: 0.0054453565, z: -0.0024440894, w: 0.0026257199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.791667 + value: {x: -0.24780723, y: 0.3087871, z: 0.7938157, w: 0.46162623} + inSlope: {x: -0.06301878, y: 0.6698551, z: -0.075833455, w: -0.35821974} + outSlope: {x: -0.06301878, y: 0.6698551, z: -0.075833455, w: -0.35821974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6 + value: {x: -0.19423467, y: 0.45253325, z: 0.78377277, w: 0.37840033} + inSlope: {x: 0.60371566, y: 0.4502992, z: 0.042870052, w: -0.3160428} + outSlope: {x: 0.60371566, y: 0.4502992, z: 0.042870052, w: -0.3160428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.25 + value: {x: -0.029886073, y: 0.45694843, z: 0.82067674, w: 0.34175247} + inSlope: {x: 0.38489783, y: -0.16851696, z: 0.11913942, w: -0.021545043} + outSlope: {x: 0.38489783, y: -0.16851696, z: 0.11913942, w: -0.021545043} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.541667 + value: {x: -0.05921962, y: 0.488296, z: 0.7882318, w: 0.3697982} + inSlope: {x: -0.31439033, y: 0.22816397, z: -0.22970536, w: 0.1378323} + outSlope: {x: -0.31439033, y: 0.22816397, z: -0.22970536, w: 0.1378323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: -0.12269232, y: 0.52330965, z: 0.74616563, w: 0.3928493} + inSlope: {x: -0.11361411, y: 0.045285355, z: -0.07474508, w: 0.047372457} + outSlope: {x: -0.11361411, y: 0.045285355, z: -0.07474508, w: 0.047372457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.40317732, y: 0.721205, z: -0.05822352, w: 0.56028694} + inSlope: {x: -0.28428268, y: -1.0843706, z: 0.69089, w: 1.1494346} + outSlope: {x: -0.28428268, y: -1.0843706, z: 0.69089, w: 1.1494346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.41502243, y: 0.6760229, z: -0.029436436, w: 0.60818005} + inSlope: {x: -0.1272608, y: -0.48465586, z: 0.3173439, w: 0.5190561} + outSlope: {x: -0.1272608, y: -0.48465586, z: 0.3173439, w: 0.5190561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.4137824, y: 0.680817, z: -0.031778194, w: 0.6035416} + inSlope: {x: 0.07749117, y: 0.20616032, z: -0.066909716, w: -0.18550374} + outSlope: {x: 0.07749117, y: 0.20616032, z: -0.066909716, w: -0.18550374} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35415593, y: 0.8167227, z: -0.08249024, w: 0.44803238} + inSlope: {x: 0.37158045, y: 0.64886373, z: -0.2056773, w: -0.929425} + outSlope: {x: 0.37158045, y: 0.64886373, z: -0.2056773, w: -0.929425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.24987832, y: 0.9428762, z: -0.08955068, w: 0.20131055} + inSlope: {x: 0.36736578, y: 0.3170901, z: 0.11407089, w: -0.97729385} + outSlope: {x: 0.36736578, y: 0.3170901, z: 0.11407089, w: -0.97729385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.1726887, y: 0.98116636, z: -0.04904355, w: -0.071315184} + inSlope: {x: 0.1558119, y: -0.016531702, z: 0.1177558, w: -0.7206559} + outSlope: {x: 0.1558119, y: -0.016531702, z: 0.1177558, w: -0.7206559} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.16205187, y: 0.97854066, z: -0.037688978, w: -0.12156045} + inSlope: {x: -0.0057901787, y: 0.0043559037, z: 0.016639052, w: 0.037578717} + outSlope: {x: -0.0057901787, y: 0.0043559037, z: 0.016639052, w: 0.037578717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: -0.17125383, y: 0.98220515, z: -0.038652573, w: -0.06671682} + inSlope: {x: 0.0017443292, y: 0.004018305, z: -0.0060949144, w: 0.05820784} + outSlope: {x: 0.0017443292, y: 0.004018305, z: -0.0060949144, w: 0.05820784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: -0.16580644, y: 0.9824888, z: -0.030939171, w: -0.07916253} + inSlope: {x: 0.0050348686, y: 0.0014026177, z: 0.0018761563, w: 0.0061250096} + outSlope: {x: 0.0050348686, y: 0.0014026177, z: 0.0018761563, w: 0.0061250096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.8333335 + value: {x: -0.16948979, y: 0.981757, z: -0.03787259, w: -0.07740874} + inSlope: {x: 0.008822332, y: -0.00012516958, z: 0.014079019, w: -0.02778798} + outSlope: {x: 0.008822332, y: -0.00012516958, z: 0.014079019, w: -0.02778798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.5833335 + value: {x: -0.1668864, y: 0.98416704, z: -0.029862741, w: -0.051694784} + inSlope: {x: -0.013496212, y: 0.0020842631, z: -0.0027034087, w: 0.0847234} + outSlope: {x: -0.013496212, y: 0.0020842631, z: -0.0027034087, w: 0.0847234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.416667 + value: {x: -0.16696411, y: 0.9842412, z: -0.028765237, w: -0.0506448} + inSlope: {x: 0.025931902, y: 0.0029418434, z: 0.024294715, w: -0.04242477} + outSlope: {x: 0.025931902, y: 0.0029418434, z: 0.024294715, w: -0.04242477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.666667 + value: {x: -0.16281381, y: 0.9850373, z: -0.02391704, w: -0.051197592} + inSlope: {x: -0.003652132, y: 0.0010263821, z: 0.0017194289, w: 0.030614996} + outSlope: {x: -0.003652132, y: 0.0010263821, z: 0.0017194289, w: 0.030614996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.75 + value: {x: -0.16549823, y: 0.98542786, z: -0.023189878, w: -0.0316955} + inSlope: {x: -0.08655828, y: 0.0010335923, z: 0.03625505, w: 0.6799894} + outSlope: {x: -0.08655828, y: 0.0010335923, z: 0.03625505, w: 0.6799894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.916667 + value: {x: -0.20199612, y: 0.9642305, z: -0.016285982, w: 0.17085645} + inSlope: {x: -0.32364896, y: -0.31950945, z: 0.051027678, w: 1.4132893} + outSlope: {x: -0.32364896, y: -0.31950945, z: 0.051027678, w: 1.4132893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.125 + value: {x: -0.27107233, y: 0.8453325, z: 0.019295149, w: 0.45995706} + inSlope: {x: -0.24436754, y: -0.7469887, z: 0.28201443, w: 1.2241056} + outSlope: {x: -0.24436754, y: -0.7469887, z: 0.28201443, w: 1.2241056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.3333335 + value: {x: -0.30685174, y: 0.72778475, z: 0.052561946, w: 0.6110717} + inSlope: {x: -0.16433743, y: -0.15233861, z: -0.11760392, w: 0.11014336} + outSlope: {x: -0.16433743, y: -0.15233861, z: -0.11760392, w: 0.11014336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.666667 + value: {x: -0.3748496, y: 0.7519698, z: -0.054552864, w: 0.53949344} + inSlope: {x: -0.15399562, y: 0.10868572, z: -0.31825066, w: -0.2894476} + outSlope: {x: -0.15399562, y: 0.10868572, z: -0.31825066, w: -0.2894476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: -0.38821664, y: 0.76120484, z: -0.08177116, w: 0.5129996} + inSlope: {x: -0.07330672, y: 0.04534973, z: -0.1368585, w: -0.14269386} + outSlope: {x: -0.07330672, y: 0.04534973, z: -0.1368585, w: -0.14269386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99191296, y: 0.000000025084248, z: -0.12692036, w: -0.000051314677} + inSlope: {x: -0.1336298, y: 0.0009693671, z: -0.90651584, w: 0.0060787844} + outSlope: {x: -0.1336298, y: 0.0009693671, z: -0.90651584, w: 0.0060787844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.98634505, y: 0.00004041538, z: -0.16469185, w: 0.00020196803} + inSlope: {x: -0.06520271, y: 0.0009894798, z: -0.4435746, w: 0.006074457} + outSlope: {x: -0.06520271, y: 0.0009894798, z: -0.4435746, w: 0.006074457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.9864794, y: 0.00008248174, z: -0.16388491, w: 0.00045489008} + inSlope: {x: 0.009960652, y: 0.00097487355, z: 0.06062365, w: 0.006073893} + outSlope: {x: 0.009960652, y: 0.00097487355, z: 0.06062365, w: 0.006073893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.9999352, y: 0.00003636663, z: -0.011162569, w: 0.002253683} + inSlope: {x: 0.008965023, y: -0.002295558, z: 1.0519595, w: 0.0061527714} + outSlope: {x: 0.008965023, y: -0.002295558, z: 1.0519595, w: 0.0061527714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 0.96878666, y: -0.00079045596, z: 0.24787478, w: 0.0031502293} + inSlope: {x: -0.3251675, y: -0.0039903764, z: 1.274946, w: -0.0016133045} + outSlope: {x: -0.3251675, y: -0.0039903764, z: 1.274946, w: -0.0016133045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.84543425, y: -0.0016434665, z: 0.5340706, w: 0.0026236195} + inSlope: {x: -0.6239613, y: -0.0027823048, z: 0.99148095, w: -0.0024585663} + outSlope: {x: -0.6239613, y: -0.0027823048, z: 0.99148095, w: -0.0024585663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.77334875, y: -0.0018933807, z: 0.6339739, w: 0.0023206926} + inSlope: {x: -0.06600817, y: 0.00013426083, z: 0.0814098, w: -0.0006582728} + outSlope: {x: -0.06600817, y: 0.00013426083, z: 0.0814098, w: -0.0006582728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.80914605, y: -0.0016289076, z: 0.587601, w: 0.0022725803} + inSlope: {x: 0.14700738, y: 0.0009572045, z: -0.2023253, w: -0.000047260008} + outSlope: {x: 0.14700738, y: 0.0009572045, z: -0.2023253, w: -0.000047260008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.84720904, y: -0.0012305821, z: 0.5312544, w: 0.002050577} + inSlope: {x: -0.049791783, y: 0.00015931757, z: 0.07934184, w: -0.0006385498} + outSlope: {x: -0.049791783, y: 0.00015931757, z: 0.07934184, w: -0.0006385498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7083335 + value: {x: 0.8121584, y: -0.001088007, z: 0.58343387, w: 0.0016083971} + inSlope: {x: 0.037344266, y: 0.00050841185, z: -0.0520199, w: -0.00040823396} + outSlope: {x: 0.037344266, y: 0.00050841185, z: -0.0520199, w: -0.00040823396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5 + value: {x: 0.83974725, y: -0.00070344994, z: 0.54297566, w: 0.0012729642} + inSlope: {x: -0.029009359, y: 0.0002862318, z: 0.044841554, w: -0.00056232983} + outSlope: {x: -0.029009359, y: 0.0002862318, z: 0.044841554, w: -0.00056232983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.3333335 + value: {x: 0.82134, y: -0.0004413181, z: 0.57043827, w: 0.0008261584} + inSlope: {x: 0.09801258, y: 0.00056817057, z: -0.14125353, w: -0.00032090448} + outSlope: {x: 0.09801258, y: 0.00056817057, z: -0.14125353, w: -0.00032090448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.041667 + value: {x: 0.8683251, y: -0.00011161073, z: 0.49599528, w: 0.0005540466} + inSlope: {x: -0.04370137, y: 0.00022397732, z: 0.07639925, w: -0.0005541511} + outSlope: {x: -0.04370137, y: 0.00022397732, z: 0.07639925, w: -0.0005541511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.666667 + value: {x: 0.83278507, y: 0.000026353728, z: 0.5535964, w: 0.00021444215} + inSlope: {x: 0.03052928, y: 0.00033887854, z: -0.046028167, w: -0.0004237775} + outSlope: {x: 0.03052928, y: 0.00033887854, z: -0.046028167, w: -0.0004237775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.75 + value: {x: 0.85168266, y: 0.000070581526, z: 0.5240579, w: 0.00019680124} + inSlope: {x: 0.6148908, y: 0.0009114302, z: -1.0425085, w: 0.00022370457} + outSlope: {x: 0.6148908, y: 0.0009114302, z: -1.0425085, w: 0.00022370457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.8333335 + value: {x: 0.9216704, y: 0.00016518724, z: 0.3879739, w: 0.00024037564} + inSlope: {x: 0.80292916, y: 0.0011015061, z: -1.9231747, w: 0.0005759776} + outSlope: {x: 0.80292916, y: 0.0011015061, z: -1.9231747, w: 0.0005759776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.9583335 + value: {x: 0.99046284, y: 0.0002681224, z: 0.13777986, w: 0.00029380262} + inSlope: {x: 0.2708927, y: 0.0004834901, z: -1.9031, w: 0.00020665277} + outSlope: {x: 0.2708927, y: 0.0004834901, z: -1.9031, w: 0.00020665277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.2083335 + value: {x: 0.9848049, y: 0.00024553883, z: -0.173664, w: 0.0002392208} + inSlope: {x: -0.08078057, y: -0.0004795099, z: -0.4732488, w: -0.0005311386} + outSlope: {x: -0.08078057, y: -0.0004795099, z: -0.4732488, w: -0.0005311386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.541667 + value: {x: 0.9894263, y: 0.0000701606, z: -0.14503667, w: 0.00006365711} + inSlope: {x: 0.041775856, y: -0.00043006864, z: 0.2853139, w: -0.00042497902} + outSlope: {x: 0.041775856, y: -0.00043006864, z: 0.2853139, w: -0.00042497902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 0.99661314, y: 0.0000012195782, z: -0.08223345, w: -0.000034168293} + inSlope: {x: 0.012491131, y: -0.00012699586, z: 0.1459377, w: -0.00036646504} + outSlope: {x: 0.012491131, y: -0.00012699586, z: 0.1459377, w: -0.00036646504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.22878012, y: 0.46184298, z: 0.6458492, w: 0.5632402} + inSlope: {x: -0.38354695, y: -0.46278906, z: -0.2864313, w: 0.5255127} + outSlope: {x: -0.38354695, y: -0.46278906, z: -0.2864313, w: 0.5255127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.24476124, y: 0.4425601, z: 0.6339146, w: 0.58513653} + inSlope: {x: -0.16200256, y: -0.20849276, z: -0.10259342, w: 0.21348882} + outSlope: {x: -0.16200256, y: -0.20849276, z: -0.10259342, w: 0.21348882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.23603849, y: 0.44948003, z: 0.64387447, w: 0.5724327} + inSlope: {x: 0.18605572, y: 0.14885688, z: 0.18655372, w: -0.25202894} + outSlope: {x: 0.18605572, y: 0.14885688, z: 0.18655372, w: -0.25202894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.19632892, y: 0.47771758, z: 0.7067986, w: 0.48340103} + inSlope: {x: -0.062988974, y: -0.09096978, z: 0.26634118, w: -0.32538304} + outSlope: {x: -0.062988974, y: -0.09096978, z: 0.26634118, w: -0.32538304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.28650317, y: 0.39564505, z: 0.7660491, w: 0.41779163} + inSlope: {x: -0.34254867, y: -0.2951251, z: 0.11400455, w: -0.16443972} + outSlope: {x: -0.34254867, y: -0.2951251, z: 0.11400455, w: -0.16443972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: -0.3948649, y: 0.31797963, z: 0.77495915, w: 0.37737134} + inSlope: {x: 0.024510067, y: 0.02474322, z: -0.0018360569, w: 0.0083967615} + outSlope: {x: 0.024510067, y: 0.02474322, z: -0.0018360569, w: 0.0083967615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: -0.34135672, y: 0.34457055, z: 0.7932399, w: 0.36812663} + inSlope: {x: 0.080335096, y: 0.029608395, z: 0.030610114, w: -0.019118447} + outSlope: {x: 0.080335096, y: 0.029608395, z: 0.030610114, w: -0.019118447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2083335 + value: {x: -0.35433, y: 0.33646604, z: 0.7908761, w: 0.36845064} + inSlope: {x: -0.10187469, y: -0.052676134, z: -0.02498677, w: 0.003763678} + outSlope: {x: -0.10187469, y: -0.052676134, z: -0.02498677, w: 0.003763678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.875 + value: {x: -0.36962843, y: 0.33279374, z: 0.7849198, w: 0.36949164} + inSlope: {x: 0.06859666, y: 0.03151634, z: 0.02265932, w: -0.007930764} + outSlope: {x: 0.06859666, y: 0.03151634, z: 0.02265932, w: -0.007930764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5833335 + value: {x: -0.34446806, y: 0.3436841, z: 0.79080623, w: 0.3712795} + inSlope: {x: -0.07956585, y: -0.038117103, z: -0.012202273, w: -0.01262464} + outSlope: {x: -0.07956585, y: -0.038117103, z: -0.012202273, w: -0.01262464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.3333335 + value: {x: -0.36825055, y: 0.33125857, z: 0.78602517, w: 0.36989695} + inSlope: {x: 0.104516074, y: 0.048003856, z: 0.031500697, w: -0.005885504} + outSlope: {x: 0.104516074, y: 0.048003856, z: 0.031500697, w: -0.005885504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.0833335 + value: {x: -0.32952467, y: 0.34999394, z: 0.7969837, w: 0.3656976} + inSlope: {x: -0.06260729, y: -0.025877694, z: -0.012933304, w: -0.0035212175} + outSlope: {x: -0.06260729, y: -0.025877694, z: -0.012933304, w: -0.0035212175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.666667 + value: {x: -0.37283617, y: 0.32832143, z: 0.7870218, w: 0.36577985} + inSlope: {x: -0.0014687523, y: 0.0021862236, z: -0.003818048, w: 0.0047478816} + outSlope: {x: -0.0014687523, y: 0.0021862236, z: -0.003818048, w: 0.0047478816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.75 + value: {x: -0.36106697, y: 0.33430335, z: 0.79100424, w: 0.36357164} + inSlope: {x: 0.45266706, y: 0.21924679, z: 0.14723486, w: -0.084475346} + outSlope: {x: 0.45266706, y: 0.21924679, z: 0.14723486, w: -0.084475346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.916667 + value: {x: -0.240949, y: 0.3933369, z: 0.8131007, w: 0.35510147} + inSlope: {x: 0.6406456, y: 0.3337336, z: 0.00921087, w: 0.049639903} + outSlope: {x: 0.6406456, y: 0.3337336, z: 0.00921087, w: 0.049639903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.166667 + value: {x: -0.20739001, y: 0.41779804, z: 0.77494514, w: 0.42649055} + inSlope: {x: -0.35560042, y: -0.18833488, z: -0.23785573, w: 0.44129264} + outSlope: {x: -0.35560042, y: -0.18833488, z: -0.23785573, w: 0.44129264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.3333335 + value: {x: -0.2618643, y: 0.39360276, z: 0.732973, w: 0.48913658} + inSlope: {x: -0.12583578, y: 0.01788933, z: -0.21144113, w: 0.23669654} + outSlope: {x: -0.12583578, y: 0.01788933, z: -0.21144113, w: 0.23669654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.75 + value: {x: -0.22407869, y: 0.46847713, z: 0.6602186, w: 0.54261345} + inSlope: {x: 0.08315341, y: 0.09310082, z: -0.08722392, w: 0.060442626} + outSlope: {x: 0.08315341, y: 0.09310082, z: -0.08722392, w: 0.060442626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: -0.22124763, y: 0.47164342, z: 0.65716136, w: 0.5447393} + inSlope: {x: 0.06794484, y: 0.075990334, z: -0.073373236, w: 0.051020235} + outSlope: {x: 0.06794484, y: 0.075990334, z: -0.073373236, w: 0.051020235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08088758, y: -0.023349857, z: -0.04619368, w: 0.99537843} + inSlope: {x: 0.045652807, y: 0.17722034, z: 0.028146029, w: 0.008452892} + outSlope: {x: 0.045652807, y: 0.17722034, z: 0.028146029, w: 0.008452892} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.04981298, y: 0.05407601, z: -0.02376156, w: 0.99701047} + inSlope: {x: 0.045024943, y: 0.20296612, z: 0.09023298, w: -0.0062634936} + outSlope: {x: 0.045024943, y: 0.20296612, z: 0.09023298, w: -0.0062634936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.023283014, y: 0.006252808, z: -0.012586374, w: 0.99963015} + inSlope: {x: 0.018749347, y: -0.445123, z: 0.05822813, w: 0.003601311} + outSlope: {x: 0.018749347, y: -0.445123, z: 0.05822813, w: 0.003601311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.003148574, y: -0.109023094, z: 0.013901194, w: 0.993937} + inSlope: {x: 0.026154565, y: -0.041057896, z: 0.012516243, w: -0.004508255} + outSlope: {x: 0.026154565, y: -0.041057896, z: 0.012516243, w: -0.004508255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: -0.002606615, y: -0.10857825, z: 0.013963888, w: 0.9939864} + 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: 3.5 + value: {x: -0.0026066152, y: -0.10857825, z: 0.013963889, w: 0.9939864} + 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: 5.541667 + value: {x: -0.0026066161, y: -0.10857825, z: 0.013963889, w: 0.9939864} + 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: 5.875 + value: {x: -0.014317035, y: -0.076657265, z: 0.0031839546, w: 0.9969496} + inSlope: {x: -0.0880329, y: 0.3496322, z: -0.07876517, w: 0.025363637} + outSlope: {x: -0.0880329, y: 0.3496322, z: -0.07876517, w: 0.025363637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.166667 + value: {x: -0.031268172, y: 0.059983835, z: -0.010626184, w: 0.99765295} + inSlope: {x: -0.017138543, y: 0.45870644, z: -0.0057399906, w: -0.027848449} + outSlope: {x: -0.017138543, y: 0.45870644, z: -0.0057399906, w: -0.027848449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.541667 + value: {x: -0.07254778, y: 0.093798466, z: -0.04449978, w: 0.9919468} + inSlope: {x: -0.04651006, y: -0.46489942, z: -0.047232624, w: 0.037656717} + outSlope: {x: -0.04651006, y: -0.46489942, z: -0.047232624, w: 0.037656717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: -0.08133571, y: -0.021576198, z: -0.046507582, w: 0.9953673} + inSlope: {x: -0.021021564, y: -0.26979816, z: 0.004650647, w: -0.005814985} + outSlope: {x: -0.021021564, y: -0.26979816, z: 0.004650647, w: -0.005814985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.17637405, y: 0.50444686, z: -0.06550979, w: 0.8426945} + inSlope: {x: 0.10835016, y: -0.15188384, z: -0.0044451356, w: 0.11207914} + outSlope: {x: 0.10835016, y: -0.15188384, z: -0.0044451356, w: 0.11207914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.115102485, y: 0.3730919, z: -0.053802736, w: 0.9190534} + inSlope: {x: 0.21467647, y: -0.8648321, z: 0.087787844, w: 0.3803801} + outSlope: {x: 0.21467647, y: -0.8648321, z: 0.087787844, w: 0.3803801} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: -0.07817917, y: 0.15388165, z: -0.027376305, w: 0.9846111} + inSlope: {x: 0.2666947, y: -1.7594934, z: 0.21001972, w: 0.29785472} + outSlope: {x: 0.2666947, y: -1.7594934, z: 0.21001972, w: 0.29785472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: -0.042845786, y: -0.07283051, z: -0.008486374, w: 0.9963875} + inSlope: {x: 0.2585575, y: -1.6780317, z: 0.083665766, w: -0.10443455} + outSlope: {x: 0.2585575, y: -1.6780317, z: 0.083665766, w: -0.10443455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0.012448728, y: -0.2527161, z: -0.0067166695, w: 0.9674371} + inSlope: {x: 0.11154215, y: -0.21681732, z: -0.044859245, w: -0.052821696} + outSlope: {x: 0.11154215, y: -0.21681732, z: -0.044859245, w: -0.052821696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.0037707193, y: -0.22835372, z: -0.013733727, w: 0.9734741} + inSlope: {x: 0.0358757, y: 0.20902139, z: -0.038309116, w: 0.048917785} + outSlope: {x: 0.0358757, y: 0.20902139, z: -0.038309116, w: 0.048917785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: -0.0011605256, y: -0.15964581, z: -0.014198763, w: 0.9870716} + inSlope: {x: 0.0022751703, y: 0.15414596, z: -0.0005274339, w: 0.02501034} + outSlope: {x: 0.0022751703, y: 0.15414596, z: -0.0005274339, w: 0.02501034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0.0015770522, y: -0.18745041, z: -0.014078754, w: 0.98217195} + inSlope: {x: 0.0005412993, y: 0.037416473, z: -0.00013071302, w: 0.0071268105} + outSlope: {x: 0.0005412993, y: 0.037416473, z: -0.00013071302, w: 0.0071268105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.875 + value: {x: -0.0011400481, y: -0.15712723, z: -0.014174367, w: 0.987476} + inSlope: {x: -0.0010683734, y: -0.071587846, z: 0.00028296208, w: -0.011407621} + outSlope: {x: -0.0010683734, y: -0.071587846, z: 0.00028296208, w: -0.011407621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5833335 + value: {x: -0.0016637882, y: -0.19200549, z: -0.014020631, w: 0.9812923} + inSlope: {x: 0.0010468939, y: 0.071950525, z: -0.00025342434, w: 0.014058368} + outSlope: {x: 0.0010468939, y: 0.071950525, z: -0.00025342434, w: 0.014058368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.4583335 + value: {x: -0.0010417406, y: -0.14888458, z: -0.014152555, w: 0.9887528} + inSlope: {x: -0.0011319217, y: -0.07635277, z: 0.00026996539, w: -0.011509224} + outSlope: {x: -0.0011319217, y: -0.07635277, z: 0.00026996539, w: -0.011509224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.125 + value: {x: -0.0015367075, y: -0.18221593, z: -0.014022467, w: 0.9831574} + inSlope: {x: 0.00023111491, y: 0.016158294, z: -0.00004364163, w: 0.002991906} + outSlope: {x: 0.00023111491, y: 0.016158294, z: -0.00004364163, w: 0.002991906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.5833335 + value: {x: -0.0010822664, y: -0.15116425, z: -0.0141245, w: 0.98840714} + inSlope: {x: 0.0021432356, y: 0.14656469, z: -0.00046730967, w: 0.022312488} + outSlope: {x: 0.0021432356, y: 0.14656469, z: -0.00046730967, w: 0.022312488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.75 + value: {x: 0.00088475784, y: -0.08263381, z: -0.014005481, w: 0.9964812} + inSlope: {x: 0.03370546, y: 0.71626204, z: 0.008123536, w: 0.05802004} + outSlope: {x: 0.03370546, y: 0.71626204, z: 0.008123536, w: 0.05802004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.0833335 + value: {x: 0.022055646, y: 0.20666641, z: 0.007161945, w: 0.9781366} + inSlope: {x: 0.057850465, y: 0.8613582, z: 0.14195591, w: -0.18385719} + outSlope: {x: 0.057850465, y: 0.8613582, z: 0.14195591, w: -0.18385719} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.375 + value: {x: -0.0033016007, y: 0.39483917, z: 0.02512559, w: 0.9184007} + inSlope: {x: -0.3433019, y: 0.35291177, z: -0.18581282, w: -0.14772587} + outSlope: {x: -0.3433019, y: 0.35291177, z: -0.18581282, w: -0.14772587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.5833335 + value: {x: -0.095263645, y: 0.44737753, z: -0.033081762, w: 0.8886416} + inSlope: {x: -0.48142815, y: 0.32296816, z: -0.27418435, w: -0.2245833} + outSlope: {x: -0.48142815, y: 0.32296816, z: -0.27418435, w: -0.2245833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: -0.174789, y: 0.50412166, z: -0.06460583, w: 0.84328896} + inSlope: {x: -0.22487934, y: 0.14855891, z: -0.054971542, w: -0.13729659} + outSlope: {x: -0.22487934, y: 0.14855891, z: -0.054971542, w: -0.13729659} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.12785822, y: -0.5554248, z: 0.7669473, w: 0.29486832} + inSlope: {x: -0.059620142, y: 1.1622162, z: 0.9876852, w: -0.595253} + outSlope: {x: -0.059620142, y: 1.1622162, z: 0.9876852, w: -0.595253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.1303424, y: -0.50699914, z: 0.8081009, w: 0.2700661} + inSlope: {x: -0.30591238, y: 1.4723868, z: 1.0255344, w: -0.53526485} + outSlope: {x: -0.30591238, y: 1.4723868, z: 1.0255344, w: -0.53526485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.20141721, y: -0.3502364, z: 0.8821613, w: 0.24198543} + inSlope: {x: -1.312956, y: 1.8606191, z: 0.45921564, w: -0.050387815} + outSlope: {x: -1.312956, y: 1.8606191, z: 0.45921564, w: -0.050387815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.30989122, y: -0.2263048, z: 0.8846609, w: 0.26481822} + inSlope: {x: -0.8677722, y: 1.0094612, z: -0.23341373, w: 0.67167723} + outSlope: {x: -0.8677722, y: 1.0094612, z: -0.23341373, w: 0.67167723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.3640747, y: -0.15795718, z: 0.84577334, w: 0.35660425} + inSlope: {x: -0.86708015, y: 1.0788858, z: -0.83807373, w: 1.4824904} + outSlope: {x: -0.86708015, y: 1.0788858, z: -0.83807373, w: 1.4824904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.40733495, y: -0.1036454, z: 0.8013859, w: 0.4255779} + inSlope: {x: -1.2041266, y: 1.7806485, z: -1.3140273, w: 1.6255388} + outSlope: {x: -1.2041266, y: 1.7806485, z: -1.3140273, w: 1.6255388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.46441856, y: -0.009569848, z: 0.7362711, w: 0.4920658} + inSlope: {x: -0.41767818, y: 1.9982767, z: -1.0831175, w: 1.4091535} + outSlope: {x: -0.41767818, y: 1.9982767, z: -1.0831175, w: 1.4091535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: -0.44214144, y: 0.06287766, z: 0.7111261, w: 0.5430074} + inSlope: {x: 0.72935236, y: 1.815309, z: -0.4999801, w: 1.0357058} + outSlope: {x: 0.72935236, y: 1.815309, z: -0.4999801, w: 1.0357058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: -0.28600398, y: 0.31401584, z: 0.6453008, w: 0.6349667} + inSlope: {x: 1.5870733, y: 1.9981304, z: -0.92374164, w: 0.66277283} + outSlope: {x: 1.5870733, y: 1.9981304, z: -0.92374164, w: 0.66277283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.1549365, y: 0.45752284, z: 0.5436905, w: 0.6863441} + inSlope: {x: 1.3612146, y: 1.2484393, z: -1.3622289, w: 0.58708847} + outSlope: {x: 1.3612146, y: 1.2484393, z: -1.3622289, w: 0.58708847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: -0.07198, y: 0.5119519, z: 0.4354274, w: 0.73697156} + inSlope: {x: 0.6221193, y: -0.04791455, z: -1.1578269, w: 0.7803543} + outSlope: {x: 0.6221193, y: -0.04791455, z: -1.1578269, w: 0.7803543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.04900517, y: 0.43959618, z: 0.34845698, w: 0.82639664} + inSlope: {x: -0.034770176, y: -1.4687226, z: -0.89776963, w: 1.1532371} + outSlope: {x: -0.034770176, y: -1.4687226, z: -0.89776963, w: 1.1532371} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.06485335, y: 0.3187383, z: 0.29210725, w: 0.8993738} + inSlope: {x: -0.17008226, y: -0.92003393, z: -0.3779703, w: 0.45897272} + outSlope: {x: -0.17008226, y: -0.92003393, z: -0.3779703, w: 0.45897272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07175099, y: 0.27964988, z: 0.2840548, w: 0.91430885} + inSlope: {x: -0.012331721, y: -0.20874226, z: 0.01617764, w: 0.05778763} + outSlope: {x: -0.012331721, y: -0.20874226, z: 0.01617764, w: 0.05778763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: -0.060162496, y: 0.2096537, z: 0.31409383, w: 0.9239973} + inSlope: {x: 0.05220135, y: 0.068239674, z: 0.050946202, w: -0.029431332} + outSlope: {x: 0.05220135, y: 0.068239674, z: 0.050946202, w: -0.029431332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0.063844144, y: 0.25608277, z: 0.29589, w: 0.9180385} + inSlope: {x: -0.06751855, y: -0.044877663, z: -0.07000752, w: 0.030359767} + outSlope: {x: -0.06751855, y: -0.044877663, z: -0.07000752, w: 0.030359767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.75 + value: {x: -0.07871799, y: 0.21588835, z: 0.2906818, w: 0.9288163} + inSlope: {x: 0.056381598, y: 0.031215534, z: 0.056086116, w: -0.020063646} + outSlope: {x: 0.056381598, y: 0.031215534, z: 0.056086116, w: -0.020063646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5 + value: {x: -0.05331243, y: 0.2653191, z: 0.30650476, w: 0.91258883} + inSlope: {x: -0.038984686, y: -0.059879094, z: -0.042245537, w: 0.029278297} + outSlope: {x: -0.038984686, y: -0.059879094, z: -0.042245537, w: 0.029278297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.3333335 + value: {x: -0.08375822, y: 0.20519379, z: 0.2871076, w: 0.9319063} + inSlope: {x: 0.061269306, y: 0.04905904, z: 0.058702335, w: -0.023423284} + outSlope: {x: 0.061269306, y: 0.04905904, z: 0.058702335, w: -0.023423284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.9583335 + value: {x: -0.0477329, y: 0.24917336, z: 0.3177226, w: 0.9136118} + inSlope: {x: -0.009059464, y: 0.007039753, z: -0.031239629, w: 0.008446487} + outSlope: {x: -0.009059464, y: 0.007039753, z: -0.031239629, w: 0.008446487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.416667 + value: {x: -0.08107616, y: 0.23888545, z: 0.2819978, w: 0.92565525} + inSlope: {x: -0.04581823, y: -0.09848358, z: -0.01779973, w: 0.026847057} + outSlope: {x: -0.04581823, y: -0.09848358, z: -0.01779973, w: 0.026847057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.5833335 + value: {x: -0.08372208, y: 0.26552048, z: 0.29950872, w: 0.91257006} + inSlope: {x: -0.029490374, y: 0.5412066, z: 0.28321373, w: -0.25601962} + outSlope: {x: -0.029490374, y: 0.5412066, z: 0.28321373, w: -0.25601962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.791667 + value: {x: -0.13682814, y: 0.35229552, z: 0.38695106, w: 0.84109145} + inSlope: {x: -0.539001, y: -0.04822671, z: 0.5243491, w: -0.31034303} + outSlope: {x: -0.539001, y: -0.04822671, z: 0.5243491, w: -0.31034303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.8333335 + value: {x: -0.16124803, y: 0.34531248, z: 0.40939945, w: 0.8289454} + inSlope: {x: -0.19877464, y: -1.1286632, z: 0.6827704, w: 0.038066775} + outSlope: {x: -0.19877464, y: -1.1286632, z: 0.6827704, w: 0.038066775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.875 + value: {x: -0.15339263, y: 0.2582406, z: 0.44384837, w: 0.8442637} + inSlope: {x: -0.04491003, y: -1.6639891, z: 0.92076933, w: 0.047674254} + outSlope: {x: -0.04491003, y: -1.6639891, z: 0.92076933, w: 0.047674254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.9583335 + value: {x: -0.19539551, y: 0.18032221, z: 0.54300165, w: 0.796526} + inSlope: {x: -0.9624008, y: -0.4458719, z: 1.3587658, w: -1.0800502} + outSlope: {x: -0.9624008, y: -0.4458719, z: 1.3587658, w: -1.0800502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.041667 + value: {x: -0.30248293, y: 0.15506211, z: 0.6410645, w: 0.68811053} + inSlope: {x: -1.0602484, y: -0.7019506, z: 0.86037296, w: -1.0817287} + outSlope: {x: -1.0602484, y: -0.7019506, z: 0.86037296, w: -1.0817287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.125 + value: {x: -0.33889073, y: 0.04712193, z: 0.69767964, w: 0.6294249} + inSlope: {x: -0.114502296, y: -1.4152186, z: 0.5687442, w: -0.5728164} + outSlope: {x: -0.114502296, y: -1.4152186, z: 0.5687442, w: -0.5728164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.291667 + value: {x: -0.3395511, y: -0.14370956, z: 0.7697322, w: 0.5211191} + inSlope: {x: 0.17951417, y: -1.0567615, z: 0.3957681, w: -0.7618008} + outSlope: {x: 0.17951417, y: -1.0567615, z: 0.3957681, w: -0.7618008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.5 + value: {x: -0.24758269, y: -0.3441526, z: 0.8259128, w: 0.3716583} + inSlope: {x: 0.5912372, y: -0.90616095, z: 0.034144476, w: -0.52076334} + outSlope: {x: 0.5912372, y: -0.90616095, z: 0.034144476, w: -0.52076334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.7083335 + value: {x: -0.1484957, y: -0.5273266, z: 0.777338, w: 0.30922714} + inSlope: {x: 0.2845908, y: -0.6487831, z: -0.35035935, w: -0.078606546} + outSlope: {x: 0.2845908, y: -0.6487831, z: -0.35035935, w: -0.078606546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: -0.13294697, y: -0.56617796, z: 0.75294703, w: 0.30795842} + inSlope: {x: 0.13665643, y: -0.36808497, z: -0.25053072, w: 0.009496378} + outSlope: {x: 0.13665643, y: -0.36808497, z: -0.25053072, w: 0.009496378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.005488806, y: 0.41387916, z: 0.012071408, w: 0.9102352} + inSlope: {x: -0.0066422783, y: 0.8098726, z: -0.01331234, w: -0.38654423} + outSlope: {x: -0.0066422783, y: 0.8098726, z: -0.01331234, w: -0.38654423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.0054607834, y: 0.4535099, z: 0.010730715, w: 0.8911699} + inSlope: {x: 0.013388739, y: -0.39035514, z: -0.015915167, w: 0.18696357} + outSlope: {x: 0.013388739, y: -0.39035514, z: -0.015915167, w: 0.18696357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.0046498394, y: 0.41509426, z: 0.010190464, w: 0.9097095} + inSlope: {x: 0.021222264, y: -1.3473593, z: -0.0067246337, w: 0.5849719} + outSlope: {x: 0.021222264, y: -1.3473593, z: -0.0067246337, w: 0.5849719} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.0036922614, y: 0.34122995, z: 0.010170328, w: 0.93991756} + inSlope: {x: 0.022445405, y: -1.6437279, z: -0.007099918, w: 0.6094293} + outSlope: {x: 0.022445405, y: -1.6437279, z: -0.007099918, w: 0.6094293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.0027793888, y: 0.2781169, z: 0.009598804, w: 0.9604953} + inSlope: {x: 0.018205367, y: -0.90167844, z: -0.027490076, w: 0.2879512} + outSlope: {x: 0.018205367, y: -0.90167844, z: -0.027490076, w: 0.2879512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.0016086778, y: 0.25311708, z: 0.006148373, w: 0.9674148} + inSlope: {x: 0.014364127, y: -1.0700198, z: -0.029257813, w: 0.24355105} + outSlope: {x: 0.014364127, y: -1.0700198, z: -0.029257813, w: 0.24355105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0009781369, y: 0.17692176, z: 0.0054413374, w: 0.9842094} + inSlope: {x: 0.019302199, y: -3.064692, z: -0.07463026, w: 0.39099178} + outSlope: {x: 0.019302199, y: -3.064692, z: -0.07463026, w: 0.39099178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.0000001616508, y: -0.002273879, z: -0.00007081423, w: 0.99999744} + inSlope: {x: 0.011735706, y: -2.150348, z: -0.06614583, w: 0.18945627} + outSlope: {x: 0.011735706, y: -2.150348, z: -0.06614583, w: 0.18945627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: -0.00000016164084, y: -0.002273879, z: -0.00007081426, w: 0.99999744} + inSlope: {x: 2.3942445e-10, y: 0, z: -6.1118033e-10, w: 0} + outSlope: {x: 2.3942445e-10, y: 0, z: -6.1118033e-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: 2.5 + value: {x: -0.00000016114218, y: -0.0022738804, z: -0.00007081569, w: 0.99999744} + inSlope: {x: 2.394247e-10, y: 0, z: -6.984926e-10, w: 0} + outSlope: {x: 2.394247e-10, y: 0, z: -6.984926e-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: 4.541667 + value: {x: -0.0000001606535, y: -0.0022738818, z: -0.0000708171, w: 0.99999744} + inSlope: {x: 2.3942404e-10, y: 0, z: -6.984896e-10, w: 0} + outSlope: {x: 2.3942404e-10, y: 0, z: -6.984896e-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: 5.791667 + value: {x: -0.0000001603543, y: -0.0022738825, z: -0.00007081795, w: 0.99999744} + inSlope: {x: 0.00000000147475, y: 0.000008733977, z: 0.00000027066665, w: 0} + outSlope: {x: 0.00000000147475, y: 0.000008733977, z: 0.00000027066665, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.8333335 + value: {x: -0.00000016024138, y: -0.0022731547, z: -0.000070795366, w: 0.99999744} + inSlope: {x: -0.013698483, y: 2.3200343, z: 0.07123434, w: -0.22125162} + outSlope: {x: -0.013698483, y: 2.3200343, z: 0.07123434, w: -0.22125162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.875 + value: {x: -0.0011416961, y: 0.19106156, z: 0.0058653546, w: 0.9815599} + inSlope: {x: -0.021849975, y: 3.5041614, z: 0.07303214, w: -0.514952} + outSlope: {x: -0.021849975, y: 3.5041614, z: 0.07303214, w: -0.514952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.916667 + value: {x: -0.0018209923, y: 0.2897403, z: 0.006015195, w: 0.95708466} + inSlope: {x: -0.014360001, y: 1.7029943, z: 0.009075542, w: -0.46381673} + outSlope: {x: -0.014360001, y: 1.7029943, z: 0.009075542, w: -0.46381673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.9583335 + value: {x: -0.0023383661, y: 0.33297834, z: 0.0066216486, w: 0.94290835} + inSlope: {x: -0.008230229, y: 0.32953316, z: 0.017753147, w: -0.10511225} + outSlope: {x: -0.008230229, y: 0.32953316, z: 0.017753147, w: -0.10511225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6 + value: {x: -0.0025068421, y: 0.3172013, z: 0.007494618, w: 0.94832534} + inSlope: {x: -0.00011077791, y: -0.73545146, z: 0.020324348, w: 0.23325029} + outSlope: {x: -0.00011077791, y: -0.73545146, z: 0.020324348, w: 0.23325029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.041667 + value: {x: -0.0023475958, y: 0.27169043, z: 0.008315347, w: 0.96234596} + inSlope: {x: -0.00042540499, y: -0.397769, z: 0.013036568, w: 0.12529491} + outSlope: {x: -0.00042540499, y: -0.397769, z: 0.013036568, w: 0.12529491} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.0833335 + value: {x: -0.0025422906, y: 0.28405347, z: 0.008581004, w: 0.9587667} + inSlope: {x: -0.012017997, y: 0.9211495, z: 0.008317595, w: -0.30082697} + outSlope: {x: -0.012017997, y: 0.9211495, z: 0.008317595, w: -0.30082697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.125 + value: {x: -0.0033490916, y: 0.3484526, z: 0.009008477, w: 0.93727714} + inSlope: {x: -0.022687634, y: 1.3458978, z: 0.02029029, w: -0.48810762} + outSlope: {x: -0.022687634, y: 1.3458978, z: 0.02029029, w: -0.48810762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.291667 + value: {x: -0.0072357683, y: 0.47264814, z: 0.013489037, w: 0.8811183} + inSlope: {x: -0.007595936, y: 0.27976078, z: 0.0042217392, w: -0.14838636} + outSlope: {x: -0.007595936, y: 0.27976078, z: 0.0042217392, w: -0.14838636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.5833335 + value: {x: -0.005752528, y: 0.42295715, z: 0.012322915, w: 0.90604764} + inSlope: {x: 0.0061781844, y: -0.20767207, z: -0.005839672, w: 0.09728302} + outSlope: {x: 0.0061781844, y: -0.20767207, z: -0.005839672, w: 0.09728302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: -0.0049592904, y: 0.39451042, z: 0.011550073, w: 0.9188055} + inSlope: {x: 0.0015629672, y: -0.08342966, z: -0.0007322375, w: 0.036027156} + outSlope: {x: 0.0015629672, y: -0.08342966, z: -0.0007322375, w: 0.036027156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.033837583, y: -0.0033009837, z: -0.051940314, w: 0.9980713} + inSlope: {x: 1.4668121, y: -0.32186946, z: -2.2887933, w: -0.32857847} + outSlope: {x: 1.4668121, y: -0.32186946, z: -2.2887933, w: -0.32857847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.09495476, y: -0.016712211, z: -0.14730671, w: 0.98438054} + inSlope: {x: 1.102628, y: -0.34147698, z: -1.7433861, w: -0.31591487} + outSlope: {x: 1.102628, y: -0.34147698, z: -1.7433861, w: -0.31591487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.12572326, y: -0.0317574, z: -0.1972225, w: 0.9717451} + inSlope: {x: 0.32298312, y: -0.23752025, z: -0.401708, w: -0.109441996} + outSlope: {x: 0.32298312, y: -0.23752025, z: -0.401708, w: -0.109441996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.12187002, y: -0.036505565, z: -0.18078238, w: 0.9752604} + inSlope: {x: -0.14836092, y: -0.13065197, z: 0.70354426, w: 0.13404393} + outSlope: {x: -0.14836092, y: -0.13065197, z: 0.70354426, w: 0.13404393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.09111143, y: -0.051695064, z: -0.007899721, w: 0.99446666} + inSlope: {x: -0.27664158, y: -0.063986994, z: 1.6709888, w: 0.03575279} + outSlope: {x: -0.27664158, y: -0.063986994, z: 1.6709888, w: 0.03575279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: 0.049393494, y: -0.05954865, z: 0.17700198, w: 0.9811649} + inSlope: {x: -0.19516733, y: -0.011157755, z: 0.07015824, w: -0.002499085} + outSlope: {x: -0.19516733, y: -0.011157755, z: 0.07015824, w: -0.002499085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.015003024, y: -0.02707462, z: -0.0048556975, w: 0.99950904} + inSlope: {x: -0.12044107, y: 0.24855997, z: -1.3582733, w: 0.0007260144} + outSlope: {x: -0.12044107, y: 0.24855997, z: -1.3582733, w: 0.0007260144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.006067214, y: 0.0006413231, z: -0.2057962, w: 0.9785759} + inSlope: {x: -0.018193059, y: 0.036681443, z: -0.7699356, w: -0.15623967} + outSlope: {x: -0.018193059, y: 0.036681443, z: -0.7699356, w: -0.15623967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.006250981, y: 0.0074867844, z: -0.24000563, w: 0.9707225} + inSlope: {x: 0.0020643808, y: 0.008348825, z: -0.00011050698, w: -0.000102281636} + outSlope: {x: 0.0020643808, y: 0.008348825, z: -0.00011050698, w: -0.000102281636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.0416667 + value: {x: 0.006252449, y: 0.0074855755, z: -0.24019393, w: 0.97067595} + inSlope: {x: 0.0000007208423, y: -0.0000005867321, z: -0.000092267815, w: -0.00002288814} + outSlope: {x: 0.0000007208423, y: -0.0000005867321, z: -0.000092267815, w: -0.00002288814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.125 + value: {x: 0.0062539466, y: 0.00748434, z: -0.24038608, w: 0.9706284} + inSlope: {x: 0.0000007152544, y: -0.00000059790796, z: -0.000092267815, w: -0.00002288814} + outSlope: {x: 0.0000007152544, y: -0.00000059790796, z: -0.000092267815, w: -0.00002288814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.666667 + value: {x: 0.006254337, y: 0.0074840253, z: -0.24043603, w: 0.970616} + inSlope: {x: 0.0014788695, y: 0.010494686, z: -0.00010442721, w: -0.00012087855} + outSlope: {x: 0.0014788695, y: 0.010494686, z: -0.00010442721, w: -0.00012087855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.75 + value: {x: 0.0068153823, y: 0.010159556, z: -0.25938693, w: 0.96569604} + inSlope: {x: 0.0146703515, y: 0.040655095, z: -0.79837835, w: -0.22789586} + outSlope: {x: 0.0146703515, y: 0.040655095, z: -0.79837835, w: -0.22789586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.8333335 + value: {x: 0.008401841, y: 0.012135089, z: -0.37234622, w: 0.92797655} + inSlope: {x: 0.021246675, y: 0.007063412, z: -1.6157899, w: -0.6545745} + outSlope: {x: 0.021246675, y: 0.007063412, z: -1.6157899, w: -0.6545745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.916667 + value: {x: 0.010968187, y: 0.013460128, z: -0.50212353, w: 0.8646216} + inSlope: {x: 0.041407682, y: 0.03056474, z: -1.241782, w: -0.70714796} + outSlope: {x: 0.041407682, y: 0.03056474, z: -1.241782, w: -0.70714796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.041667 + value: {x: 0.014988281, y: 0.016729828, z: -0.5516299, w: 0.8337865} + inSlope: {x: 0.0020886017, y: 0.0025652149, z: 0.4733603, w: 0.305172} + outSlope: {x: 0.0020886017, y: 0.0025652149, z: 0.4733603, w: 0.305172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.2083335 + value: {x: 0.009369872, y: 0.0108833965, z: -0.34717548, w: 0.93769026} + inSlope: {x: -0.051441118, y: -0.061437353, z: 1.7986026, w: 0.6606585} + outSlope: {x: -0.051441118, y: -0.061437353, z: 1.7986026, w: 0.6606585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.3333335 + value: {x: 0.0025900237, y: 0.0024503854, z: -0.102690615, w: 0.994707} + inSlope: {x: -0.052352488, y: -0.064398915, z: 1.9137845, w: 0.20379215} + outSlope: {x: -0.052352488, y: -0.064398915, z: 1.9137845, w: 0.20379215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.541667 + value: {x: -0.0026239734, y: -0.0027311945, z: 0.13965988, w: 0.9901923} + inSlope: {x: -0.009165062, y: 0.005879775, z: 0.062766746, w: -0.00825529} + outSlope: {x: -0.009165062, y: 0.005879775, z: 0.062766746, w: -0.00825529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.75 + value: {x: -0.0011508644, y: -0.00037452858, z: 0.027825616, w: 0.99961203} + inSlope: {x: 0.02103291, y: 0.008565583, z: -0.5636972, w: 0.01766755} + outSlope: {x: 0.02103291, y: 0.008565583, z: -0.5636972, w: 0.01766755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: -0.00034250258, y: -0.00009969137, z: 0.0077781575, w: 0.9999697} + inSlope: {x: 0.019400535, y: 0.0065960423, z: -0.48113537, w: 0.008584434} + outSlope: {x: 0.019400535, y: 0.0065960423, z: -0.48113537, w: 0.008584434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08179519, y: -0.30415666, z: 0.6358772, w: 0.70459807} + inSlope: {x: 0.16826767, y: -0.94006705, z: -0.9975815, w: 0.4515953} + outSlope: {x: 0.16826767, y: -0.94006705, z: -0.9975815, w: 0.4515953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.07478404, y: -0.34332612, z: 0.5943113, w: 0.72341454} + inSlope: {x: 0.19349393, y: -1.100534, z: -1.1918077, w: 0.45299077} + outSlope: {x: 0.19349393, y: -1.100534, z: -1.1918077, w: 0.45299077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.04131904, y: -0.51236063, z: 0.42791468, w: 0.74341667} + inSlope: {x: 0.39329222, y: -1.5209758, z: -0.94002366, w: -0.49278396} + outSlope: {x: 0.39329222, y: -1.5209758, z: -0.94002366, w: -0.49278396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.021450259, y: -0.58034223, z: 0.39858672, w: 0.70983905} + inSlope: {x: 0.42242503, y: -1.296632, z: -0.4480852, w: -0.760103} + outSlope: {x: 0.42242503, y: -1.296632, z: -0.4480852, w: -0.760103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.006875393, y: -0.642972, z: 0.40113407, w: 0.6524042} + inSlope: {x: 0.30620763, y: -0.38041583, z: 0.43318212, w: -0.64463776} + outSlope: {x: 0.30620763, y: -0.38041583, z: 0.43318212, w: -0.64463776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.036498025, y: -0.63841695, z: 0.4615582, w: 0.6148623} + inSlope: {x: 0.5959, y: 0.52234113, z: 0.86943936, w: -0.16067077} + outSlope: {x: 0.5959, y: 0.52234113, z: 0.86943936, w: -0.16067077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.24649982, y: -0.42981318, z: 0.6184677, w: 0.6099149} + inSlope: {x: 1.6007535, y: 1.9071791, z: 0.96316934, w: -0.2999402} + outSlope: {x: 1.6007535, y: 1.9071791, z: 0.96316934, w: -0.2999402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.37046254, y: -0.25010905, z: 0.702981, w: 0.55319136} + inSlope: {x: 1.189415, y: 2.2613132, z: 1.049691, w: -1.1059446} + outSlope: {x: 1.189415, y: 2.2613132, z: 1.049691, w: -1.1059446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.40410456, y: -0.03158063, z: 0.82850415, w: 0.3863716} + inSlope: {x: -0.81726116, y: 0.7625682, z: 0.9492054, w: -1.0956552} + outSlope: {x: -0.81726116, y: 0.7625682, z: 0.9492054, w: -1.0956552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.25898984, y: -0.025752667, z: 0.9166907, w: 0.30321482} + inSlope: {x: -0.69496715, y: -0.11426854, z: 0.30057567, w: -0.28770858} + outSlope: {x: -0.69496715, y: -0.11426854, z: 0.30057567, w: -0.28770858} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22491238, y: -0.031074962, z: 0.92731225, w: 0.29755807} + inSlope: {x: -0.21787214, y: -0.015864383, z: 0.04194831, w: 0.03195686} + outSlope: {x: -0.21787214, y: -0.015864383, z: 0.04194831, w: 0.03195686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.1556585, y: -0.024626944, z: 0.93419814, w: 0.32005903} + inSlope: {x: 0.040011264, y: 0.037770033, z: -0.016962305, w: 0.032895714} + outSlope: {x: 0.040011264, y: 0.037770033, z: -0.016962305, w: 0.032895714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0833335 + value: {x: 0.20395891, y: -0.02638799, z: 0.9284627, w: 0.30929202} + inSlope: {x: -0.0194323, y: -0.05032392, z: 0.023045573, w: -0.06072993} + outSlope: {x: -0.0194323, y: -0.05032392, z: 0.023045573, w: -0.06072993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.16515964, y: -0.044969525, z: 0.93830377, w: 0.3004765} + inSlope: {x: -0.07330499, y: -0.0014537992, z: 0.0055782693, w: 0.022746878} + outSlope: {x: -0.07330499, y: -0.0014537992, z: 0.0055782693, w: 0.022746878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.3333335 + value: {x: 0.21634069, y: -0.006620522, z: 0.92199033, w: 0.3210712} + inSlope: {x: 0.03892422, y: -0.00049708365, z: -0.00008940342, w: -0.025909439} + outSlope: {x: 0.03892422, y: -0.00049708365, z: -0.00008940342, w: -0.025909439} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4 + value: {x: 0.15911372, y: -0.044420745, z: 0.94076824, w: 0.29608226} + inSlope: {x: -0.09637412, y: -0.05037935, z: 0.015413071, w: -0.0046310714} + outSlope: {x: -0.09637412, y: -0.05037935, z: 0.015413071, w: -0.0046310714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.625 + value: {x: 0.17690985, y: -0.022646874, z: 0.9309516, w: 0.31862074} + inSlope: {x: 0.10813467, y: 0.06571716, z: -0.032285873, w: 0.03902036} + outSlope: {x: 0.10813467, y: 0.06571716, z: -0.032285873, w: 0.03902036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.4583335 + value: {x: 0.17691045, y: -0.038836323, z: 0.93600935, w: 0.30179626} + inSlope: {x: -0.10756486, y: -0.0593234, z: 0.030819772, w: -0.040249385} + outSlope: {x: -0.10756486, y: -0.0593234, z: 0.030819772, w: -0.040249385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.625 + value: {x: 0.15235022, y: -0.047204383, z: 0.94158727, w: 0.2966051} + inSlope: {x: -0.2683199, y: -0.05624713, z: 0.044251315, w: -0.014448548} + outSlope: {x: -0.2683199, y: -0.05624713, z: 0.044251315, w: -0.014448548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.7083335 + value: {x: 0.13899854, y: -0.05210057, z: 0.93992954, w: 0.30740425} + inSlope: {x: 0.44588318, y: -0.086448595, z: -0.2535541, w: 0.51042485} + outSlope: {x: 0.44588318, y: -0.086448595, z: -0.2535541, w: 0.51042485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.791667 + value: {x: 0.23262106, y: -0.074683905, z: 0.89232534, w: 0.37955943} + inSlope: {x: 1.2762954, y: -0.62104726, z: -0.8170084, w: 1.0056313} + outSlope: {x: 1.2762954, y: -0.62104726, z: -0.8170084, w: 1.0056313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.875 + value: {x: 0.29978073, y: -0.1476067, z: 0.8234085, w: 0.4586308} + inSlope: {x: 0.031631574, y: -0.8686987, z: -0.6263726, w: 0.8391595} + outSlope: {x: 0.031631574, y: -0.8686987, z: -0.6263726, w: 0.8391595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.916667 + value: {x: 0.28425235, y: -0.18110113, z: 0.8023122, w: 0.492644} + inSlope: {x: -0.30580556, y: -0.9844897, z: -0.6012813, w: 0.7781501} + outSlope: {x: -0.30580556, y: -0.9844897, z: -0.6012813, w: 0.7781501} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.9583335 + value: {x: 0.27429685, y: -0.22964758, z: 0.77330166, w: 0.5234768} + inSlope: {x: -0.44999662, y: -1.1127789, z: -0.6669685, w: 0.7319919} + outSlope: {x: -0.44999662, y: -1.1127789, z: -0.6669685, w: 0.7319919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6 + value: {x: 0.24675277, y: -0.27383235, z: 0.7467317, w: 0.5536431} + inSlope: {x: -0.7693132, y: -1.026972, z: -0.61798704, w: 0.66847706} + outSlope: {x: -0.7693132, y: -1.026972, z: -0.61798704, w: 0.66847706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.041667 + value: {x: 0.21018724, y: -0.31522873, z: 0.72180265, w: 0.5791833} + inSlope: {x: -1.6556942, y: -0.31944984, z: -0.4292568, w: 0.8735967} + outSlope: {x: -1.6556942, y: -0.31944984, z: -0.4292568, w: 0.8735967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.0833335 + value: {x: 0.108778365, y: -0.30045354, z: 0.71096015, w: 0.62644285} + inSlope: {x: -2.1458716, y: 0.22812632, z: -0.4338994, w: 1.0202131} + outSlope: {x: -2.1458716, y: 0.22812632, z: -0.4338994, w: 1.0202131} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.25 + value: {x: -0.0930924, y: -0.31963214, z: 0.56770813, w: 0.7529121} + inSlope: {x: -0.4458835, y: -0.31795213, z: -0.84231126, w: 0.45566055} + outSlope: {x: -0.4458835, y: -0.31795213, z: -0.84231126, w: 0.45566055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.375 + value: {x: -0.10787663, y: -0.35470575, z: 0.5029436, w: 0.7807652} + inSlope: {x: -0.048678137, y: 0.0010909587, z: -0.15474318, w: 0.09454746} + outSlope: {x: -0.048678137, y: 0.0010909587, z: -0.15474318, w: 0.09454746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.5 + value: {x: -0.10869071, y: -0.32205215, z: 0.523106, w: 0.7815554} + inSlope: {x: 0.11503738, y: 0.2881189, z: 0.37965095, w: -0.120685294} + outSlope: {x: 0.11503738, y: 0.2881189, z: 0.37965095, w: -0.120685294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: -0.0846649, y: -0.2892589, z: 0.64764786, w: 0.69979525} + inSlope: {x: 0.03956264, y: -0.00029110687, z: 0.24659112, w: -0.22024845} + outSlope: {x: 0.03956264, y: -0.00029110687, z: 0.24659112, w: -0.22024845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000000019592369, y: -0.5175888, z: -0.0000000021769284, w: 0.8556295} + inSlope: {x: -0.000000017751603, y: 0.5875418, z: 0.00000003180811, w: 0.34412813} + outSlope: {x: -0.000000017751603, y: 0.5875418, z: 0.00000003180811, w: 0.34412813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.000000021904885, y: -0.4445985, z: 0.0000000014926014, w: 0.89573} + inSlope: {x: -0.000000048065893, y: 1.5162227, z: 0.00000007007876, w: 0.72418785} + outSlope: {x: -0.000000048065893, y: 1.5162227, z: 0.00000007007876, w: 0.72418785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.00000002433751, y: -0.366756, z: 0.000000004988306, w: 0.93031716} + inSlope: {x: -0.00000006761482, y: 2.288556, z: 0.00000009853608, w: 0.85805154} + outSlope: {x: -0.00000006761482, y: 2.288556, z: 0.00000009853608, w: 0.85805154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0.000000027539453, y: -0.25388548, z: 0.000000009703942, w: 0.9672343} + inSlope: {x: -0.00000008917256, y: 3.4748054, z: 0.0000001371049, w: 0.8003918} + outSlope: {x: -0.00000008917256, y: 3.4748054, z: 0.0000001371049, w: 0.8003918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.000000031768558, y: -0.077188835, z: 0.000000016413717, w: 0.9970165} + inSlope: {x: -0.000000068747866, y: 3.0466256, z: 0.00000011498498, w: 0.3931882} + outSlope: {x: -0.000000068747866, y: 3.0466256, z: 0.00000011498498, w: 0.3931882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.000000033268442, y: -0.000000005587937, z: 0.000000019286023, w: 1} + inSlope: {x: -0.000000017164002, y: 0.92626613, z: 0.000000037373738, w: 0.035802133} + outSlope: {x: -0.000000017164002, y: 0.92626613, z: 0.000000037373738, w: 0.035802133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.00000003319889, y: -0.0000000053947735, z: 0.000000019528194, w: 1} + inSlope: {x: 0.0000000016692352, y: 0.0000000046359174, z: 0.0000000058120966, w: 0} + outSlope: {x: 0.0000000016692352, y: 0.0000000046359174, z: 0.0000000058120966, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: -0.000000029721258, y: 0.000000004263387, z: 0.000000031636706, w: 1} + inSlope: {x: 0.0000000016692583, y: 0.0000000046359174, z: 0.000000005812103, w: 0} + outSlope: {x: 0.0000000016692583, y: 0.0000000046359174, z: 0.000000005812103, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.416667 + value: {x: -0.000000026313177, y: 0.000000013728386, z: 0.00000004350305, w: 1} + inSlope: {x: 0.0000000016692535, y: 0.0000000046359308, z: 0.0000000058120864, w: 0} + outSlope: {x: 0.0000000016692535, y: 0.0000000046359308, z: 0.0000000058120864, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.8333335 + value: {x: -0.000000023948388, y: 0.000000020295936, z: 0.000000051736837, w: 1} + inSlope: {x: 0.0000000016692631, y: 0.000000004635904, z: 0.0000000058121197, w: 0} + outSlope: {x: 0.0000000016692631, y: 0.000000004635904, z: 0.0000000058121197, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.875 + value: {x: -0.000000023878835, y: 0.000000020489097, z: 0.000000051979008, w: 1} + inSlope: {x: 0.000000016669492, y: -0.2856938, z: -0.0000000011677064, w: -0.0034010152} + outSlope: {x: 0.000000016669492, y: -0.2856938, z: -0.0000000011677064, w: -0.0034010152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.916667 + value: {x: -0.000000022559254, y: -0.023807976, z: 0.000000051639525, w: 0.9997166} + inSlope: {x: 0.0000000016691031, y: 0.0000029802322, z: 0.000000005812166, w: 0.000000038882717} + outSlope: {x: 0.0000000016691031, y: 0.0000029802322, z: 0.000000005812166, w: 0.000000038882717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.9583335 + value: {x: -0.000000023739728, y: -0.0000000037252572, z: 0.00000005246335, w: 1} + inSlope: {x: -0.0000000133311255, y: 0.2856969, z: 0.000000012791949, w: 0.003401054} + outSlope: {x: -0.0000000133311255, y: 0.2856969, z: 0.000000012791949, w: 0.003401054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6 + value: {x: -0.000000023670177, y: 0.000000005456968, z: 0.000000052705516, w: 1} + inSlope: {x: 0.0000000016701914, y: -0.000017136223, z: 0.00000000581166, w: 0} + outSlope: {x: 0.0000000016701914, y: -0.000017136223, z: 0.00000000581166, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.041667 + value: {x: -0.000000023600546, y: -0.0000014317548, z: 0.000000052947655, w: 1} + inSlope: {x: 0.00000012953511, y: -2.3050873, z: -0.00000006031558, w: -0.22347249} + outSlope: {x: 0.00000012953511, y: -2.3050873, z: -0.00000006031558, w: -0.22347249} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.0833335 + value: {x: -0.000000012875625, y: -0.19208987, z: 0.00000004767924, w: 0.98137736} + inSlope: {x: 0.00000020683578, y: -3.597423, z: -0.000000108079206, w: -0.551922} + outSlope: {x: 0.00000020683578, y: -3.597423, z: -0.000000108079206, w: -0.551922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.125 + value: {x: -0.000000006364297, y: -0.29978552, z: 0.00000004394109, w: 0.9540067} + inSlope: {x: 0.00000012304764, y: -1.991796, z: -0.000000071280084, w: -0.572204} + outSlope: {x: 0.00000012304764, y: -1.991796, z: -0.000000071280084, w: -0.572204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.2083335 + value: {x: -8.2298823e-10, y: -0.3841176, z: 0.000000040821583, w: 0.9232842} + inSlope: {x: 0.000000025350937, y: -0.3419733, z: -0.000000009358352, w: -0.1372066} + outSlope: {x: 0.000000025350937, y: -0.3419733, z: -0.000000009358352, w: -0.1372066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.375 + value: {x: -0.0000000020755793, y: -0.35474035, z: 0.000000043140886, w: 0.9349649} + inSlope: {x: 0.000000015176736, y: -0.17976081, z: -0.0000000020041266, w: -0.07071588} + outSlope: {x: 0.000000015176736, y: -0.17976081, z: -0.0000000020041266, w: -0.07071588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.5 + value: {x: 0.0000000028926086, y: -0.42391852, z: 0.000000040687, w: 0.9057003} + inSlope: {x: 0.000000038513562, y: -0.5212318, z: -0.00000001946459, w: -0.24334529} + outSlope: {x: 0.000000038513562, y: -0.5212318, z: -0.00000001946459, w: -0.24334529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 0.00000001092723, y: -0.5230607, z: 0.000000037152574, w: 0.8522955} + inSlope: {x: 0.000000013304328, y: -0.12500858, z: -0.0000000013236457, w: -0.07619275} + outSlope: {x: 0.000000013304328, y: -0.12500858, z: -0.0000000013236457, w: -0.07619275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.036483355, y: 0.0027984625, z: 0.21403916, w: 0.97613955} + inSlope: {x: 2.059651, y: 0.32527694, z: 2.3124642, w: -0.8057513} + outSlope: {x: 2.059651, y: 0.32527694, z: 2.3124642, w: -0.8057513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.122302145, y: 0.016351668, z: 0.31039184, w: 0.9425666} + inSlope: {x: 1.7187262, y: 0.39276665, z: 1.7519708, w: -0.7363608} + outSlope: {x: 1.7187262, y: 0.39276665, z: 1.7519708, w: -0.7363608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.17971054, y: 0.035529017, z: 0.36003673, w: 0.91477615} + inSlope: {x: 0.9399625, y: 0.28252697, z: 0.3234075, w: -0.2841432} + outSlope: {x: 0.9399625, y: 0.28252697, z: 0.3234075, w: -0.2841432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.20063235, y: 0.039895583, z: 0.33734247, w: 0.918888} + inSlope: {x: 0.46862286, y: -0.02006394, z: -0.9691329, w: 0.23483418} + outSlope: {x: 0.46862286, y: -0.02006394, z: -0.9691329, w: 0.23483418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: 0.23349062, y: 0.020836558, z: 0.19393367, w: 0.95259523} + inSlope: {x: 0.30584013, y: -0.3659308, z: -2.2130609, w: 0.36852837} + outSlope: {x: 0.30584013, y: -0.3659308, z: -2.2130609, w: 0.36852837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.2509418, y: -0.015162055, z: -0.003023572, w: 0.96787876} + inSlope: {x: 0.11874512, y: -0.42756468, z: -2.208005, w: -0.030576497} + outSlope: {x: 0.11874512, y: -0.42756468, z: -2.208005, w: -0.030576497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: 0.2549345, y: -0.049317893, z: -0.17280409, w: 0.9501131} + inSlope: {x: -0.063401535, y: -0.0032029673, z: -0.12782392, w: -0.0041777752} + outSlope: {x: -0.063401535, y: -0.0032029673, z: -0.12782392, w: -0.0041777752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.14849286, y: 0.0078079333, z: 0.06262405, w: 0.98689777} + inSlope: {x: -0.84590065, y: 0.22260877, z: 1.7907904, w: 0.009020153} + outSlope: {x: -0.84590065, y: 0.22260877, z: 1.7907904, w: 0.009020153} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.046106208, y: 0.0127590755, z: 0.27674037, w: 0.9597532} + inSlope: {x: -0.6664784, y: -0.10395405, z: 1.3963622, w: -0.35759002} + outSlope: {x: -0.6664784, y: -0.10395405, z: 1.3963622, w: -0.35759002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.00012094721, y: 0.000046203048, z: 0.37414363, w: 0.9273708} + inSlope: {x: -0.068726785, y: -0.02586061, z: 0.14427294, w: -0.056884345} + outSlope: {x: -0.068726785, y: -0.02586061, z: 0.14427294, w: -0.056884345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0.00000056346136, y: -0.0000023655707, z: 0.3741601, w: 0.9273641} + inSlope: {x: 1.2073537e-10, y: -0.0000000019290374, z: 0.000099062876, w: -0.000040054303} + outSlope: {x: 1.2073537e-10, y: -0.0000000019290374, z: 0.000099062876, w: -0.000040054303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.125 + value: {x: 0.0000005637131, y: -0.0000023695875, z: 0.3743663, w: 0.9272809} + inSlope: {x: 1.2141765e-10, y: -0.0000000019263116, z: 0.00009870538, w: -0.000040054358} + outSlope: {x: 1.2141765e-10, y: -0.0000000019263116, z: 0.00009870538, w: -0.000040054358} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.166667 + value: {x: 0.00000056396175, y: -0.000002373524, z: 0.3745684, w: 0.9271993} + inSlope: {x: 1.2346367e-10, y: -0.0000000019290347, z: 0.00009906273, w: -0.000040054245} + outSlope: {x: 1.2346367e-10, y: -0.0000000019290347, z: 0.00009906273, w: -0.000040054245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.5833335 + value: {x: 0.00000056401274, y: -0.000002374327, z: 0.37460968, w: 0.9271826} + inSlope: {x: 0.00000014695398, y: 0.00000003335039, z: 0.05741058, w: -0.02336821} + outSlope: {x: 0.00000014695398, y: 0.00000003335039, z: 0.05741058, w: -0.02336821} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.8333335 + value: {x: 0.0000008578631, y: -0.0000022851555, z: 0.48812452, w: 0.872774} + inSlope: {x: 0.0000015286903, y: 0.000000569696, z: 0.58394307, w: -0.32564217} + outSlope: {x: 0.0000015286903, y: 0.000000569696, z: 0.58394307, w: -0.32564217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6 + value: {x: 0.0000010101894, y: -0.0000022223708, z: 0.5459207, w: 0.8378369} + inSlope: {x: -0.0000002584522, y: -0.00000011653199, z: -0.097712636, w: 0.062316526} + outSlope: {x: -0.0000002584522, y: -0.00000011653199, z: -0.097712636, w: 0.062316526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.166667 + value: {x: 0.0000005523898, y: -0.0000023781986, z: 0.37010112, w: 0.9289915} + inSlope: {x: -0.0000048189477, y: -0.0000010919201, z: -1.8821878, w: 0.73825246} + outSlope: {x: -0.0000048189477, y: -0.0000010919201, z: -1.8821878, w: 0.73825246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.291667 + value: {x: -0.00037138365, y: 0.00017688854, z: 0.09929584, w: 0.9950579} + inSlope: {x: -0.007873211, y: 0.0049896063, z: -2.201277, w: 0.22558203} + outSlope: {x: -0.007873211, y: 0.0049896063, z: -2.201277, w: 0.22558203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.5 + value: {x: -0.0028247177, y: 0.0025682866, z: -0.18794641, w: 0.9821719} + inSlope: {x: -0.015114387, y: 0.013328387, z: 0.00298734, w: 0.00044665486} + outSlope: {x: -0.015114387, y: 0.013328387, z: 0.00298734, w: 0.00044665486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.666667 + value: {x: -0.005917077, y: 0.0037312682, z: -0.013521341, w: 0.9998841} + inSlope: {x: -0.019017916, y: -0.00058962824, z: 1.5331122, w: 0.020249285} + outSlope: {x: -0.019017916, y: -0.00058962824, z: 1.5331122, w: 0.020249285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.75 + value: {x: -0.007296849, y: 0.0034497094, z: 0.10730436, w: 0.99419343} + inSlope: {x: -0.01237035, y: -0.0042647496, z: 1.1494267, w: -0.11400865} + outSlope: {x: -0.01237035, y: -0.0042647496, z: 1.1494267, w: -0.11400865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: -0.007707036, y: 0.0032785572, z: 0.14641456, w: 0.9891879} + inSlope: {x: -0.009844414, y: -0.004107621, z: 0.9386378, w: -0.12013201} + outSlope: {x: -0.009844414, y: -0.004107621, z: 0.9386378, w: -0.12013201} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.22115107, y: -0.35973185, z: -0.152941, w: 0.89347315} + inSlope: {x: 0.43811595, y: 0.7452829, z: -0.088810086, w: 0.37246227} + outSlope: {x: 0.43811595, y: 0.7452829, z: -0.088810086, w: 0.37246227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.17758256, y: -0.28072327, z: -0.15807205, w: 0.9298775} + inSlope: {x: 0.6550851, y: 1.3252363, z: 0.023381535, w: 0.5169854} + outSlope: {x: 0.6550851, y: 1.3252363, z: 0.023381535, w: 0.5169854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: -0.09319655, y: -0.07088682, z: -0.11944896, w: 0.9859115} + inSlope: {x: 0.6175637, y: 1.7889383, z: 0.6540513, w: 0.26639986} + outSlope: {x: 0.6175637, y: 1.7889383, z: 0.6540513, w: 0.26639986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.003656107, y: 0.15023112, z: 0.026322441, w: 0.9882937} + inSlope: {x: 0.6509017, y: 0.5691181, z: 0.7490735, w: -0.10183595} + outSlope: {x: 0.6509017, y: 0.5691181, z: 0.7490735, w: -0.10183595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.08756934, y: 0.18674476, z: 0.05981247, w: 0.97666806} + inSlope: {x: 0.45649987, y: 0.38703713, z: -0.20850874, w: -0.10241388} + outSlope: {x: 0.45649987, y: 0.38703713, z: -0.20850874, w: -0.10241388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.085355535, y: 0.2286519, z: 0.0066700554, w: 0.9697362} + inSlope: {x: -0.367361, y: -0.13448031, z: -0.3903612, w: 0.065765604} + outSlope: {x: -0.367361, y: -0.13448031, z: -0.3903612, w: 0.065765604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.033341132, y: 0.1421706, z: -0.01297048, w: 0.98919547} + inSlope: {x: -0.3748259, y: -1.2573953, z: 0.027875094, w: 0.183883} + outSlope: {x: -0.3748259, y: -1.2573953, z: 0.027875094, w: 0.183883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.008919947, y: 0.020761065, z: -0.0057084346, w: 0.9997284} + inSlope: {x: -0.19204172, y: -1.2447028, z: 0.10036734, w: 0.039847594} + outSlope: {x: -0.19204172, y: -1.2447028, z: 0.10036734, w: 0.039847594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.001406808, y: -0.05200792, z: -0.00007461941, w: 0.99864566} + inSlope: {x: 0.0037517985, y: -0.12351394, z: 0.000058278878, w: -0.0063829394} + outSlope: {x: 0.0037517985, y: -0.12351394, z: 0.000058278878, w: -0.0063829394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5416667 + value: {x: -0.0000024278056, y: -0.035405874, z: -0.000001444715, w: 0.999373} + inSlope: {x: 0.00000020080815, y: 0.1570369, z: 0.00000036503826, w: 0.005578991} + outSlope: {x: 0.00000020080815, y: 0.1570369, z: 0.00000036503826, w: 0.005578991} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0.0000024364185, y: -0.042339154, z: -0.0000014616069, w: 0.9991033} + inSlope: {x: -0.00000023494724, y: -0.18666828, z: -0.0000004348607, w: -0.007975106} + outSlope: {x: -0.00000023494724, y: -0.18666828, z: -0.0000004348607, w: -0.007975106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: -0.000002510489, y: -0.104879186, z: -0.0000016048459, w: 0.994485} + inSlope: {x: 0.000000046343306, y: 0.041436464, z: 0.00000009146698, w: 0.004347325} + outSlope: {x: 0.000000046343306, y: 0.041436464, z: 0.00000009146698, w: 0.004347325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.4166667 + value: {x: -0.0000024016801, y: -0.015815675, z: -0.0000014011835, w: 0.99987495} + inSlope: {x: -0.000000049835666, y: -0.037896074, z: -0.00000009064689, w: -0.0006279934} + outSlope: {x: -0.000000049835666, y: -0.037896074, z: -0.00000009064689, w: -0.0006279934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: -0.0000025250433, y: -0.118451774, z: -0.0000016369025, w: 0.9929598} + inSlope: {x: -0.00000009262966, y: -0.0857434, z: -0.00000019148302, w: -0.010150233} + outSlope: {x: -0.00000009262966, y: -0.0857434, z: -0.00000019148302, w: -0.010150233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.75 + value: {x: -0.0000023940245, y: -0.01042582, z: -0.0000013901816, w: 0.99994564} + inSlope: {x: 0.00000022251302, y: 0.16589868, z: 0.00000039102122, w: 0.0018346317} + outSlope: {x: 0.00000022251302, y: 0.16589868, z: 0.00000039102122, w: 0.0018346317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.416667 + value: {x: 0.0002022603, y: -0.0701834, z: -0.00025903797, w: 0.99753404} + inSlope: {x: 0.014375453, y: -0.21807146, z: -0.0141618345, w: -0.015395142} + outSlope: {x: 0.014375453, y: -0.21807146, z: -0.0141618345, w: -0.015395142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.666667 + value: {x: 0.027790882, y: -0.13095754, z: -0.020869106, w: 0.9907786} + inSlope: {x: 0.18872762, y: -0.31952482, z: -0.124570906, w: -0.050048508} + outSlope: {x: 0.18872762, y: -0.31952482, z: -0.124570906, w: -0.050048508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.9583335 + value: {x: 0.09432047, y: -0.10897531, z: -0.007934516, w: 0.9895277} + inSlope: {x: 0.14144406, y: 0.4105227, z: 0.2694131, w: 0.033396132} + outSlope: {x: 0.14144406, y: 0.4105227, z: 0.2694131, w: 0.033396132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.0833335 + value: {x: 0.096263014, y: -0.052912984, z: 0.031200107, w: 0.99345875} + inSlope: {x: -0.31657243, y: 0.44853935, z: 0.18184827, w: 0.047058284} + outSlope: {x: -0.31657243, y: 0.44853935, z: 0.18184827, w: 0.047058284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.166667 + value: {x: 0.026151657, y: -0.018185826, z: 0.009510656, w: 0.99944735} + inSlope: {x: -1.2480295, y: 0.37082255, z: -0.8801575, w: 0.030513905} + outSlope: {x: -1.2480295, y: 0.37082255, z: -0.8801575, w: 0.030513905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.25 + value: {x: -0.083027646, y: 0.008514835, z: -0.11097585, w: 0.9903122} + inSlope: {x: -1.1448832, y: 0.23923954, z: -1.8048654, w: -0.30440024} + outSlope: {x: -1.1448832, y: 0.23923954, z: -1.8048654, w: -0.30440024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.3333335 + value: {x: -0.15469648, y: 0.018905757, z: -0.26999748, w: 0.9501647} + inSlope: {x: -0.579749, y: 0.008627135, z: -1.7462101, w: -0.5770984} + outSlope: {x: -0.579749, y: 0.008627135, z: -1.7462101, w: -0.5770984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.4583335 + value: {x: -0.20294034, y: -0.005483455, z: -0.4005964, w: 0.89348066} + inSlope: {x: -0.30144745, y: -0.53897256, z: -0.035612717, w: -0.090088226} + outSlope: {x: -0.30144745, y: -0.53897256, z: -0.035612717, w: -0.090088226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.5833335 + value: {x: -0.22838119, y: -0.128167, z: -0.31078002, w: 0.91369087} + inSlope: {x: -0.13980371, y: -1.2855275, z: 0.95994556, w: 0.10774725} + outSlope: {x: -0.13980371, y: -1.2855275, z: 0.95994556, w: 0.10774725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.7083335 + value: {x: -0.23445585, y: -0.29131305, z: -0.19912463, w: 0.9058237} + inSlope: {x: 0.047576312, y: -1.1116917, z: 0.695503, w: -0.18356179} + outSlope: {x: 0.047576312, y: -1.1116917, z: 0.695503, w: -0.18356179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: -0.22913536, y: -0.36052388, z: -0.15705186, w: 0.89042366} + inSlope: {x: 0.061756857, y: -0.6657557, z: 0.40820584, w: -0.16665761} + outSlope: {x: 0.061756857, y: -0.6657557, z: 0.40820584, w: -0.16665761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 6.791667 + 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: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000013606579, y: 0.001430926, z: -0.00086729176} + inSlope: {x: 0.00015269118, y: -0.005434892, z: -0.003502491} + outSlope: {x: 0.00015269118, y: -0.005434892, z: -0.003502491} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0.000007244447, y: 0.0012044722, z: -0.0010132289} + inSlope: {x: 0.00015269118, y: -0.005434892, z: -0.003502491} + outSlope: {x: 0.00022115701, y: -0.0007474136, z: -0.0013616681} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.000001970429, y: 0.0011733299, z: -0.0010699651} + inSlope: {x: 0.00022115701, y: -0.0007474136, z: -0.0013616681} + outSlope: {x: 0.0002844545, y: 0.0025456813, z: 0.0004353619} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.0000138227, y: 0.0012794, z: -0.001051825} + inSlope: {x: 0.0002844545, y: 0.0025456813, z: 0.0004353619} + outSlope: {x: 0.0003425836, y: 0.0037739032, z: 0.0018885573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.000028097018, y: 0.001436646, z: -0.00097313506} + inSlope: {x: 0.0003425836, y: 0.0037739032, z: 0.0018885573} + outSlope: {x: 0.00039554434, y: 0.0048323763, z: 0.002997968} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.000044578028, y: 0.0016379949, z: -0.00084821973} + inSlope: {x: 0.00039554434, y: 0.0048323763, z: 0.002997968} + outSlope: {x: 0.00044333702, y: 0.005721144, z: 0.0037635642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.00006305041, y: 0.001876376, z: -0.00069140457} + inSlope: {x: 0.00044333702, y: 0.005721144, z: 0.0037635642} + outSlope: {x: 0.00048596118, y: 0.006440157, z: 0.0041853464} + tangentMode: 0 + weightedMode: 0 + 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.0001051078, y: 0.002435945, z: -0.0003393761} + inSlope: {x: 0.00052341603, y: 0.0069894968, z: 0.004263335} + outSlope: {x: 0.0005557058, y: 0.007369081, z: 0.003997513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.0001282622, y: 0.00274299, z: -0.00017281309} + inSlope: {x: 0.0005557058, y: 0.007369081, z: 0.003997513} + outSlope: {x: 0.0005828209, y: 0.007578916, z: 0.0037797107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: 0.0001525464, y: 0.003058778, z: -0.000015325173} + inSlope: {x: 0.0005828209, y: 0.007578916, z: 0.0037797107} + outSlope: {x: 0.00060477323, y: 0.007619086, z: 0.0038229479} + tangentMode: 0 + weightedMode: 0 + 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.0003099218, y: 0.004741117, z: 0.00093203876} + inSlope: {x: 0.00063700066, y: 0.0052738786, z: 0.00367505} + outSlope: {x: 0.00062794413, y: 0.004295694, z: 0.0035726717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.0004537078, y: 0.0054114, z: 0.0017167369} + inSlope: {x: 0.0005051178, y: 0.0013671105, z: 0.0024789106} + outSlope: {x: 0.00046505078, y: 0.0009633359, z: 0.001858347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: 0.0005059688, y: 0.0054889866, z: 0.001883119} + inSlope: {x: 0.00036940398, y: 0.00029335526, z: 0.00082709035} + outSlope: {x: 0.00031383036, y: -0.00008298381, z: 0.00041634956} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.0005438869, y: 0.005421969, z: 0.001857011} + inSlope: {x: 0.000039849616, y: -0.0005787998, z: -0.00052711176} + outSlope: {x: 0.0000047242684, y: -0.0006156355, z: -0.00058809813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.00054506806, y: 0.005316432, z: 0.0017669883} + inSlope: {x: 0.0000047251624, y: -0.0000041484873, z: -0.00000880123} + outSlope: {x: 0.0000047242684, y: -0.0000041341823, z: -0.00000880123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.4166667 + value: {x: 0.00058936916, y: 0.0053084884, z: 0.0017374129} + inSlope: {x: 0.000025691043, y: -0.0000041484755, z: -0.000008525832} + outSlope: {x: 0.000025690295, y: -0.000004148499, z: -0.00003545536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.4166665 + value: {x: 0.00059159606, y: 0.0054067243, z: 0.001541168} + inSlope: {x: -0.0000362788, y: 0.0001655108, z: -0.000025817253} + outSlope: {x: -0.0000384599, y: 0.00013867272, z: 0.0000014483818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.6666665 + value: {x: 0.00058056467, y: 0.005430843, z: 0.001487848} + inSlope: {x: -0.000049910734, y: 0.000028882136, z: -0.00074354693} + outSlope: {x: -0.000052309828, y: 0.00002889611, z: -0.0012015024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.75 + value: {x: 0.0005761041, y: 0.005396818, z: 0.0013641889} + inSlope: {x: -0.000054744094, y: -0.000845507, z: -0.0017663129} + outSlope: {x: -0.000057214416, y: -0.0023996062, z: -0.0024378547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.7916665 + value: {x: 0.0005737202, y: 0.0052968347, z: 0.0012626121} + inSlope: {x: -0.000057214416, y: -0.0023996062, z: -0.0024378547} + outSlope: {x: -0.000059720714, y: -0.0037483978, z: -0.0032162159} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.8333335 + value: {x: 0.00057123177, y: 0.00514065, z: 0.001128602} + inSlope: {x: -0.000059720714, y: -0.0037483978, z: -0.0032162159} + outSlope: {x: -0.00006226593, y: -0.004892039, z: -0.0041014296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.875 + value: {x: 0.0005686374, y: 0.004936816, z: 0.00095770974} + inSlope: {x: -0.00006226593, y: -0.004892039, z: -0.0041014296} + outSlope: {x: -0.000064843545, y: -0.0058303433, z: -0.005093422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.9166665 + value: {x: 0.00056593557, y: 0.004693886, z: 0.00074548466} + inSlope: {x: -0.000064843545, y: -0.0058303433, z: -0.005093422} + outSlope: {x: -0.00006746061, y: -0.006563258, z: -0.005715037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.0416665 + value: {x: 0.0005571701, y: 0.003816057, z: 0.00002530951} + inSlope: {x: -0.0000727999, y: -0.0074135535, z: -0.0057631293} + outSlope: {x: -0.00007552238, y: -0.0075306413, z: -0.0055863075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.0833335 + value: {x: 0.0005540233, y: 0.003502278, z: -0.00020745507} + inSlope: {x: -0.00007552238, y: -0.0075306413, z: -0.0055863075} + outSlope: {x: -0.000078284145, y: -0.0074426723, z: -0.0052757734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.125 + value: {x: 0.00055076147, y: 0.0031921677, z: -0.0004272781} + inSlope: {x: -0.000078284145, y: -0.0074426723, z: -0.0052757734} + outSlope: {x: -0.000081079015, y: -0.0071492656, z: -0.0048313313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.1666665 + value: {x: 0.0005473832, y: 0.0028942828, z: -0.00062858284} + inSlope: {x: -0.000081079015, y: -0.0071492656, z: -0.0048313313} + outSlope: {x: -0.000083910476, y: -0.0066505615, z: -0.0042529926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.2083335 + value: {x: 0.0005438869, y: 0.002617174, z: -0.00080579217} + inSlope: {x: -0.000083910476, y: -0.0066505615, z: -0.0042529926} + outSlope: {x: -0.0002344045, y: -0.0059467233, z: -0.0035409154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.25 + value: {x: 0.0005341201, y: 0.0023693948, z: -0.0009533298} + inSlope: {x: -0.0002344045, y: -0.0059467233, z: -0.0035409154} + outSlope: {x: -0.0005053239, y: -0.0050375224, z: -0.0026949293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.2916665 + value: {x: 0.000513065, y: 0.0021594989, z: -0.0010656181} + inSlope: {x: -0.0005053239, y: -0.0050375224, z: -0.0026949293} + outSlope: {x: -0.0007354338, y: -0.003923005, z: -0.0017150986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.3333335 + value: {x: 0.0004824217, y: 0.0019960392, z: -0.0011370811} + inSlope: {x: -0.0007354338, y: -0.003923005, z: -0.0017150986} + outSlope: {x: -0.00092475495, y: -0.002603319, z: -0.0006014394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.375 + value: {x: 0.00044389037, y: 0.0018875679, z: -0.001162141} + inSlope: {x: -0.00092475495, y: -0.002603319, z: -0.0006014394} + outSlope: {x: -0.0010732596, y: -0.0016189731, z: 0.0002847122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.4583335 + value: {x: 0.0003499648, y: 0.0017721539, z: -0.001117748} + inSlope: {x: -0.0011809497, y: -0.0011509593, z: 0.00078071357} + outSlope: {x: -0.0012478583, y: -0.00074911874, z: 0.0011664507} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.625 + value: {x: 0.0001422669, y: 0.0017202199, z: -0.0008728217} + inSlope: {x: -0.0012037196, y: 0.0000597813, z: 0.0016624413} + outSlope: {x: -0.0011073962, y: 0.0001971896, z: 0.0016073395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.6666665 + value: {x: 0.000096125565, y: 0.001728436, z: -0.0008058495} + inSlope: {x: -0.0011073962, y: 0.0001971896, z: 0.0016073395} + outSlope: {x: -0.000970259, y: 0.00026844058, z: 0.0014419928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7083335 + value: {x: 0.000055697798, y: 0.0017396212, z: -0.000745766} + inSlope: {x: -0.000970259, y: 0.00026844058, z: 0.0014419928} + outSlope: {x: -0.0007923351, y: 0.0002736221, z: 0.0011664703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.75 + value: {x: 0.00002268396, y: 0.001751022, z: -0.0006971632} + inSlope: {x: -0.0007923351, y: 0.0002736221, z: 0.0011664703} + outSlope: {x: -0.0005735969, y: 0.0002126678, z: 0.0007807046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0.000001215821, y: 0.0017598831, z: -0.00066463405} + inSlope: {x: -0.0005735969, y: 0.0002126678, z: 0.0007807046} + outSlope: {x: -0.0005735969, y: 0.0002126678, z: 0.0007807046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00023914651, y: -0.0012651699, z: 0.00023943788} + inSlope: {x: 0.00010859638, y: -0, z: -0.00022986173} + outSlope: {x: 0.00010859638, y: -0, z: -0.00022986173} + tangentMode: 0 + weightedMode: 0 + 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.00033656994, y: -0.0012651699, z: 0.000072568204} + inSlope: {x: 0.00008574303, y: -0, z: -0.00010933751} + outSlope: {x: 0.00008467116, y: -0, z: -0.00010487805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.00037288447, y: -0.0012651699, z: 0.00003413588} + inSlope: {x: 0.00007369981, y: -0, z: -0.00006380069} + outSlope: {x: 0.00007255561, y: -0, z: -0.00006004935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.00039304455, y: -0.0012651699, z: 0.000019753277} + inSlope: {x: 0.00006564623, y: -0, z: -0.00003889922} + outSlope: {x: 0.00006448752, y: -0, z: -0.00003560189} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.0004059838, y: -0.0012651699, z: 0.000013718902} + inSlope: {x: 0.000059730894, y: -0, z: -0.000021564945} + outSlope: {x: 0.000058515125, y: -0, z: -0.000021564952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.0004108103, y: -0.0012651699, z: 0.000012164263} + inSlope: {x: 0.000057320485, y: -0, z: -0.000015746353} + outSlope: {x: 0.00005609772, y: -0, z: -0.000015746387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0833333 + value: {x: 0.00041314767, y: -0.0012651699, z: 0.000011508167} + inSlope: {x: 0.00005609772, y: -0, z: -0.000015746387} + outSlope: {x: 0.000054874316, y: -0, z: -0.000008848898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2083333 + value: {x: 0.00041985352, y: -0.0012651699, z: 0.000010402054} + inSlope: {x: 0.00005241414, y: -0, z: -0.0000088489205} + outSlope: {x: 0.0000511836, y: -0, z: 0.0000036529102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: 0.00043368264, y: -0.0012651699, z: 0.000011467487} + inSlope: {x: 0.000043623364, y: -0, z: 0.0000036529102} + outSlope: {x: 0.000042335905, y: -0, z: 0.000013738276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: 0.0004388137, y: -0.0012651699, z: 0.000013351887} + inSlope: {x: 0.00003975384, y: -0, z: 0.000017749036} + outSlope: {x: 0.00003846638, y: -0, z: 0.000017749036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.6666665 + value: {x: 0.00044881672, y: -0.0012651699, z: 0.00009369761} + inSlope: {x: -0.000030906318, y: -0, z: 0.000035691395} + outSlope: {x: -0.000032508124, y: -0, z: 0.000034464334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.4583335 + value: {x: 0.00041145986, y: -0.0012651699, z: 0.0001093018} + inSlope: {x: -0.00006218296, y: -0, z: 0.000004498924} + outSlope: {x: -0.000063872576, y: -0, z: 0.0000044989756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.9166665 + value: {x: 0.00037821784, y: -0.0012651699, z: 0.00011830553} + inSlope: {x: -0.00008126051, y: -0, z: 0.00004444437} + outSlope: {x: -0.0000830334, y: -0, z: 0.000050823895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.25 + value: {x: 0.00033686068, y: -0.0012651699, z: 0.00014399357} + inSlope: {x: -0.0001866136, y: -0, z: 0.00010591905} + outSlope: {x: -0.00019926921, y: -0, z: 0.00011527999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.75 + value: {x: 0.0002431968, y: -0.0012651699, z: 0.00023183129} + inSlope: {x: -0.00011267556, y: -0, z: 0.00024291787} + outSlope: {x: -0.0000842874, y: -0, z: 0.0001781816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: 0.00023968484, y: -0.0012651699, z: 0.0002392555} + inSlope: {x: -0.0000842874, y: -0, z: 0.0001781816} + outSlope: {x: -0.0000842874, y: -0, z: 0.0001781816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000021829177, y: -0.0029988294, z: -0.00005309113} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: 0.000021829177, y: -0.0029988294, z: -0.00005309113} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000019310632, y: -0.0025961697, z: 0.00038391212} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0.000019310632, y: -0.0025961697, z: 0.00038391212} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0004814688, y: 0.0012246681, z: -0.000162597} + inSlope: {x: -0.00004520416, y: -0, z: 0.0000035476685} + outSlope: {x: -0.00004520416, y: -0, z: 0.0000035476685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.00046666185, y: 0.0012246681, z: -0.00014587089} + inSlope: {x: -0.000072342744, y: -0, z: 0.0001249319} + outSlope: {x: -0.0000769669, y: -0, z: 0.00014441554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.00043657213, y: 0.0012246681, z: -0.00008059933} + inSlope: {x: -0.00010167638, y: -0, z: 0.00023602477} + outSlope: {x: -0.00010412241, y: -0, z: 0.00024271298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.0004046982, y: 0.0012246681, z: -0.000007681698} + inSlope: {x: -0.00011307651, y: -0, z: 0.0002492987} + outSlope: {x: -0.000113627255, y: -0, z: 0.00024480332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.00039996373, y: 0.0012246681, z: 0.0000025184452} + inSlope: {x: -0.000113627255, y: -0, z: 0.00024480332} + outSlope: {x: -0.00011391353, y: -0, z: 0.00023870252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: 0.00039521733, y: 0.0012246681, z: 0.000012464374} + inSlope: {x: -0.00011391353, y: -0, z: 0.00023870252} + outSlope: {x: -0.000113927665, y: -0, z: 0.00023100602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: 0.00038573533, y: 0.0012246681, z: 0.000031327752} + inSlope: {x: -0.00011364083, y: -0, z: 0.00022171518} + outSlope: {x: -0.00011311122, y: -0, z: 0.00021082122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: 0.00037170906, y: 0.0012246681, z: 0.000056052504} + inSlope: {x: -0.00011120896, y: -0, z: 0.00018423931} + outSlope: {x: -0.00010986396, y: -0, z: 0.00016855328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2916666 + value: {x: 0.00035819007, y: 0.0012246681, z: 0.00007489413} + inSlope: {x: -0.00010634432, y: -0, z: 0.00013237966} + outSlope: {x: -0.00010418395, y: -0, z: 0.00011189796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4166666 + value: {x: 0.00034548328, y: 0.0012246681, z: 0.000086054206} + inSlope: {x: -0.0000990344, y: -0, z: 0.00006613261} + outSlope: {x: -0.000096058655, y: -0, z: 0.00004085175} + tangentMode: 0 + weightedMode: 0 + 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.00032372816, y: 0.0012246681, z: 0.00008897364} + inSlope: {x: -0.00007708318, y: -0, z: 0.0000058429746} + outSlope: {x: -0.00007247672, y: -0, z: 0.000010002833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2916667 + value: {x: 0.0003023424, y: 0.0012246681, z: 0.00010046541} + inSlope: {x: -0.0000072839716, y: -0, z: 0.000026664682} + outSlope: {x: -0.0000072844605, y: -0, z: 0.000027530297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.00021364087, y: 0.0012246681, z: 0.00015054032} + inSlope: {x: -0.000038623955, y: -0, z: 0.000011074436} + outSlope: {x: -0.00003594889, y: -0, z: -0.000003077623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.625 + value: {x: 0.00020588619, y: 0.0012246681, z: 0.00014900147} + inSlope: {x: 0.0000035289063, y: -0, z: -0.000003077623} + outSlope: {x: 0.0000035293128, y: -0, z: -0.000018612824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.75 + value: {x: 0.00029862585, y: 0.0012246681, z: 0.00008613184} + inSlope: {x: 0.00017512387, y: -0, z: -0.000100747726} + outSlope: {x: 0.00018357109, y: -0, z: -0.00013669304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.7916665 + value: {x: 0.00030627463, y: 0.0012246681, z: 0.000080436315} + inSlope: {x: 0.00018357109, y: -0, z: -0.00013669304} + outSlope: {x: 0.00019215197, y: -0, z: -0.0001998445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.8333335 + value: {x: 0.00031428103, y: 0.0012246681, z: 0.0000721094} + inSlope: {x: 0.00019215197, y: -0, z: -0.0001998445} + outSlope: {x: 0.00020088837, y: -0, z: -0.00025586403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.875 + value: {x: 0.00032265132, y: 0.0012246681, z: 0.00006144844} + inSlope: {x: 0.00020088837, y: -0, z: -0.00025586403} + outSlope: {x: 0.0002091988, y: -0, z: -0.00030474478} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.9166665 + value: {x: 0.00033136792, y: 0.0012246681, z: 0.000048750786} + inSlope: {x: 0.0002091988, y: -0, z: -0.00030474478} + outSlope: {x: 0.00021598412, y: -0, z: -0.0003464824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.9583335 + value: {x: 0.00034036732, y: 0.0012246681, z: 0.000034313907} + inSlope: {x: 0.00021598412, y: -0, z: -0.0003464824} + outSlope: {x: 0.00022123748, y: -0, z: -0.0003810897} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6 + value: {x: 0.00034958552, y: 0.0012246681, z: 0.000018435232} + inSlope: {x: 0.00022123748, y: -0, z: -0.0003810897} + outSlope: {x: 0.0002249774, y: -0, z: -0.00040855564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.0416665 + value: {x: 0.00035895954, y: 0.0012246681, z: 0.0000014121457} + inSlope: {x: 0.0002249774, y: -0, z: -0.00040855564} + outSlope: {x: 0.00022717779, y: -0, z: -0.00042887658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.0833335 + value: {x: 0.00036842536, y: 0.0012246681, z: -0.000016457849} + inSlope: {x: 0.00022717779, y: -0, z: -0.00042887658} + outSlope: {x: 0.00022785988, y: -0, z: -0.00044207263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.3333335 + value: {x: 0.0004235915, y: 0.0012246681, z: -0.0001248096} + inSlope: {x: 0.00020838012, y: -0, z: -0.00040094784} + outSlope: {x: 0.00019991116, y: -0, z: -0.0003713157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.4583335 + value: {x: 0.00044726636, y: 0.0012246681, z: -0.0001663293} + inSlope: {x: 0.00017838074, y: -0, z: -0.0002906205} + outSlope: {x: 0.00016532573, y: -0, z: -0.00023957403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.5833335 + value: {x: 0.00046604653, y: 0.0012246681, z: -0.00018870473} + inSlope: {x: 0.00013464676, y: -0, z: -0.00011605472} + outSlope: {x: 0.0001170136, y: -0, z: -0.000043591426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.6666665 + value: {x: 0.00047499983, y: 0.0012246681, z: -0.00018902049} + inSlope: {x: 0.000097866134, y: -0, z: 0.00003601326} + outSlope: {x: 0.00007718266, y: -0, z: 0.00012275482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7083335 + value: {x: 0.0004782158, y: 0.0012246681, z: -0.00018390566} + inSlope: {x: 0.00007718266, y: -0, z: 0.00012275482} + outSlope: {x: 0.000054977445, y: -0, z: 0.00021663032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: 0.00048180835, y: 0.0012246681, z: -0.000166708} + inSlope: {x: 0.000031244275, y: -0, z: 0.00019611492} + outSlope: {x: 0.000031244275, y: -0, z: 0.00019611492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0029990696, y: -0.00000016126782, z: 0.000054637007} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0.0029990696, y: -0.00000016126782, z: 0.000054637007} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00035560693, y: 0.000036823654, z: -0.0025999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: 0.00035560693, y: 0.000036823654, z: -0.0025999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000118502485, y: 5.3762502e-12, z: -0.00006796114} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0.0000118502485, y: 5.3762502e-12, z: -0.00006796114} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0028583289, y: -2.1827873e-11, z: -0.00014242706} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0.0028583289, y: -2.1827873e-11, z: -0.00014242706} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00145562, y: -0.00145996, z: -0.000124582} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0.00145562, y: -0.00145996, z: -0.000124582} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0027749701, y: 0.00000016860663, z: -0.00000543396} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0.0027749701, y: 0.00000016860663, z: -0.00000543396} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0020982693, y: -0.0000001691375, z: 0.000005434342} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0.0020982693, y: -0.0000001691375, z: 0.000005434342} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014555797, y: 0.0014553502, z: -0.00012458228} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0.0014555797, y: 0.0014553502, z: -0.00012458228} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00279524, y: -2.9802322e-10, z: -2.2351741e-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} + - serializedVersion: 3 + time: 6.7916665 + value: {x: 0.00279524, y: -2.9802322e-10, z: -2.2351741e-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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0020026597, y: -1.11758706e-10, z: 7.636845e-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} + - serializedVersion: 3 + time: 6.7916665 + value: {x: 0.0020026597, y: -1.11758706e-10, z: 7.636845e-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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00273719, y: 2.0489097e-10, z: -0.0001936793} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0.00273719, y: 2.0489097e-10, z: -0.0001936793} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: -0.001545068, z: 0} + inSlope: {x: -0, y: 0.00016528844, z: -0} + outSlope: {x: -0, y: 0.00016528844, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: -0, y: -0.001391029, z: 0} + inSlope: {x: -0, y: 0.001261318, z: -0} + outSlope: {x: -0, y: 0.0014700721, z: -0} + tangentMode: 0 + weightedMode: 0 + 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, y: -0.00047803437, z: 0} + inSlope: {x: -0, y: 0.0021224676, z: -0} + outSlope: {x: -0, y: 0.0020441876, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: -0, y: -0.00031203538, z: 0} + inSlope: {x: -0, y: 0.0019397892, z: -0} + outSlope: {x: -0, y: 0.0018093184, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0, y: -0.00023664709, z: 0} + inSlope: {x: -0, y: 0.0018093184, z: -0} + outSlope: {x: -0, y: 0.0016527422, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: -0, y: -0.0001677829, z: 0} + inSlope: {x: -0, y: 0.0016527422, z: -0} + outSlope: {x: -0, y: 0.001470071, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0, y: -0.00010652991, z: 0} + inSlope: {x: -0, y: 0.001470071, z: -0} + outSlope: {x: -0, y: 0.0012612998, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0, y: -0.000053975724, z: 0} + inSlope: {x: -0, y: 0.0012612998, z: -0} + outSlope: {x: -0, y: 0.001026443, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9583333 + value: {x: -0, y: -0.000011207308, z: 0} + inSlope: {x: -0, y: 0.001026443, z: -0} + outSlope: {x: -0, y: 0.0007654805, z: -0} + tangentMode: 0 + weightedMode: 0 + 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, y: 0.000020687728, z: 0} + inSlope: {x: -0, y: 0.0007654805, z: -0} + outSlope: {x: -0, y: 0.0004784244, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: -0, y: 0.00004062206, z: 0} + inSlope: {x: -0, y: 0.0004784244, z: -0} + outSlope: {x: -0, y: 0.00016527326, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: -0, y: 0.00004750846, z: 0} + inSlope: {x: -0, y: 0.00016527326, z: -0} + outSlope: {x: -0, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.125 + value: {x: -0, y: 0.00004750846, z: 0} + inSlope: {x: -0, y: -0, z: -0} + outSlope: {x: -0, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.166667 + value: {x: -0, y: 0.00004750846, z: 0} + inSlope: {x: -0, y: -0, z: -0} + outSlope: {x: -0, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.75 + value: {x: -0, y: 0.00004750846, z: 0} + inSlope: {x: -0, y: -0, z: -0} + outSlope: {x: -0, y: -0.00016604512, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.7916665 + value: {x: -0, y: 0.000040589937, z: 0} + inSlope: {x: -0, y: -0.00016604512, z: -0} + outSlope: {x: -0, y: -0.00048065177, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.8333335 + value: {x: -0, y: 0.00002056263, z: 0} + inSlope: {x: -0, y: -0.00048065177, z: -0} + outSlope: {x: -0, y: -0.0007690519, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.875 + value: {x: -0, y: -0.000011481079, z: 0} + inSlope: {x: -0, y: -0.0007690519, z: -0} + outSlope: {x: -0, y: -0.0010312279, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.9166665 + value: {x: -0, y: -0.000054448745, z: 0} + inSlope: {x: -0, y: -0.0010312279, z: -0} + outSlope: {x: -0, y: -0.0012671724, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.9583335 + value: {x: -0, y: -0.00010724799, z: 0} + inSlope: {x: -0, y: -0.0012671724, z: -0} + outSlope: {x: -0, y: -0.0014769296, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6 + value: {x: -0, y: -0.00016878649, z: 0} + inSlope: {x: -0, y: -0.0014769296, z: -0} + outSlope: {x: -0, y: -0.0016604511, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.0416665 + value: {x: -0, y: -0.00023797169, z: 0} + inSlope: {x: -0, y: -0.0016604511, z: -0} + outSlope: {x: -0, y: -0.0018177389, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.125 + value: {x: -0, y: -0.000394913, z: 0} + inSlope: {x: -0, y: -0.0019488459, z: -0} + outSlope: {x: -0, y: -0.0020537172, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.5833335 + value: {x: -0, y: -0.0013361969, z: 0} + inSlope: {x: -0, y: -0.0016604499, z: -0} + outSlope: {x: -0, y: -0.0014769193, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0, y: -0.001545573, z: 0} + inSlope: {x: -0, y: -0.00048065008, z: -0} + outSlope: {x: -0, y: -0.00048065008, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.013613599, y: -0.0010463798, z: 0.0040700096} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0.013613599, y: -0.0010463798, z: 0.0040700096} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.013613599, y: -0.0010463798, z: -0.0040804897} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: -0.013613599, y: -0.0010463798, z: -0.0040804897} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/board_model/eft_fire_R + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 0.99999994, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999998, y: 0.9999999, z: 0.9999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 0.9999998, y: 0.9999999, z: 0.9999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 1, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 0.9999999, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000002, y: 1.0000001, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 1.0000002, y: 1.0000001, z: 1.0000001} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 0.99999994, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 1, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.0000001, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 1.0000001, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 0.9999999, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 0.99999994, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 0.9999999, y: 0.99999994, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 1, y: 1, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.791667 + value: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + m_FloatCurves: [] + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + - time: 0.625 + value: {fileID: 2100000, guid: b3c9df74b1ef91940a4fbbe6e7812a79, type: 2} + - time: 5.9166665 + value: {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + attribute: m_Materials.Array.data[1] + path: airboy_model + classID: 137 + script: {fileID: 0} + m_SampleRate: 24 + 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: 2504784628 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 279179908 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4291209787 + attribute: 1 + script: {fileID: 0} + typeID: 137 + customType: 21 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 804800636 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4196139211 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3703802864 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1848425199 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2485356428 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 804800636 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4196139211 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2504784628 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 279179908 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1848425199 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2485356428 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2251060401 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 261047678 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3303939288 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2082687442 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2441273854 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 211212723 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1638354070 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 495050795 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2666421826 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 748820667 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2528979002 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692492577 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2997861435 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1590029649 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: + - {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + - {fileID: 2100000, guid: b3c9df74b1ef91940a4fbbe6e7812a79, type: 2} + - {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 6.791667 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7071068 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.7071068 + inSlope: 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7071067 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.7071067 + inSlope: 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7071081 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.7071081 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7071055 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.7071055 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.46324453 + inSlope: -1.239958 + outSlope: -1.239958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.51490945 + inSlope: -0.5878569 + outSlope: -0.5878569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.5122326 + inSlope: 0.150208 + outSlope: 0.150208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.37628734 + inSlope: 0.79532987 + outSlope: 0.79532987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.18637122 + inSlope: 0.6767478 + outSlope: 0.6767478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.0007241853 + inSlope: 0.48763597 + outSlope: 0.48763597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.02570387 + inSlope: -0.065447435 + outSlope: -0.065447435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.00597085 + inSlope: 0.0074359737 + outSlope: 0.0074359737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.005383732 + inSlope: -0.023338117 + outSlope: -0.023338117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.007062586 + inSlope: -0.011623021 + outSlope: -0.011623021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.291667 + value: -0.02119146 + inSlope: 0.046150427 + outSlope: 0.046150427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.013450771 + inSlope: -0.04036715 + outSlope: -0.04036715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -0.055554733 + inSlope: -0.78181195 + outSlope: -0.78181195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -0.2698283 + inSlope: -1.1326686 + outSlope: -1.1326686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -0.474452 + inSlope: -0.6588893 + outSlope: -0.6588893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: -0.51748765 + inSlope: 0.07498485 + outSlope: 0.07498485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -0.4302517 + inSlope: 0.24414954 + outSlope: 0.24414954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.4154848 + inSlope: 0.14011467 + outSlope: 0.14011467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2583633 + inSlope: -0.33999753 + outSlope: -0.33999753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.27252987 + inSlope: -0.16401243 + outSlope: -0.16401243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.272031 + inSlope: 0.03803659 + outSlope: 0.03803659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.2192313 + inSlope: 0.3962219 + outSlope: 0.3962219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.0923896 + inSlope: 0.5668925 + outSlope: 0.5668925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.06927843 + inSlope: 0.41935062 + outSlope: 0.41935062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.09416773 + inSlope: -0.04809223 + outSlope: -0.04809223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.06816314 + inSlope: 0.0019997675 + outSlope: 0.0019997675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.07571678 + inSlope: -0.015334291 + outSlope: -0.015334291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.075894676 + inSlope: -0.009678636 + outSlope: -0.009678636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.291667 + value: 0.056964453 + inSlope: 0.031719565 + outSlope: 0.031719565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.061350375 + inSlope: -0.049216896 + outSlope: -0.049216896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 0.0271133 + inSlope: -0.5982084 + outSlope: -0.5982084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -0.12550159 + inSlope: -0.68130326 + outSlope: -0.68130326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -0.22288443 + inSlope: -0.25895467 + outSlope: -0.25895467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: -0.24505734 + inSlope: -0.053593528 + outSlope: -0.053593528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -0.24377719 + inSlope: 0.02979302 + outSlope: 0.02979302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.24191855 + inSlope: 0.017802937 + outSlope: 0.017802937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3434011 + inSlope: -1.4964144 + outSlope: -1.4964144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.2810505 + inSlope: -0.7134522 + outSlope: -0.7134522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.28394675 + inSlope: 0.15701008 + outSlope: 0.15701008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.41724777 + inSlope: 0.68014044 + outSlope: 0.68014044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.53829694 + inSlope: 0.2548714 + outSlope: 0.2548714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.55773777 + inSlope: -0.059613004 + outSlope: -0.059613004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.55256134 + inSlope: 0.0049982117 + outSlope: 0.0049982117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.55478776 + inSlope: -0.00078105996 + outSlope: -0.00078105996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.5534076 + inSlope: 0.0016708388 + outSlope: 0.0016708388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.5528075 + inSlope: 0.0008275482 + outSlope: 0.0008275482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.291667 + value: 0.5550861 + inSlope: 0.00012803014 + outSlope: 0.00012803014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.55540717 + inSlope: 0.0044453163 + outSlope: 0.0044453163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 0.5539388 + inSlope: -0.079331964 + outSlope: -0.079331964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.47259817 + inSlope: -0.6938659 + outSlope: -0.6938659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.3153546 + inSlope: -0.59671617 + outSlope: -0.59671617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 0.28149325 + inSlope: 0.14834246 + outSlope: 0.14834246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: 0.38046348 + inSlope: 0.25638762 + outSlope: 0.25638762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.39605346 + inSlope: 0.14836007 + outSlope: 0.14836007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.77506685 + inSlope: -0.2984562 + outSlope: -0.2984562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.7626312 + inSlope: -0.13833976 + outSlope: -0.13833976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.76353854 + inSlope: 0.054327253 + outSlope: 0.054327253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.79765266 + inSlope: 0.12741068 + outSlope: 0.12741068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.8166801 + inSlope: 0.050678745 + outSlope: 0.050678745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.82712066 + inSlope: 0.007984405 + outSlope: 0.007984405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 0.8277365 + inSlope: 0.0041499175 + outSlope: 0.0041499175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.8291735 + inSlope: 0.0004105572 + outSlope: 0.0004105572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.8294444 + inSlope: 0.0004355912 + outSlope: 0.0004355912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.8298156 + inSlope: 0.0004312983 + outSlope: 0.0004312983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.291667 + value: 0.8295694 + inSlope: -0.0010864716 + outSlope: -0.0010864716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.8292033 + inSlope: -0.00007510282 + outSlope: -0.00007510282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 0.8302592 + inSlope: 0.0131592415 + outSlope: 0.0131592415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.8295137 + inSlope: -0.07659144 + outSlope: -0.07659144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.79105586 + inSlope: -0.22401181 + outSlope: -0.22401181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 0.7700098 + inSlope: -0.021351172 + outSlope: -0.021351172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: 0.78147537 + inSlope: 0.019708231 + outSlope: 0.019708231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.78229755 + inSlope: 0.005929425 + outSlope: 0.005929425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.88786954 + inSlope: 0.4549713 + outSlope: 0.4549713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.9068267 + inSlope: 0.20772028 + outSlope: 0.20772028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.90517956 + inSlope: -0.07038903 + outSlope: -0.07038903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.7761982 + inSlope: -0.7748107 + outSlope: -0.7748107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.5027962 + inSlope: -0.9803623 + outSlope: -0.9803623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.30339125 + inSlope: -0.70257175 + outSlope: -0.70257175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.27847153 + inSlope: 0.12519184 + outSlope: 0.12519184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.37959635 + inSlope: -0.008902081 + outSlope: -0.008902081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.31490153 + inSlope: 0.027877396 + outSlope: 0.027877396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583335 + value: 0.36169064 + inSlope: -0.04512769 + outSlope: -0.04512769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.375 + value: 0.33533683 + inSlope: 0.15462938 + outSlope: 0.15462938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9583335 + value: 0.40486017 + inSlope: -0.0064927586 + outSlope: -0.0064927586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: 0.34260726 + inSlope: -0.042831823 + outSlope: -0.042831823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.3427021 + inSlope: 0.04005184 + outSlope: 0.04005184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.37051287 + inSlope: 0.9739133 + outSlope: 0.9739133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.49277753 + inSlope: 1.6200594 + outSlope: 1.6200594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.7271531 + inSlope: 1.0358863 + outSlope: 1.0358863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.8467233 + inSlope: 0.22181165 + outSlope: 0.22181165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 0.8693508 + inSlope: 0.011576468 + outSlope: 0.011576468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.8635657 + inSlope: -0.035226077 + outSlope: -0.035226077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10284441 + inSlope: -0.19126081 + outSlope: -0.19126081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.11081361 + inSlope: -0.094064176 + outSlope: -0.094064176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.11068309 + inSlope: 0.028807105 + outSlope: 0.028807105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.06924882 + inSlope: 0.1949048 + outSlope: 0.1949048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.020946551 + inSlope: 0.108203106 + outSlope: 0.108203106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.0045300443 + inSlope: 0.03723158 + outSlope: 0.03723158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.003473664 + inSlope: -0.0049593197 + outSlope: -0.0049593197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.010397578 + inSlope: 0.000120040146 + outSlope: 0.000120040146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.005777356 + inSlope: 0.0008942076 + outSlope: 0.0008942076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583335 + value: -0.007893813 + inSlope: -0.00026305707 + outSlope: -0.00026305707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.375 + value: -0.0067644627 + inSlope: -0.0040335287 + outSlope: -0.0040335287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9583335 + value: -0.010894169 + inSlope: -0.0038740188 + outSlope: -0.0038740188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: -0.0071595656 + inSlope: 0.004887255 + outSlope: 0.004887255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.006994206 + inSlope: -0.0010805961 + outSlope: -0.0010805961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -0.008781524 + inSlope: -0.07317665 + outSlope: -0.07317665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.019846547 + inSlope: -0.18208843 + outSlope: -0.18208843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -0.057158902 + inSlope: -0.21842167 + outSlope: -0.21842167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -0.08823363 + inSlope: -0.069485754 + outSlope: -0.069485754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -0.096112244 + inSlope: -0.003841552 + outSlope: -0.003841552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.09379505 + inSlope: 0.012475038 + outSlope: 0.012475038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06141146 + inSlope: 0.06068355 + outSlope: 0.06068355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.058882978 + inSlope: 0.025619343 + outSlope: 0.025619343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.059276514 + inSlope: -0.00796558 + outSlope: -0.00796558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.06379754 + inSlope: 0.018446805 + outSlope: 0.018446805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.042676754 + inSlope: 0.096861795 + outSlope: 0.096861795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.020067558 + inSlope: 0.080789685 + outSlope: 0.080789685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -0.016621038 + inSlope: -0.009179831 + outSlope: -0.009179831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.02889813 + inSlope: -0.0008900248 + outSlope: -0.0008900248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.022224521 + inSlope: 0.0041527892 + outSlope: 0.0041527892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583335 + value: -0.024959922 + inSlope: -0.0046142526 + outSlope: -0.0046142526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.375 + value: -0.024206065 + inSlope: 0.000772793 + outSlope: 0.000772793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9583335 + value: -0.029178698 + inSlope: -0.009885676 + outSlope: -0.009885676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: -0.025379146 + inSlope: 0.009690233 + outSlope: 0.009690233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.024925385 + inSlope: -0.0029329797 + outSlope: -0.0029329797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -0.02826259 + inSlope: -0.108674146 + outSlope: -0.108674146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.041511066 + inSlope: -0.16981363 + outSlope: -0.16981363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -0.061472088 + inSlope: -0.05278281 + outSlope: -0.05278281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -0.06385634 + inSlope: 0.007062909 + outSlope: 0.007062909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -0.06265683 + inSlope: 0.0006544731 + outSlope: 0.0006544731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.06305365 + inSlope: -0.0026948843 + outSlope: -0.0026948843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.44422907 + inSlope: -1.004111 + outSlope: -1.004111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.4023911 + inSlope: -0.4580158 + outSlope: -0.4580158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.40606108 + inSlope: 0.16206944 + outSlope: 0.16206944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.6234187 + inSlope: 0.9855436 + outSlope: 0.9855436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.8630968 + inSlope: 0.57908046 + outSlope: 0.57908046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.952644 + inSlope: 0.22989453 + outSlope: 0.22989453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 0.96029437 + inSlope: -0.036581732 + outSlope: -0.036581732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.9246423 + inSlope: 0.003620628 + outSlope: 0.003620628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.9488465 + inSlope: -0.009160978 + outSlope: -0.009160978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583335 + value: 0.9319306 + inSlope: 0.017374301 + outSlope: 0.017374301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.375 + value: 0.941763 + inSlope: -0.055128925 + outSlope: -0.055128925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9583335 + value: 0.91384804 + inSlope: 0.0025148487 + outSlope: 0.0025148487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: 0.9391086 + inSlope: 0.015973868 + outSlope: 0.015973868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.9390874 + inSlope: -0.0147371385 + outSlope: -0.0147371385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.9283557 + inSlope: -0.41214 + outSlope: -0.41214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.868938 + inSlope: -0.93747926 + outSlope: -0.93747926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.681324 + inSlope: -1.1191323 + outSlope: -1.1191323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.5207656 + inSlope: -0.3686943 + outSlope: -0.3686943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 0.480693 + inSlope: -0.02155862 + outSlope: -0.02155862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.49140725 + inSlope: 0.0641744 + outSlope: 0.0641744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08196824 + inSlope: 1.23948 + outSlope: 1.23948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.030323235 + inSlope: 0.59762985 + outSlope: 0.59762985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.032165747 + inSlope: -0.12377705 + outSlope: -0.12377705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.1588209 + inSlope: -0.45903713 + outSlope: -0.45903713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.23575357 + inSlope: -0.12985069 + outSlope: -0.12985069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.24663267 + inSlope: 0.047569133 + outSlope: 0.047569133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.25004274 + inSlope: -0.050129928 + outSlope: -0.050129928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.2606309 + inSlope: 0.022747658 + outSlope: 0.022747658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.24434504 + inSlope: -0.015520841 + outSlope: -0.015520841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -0.25834185 + inSlope: 0.012789464 + outSlope: 0.012789464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.375 + value: -0.24896726 + inSlope: -0.029925523 + outSlope: -0.029925523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: -0.25590387 + inSlope: 0.028427426 + outSlope: 0.028427426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.24262764 + inSlope: 0.0033024761 + outSlope: 0.0033024761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -0.24780723 + inSlope: -0.06301878 + outSlope: -0.06301878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -0.19423467 + inSlope: 0.60371566 + outSlope: 0.60371566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: -0.029886073 + inSlope: 0.38489783 + outSlope: 0.38489783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: -0.05921962 + inSlope: -0.31439033 + outSlope: -0.31439033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.12269232 + inSlope: -0.11361411 + outSlope: -0.11361411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5335633 + inSlope: -0.045520306 + outSlope: -0.045520306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.53166664 + inSlope: -0.035398006 + outSlope: -0.035398006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.5306135 + inSlope: -0.016551018 + outSlope: -0.016551018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.49527162 + inSlope: -0.37898463 + outSlope: -0.37898463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.35416076 + inSlope: -0.39127904 + outSlope: -0.39127904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.26704708 + inSlope: -0.2393806 + outSlope: -0.2393806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.27091417 + inSlope: 0.09867556 + outSlope: 0.09867556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.3072079 + inSlope: -0.062123597 + outSlope: -0.062123597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.26689488 + inSlope: 0.020688375 + outSlope: 0.020688375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0.30383828 + inSlope: -0.025765251 + outSlope: -0.025765251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.375 + value: 0.27837634 + inSlope: 0.07280107 + outSlope: 0.07280107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: 0.31132025 + inSlope: -0.06014642 + outSlope: -0.06014642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.27323994 + inSlope: 0.0054453565 + outSlope: 0.0054453565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 0.3087871 + inSlope: 0.6698551 + outSlope: 0.6698551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.45253325 + inSlope: 0.4502992 + outSlope: 0.4502992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 0.45694843 + inSlope: -0.16851696 + outSlope: -0.16851696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 0.488296 + inSlope: 0.22816397 + outSlope: 0.22816397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.52330965 + inSlope: 0.045285355 + outSlope: 0.045285355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7501199 + inSlope: 0.24397087 + outSlope: 0.24397087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.7602854 + inSlope: 0.1271174 + outSlope: 0.1271174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.76071304 + inSlope: -0.000023603905 + outSlope: -0.000023603905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.75657994 + inSlope: 0.06431435 + outSlope: 0.06431435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.7837689 + inSlope: 0.0593476 + outSlope: 0.0593476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.79583776 + inSlope: 0.033149943 + outSlope: 0.033149943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.7943695 + inSlope: -0.015866507 + outSlope: -0.015866507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.7887266 + inSlope: 0.033521205 + outSlope: 0.033521205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.7981208 + inSlope: -0.0070338114 + outSlope: -0.0070338114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0.78838825 + inSlope: 0.012717938 + outSlope: 0.012717938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.375 + value: 0.7953011 + inSlope: -0.0074622454 + outSlope: -0.0074622454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: 0.78894275 + inSlope: 0.010847537 + outSlope: 0.010847537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.7981552 + inSlope: -0.0024440894 + outSlope: -0.0024440894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 0.7938157 + inSlope: -0.075833455 + outSlope: -0.075833455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.78377277 + inSlope: 0.042870052 + outSlope: 0.042870052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 0.82067674 + inSlope: 0.11913942 + outSlope: 0.11913942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 0.7882318 + inSlope: -0.22970536 + outSlope: -0.22970536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.74616563 + inSlope: -0.07474508 + outSlope: -0.07474508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3819837 + inSlope: -0.23982668 + outSlope: -0.23982668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.37199092 + inSlope: -0.11422205 + outSlope: -0.11422205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.3724652 + inSlope: 0.011850715 + outSlope: 0.011850715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.39631915 + inSlope: 0.16634235 + outSlope: 0.16634235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.4524344 + inSlope: 0.1365766 + outSlope: 0.1365766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.48425248 + inSlope: 0.10287984 + outSlope: 0.10287984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.48276424 + inSlope: -0.05527029 + outSlope: -0.05527029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.46433303 + inSlope: -0.003103855 + outSlope: -0.003103855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.48173216 + inSlope: -0.007700786 + outSlope: -0.007700786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0.46838635 + inSlope: 0.0023360206 + outSlope: 0.0023360206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.375 + value: 0.47751257 + inSlope: -0.04564967 + outSlope: -0.04564967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: 0.46385583 + inSlope: 0.037565157 + outSlope: 0.037565157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.47897825 + inSlope: 0.0026257199 + outSlope: 0.0026257199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 0.46162623 + inSlope: -0.35821974 + outSlope: -0.35821974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.37840033 + inSlope: -0.3160428 + outSlope: -0.3160428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 0.34175247 + inSlope: -0.021545043 + outSlope: -0.021545043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 0.3697982 + inSlope: 0.1378323 + outSlope: 0.1378323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.3928493 + inSlope: 0.047372457 + outSlope: 0.047372457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.40317732 + inSlope: -0.28428268 + outSlope: -0.28428268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.41502243 + inSlope: -0.1272608 + outSlope: -0.1272608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.4137824 + inSlope: 0.07749117 + outSlope: 0.07749117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.35415593 + inSlope: 0.37158045 + outSlope: 0.37158045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.24987832 + inSlope: 0.36736578 + outSlope: 0.36736578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.1726887 + inSlope: 0.1558119 + outSlope: 0.1558119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.16205187 + inSlope: -0.0057901787 + outSlope: -0.0057901787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.17125383 + inSlope: 0.0017443292 + outSlope: 0.0017443292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.16580644 + inSlope: 0.0050348686 + outSlope: 0.0050348686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.16948979 + inSlope: 0.008822332 + outSlope: 0.008822332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5833335 + value: -0.1668864 + inSlope: -0.013496212 + outSlope: -0.013496212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: -0.16696411 + inSlope: 0.025931902 + outSlope: 0.025931902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.16281381 + inSlope: -0.003652132 + outSlope: -0.003652132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -0.16549823 + inSlope: -0.08655828 + outSlope: -0.08655828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -0.20199612 + inSlope: -0.32364896 + outSlope: -0.32364896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: -0.27107233 + inSlope: -0.24436754 + outSlope: -0.24436754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.30685174 + inSlope: -0.16433743 + outSlope: -0.16433743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.3748496 + inSlope: -0.15399562 + outSlope: -0.15399562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.38821664 + inSlope: -0.07330672 + outSlope: -0.07330672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.721205 + inSlope: -1.0843706 + outSlope: -1.0843706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.6760229 + inSlope: -0.48465586 + outSlope: -0.48465586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.680817 + inSlope: 0.20616032 + outSlope: 0.20616032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.8167227 + inSlope: 0.64886373 + outSlope: 0.64886373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.9428762 + inSlope: 0.3170901 + outSlope: 0.3170901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.98116636 + inSlope: -0.016531702 + outSlope: -0.016531702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.97854066 + inSlope: 0.0043559037 + outSlope: 0.0043559037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.98220515 + inSlope: 0.004018305 + outSlope: 0.004018305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.9824888 + inSlope: 0.0014026177 + outSlope: 0.0014026177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.981757 + inSlope: -0.00012516958 + outSlope: -0.00012516958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5833335 + value: 0.98416704 + inSlope: 0.0020842631 + outSlope: 0.0020842631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: 0.9842412 + inSlope: 0.0029418434 + outSlope: 0.0029418434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.9850373 + inSlope: 0.0010263821 + outSlope: 0.0010263821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.98542786 + inSlope: 0.0010335923 + outSlope: 0.0010335923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.9642305 + inSlope: -0.31950945 + outSlope: -0.31950945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.8453325 + inSlope: -0.7469887 + outSlope: -0.7469887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.72778475 + inSlope: -0.15233861 + outSlope: -0.15233861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.7519698 + inSlope: 0.10868572 + outSlope: 0.10868572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.76120484 + inSlope: 0.04534973 + outSlope: 0.04534973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05822352 + inSlope: 0.69089 + outSlope: 0.69089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.029436436 + inSlope: 0.3173439 + outSlope: 0.3173439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.031778194 + inSlope: -0.066909716 + outSlope: -0.066909716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.08249024 + inSlope: -0.2056773 + outSlope: -0.2056773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.08955068 + inSlope: 0.11407089 + outSlope: 0.11407089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.04904355 + inSlope: 0.1177558 + outSlope: 0.1177558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.037688978 + inSlope: 0.016639052 + outSlope: 0.016639052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.038652573 + inSlope: -0.0060949144 + outSlope: -0.0060949144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.030939171 + inSlope: 0.0018761563 + outSlope: 0.0018761563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.03787259 + inSlope: 0.014079019 + outSlope: 0.014079019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5833335 + value: -0.029862741 + inSlope: -0.0027034087 + outSlope: -0.0027034087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: -0.028765237 + inSlope: 0.024294715 + outSlope: 0.024294715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.02391704 + inSlope: 0.0017194289 + outSlope: 0.0017194289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -0.023189878 + inSlope: 0.03625505 + outSlope: 0.03625505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -0.016285982 + inSlope: 0.051027678 + outSlope: 0.051027678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.019295149 + inSlope: 0.28201443 + outSlope: 0.28201443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.052561946 + inSlope: -0.11760392 + outSlope: -0.11760392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.054552864 + inSlope: -0.31825066 + outSlope: -0.31825066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.08177116 + inSlope: -0.1368585 + outSlope: -0.1368585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.56028694 + inSlope: 1.1494346 + outSlope: 1.1494346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.60818005 + inSlope: 0.5190561 + outSlope: 0.5190561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.6035416 + inSlope: -0.18550374 + outSlope: -0.18550374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.44803238 + inSlope: -0.929425 + outSlope: -0.929425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.20131055 + inSlope: -0.97729385 + outSlope: -0.97729385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.071315184 + inSlope: -0.7206559 + outSlope: -0.7206559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.12156045 + inSlope: 0.037578717 + outSlope: 0.037578717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.06671682 + inSlope: 0.05820784 + outSlope: 0.05820784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.07916253 + inSlope: 0.0061250096 + outSlope: 0.0061250096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.07740874 + inSlope: -0.02778798 + outSlope: -0.02778798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5833335 + value: -0.051694784 + inSlope: 0.0847234 + outSlope: 0.0847234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: -0.0506448 + inSlope: -0.04242477 + outSlope: -0.04242477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.051197592 + inSlope: 0.030614996 + outSlope: 0.030614996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -0.0316955 + inSlope: 0.6799894 + outSlope: 0.6799894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.17085645 + inSlope: 1.4132893 + outSlope: 1.4132893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.45995706 + inSlope: 1.2241056 + outSlope: 1.2241056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.6110717 + inSlope: 0.11014336 + outSlope: 0.11014336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.53949344 + inSlope: -0.2894476 + outSlope: -0.2894476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.5129996 + inSlope: -0.14269386 + outSlope: -0.14269386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99191296 + inSlope: -0.1336298 + outSlope: -0.1336298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.98634505 + inSlope: -0.06520271 + outSlope: -0.06520271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.9864794 + inSlope: 0.009960652 + outSlope: 0.009960652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.9999352 + inSlope: 0.008965023 + outSlope: 0.008965023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.96878666 + inSlope: -0.3251675 + outSlope: -0.3251675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.84543425 + inSlope: -0.6239613 + outSlope: -0.6239613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.77334875 + inSlope: -0.06600817 + outSlope: -0.06600817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.80914605 + inSlope: 0.14700738 + outSlope: 0.14700738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.84720904 + inSlope: -0.049791783 + outSlope: -0.049791783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.8121584 + inSlope: 0.037344266 + outSlope: 0.037344266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.83974725 + inSlope: -0.029009359 + outSlope: -0.029009359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.82134 + inSlope: 0.09801258 + outSlope: 0.09801258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.041667 + value: 0.8683251 + inSlope: -0.04370137 + outSlope: -0.04370137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.83278507 + inSlope: 0.03052928 + outSlope: 0.03052928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.85168266 + inSlope: 0.6148908 + outSlope: 0.6148908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.9216704 + inSlope: 0.80292916 + outSlope: 0.80292916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.99046284 + inSlope: 0.2708927 + outSlope: 0.2708927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.9848049 + inSlope: -0.08078057 + outSlope: -0.08078057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 0.9894263 + inSlope: 0.041775856 + outSlope: 0.041775856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.99661314 + inSlope: 0.012491131 + outSlope: 0.012491131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000025084248 + inSlope: 0.0009693671 + outSlope: 0.0009693671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.00004041538 + inSlope: 0.0009894798 + outSlope: 0.0009894798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00008248174 + inSlope: 0.00097487355 + outSlope: 0.00097487355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.00003636663 + inSlope: -0.002295558 + outSlope: -0.002295558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.00079045596 + inSlope: -0.0039903764 + outSlope: -0.0039903764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0016434665 + inSlope: -0.0027823048 + outSlope: -0.0027823048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0018933807 + inSlope: 0.00013426083 + outSlope: 0.00013426083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0016289076 + inSlope: 0.0009572045 + outSlope: 0.0009572045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.0012305821 + inSlope: 0.00015931757 + outSlope: 0.00015931757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -0.001088007 + inSlope: 0.00050841185 + outSlope: 0.00050841185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: -0.00070344994 + inSlope: 0.0002862318 + outSlope: 0.0002862318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.0004413181 + inSlope: 0.00056817057 + outSlope: 0.00056817057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.041667 + value: -0.00011161073 + inSlope: 0.00022397732 + outSlope: 0.00022397732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.000026353728 + inSlope: 0.00033887854 + outSlope: 0.00033887854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.000070581526 + inSlope: 0.0009114302 + outSlope: 0.0009114302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.00016518724 + inSlope: 0.0011015061 + outSlope: 0.0011015061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.0002681224 + inSlope: 0.0004834901 + outSlope: 0.0004834901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.00024553883 + inSlope: -0.0004795099 + outSlope: -0.0004795099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 0.0000701606 + inSlope: -0.00043006864 + outSlope: -0.00043006864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.0000012195782 + inSlope: -0.00012699586 + outSlope: -0.00012699586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12692036 + inSlope: -0.90651584 + outSlope: -0.90651584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.16469185 + inSlope: -0.4435746 + outSlope: -0.4435746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.16388491 + inSlope: 0.06062365 + outSlope: 0.06062365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.011162569 + inSlope: 1.0519595 + outSlope: 1.0519595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.24787478 + inSlope: 1.274946 + outSlope: 1.274946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.5340706 + inSlope: 0.99148095 + outSlope: 0.99148095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6339739 + inSlope: 0.0814098 + outSlope: 0.0814098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.587601 + inSlope: -0.2023253 + outSlope: -0.2023253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.5312544 + inSlope: 0.07934184 + outSlope: 0.07934184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.58343387 + inSlope: -0.0520199 + outSlope: -0.0520199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.54297566 + inSlope: 0.044841554 + outSlope: 0.044841554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.57043827 + inSlope: -0.14125353 + outSlope: -0.14125353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.041667 + value: 0.49599528 + inSlope: 0.07639925 + outSlope: 0.07639925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.5535964 + inSlope: -0.046028167 + outSlope: -0.046028167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.5240579 + inSlope: -1.0425085 + outSlope: -1.0425085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.3879739 + inSlope: -1.9231747 + outSlope: -1.9231747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.13777986 + inSlope: -1.9031 + outSlope: -1.9031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -0.173664 + inSlope: -0.4732488 + outSlope: -0.4732488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: -0.14503667 + inSlope: 0.2853139 + outSlope: 0.2853139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.08223345 + inSlope: 0.1459377 + outSlope: 0.1459377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000051314677 + inSlope: 0.0060787844 + outSlope: 0.0060787844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.00020196803 + inSlope: 0.006074457 + outSlope: 0.006074457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.00045489008 + inSlope: 0.006073893 + outSlope: 0.006073893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.002253683 + inSlope: 0.0061527714 + outSlope: 0.0061527714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.0031502293 + inSlope: -0.0016133045 + outSlope: -0.0016133045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0026236195 + inSlope: -0.0024585663 + outSlope: -0.0024585663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0023206926 + inSlope: -0.0006582728 + outSlope: -0.0006582728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0022725803 + inSlope: -0.000047260008 + outSlope: -0.000047260008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.002050577 + inSlope: -0.0006385498 + outSlope: -0.0006385498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.0016083971 + inSlope: -0.00040823396 + outSlope: -0.00040823396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.0012729642 + inSlope: -0.00056232983 + outSlope: -0.00056232983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.0008261584 + inSlope: -0.00032090448 + outSlope: -0.00032090448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.041667 + value: 0.0005540466 + inSlope: -0.0005541511 + outSlope: -0.0005541511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.00021444215 + inSlope: -0.0004237775 + outSlope: -0.0004237775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.00019680124 + inSlope: 0.00022370457 + outSlope: 0.00022370457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.00024037564 + inSlope: 0.0005759776 + outSlope: 0.0005759776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.00029380262 + inSlope: 0.00020665277 + outSlope: 0.00020665277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.0002392208 + inSlope: -0.0005311386 + outSlope: -0.0005311386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 0.00006365711 + inSlope: -0.00042497902 + outSlope: -0.00042497902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.000034168293 + inSlope: -0.00036646504 + outSlope: -0.00036646504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22878012 + inSlope: -0.38354695 + outSlope: -0.38354695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.24476124 + inSlope: -0.16200256 + outSlope: -0.16200256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.23603849 + inSlope: 0.18605572 + outSlope: 0.18605572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.19632892 + inSlope: -0.062988974 + outSlope: -0.062988974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.28650317 + inSlope: -0.34254867 + outSlope: -0.34254867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.3948649 + inSlope: 0.024510067 + outSlope: 0.024510067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -0.34135672 + inSlope: 0.080335096 + outSlope: 0.080335096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -0.35433 + inSlope: -0.10187469 + outSlope: -0.10187469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -0.36962843 + inSlope: 0.06859666 + outSlope: 0.06859666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -0.34446806 + inSlope: -0.07956585 + outSlope: -0.07956585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.36825055 + inSlope: 0.104516074 + outSlope: 0.104516074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0833335 + value: -0.32952467 + inSlope: -0.06260729 + outSlope: -0.06260729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.37283617 + inSlope: -0.0014687523 + outSlope: -0.0014687523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -0.36106697 + inSlope: 0.45266706 + outSlope: 0.45266706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -0.240949 + inSlope: 0.6406456 + outSlope: 0.6406456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.20739001 + inSlope: -0.35560042 + outSlope: -0.35560042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.2618643 + inSlope: -0.12583578 + outSlope: -0.12583578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: -0.22407869 + inSlope: 0.08315341 + outSlope: 0.08315341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.22124763 + inSlope: 0.06794484 + outSlope: 0.06794484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46184298 + inSlope: -0.46278906 + outSlope: -0.46278906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.4425601 + inSlope: -0.20849276 + outSlope: -0.20849276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.44948003 + inSlope: 0.14885688 + outSlope: 0.14885688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.47771758 + inSlope: -0.09096978 + outSlope: -0.09096978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.39564505 + inSlope: -0.2951251 + outSlope: -0.2951251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.31797963 + inSlope: 0.02474322 + outSlope: 0.02474322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.34457055 + inSlope: 0.029608395 + outSlope: 0.029608395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.33646604 + inSlope: -0.052676134 + outSlope: -0.052676134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.33279374 + inSlope: 0.03151634 + outSlope: 0.03151634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 0.3436841 + inSlope: -0.038117103 + outSlope: -0.038117103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.33125857 + inSlope: 0.048003856 + outSlope: 0.048003856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0833335 + value: 0.34999394 + inSlope: -0.025877694 + outSlope: -0.025877694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.32832143 + inSlope: 0.0021862236 + outSlope: 0.0021862236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.33430335 + inSlope: 0.21924679 + outSlope: 0.21924679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.3933369 + inSlope: 0.3337336 + outSlope: 0.3337336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.41779804 + inSlope: -0.18833488 + outSlope: -0.18833488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.39360276 + inSlope: 0.01788933 + outSlope: 0.01788933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 0.46847713 + inSlope: 0.09310082 + outSlope: 0.09310082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.47164342 + inSlope: 0.075990334 + outSlope: 0.075990334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6458492 + inSlope: -0.2864313 + outSlope: -0.2864313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.6339146 + inSlope: -0.10259342 + outSlope: -0.10259342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.64387447 + inSlope: 0.18655372 + outSlope: 0.18655372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.7067986 + inSlope: 0.26634118 + outSlope: 0.26634118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.7660491 + inSlope: 0.11400455 + outSlope: 0.11400455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.77495915 + inSlope: -0.0018360569 + outSlope: -0.0018360569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.7932399 + inSlope: 0.030610114 + outSlope: 0.030610114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.7908761 + inSlope: -0.02498677 + outSlope: -0.02498677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.7849198 + inSlope: 0.02265932 + outSlope: 0.02265932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 0.79080623 + inSlope: -0.012202273 + outSlope: -0.012202273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.78602517 + inSlope: 0.031500697 + outSlope: 0.031500697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0833335 + value: 0.7969837 + inSlope: -0.012933304 + outSlope: -0.012933304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.7870218 + inSlope: -0.003818048 + outSlope: -0.003818048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.79100424 + inSlope: 0.14723486 + outSlope: 0.14723486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.8131007 + inSlope: 0.00921087 + outSlope: 0.00921087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.77494514 + inSlope: -0.23785573 + outSlope: -0.23785573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.732973 + inSlope: -0.21144113 + outSlope: -0.21144113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 0.6602186 + inSlope: -0.08722392 + outSlope: -0.08722392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.65716136 + inSlope: -0.073373236 + outSlope: -0.073373236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5632402 + inSlope: 0.5255127 + outSlope: 0.5255127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.58513653 + inSlope: 0.21348882 + outSlope: 0.21348882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.5724327 + inSlope: -0.25202894 + outSlope: -0.25202894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.48340103 + inSlope: -0.32538304 + outSlope: -0.32538304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.41779163 + inSlope: -0.16443972 + outSlope: -0.16443972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.37737134 + inSlope: 0.0083967615 + outSlope: 0.0083967615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 0.36812663 + inSlope: -0.019118447 + outSlope: -0.019118447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 0.36845064 + inSlope: 0.003763678 + outSlope: 0.003763678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.36949164 + inSlope: -0.007930764 + outSlope: -0.007930764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 0.3712795 + inSlope: -0.01262464 + outSlope: -0.01262464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.36989695 + inSlope: -0.005885504 + outSlope: -0.005885504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0833335 + value: 0.3656976 + inSlope: -0.0035212175 + outSlope: -0.0035212175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.36577985 + inSlope: 0.0047478816 + outSlope: 0.0047478816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.36357164 + inSlope: -0.084475346 + outSlope: -0.084475346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.35510147 + inSlope: 0.049639903 + outSlope: 0.049639903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.42649055 + inSlope: 0.44129264 + outSlope: 0.44129264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.48913658 + inSlope: 0.23669654 + outSlope: 0.23669654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 0.54261345 + inSlope: 0.060442626 + outSlope: 0.060442626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.5447393 + inSlope: 0.051020235 + outSlope: 0.051020235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08088758 + inSlope: 0.045652807 + outSlope: 0.045652807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.04981298 + inSlope: 0.045024943 + outSlope: 0.045024943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.023283014 + inSlope: 0.018749347 + outSlope: 0.018749347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.003148574 + inSlope: 0.026154565 + outSlope: 0.026154565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0.002606615 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: -0.0026066152 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.541667 + value: -0.0026066161 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: -0.014317035 + inSlope: -0.0880329 + outSlope: -0.0880329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.031268172 + inSlope: -0.017138543 + outSlope: -0.017138543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: -0.07254778 + inSlope: -0.04651006 + outSlope: -0.04651006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.08133571 + inSlope: -0.021021564 + outSlope: -0.021021564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.023349857 + inSlope: 0.17722034 + outSlope: 0.17722034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.05407601 + inSlope: 0.20296612 + outSlope: 0.20296612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.006252808 + inSlope: -0.445123 + outSlope: -0.445123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.109023094 + inSlope: -0.041057896 + outSlope: -0.041057896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0.10857825 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: -0.10857825 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.541667 + value: -0.10857825 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: -0.076657265 + inSlope: 0.3496322 + outSlope: 0.3496322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.059983835 + inSlope: 0.45870644 + outSlope: 0.45870644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 0.093798466 + inSlope: -0.46489942 + outSlope: -0.46489942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.021576198 + inSlope: -0.26979816 + outSlope: -0.26979816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04619368 + inSlope: 0.028146029 + outSlope: 0.028146029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.02376156 + inSlope: 0.09023298 + outSlope: 0.09023298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.012586374 + inSlope: 0.05822813 + outSlope: 0.05822813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.013901194 + inSlope: 0.012516243 + outSlope: 0.012516243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.013963888 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.013963889 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.541667 + value: 0.013963889 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.0031839546 + inSlope: -0.07876517 + outSlope: -0.07876517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.010626184 + inSlope: -0.0057399906 + outSlope: -0.0057399906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: -0.04449978 + inSlope: -0.047232624 + outSlope: -0.047232624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.046507582 + inSlope: 0.004650647 + outSlope: 0.004650647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99537843 + inSlope: 0.008452892 + outSlope: 0.008452892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.99701047 + inSlope: -0.0062634936 + outSlope: -0.0062634936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.99963015 + inSlope: 0.003601311 + outSlope: 0.003601311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.993937 + inSlope: -0.004508255 + outSlope: -0.004508255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.9939864 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.9939864 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.541667 + value: 0.9939864 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.9969496 + inSlope: 0.025363637 + outSlope: 0.025363637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.99765295 + inSlope: -0.027848449 + outSlope: -0.027848449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 0.9919468 + inSlope: 0.037656717 + outSlope: 0.037656717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9953673 + inSlope: -0.005814985 + outSlope: -0.005814985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17637405 + inSlope: 0.10835016 + outSlope: 0.10835016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.115102485 + inSlope: 0.21467647 + outSlope: 0.21467647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.07817917 + inSlope: 0.2666947 + outSlope: 0.2666947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.042845786 + inSlope: 0.2585575 + outSlope: 0.2585575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.012448728 + inSlope: 0.11154215 + outSlope: 0.11154215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.0037707193 + inSlope: 0.0358757 + outSlope: 0.0358757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.0011605256 + inSlope: 0.0022751703 + outSlope: 0.0022751703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.0015770522 + inSlope: 0.0005412993 + outSlope: 0.0005412993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -0.0011400481 + inSlope: -0.0010683734 + outSlope: -0.0010683734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -0.0016637882 + inSlope: 0.0010468939 + outSlope: 0.0010468939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4583335 + value: -0.0010417406 + inSlope: -0.0011319217 + outSlope: -0.0011319217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: -0.0015367075 + inSlope: 0.00023111491 + outSlope: 0.00023111491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: -0.0010822664 + inSlope: 0.0021432356 + outSlope: 0.0021432356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.00088475784 + inSlope: 0.03370546 + outSlope: 0.03370546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.022055646 + inSlope: 0.057850465 + outSlope: 0.057850465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: -0.0033016007 + inSlope: -0.3433019 + outSlope: -0.3433019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -0.095263645 + inSlope: -0.48142815 + outSlope: -0.48142815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.174789 + inSlope: -0.22487934 + outSlope: -0.22487934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.50444686 + inSlope: -0.15188384 + outSlope: -0.15188384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.3730919 + inSlope: -0.8648321 + outSlope: -0.8648321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.15388165 + inSlope: -1.7594934 + outSlope: -1.7594934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.07283051 + inSlope: -1.6780317 + outSlope: -1.6780317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.2527161 + inSlope: -0.21681732 + outSlope: -0.21681732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.22835372 + inSlope: 0.20902139 + outSlope: 0.20902139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.15964581 + inSlope: 0.15414596 + outSlope: 0.15414596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.18745041 + inSlope: 0.037416473 + outSlope: 0.037416473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -0.15712723 + inSlope: -0.071587846 + outSlope: -0.071587846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -0.19200549 + inSlope: 0.071950525 + outSlope: 0.071950525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4583335 + value: -0.14888458 + inSlope: -0.07635277 + outSlope: -0.07635277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: -0.18221593 + inSlope: 0.016158294 + outSlope: 0.016158294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: -0.15116425 + inSlope: 0.14656469 + outSlope: 0.14656469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -0.08263381 + inSlope: 0.71626204 + outSlope: 0.71626204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.20666641 + inSlope: 0.8613582 + outSlope: 0.8613582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 0.39483917 + inSlope: 0.35291177 + outSlope: 0.35291177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: 0.44737753 + inSlope: 0.32296816 + outSlope: 0.32296816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.50412166 + inSlope: 0.14855891 + outSlope: 0.14855891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06550979 + inSlope: -0.0044451356 + outSlope: -0.0044451356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.053802736 + inSlope: 0.087787844 + outSlope: 0.087787844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -0.027376305 + inSlope: 0.21001972 + outSlope: 0.21001972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.008486374 + inSlope: 0.083665766 + outSlope: 0.083665766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.0067166695 + inSlope: -0.044859245 + outSlope: -0.044859245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.013733727 + inSlope: -0.038309116 + outSlope: -0.038309116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.014198763 + inSlope: -0.0005274339 + outSlope: -0.0005274339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.014078754 + inSlope: -0.00013071302 + outSlope: -0.00013071302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -0.014174367 + inSlope: 0.00028296208 + outSlope: 0.00028296208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -0.014020631 + inSlope: -0.00025342434 + outSlope: -0.00025342434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4583335 + value: -0.014152555 + inSlope: 0.00026996539 + outSlope: 0.00026996539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: -0.014022467 + inSlope: -0.00004364163 + outSlope: -0.00004364163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: -0.0141245 + inSlope: -0.00046730967 + outSlope: -0.00046730967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -0.014005481 + inSlope: 0.008123536 + outSlope: 0.008123536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.007161945 + inSlope: 0.14195591 + outSlope: 0.14195591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 0.02512559 + inSlope: -0.18581282 + outSlope: -0.18581282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -0.033081762 + inSlope: -0.27418435 + outSlope: -0.27418435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.06460583 + inSlope: -0.054971542 + outSlope: -0.054971542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8426945 + inSlope: 0.11207914 + outSlope: 0.11207914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.9190534 + inSlope: 0.3803801 + outSlope: 0.3803801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 0.9846111 + inSlope: 0.29785472 + outSlope: 0.29785472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.9963875 + inSlope: -0.10443455 + outSlope: -0.10443455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.9674371 + inSlope: -0.052821696 + outSlope: -0.052821696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.9734741 + inSlope: 0.048917785 + outSlope: 0.048917785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.9870716 + inSlope: 0.02501034 + outSlope: 0.02501034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.98217195 + inSlope: 0.0071268105 + outSlope: 0.0071268105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 0.987476 + inSlope: -0.011407621 + outSlope: -0.011407621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 0.9812923 + inSlope: 0.014058368 + outSlope: 0.014058368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4583335 + value: 0.9887528 + inSlope: -0.011509224 + outSlope: -0.011509224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: 0.9831574 + inSlope: 0.002991906 + outSlope: 0.002991906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: 0.98840714 + inSlope: 0.022312488 + outSlope: 0.022312488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.9964812 + inSlope: 0.05802004 + outSlope: 0.05802004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.9781366 + inSlope: -0.18385719 + outSlope: -0.18385719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 0.9184007 + inSlope: -0.14772587 + outSlope: -0.14772587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: 0.8886416 + inSlope: -0.2245833 + outSlope: -0.2245833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.84328896 + inSlope: -0.13729659 + outSlope: -0.13729659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12785822 + inSlope: -0.059620142 + outSlope: -0.059620142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.1303424 + inSlope: -0.30591238 + outSlope: -0.30591238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.20141721 + inSlope: -1.312956 + outSlope: -1.312956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.30989122 + inSlope: -0.8677722 + outSlope: -0.8677722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.3640747 + inSlope: -0.86708015 + outSlope: -0.86708015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.40733495 + inSlope: -1.2041266 + outSlope: -1.2041266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.46441856 + inSlope: -0.41767818 + outSlope: -0.41767818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.44214144 + inSlope: 0.72935236 + outSlope: 0.72935236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.28600398 + inSlope: 1.5870733 + outSlope: 1.5870733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.1549365 + inSlope: 1.3612146 + outSlope: 1.3612146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -0.07198 + inSlope: 0.6221193 + outSlope: 0.6221193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.04900517 + inSlope: -0.034770176 + outSlope: -0.034770176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.06485335 + inSlope: -0.17008226 + outSlope: -0.17008226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.07175099 + inSlope: -0.012331721 + outSlope: -0.012331721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -0.060162496 + inSlope: 0.05220135 + outSlope: 0.05220135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.063844144 + inSlope: -0.06751855 + outSlope: -0.06751855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: -0.07871799 + inSlope: 0.056381598 + outSlope: 0.056381598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: -0.05331243 + inSlope: -0.038984686 + outSlope: -0.038984686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.08375822 + inSlope: 0.061269306 + outSlope: 0.061269306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9583335 + value: -0.0477329 + inSlope: -0.009059464 + outSlope: -0.009059464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: -0.08107616 + inSlope: -0.04581823 + outSlope: -0.04581823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: -0.08372208 + inSlope: -0.029490374 + outSlope: -0.029490374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -0.13682814 + inSlope: -0.539001 + outSlope: -0.539001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.16124803 + inSlope: -0.19877464 + outSlope: -0.19877464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: -0.15339263 + inSlope: -0.04491003 + outSlope: -0.04491003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -0.19539551 + inSlope: -0.9624008 + outSlope: -0.9624008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: -0.30248293 + inSlope: -1.0602484 + outSlope: -1.0602484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: -0.33889073 + inSlope: -0.114502296 + outSlope: -0.114502296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: -0.3395511 + inSlope: 0.17951417 + outSlope: 0.17951417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -0.24758269 + inSlope: 0.5912372 + outSlope: 0.5912372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -0.1484957 + inSlope: 0.2845908 + outSlope: 0.2845908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.13294697 + inSlope: 0.13665643 + outSlope: 0.13665643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5554248 + inSlope: 1.1622162 + outSlope: 1.1622162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.50699914 + inSlope: 1.4723868 + outSlope: 1.4723868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.3502364 + inSlope: 1.8606191 + outSlope: 1.8606191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.2263048 + inSlope: 1.0094612 + outSlope: 1.0094612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.15795718 + inSlope: 1.0788858 + outSlope: 1.0788858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.1036454 + inSlope: 1.7806485 + outSlope: 1.7806485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.009569848 + inSlope: 1.9982767 + outSlope: 1.9982767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.06287766 + inSlope: 1.815309 + outSlope: 1.815309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.31401584 + inSlope: 1.9981304 + outSlope: 1.9981304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.45752284 + inSlope: 1.2484393 + outSlope: 1.2484393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.5119519 + inSlope: -0.04791455 + outSlope: -0.04791455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.43959618 + inSlope: -1.4687226 + outSlope: -1.4687226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.3187383 + inSlope: -0.92003393 + outSlope: -0.92003393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.27964988 + inSlope: -0.20874226 + outSlope: -0.20874226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.2096537 + inSlope: 0.068239674 + outSlope: 0.068239674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.25608277 + inSlope: -0.044877663 + outSlope: -0.044877663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 0.21588835 + inSlope: 0.031215534 + outSlope: 0.031215534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.2653191 + inSlope: -0.059879094 + outSlope: -0.059879094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.20519379 + inSlope: 0.04905904 + outSlope: 0.04905904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9583335 + value: 0.24917336 + inSlope: 0.007039753 + outSlope: 0.007039753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: 0.23888545 + inSlope: -0.09848358 + outSlope: -0.09848358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: 0.26552048 + inSlope: 0.5412066 + outSlope: 0.5412066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 0.35229552 + inSlope: -0.04822671 + outSlope: -0.04822671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.34531248 + inSlope: -1.1286632 + outSlope: -1.1286632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.2582406 + inSlope: -1.6639891 + outSlope: -1.6639891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.18032221 + inSlope: -0.4458719 + outSlope: -0.4458719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.15506211 + inSlope: -0.7019506 + outSlope: -0.7019506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.04712193 + inSlope: -1.4152186 + outSlope: -1.4152186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: -0.14370956 + inSlope: -1.0567615 + outSlope: -1.0567615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -0.3441526 + inSlope: -0.90616095 + outSlope: -0.90616095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -0.5273266 + inSlope: -0.6487831 + outSlope: -0.6487831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.56617796 + inSlope: -0.36808497 + outSlope: -0.36808497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7669473 + inSlope: 0.9876852 + outSlope: 0.9876852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.8081009 + inSlope: 1.0255344 + outSlope: 1.0255344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.8821613 + inSlope: 0.45921564 + outSlope: 0.45921564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.8846609 + inSlope: -0.23341373 + outSlope: -0.23341373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.84577334 + inSlope: -0.83807373 + outSlope: -0.83807373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.8013859 + inSlope: -1.3140273 + outSlope: -1.3140273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.7362711 + inSlope: -1.0831175 + outSlope: -1.0831175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.7111261 + inSlope: -0.4999801 + outSlope: -0.4999801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.6453008 + inSlope: -0.92374164 + outSlope: -0.92374164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.5436905 + inSlope: -1.3622289 + outSlope: -1.3622289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.4354274 + inSlope: -1.1578269 + outSlope: -1.1578269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.34845698 + inSlope: -0.89776963 + outSlope: -0.89776963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.29210725 + inSlope: -0.3779703 + outSlope: -0.3779703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2840548 + inSlope: 0.01617764 + outSlope: 0.01617764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.31409383 + inSlope: 0.050946202 + outSlope: 0.050946202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.29589 + inSlope: -0.07000752 + outSlope: -0.07000752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 0.2906818 + inSlope: 0.056086116 + outSlope: 0.056086116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.30650476 + inSlope: -0.042245537 + outSlope: -0.042245537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.2871076 + inSlope: 0.058702335 + outSlope: 0.058702335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9583335 + value: 0.3177226 + inSlope: -0.031239629 + outSlope: -0.031239629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: 0.2819978 + inSlope: -0.01779973 + outSlope: -0.01779973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: 0.29950872 + inSlope: 0.28321373 + outSlope: 0.28321373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 0.38695106 + inSlope: 0.5243491 + outSlope: 0.5243491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.40939945 + inSlope: 0.6827704 + outSlope: 0.6827704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.44384837 + inSlope: 0.92076933 + outSlope: 0.92076933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.54300165 + inSlope: 1.3587658 + outSlope: 1.3587658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.6410645 + inSlope: 0.86037296 + outSlope: 0.86037296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.69767964 + inSlope: 0.5687442 + outSlope: 0.5687442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: 0.7697322 + inSlope: 0.3957681 + outSlope: 0.3957681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 0.8259128 + inSlope: 0.034144476 + outSlope: 0.034144476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: 0.777338 + inSlope: -0.35035935 + outSlope: -0.35035935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.75294703 + inSlope: -0.25053072 + outSlope: -0.25053072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.29486832 + inSlope: -0.595253 + outSlope: -0.595253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.2700661 + inSlope: -0.53526485 + outSlope: -0.53526485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.24198543 + inSlope: -0.050387815 + outSlope: -0.050387815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.26481822 + inSlope: 0.67167723 + outSlope: 0.67167723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.35660425 + inSlope: 1.4824904 + outSlope: 1.4824904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.4255779 + inSlope: 1.6255388 + outSlope: 1.6255388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.4920658 + inSlope: 1.4091535 + outSlope: 1.4091535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.5430074 + inSlope: 1.0357058 + outSlope: 1.0357058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.6349667 + inSlope: 0.66277283 + outSlope: 0.66277283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.6863441 + inSlope: 0.58708847 + outSlope: 0.58708847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 0.73697156 + inSlope: 0.7803543 + outSlope: 0.7803543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.82639664 + inSlope: 1.1532371 + outSlope: 1.1532371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.8993738 + inSlope: 0.45897272 + outSlope: 0.45897272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.91430885 + inSlope: 0.05778763 + outSlope: 0.05778763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.9239973 + inSlope: -0.029431332 + outSlope: -0.029431332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.9180385 + inSlope: 0.030359767 + outSlope: 0.030359767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 0.9288163 + inSlope: -0.020063646 + outSlope: -0.020063646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.91258883 + inSlope: 0.029278297 + outSlope: 0.029278297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.9319063 + inSlope: -0.023423284 + outSlope: -0.023423284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9583335 + value: 0.9136118 + inSlope: 0.008446487 + outSlope: 0.008446487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: 0.92565525 + inSlope: 0.026847057 + outSlope: 0.026847057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: 0.91257006 + inSlope: -0.25601962 + outSlope: -0.25601962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 0.84109145 + inSlope: -0.31034303 + outSlope: -0.31034303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.8289454 + inSlope: 0.038066775 + outSlope: 0.038066775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.8442637 + inSlope: 0.047674254 + outSlope: 0.047674254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.796526 + inSlope: -1.0800502 + outSlope: -1.0800502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.68811053 + inSlope: -1.0817287 + outSlope: -1.0817287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.6294249 + inSlope: -0.5728164 + outSlope: -0.5728164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: 0.5211191 + inSlope: -0.7618008 + outSlope: -0.7618008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 0.3716583 + inSlope: -0.52076334 + outSlope: -0.52076334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: 0.30922714 + inSlope: -0.078606546 + outSlope: -0.078606546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.30795842 + inSlope: 0.009496378 + outSlope: 0.009496378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.005488806 + inSlope: -0.0066422783 + outSlope: -0.0066422783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0054607834 + inSlope: 0.013388739 + outSlope: 0.013388739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.0046498394 + inSlope: 0.021222264 + outSlope: 0.021222264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0036922614 + inSlope: 0.022445405 + outSlope: 0.022445405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.0027793888 + inSlope: 0.018205367 + outSlope: 0.018205367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.0016086778 + inSlope: 0.014364127 + outSlope: 0.014364127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0009781369 + inSlope: 0.019302199 + outSlope: 0.019302199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.0000001616508 + inSlope: 0.011735706 + outSlope: 0.011735706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.00000016164084 + inSlope: 2.3942445e-10 + outSlope: 2.3942445e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.00000016114218 + inSlope: 2.394247e-10 + outSlope: 2.394247e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.541667 + value: -0.0000001606535 + inSlope: 2.3942404e-10 + outSlope: 2.3942404e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -0.0000001603543 + inSlope: 0.00000000147475 + outSlope: 0.00000000147475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.00000016024138 + inSlope: -0.013698483 + outSlope: -0.013698483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: -0.0011416961 + inSlope: -0.021849975 + outSlope: -0.021849975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -0.0018209923 + inSlope: -0.014360001 + outSlope: -0.014360001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -0.0023383661 + inSlope: -0.008230229 + outSlope: -0.008230229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -0.0025068421 + inSlope: -0.00011077791 + outSlope: -0.00011077791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: -0.0023475958 + inSlope: -0.00042540499 + outSlope: -0.00042540499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: -0.0025422906 + inSlope: -0.012017997 + outSlope: -0.012017997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: -0.0033490916 + inSlope: -0.022687634 + outSlope: -0.022687634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: -0.0072357683 + inSlope: -0.007595936 + outSlope: -0.007595936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -0.005752528 + inSlope: 0.0061781844 + outSlope: 0.0061781844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.0049592904 + inSlope: 0.0015629672 + outSlope: 0.0015629672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.41387916 + inSlope: 0.8098726 + outSlope: 0.8098726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.4535099 + inSlope: -0.39035514 + outSlope: -0.39035514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.41509426 + inSlope: -1.3473593 + outSlope: -1.3473593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.34122995 + inSlope: -1.6437279 + outSlope: -1.6437279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.2781169 + inSlope: -0.90167844 + outSlope: -0.90167844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.25311708 + inSlope: -1.0700198 + outSlope: -1.0700198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.17692176 + inSlope: -3.064692 + outSlope: -3.064692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.002273879 + inSlope: -2.150348 + outSlope: -2.150348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.002273879 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.0022738804 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.541667 + value: -0.0022738818 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -0.0022738825 + inSlope: 0.000008733977 + outSlope: 0.000008733977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.0022731547 + inSlope: 2.3200343 + outSlope: 2.3200343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.19106156 + inSlope: 3.5041614 + outSlope: 3.5041614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.2897403 + inSlope: 1.7029943 + outSlope: 1.7029943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.33297834 + inSlope: 0.32953316 + outSlope: 0.32953316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.3172013 + inSlope: -0.73545146 + outSlope: -0.73545146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.27169043 + inSlope: -0.397769 + outSlope: -0.397769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.28405347 + inSlope: 0.9211495 + outSlope: 0.9211495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.3484526 + inSlope: 1.3458978 + outSlope: 1.3458978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: 0.47264814 + inSlope: 0.27976078 + outSlope: 0.27976078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: 0.42295715 + inSlope: -0.20767207 + outSlope: -0.20767207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.39451042 + inSlope: -0.08342966 + outSlope: -0.08342966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.012071408 + inSlope: -0.01331234 + outSlope: -0.01331234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.010730715 + inSlope: -0.015915167 + outSlope: -0.015915167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.010190464 + inSlope: -0.0067246337 + outSlope: -0.0067246337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.010170328 + inSlope: -0.007099918 + outSlope: -0.007099918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.009598804 + inSlope: -0.027490076 + outSlope: -0.027490076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.006148373 + inSlope: -0.029257813 + outSlope: -0.029257813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0054413374 + inSlope: -0.07463026 + outSlope: -0.07463026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.00007081423 + inSlope: -0.06614583 + outSlope: -0.06614583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.00007081426 + inSlope: -6.1118033e-10 + outSlope: -6.1118033e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.00007081569 + inSlope: -6.984926e-10 + outSlope: -6.984926e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.541667 + value: -0.0000708171 + inSlope: -6.984896e-10 + outSlope: -6.984896e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -0.00007081795 + inSlope: 0.00000027066665 + outSlope: 0.00000027066665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.000070795366 + inSlope: 0.07123434 + outSlope: 0.07123434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.0058653546 + inSlope: 0.07303214 + outSlope: 0.07303214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.006015195 + inSlope: 0.009075542 + outSlope: 0.009075542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.0066216486 + inSlope: 0.017753147 + outSlope: 0.017753147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.007494618 + inSlope: 0.020324348 + outSlope: 0.020324348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.008315347 + inSlope: 0.013036568 + outSlope: 0.013036568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.008581004 + inSlope: 0.008317595 + outSlope: 0.008317595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.009008477 + inSlope: 0.02029029 + outSlope: 0.02029029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: 0.013489037 + inSlope: 0.0042217392 + outSlope: 0.0042217392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: 0.012322915 + inSlope: -0.005839672 + outSlope: -0.005839672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.011550073 + inSlope: -0.0007322375 + outSlope: -0.0007322375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9102352 + inSlope: -0.38654423 + outSlope: -0.38654423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.8911699 + inSlope: 0.18696357 + outSlope: 0.18696357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.9097095 + inSlope: 0.5849719 + outSlope: 0.5849719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.93991756 + inSlope: 0.6094293 + outSlope: 0.6094293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.9604953 + inSlope: 0.2879512 + outSlope: 0.2879512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.9674148 + inSlope: 0.24355105 + outSlope: 0.24355105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9842094 + inSlope: 0.39099178 + outSlope: 0.39099178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.99999744 + inSlope: 0.18945627 + outSlope: 0.18945627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.99999744 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.99999744 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.541667 + value: 0.99999744 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 0.99999744 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.99999744 + inSlope: -0.22125162 + outSlope: -0.22125162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.9815599 + inSlope: -0.514952 + outSlope: -0.514952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.95708466 + inSlope: -0.46381673 + outSlope: -0.46381673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.94290835 + inSlope: -0.10511225 + outSlope: -0.10511225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.94832534 + inSlope: 0.23325029 + outSlope: 0.23325029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.96234596 + inSlope: 0.12529491 + outSlope: 0.12529491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.9587667 + inSlope: -0.30082697 + outSlope: -0.30082697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.93727714 + inSlope: -0.48810762 + outSlope: -0.48810762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: 0.8811183 + inSlope: -0.14838636 + outSlope: -0.14838636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: 0.90604764 + inSlope: 0.09728302 + outSlope: 0.09728302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9188055 + inSlope: 0.036027156 + outSlope: 0.036027156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.033837583 + inSlope: 1.4668121 + outSlope: 1.4668121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.09495476 + inSlope: 1.102628 + outSlope: 1.102628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.12572326 + inSlope: 0.32298312 + outSlope: 0.32298312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.12187002 + inSlope: -0.14836092 + outSlope: -0.14836092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.09111143 + inSlope: -0.27664158 + outSlope: -0.27664158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.049393494 + inSlope: -0.19516733 + outSlope: -0.19516733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.015003024 + inSlope: -0.12044107 + outSlope: -0.12044107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.006067214 + inSlope: -0.018193059 + outSlope: -0.018193059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.006250981 + inSlope: 0.0020643808 + outSlope: 0.0020643808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.006252449 + inSlope: 0.0000007208423 + outSlope: 0.0000007208423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: 0.0062539466 + inSlope: 0.0000007152544 + outSlope: 0.0000007152544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.006254337 + inSlope: 0.0014788695 + outSlope: 0.0014788695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.0068153823 + inSlope: 0.0146703515 + outSlope: 0.0146703515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.008401841 + inSlope: 0.021246675 + outSlope: 0.021246675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.010968187 + inSlope: 0.041407682 + outSlope: 0.041407682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.014988281 + inSlope: 0.0020886017 + outSlope: 0.0020886017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.009369872 + inSlope: -0.051441118 + outSlope: -0.051441118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.0025900237 + inSlope: -0.052352488 + outSlope: -0.052352488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: -0.0026239734 + inSlope: -0.009165062 + outSlope: -0.009165062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: -0.0011508644 + inSlope: 0.02103291 + outSlope: 0.02103291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.00034250258 + inSlope: 0.019400535 + outSlope: 0.019400535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0033009837 + inSlope: -0.32186946 + outSlope: -0.32186946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.016712211 + inSlope: -0.34147698 + outSlope: -0.34147698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0317574 + inSlope: -0.23752025 + outSlope: -0.23752025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.036505565 + inSlope: -0.13065197 + outSlope: -0.13065197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.051695064 + inSlope: -0.063986994 + outSlope: -0.063986994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.05954865 + inSlope: -0.011157755 + outSlope: -0.011157755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.02707462 + inSlope: 0.24855997 + outSlope: 0.24855997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.0006413231 + inSlope: 0.036681443 + outSlope: 0.036681443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0074867844 + inSlope: 0.008348825 + outSlope: 0.008348825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.0074855755 + inSlope: -0.0000005867321 + outSlope: -0.0000005867321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: 0.00748434 + inSlope: -0.00000059790796 + outSlope: -0.00000059790796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.0074840253 + inSlope: 0.010494686 + outSlope: 0.010494686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.010159556 + inSlope: 0.040655095 + outSlope: 0.040655095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.012135089 + inSlope: 0.007063412 + outSlope: 0.007063412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.013460128 + inSlope: 0.03056474 + outSlope: 0.03056474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.016729828 + inSlope: 0.0025652149 + outSlope: 0.0025652149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.0108833965 + inSlope: -0.061437353 + outSlope: -0.061437353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.0024503854 + inSlope: -0.064398915 + outSlope: -0.064398915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: -0.0027311945 + inSlope: 0.005879775 + outSlope: 0.005879775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: -0.00037452858 + inSlope: 0.008565583 + outSlope: 0.008565583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.00009969137 + inSlope: 0.0065960423 + outSlope: 0.0065960423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.051940314 + inSlope: -2.2887933 + outSlope: -2.2887933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.14730671 + inSlope: -1.7433861 + outSlope: -1.7433861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.1972225 + inSlope: -0.401708 + outSlope: -0.401708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.18078238 + inSlope: 0.70354426 + outSlope: 0.70354426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.007899721 + inSlope: 1.6709888 + outSlope: 1.6709888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.17700198 + inSlope: 0.07015824 + outSlope: 0.07015824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.0048556975 + inSlope: -1.3582733 + outSlope: -1.3582733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.2057962 + inSlope: -0.7699356 + outSlope: -0.7699356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.24000563 + inSlope: -0.00011050698 + outSlope: -0.00011050698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: -0.24019393 + inSlope: -0.000092267815 + outSlope: -0.000092267815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: -0.24038608 + inSlope: -0.000092267815 + outSlope: -0.000092267815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.24043603 + inSlope: -0.00010442721 + outSlope: -0.00010442721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -0.25938693 + inSlope: -0.79837835 + outSlope: -0.79837835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.37234622 + inSlope: -1.6157899 + outSlope: -1.6157899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -0.50212353 + inSlope: -1.241782 + outSlope: -1.241782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: -0.5516299 + inSlope: 0.4733603 + outSlope: 0.4733603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -0.34717548 + inSlope: 1.7986026 + outSlope: 1.7986026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.102690615 + inSlope: 1.9137845 + outSlope: 1.9137845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 0.13965988 + inSlope: 0.062766746 + outSlope: 0.062766746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 0.027825616 + inSlope: -0.5636972 + outSlope: -0.5636972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.0077781575 + inSlope: -0.48113537 + outSlope: -0.48113537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9980713 + inSlope: -0.32857847 + outSlope: -0.32857847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.98438054 + inSlope: -0.31591487 + outSlope: -0.31591487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.9717451 + inSlope: -0.109441996 + outSlope: -0.109441996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.9752604 + inSlope: 0.13404393 + outSlope: 0.13404393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.99446666 + inSlope: 0.03575279 + outSlope: 0.03575279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.9811649 + inSlope: -0.002499085 + outSlope: -0.002499085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.99950904 + inSlope: 0.0007260144 + outSlope: 0.0007260144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.9785759 + inSlope: -0.15623967 + outSlope: -0.15623967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9707225 + inSlope: -0.000102281636 + outSlope: -0.000102281636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.97067595 + inSlope: -0.00002288814 + outSlope: -0.00002288814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: 0.9706284 + inSlope: -0.00002288814 + outSlope: -0.00002288814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.970616 + inSlope: -0.00012087855 + outSlope: -0.00012087855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.96569604 + inSlope: -0.22789586 + outSlope: -0.22789586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.92797655 + inSlope: -0.6545745 + outSlope: -0.6545745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.8646216 + inSlope: -0.70714796 + outSlope: -0.70714796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.8337865 + inSlope: 0.305172 + outSlope: 0.305172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.93769026 + inSlope: 0.6606585 + outSlope: 0.6606585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.994707 + inSlope: 0.20379215 + outSlope: 0.20379215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 0.9901923 + inSlope: -0.00825529 + outSlope: -0.00825529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 0.99961203 + inSlope: 0.01766755 + outSlope: 0.01766755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9999697 + inSlope: 0.008584434 + outSlope: 0.008584434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08179519 + inSlope: 0.16826767 + outSlope: 0.16826767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.07478404 + inSlope: 0.19349393 + outSlope: 0.19349393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.04131904 + inSlope: 0.39329222 + outSlope: 0.39329222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.021450259 + inSlope: 0.42242503 + outSlope: 0.42242503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.006875393 + inSlope: 0.30620763 + outSlope: 0.30620763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.036498025 + inSlope: 0.5959 + outSlope: 0.5959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.24649982 + inSlope: 1.6007535 + outSlope: 1.6007535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.37046254 + inSlope: 1.189415 + outSlope: 1.189415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.40410456 + inSlope: -0.81726116 + outSlope: -0.81726116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.25898984 + inSlope: -0.69496715 + outSlope: -0.69496715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.22491238 + inSlope: -0.21787214 + outSlope: -0.21787214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.1556585 + inSlope: 0.040011264 + outSlope: 0.040011264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.20395891 + inSlope: -0.0194323 + outSlope: -0.0194323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.16515964 + inSlope: -0.07330499 + outSlope: -0.07330499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.21634069 + inSlope: 0.03892422 + outSlope: 0.03892422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.15911372 + inSlope: -0.09637412 + outSlope: -0.09637412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.625 + value: 0.17690985 + inSlope: 0.10813467 + outSlope: 0.10813467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4583335 + value: 0.17691045 + inSlope: -0.10756486 + outSlope: -0.10756486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.625 + value: 0.15235022 + inSlope: -0.2683199 + outSlope: -0.2683199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7083335 + value: 0.13899854 + inSlope: 0.44588318 + outSlope: 0.44588318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 0.23262106 + inSlope: 1.2762954 + outSlope: 1.2762954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.29978073 + inSlope: 0.031631574 + outSlope: 0.031631574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.28425235 + inSlope: -0.30580556 + outSlope: -0.30580556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.27429685 + inSlope: -0.44999662 + outSlope: -0.44999662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.24675277 + inSlope: -0.7693132 + outSlope: -0.7693132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.21018724 + inSlope: -1.6556942 + outSlope: -1.6556942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.108778365 + inSlope: -2.1458716 + outSlope: -2.1458716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: -0.0930924 + inSlope: -0.4458835 + outSlope: -0.4458835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: -0.10787663 + inSlope: -0.048678137 + outSlope: -0.048678137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -0.10869071 + inSlope: 0.11503738 + outSlope: 0.11503738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.0846649 + inSlope: 0.03956264 + outSlope: 0.03956264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.30415666 + inSlope: -0.94006705 + outSlope: -0.94006705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.34332612 + inSlope: -1.100534 + outSlope: -1.100534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.51236063 + inSlope: -1.5209758 + outSlope: -1.5209758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.58034223 + inSlope: -1.296632 + outSlope: -1.296632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.642972 + inSlope: -0.38041583 + outSlope: -0.38041583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.63841695 + inSlope: 0.52234113 + outSlope: 0.52234113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -0.42981318 + inSlope: 1.9071791 + outSlope: 1.9071791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.25010905 + inSlope: 2.2613132 + outSlope: 2.2613132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.03158063 + inSlope: 0.7625682 + outSlope: 0.7625682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.025752667 + inSlope: -0.11426854 + outSlope: -0.11426854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.031074962 + inSlope: -0.015864383 + outSlope: -0.015864383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0.024626944 + inSlope: 0.037770033 + outSlope: 0.037770033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: -0.02638799 + inSlope: -0.05032392 + outSlope: -0.05032392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: -0.044969525 + inSlope: -0.0014537992 + outSlope: -0.0014537992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.006620522 + inSlope: -0.00049708365 + outSlope: -0.00049708365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.044420745 + inSlope: -0.05037935 + outSlope: -0.05037935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.625 + value: -0.022646874 + inSlope: 0.06571716 + outSlope: 0.06571716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4583335 + value: -0.038836323 + inSlope: -0.0593234 + outSlope: -0.0593234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.625 + value: -0.047204383 + inSlope: -0.05624713 + outSlope: -0.05624713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7083335 + value: -0.05210057 + inSlope: -0.086448595 + outSlope: -0.086448595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -0.074683905 + inSlope: -0.62104726 + outSlope: -0.62104726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: -0.1476067 + inSlope: -0.8686987 + outSlope: -0.8686987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -0.18110113 + inSlope: -0.9844897 + outSlope: -0.9844897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -0.22964758 + inSlope: -1.1127789 + outSlope: -1.1127789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -0.27383235 + inSlope: -1.026972 + outSlope: -1.026972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: -0.31522873 + inSlope: -0.31944984 + outSlope: -0.31944984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: -0.30045354 + inSlope: 0.22812632 + outSlope: 0.22812632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: -0.31963214 + inSlope: -0.31795213 + outSlope: -0.31795213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: -0.35470575 + inSlope: 0.0010909587 + outSlope: 0.0010909587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -0.32205215 + inSlope: 0.2881189 + outSlope: 0.2881189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.2892589 + inSlope: -0.00029110687 + outSlope: -0.00029110687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6358772 + inSlope: -0.9975815 + outSlope: -0.9975815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.5943113 + inSlope: -1.1918077 + outSlope: -1.1918077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.42791468 + inSlope: -0.94002366 + outSlope: -0.94002366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.39858672 + inSlope: -0.4480852 + outSlope: -0.4480852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.40113407 + inSlope: 0.43318212 + outSlope: 0.43318212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.4615582 + inSlope: 0.86943936 + outSlope: 0.86943936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.6184677 + inSlope: 0.96316934 + outSlope: 0.96316934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.702981 + inSlope: 1.049691 + outSlope: 1.049691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.82850415 + inSlope: 0.9492054 + outSlope: 0.9492054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.9166907 + inSlope: 0.30057567 + outSlope: 0.30057567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.92731225 + inSlope: 0.04194831 + outSlope: 0.04194831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.93419814 + inSlope: -0.016962305 + outSlope: -0.016962305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.9284627 + inSlope: 0.023045573 + outSlope: 0.023045573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.93830377 + inSlope: 0.0055782693 + outSlope: 0.0055782693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.92199033 + inSlope: -0.00008940342 + outSlope: -0.00008940342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.94076824 + inSlope: 0.015413071 + outSlope: 0.015413071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.625 + value: 0.9309516 + inSlope: -0.032285873 + outSlope: -0.032285873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4583335 + value: 0.93600935 + inSlope: 0.030819772 + outSlope: 0.030819772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.625 + value: 0.94158727 + inSlope: 0.044251315 + outSlope: 0.044251315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7083335 + value: 0.93992954 + inSlope: -0.2535541 + outSlope: -0.2535541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 0.89232534 + inSlope: -0.8170084 + outSlope: -0.8170084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.8234085 + inSlope: -0.6263726 + outSlope: -0.6263726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.8023122 + inSlope: -0.6012813 + outSlope: -0.6012813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.77330166 + inSlope: -0.6669685 + outSlope: -0.6669685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.7467317 + inSlope: -0.61798704 + outSlope: -0.61798704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.72180265 + inSlope: -0.4292568 + outSlope: -0.4292568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.71096015 + inSlope: -0.4338994 + outSlope: -0.4338994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 0.56770813 + inSlope: -0.84231126 + outSlope: -0.84231126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 0.5029436 + inSlope: -0.15474318 + outSlope: -0.15474318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 0.523106 + inSlope: 0.37965095 + outSlope: 0.37965095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.64764786 + inSlope: 0.24659112 + outSlope: 0.24659112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.70459807 + inSlope: 0.4515953 + outSlope: 0.4515953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.72341454 + inSlope: 0.45299077 + outSlope: 0.45299077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.74341667 + inSlope: -0.49278396 + outSlope: -0.49278396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.70983905 + inSlope: -0.760103 + outSlope: -0.760103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.6524042 + inSlope: -0.64463776 + outSlope: -0.64463776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.6148623 + inSlope: -0.16067077 + outSlope: -0.16067077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 0.6099149 + inSlope: -0.2999402 + outSlope: -0.2999402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.55319136 + inSlope: -1.1059446 + outSlope: -1.1059446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.3863716 + inSlope: -1.0956552 + outSlope: -1.0956552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.30321482 + inSlope: -0.28770858 + outSlope: -0.28770858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.29755807 + inSlope: 0.03195686 + outSlope: 0.03195686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.32005903 + inSlope: 0.032895714 + outSlope: 0.032895714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 0.30929202 + inSlope: -0.06072993 + outSlope: -0.06072993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 0.3004765 + inSlope: 0.022746878 + outSlope: 0.022746878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.3210712 + inSlope: -0.025909439 + outSlope: -0.025909439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.29608226 + inSlope: -0.0046310714 + outSlope: -0.0046310714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.625 + value: 0.31862074 + inSlope: 0.03902036 + outSlope: 0.03902036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4583335 + value: 0.30179626 + inSlope: -0.040249385 + outSlope: -0.040249385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.625 + value: 0.2966051 + inSlope: -0.014448548 + outSlope: -0.014448548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7083335 + value: 0.30740425 + inSlope: 0.51042485 + outSlope: 0.51042485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 0.37955943 + inSlope: 1.0056313 + outSlope: 1.0056313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.4586308 + inSlope: 0.8391595 + outSlope: 0.8391595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.492644 + inSlope: 0.7781501 + outSlope: 0.7781501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.5234768 + inSlope: 0.7319919 + outSlope: 0.7319919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.5536431 + inSlope: 0.66847706 + outSlope: 0.66847706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.5791833 + inSlope: 0.8735967 + outSlope: 0.8735967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.62644285 + inSlope: 1.0202131 + outSlope: 1.0202131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 0.7529121 + inSlope: 0.45566055 + outSlope: 0.45566055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 0.7807652 + inSlope: 0.09454746 + outSlope: 0.09454746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 0.7815554 + inSlope: -0.120685294 + outSlope: -0.120685294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.69979525 + inSlope: -0.22024845 + outSlope: -0.22024845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000019592369 + inSlope: -0.000000017751603 + outSlope: -0.000000017751603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.000000021904885 + inSlope: -0.000000048065893 + outSlope: -0.000000048065893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.00000002433751 + inSlope: -0.00000006761482 + outSlope: -0.00000006761482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.000000027539453 + inSlope: -0.00000008917256 + outSlope: -0.00000008917256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.000000031768558 + inSlope: -0.000000068747866 + outSlope: -0.000000068747866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.000000033268442 + inSlope: -0.000000017164002 + outSlope: -0.000000017164002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.00000003319889 + inSlope: 0.0000000016692352 + outSlope: 0.0000000016692352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.000000029721258 + inSlope: 0.0000000016692583 + outSlope: 0.0000000016692583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.416667 + value: -0.000000026313177 + inSlope: 0.0000000016692535 + outSlope: 0.0000000016692535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.000000023948388 + inSlope: 0.0000000016692631 + outSlope: 0.0000000016692631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: -0.000000023878835 + inSlope: 0.000000016669492 + outSlope: 0.000000016669492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -0.000000022559254 + inSlope: 0.0000000016691031 + outSlope: 0.0000000016691031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -0.000000023739728 + inSlope: -0.0000000133311255 + outSlope: -0.0000000133311255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -0.000000023670177 + inSlope: 0.0000000016701914 + outSlope: 0.0000000016701914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: -0.000000023600546 + inSlope: 0.00000012953511 + outSlope: 0.00000012953511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: -0.000000012875625 + inSlope: 0.00000020683578 + outSlope: 0.00000020683578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: -0.000000006364297 + inSlope: 0.00000012304764 + outSlope: 0.00000012304764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -8.2298823e-10 + inSlope: 0.000000025350937 + outSlope: 0.000000025350937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: -0.0000000020755793 + inSlope: 0.000000015176736 + outSlope: 0.000000015176736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 0.0000000028926086 + inSlope: 0.000000038513562 + outSlope: 0.000000038513562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.00000001092723 + inSlope: 0.000000013304328 + outSlope: 0.000000013304328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5175888 + inSlope: 0.5875418 + outSlope: 0.5875418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.4445985 + inSlope: 1.5162227 + outSlope: 1.5162227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.366756 + inSlope: 2.288556 + outSlope: 2.288556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.25388548 + inSlope: 3.4748054 + outSlope: 3.4748054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.077188835 + inSlope: 3.0466256 + outSlope: 3.0466256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.000000005587937 + inSlope: 0.92626613 + outSlope: 0.92626613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.0000000053947735 + inSlope: 0.0000000046359174 + outSlope: 0.0000000046359174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.000000004263387 + inSlope: 0.0000000046359174 + outSlope: 0.0000000046359174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.416667 + value: 0.000000013728386 + inSlope: 0.0000000046359308 + outSlope: 0.0000000046359308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.000000020295936 + inSlope: 0.000000004635904 + outSlope: 0.000000004635904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.000000020489097 + inSlope: -0.2856938 + outSlope: -0.2856938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -0.023807976 + inSlope: 0.0000029802322 + outSlope: 0.0000029802322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -0.0000000037252572 + inSlope: 0.2856969 + outSlope: 0.2856969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.000000005456968 + inSlope: -0.000017136223 + outSlope: -0.000017136223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: -0.0000014317548 + inSlope: -2.3050873 + outSlope: -2.3050873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: -0.19208987 + inSlope: -3.597423 + outSlope: -3.597423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: -0.29978552 + inSlope: -1.991796 + outSlope: -1.991796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -0.3841176 + inSlope: -0.3419733 + outSlope: -0.3419733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: -0.35474035 + inSlope: -0.17976081 + outSlope: -0.17976081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -0.42391852 + inSlope: -0.5212318 + outSlope: -0.5212318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.5230607 + inSlope: -0.12500858 + outSlope: -0.12500858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000000021769284 + inSlope: 0.00000003180811 + outSlope: 0.00000003180811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.0000000014926014 + inSlope: 0.00000007007876 + outSlope: 0.00000007007876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.000000004988306 + inSlope: 0.00000009853608 + outSlope: 0.00000009853608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.000000009703942 + inSlope: 0.0000001371049 + outSlope: 0.0000001371049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.000000016413717 + inSlope: 0.00000011498498 + outSlope: 0.00000011498498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.000000019286023 + inSlope: 0.000000037373738 + outSlope: 0.000000037373738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.000000019528194 + inSlope: 0.0000000058120966 + outSlope: 0.0000000058120966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.000000031636706 + inSlope: 0.000000005812103 + outSlope: 0.000000005812103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.416667 + value: 0.00000004350305 + inSlope: 0.0000000058120864 + outSlope: 0.0000000058120864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.000000051736837 + inSlope: 0.0000000058121197 + outSlope: 0.0000000058121197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.000000051979008 + inSlope: -0.0000000011677064 + outSlope: -0.0000000011677064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.000000051639525 + inSlope: 0.000000005812166 + outSlope: 0.000000005812166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.00000005246335 + inSlope: 0.000000012791949 + outSlope: 0.000000012791949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.000000052705516 + inSlope: 0.00000000581166 + outSlope: 0.00000000581166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.000000052947655 + inSlope: -0.00000006031558 + outSlope: -0.00000006031558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.00000004767924 + inSlope: -0.000000108079206 + outSlope: -0.000000108079206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.00000004394109 + inSlope: -0.000000071280084 + outSlope: -0.000000071280084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.000000040821583 + inSlope: -0.000000009358352 + outSlope: -0.000000009358352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 0.000000043140886 + inSlope: -0.0000000020041266 + outSlope: -0.0000000020041266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 0.000000040687 + inSlope: -0.00000001946459 + outSlope: -0.00000001946459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.000000037152574 + inSlope: -0.0000000013236457 + outSlope: -0.0000000013236457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8556295 + inSlope: 0.34412813 + outSlope: 0.34412813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.89573 + inSlope: 0.72418785 + outSlope: 0.72418785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.93031716 + inSlope: 0.85805154 + outSlope: 0.85805154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9672343 + inSlope: 0.8003918 + outSlope: 0.8003918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.9970165 + inSlope: 0.3931882 + outSlope: 0.3931882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 1 + inSlope: 0.035802133 + outSlope: 0.035802133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.416667 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 1 + inSlope: -0.0034010152 + outSlope: -0.0034010152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.9997166 + inSlope: 0.000000038882717 + outSlope: 0.000000038882717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 1 + inSlope: 0.003401054 + outSlope: 0.003401054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 1 + inSlope: -0.22347249 + outSlope: -0.22347249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.98137736 + inSlope: -0.551922 + outSlope: -0.551922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.9540067 + inSlope: -0.572204 + outSlope: -0.572204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.9232842 + inSlope: -0.1372066 + outSlope: -0.1372066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 0.9349649 + inSlope: -0.07071588 + outSlope: -0.07071588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 0.9057003 + inSlope: -0.24334529 + outSlope: -0.24334529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.8522955 + inSlope: -0.07619275 + outSlope: -0.07619275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.036483355 + inSlope: 2.059651 + outSlope: 2.059651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.122302145 + inSlope: 1.7187262 + outSlope: 1.7187262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.17971054 + inSlope: 0.9399625 + outSlope: 0.9399625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.20063235 + inSlope: 0.46862286 + outSlope: 0.46862286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.23349062 + inSlope: 0.30584013 + outSlope: 0.30584013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.2509418 + inSlope: 0.11874512 + outSlope: 0.11874512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.2549345 + inSlope: -0.063401535 + outSlope: -0.063401535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.14849286 + inSlope: -0.84590065 + outSlope: -0.84590065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.046106208 + inSlope: -0.6664784 + outSlope: -0.6664784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.00012094721 + inSlope: -0.068726785 + outSlope: -0.068726785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.00000056346136 + inSlope: 1.2073537e-10 + outSlope: 1.2073537e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.0000005637131 + inSlope: 1.2141765e-10 + outSlope: 1.2141765e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.00000056396175 + inSlope: 1.2346367e-10 + outSlope: 1.2346367e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: 0.00000056401274 + inSlope: 0.00000014695398 + outSlope: 0.00000014695398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.0000008578631 + inSlope: 0.0000015286903 + outSlope: 0.0000015286903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.0000010101894 + inSlope: -0.0000002584522 + outSlope: -0.0000002584522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.0000005523898 + inSlope: -0.0000048189477 + outSlope: -0.0000048189477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: -0.00037138365 + inSlope: -0.007873211 + outSlope: -0.007873211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -0.0028247177 + inSlope: -0.015114387 + outSlope: -0.015114387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.005917077 + inSlope: -0.019017916 + outSlope: -0.019017916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: -0.007296849 + inSlope: -0.01237035 + outSlope: -0.01237035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.007707036 + inSlope: -0.009844414 + outSlope: -0.009844414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0027984625 + inSlope: 0.32527694 + outSlope: 0.32527694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.016351668 + inSlope: 0.39276665 + outSlope: 0.39276665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.035529017 + inSlope: 0.28252697 + outSlope: 0.28252697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.039895583 + inSlope: -0.02006394 + outSlope: -0.02006394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.020836558 + inSlope: -0.3659308 + outSlope: -0.3659308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.015162055 + inSlope: -0.42756468 + outSlope: -0.42756468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.049317893 + inSlope: -0.0032029673 + outSlope: -0.0032029673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.0078079333 + inSlope: 0.22260877 + outSlope: 0.22260877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.0127590755 + inSlope: -0.10395405 + outSlope: -0.10395405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.000046203048 + inSlope: -0.02586061 + outSlope: -0.02586061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.0000023655707 + inSlope: -0.0000000019290374 + outSlope: -0.0000000019290374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0.0000023695875 + inSlope: -0.0000000019263116 + outSlope: -0.0000000019263116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.000002373524 + inSlope: -0.0000000019290347 + outSlope: -0.0000000019290347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: -0.000002374327 + inSlope: 0.00000003335039 + outSlope: 0.00000003335039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.0000022851555 + inSlope: 0.000000569696 + outSlope: 0.000000569696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -0.0000022223708 + inSlope: -0.00000011653199 + outSlope: -0.00000011653199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.0000023781986 + inSlope: -0.0000010919201 + outSlope: -0.0000010919201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: 0.00017688854 + inSlope: 0.0049896063 + outSlope: 0.0049896063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 0.0025682866 + inSlope: 0.013328387 + outSlope: 0.013328387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.0037312682 + inSlope: -0.00058962824 + outSlope: -0.00058962824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 0.0034497094 + inSlope: -0.0042647496 + outSlope: -0.0042647496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.0032785572 + inSlope: -0.004107621 + outSlope: -0.004107621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.21403916 + inSlope: 2.3124642 + outSlope: 2.3124642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.31039184 + inSlope: 1.7519708 + outSlope: 1.7519708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.36003673 + inSlope: 0.3234075 + outSlope: 0.3234075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.33734247 + inSlope: -0.9691329 + outSlope: -0.9691329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.19393367 + inSlope: -2.2130609 + outSlope: -2.2130609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.003023572 + inSlope: -2.208005 + outSlope: -2.208005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.17280409 + inSlope: -0.12782392 + outSlope: -0.12782392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.06262405 + inSlope: 1.7907904 + outSlope: 1.7907904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.27674037 + inSlope: 1.3963622 + outSlope: 1.3963622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.37414363 + inSlope: 0.14427294 + outSlope: 0.14427294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.3741601 + inSlope: 0.000099062876 + outSlope: 0.000099062876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.3743663 + inSlope: 0.00009870538 + outSlope: 0.00009870538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.3745684 + inSlope: 0.00009906273 + outSlope: 0.00009906273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: 0.37460968 + inSlope: 0.05741058 + outSlope: 0.05741058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.48812452 + inSlope: 0.58394307 + outSlope: 0.58394307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.5459207 + inSlope: -0.097712636 + outSlope: -0.097712636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.37010112 + inSlope: -1.8821878 + outSlope: -1.8821878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: 0.09929584 + inSlope: -2.201277 + outSlope: -2.201277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -0.18794641 + inSlope: 0.00298734 + outSlope: 0.00298734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.013521341 + inSlope: 1.5331122 + outSlope: 1.5331122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 0.10730436 + inSlope: 1.1494267 + outSlope: 1.1494267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.14641456 + inSlope: 0.9386378 + outSlope: 0.9386378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97613955 + inSlope: -0.8057513 + outSlope: -0.8057513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.9425666 + inSlope: -0.7363608 + outSlope: -0.7363608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.91477615 + inSlope: -0.2841432 + outSlope: -0.2841432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.918888 + inSlope: 0.23483418 + outSlope: 0.23483418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.95259523 + inSlope: 0.36852837 + outSlope: 0.36852837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.96787876 + inSlope: -0.030576497 + outSlope: -0.030576497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 0.9501131 + inSlope: -0.0041777752 + outSlope: -0.0041777752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.98689777 + inSlope: 0.009020153 + outSlope: 0.009020153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.9597532 + inSlope: -0.35759002 + outSlope: -0.35759002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.9273708 + inSlope: -0.056884345 + outSlope: -0.056884345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.9273641 + inSlope: -0.000040054303 + outSlope: -0.000040054303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.9272809 + inSlope: -0.000040054358 + outSlope: -0.000040054358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.9271993 + inSlope: -0.000040054245 + outSlope: -0.000040054245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: 0.9271826 + inSlope: -0.02336821 + outSlope: -0.02336821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.872774 + inSlope: -0.32564217 + outSlope: -0.32564217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.8378369 + inSlope: 0.062316526 + outSlope: 0.062316526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.9289915 + inSlope: 0.73825246 + outSlope: 0.73825246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: 0.9950579 + inSlope: 0.22558203 + outSlope: 0.22558203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 0.9821719 + inSlope: 0.00044665486 + outSlope: 0.00044665486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.9998841 + inSlope: 0.020249285 + outSlope: 0.020249285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 0.99419343 + inSlope: -0.11400865 + outSlope: -0.11400865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9891879 + inSlope: -0.12013201 + outSlope: -0.12013201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22115107 + inSlope: 0.43811595 + outSlope: 0.43811595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.17758256 + inSlope: 0.6550851 + outSlope: 0.6550851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.09319655 + inSlope: 0.6175637 + outSlope: 0.6175637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.003656107 + inSlope: 0.6509017 + outSlope: 0.6509017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.08756934 + inSlope: 0.45649987 + outSlope: 0.45649987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.085355535 + inSlope: -0.367361 + outSlope: -0.367361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.033341132 + inSlope: -0.3748259 + outSlope: -0.3748259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.008919947 + inSlope: -0.19204172 + outSlope: -0.19204172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.001406808 + inSlope: 0.0037517985 + outSlope: 0.0037517985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -0.0000024278056 + inSlope: 0.00000020080815 + outSlope: 0.00000020080815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.0000024364185 + inSlope: -0.00000023494724 + outSlope: -0.00000023494724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.000002510489 + inSlope: 0.000000046343306 + outSlope: 0.000000046343306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -0.0000024016801 + inSlope: -0.000000049835666 + outSlope: -0.000000049835666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: -0.0000025250433 + inSlope: -0.00000009262966 + outSlope: -0.00000009262966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.75 + value: -0.0000023940245 + inSlope: 0.00000022251302 + outSlope: 0.00000022251302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: 0.0002022603 + inSlope: 0.014375453 + outSlope: 0.014375453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.027790882 + inSlope: 0.18872762 + outSlope: 0.18872762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.09432047 + inSlope: 0.14144406 + outSlope: 0.14144406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.096263014 + inSlope: -0.31657243 + outSlope: -0.31657243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.026151657 + inSlope: -1.2480295 + outSlope: -1.2480295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: -0.083027646 + inSlope: -1.1448832 + outSlope: -1.1448832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.15469648 + inSlope: -0.579749 + outSlope: -0.579749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4583335 + value: -0.20294034 + inSlope: -0.30144745 + outSlope: -0.30144745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -0.22838119 + inSlope: -0.13980371 + outSlope: -0.13980371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -0.23445585 + inSlope: 0.047576312 + outSlope: 0.047576312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.22913536 + inSlope: 0.061756857 + outSlope: 0.061756857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.35973185 + inSlope: 0.7452829 + outSlope: 0.7452829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.28072327 + inSlope: 1.3252363 + outSlope: 1.3252363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.07088682 + inSlope: 1.7889383 + outSlope: 1.7889383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.15023112 + inSlope: 0.5691181 + outSlope: 0.5691181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.18674476 + inSlope: 0.38703713 + outSlope: 0.38703713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.2286519 + inSlope: -0.13448031 + outSlope: -0.13448031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.1421706 + inSlope: -1.2573953 + outSlope: -1.2573953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.020761065 + inSlope: -1.2447028 + outSlope: -1.2447028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.05200792 + inSlope: -0.12351394 + outSlope: -0.12351394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -0.035405874 + inSlope: 0.1570369 + outSlope: 0.1570369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.042339154 + inSlope: -0.18666828 + outSlope: -0.18666828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.104879186 + inSlope: 0.041436464 + outSlope: 0.041436464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -0.015815675 + inSlope: -0.037896074 + outSlope: -0.037896074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: -0.118451774 + inSlope: -0.0857434 + outSlope: -0.0857434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.75 + value: -0.01042582 + inSlope: 0.16589868 + outSlope: 0.16589868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: -0.0701834 + inSlope: -0.21807146 + outSlope: -0.21807146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.13095754 + inSlope: -0.31952482 + outSlope: -0.31952482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -0.10897531 + inSlope: 0.4105227 + outSlope: 0.4105227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: -0.052912984 + inSlope: 0.44853935 + outSlope: 0.44853935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.018185826 + inSlope: 0.37082255 + outSlope: 0.37082255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 0.008514835 + inSlope: 0.23923954 + outSlope: 0.23923954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.018905757 + inSlope: 0.008627135 + outSlope: 0.008627135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4583335 + value: -0.005483455 + inSlope: -0.53897256 + outSlope: -0.53897256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -0.128167 + inSlope: -1.2855275 + outSlope: -1.2855275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -0.29131305 + inSlope: -1.1116917 + outSlope: -1.1116917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.36052388 + inSlope: -0.6657557 + outSlope: -0.6657557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.152941 + inSlope: -0.088810086 + outSlope: -0.088810086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.15807205 + inSlope: 0.023381535 + outSlope: 0.023381535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.11944896 + inSlope: 0.6540513 + outSlope: 0.6540513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.026322441 + inSlope: 0.7490735 + outSlope: 0.7490735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.05981247 + inSlope: -0.20850874 + outSlope: -0.20850874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.0066700554 + inSlope: -0.3903612 + outSlope: -0.3903612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.01297048 + inSlope: 0.027875094 + outSlope: 0.027875094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0057084346 + inSlope: 0.10036734 + outSlope: 0.10036734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00007461941 + inSlope: 0.000058278878 + outSlope: 0.000058278878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -0.000001444715 + inSlope: 0.00000036503826 + outSlope: 0.00000036503826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.0000014616069 + inSlope: -0.0000004348607 + outSlope: -0.0000004348607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.0000016048459 + inSlope: 0.00000009146698 + outSlope: 0.00000009146698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -0.0000014011835 + inSlope: -0.00000009064689 + outSlope: -0.00000009064689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: -0.0000016369025 + inSlope: -0.00000019148302 + outSlope: -0.00000019148302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.75 + value: -0.0000013901816 + inSlope: 0.00000039102122 + outSlope: 0.00000039102122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: -0.00025903797 + inSlope: -0.0141618345 + outSlope: -0.0141618345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.020869106 + inSlope: -0.124570906 + outSlope: -0.124570906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -0.007934516 + inSlope: 0.2694131 + outSlope: 0.2694131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.031200107 + inSlope: 0.18184827 + outSlope: 0.18184827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.009510656 + inSlope: -0.8801575 + outSlope: -0.8801575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: -0.11097585 + inSlope: -1.8048654 + outSlope: -1.8048654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.26999748 + inSlope: -1.7462101 + outSlope: -1.7462101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4583335 + value: -0.4005964 + inSlope: -0.035612717 + outSlope: -0.035612717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -0.31078002 + inSlope: 0.95994556 + outSlope: 0.95994556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -0.19912463 + inSlope: 0.695503 + outSlope: 0.695503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.15705186 + inSlope: 0.40820584 + outSlope: 0.40820584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.89347315 + inSlope: 0.37246227 + outSlope: 0.37246227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.9298775 + inSlope: 0.5169854 + outSlope: 0.5169854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.9859115 + inSlope: 0.26639986 + outSlope: 0.26639986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.9882937 + inSlope: -0.10183595 + outSlope: -0.10183595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.97666806 + inSlope: -0.10241388 + outSlope: -0.10241388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 0.9697362 + inSlope: 0.065765604 + outSlope: 0.065765604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0.98919547 + inSlope: 0.183883 + outSlope: 0.183883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9997284 + inSlope: 0.039847594 + outSlope: 0.039847594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99864566 + inSlope: -0.0063829394 + outSlope: -0.0063829394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 0.999373 + inSlope: 0.005578991 + outSlope: 0.005578991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 0.9991033 + inSlope: -0.007975106 + outSlope: -0.007975106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.994485 + inSlope: 0.004347325 + outSlope: 0.004347325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0.99987495 + inSlope: -0.0006279934 + outSlope: -0.0006279934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: 0.9929598 + inSlope: -0.010150233 + outSlope: -0.010150233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.75 + value: 0.99994564 + inSlope: 0.0018346317 + outSlope: 0.0018346317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: 0.99753404 + inSlope: -0.015395142 + outSlope: -0.015395142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.9907786 + inSlope: -0.050048508 + outSlope: -0.050048508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.9895277 + inSlope: 0.033396132 + outSlope: 0.033396132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.99345875 + inSlope: 0.047058284 + outSlope: 0.047058284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.99944735 + inSlope: 0.030513905 + outSlope: 0.030513905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 0.9903122 + inSlope: -0.30440024 + outSlope: -0.30440024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.9501647 + inSlope: -0.5770984 + outSlope: -0.5770984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4583335 + value: 0.89348066 + inSlope: -0.090088226 + outSlope: -0.090088226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: 0.91369087 + inSlope: 0.10774725 + outSlope: 0.10774725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: 0.9058237 + inSlope: -0.18356179 + outSlope: -0.18356179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.89042366 + inSlope: -0.16665761 + outSlope: -0.16665761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + 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.x + path: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + 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.z + path: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + 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.x + path: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + 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.z + path: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000013606579 + inSlope: 0.00015269118 + outSlope: 0.00015269118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.000007244447 + inSlope: 0.00015269118 + outSlope: 0.00022115701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.000001970429 + inSlope: 0.00022115701 + outSlope: 0.0002844545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0000138227 + inSlope: 0.0002844545 + outSlope: 0.0003425836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.000028097018 + inSlope: 0.0003425836 + outSlope: 0.00039554434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.000044578028 + inSlope: 0.00039554434 + outSlope: 0.00044333702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.00006305041 + inSlope: 0.00044333702 + outSlope: 0.00048596118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0001051078 + inSlope: 0.00052341603 + outSlope: 0.0005557058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.0001282622 + inSlope: 0.0005557058 + outSlope: 0.0005828209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.0001525464 + inSlope: 0.0005828209 + outSlope: 0.00060477323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0003099218 + inSlope: 0.00063700066 + outSlope: 0.00062794413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0004537078 + inSlope: 0.0005051178 + outSlope: 0.00046505078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.0005059688 + inSlope: 0.00036940398 + outSlope: 0.00031383036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.0005438869 + inSlope: 0.000039849616 + outSlope: 0.0000047242684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.00054506806 + inSlope: 0.0000047251624 + outSlope: 0.0000047242684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0.00058936916 + inSlope: 0.000025691043 + outSlope: 0.000025690295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4166665 + value: 0.00059159606 + inSlope: -0.0000362788 + outSlope: -0.0000384599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6666665 + value: 0.00058056467 + inSlope: -0.000049910734 + outSlope: -0.000052309828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.0005761041 + inSlope: -0.000054744094 + outSlope: -0.000057214416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7916665 + value: 0.0005737202 + inSlope: -0.000057214416 + outSlope: -0.000059720714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.00057123177 + inSlope: -0.000059720714 + outSlope: -0.00006226593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.0005686374 + inSlope: -0.00006226593 + outSlope: -0.000064843545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9166665 + value: 0.00056593557 + inSlope: -0.000064843545 + outSlope: -0.00006746061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0416665 + value: 0.0005571701 + inSlope: -0.0000727999 + outSlope: -0.00007552238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.0005540233 + inSlope: -0.00007552238 + outSlope: -0.000078284145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.00055076147 + inSlope: -0.000078284145 + outSlope: -0.000081079015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1666665 + value: 0.0005473832 + inSlope: -0.000081079015 + outSlope: -0.000083910476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.0005438869 + inSlope: -0.000083910476 + outSlope: -0.0002344045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 0.0005341201 + inSlope: -0.0002344045 + outSlope: -0.0005053239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2916665 + value: 0.000513065 + inSlope: -0.0005053239 + outSlope: -0.0007354338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.0004824217 + inSlope: -0.0007354338 + outSlope: -0.00092475495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 0.00044389037 + inSlope: -0.00092475495 + outSlope: -0.0010732596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4583335 + value: 0.0003499648 + inSlope: -0.0011809497 + outSlope: -0.0012478583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.625 + value: 0.0001422669 + inSlope: -0.0012037196 + outSlope: -0.0011073962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6666665 + value: 0.000096125565 + inSlope: -0.0011073962 + outSlope: -0.000970259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: 0.000055697798 + inSlope: -0.000970259 + outSlope: -0.0007923351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 0.00002268396 + inSlope: -0.0007923351 + outSlope: -0.0005735969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.000001215821 + inSlope: -0.0005735969 + outSlope: -0.0005735969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.001430926 + inSlope: -0.005434892 + outSlope: -0.005434892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.0012044722 + inSlope: -0.005434892 + outSlope: -0.0007474136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.0011733299 + inSlope: -0.0007474136 + outSlope: 0.0025456813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0012794 + inSlope: 0.0025456813 + outSlope: 0.0037739032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.001436646 + inSlope: 0.0037739032 + outSlope: 0.0048323763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0.0016379949 + inSlope: 0.0048323763 + outSlope: 0.005721144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.001876376 + inSlope: 0.005721144 + outSlope: 0.006440157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.002435945 + inSlope: 0.0069894968 + outSlope: 0.007369081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.00274299 + inSlope: 0.007369081 + outSlope: 0.007578916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: 0.003058778 + inSlope: 0.007578916 + outSlope: 0.007619086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.004741117 + inSlope: 0.0052738786 + outSlope: 0.004295694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0054114 + inSlope: 0.0013671105 + outSlope: 0.0009633359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.0054889866 + inSlope: 0.00029335526 + outSlope: -0.00008298381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.005421969 + inSlope: -0.0005787998 + outSlope: -0.0006156355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.005316432 + inSlope: -0.0000041484873 + outSlope: -0.0000041341823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0.0053084884 + inSlope: -0.0000041484755 + outSlope: -0.000004148499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4166665 + value: 0.0054067243 + inSlope: 0.0001655108 + outSlope: 0.00013867272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6666665 + value: 0.005430843 + inSlope: 0.000028882136 + outSlope: 0.00002889611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.005396818 + inSlope: -0.000845507 + outSlope: -0.0023996062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7916665 + value: 0.0052968347 + inSlope: -0.0023996062 + outSlope: -0.0037483978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.00514065 + inSlope: -0.0037483978 + outSlope: -0.004892039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.004936816 + inSlope: -0.004892039 + outSlope: -0.0058303433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9166665 + value: 0.004693886 + inSlope: -0.0058303433 + outSlope: -0.006563258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0416665 + value: 0.003816057 + inSlope: -0.0074135535 + outSlope: -0.0075306413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.003502278 + inSlope: -0.0075306413 + outSlope: -0.0074426723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.0031921677 + inSlope: -0.0074426723 + outSlope: -0.0071492656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1666665 + value: 0.0028942828 + inSlope: -0.0071492656 + outSlope: -0.0066505615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.002617174 + inSlope: -0.0066505615 + outSlope: -0.0059467233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 0.0023693948 + inSlope: -0.0059467233 + outSlope: -0.0050375224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2916665 + value: 0.0021594989 + inSlope: -0.0050375224 + outSlope: -0.003923005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.0019960392 + inSlope: -0.003923005 + outSlope: -0.002603319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 0.0018875679 + inSlope: -0.002603319 + outSlope: -0.0016189731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4583335 + value: 0.0017721539 + inSlope: -0.0011509593 + outSlope: -0.00074911874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.625 + value: 0.0017202199 + inSlope: 0.0000597813 + outSlope: 0.0001971896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6666665 + value: 0.001728436 + inSlope: 0.0001971896 + outSlope: 0.00026844058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: 0.0017396212 + inSlope: 0.00026844058 + outSlope: 0.0002736221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 0.001751022 + inSlope: 0.0002736221 + outSlope: 0.0002126678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.0017598831 + inSlope: 0.0002126678 + outSlope: 0.0002126678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00086729176 + inSlope: -0.003502491 + outSlope: -0.003502491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -0.0010132289 + inSlope: -0.003502491 + outSlope: -0.0013616681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0010699651 + inSlope: -0.0013616681 + outSlope: 0.0004353619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.001051825 + inSlope: 0.0004353619 + outSlope: 0.0018885573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00097313506 + inSlope: 0.0018885573 + outSlope: 0.002997968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.00084821973 + inSlope: 0.002997968 + outSlope: 0.0037635642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.00069140457 + inSlope: 0.0037635642 + outSlope: 0.0041853464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0003393761 + inSlope: 0.004263335 + outSlope: 0.003997513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.00017281309 + inSlope: 0.003997513 + outSlope: 0.0037797107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.41666666 + value: -0.000015325173 + inSlope: 0.0037797107 + outSlope: 0.0038229479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00093203876 + inSlope: 0.00367505 + outSlope: 0.0035726717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0017167369 + inSlope: 0.0024789106 + outSlope: 0.001858347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.001883119 + inSlope: 0.00082709035 + outSlope: 0.00041634956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 0.001857011 + inSlope: -0.00052711176 + outSlope: -0.00058809813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.0017669883 + inSlope: -0.00000880123 + outSlope: -0.00000880123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 0.0017374129 + inSlope: -0.000008525832 + outSlope: -0.00003545536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4166665 + value: 0.001541168 + inSlope: -0.000025817253 + outSlope: 0.0000014483818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6666665 + value: 0.001487848 + inSlope: -0.00074354693 + outSlope: -0.0012015024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.0013641889 + inSlope: -0.0017663129 + outSlope: -0.0024378547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7916665 + value: 0.0012626121 + inSlope: -0.0024378547 + outSlope: -0.0032162159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.001128602 + inSlope: -0.0032162159 + outSlope: -0.0041014296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.00095770974 + inSlope: -0.0041014296 + outSlope: -0.005093422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9166665 + value: 0.00074548466 + inSlope: -0.005093422 + outSlope: -0.005715037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0416665 + value: 0.00002530951 + inSlope: -0.0057631293 + outSlope: -0.0055863075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: -0.00020745507 + inSlope: -0.0055863075 + outSlope: -0.0052757734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: -0.0004272781 + inSlope: -0.0052757734 + outSlope: -0.0048313313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1666665 + value: -0.00062858284 + inSlope: -0.0048313313 + outSlope: -0.0042529926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -0.00080579217 + inSlope: -0.0042529926 + outSlope: -0.0035409154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: -0.0009533298 + inSlope: -0.0035409154 + outSlope: -0.0026949293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2916665 + value: -0.0010656181 + inSlope: -0.0026949293 + outSlope: -0.0017150986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.0011370811 + inSlope: -0.0017150986 + outSlope: -0.0006014394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: -0.001162141 + inSlope: -0.0006014394 + outSlope: 0.0002847122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4583335 + value: -0.001117748 + inSlope: 0.00078071357 + outSlope: 0.0011664507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.625 + value: -0.0008728217 + inSlope: 0.0016624413 + outSlope: 0.0016073395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6666665 + value: -0.0008058495 + inSlope: 0.0016073395 + outSlope: 0.0014419928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -0.000745766 + inSlope: 0.0014419928 + outSlope: 0.0011664703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: -0.0006971632 + inSlope: 0.0011664703 + outSlope: 0.0007807046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.00066463405 + inSlope: 0.0007807046 + outSlope: 0.0007807046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00023914651 + inSlope: 0.00010859638 + outSlope: 0.00010859638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00033656994 + inSlope: 0.00008574303 + outSlope: 0.00008467116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.00037288447 + inSlope: 0.00007369981 + outSlope: 0.00007255561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.00039304455 + inSlope: 0.00006564623 + outSlope: 0.00006448752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.0004059838 + inSlope: 0.000059730894 + outSlope: 0.000058515125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.0004108103 + inSlope: 0.000057320485 + outSlope: 0.00005609772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.00041314767 + inSlope: 0.00005609772 + outSlope: 0.000054874316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.00041985352 + inSlope: 0.00005241414 + outSlope: 0.0000511836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.00043368264 + inSlope: 0.000043623364 + outSlope: 0.000042335905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.0004388137 + inSlope: 0.00003975384 + outSlope: 0.00003846638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6666665 + value: 0.00044881672 + inSlope: -0.000030906318 + outSlope: -0.000032508124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4583335 + value: 0.00041145986 + inSlope: -0.00006218296 + outSlope: -0.000063872576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9166665 + value: 0.00037821784 + inSlope: -0.00008126051 + outSlope: -0.0000830334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 0.00033686068 + inSlope: -0.0001866136 + outSlope: -0.00019926921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 0.0002431968 + inSlope: -0.00011267556 + outSlope: -0.0000842874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.00023968484 + inSlope: -0.0000842874 + outSlope: -0.0000842874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6666665 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4583335 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9166665 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: -0.0012651699 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0012651699 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00023943788 + inSlope: -0.00022986173 + outSlope: -0.00022986173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000072568204 + inSlope: -0.00010933751 + outSlope: -0.00010487805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 0.00003413588 + inSlope: -0.00006380069 + outSlope: -0.00006004935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.75 + value: 0.000019753277 + inSlope: -0.00003889922 + outSlope: -0.00003560189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 0.000013718902 + inSlope: -0.000021564945 + outSlope: -0.000021564952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0416667 + value: 0.000012164263 + inSlope: -0.000015746353 + outSlope: -0.000015746387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833333 + value: 0.000011508167 + inSlope: -0.000015746387 + outSlope: -0.000008848898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083333 + value: 0.000010402054 + inSlope: -0.0000088489205 + outSlope: 0.0000036529102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: 0.000011467487 + inSlope: 0.0000036529102 + outSlope: 0.000013738276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: 0.000013351887 + inSlope: 0.000017749036 + outSlope: 0.000017749036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6666665 + value: 0.00009369761 + inSlope: 0.000035691395 + outSlope: 0.000034464334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4583335 + value: 0.0001093018 + inSlope: 0.000004498924 + outSlope: 0.0000044989756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9166665 + value: 0.00011830553 + inSlope: 0.00004444437 + outSlope: 0.000050823895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 0.00014399357 + inSlope: 0.00010591905 + outSlope: 0.00011527999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 0.00023183129 + inSlope: 0.00024291787 + outSlope: 0.0001781816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.0002392555 + inSlope: 0.0001781816 + outSlope: 0.0001781816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000021829177 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.000021829177 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0029988294 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0029988294 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00005309113 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.00005309113 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000019310632 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.000019310632 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0025961697 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0025961697 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00038391212 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.00038391212 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0004814688 + inSlope: -0.00004520416 + outSlope: -0.00004520416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.00046666185 + inSlope: -0.000072342744 + outSlope: -0.0000769669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.00043657213 + inSlope: -0.00010167638 + outSlope: -0.00010412241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.0004046982 + inSlope: -0.00011307651 + outSlope: -0.000113627255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.00039996373 + inSlope: -0.000113627255 + outSlope: -0.00011391353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.00039521733 + inSlope: -0.00011391353 + outSlope: -0.000113927665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.00038573533 + inSlope: -0.00011364083 + outSlope: -0.00011311122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.00037170906 + inSlope: -0.00011120896 + outSlope: -0.00010986396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: 0.00035819007 + inSlope: -0.00010634432 + outSlope: -0.00010418395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: 0.00034548328 + inSlope: -0.0000990344 + outSlope: -0.000096058655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.00032372816 + inSlope: -0.00007708318 + outSlope: -0.00007247672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.0003023424 + inSlope: -0.0000072839716 + outSlope: -0.0000072844605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00021364087 + inSlope: -0.000038623955 + outSlope: -0.00003594889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.625 + value: 0.00020588619 + inSlope: 0.0000035289063 + outSlope: 0.0000035293128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.00029862585 + inSlope: 0.00017512387 + outSlope: 0.00018357109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7916665 + value: 0.00030627463 + inSlope: 0.00018357109 + outSlope: 0.00019215197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.00031428103 + inSlope: 0.00019215197 + outSlope: 0.00020088837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.00032265132 + inSlope: 0.00020088837 + outSlope: 0.0002091988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9166665 + value: 0.00033136792 + inSlope: 0.0002091988 + outSlope: 0.00021598412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.00034036732 + inSlope: 0.00021598412 + outSlope: 0.00022123748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.00034958552 + inSlope: 0.00022123748 + outSlope: 0.0002249774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0416665 + value: 0.00035895954 + inSlope: 0.0002249774 + outSlope: 0.00022717779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.00036842536 + inSlope: 0.00022717779 + outSlope: 0.00022785988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.0004235915 + inSlope: 0.00020838012 + outSlope: 0.00019991116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4583335 + value: 0.00044726636 + inSlope: 0.00017838074 + outSlope: 0.00016532573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: 0.00046604653 + inSlope: 0.00013464676 + outSlope: 0.0001170136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6666665 + value: 0.00047499983 + inSlope: 0.000097866134 + outSlope: 0.00007718266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: 0.0004782158 + inSlope: 0.00007718266 + outSlope: 0.000054977445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.00048180835 + inSlope: 0.000031244275 + outSlope: 0.000031244275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.625 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7916665 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9166665 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0416665 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4583335 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6666665 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: 0.0012246681 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.0012246681 + inSlope: -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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000162597 + inSlope: 0.0000035476685 + outSlope: 0.0000035476685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.00014587089 + inSlope: 0.0001249319 + outSlope: 0.00014441554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833333 + value: -0.00008059933 + inSlope: 0.00023602477 + outSlope: 0.00024271298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.000007681698 + inSlope: 0.0002492987 + outSlope: 0.00024480332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0.0000025184452 + inSlope: 0.00024480332 + outSlope: 0.00023870252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: 0.000012464374 + inSlope: 0.00023870252 + outSlope: 0.00023100602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.000031327752 + inSlope: 0.00022171518 + outSlope: 0.00021082122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.000056052504 + inSlope: 0.00018423931 + outSlope: 0.00016855328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2916666 + value: 0.00007489413 + inSlope: 0.00013237966 + outSlope: 0.00011189796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4166666 + value: 0.000086054206 + inSlope: 0.00006613261 + outSlope: 0.00004085175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.00008897364 + inSlope: 0.0000058429746 + outSlope: 0.000010002833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2916667 + value: 0.00010046541 + inSlope: 0.000026664682 + outSlope: 0.000027530297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 0.00015054032 + inSlope: 0.000011074436 + outSlope: -0.000003077623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.625 + value: 0.00014900147 + inSlope: -0.000003077623 + outSlope: -0.000018612824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.00008613184 + inSlope: -0.000100747726 + outSlope: -0.00013669304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7916665 + value: 0.000080436315 + inSlope: -0.00013669304 + outSlope: -0.0001998445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.0000721094 + inSlope: -0.0001998445 + outSlope: -0.00025586403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.00006144844 + inSlope: -0.00025586403 + outSlope: -0.00030474478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9166665 + value: 0.000048750786 + inSlope: -0.00030474478 + outSlope: -0.0003464824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.000034313907 + inSlope: -0.0003464824 + outSlope: -0.0003810897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.000018435232 + inSlope: -0.0003810897 + outSlope: -0.00040855564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0416665 + value: 0.0000014121457 + inSlope: -0.00040855564 + outSlope: -0.00042887658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: -0.000016457849 + inSlope: -0.00042887658 + outSlope: -0.00044207263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.0001248096 + inSlope: -0.00040094784 + outSlope: -0.0003713157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4583335 + value: -0.0001663293 + inSlope: -0.0002906205 + outSlope: -0.00023957403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -0.00018870473 + inSlope: -0.00011605472 + outSlope: -0.000043591426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6666665 + value: -0.00018902049 + inSlope: 0.00003601326 + outSlope: 0.00012275482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -0.00018390566 + inSlope: 0.00012275482 + outSlope: 0.00021663032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.000166708 + inSlope: 0.00019611492 + outSlope: 0.00019611492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0029990696 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0029990696 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000016126782 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.00000016126782 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000054637007 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.000054637007 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00035560693 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.00035560693 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000036823654 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.000036823654 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0025999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0025999998 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000118502485 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0000118502485 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.3762502e-12 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 5.3762502e-12 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00006796114 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.00006796114 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0028583289 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0028583289 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.1827873e-11 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -2.1827873e-11 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00014242706 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.00014242706 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00145562 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.00145562 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00145996 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.00145996 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000124582 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.000124582 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0027749701 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0027749701 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000016860663 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.00000016860663 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000543396 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.00000543396 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0020982693 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0020982693 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000001691375 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0000001691375 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000005434342 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.000005434342 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0014555797 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0014555797 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0014553502 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.0014553502 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00012458228 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.00012458228 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00279524 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.00279524 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.9802322e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -2.9802322e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.2351741e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -2.2351741e-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_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0020026597 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.0020026597 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.11758706e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -1.11758706e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.636845e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 7.636845e-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_LocalPosition.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00273719 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.00273719 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.0489097e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 2.0489097e-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_LocalPosition.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0001936793 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0001936793 + inSlope: 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: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + 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 + - serializedVersion: 3 + time: 1.0416666 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7916665 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9166665 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0416665 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + 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.x + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.001545068 + inSlope: 0.00016528844 + outSlope: 0.00016528844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: -0.001391029 + inSlope: 0.001261318 + outSlope: 0.0014700721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00047803437 + inSlope: 0.0021224676 + outSlope: 0.0020441876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.00031203538 + inSlope: 0.0019397892 + outSlope: 0.0018093184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.00023664709 + inSlope: 0.0018093184 + outSlope: 0.0016527422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.0001677829 + inSlope: 0.0016527422 + outSlope: 0.001470071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.00010652991 + inSlope: 0.001470071 + outSlope: 0.0012612998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.000053975724 + inSlope: 0.0012612998 + outSlope: 0.001026443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + value: -0.000011207308 + inSlope: 0.001026443 + outSlope: 0.0007654805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000020687728 + inSlope: 0.0007654805 + outSlope: 0.0004784244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416666 + value: 0.00004062206 + inSlope: 0.0004784244 + outSlope: 0.00016527326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0.00004750846 + inSlope: 0.00016527326 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.00004750846 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.00004750846 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.00004750846 + inSlope: -0 + outSlope: -0.00016604512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7916665 + value: 0.000040589937 + inSlope: -0.00016604512 + outSlope: -0.00048065177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.00002056263 + inSlope: -0.00048065177 + outSlope: -0.0007690519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: -0.000011481079 + inSlope: -0.0007690519 + outSlope: -0.0010312279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9166665 + value: -0.000054448745 + inSlope: -0.0010312279 + outSlope: -0.0012671724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -0.00010724799 + inSlope: -0.0012671724 + outSlope: -0.0014769296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -0.00016878649 + inSlope: -0.0014769296 + outSlope: -0.0016604511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0416665 + value: -0.00023797169 + inSlope: -0.0016604511 + outSlope: -0.0018177389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: -0.000394913 + inSlope: -0.0019488459 + outSlope: -0.0020537172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -0.0013361969 + inSlope: -0.0016604499 + outSlope: -0.0014769193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.001545573 + inSlope: -0.00048065008 + outSlope: -0.00048065008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833333 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9583333 + 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 + - serializedVersion: 3 + time: 1.0416666 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0833334 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7916665 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9166665 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0416665 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: 0 + inSlope: -0 + outSlope: -0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + 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.z + path: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013613599 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.013613599 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0010463798 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0010463798 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0040700096 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: 0.0040700096 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013613599 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.013613599 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0010463798 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0010463798 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0040804897 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7916665 + value: -0.0040804897 + inSlope: 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9999998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000002 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 1.0000002 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 1.0000001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.99999994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.9999999 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -89.98021 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -89.98021 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -90.000206 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -90.000206 + 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: airboy_model_skeleton/airboy/Skl_Root + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -32.727657 + inSlope: -155.32278 + outSlope: -155.32278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -39.21134 + inSlope: -73.772644 + outSlope: -73.772644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -38.88314 + inSlope: 17.379822 + outSlope: 17.418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -24.667122 + inSlope: 70.71103 + outSlope: 70.71102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -11.826293 + inSlope: 30.09813 + outSlope: 29.978231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -4.5009923 + inSlope: 20.363323 + outSlope: 20.406832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: -3.5267668 + inSlope: -3.2086682 + outSlope: -3.205738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -4.9067264 + inSlope: 0.58753777 + outSlope: 0.58752984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -4.293952 + inSlope: -1.2622074 + outSlope: -1.2616905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: -4.1397257 + inSlope: -0.4998024 + outSlope: -0.49983612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.291667 + value: -5.647038 + inSlope: 2.384436 + outSlope: 2.3835793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -5.1898246 + inSlope: -0.73225784 + outSlope: -0.7359581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -7.0241604 + inSlope: -36.614 + outSlope: -36.55742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -19.209843 + inSlope: -83.916725 + outSlope: -83.91675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -37.5939 + inSlope: -66.06849 + outSlope: -66.297676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: -41.221912 + inSlope: 18.279139 + outSlope: 18.275782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -29.141329 + inSlope: 30.542543 + outSlope: 30.645823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -27.286497 + inSlope: 17.573627 + outSlope: 17.573627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -58.679237 + inSlope: -159.8302 + outSlope: -159.8302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -65.50983 + inSlope: -81.4845 + outSlope: -81.4845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -65.141556 + inSlope: 21.651855 + outSlope: 21.421326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -46.920082 + inSlope: 100.71799 + outSlope: 100.71797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -21.049576 + inSlope: 99.23399 + outSlope: 99.13169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 6.554454 + inSlope: 71.15003 + outSlope: 71.09504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 10.640595 + inSlope: -8.77877 + outSlope: -8.781132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 6.131138 + inSlope: 0.66716003 + outSlope: 0.66710734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 7.5814137 + inSlope: -2.9554489 + outSlope: -2.9559276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 7.7074823 + inSlope: -1.6670494 + outSlope: -1.6670008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.291667 + value: 4.090493 + inSlope: 5.96465 + outSlope: 5.9690475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 5.000237 + inSlope: -7.3052406 + outSlope: -7.3042717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -0.95405775 + inSlope: -107.04341 + outSlope: -107.10211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -29.377792 + inSlope: -143.6346 + outSlope: -143.6347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -55.35588 + inSlope: -97.99644 + outSlope: -97.165924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: -62.75761 + inSlope: 0.6022574 + outSlope: 0.69045603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -54.20016 + inSlope: 23.844406 + outSlope: 23.994507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -52.769794 + inSlope: 13.411122 + outSlope: 13.411122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 66.53618 + inSlope: -13.661499 + outSlope: -13.661499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 66.27408 + inSlope: 2.895996 + outSlope: 2.895996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 66.211815 + inSlope: -4.0358276 + outSlope: -3.7151184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 66.06877 + inSlope: 15.776001 + outSlope: 15.775999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 68.98474 + inSlope: 7.4230947 + outSlope: 7.7747116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 67.72669 + inSlope: -6.617302 + outSlope: -6.437232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2083334 + value: 67.122215 + inSlope: 0.21402737 + outSlope: 0.24832153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 67.308846 + inSlope: -0.097076416 + outSlope: -0.09690441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 67.138016 + inSlope: 0.16938922 + outSlope: 0.17299804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.125 + value: 67.06262 + inSlope: 0.08151855 + outSlope: 0.081298806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.291667 + value: 67.37315 + inSlope: -0.07941543 + outSlope: -0.11242676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 67.40224 + inSlope: 0.73413086 + outSlope: 0.7302246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 67.48002 + inSlope: -0.11224365 + outSlope: 0.848036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 64.42285 + inSlope: -12.268452 + outSlope: -12.268204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 63.71418 + inSlope: 19.71594 + outSlope: 18.551394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 65.999664 + inSlope: 8.101326 + outSlope: 8.04858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: 67.07201 + inSlope: 5.7502413 + outSlope: 5.2195945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 67.43525 + inSlope: 3.8965685 + outSlope: 3.8965685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 50.91425 + inSlope: -122.79556 + outSlope: -122.79556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 45.786625 + inSlope: -56.497467 + outSlope: -56.497467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 46.219395 + inSlope: 19.77182 + outSlope: 19.749264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 73.52773 + inSlope: 63.345314 + outSlope: 75.18548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 60.012634 + inSlope: -126.92771 + outSlope: -126.8253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 35.30058 + inSlope: -84.3365 + outSlope: -84.3365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: 32.324505 + inSlope: 14.91136 + outSlope: 14.90381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 44.537888 + inSlope: -1.1025103 + outSlope: -1.102478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 36.678886 + inSlope: 3.3742583 + outSlope: 3.3743348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583335 + value: 42.35693 + inSlope: -5.5521283 + outSlope: -5.5519795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.375 + value: 39.14522 + inSlope: 18.757599 + outSlope: 18.76839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9583335 + value: 47.673992 + inSlope: -0.87637526 + outSlope: -0.8765442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: 40.025417 + inSlope: -5.179376 + outSlope: -5.176061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 40.03876 + inSlope: 4.8695436 + outSlope: 4.869571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 43.427727 + inSlope: 119.924194 + outSlope: 119.92461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 58.73086 + inSlope: 205.28038 + outSlope: 201.64113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 79.68122 + inSlope: -124.556656 + outSlope: -129.86368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 60.530785 + inSlope: -47.232277 + outSlope: -47.30268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 55.4607 + inSlope: -2.7049139 + outSlope: -2.7049096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 56.813843 + inSlope: 8.061288 + outSlope: 8.061288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -161.46468 + inSlope: -56.296143 + outSlope: -56.296143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -163.67807 + inSlope: -21.280518 + outSlope: -21.280518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -163.44038 + inSlope: 7.793701 + outSlope: 8.047211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -139.17253 + inSlope: 640.13983 + outSlope: 606.164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -9.102827 + inSlope: 53.59772 + outSlope: 58.33562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -1.4609424 + inSlope: 10.527831 + outSlope: 10.527831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -1.0800605 + inSlope: -1.462974 + outSlope: -1.5320858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -3.3109863 + inSlope: 0.061510306 + outSlope: 0.061512277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -1.7835189 + inSlope: 0.15467076 + outSlope: 0.15436919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583335 + value: -2.5415554 + inSlope: 0.085888505 + outSlope: 0.08661098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.375 + value: -2.141137 + inSlope: -1.7419052 + outSlope: -1.6838468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9583335 + value: -3.707256 + inSlope: -1.1907816 + outSlope: -1.1903515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: -2.307944 + inSlope: 1.4711002 + outSlope: 1.5009613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -2.2621791 + inSlope: -0.6003073 + outSlope: -0.6003107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -2.93992 + inSlope: -28.873503 + outSlope: -28.873337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -8.352757 + inSlope: -139.87749 + outSlope: -177.40785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -110.94692 + inSlope: -545.91736 + outSlope: -492.9365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -156.00778 + inSlope: -31.082716 + outSlope: -30.040247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -159.19923 + inSlope: -1.4991637 + outSlope: -1.4991614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -158.44637 + inSlope: 4.964402 + outSlope: 4.964402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -157.90163 + inSlope: -33.045776 + outSlope: -33.045776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -159.13513 + inSlope: -9.92395 + outSlope: -9.92395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -158.95018 + inSlope: 4.275879 + outSlope: 4.5516357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -138.72621 + inSlope: 625.86444 + outSlope: 591.8592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -10.925729 + inSlope: 52.067276 + outSlope: 56.8179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -2.8784 + inSlope: 14.060046 + outSlope: 14.060046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.125 + value: -2.2962077 + inSlope: -1.7647855 + outSlope: -1.8304342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -4.9363523 + inSlope: -0.033877876 + outSlope: -0.033904836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -3.2747967 + inSlope: 0.4708783 + outSlope: 0.4706819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4583335 + value: -4.053218 + inSlope: -0.33434933 + outSlope: -0.3339501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.375 + value: -3.7060387 + inSlope: -1.2016572 + outSlope: -1.1389717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9583335 + value: -5.296022 + inSlope: -1.718097 + outSlope: -1.7177422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: -3.9367523 + inSlope: 1.8679688 + outSlope: 1.8962367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -3.865116 + inSlope: -0.7337566 + outSlope: -0.7337608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -4.6584916 + inSlope: -31.232653 + outSlope: -31.233025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -10.175725 + inSlope: -137.95819 + outSlope: -175.51436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -111.29783 + inSlope: -532.4176 + outSlope: -479.4253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -153.96524 + inSlope: -24.401934 + outSlope: -23.339369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -156.36012 + inSlope: -1.0965931 + outSlope: -1.0965914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -155.84697 + inSlope: 3.629251 + outSlope: 3.629251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -59.66577 + inSlope: 83.31482 + outSlope: 83.31482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -56.201256 + inSlope: 41.02954 + outSlope: 41.02954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -56.227398 + inSlope: -7.048004 + outSlope: -7.014025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -61.082005 + inSlope: 13.358002 + outSlope: 13.357843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -50.21816 + inSlope: 35.002163 + outSlope: 34.995895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -41.599308 + inSlope: 27.501938 + outSlope: 27.489065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -42.20887 + inSlope: -13.054162 + outSlope: -13.033113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -46.605877 + inSlope: 8.354957 + outSlope: 8.354957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -41.410282 + inSlope: -3.0903084 + outSlope: -3.0901947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -46.144764 + inSlope: 3.6101227 + outSlope: 3.6100242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.375 + value: -42.887104 + inSlope: -9.166312 + outSlope: -9.172165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: -46.771885 + inSlope: 7.9834747 + outSlope: 7.9800625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -41.95929 + inSlope: -0.42102966 + outSlope: -0.421875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -45.974346 + inSlope: -74.4559 + outSlope: -74.495384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -58.91068 + inSlope: -17.27773 + outSlope: -17.07106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: -50.39352 + inSlope: 38.995193 + outSlope: 38.973446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: -54.447144 + inSlope: -37.587013 + outSlope: -37.636963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -61.324387 + inSlope: -10.665344 + outSlope: -10.665344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 34.306572 + inSlope: 113.7464 + outSlope: 113.7464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 38.915886 + inSlope: 48.30963 + outSlope: 48.30963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 38.536575 + inSlope: -16.371826 + outSlope: -16.546667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 18.351974 + inSlope: -109.418655 + outSlope: -109.41864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -4.3994308 + inSlope: -39.068623 + outSlope: -39.282516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -10.316616 + inSlope: -4.864609 + outSlope: -4.920262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -10.554706 + inSlope: -2.8704274 + outSlope: -3.0595508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: -10.554404 + inSlope: -1.7601752 + outSlope: -1.7601752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -10.206039 + inSlope: -0.93338543 + outSlope: -0.9342041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -10.202418 + inSlope: -0.08729935 + outSlope: -0.08647256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.375 + value: -10.231952 + inSlope: -1.7787255 + outSlope: -1.7208138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: -9.663716 + inSlope: 1.8691597 + outSlope: 1.9121535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -9.72071 + inSlope: 0.9609176 + outSlope: 0.9599991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -8.968216 + inSlope: 14.819092 + outSlope: 14.147995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 4.2208567 + inSlope: 114.20831 + outSlope: 114.67052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 24.39153 + inSlope: 26.191177 + outSlope: 26.09921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 27.422148 + inSlope: 12.391329 + outSlope: 11.894188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 28.377962 + inSlope: 1.822792 + outSlope: 1.822792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 105.95143 + inSlope: 9.099976 + outSlope: 9.099976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 106.4909 + inSlope: 11.632874 + outSlope: 11.632874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 106.66716 + inSlope: 4.9976807 + outSlope: 5.1882153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 113.81774 + inSlope: 50.81216 + outSlope: 50.812157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 122.07068 + inSlope: 4.2604976 + outSlope: 4.5252686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 121.28846 + inSlope: -9.694794 + outSlope: -9.682595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: 121.50665 + inSlope: 7.3800664 + outSlope: 7.5407567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9583334 + value: 123.58489 + inSlope: 2.2677395 + outSlope: 2.2677395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 121.63741 + inSlope: 1.0424409 + outSlope: 1.0432434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: 122.92568 + inSlope: 0.21658325 + outSlope: 0.2158336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.375 + value: 122.065216 + inSlope: 6.1178565 + outSlope: 6.0704346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: 123.28065 + inSlope: -4.908722 + outSlope: -4.945915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 121.79861 + inSlope: -0.7624085 + outSlope: -0.76153564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 123.45237 + inSlope: 34.432434 + outSlope: 34.746624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 126.07368 + inSlope: -26.93643 + outSlope: -27.48825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 123.17091 + inSlope: 6.555359 + outSlope: 6.700868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 115.42473 + inSlope: -48.524834 + outSlope: -48.083313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 107.41729 + inSlope: -15.196564 + outSlope: -15.196564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_L/Leg_2_L/Ankle_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -21.580482 + inSlope: -148.3786 + outSlope: -148.3786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -27.711342 + inSlope: -65.41205 + outSlope: -65.41205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -27.14214 + inSlope: 22.529938 + outSlope: 22.540512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -10.521433 + inSlope: 81.280815 + outSlope: 81.28081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 3.9142911 + inSlope: 23.110842 + outSlope: 22.357183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 6.9423394 + inSlope: -1.9872946 + outSlope: -1.3035702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 6.4974265 + inSlope: -2.482454 + outSlope: -2.4880624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 5.668952 + inSlope: -0.4550125 + outSlope: -0.4555563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 4.9936934 + inSlope: -0.36864346 + outSlope: -0.36855826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 5.7739143 + inSlope: -1.14092 + outSlope: -1.1369171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5833335 + value: 4.3606453 + inSlope: -1.2718048 + outSlope: -1.2761304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: 4.2170854 + inSlope: -2.1146429 + outSlope: -2.087019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 3.6573637 + inSlope: -0.74395466 + outSlope: -0.7432194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 3.2214334 + inSlope: -16.88048 + outSlope: -17.09493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -2.1558495 + inSlope: -47.616646 + outSlope: -48.090584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: -16.378704 + inSlope: -78.22107 + outSlope: -78.220894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -26.841528 + inSlope: -5.3515735 + outSlope: -5.4547954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -18.808949 + inSlope: 33.88158 + outSlope: 33.222015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -15.89175 + inSlope: 15.093658 + outSlope: 15.093658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 113.13632 + inSlope: -143.88135 + outSlope: -143.88135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 106.97725 + inSlope: -69.70276 + outSlope: -69.70276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 107.62587 + inSlope: 25.821167 + outSlope: 25.629456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 126.50745 + inSlope: 104.65137 + outSlope: 104.65135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 154.82605 + inSlope: 116.515854 + outSlope: 116.55994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -172.88194 + inSlope: 85.12381 + outSlope: 85.25744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -166.8708 + inSlope: -4.062742 + outSlope: -4.057617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -173.20026 + inSlope: -6.716748 + outSlope: -6.71581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -171.6137 + inSlope: -0.6378222 + outSlope: -0.6378581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -171.95998 + inSlope: 3.4670002 + outSlope: 3.468872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5833335 + value: -174.71834 + inSlope: -9.709656 + outSlope: -9.708451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: -174.81726 + inSlope: 5.356713 + outSlope: 5.369568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -174.64853 + inSlope: -3.4535522 + outSlope: -3.4535654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -176.85413 + inSlope: -76.50688 + outSlope: -76.43064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 160.34793 + inSlope: -158.50989 + outSlope: -158.21611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 126.90596 + inSlope: -154.53854 + outSlope: -154.53906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 106.11475 + inSlope: -15.464014 + outSlope: -15.429535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 115.79679 + inSlope: 30.285927 + outSlope: 31.339417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 118.59274 + inSlope: 14.447754 + outSlope: 14.447754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -44.070843 + inSlope: 33.74533 + outSlope: 33.74533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -42.397686 + inSlope: 23.866425 + outSlope: 23.866425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -42.551243 + inSlope: -1.1983337 + outSlope: -0.80049133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -41.572536 + inSlope: 28.709244 + outSlope: 28.70924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -30.560617 + inSlope: 51.292526 + outSlope: 51.55251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -19.531725 + inSlope: 22.339466 + outSlope: 22.434654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -18.057823 + inSlope: -1.0927272 + outSlope: -1.0787475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -19.44387 + inSlope: -0.07840576 + outSlope: -0.07464111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: -18.7918 + inSlope: 0.5434002 + outSlope: 0.5434723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -19.183783 + inSlope: 1.080541 + outSlope: 1.0850449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5833335 + value: -19.047106 + inSlope: -1.8877487 + outSlope: -1.8846425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: -19.064758 + inSlope: 3.066723 + outSlope: 3.086975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -18.599796 + inSlope: -0.537735 + outSlope: -0.5387441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -18.97872 + inSlope: -12.067772 + outSlope: -11.746732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -23.290087 + inSlope: -29.880524 + outSlope: -28.924822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: -27.333982 + inSlope: 16.039597 + outSlope: 16.03956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -25.377584 + inSlope: -20.929077 + outSlope: -20.911453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -41.1275 + inSlope: -38.899307 + outSlope: -39.829193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -44.56692 + inSlope: -17.638641 + outSlope: -17.638641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00583231 + inSlope: 0.70666945 + outSlope: 0.70666945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 0.023590533 + inSlope: 0.7052902 + outSlope: 0.7052902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.052970774 + inSlope: 0.704781 + outSlope: 0.7047741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 0.25828373 + inSlope: 0.69435436 + outSlope: 0.69787717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.37217698 + inSlope: -0.06789335 + outSlope: -0.067747235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.35475764 + inSlope: -0.06910336 + outSlope: -0.06959744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.3432105 + inSlope: -0.06829174 + outSlope: -0.0683408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.3203993 + inSlope: -0.06807258 + outSlope: -0.06781926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.2739917 + inSlope: -0.07225711 + outSlope: -0.072207324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 0.22242889 + inSlope: -0.07148218 + outSlope: -0.07147473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.16626391 + inSlope: -0.0725833 + outSlope: -0.0725796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.10660478 + inSlope: -0.06440463 + outSlope: -0.06452532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.041667 + value: 0.061472766 + inSlope: -0.06951625 + outSlope: -0.06955658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.01879243 + inSlope: -0.060980033 + outSlope: -0.060744017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.014968338 + inSlope: -0.007121929 + outSlope: -0.0071218885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.018043444 + inSlope: 0.07608286 + outSlope: 0.078920245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.029112983 + inSlope: 0.08278254 + outSlope: 0.08130826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.031882472 + inSlope: -0.06087336 + outSlope: -0.061585166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 0.008383504 + inSlope: -0.056088105 + outSlope: -0.05647363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.0038906443 + inSlope: -0.04303395 + outSlope: -0.04303395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -165.41666 + inSlope: 105.00293 + outSlope: 105.00293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -161.04132 + inSlope: 51.358887 + outSlope: 51.358887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -161.13507 + inSlope: -7.0389404 + outSlope: -7.0400395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -178.72083 + inSlope: -120.164696 + outSlope: -120.36004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 151.29625 + inSlope: -150.34766 + outSlope: -150.16315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 115.43784 + inSlope: -133.79599 + outSlope: -134.03831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 101.31173 + inSlope: -12.009021 + outSlope: -12.008535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 108.02576 + inSlope: 28.651241 + outSlope: 28.628862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 115.81928 + inSlope: -10.732579 + outSlope: -10.73238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 108.61498 + inSlope: 7.3374763 + outSlope: 7.337394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 114.227036 + inSlope: -6.119675 + outSlope: -6.1195483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 110.43837 + inSlope: 19.686892 + outSlope: 19.69105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.041667 + value: 120.529175 + inSlope: -10.084413 + outSlope: -10.084864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 112.771805 + inSlope: 6.328931 + outSlope: 6.3297973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 116.7903 + inSlope: 138.70457 + outSlope: 138.70598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 134.34302 + inSlope: 238.58743 + outSlope: 238.27734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 164.16118 + inSlope: 219.75183 + outSlope: 218.3117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -159.99815 + inSlope: 54.972473 + outSlope: 54.94576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: -163.3212 + inSlope: -33.03203 + outSlope: -33.036804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -170.56609 + inSlope: -16.782715 + outSlope: -16.782715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 179.99924 + inSlope: -0.01977539 + outSlope: -0.01977539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 179.99924 + inSlope: 0.017578125 + outSlope: 0.017578125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 179.9992 + inSlope: 0 + outSlope: -0.0037667411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 179.99872 + inSlope: -0.07219587 + outSlope: -0.05185546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 179.99826 + inSlope: 0.0052734367 + outSlope: 0.006591797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 179.99864 + inSlope: 0.011169434 + outSlope: 0.009063723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 179.99919 + inSlope: 0.00027465826 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 179.998 + inSlope: -0.0072784415 + outSlope: -0.009132386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 179.99463 + inSlope: -0.00082397467 + outSlope: -0.0007755053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7083335 + value: 179.99371 + inSlope: -0.006850297 + outSlope: -0.006938735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 179.98848 + inSlope: -0.00040475954 + outSlope: -0.00027465814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 179.98752 + inSlope: -0.017248532 + outSlope: -0.016673366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.041667 + value: 179.9796 + inSlope: 0.005234661 + outSlope: 0.005053711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 179.98387 + inSlope: -0.005200195 + outSlope: -0.0038452295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 179.98128 + inSlope: -0.08514437 + outSlope: -0.08514388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 179.97185 + inSlope: -0.09942608 + outSlope: -0.09777832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 179.96492 + inSlope: 0.004760742 + outSlope: 0.011169434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 179.97705 + inSlope: 0.056396484 + outSlope: 0.05548093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 179.9931 + inSlope: 0.04119871 + outSlope: 0.040649414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 179.99953 + inSlope: 0.012268066 + outSlope: 0.012268066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -58.680077 + inSlope: 17.96045 + outSlope: 17.96045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -57.943817 + inSlope: 7.8980713 + outSlope: 7.87555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -58.10845 + inSlope: -3.244263 + outSlope: -3.355957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -59.895435 + inSlope: -4.3769073 + outSlope: -3.9732444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -57.732452 + inSlope: 21.601475 + outSlope: 22.475094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -52.26631 + inSlope: -2.3696284 + outSlope: -2.365272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -52.93756 + inSlope: 0.42998803 + outSlope: 0.43520498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -52.496113 + inSlope: 2.2422543 + outSlope: 2.250979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -52.710266 + inSlope: -0.7075197 + outSlope: -0.70435274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -53.0693 + inSlope: 1.8988087 + outSlope: 1.9079437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -52.48412 + inSlope: -1.2187958 + outSlope: -1.2187958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0833335 + value: -53.024395 + inSlope: 0.7310028 + outSlope: 0.71252203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -52.142933 + inSlope: -0.51837796 + outSlope: -0.5184193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -52.318237 + inSlope: -5.6167817 + outSlope: -5.4096575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -54.170998 + inSlope: -8.727523 + outSlope: -7.406433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -55.531837 + inSlope: -0.27062988 + outSlope: -0.09503183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -56.426296 + inSlope: -10.752124 + outSlope: -10.45583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: -59.516 + inSlope: 3.2673352 + outSlope: 2.5927536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -59.421864 + inSlope: 2.4666865 + outSlope: 2.4666865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 25.616741 + inSlope: -62.310883 + outSlope: -62.310883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 23.025795 + inSlope: -30.353577 + outSlope: -30.32364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 23.496632 + inSlope: 13.531724 + outSlope: 13.462051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 21.561249 + inSlope: -69.28894 + outSlope: -69.40377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -11.710278 + inSlope: -94.89444 + outSlope: -93.35756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -37.43609 + inSlope: 5.151305 + outSlope: 5.1645465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: -28.531149 + inSlope: 12.734201 + outSlope: 12.731495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: -30.88555 + inSlope: -17.924603 + outSlope: -17.914698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -33.493145 + inSlope: 11.723702 + outSlope: 11.725366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -28.816133 + inSlope: -15.402369 + outSlope: -15.394096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -33.243813 + inSlope: 18.341827 + outSlope: 18.341827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0833335 + value: -26.594866 + inSlope: -11.533989 + outSlope: -11.543322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -34.395126 + inSlope: 0.13842769 + outSlope: 0.13732962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -32.465164 + inSlope: 74.24424 + outSlope: 74.40449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -11.078688 + inSlope: 129.2948 + outSlope: 129.71793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 3.5397356 + inSlope: -24.779133 + outSlope: -24.79592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.12143771 + inSlope: 14.084337 + outSlope: 14.941902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 24.76703 + inSlope: 35.676342 + outSlope: 36.108353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 26.006214 + inSlope: 29.617542 + outSlope: 29.617542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 83.25233 + inSlope: -36.664124 + outSlope: -36.664124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 81.714035 + inSlope: -10.734741 + outSlope: -10.772645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 83.54188 + inSlope: 32.94663 + outSlope: 32.98343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 98.740364 + inSlope: 95.67105 + outSlope: 95.77904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 129.25632 + inSlope: 74.03592 + outSlope: 72.47362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 146.94843 + inSlope: -2.8945308 + outSlope: -2.9086728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5833334 + value: 144.63982 + inSlope: -2.79788 + outSlope: -2.795141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2083335 + value: 145.55469 + inSlope: 6.7148423 + outSlope: 6.7041335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: 146.54152 + inSlope: -3.7141352 + outSlope: -3.7160277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: 144.32065 + inSlope: 8.264173 + outSlope: 8.255493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 146.34132 + inSlope: -6.7234497 + outSlope: -6.7234497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0833335 + value: 144.15189 + inSlope: 5.4957275 + outSlope: 5.5055614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 147.36752 + inSlope: -0.6594934 + outSlope: -0.6591822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 146.90637 + inSlope: -18.615305 + outSlope: -18.805262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 138.49457 + inSlope: -71.36156 + outSlope: -71.85791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 120.48366 + inSlope: -51.820496 + outSlope: -51.843708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 112.50191 + inSlope: -48.64009 + outSlope: -49.39686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 86.85857 + inSlope: -33.819775 + outSlope: -34.25401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 85.67354 + inSlope: -28.319242 + outSlope: -28.319242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Leg_1_R/Leg_2_R/Ankle_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.391797 + inSlope: 6.18543 + outSlope: 6.18543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -5.552527 + inSlope: 5.016421 + outSlope: 5.016421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -2.6589859 + inSlope: 1.7927014 + outSlope: 1.8403882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -0.18494341 + inSlope: 3.2073832 + outSlope: 3.2103279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -0.123159125 + inSlope: 0.000030123269 + outSlope: 0.000007991889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: -0.12315913 + inSlope: 0.000008002837 + outSlope: 0.000008002835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.541667 + value: -0.123159245 + inSlope: 0.000008167051 + outSlope: 0.000050023245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: -1.607849 + inSlope: -10.564465 + outSlope: -10.611214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -3.5038016 + inSlope: -1.1524425 + outSlope: -1.1204662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: -7.7921057 + inSlope: -7.653755 + outSlope: -7.62315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -9.434774 + inSlope: -3.719902 + outSlope: -3.719902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.2661183 + inSlope: 20.00019 + outSlope: 20.00019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 6.356559 + inSlope: 22.725306 + outSlope: 22.725306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: 0.75066453 + inSlope: -51.182877 + outSlope: -51.17083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: -12.521905 + inSlope: -4.6865535 + outSlope: -4.684438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: -12.469735 + inSlope: -0.00003697322 + outSlope: -0.000009809222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: -12.469735 + inSlope: -0.000009809222 + outSlope: -0.00000980922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.541667 + value: -12.469735 + inSlope: -0.00000980922 + outSlope: -0.00006008154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: -8.800719 + inSlope: 40.338943 + outSlope: 40.32997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 6.925346 + inSlope: 52.747116 + outSlope: 52.725285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 11.206012 + inSlope: -53.076557 + outSlope: -53.09238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -2.055771 + inSlope: -31.161434 + outSlope: -31.161434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.1280003 + inSlope: 1.6154021 + outSlope: 1.6154021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -3.0390851 + inSlope: 9.625982 + outSlope: 9.625982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -1.4601715 + inSlope: 7.799319 + outSlope: 7.7857084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9166667 + value: 1.6228622 + inSlope: 1.0917804 + outSlope: 1.0825844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 1.6231737 + inSlope: -0.000026409441 + outSlope: -0.0000070065876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 1.6231738 + inSlope: -0.000007181752 + outSlope: -0.0000071817503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.541667 + value: 1.6231738 + inSlope: -0.0000071817503 + outSlope: -0.00004398827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.4897049 + inSlope: -9.20673 + outSlope: -9.156043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -1.4325659 + inSlope: -2.4416866 + outSlope: -2.4546337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: -5.9028583 + inSlope: -1.898716 + outSlope: -2.0486355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -5.180628 + inSlope: 3.2291794 + outSlope: 3.2291794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -13.365756 + inSlope: 7.6716247 + outSlope: 7.6716247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -9.870618 + inSlope: 11.171182 + outSlope: 10.091716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -8.367782 + inSlope: 22.506577 + outSlope: 21.511568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -4.9690804 + inSlope: 30.224354 + outSlope: 30.471592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -1.5747747 + inSlope: 10.887025 + outSlope: 10.912514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -0.7800311 + inSlope: 3.356 + outSlope: 3.4497213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -0.39102322 + inSlope: 0.49818087 + outSlope: 0.50160944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.4799156 + inSlope: 0.11764516 + outSlope: 0.11759937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -0.38422254 + inSlope: -0.22910106 + outSlope: -0.22913545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -0.49558035 + inSlope: 0.22653504 + outSlope: 0.22686002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4583335 + value: -0.35948992 + inSlope: -0.24428722 + outSlope: -0.2447527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: -0.46592772 + inSlope: 0.050608467 + outSlope: 0.05064087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: -0.36725003 + inSlope: 0.47212207 + outSlope: 0.4702421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -0.031590797 + inSlope: 5.0502367 + outSlope: 5.003355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 2.3031428 + inSlope: 0.051393244 + outSlope: 0.287094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: -1.4844428 + inSlope: -27.300972 + outSlope: -27.712015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -8.031089 + inSlope: -29.781399 + outSlope: -29.781399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -13.276871 + inSlope: -14.669154 + outSlope: -14.669154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 63.84568 + inSlope: -24.076143 + outSlope: -24.076143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 45.125862 + inSlope: -111.69964 + outSlope: -112.10079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: 18.096258 + inSlope: -207.73729 + outSlope: -208.22763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -8.334522 + inSlope: -192.97765 + outSlope: -192.61476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -29.274302 + inSlope: -25.533709 + outSlope: -25.525772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -26.393301 + inSlope: 24.58937 + outSlope: 24.569138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -18.369148 + inSlope: 17.887756 + outSlope: 17.877188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -21.603758 + inSlope: 4.3635535 + outSlope: 4.363579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -18.07691 + inSlope: -8.303993 + outSlope: -8.304087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -22.135262 + inSlope: 8.3981085 + outSlope: 8.397661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4583335 + value: -17.121346 + inSlope: -8.844596 + outSlope: -8.845198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: -20.993534 + inSlope: 1.8826623 + outSlope: 1.8826815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: -17.385496 + inSlope: 16.98145 + outSlope: 16.98402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -9.480438 + inSlope: 82.24785 + outSlope: 82.12675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 23.887302 + inSlope: 101.04475 + outSlope: 101.123985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 46.49536 + inSlope: 44.548016 + outSlope: 44.310905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: 54.033184 + inSlope: 52.39469 + outSlope: 52.39469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 63.739937 + inSlope: 28.351187 + outSlope: 28.351187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -17.240295 + inSlope: 9.019774 + outSlope: 9.019774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -10.810372 + inSlope: 27.521624 + outSlope: 28.057316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.45833334 + value: -4.52015 + inSlope: 41.65537 + outSlope: 42.3177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5833334 + value: -0.6136912 + inSlope: 13.681223 + outSlope: 12.944057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.38425446 + inSlope: -7.984728 + outSlope: -7.951721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -1.4336358 + inSlope: -5.349698 + outSlope: -5.2867727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.25 + value: -1.5850314 + inSlope: -0.15251255 + outSlope: -0.13933714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -1.5509123 + inSlope: -0.043339185 + outSlope: -0.04354334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.875 + value: -1.5836304 + inSlope: 0.083179 + outSlope: 0.08296645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5833335 + value: -1.5402251 + inSlope: -0.083935834 + outSlope: -0.08301503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4583335 + value: -1.5859835 + inSlope: 0.0831307 + outSlope: 0.08184924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: -1.5479449 + inSlope: -0.01722676 + outSlope: -0.017266788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: -1.5812709 + inSlope: -0.13391611 + outSlope: -0.14057793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -1.6078515 + inSlope: 0.78501683 + outSlope: 0.9830227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 1.3262717 + inSlope: 19.332148 + outSlope: 19.352186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 2.4964867 + inSlope: -36.70546 + outSlope: -36.41586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -8.363911 + inSlope: -58.17141 + outSlope: -58.17141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -17.039125 + inSlope: -23.098051 + outSlope: -23.098051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 50.946724 + inSlope: -48.93805 + outSlope: -48.93805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 48.504757 + inSlope: -119.691376 + outSlope: -123.79821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 31.362438 + inSlope: -239.49908 + outSlope: -239.49904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 13.666868 + inSlope: -163.7352 + outSlope: -163.7352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.4314859 + inSlope: -218.19498 + outSlope: -217.69289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -10.403871 + inSlope: -320.74915 + outSlope: -320.74915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -26.2927 + inSlope: -294.05533 + outSlope: -294.0551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -34.722336 + inSlope: -180.91837 + outSlope: -172.66333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -50.21717 + inSlope: 11.116882 + outSlope: -3.3285835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -45.249653 + inSlope: 145.27348 + outSlope: 145.27338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: -33.499535 + inSlope: 140.50711 + outSlope: 140.5072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -22.790089 + inSlope: 98.8046 + outSlope: 98.8046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: -17.629843 + inSlope: 24.664518 + outSlope: 24.202286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -16.86256 + inSlope: 4.754059 + outSlope: 4.896838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -14.056691 + inSlope: 2.0314827 + outSlope: 2.025119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -15.590934 + inSlope: -3.9803913 + outSlope: -3.986467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: -15.767757 + inSlope: 3.8461487 + outSlope: 3.8351288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: -15.066963 + inSlope: -0.9793396 + outSlope: -0.98819256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -15.898557 + inSlope: 3.8125744 + outSlope: 3.840367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9583335 + value: -14.214617 + inSlope: -0.36385804 + outSlope: -0.36573225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: -16.548534 + inSlope: -1.5229293 + outSlope: -1.5093169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: -18.171112 + inSlope: -30.012205 + outSlope: -30.160963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -30.186228 + inSlope: -75.13948 + outSlope: -76.32272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -33.37203 + inSlope: 6.473444 + outSlope: 6.473444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: -29.225426 + inSlope: 65.51118 + outSlope: 69.35848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -30.471235 + inSlope: -65.7707 + outSlope: -65.7707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: -37.958675 + inSlope: 0.68266165 + outSlope: 0.68211627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: -29.496115 + inSlope: 145.50534 + outSlope: 147.39844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: -7.62318 + inSlope: 142.25804 + outSlope: 142.37221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 22.609459 + inSlope: 137.31624 + outSlope: 137.31636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: 46.717648 + inSlope: 66.84434 + outSlope: 68.63874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 50.418564 + inSlope: 30.435917 + outSlope: 30.435917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -56.219574 + inSlope: 231.0326 + outSlope: 231.0326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -46.99265 + inSlope: 200.84354 + outSlope: 191.97195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -37.928562 + inSlope: -24.574083 + outSlope: -24.574078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -43.442482 + inSlope: -53.609703 + outSlope: -53.609703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -46.763 + inSlope: -42.88403 + outSlope: -45.906384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -48.89194 + inSlope: -42.4586 + outSlope: -42.4586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -50.65088 + inSlope: 72.35048 + outSlope: 72.351524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -43.000107 + inSlope: 229.64491 + outSlope: 246.05383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 2.6569312 + inSlope: 496.86816 + outSlope: 500.38525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 40.75063 + inSlope: 306.54376 + outSlope: 306.5441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 56.071022 + inSlope: 33.528885 + outSlope: 33.528908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 48.68081 + inSlope: -175.35805 + outSlope: -175.35805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 34.182373 + inSlope: -109.66445 + outSlope: -109.59924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 29.455936 + inSlope: -25.444427 + outSlope: -25.357393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 21.12713 + inSlope: 8.7011175 + outSlope: 8.701987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 26.674675 + inSlope: -5.9148436 + outSlope: -5.910901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 21.66437 + inSlope: 4.301285 + outSlope: 4.309807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 27.881863 + inSlope: -7.457016 + outSlope: -7.4559665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 20.343376 + inSlope: 6.4486713 + outSlope: 6.4361205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9583335 + value: 26.000944 + inSlope: 0.99024355 + outSlope: 0.9894808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: 24.434883 + inSlope: -12.436569 + outSlope: -12.435024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: 27.21077 + inSlope: 58.36273 + outSlope: 58.33494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 34.269867 + inSlope: -43.151848 + outSlope: -39.43008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 31.831583 + inSlope: -178.16556 + outSlope: -178.16556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 20.097656 + inSlope: -228.31654 + outSlope: -225.50165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 4.9962873 + inSlope: -181.19315 + outSlope: -181.19315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: -12.780736 + inSlope: -238.5087 + outSlope: -238.50897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: -28.36833 + inSlope: -127.654 + outSlope: -121.98732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: -42.726765 + inSlope: -47.61184 + outSlope: -46.70839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -46.064503 + inSlope: -1.7955533 + outSlope: -1.7955492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -54.33301 + inSlope: -78.8659 + outSlope: -73.31589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -59.48488 + inSlope: -57.96815 + outSlope: -57.96815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 109.3842 + inSlope: 285.15344 + outSlope: 285.15344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 120.87799 + inSlope: 269.61328 + outSlope: 261.12747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 138.30066 + inSlope: 101.84986 + outSlope: 101.84984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 141.20406 + inSlope: -27.416927 + outSlope: -27.416927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 134.08984 + inSlope: -115.35643 + outSlope: -116.40457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 128.79851 + inSlope: -106.7333 + outSlope: -106.7333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 125.10331 + inSlope: -107.44906 + outSlope: -107.44898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 119.311554 + inSlope: -153.24821 + outSlope: -171.3977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 89.67968 + inSlope: -375.8875 + outSlope: -379.19073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 59.171307 + inSlope: -260.45392 + outSlope: -260.4537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7083334 + value: 42.94204 + inSlope: -118.14335 + outSlope: -118.14343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 35.30746 + inSlope: -76.93823 + outSlope: -76.93823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 30.526787 + inSlope: -34.727516 + outSlope: -35.00592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 30.055014 + inSlope: 5.0411224 + outSlope: 4.8743477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: 34.91466 + inSlope: 6.0913053 + outSlope: 6.092999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: 32.01102 + inSlope: -9.074414 + outSlope: -9.072528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.75 + value: 31.720482 + inSlope: 7.1738157 + outSlope: 7.1769104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 33.370106 + inSlope: -5.042801 + outSlope: -5.0410347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 31.37636 + inSlope: 7.240257 + outSlope: 7.23024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9583335 + value: 35.053955 + inSlope: -4.0420165 + outSlope: -4.041669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: 30.279242 + inSlope: -1.3579471 + outSlope: -1.374494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: 31.907148 + inSlope: 23.686306 + outSlope: 23.484165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 39.90417 + inSlope: 65.17903 + outSlope: 61.92495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 42.796726 + inSlope: 132.27013 + outSlope: 132.27013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 50.17338 + inSlope: 165.97136 + outSlope: 162.90785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 67.20387 + inSlope: 255.75903 + outSlope: 255.75903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 90.357475 + inSlope: 250.83415 + outSlope: 250.83449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 103.5013 + inSlope: 90.17997 + outSlope: 83.73516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: 114.788536 + inSlope: 49.80601 + outSlope: 48.938126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 121.829254 + inSlope: 0.88681775 + outSlope: 0.8868157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: 111.62037 + inSlope: -93.2621 + outSlope: -87.85887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 105.40025 + inSlope: -69.08135 + outSlope: -69.08135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.1450989 + inSlope: -0.9095564 + outSlope: -0.9095564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -1.1153867 + inSlope: 2.5290442 + outSlope: 2.531233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.9694914 + inSlope: 3.7766492 + outSlope: 3.7766485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.7953874 + inSlope: 4.4049764 + outSlope: 4.4049764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.6118365 + inSlope: 3.7851372 + outSlope: 3.756399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.35667044 + inSlope: 3.051317 + outSlope: 3.0879872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.22063312 + inSlope: 5.1783104 + outSlope: 5.1783104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.00003697564 + inSlope: 1.0804212 + outSlope: 1.0804205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.00003697451 + inSlope: 0.00046489888 + outSlope: 0.000009297983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.00003691775 + inSlope: 0.000009216249 + outSlope: 0.0000094043335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.541667 + value: -0.000036862133 + inSlope: 0.00000932261 + outSlope: 0.000015226932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -0.000036828074 + inSlope: 0.000015145191 + outSlope: 0.00045435748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.000036803347 + inSlope: -1.7991148 + outSlope: -1.7991148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: -0.2568334 + inSlope: -6.5590453 + outSlope: -6.5589705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -0.39943364 + inSlope: -2.9044518 + outSlope: -2.904485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -0.5053244 + inSlope: -1.7842509 + outSlope: -1.7842509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -0.54484576 + inSlope: -0.1713745 + outSlope: -0.17137253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: -0.51777744 + inSlope: -0.084525414 + outSlope: -0.08452638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: -0.55863434 + inSlope: -2.4404461 + outSlope: -2.4404461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: -0.71943086 + inSlope: -4.434515 + outSlope: -4.4201703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: -1.461331 + inSlope: -1.2923223 + outSlope: -1.2855911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -1.1946038 + inSlope: 1.1528674 + outSlope: 1.1534657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -1.044359 + inSlope: 0.28852478 + outSlope: 0.28852478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 48.892097 + inSlope: 102.87131 + outSlope: 102.87131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 53.934517 + inSlope: -49.57608 + outSlope: -49.570866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 49.04666 + inSlope: -168.32814 + outSlope: -168.32811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 39.899487 + inSlope: -200.79352 + outSlope: -200.79352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 32.292183 + inSlope: -108.345505 + outSlope: -108.2881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 29.32271 + inSlope: -125.75066 + outSlope: -125.71672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 20.380194 + inSlope: -354.10083 + outSlope: -354.10083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.26056755 + inSlope: -245.62737 + outSlope: -245.6272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.26056755 + inSlope: -0.0004892347 + outSlope: -0.000009784699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.2605677 + inSlope: -0.0000095701225 + outSlope: -0.000009765429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.541667 + value: -0.26056787 + inSlope: -0.000009502682 + outSlope: -0.00001552105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -0.26056793 + inSlope: 0.0009733915 + outSlope: 0.0006372953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.26048455 + inSlope: 266.54263 + outSlope: 266.54263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 22.028458 + inSlope: 404.13034 + outSlope: 404.1301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 33.68341 + inSlope: 201.9887 + outSlope: 201.9888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 38.89753 + inSlope: 39.596527 + outSlope: 39.596527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 36.985264 + inSlope: -88.430664 + outSlope: -88.430756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 31.527155 + inSlope: -47.767776 + outSlope: -47.768326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 33.00172 + inSlope: 111.02084 + outSlope: 111.02084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 40.782124 + inSlope: 163.97899 + outSlope: 163.58 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: 56.407482 + inSlope: 36.28125 + outSlope: 36.27158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: 50.03736 + inSlope: -26.265892 + outSlope: -26.267962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 46.46573 + inSlope: -10.412395 + outSlope: -10.412395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9990437 + inSlope: -2.7390718 + outSlope: -2.7390718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.8122194 + inSlope: -0.46890163 + outSlope: -0.45330623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.8412801 + inSlope: 1.6785651 + outSlope: 1.6785648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.951172 + inSlope: 1.3886632 + outSlope: 1.3886632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.9680114 + inSlope: -1.9408376 + outSlope: -1.9888513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.63495904 + inSlope: -2.5085497 + outSlope: -2.4616804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.59386986 + inSlope: -7.489223 + outSlope: -7.489223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.00811465 + inSlope: -7.5928707 + outSlope: -7.592865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -0.008114653 + inSlope: -0.00021766116 + outSlope: -0.0000043532254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5 + value: -0.008114817 + inSlope: -0.000004117191 + outSlope: -0.0000042012143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.541667 + value: -0.008114979 + inSlope: -0.0000039631 + outSlope: -0.0000064730643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: -0.008115076 + inSlope: 0.000030382722 + outSlope: -0.00018715185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.008112488 + inSlope: 8.131738 + outSlope: 8.131738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.6347491 + inSlope: 6.386467 + outSlope: 6.386394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.59927475 + inSlope: -0.28681824 + outSlope: -0.2868215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.6262776 + inSlope: 1.4142419 + outSlope: 1.4142419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.72337246 + inSlope: 2.6356988 + outSlope: 2.6356688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.84396553 + inSlope: 1.6302214 + outSlope: 1.63024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.8600867 + inSlope: -0.02816974 + outSlope: -0.02816974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.83391374 + inSlope: 0.14571102 + outSlope: -0.11738075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: 0.9704328 + inSlope: -0.47194022 + outSlope: -0.48877966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: 1.0008904 + inSlope: -0.059224434 + outSlope: -0.051932678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.99209344 + inSlope: 0.08638852 + outSlope: 0.08638852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.8532796 + inSlope: 163.688 + outSlope: 163.688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 10.487417 + inSlope: 110.37813 + outSlope: 110.37813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 13.403974 + inSlope: 27.483604 + outSlope: 27.483606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 12.974117 + inSlope: -14.573091 + outSlope: -14.5242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 10.392931 + inSlope: -22.319138 + outSlope: -22.48218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 6.777082 + inSlope: -21.393631 + outSlope: -21.387712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 1.7035618 + inSlope: -15.270915 + outSlope: -15.810595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: 0.6954974 + inSlope: -1.0582901 + outSlope: -1.0136244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.90128106 + inSlope: 0.45915046 + outSlope: 0.45933264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.90153944 + inSlope: 0.00012804537 + outSlope: 0.00012548447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: 0.9018027 + inSlope: 0.00014187813 + outSlope: 0.00012313396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.90187144 + inSlope: 0.45373112 + outSlope: 0.45371133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 1.0562322 + inSlope: 3.6830518 + outSlope: 3.6830308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 1.4113567 + inSlope: 4.0590715 + outSlope: 4.0590715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 1.861521 + inSlope: 6.7501845 + outSlope: 6.695566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 2.4903655 + inSlope: -0.02438736 + outSlope: -0.036143336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 1.4399354 + inSlope: -9.198754 + outSlope: -9.290628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.32406047 + inSlope: -6.672227 + outSlope: -6.2759633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: -0.25402737 + inSlope: -1.1138068 + outSlope: -1.1138093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: -0.13063407 + inSlope: 2.3959537 + outSlope: 2.3644972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.039157864 + inSlope: 2.2172985 + outSlope: 2.2172985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.58025557 + inSlope: -60.26371 + outSlope: -60.26371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -3.5495398 + inSlope: -80.899315 + outSlope: -80.899315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -6.570642 + inSlope: -41.191486 + outSlope: -41.19149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -6.793336 + inSlope: -2.2224658 + outSlope: -2.5213394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -6.0845847 + inSlope: 9.234135 + outSlope: 8.68149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -5.743074 + inSlope: -4.675755 + outSlope: -4.697514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -3.1122527 + inSlope: 27.696886 + outSlope: 27.452248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -0.07116963 + inSlope: 4.0416427 + outSlope: 4.0504775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6609825 + inSlope: 0.8720622 + outSlope: 0.8720196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: 0.6606327 + inSlope: -0.00018444839 + outSlope: -0.00018075944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: 0.66027564 + inSlope: -0.00017191887 + outSlope: -0.00015416503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.6601834 + inSlope: 1.126708 + outSlope: 1.1267724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: 0.92188156 + inSlope: 3.1149492 + outSlope: 3.1149313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.9322609 + inSlope: -2.8073578 + outSlope: -2.8073578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.70289576 + inSlope: -2.290083 + outSlope: -2.4202795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.651638 + inSlope: 1.5213332 + outSlope: 1.5208536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.79694813 + inSlope: -2.7739937 + outSlope: -2.5363011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.24883394 + inSlope: -6.635589 + outSlope: -6.9382086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: -0.3519016 + inSlope: 0.49970675 + outSlope: 0.49970788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: -0.046570912 + inSlope: 1.0281178 + outSlope: 1.1030972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.011728722 + inSlope: 0.7763468 + outSlope: 0.7763468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.9775677 + inSlope: -268.76636 + outSlope: -268.76636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -17.347506 + inSlope: -215.98009 + outSlope: -215.98009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -23.718435 + inSlope: -54.626907 + outSlope: -54.62691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -21.776585 + inSlope: 83.361244 + outSlope: 83.302826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -1.4641376 + inSlope: 194.03458 + outSlope: 193.67075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 20.111992 + inSlope: 8.829299 + outSlope: 8.839271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: -0.6029735 + inSlope: -154.61028 + outSlope: -154.73376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7916667 + value: -23.753101 + inSlope: -89.9178 + outSlope: -89.879105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -27.769892 + inSlope: -0.0053558354 + outSlope: -0.003237043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0416667 + value: -27.792122 + inSlope: -0.010885433 + outSlope: -0.0108874515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.125 + value: -27.814808 + inSlope: -0.010892944 + outSlope: -0.010880684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -27.820705 + inSlope: -0.0027254529 + outSlope: -0.0034332406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.75 + value: -30.06118 + inSlope: -95.0939 + outSlope: -95.09335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -43.714302 + inSlope: -199.67366 + outSlope: -199.67366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -60.279797 + inSlope: -163.6302 + outSlope: -163.50046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: -66.96277 + inSlope: 64.589355 + outSlope: 64.58594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -40.623657 + inSlope: 218.73993 + outSlope: 219.08276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -11.787629 + inSlope: 219.99905 + outSlope: 219.14458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.541667 + value: 16.057226 + inSlope: 7.2557225 + outSlope: 7.255739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 3.1890476 + inSlope: -64.585304 + outSlope: -64.625946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.89132416 + inSlope: -55.135372 + outSlope: -55.135372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_L/Arm_2_L/Wrist_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 15.756348 + inSlope: 44.392456 + outSlope: 44.392456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 17.450724 + inSlope: 40.078537 + outSlope: 34.51552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 22.151611 + inSlope: 48.102173 + outSlope: 56.061028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 25.606047 + inSlope: 69.014046 + outSlope: 66.51788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 31.65525 + inSlope: 84.42855 + outSlope: 84.42858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 39.36183 + inSlope: 98.64901 + outSlope: 96.1331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 56.339756 + inSlope: -29.433811 + outSlope: -0.13142398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 49.59813 + inSlope: -211.65166 + outSlope: -219.58484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 21.38287 + inSlope: -165.45218 + outSlope: -165.45218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 11.786978 + inSlope: -19.611832 + outSlope: -19.611832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 11.0392475 + inSlope: -4.909836 + outSlope: -5.044135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 8.375077 + inSlope: -2.0286815 + outSlope: -2.01768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 10.088333 + inSlope: 3.4126458 + outSlope: 3.4009683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 10.582045 + inSlope: -1.9800239 + outSlope: -2.0073104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 8.692396 + inSlope: 0.81582874 + outSlope: 0.82151145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 10.241686 + inSlope: 2.193687 + outSlope: 2.193521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.625 + value: 8.91103 + inSlope: -2.262616 + outSlope: -2.2213938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4583335 + value: 10.339713 + inSlope: 2.144287 + outSlope: 2.0268593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.625 + value: 10.3272295 + inSlope: -3.0990572 + outSlope: -3.0983102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7083335 + value: 10.567816 + inSlope: 33.071873 + outSlope: 33.071873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 18.051498 + inSlope: 148.33217 + outSlope: 148.33247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 31.202112 + inSlope: 116.76005 + outSlope: 117.729004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 34.796936 + inSlope: 103.64972 + outSlope: 103.64981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 39.967247 + inSlope: 97.70014 + outSlope: 97.70014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 43.014584 + inSlope: 48.669895 + outSlope: 48.66934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 44.30995 + inSlope: -108.34744 + outSlope: -108.34758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 34.298737 + inSlope: -216.8995 + outSlope: -223.05151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 12.869709 + inSlope: -58.427067 + outSlope: -57.636932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 10.856002 + inSlope: -12.137672 + outSlope: -12.137672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 9.615715 + inSlope: 7.9887085 + outSlope: 7.045446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 14.843494 + inSlope: 13.66019 + outSlope: 13.66019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -33.602993 + inSlope: -100.45816 + outSlope: -100.45816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: -37.870422 + inSlope: -126.91516 + outSlope: -128.8363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -59.39354 + inSlope: -210.08496 + outSlope: -207.17355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -68.84242 + inSlope: -188.78685 + outSlope: -190.45457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -78.26819 + inSlope: -57.5689 + outSlope: -57.568924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -76.37089 + inSlope: 119.53787 + outSlope: 125.46962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: -23.317642 + inSlope: 536.311 + outSlope: 549.9433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 22.127876 + inSlope: 387.27777 + outSlope: 366.12067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 43.859837 + inSlope: -62.58481 + outSlope: -62.58481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 27.97599 + inSlope: -80.72479 + outSlope: -80.72479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 23.963215 + inSlope: -25.733734 + outSlope: -25.673573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 16.14282 + inSlope: 5.470704 + outSlope: 5.4739094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 21.598768 + inSlope: -3.132998 + outSlope: -3.1455736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 16.726892 + inSlope: -8.534344 + outSlope: -8.523865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 23.532091 + inSlope: 4.599852 + outSlope: 4.598732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 16.110777 + inSlope: -12.3681965 + outSlope: -12.367887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.625 + value: 18.590696 + inSlope: 13.956015 + outSlope: 13.956871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4583335 + value: 18.22915 + inSlope: -13.544801 + outSlope: -13.559237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.625 + value: 15.257835 + inSlope: -31.738846 + outSlope: -31.74466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7083335 + value: 13.486814 + inSlope: 41.11416 + outSlope: 41.11416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 22.14862 + inSlope: 100.02483 + outSlope: 100.02486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 24.764122 + inSlope: -73.4535 + outSlope: -70.75086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 19.76417 + inSlope: -131.24126 + outSlope: -131.24167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 13.875699 + inSlope: -181.07275 + outSlope: -181.07275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 5.1242075 + inSlope: -231.19174 + outSlope: -231.1913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: -4.94831 + inSlope: -265.28107 + outSlope: -265.2808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: -15.571359 + inSlope: -199.98647 + outSlope: -178.18782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: -37.022926 + inSlope: -68.757866 + outSlope: -69.64215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: -42.41269 + inSlope: -4.1000977 + outSlope: -4.1000977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -38.74905 + inSlope: 41.05435 + outSlope: 41.221874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -32.159122 + inSlope: 7.8726764 + outSlope: 7.8726764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 79.345474 + inSlope: -155.99597 + outSlope: -155.99597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 72.78084 + inSlope: -185.36133 + outSlope: -186.8628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 47.10953 + inSlope: -168.9548 + outSlope: -165.64772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 40.927326 + inSlope: -116.023575 + outSlope: -118.114685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 37.192738 + inSlope: 8.537337 + outSlope: 8.53734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 42.36454 + inSlope: 102.01989 + outSlope: 108.14542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5416667 + value: 78.18672 + inSlope: 401.17642 + outSlope: 414.40933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 113.92506 + inSlope: 307.96194 + outSlope: 286.12628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 138.6896 + inSlope: 94.27515 + outSlope: 94.27515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 146.3405 + inSlope: 30.151245 + outSlope: 30.151245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 146.76866 + inSlope: -5.6627197 + outSlope: -5.529019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4583334 + value: 143.36653 + inSlope: -4.1481376 + outSlope: -4.1526117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0833335 + value: 145.08096 + inSlope: 7.9444323 + outSlope: 7.947511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5416667 + value: 146.04642 + inSlope: -3.3935776 + outSlope: -3.375231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 143.41386 + inSlope: 3.4206219 + outSlope: 3.4190147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 146.5132 + inSlope: 0.17996983 + outSlope: 0.1833252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.625 + value: 143.67404 + inSlope: -4.84834 + outSlope: -4.8650746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4583335 + value: 145.92163 + inSlope: 4.5624013 + outSlope: 4.617558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.625 + value: 146.41751 + inSlope: -0.14666761 + outSlope: -0.17028776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7083335 + value: 145.03235 + inSlope: -57.35072 + outSlope: -57.35072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.791667 + value: 137.4756 + inSlope: -98.27856 + outSlope: -98.27802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 128.78087 + inSlope: -122.600746 + outSlope: -120.29828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 123.146706 + inSlope: -143.33148 + outSlope: -143.33093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 116.87627 + inSlope: -176.02032 + outSlope: -176.02032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 108.912285 + inSlope: -201.96408 + outSlope: -201.96397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 100.49615 + inSlope: -216.11865 + outSlope: -216.11893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 92.4 + inSlope: -151.5751 + outSlope: -127.74434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 69.708626 + inSlope: -102.70043 + outSlope: -103.4057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 61.35375 + inSlope: -18.055023 + outSlope: -18.055023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 64.2015 + inSlope: 47.553406 + outSlope: 47.69827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 81.26671 + inSlope: 36.892834 + outSlope: 36.892834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000020501072 + inSlope: 0.00007380386 + outSlope: 0.00007380386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0000021723413 + inSlope: 0.000078204284 + outSlope: 0.00015640858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -0.0000023848922 + inSlope: 0.00017171225 + outSlope: 0.00017171222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0000027700692 + inSlope: 0.00019944496 + outSlope: 0.00019944496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -0.0000034843647 + inSlope: 0.0002508742 + outSlope: 0.00025087432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.0000038122826 + inSlope: 0.0002744844 + outSlope: 0.00027448422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.0000038043124 + inSlope: 0.00027391035 + outSlope: 0.00000547821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: -0.000003405805 + inSlope: 0.0000049043597 + outSlope: 0.0000050044478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.416667 + value: -0.0000030152678 + inSlope: 0.000004430597 + outSlope: 0.0000063852735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.0000027442832 + inSlope: 0.0000058114238 + outSlope: 0.00019758915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: -0.000002736313 + inSlope: 0.0001970153 + outSlope: 0.00019701304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -0.0000024434848 + inSlope: 0.00017592957 + outSlope: 0.00017593158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -0.0000027203723 + inSlope: 0.00019586756 + outSlope: 0.00019586756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -0.0000027124024 + inSlope: 0.00019529372 + outSlope: 0.00019529149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: -0.0000027044143 + inSlope: 0.00019471634 + outSlope: 0.00019471858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: -0.00000039845182 + inSlope: 0.00002868864 + outSlope: 0.00002868864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.0000008137514 + inSlope: -0.000058590325 + outSlope: -0.000029294995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.000001709756 + inSlope: -0.0000615511 + outSlope: -0.000030775638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 0.0000015313121 + inSlope: -0.000027563645 + outSlope: -0.00003675149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 0.000002276683 + inSlope: -0.000054640394 + outSlope: -0.000023417286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.000003294081 + inSlope: -0.000033881937 + outSlope: -0.000033881937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -62.341297 + inSlope: 78.029434 + outSlope: 78.029434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -52.7953 + inSlope: 192.52098 + outSlope: 192.55821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: -43.03138 + inSlope: 280.08823 + outSlope: 280.08817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -29.415106 + inSlope: 408.70166 + outSlope: 408.70166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -8.853996 + inSlope: 350.57755 + outSlope: 350.57767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.0000006403304 + inSlope: 106.08405 + outSlope: 106.08398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.00000061819554 + inSlope: 0.000044510056 + outSlope: 0.0000008902016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.00000048854804 + inSlope: -0.0000007035092 + outSlope: -0.0000007178664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.416667 + value: 0.000001573157 + inSlope: -0.0000023115772 + outSlope: -0.0000033313916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.0000023257426 + inSlope: -0.0000049251025 + outSlope: -0.0001674541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.0000023478772 + inSlope: -32.73955 + outSlope: -32.739178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: -2.7284508 + inSlope: -0.0002746561 + outSlope: -0.00027465925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -0.00000042688316 + inSlope: 32.737213 + outSlope: 32.737213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.0000006253223 + inSlope: -0.0022422972 + outSlope: -0.0022422716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: -0.000164067 + inSlope: -264.87534 + outSlope: -264.87506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: -22.149542 + inSlope: -415.492 + outSlope: -415.492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: -34.889442 + inSlope: -237.16881 + outSlope: -236.80408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: -45.17794 + inSlope: -42.212963 + outSlope: -42.20361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: -41.55506 + inSlope: -22.136236 + outSlope: -22.135803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -50.164455 + inSlope: -65.90341 + outSlope: -65.84527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -63.07555 + inSlope: -16.774181 + outSlope: -16.774181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000094860565 + inSlope: -0.0000341498 + outSlope: -0.0000341498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.0000012691984 + inSlope: -0.00004569114 + outSlope: -0.00009138229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 0.0000015546217 + inSlope: -0.00011193277 + outSlope: -0.00011193275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0000018767635 + inSlope: -0.00013512696 + outSlope: -0.00013512696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 0.0000021562605 + inSlope: -0.00015525073 + outSlope: -0.00015525079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.0000022100153 + inSlope: -0.00015912113 + outSlope: -0.00015912103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 0.000002237766 + inSlope: -0.00016111907 + outSlope: -0.0000032223832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.375 + value: 0.0000036252993 + inSlope: -0.000005220431 + outSlope: -0.0000053269696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.416667 + value: 0.000004985082 + inSlope: -0.000007325017 + outSlope: -0.000010556645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.0000059286044 + inSlope: -0.000012554693 + outSlope: -0.00042686114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.875 + value: 0.0000059563554 + inSlope: -0.00042885923 + outSlope: -0.0004288543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.916667 + value: 0.000005977322 + inSlope: -0.00043036387 + outSlope: -0.0004303688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 0.000006011857 + inSlope: -0.00043285536 + outSlope: -0.00043285536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.000006039607 + inSlope: -0.00043485334 + outSlope: -0.0004348484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.041667 + value: 0.0000060673583 + inSlope: -0.00043684643 + outSlope: -0.00043685143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 0.0000056453077 + inSlope: -0.0004064637 + outSlope: -0.0004064637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.125 + value: 0.0000050223202 + inSlope: -0.00036160843 + outSlope: -0.00018080318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2083335 + value: 0.0000043551718 + inSlope: -0.00015678589 + outSlope: -0.00007839317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.375 + value: 0.000004706448 + inSlope: -0.00008471615 + outSlope: -0.00011295476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 0.000004082209 + inSlope: -0.000097973025 + outSlope: -0.000041988395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.000002973578 + inSlope: -0.00003058534 + outSlope: -0.00003058534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.015579 + inSlope: 217.51282 + outSlope: 217.51282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 12.73282 + inSlope: 156.1552 + outSlope: 156.1552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 17.650284 + inSlope: 81.62732 + outSlope: 81.62623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 19.986599 + inSlope: 64.54386 + outSlope: 64.52393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 25.897482 + inSlope: 57.462677 + outSlope: 57.462677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: 29.056429 + inSlope: 0.711296 + outSlope: -3.2197723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: 27.864912 + inSlope: -8.972122 + outSlope: -8.97822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 16.984716 + inSlope: -107.43957 + outSlope: -106.17641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 4.671299 + inSlope: -72.43259 + outSlope: -72.43259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.010872026 + inSlope: -6.1587563 + outSlope: -6.146164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 0.00016130321 + inSlope: 0.000117782445 + outSlope: 0.000009422601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 0.00016155279 + inSlope: 0.000009063206 + outSlope: 0.000009248167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.00016179778 + inSlope: 0.000008888173 + outSlope: 0.00004355207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: 0.00016184781 + inSlope: 0.00004319186 + outSlope: 0.000071986404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.00021361711 + inSlope: 0.00018317671 + outSlope: 0.00027476533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 0.00023601418 + inSlope: -0.00012838232 + outSlope: -0.00012838196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.00015966492 + inSlope: -0.001226017 + outSlope: -0.0012684816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: -0.04435983 + inSlope: -0.85833776 + outSlope: -0.81075585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -0.26260555 + inSlope: -1.415455 + outSlope: -1.4152788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.6722026 + inSlope: -2.7390323 + outSlope: -2.7990696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: -0.8737542 + inSlope: -1.6433657 + outSlope: -1.6706172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -0.92866033 + inSlope: -1.2384974 + outSlope: -1.2384974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.2109214 + inSlope: 105.53802 + outSlope: 105.53802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 6.2830076 + inSlope: 139.11307 + outSlope: 139.11307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 11.771597 + inSlope: 84.78218 + outSlope: 84.78219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 12.829858 + inSlope: -0.77405554 + outSlope: -1.6933019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 8.325842 + inSlope: -103.223885 + outSlope: -103.223885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -2.0236392 + inSlope: -127.18365 + outSlope: -126.73161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -11.868697 + inSlope: -2.1364975 + outSlope: -2.0984025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 2.0379117 + inSlope: 36.02031 + outSlope: 41.865753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 2.8761203 + inSlope: -30.422396 + outSlope: -30.422396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 0.010095399 + inSlope: -5.732524 + outSlope: -5.7454658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: -0.00022722594 + inSlope: -0.000029806033 + outSlope: -0.0000023844839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: -0.0002276061 + inSlope: -0.0000018370617 + outSlope: -0.0000018745525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.00022797847 + inSlope: -0.0000013273982 + outSlope: -0.0000065042545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: -0.0002280544 + inSlope: -0.0000059575445 + outSlope: -0.000009929237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.00018055965 + inSlope: 0.00033566117 + outSlope: 0.00022883377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: -0.00015017232 + inSlope: -0.000043480377 + outSlope: -0.000043480253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.00022974303 + inSlope: -0.00053381384 + outSlope: -0.00071175315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: 0.015943985 + inSlope: 0.6562848 + outSlope: 0.7018286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: 0.34989905 + inSlope: 1.8246156 + outSlope: 1.8245553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.43672466 + inSlope: -1.3019289 + outSlope: -1.1877296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 0.30332556 + inSlope: -1.7021974 + outSlope: -1.6762198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 0.2423578 + inSlope: -1.5305609 + outSlope: -1.5305609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 24.777603 + inSlope: 288.62512 + outSlope: 288.62512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.041666668 + value: 37.15566 + inSlope: 246.12643 + outSlope: 246.12643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 44.801044 + inSlope: 70.11777 + outSlope: 70.117775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.125 + value: 42.588326 + inSlope: -108.81135 + outSlope: -109.153824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: 24.932076 + inSlope: -285.458 + outSlope: -285.458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2916667 + value: -0.882436 + inSlope: -294.28397 + outSlope: -293.58423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4166667 + value: -23.570518 + inSlope: -14.538757 + outSlope: -14.516127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 7.5660453 + inSlope: 205.28564 + outSlope: 208.27757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 32.28667 + inSlope: 162.53531 + outSlope: 162.53531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.875 + value: 43.942783 + inSlope: 17.780914 + outSlope: 17.784866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0416667 + value: 43.944824 + inSlope: 0.012084955 + outSlope: 0.01223877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.125 + value: 43.970303 + inSlope: 0.012200318 + outSlope: 0.01220267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 43.995277 + inSlope: 0.012230696 + outSlope: 0.01224976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5833335 + value: 44.000378 + inSlope: 7.102911 + outSlope: 7.10289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 58.434765 + inSlope: 76.53209 + outSlope: 76.57787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6 + value: 66.17521 + inSlope: -13.280423 + outSlope: -13.280385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 43.443707 + inSlope: -230.84724 + outSlope: -231.23465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.291667 + value: 11.39724 + inSlope: -252.79156 + outSlope: -251.4993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5 + value: -21.666887 + inSlope: 0.33577016 + outSlope: 0.33621532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -1.5520785 + inSlope: 175.28186 + outSlope: 175.5946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.75 + value: 12.317983 + inSlope: 132.28726 + outSlope: 132.33885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: 16.837032 + inSlope: 108.39606 + outSlope: 108.39606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Arm_1_R/Arm_2_R/Wrist_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -30.345997 + inSlope: 52.002823 + outSlope: 52.002823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -24.772041 + inSlope: 93.768585 + outSlope: 94.53607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -11.578001 + inSlope: 94.56587 + outSlope: 92.9509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: -0.039092 + inSlope: 55.683914 + outSlope: 56.563454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 8.552351 + inSlope: 52.603317 + outSlope: 52.603317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 9.351713 + inSlope: -30.65767 + outSlope: -30.65767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 3.9938753 + inSlope: -44.45054 + outSlope: -44.37464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 1.03551 + inSlope: -22.668728 + outSlope: -22.244621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.16143492 + inSlope: 0.42951027 + outSlope: 0.42954835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -0.00028389308 + inSlope: 0.00005114701 + outSlope: 0.000047493664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.00028603393 + inSlope: -0.00009844382 + outSlope: -0.00011485111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.00030538175 + inSlope: 0.0000012358068 + outSlope: 0.00000078050954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -0.00027771728 + inSlope: 0.000011592281 + outSlope: 0.0000137658335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: -0.00030953018 + inSlope: 0.000019594792 + outSlope: 0.0000195948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.75 + value: -0.00027598094 + inSlope: 0.000074616895 + outSlope: 0.000074616844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: 0.021036875 + inSlope: 1.4346303 + outSlope: 1.4903553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 2.8432257 + inSlope: 18.14307 + outSlope: 18.053898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: 10.657406 + inSlope: 19.041868 + outSlope: 19.888641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 11.219515 + inSlope: -37.20012 + outSlope: -37.03216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 3.0163157 + inSlope: -144.18224 + outSlope: -144.18196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: -9.355327 + inSlope: -120.43166 + outSlope: -120.43207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -16.485054 + inSlope: -47.58142 + outSlope: -46.020813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4583335 + value: -21.533173 + inSlope: -57.700928 + outSlope: -57.700928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -29.801924 + inSlope: -46.837692 + outSlope: -46.837692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -32.735836 + inSlope: 16.66983 + outSlope: 14.393573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -31.419289 + inSlope: 20.6798 + outSlope: 20.6798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -41.79682 + inSlope: 109.349396 + outSlope: 109.349396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -30.874157 + inSlope: 165.6671 + outSlope: 164.21732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -6.8893623 + inSlope: 192.51718 + outSlope: 192.54921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 17.285751 + inSlope: 70.38227 + outSlope: 69.760254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 22.300877 + inSlope: 49.30179 + outSlope: 49.30179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 26.781622 + inSlope: -21.461563 + outSlope: -21.461563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: 16.325073 + inSlope: -145.30225 + outSlope: -145.43419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 2.3736284 + inSlope: -142.42949 + outSlope: -142.26395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -5.962364 + inSlope: -14.172504 + outSlope: -14.170037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -4.0580626 + inSlope: 18.00162 + outSlope: 18.000801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -4.8531604 + inSlope: -21.401001 + outSlope: -21.4035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -12.040411 + inSlope: 4.7743263 + outSlope: 4.774159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -1.8124183 + inSlope: -4.343089 + outSlope: -4.3431253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: -13.605516 + inSlope: -9.892698 + outSlope: -9.892701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.75 + value: -1.1947325 + inSlope: 19.002712 + outSlope: 19.002699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: -8.049047 + inSlope: -25.037666 + outSlope: -25.051323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -15.128283 + inSlope: -38.23368 + outSlope: -38.275112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -12.766405 + inSlope: 50.8567 + outSlope: 50.466476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: -5.8001103 + inSlope: 53.129528 + outSlope: 53.301735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -2.0575812 + inSlope: 42.0834 + outSlope: 42.08364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: 2.049825 + inSlope: 67.01503 + outSlope: 67.01519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 7.156713 + inSlope: 55.642162 + outSlope: 56.970577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4583335 + value: 9.454255 + inSlope: -40.50222 + outSlope: -40.50222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -6.1031146 + inSlope: -190.02074 + outSlope: -190.02074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -31.09132 + inSlope: -173.18454 + outSlope: -173.85625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -41.913876 + inSlope: -102.10193 + outSlope: -102.10193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.6034303 + inSlope: -55.80428 + outSlope: -55.80428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -12.35454 + inSlope: -48.27001 + outSlope: -45.986526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20833334 + value: -13.116807 + inSlope: 59.39138 + outSlope: 61.342457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.375 + value: 3.0453942 + inSlope: 97.85361 + outSlope: 97.42751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 8.697727 + inSlope: -8.483734 + outSlope: -8.483734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.625 + value: 3.0191543 + inSlope: -54.985947 + outSlope: -54.985947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -0.9293675 + inSlope: -5.653188 + outSlope: -6.441266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.632856 + inSlope: 10.543492 + outSlope: 11.292809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00015506476 + inSlope: 0.0014178749 + outSlope: -0.005310425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5416667 + value: -0.0001555982 + inSlope: 0.00001667249 + outSlope: 0.000015481603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.125 + value: -0.00015551683 + inSlope: 0.000015063105 + outSlope: 0.00001757362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.625 + value: -0.00015271582 + inSlope: 0.0000007675553 + outSlope: 0.00000048477176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4166667 + value: -0.00015619103 + inSlope: 0.000013654008 + outSlope: 0.000016214135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.0833335 + value: -0.00015198078 + inSlope: -0.0000027319763 + outSlope: -0.0000027319772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.75 + value: -0.00015643424 + inSlope: 0.000017308568 + outSlope: 0.000017308555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.416667 + value: -0.031237032 + inSlope: -1.8087504 + outSlope: -1.7662078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -2.7909565 + inSlope: -18.477516 + outSlope: -18.561235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9583335 + value: -2.1144934 + inSlope: 34.59274 + outSlope: 34.06913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0833335 + value: 3.0274415 + inSlope: 27.139744 + outSlope: 27.407867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 1.036232 + inSlope: -98.629845 + outSlope: -98.63041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.25 + value: -12.955686 + inSlope: -220.20485 + outSlope: -220.20523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -32.76395 + inSlope: -225.23894 + outSlope: -225.65579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4583335 + value: -50.10034 + inSlope: -4.4699707 + outSlope: -4.4699707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5833335 + value: -35.94468 + inSlope: 170.11102 + outSlope: 170.11102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7083335 + value: -15.454052 + inSlope: 129.39139 + outSlope: 130.08434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + value: -7.7086263 + inSlope: 71.40909 + outSlope: 71.40909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: airboy_model_skeleton/airboy/Skl_Root/Waist/Spine/Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_L + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.791667 + 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: airboy_model_skeleton/airboy/board_model/eft_fire_R + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/letsgo.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/letsgo.anim.meta new file mode 100644 index 000000000..2d380c5b7 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/letsgo.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e69593c5887486143a03f3ce10624f97 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/mothership.meta b/Assets/Resources/Models/Games/Airboarder/Animations/mothership.meta new file mode 100644 index 000000000..a697e414a --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/mothership.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9806ed2445b236c439728ae2bdc7d616 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/mothership/mothership_model.controller b/Assets/Resources/Models/Games/Airboarder/Animations/mothership/mothership_model.controller new file mode 100644 index 000000000..82601be64 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/mothership/mothership_model.controller @@ -0,0 +1,72 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1107 &-6059841603863267777 +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: 2775543481773469868} + m_Position: {x: 200, y: 0, 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: 2775543481773469868} +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: mothership_model + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -6059841603863267777} + 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 &2775543481773469868 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: spin + 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: dd6ea1709fbf61a4b9e61373cd3b1b60, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/mothership/mothership_model.controller.meta b/Assets/Resources/Models/Games/Airboarder/Animations/mothership/mothership_model.controller.meta new file mode 100644 index 000000000..1e565d86b --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/mothership/mothership_model.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 838274a197f21a044af50f828404a813 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/mothership/spin.anim b/Assets/Resources/Models/Games/Airboarder/Animations/mothership/spin.anim new file mode 100644 index 000000000..39c08c879 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/mothership/spin.anim @@ -0,0 +1,253 @@ +%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: spin + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: -120, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0, y: -90, z: 0} + inSlope: {x: 0, y: -120, z: 0} + outSlope: {x: 0, y: -120, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0, y: -180, z: 0} + inSlope: {x: 0, y: -120, z: 0} + outSlope: {x: 0, y: -120, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: 0, y: -270, z: 0} + inSlope: {x: 0, y: -120, z: 0} + outSlope: {x: 0, y: -120, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3 + value: {x: 0, y: -360, z: 0} + inSlope: {x: -0, y: -120, z: -0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 0 + attribute: 4 + script: {fileID: 0} + typeID: 4 + customType: 4 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 3 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: -120 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.75 + value: -90 + inSlope: -120 + outSlope: -120 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: -180 + inSlope: -120 + outSlope: -120 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.25 + value: -270 + inSlope: -120 + outSlope: -120 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: -360 + inSlope: -120 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.z + path: + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.z + path: + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/mothership/spin.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/mothership/spin.anim.meta new file mode 100644 index 000000000..d3c212804 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/mothership/spin.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dd6ea1709fbf61a4b9e61373cd3b1b60 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/wall.meta b/Assets/Resources/Models/Games/Airboarder/Animations/wall.meta new file mode 100644 index 000000000..012770ca2 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/wall.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9ada393b44571154fb21d29e9e0fa5a5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/wall/Wall.controller b/Assets/Resources/Models/Games/Airboarder/Animations/wall/Wall.controller new file mode 100644 index 000000000..e7504991b --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/wall/Wall.controller @@ -0,0 +1,219 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-7867947768620779705 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: idle + 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: 1446ea699ca64ee4eb030a3ee17686b4, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-4540338289636398905 +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: 5573168244071546499} + m_Position: {x: 250, y: -10, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6061325381742713957} + m_Position: {x: 235, y: 65, 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: 5573168244071546499} +--- !u!1102 &-3339993895938749424 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: break + 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: 022e7fdc2d6e6d84184acb6854046934, 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: Wall + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -4540338289636398905} + 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} + - serializedVersion: 5 + m_Name: Miss Fx + m_StateMachine: {fileID: 2783156207794491431} + 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 &738825764218463679 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: shake + 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: 2d03b736c5f6c404bbdcfadc82e96cf7, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &2783156207794491431 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Miss Fx + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 738825764218463679} + m_Position: {x: 275.40924, y: 87.4441, z: 0} + - serializedVersion: 1 + m_State: {fileID: -3339993895938749424} + m_Position: {x: 280.75116, y: 156.88895, z: 0} + - serializedVersion: 1 + m_State: {fileID: -7867947768620779705} + m_Position: {x: 278.79285, y: 36.14244, 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: -7867947768620779705} +--- !u!1102 &5573168244071546499 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: move + 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: e3baee1c4d6194147b96c4789934f9de, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &6061325381742713957 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: idle + 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: 1446ea699ca64ee4eb030a3ee17686b4, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/wall/Wall.controller.meta b/Assets/Resources/Models/Games/Airboarder/Animations/wall/Wall.controller.meta new file mode 100644 index 000000000..70ce457eb --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/wall/Wall.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d3a3f979e17936b46ad2433e0e386026 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/wall/break.anim b/Assets/Resources/Models/Games/Airboarder/Animations/wall/break.anim new file mode 100644 index 000000000..4598805b2 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/wall/break.anim @@ -0,0 +1,4751 @@ +%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: break + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: 11.291667 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: wall_low_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 11.291667 + 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: wall_low_model_skeleton/wall_low_root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: 0, y: 0.0009307016, z: 0, w: 0} + outSlope: {x: 0, y: 0.0009307016, 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.16666667 + value: {x: 0.009686504, y: -0.003017042, z: 0.01825513, w: 0.9997819} + inSlope: {x: 0.17859444, y: -0.05546276, z: 0.337932, w: -0.008188247} + outSlope: {x: 0.17859444, y: -0.05546276, z: 0.337932, w: -0.008188247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.17276365, y: -0.051627718, z: 0.31646296, w: 0.9313101} + inSlope: {x: 0.17417079, y: -0.04946255, z: 0.30603063, w: -0.13878816} + outSlope: {x: 0.17417079, y: -0.04946255, z: 0.30603063, w: -0.13878816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.2114258, y: -0.064974025, z: 0.35885826, w: 0.90680665} + inSlope: {x: 0.42649198, y: -0.17896351, z: 0.12864119, w: -0.1632263} + outSlope: {x: 0.42649198, y: -0.17896351, z: 0.12864119, w: -0.1632263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: 0.27254346, y: -0.07632892, z: 0.38108042, w: 0.8801544} + inSlope: {x: 0.51873934, y: 0.07624827, z: 0.24130929, w: -0.259205} + outSlope: {x: 0.51873934, y: 0.07624827, z: 0.24130929, w: -0.259205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: 0.4036982, y: -0.057648085, z: 0.43695217, w: 0.8017339} + inSlope: {x: 0.5220975, y: 0.08297197, z: 0.20084518, w: -0.36923635} + outSlope: {x: 0.5220975, y: 0.08297197, z: 0.20084518, w: -0.36923635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.427946, y: -0.053711288, z: 0.44607967, w: 0.7842131} + inSlope: {x: 0.412061, y: 0.10934608, z: 0.40405655, w: -0.448209} + outSlope: {x: 0.412061, y: 0.10934608, z: 0.40405655, w: -0.448209} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.45827305, y: -0.037047286, z: 0.52398986, w: 0.7169714} + inSlope: {x: 0.22350046, y: 0.13387835, z: 0.6189493, w: -0.5827823} + outSlope: {x: 0.22350046, y: 0.13387835, z: 0.6189493, w: -0.5827823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: 0.47409463, y: -0.026883245, z: 0.5704487, w: 0.67014915} + inSlope: {x: 0.19938603, y: 0.13698274, z: 0.6244366, w: -0.67213273} + outSlope: {x: 0.19938603, y: 0.13698274, z: 0.6244366, w: -0.67213273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.48273343, y: -0.020777803, z: 0.5984032, w: 0.63910115} + inSlope: {x: 0.0764813, y: 0.13091734, z: 0.4233846, w: -0.43351048} + outSlope: {x: 0.0764813, y: 0.13091734, z: 0.4233846, w: -0.43351048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0833335 + value: {x: 0.4503529, y: 0.0017655959, z: 0.5992109, w: 0.66191053} + inSlope: {x: -0.31529748, y: 0.19095457, z: -0.06830913, w: 0.2766318} + outSlope: {x: -0.31529748, y: 0.19095457, z: -0.06830913, w: 0.2766318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6666667 + value: {x: 0.24711683, y: 0.12710218, z: 0.5320953, w: 0.79978305} + inSlope: {x: -0.33461317, y: 0.203471, z: -0.15295213, w: 0.1728169} + outSlope: {x: -0.33461317, y: 0.203471, z: -0.15295213, w: 0.1728169} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.125 + value: {x: 0.08141728, y: 0.22749338, z: 0.4403708, w: 0.8646916} + inSlope: {x: -0.33415475, y: 0.19904424, z: -0.21766862, w: 0.08994851} + outSlope: {x: -0.33415475, y: 0.19904424, z: -0.21766862, w: 0.08994851} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.25 + value: {x: 0.04026983, y: 0.2515078, z: 0.41160253, w: 0.8750461} + inSlope: {x: -0.10131184, y: 0.035097525, z: -0.12565643, w: 0.05485877} + outSlope: {x: -0.10131184, y: 0.035097525, z: -0.12565643, w: 0.05485877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.4166667 + value: {x: 0.043952458, y: 0.24259697, z: 0.39981034, w: 0.8828174} + inSlope: {x: 0.020856906, y: -0.056032136, z: -0.07551941, w: 0.04857793} + outSlope: {x: 0.020856906, y: -0.056032136, z: -0.07551941, w: 0.04857793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.2083335 + value: {x: 0.058719095, y: 0.19927777, z: 0.3412986, w: 0.9167092} + inSlope: {x: 0.010645773, y: -0.044265203, z: -0.05361327, w: 0.029023042} + outSlope: {x: 0.010645773, y: -0.044265203, z: -0.05361327, w: 0.029023042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.541667 + value: {x: 0.052991014, y: 0.20045246, z: 0.35391247, w: 0.912007} + inSlope: {x: -0.020294365, y: 0.00873737, z: 0.047689613, w: -0.019261096} + outSlope: {x: -0.020294365, y: 0.00873737, z: 0.047689613, w: -0.019261096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.875 + value: {x: 0.05538097, y: 0.19805193, z: 0.3676368, w: 0.9069463} + inSlope: {x: 0.12158854, y: -0.07055874, z: 0.018112384, w: 0.0005779262} + outSlope: {x: 0.12158854, y: -0.07055874, z: 0.018112384, w: 0.0005779262} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.2083335 + value: {x: 0.082433514, y: 0.18309568, z: 0.37771022, w: 0.90388924} + inSlope: {x: -0.007230816, y: 0.011998639, z: 0.06001555, w: -0.026870115} + outSlope: {x: -0.007230816, y: 0.011998639, z: 0.06001555, w: -0.026870115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.3333335 + value: {x: 0.10315452, y: 0.1738363, z: 0.5033896, w: 0.84008276} + inSlope: {x: 0.03525062, y: -0.021295033, z: 0.18495369, w: -0.11081571} + outSlope: {x: 0.03525062, y: -0.021295033, z: 0.18495369, w: -0.11081571} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.916667 + value: {x: 0.13395004, y: 0.15076911, z: 0.6626379, w: 0.7212746} + inSlope: {x: 0.06705387, y: -0.061170205, z: 0.33614108, w: -0.3094099} + outSlope: {x: 0.06705387, y: -0.061170205, z: 0.33614108, w: -0.3094099} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.041667 + value: {x: 0.14118664, y: 0.14330277, z: 0.70013016, w: 0.68509007} + inSlope: {x: -0.0011012545, y: -0.00041705277, z: -0.0084255785, w: 0.008813255} + outSlope: {x: -0.0011012545, y: -0.00041705277, z: -0.0084255785, w: 0.008813255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.2083335 + value: {x: 0.13793279, y: 0.14641352, z: 0.68332434, w: 0.7018586} + inSlope: {x: -0.018451344, y: 0.01870079, z: -0.09968343, w: 0.09689464} + outSlope: {x: -0.018451344, y: 0.01870079, z: -0.09968343, w: 0.09689464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.5 + value: {x: 0.13293564, y: 0.15173292, z: 0.6545296, w: 0.7286263} + inSlope: {x: -0.0060755946, y: 0.010736208, z: -0.048950892, w: 0.043128688} + outSlope: {x: -0.0060755946, y: 0.010736208, z: -0.048950892, w: 0.043128688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.75 + value: {x: 0.13566221, y: 0.14882885, z: 0.67017186, w: 0.7143637} + inSlope: {x: 0.019719869, y: -0.021261774, z: 0.07977154, w: -0.074271955} + outSlope: {x: 0.019719869, y: -0.021261774, z: 0.07977154, w: -0.074271955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.916667 + value: {x: 0.14556296, y: 0.1386088, z: 0.6948225, w: 0.6905221} + inSlope: {x: 0.038966734, y: -0.037739713, z: 0.12942696, w: -0.12946844} + outSlope: {x: 0.038966734, y: -0.037739713, z: 0.12942696, w: -0.12946844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.083334 + value: {x: 0.1444069, y: 0.1398673, z: 0.6894487, w: 0.6958766} + inSlope: {x: -0.012589628, y: 0.013323842, z: -0.058474608, w: 0.05781871} + outSlope: {x: -0.012589628, y: 0.013323842, z: -0.058474608, w: 0.05781871} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.333334 + value: {x: 0.14208484, y: 0.14722891, z: 0.6932312, w: 0.6910616} + inSlope: {x: 0.03376528, y: 0.0028255924, z: 0.053203538, w: -0.060737327} + outSlope: {x: 0.03376528, y: 0.0028255924, z: 0.053203538, w: -0.060737327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.541667 + value: {x: 0.14635798, y: 0.14396267, z: 0.69225097, w: 0.69184005} + inSlope: {x: 0.020147348, y: -0.020214582, z: 0.004227129, w: -0.0041920817} + outSlope: {x: 0.020147348, y: -0.020214582, z: 0.004227129, w: -0.0041920817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 9.333334 + value: {x: 0.1449878, y: 0.14530388, z: 0.69195235, w: 0.69214684} + inSlope: {x: -0.0009634511, y: 0.0009922403, z: -0.00023102807, w: 0.000225306} + outSlope: {x: -0.0009634511, y: 0.0009922403, z: -0.00023102807, w: 0.000225306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.14500073, y: 0.14534701, z: 0.69189787, w: 0.6921896} + inSlope: {x: 0.000018596507, y: 0.000009298254, z: -0.00002574901, w: 0.000018596507} + outSlope: {x: 0.000018596507, y: 0.000009298254, z: -0.00002574901, w: 0.000018596507} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block01Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: 0.003046613, y: -0.0015993055, z: 0.0027565712, w: 0} + outSlope: {x: 0.003046613, y: -0.0015993055, z: 0.0027565712, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0027346436, y: 0.022072313, z: 0.022500161, w: 0.99949944} + inSlope: {x: -0.03234818, y: 0.17134207, z: 0.08580796, w: -0.0055246367} + outSlope: {x: -0.03234818, y: 0.17134207, z: 0.08580796, w: -0.0055246367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.010160288, y: 0.05206553, z: 0.06816797, w: 0.99626255} + inSlope: {x: -0.049451753, y: 0.097369485, z: 0.169191, w: -0.017340662} + outSlope: {x: -0.049451753, y: 0.097369485, z: 0.169191, w: -0.017340662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: -0.020207088, y: 0.06791828, z: 0.11976955, w: 0.9902697} + inSlope: {x: -0.02042213, y: 0.075396806, z: 0.24908069, w: -0.03629279} + outSlope: {x: -0.02042213, y: 0.075396806, z: 0.24908069, w: -0.03629279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: -0.020392543, y: 0.07231606, z: 0.13207045, w: 0.98838854} + inSlope: {x: 0.20869486, y: 0.22759658, z: 0.35561666, w: -0.063866585} + outSlope: {x: 0.20869486, y: 0.22759658, z: 0.35561666, w: -0.063866585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.013144598, y: 0.10150169, z: 0.16799195, w: 0.9804608} + inSlope: {x: 0.39791703, y: 0.36642998, z: 0.469205, w: -0.12470833} + outSlope: {x: 0.39791703, y: 0.36642998, z: 0.469205, w: -0.12470833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.10482784, y: 0.18766202, z: 0.28462997, w: 0.9342269} + inSlope: {x: 0.34814426, y: 0.3346278, z: 0.47901732, w: -0.24975933} + outSlope: {x: 0.34814426, y: 0.3346278, z: 0.47901732, w: -0.24975933} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.16870406, y: 0.24957044, z: 0.3790044, w: 0.874991} + inSlope: {x: 0.30077767, y: 0.2940008, z: 0.47902906, w: -0.35043272} + outSlope: {x: 0.30077767, y: 0.2940008, z: 0.47902906, w: -0.35043272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.23465529, y: 0.31369972, z: 0.49433115, w: 0.77599365} + inSlope: {x: 0.23761302, y: 0.22798511, z: 0.4589879, w: -0.45343608} + outSlope: {x: 0.23761302, y: 0.22798511, z: 0.4589879, w: -0.45343608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: 0.27587035, y: 0.35226357, z: 0.58213085, w: 0.67891794} + inSlope: {x: 0.18236831, y: 0.1633232, z: 0.4325822, w: -0.5311973} + outSlope: {x: 0.18236831, y: 0.1633232, z: 0.4325822, w: -0.5311973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1666667 + value: {x: 0.3122645, y: 0.38149914, z: 0.68231, w: 0.539817} + inSlope: {x: 0.11573888, y: 0.07441685, z: 0.38312674, w: -0.59957844} + outSlope: {x: 0.11573888, y: 0.07441685, z: 0.38312674, w: -0.59957844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2083335 + value: {x: 0.31640956, y: 0.3840151, z: 0.6963573, w: 0.5172079} + inSlope: {x: 0.25153324, y: 0.036066733, z: -0.051290005, w: -0.112324074} + outSlope: {x: 0.25153324, y: 0.036066733, z: -0.051290005, w: -0.112324074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: 0.33322555, y: 0.3845047, z: 0.6780359, w: 0.53045654} + inSlope: {x: 0.5218819, y: -0.026611362, z: -0.7607437, w: 0.6246783} + outSlope: {x: 0.5218819, y: -0.026611362, z: -0.7607437, w: 0.6246783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2916667 + value: {x: 0.3598997, y: 0.3817975, z: 0.632962, w: 0.5692645} + inSlope: {x: 0.54587823, y: -0.08278389, z: -0.9864731, w: 0.8242656} + outSlope: {x: 0.54587823, y: -0.08278389, z: -0.9864731, w: 0.8242656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: 0.3968196, y: 0.37111452, z: 0.5534591, w: 0.63126165} + inSlope: {x: 0.41922078, y: -0.19418056, z: -1.1077818, w: 0.81290454} + outSlope: {x: 0.41922078, y: -0.19418056, z: -1.1077818, w: 0.81290454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: 0.4136505, y: 0.36142433, z: 0.5035146, w: 0.66688746} + inSlope: {x: 0.32657298, y: -0.17642714, z: -0.8978063, w: 0.5995591} + outSlope: {x: 0.32657298, y: -0.17642714, z: -0.8978063, w: 0.5995591} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.4410355, y: 0.35762563, z: 0.45699194, w: 0.68465316} + inSlope: {x: 0.18711019, y: 0.0034947328, z: -0.26023138, w: 0.051698588} + outSlope: {x: 0.18711019, y: 0.0034947328, z: -0.26023138, w: 0.051698588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5833335 + value: {x: 0.58681697, y: 0.34403086, z: 0.1379341, w: 0.7199047} + inSlope: {x: 0.07442886, y: -0.024940994, z: -0.30855125, w: 0.010363348} + outSlope: {x: 0.07442886, y: -0.024940994, z: -0.30855125, w: 0.010363348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.6115357, y: 0.32675028, z: -0.045436025, w: 0.7191619} + inSlope: {x: 0.021544207, y: -0.031924002, z: -0.35292223, w: -0.025309986} + outSlope: {x: 0.021544207, y: -0.031924002, z: -0.35292223, w: -0.025309986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.2083335 + value: {x: 0.6152594, y: 0.32024255, z: -0.07292234, w: 0.71664697} + inSlope: {x: 0.25868753, y: -0.28015924, z: -0.43998855, w: -0.15029296} + outSlope: {x: 0.25868753, y: -0.28015924, z: -0.43998855, w: -0.15029296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.25 + value: {x: 0.6337678, y: 0.30246302, z: -0.095215514, w: 0.7055413} + inSlope: {x: 0.3839546, y: -0.38268816, z: -0.48284072, w: -0.24179688} + outSlope: {x: 0.3839546, y: -0.38268816, z: -0.48284072, w: -0.24179688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.4583335 + value: {x: 0.70081186, y: 0.22473243, z: -0.19866127, w: 0.64721847} + inSlope: {x: 0.28147924, y: -0.37541556, z: -0.5252719, w: -0.33159882} + outSlope: {x: 0.28147924, y: -0.37541556, z: -0.5252719, w: -0.33159882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.541667 + value: {x: 0.7201244, y: 0.1971677, z: -0.238238, w: 0.62111866} + inSlope: {x: 0.24013817, y: -0.3180387, z: -0.48288935, w: -0.3640075} + outSlope: {x: 0.24013817, y: -0.3180387, z: -0.48288935, w: -0.3640075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.5833335 + value: {x: 0.73088247, y: 0.18433045, z: -0.2585892, w: 0.6041231} + inSlope: {x: 0.25698808, y: -0.088424176, z: -0.22170402, w: -0.37247944} + outSlope: {x: 0.25698808, y: -0.088424176, z: -0.22170402, w: -0.37247944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.666667 + value: {x: 0.75273234, y: 0.19446933, z: -0.25581777, w: 0.574572} + inSlope: {x: 0.27684355, y: 0.11586193, z: 0.025878644, w: -0.3911212} + outSlope: {x: 0.27684355, y: 0.11586193, z: 0.025878644, w: -0.3911212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.25 + value: {x: 0.8843067, y: 0.23523702, z: -0.22247212, w: 0.33640948} + inSlope: {x: 0.1865241, y: 0.026454953, z: 0.08890541, w: -0.44877145} + outSlope: {x: 0.1865241, y: 0.026454953, z: 0.08890541, w: -0.44877145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.416667 + value: {x: 0.91177416, y: 0.23219082, z: -0.21135485, w: 0.2647347} + inSlope: {x: 0.14532322, y: -0.123953596, z: -0.009245742, w: -0.39924228} + outSlope: {x: 0.14532322, y: -0.123953596, z: -0.009245742, w: -0.39924228} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.541667 + value: {x: 0.92865294, y: 0.21487772, z: -0.2132209, w: 0.21440172} + inSlope: {x: 0.060234938, y: -0.17567208, z: -0.099626765, w: -0.18212043} + outSlope: {x: 0.060234938, y: -0.17567208, z: -0.099626765, w: -0.18212043} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.7083335 + value: {x: 0.9320698, y: 0.1793472, z: -0.24035066, w: 0.20325382} + inSlope: {x: 0.015606225, y: -0.21557032, z: -0.16381654, w: -0.07452278} + outSlope: {x: 0.015606225, y: -0.21557032, z: -0.16381654, w: -0.07452278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.041667 + value: {x: 0.9334317, y: 0.11145503, z: -0.29184526, w: 0.17637867} + inSlope: {x: -0.015247848, y: -0.22116151, z: -0.16932191, w: -0.061200052} + outSlope: {x: -0.015247848, y: -0.22116151, z: -0.16932191, w: -0.061200052} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.2083335 + value: {x: 0.92474926, y: 0.07064286, z: -0.32442048, w: 0.18601035} + inSlope: {x: -0.061397787, y: -0.24327108, z: -0.18893516, w: 0.068968445} + outSlope: {x: -0.061397787, y: -0.24327108, z: -0.18893516, w: 0.068968445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.541667 + value: {x: 0.8921124, y: 0.044247694, z: -0.37437332, w: 0.24904284} + inSlope: {x: -0.10990736, y: -0.056685537, z: -0.13472058, w: 0.20250413} + outSlope: {x: -0.10990736, y: -0.056685537, z: -0.13472058, w: 0.20250413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.75 + value: {x: 0.8668742, y: 0.044817466, z: -0.39420208, w: 0.30186948} + inSlope: {x: -0.13548213, y: 0.055483438, z: -0.05983322, w: 0.304416} + outSlope: {x: -0.13548213, y: 0.055483438, z: -0.05983322, w: 0.304416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7 + value: {x: 0.85426265, y: 0.0941701, z: -0.3805122, w: 0.3414348} + inSlope: {x: -0.0417258, y: 0.2243679, z: 0.0766163, w: 0.12865572} + outSlope: {x: -0.0417258, y: 0.2243679, z: 0.0766163, w: 0.12865572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.291667 + value: {x: 0.84125346, y: 0.16317132, z: -0.35380548, w: 0.3748192} + inSlope: {x: -0.048078876, y: 0.2731966, z: 0.11657688, w: 0.09996235} + outSlope: {x: -0.048078876, y: 0.2731966, z: 0.11657688, w: 0.09996235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.541667 + value: {x: 0.8218216, y: 0.2178371, z: -0.33837143, w: 0.40331268} + inSlope: {x: -0.09366831, y: 0.20256718, z: 0.045488603, w: 0.1203144} + outSlope: {x: -0.09366831, y: 0.20256718, z: 0.045488603, w: 0.1203144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.125 + value: {x: 0.7286643, y: 0.26463944, z: -0.3767244, w: 0.5070435} + inSlope: {x: -0.25011325, y: -0.046043616, z: -0.1769633, w: 0.25297073} + outSlope: {x: -0.25011325, y: -0.046043616, z: -0.1769633, w: 0.25297073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.375 + value: {x: 0.6815109, y: 0.29418305, z: -0.36693507, w: 0.5606762} + inSlope: {x: -0.18347186, y: 0.14657056, z: 0.08244542, w: 0.20080191} + outSlope: {x: -0.18347186, y: 0.14657056, z: 0.08244542, w: 0.20080191} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.625 + value: {x: 0.63226336, y: 0.33621454, z: -0.3371637, w: 0.6111657} + inSlope: {x: -0.21879177, y: 0.16067684, z: 0.1278035, w: 0.2084327} + outSlope: {x: -0.21879177, y: 0.16067684, z: 0.1278035, w: 0.2084327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.666667 + value: {x: 0.62286603, y: 0.34251636, z: -0.33203825, w: 0.6200573} + inSlope: {x: -0.17128527, y: -0.06630262, z: -0.046512365, w: 0.18327573} + outSlope: {x: -0.17128527, y: -0.06630262, z: -0.046512365, w: 0.18327573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.75 + value: {x: 0.6139779, y: 0.3212888, z: -0.3480499, w: 0.6313999} + inSlope: {x: -0.0915138, y: -0.23489113, z: -0.17072824, w: 0.11429407} + outSlope: {x: -0.0915138, y: -0.23489113, z: -0.17072824, w: 0.11429407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 9.083334 + value: {x: 0.60906637, y: 0.28329843, z: -0.357122, w: 0.6490331} + inSlope: {x: 0.016039163, y: -0.0044602356, z: 0.057588108, w: 0.018673604} + outSlope: {x: 0.016039163, y: -0.0044602356, z: 0.057588108, w: 0.018673604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 9.375 + value: {x: 0.6285727, y: 0.30468485, z: -0.32460627, w: 0.6377259} + inSlope: {x: 0.11255944, y: 0.16588685, z: 0.2100394, w: -0.08377955} + outSlope: {x: 0.11255944, y: 0.16588685, z: 0.2100394, w: -0.08377955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 9.458334 + value: {x: 0.6313085, y: 0.3125788, z: -0.31424922, w: 0.63638943} + inSlope: {x: -0.05432389, y: 0.0027937435, z: 0.017443309, w: 0.06113386} + outSlope: {x: -0.05432389, y: 0.0027937435, z: 0.017443309, w: 0.06113386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 9.791667 + value: {x: 0.6325906, y: 0.316282, z: -0.31466153, w: 0.6330742} + inSlope: {x: 0.027515678, y: -0.011077797, z: -0.03018678, w: -0.036809642} + outSlope: {x: 0.027515678, y: -0.011077797, z: -0.03018678, w: -0.036809642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 10.291667 + value: {x: 0.6329462, y: 0.31576797, z: -0.31529877, w: 0.6326582} + inSlope: {x: -0.0001337518, y: -0.0014104736, z: -0.0016547316, w: 0.000013589772} + outSlope: {x: -0.0001337518, y: -0.0014104736, z: -0.0016547316, w: 0.000013589772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.63311505, y: 0.31521058, z: -0.31610137, w: 0.6323666} + inSlope: {x: 0.0021672084, y: -0.00018453457, z: -0.00042700442, w: -0.002291662} + outSlope: {x: 0.0021672084, y: -0.00018453457, z: -0.00042700442, w: -0.002291662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block02Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7070883, y: -0.003320172, z: -0.015430519, w: 0.7069491} + inSlope: {x: -0.0014762878, y: 0.11721338, z: -0.29734337, w: -0.007475853} + outSlope: {x: -0.0014762878, y: 0.11721338, z: -0.29734337, w: -0.007475853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.7070268, y: 0.0015637192, z: -0.027819827, w: 0.7066376} + inSlope: {x: -0.012660742, y: 0.47465253, z: -0.6414952, w: -0.036731243} + outSlope: {x: -0.012660742, y: 0.47465253, z: -0.6414952, w: -0.036731243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.70603323, y: 0.036234207, z: -0.068888456, w: 0.7038882} + inSlope: {x: -0.01729703, y: 0.49762934, z: -0.64101624, w: -0.048015118} + outSlope: {x: -0.01729703, y: 0.49762934, z: -0.64101624, w: -0.048015118} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.70558536, y: 0.043032832, z: -0.081237845, w: 0.70263636} + inSlope: {x: -0.021828173, y: 0.2946525, z: -0.41776896, w: -0.0498054} + outSlope: {x: -0.021828173, y: 0.2946525, z: -0.41776896, w: -0.0498054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20833334 + value: {x: 0.7027103, y: 0.07565809, z: -0.12263804, w: 0.696731} + inSlope: {x: -0.036699772, y: 0.33181828, z: -0.42341167, w: -0.07226515} + outSlope: {x: -0.036699772, y: 0.33181828, z: -0.42341167, w: -0.07226515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.7011559, y: 0.088440105, z: -0.13898684, w: 0.69371563} + inSlope: {x: -0.059087977, y: 0.43170074, z: -0.5106865, w: -0.10478137} + outSlope: {x: -0.059087977, y: 0.43170074, z: -0.5106865, w: -0.10478137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.6977863, y: 0.11163316, z: -0.16519526, w: 0.6879992} + inSlope: {x: -0.07028459, y: 0.4496349, z: -0.52028817, w: -0.12008928} + outSlope: {x: -0.07028459, y: 0.4496349, z: -0.52028817, w: -0.12008928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.69529885, y: 0.12590969, z: -0.1823442, w: 0.6837082} + inSlope: {x: -0.14878824, y: 0.58158845, z: -0.6230431, w: -0.13957575} + outSlope: {x: -0.14878824, y: 0.58158845, z: -0.6230431, w: -0.13957575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.68538725, y: 0.16009885, z: -0.2171155, w: 0.6763679} + inSlope: {x: -0.18934393, y: 0.6274522, z: -0.65139484, w: -0.15013218} + outSlope: {x: -0.18934393, y: 0.6274522, z: -0.65139484, w: -0.15013218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4166667 + value: {x: 0.6795202, y: 0.17819737, z: -0.2366271, w: 0.6711972} + inSlope: {x: -0.17842554, y: 0.49626887, z: -0.51418924, w: -0.1362841} + outSlope: {x: -0.17842554, y: 0.49626887, z: -0.51418924, w: -0.1362841} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.659105, y: 0.2242323, z: -0.28092027, w: 0.66059387} + inSlope: {x: -0.23534344, y: 0.45228693, z: -0.4237872, w: -0.09347462} + outSlope: {x: -0.23534344, y: 0.45228693, z: -0.4237872, w: -0.09347462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.6509065, y: 0.23914517, z: -0.29528022, w: 0.6572213} + inSlope: {x: -0.3145965, y: 0.54592884, z: -0.46071744, w: -0.106487945} + outSlope: {x: -0.3145965, y: 0.54592884, z: -0.46071744, w: -0.106487945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 0.6328886, y: 0.2697264, z: -0.3193134, w: 0.65171987} + inSlope: {x: -0.33424544, y: 0.54327375, z: -0.45911372, w: -0.1128874} + outSlope: {x: -0.33424544, y: 0.54327375, z: -0.45911372, w: -0.1128874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.6230527, y: 0.284418, z: -0.3335397, w: 0.64781404} + inSlope: {x: -0.28383067, y: 0.39977723, z: -0.4775133, w: -0.15527487} + outSlope: {x: -0.28383067, y: 0.39977723, z: -0.4775133, w: -0.15527487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.60923606, y: 0.30304116, z: -0.35910618, w: 0.6387803} + inSlope: {x: -0.26069415, y: 0.3460055, z: -0.4640491, w: -0.16783896} + outSlope: {x: -0.26069415, y: 0.3460055, z: -0.4640491, w: -0.16783896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.59198993, y: 0.32361412, z: -0.3868773, w: 0.6286079} + inSlope: {x: -0.28311113, y: 0.28162593, z: -0.4280445, w: -0.14588502} + outSlope: {x: -0.28311113, y: 0.28162593, z: -0.4280445, w: -0.14588502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.5777356, y: 0.33672062, z: -0.40788084, w: 0.62167037} + inSlope: {x: -0.28104746, y: 0.24941814, z: -0.40428954, w: -0.13393158} + outSlope: {x: -0.28104746, y: 0.24941814, z: -0.40428954, w: -0.13393158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8333334 + value: {x: 0.5685693, y: 0.34439898, z: -0.4205681, w: 0.61744696} + inSlope: {x: -0.31287947, y: 0.23725542, z: -0.41556448, w: -0.1334961} + outSlope: {x: -0.31287947, y: 0.23725542, z: -0.41556448, w: -0.1334961} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.5516623, y: 0.3564919, z: -0.4425112, w: 0.6105457} + inSlope: {x: -0.32305968, y: 0.21252619, z: -0.40961033, w: -0.12248403} + outSlope: {x: -0.32305968, y: 0.21252619, z: -0.40961033, w: -0.12248403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.5416477, y: 0.36210948, z: -0.4547023, w: 0.60723996} + inSlope: {x: -0.32704622, y: 0.16251032, z: -0.38356858, w: -0.09717317} + outSlope: {x: -0.32704622, y: 0.16251032, z: -0.38356858, w: -0.09717317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5124154, y: 0.3750332, z: -0.48741642, w: 0.5993378} + inSlope: {x: -0.3015538, y: 0.11351855, z: -0.31662208, w: -0.07106134} + outSlope: {x: -0.3015538, y: 0.11351855, z: -0.31662208, w: -0.07106134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.48106426, y: 0.38393465, z: -0.5183706, w: 0.59368616} + inSlope: {x: -0.3665768, y: 0.08555325, z: -0.34455618, w: -0.05531364} + outSlope: {x: -0.3665768, y: 0.08555325, z: -0.34455618, w: -0.05531364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.46873093, y: 0.38662374, z: -0.52957344, w: 0.5919167} + inSlope: {x: -0.38510376, y: 0.07756835, z: -0.33601832, w: -0.05043765} + outSlope: {x: -0.38510376, y: 0.07756835, z: -0.33601832, w: -0.05043765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.44897225, y: 0.39039868, z: -0.5463722, w: 0.589483} + inSlope: {x: -0.3441589, y: 0.14365019, z: -0.28242344, w: -0.08994484} + outSlope: {x: -0.3441589, y: 0.14365019, z: -0.28242344, w: -0.08994484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.426528, y: 0.40976307, z: -0.56353784, w: 0.576709} + inSlope: {x: -0.28631034, y: 0.23005372, z: -0.21707433, w: -0.16160484} + outSlope: {x: -0.28631034, y: 0.23005372, z: -0.21707433, w: -0.16160484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.2501199, y: 0.46677074, z: -0.66066635, w: 0.53205746} + inSlope: {x: -0.18096203, y: 0.020582933, z: -0.066412985, w: -0.014765038} + outSlope: {x: -0.18096203, y: 0.020582933, z: -0.066412985, w: -0.014765038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: 0.22438641, y: 0.5073557, z: -0.66979015, w: 0.49358094} + inSlope: {x: -0.03834458, y: 0.13611412, z: -0.012725856, w: -0.13890503} + outSlope: {x: -0.03834458, y: 0.13611412, z: -0.012725856, w: -0.13890503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.875 + value: {x: 0.28192714, y: 0.5945338, z: -0.6475665, w: 0.38432318} + inSlope: {x: 0.20979857, y: 0.15588365, z: 0.09187894, w: -0.24192289} + outSlope: {x: 0.20979857, y: 0.15588365, z: 0.09187894, w: -0.24192289} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3 + value: {x: 0.3124033, y: 0.6158612, z: -0.63348466, w: 0.34902206} + inSlope: {x: 0.27020514, y: 0.1731442, z: 0.13453178, w: -0.3071832} + outSlope: {x: 0.27020514, y: 0.1731442, z: 0.13453178, w: -0.3071832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.0416667 + value: {x: 0.32572085, y: 0.6239094, z: -0.62670785, w: 0.33448508} + inSlope: {x: 0.16860585, y: 0.10166769, z: 0.08570464, w: -0.18431355} + outSlope: {x: 0.16860585, y: 0.10166769, z: 0.08570464, w: -0.18431355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.125 + value: {x: 0.3278395, y: 0.6251205, z: -0.62562025, w: 0.3321823} + inSlope: {x: 0.029559055, y: 0.017394327, z: 0.016055364, w: -0.03163616} + outSlope: {x: 0.029559055, y: 0.017394327, z: 0.016055364, w: -0.03163616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5 + value: {x: 0.3382032, y: 0.63117355, z: -0.61957014, w: 0.32151443} + inSlope: {x: 0.019605879, y: 0.010047949, z: 0.010610856, w: -0.019900564} + outSlope: {x: 0.019605879, y: 0.010047949, z: 0.010610856, w: -0.019900564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.75 + value: {x: 0.31593388, y: 0.617436, z: -0.63305223, w: 0.34380752} + inSlope: {x: -0.03185184, y: -0.020454269, z: -0.009200443, w: 0.04923003} + outSlope: {x: -0.03185184, y: -0.020454269, z: -0.009200443, w: 0.04923003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.2083335 + value: {x: 0.33067852, y: 0.6259848, z: -0.6251463, w: 0.32861352} + inSlope: {x: 0.08681306, y: 0.046250757, z: 0.04494255, w: -0.08913158} + outSlope: {x: 0.08681306, y: 0.046250757, z: 0.04494255, w: -0.08913158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.7083335 + value: {x: 0.32842004, y: 0.6261729, z: -0.62530935, w: 0.33020604} + inSlope: {x: 0.0032247428, y: -0.000082969986, z: -0.00057649834, w: -0.004142062} + outSlope: {x: 0.0032247428, y: -0.000082969986, z: -0.00057649834, w: -0.004142062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.75 + value: {x: 0.3333499, y: 0.62960345, z: -0.6237188, w: 0.32163987} + inSlope: {x: -0.0070477594, y: 0.0019891225, z: -0.0014255019, w: 0.00064730516} + outSlope: {x: -0.0070477594, y: 0.0019891225, z: -0.0014255019, w: 0.00064730516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.791667 + value: {x: 0.3321818, y: 0.6300531, z: -0.62371016, w: 0.3219847} + inSlope: {x: -0.0003082729, y: 0.00011229429, z: 0.00009870454, w: 0.00029289498} + outSlope: {x: -0.0003082729, y: 0.00011229429, z: 0.00009870454, w: 0.00029289498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 10.875 + value: {x: 0.33153814, y: 0.63028574, z: -0.6235022, w: 0.3225947} + inSlope: {x: -0.0003082764, y: 0.0001115803, z: 0.00009942094, w: 0.00029289833} + outSlope: {x: -0.0003082764, y: 0.0001115803, z: 0.00009942094, w: 0.00029289833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.33140942, y: 0.63033223, z: -0.62346053, w: 0.32271668} + inSlope: {x: -0.00030970338, y: 0.00011014855, z: 0.00010156554, w: 0.0002932526} + outSlope: {x: -0.00030970338, y: 0.00011014855, z: 0.00010156554, w: 0.0002932526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block03Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7071067, y: 0, z: -0, w: 0.7071069} + inSlope: {x: 0, y: 0.00074775174, z: -0.00074775156, w: 0} + outSlope: {x: 0, y: 0.00074775174, z: -0.00074775156, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.7137607, y: 0.010454908, z: 0.015381728, w: 0.7001428} + inSlope: {x: 0.11891268, y: 0.19249758, z: 0.28616363, w: -0.13056205} + outSlope: {x: 0.11891268, y: 0.19249758, z: 0.28616363, w: -0.13056205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0.76625025, y: 0.15056697, z: 0.2661307, w: 0.5651236} + inSlope: {x: 0.0047879145, y: 0.139939, z: 0.31039116, w: -0.1896986} + outSlope: {x: 0.0047879145, y: 0.139939, z: 0.31039116, w: -0.1896986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.7573108, y: 0.15564296, z: 0.27800095, w: 0.5700624} + inSlope: {x: -0.32274956, y: -0.062381107, z: -0.12097743, w: 0.49430272} + outSlope: {x: -0.32274956, y: -0.062381107, z: -0.12097743, w: 0.49430272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.7394137, y: 0.1509845, z: 0.26871446, w: 0.59855133} + inSlope: {x: -0.40739012, y: -0.10803127, z: -0.20664048, w: 0.6266638} + outSlope: {x: -0.40739012, y: -0.10803127, z: -0.20664048, w: 0.6266638} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.7233616, y: 0.14664035, z: 0.2607809, w: 0.6222844} + inSlope: {x: -0.44990772, y: -0.12431228, z: -0.21541235, w: 0.6371926} + outSlope: {x: -0.44990772, y: -0.12431228, z: -0.21541235, w: 0.6371926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.7019214, y: 0.14062515, z: 0.25076345, w: 0.65165067} + inSlope: {x: -0.56535137, y: 0.35647187, z: 0.17543581, w: 0.4538957} + outSlope: {x: -0.56535137, y: 0.35647187, z: 0.17543581, w: 0.4538957} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.67624897, y: 0.1763464, z: 0.2754006, w: 0.66010904} + inSlope: {x: -0.63416976, y: 0.8680942, z: 0.57899314, w: 0.17564881} + outSlope: {x: -0.63416976, y: 0.8680942, z: 0.57899314, w: 0.17564881} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6490739, y: 0.21296637, z: 0.2990129, w: 0.6662881} + inSlope: {x: -0.72977185, y: 0.9687077, z: 0.59114015, w: 0.1262871} + outSlope: {x: -0.72977185, y: 0.9687077, z: 0.59114015, w: 0.1262871} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.6154347, y: 0.25707197, z: 0.32466224, w: 0.67063296} + inSlope: {x: -0.59565926, y: 0.8506515, z: 0.43746656, w: 0.032577123} + outSlope: {x: -0.59565926, y: 0.8506515, z: 0.43746656, w: 0.032577123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.59907395, y: 0.3024641, z: 0.34178945, w: 0.65787977} + inSlope: {x: 0.30967098, y: 0.31497997, z: 0.04606037, w: -0.45965308} + outSlope: {x: 0.30967098, y: 0.31497997, z: 0.04606037, w: -0.45965308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.6252415, y: 0.3101023, z: 0.3393068, w: 0.63069844} + inSlope: {x: 0.5571304, y: 0.17200679, z: -0.040461667, w: -0.6106422} + outSlope: {x: 0.5571304, y: 0.17200679, z: -0.040461667, w: -0.6106422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.65961736, y: 0.31498298, z: 0.32628226, w: 0.59935844} + inSlope: {x: 0.27131894, y: -0.149377, z: -0.3808093, w: -0.014811531} + outSlope: {x: 0.27131894, y: -0.149377, z: -0.3808093, w: -0.014811531} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + value: {x: 0.6754887, y: 0.29547745, z: 0.28943297, w: 0.6104397} + inSlope: {x: 0.19493288, y: -0.24444896, z: -0.4745692, w: 0.12479849} + outSlope: {x: 0.19493288, y: -0.24444896, z: -0.4745692, w: 0.12479849} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.6843558, y: 0.28397918, z: 0.26713613, w: 0.6161585} + inSlope: {x: 0.0058672503, y: -0.033971466, z: -0.13109042, w: 0.07051212} + outSlope: {x: 0.0058672503, y: -0.033971466, z: -0.13109042, w: 0.07051212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.67597765, y: 0.2926465, z: 0.27850878, w: 0.6163157} + inSlope: {x: -0.2057053, y: 0.20961346, z: 0.27333236, w: 0.002476216} + outSlope: {x: -0.2057053, y: 0.20961346, z: 0.27333236, w: 0.002476216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.6262137, y: 0.34037444, z: 0.338645, w: 0.6142647} + inSlope: {x: -0.26435018, y: 0.23946214, z: 0.28996068, w: -0.02273228} + outSlope: {x: -0.26435018, y: 0.23946214, z: 0.28996068, w: -0.02273228} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.61530465, y: 0.35012025, z: 0.3503297, w: 0.6132578} + inSlope: {x: -0.0812411, y: 0.14632922, z: 0.1858993, w: -0.10575111} + outSlope: {x: -0.0812411, y: 0.14632922, z: 0.1858993, w: -0.10575111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0833335 + value: {x: 0.6239297, y: 0.34887677, z: 0.34816104, w: 0.6064492} + inSlope: {x: 0.072134934, y: -0.091779925, z: -0.16432449, w: 0.07260153} + outSlope: {x: 0.072134934, y: -0.091779925, z: -0.16432449, w: 0.07260153} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: 0.6387778, y: 0.31538457, z: 0.2940994, w: 0.6371822} + inSlope: {x: 0.119985685, y: -0.16398433, z: -0.12613903, w: 0.018958582} + outSlope: {x: 0.119985685, y: -0.16398433, z: -0.12613903, w: 0.018958582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9166667 + value: {x: 0.6787828, y: 0.21818034, z: 0.1987007, w: 0.67243534} + inSlope: {x: 0.0668255, y: -0.21752656, z: -0.21822143, w: 0.06683337} + outSlope: {x: 0.0668255, y: -0.21752656, z: -0.21822143, w: 0.06683337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.4583335 + value: {x: 0.7066852, y: 0.05373524, z: 0.032940898, w: 0.70471513} + inSlope: {x: 0.018398523, y: -0.39984393, z: -0.4010831, w: 0.031263847} + outSlope: {x: 0.018398523, y: -0.39984393, z: -0.4010831, w: 0.031263847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5416667 + value: {x: 0.70745856, y: 0.01585001, z: -0.0050577745, w: 0.70655906} + inSlope: {x: -0.0012195089, y: -0.47919238, z: -0.48092705, w: 0.010788182} + outSlope: {x: -0.0012195089, y: -0.47919238, z: -0.48092705, w: 0.010788182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5833335 + value: {x: 0.70708656, y: -0.002450062, z: -0.023442179, w: 0.7067341} + inSlope: {x: -0.0030391077, y: -0.17466904, z: -0.17651314, w: 0.002059217} + outSlope: {x: -0.0030391077, y: -0.17466904, z: -0.17651314, w: 0.002059217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.6666667 + value: {x: 0.70729786, y: 0.0058735874, z: -0.015236975, w: 0.706727} + inSlope: {x: 0.002035614, y: 0.09775179, z: 0.09683363, w: -0.00062370184} + outSlope: {x: 0.002035614, y: 0.09775179, z: 0.09683363, w: -0.00062370184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.0833335 + value: {x: 0.70657426, y: 0.04523969, z: 0.023862734, w: 0.70578814} + inSlope: {x: -0.007875711, y: 0.081156045, z: 0.08088277, w: 0.000028610339} + outSlope: {x: -0.007875711, y: 0.081156045, z: 0.08088277, w: 0.000028610339} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.3333335 + value: {x: 0.70711106, y: 0.018081037, z: -0.003327732, w: 0.70686346} + inSlope: {x: 0.0011186643, y: -0.14756735, z: -0.14709774, w: 0.00208927} + outSlope: {x: 0.0011186643, y: -0.14756735, z: -0.14709774, w: 0.00208927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.4583335 + value: {x: 0.70695, y: 0.00862058, z: -0.012739844, w: 0.7070962} + inSlope: {x: -0.0036163467, y: 0.0709694, z: 0.07113146, w: 0.003966108} + outSlope: {x: -0.0036163467, y: 0.0709694, z: 0.07113146, w: 0.003966108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.7083335 + value: {x: 0.70654887, y: 0.013269156, z: -0.0058778888, w: 0.7075154} + inSlope: {x: 0.001483446, y: -0.07833783, z: -0.06589286, w: -0.00070309907} + outSlope: {x: 0.001483446, y: -0.07833783, z: -0.06589286, w: -0.00070309907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.166667 + value: {x: 0.7066447, y: 0.009822482, z: -0.009108414, w: 0.70744175} + inSlope: {x: 0.00007724762, y: 0.0006921875, z: -0.00044070004, w: -0.0000922677} + outSlope: {x: 0.00007724762, y: 0.0006921875, z: -0.00044070004, w: -0.0000922677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.25 + value: {x: 0.706788, y: 0.012155149, z: -0.011531008, w: 0.707227} + inSlope: {x: 0.000050783015, y: 0.0020702952, z: -0.0029201955, w: -0.00013303733} + outSlope: {x: 0.000050783015, y: 0.0020702952, z: -0.0029201955, w: -0.00013303733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 9.291667 + value: {x: 0.7069788, y: 0.011254884, z: -0.01103218, w: 0.70705914} + inSlope: {x: 0.00008654529, y: -0.000001877532, z: -0.00000072642604, w: -0.000085830034} + outSlope: {x: 0.00008654529, y: -0.000001877532, z: -0.00000072642604, w: -0.000085830034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.7071512, y: 0.011251094, z: -0.011033631, w: 0.7068868} + inSlope: {x: 0.000085830034, y: -0.0000018998836, z: -0.0000007152503, w: -0.000085830034} + outSlope: {x: 0.000085830034, y: -0.0000018998836, z: -0.0000007152503, w: -0.000085830034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block04Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0.034960203, z: -0, w: 0.99938875} + inSlope: {x: 0.000000015119916, y: 0.34020576, z: -0.000000015119916, w: -0.014317989} + outSlope: {x: 0.000000015119916, y: 0.34020576, z: -0.000000015119916, w: -0.014317989} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.0000000048394244, y: 0.16341929, z: -0.0000000048394244, w: 0.9865567} + inSlope: {x: 0.000000018750338, y: 0.61397207, z: -0.000000018750338, w: -0.10223865} + outSlope: {x: 0.000000018750338, y: 0.61397207, z: -0.000000018750338, w: -0.10223865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.00000001007274, y: 0.3533404, z: -0.00000001007274, w: 0.93549484} + inSlope: {x: 0.000000023716996, y: 1.0579643, z: -0.000000023716996, w: -0.4034534} + outSlope: {x: 0.000000023716996, y: 1.0579643, z: -0.000000023716996, w: -0.4034534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.000000013045399, y: 0.4776959, z: -0.000000013045399, w: 0.87852526} + inSlope: {x: 0.000000022067372, y: 0.5685172, z: -0.000000022067372, w: -0.3020724} + outSlope: {x: 0.000000022067372, y: 0.5685172, z: -0.000000022067372, w: -0.3020724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.00000001569897, y: 0.52057827, z: -0.00000001569897, w: 0.85381395} + inSlope: {x: 0.000000021278904, y: 0.32550058, z: -0.000000021278904, w: -0.1984469} + outSlope: {x: 0.000000021278904, y: 0.32550058, z: -0.000000021278904, w: -0.1984469} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0416667 + value: {x: 0.000000021078845, y: 0.61038744, z: -0.000000021078845, w: 0.792103} + inSlope: {x: 0.000000021543865, y: 0.379021, z: -0.000000021543865, w: -0.29156813} + outSlope: {x: 0.000000021543865, y: 0.379021, z: -0.000000021543865, w: -0.29156813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.000000023713156, y: 0.6420893, z: -0.000000023713156, w: 0.7666298} + inSlope: {x: 0.000000020602346, y: 0.100961134, z: -0.000000020602346, w: -0.08440012} + outSlope: {x: 0.000000020602346, y: 0.100961134, z: -0.000000020602346, w: -0.08440012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2916667 + value: {x: 0.000000026333264, y: 0.6769671, z: -0.000000026333264, w: 0.7360133} + inSlope: {x: 0.00000002115026, y: 0.55364424, z: -0.00000002115026, w: -0.51228315} + outSlope: {x: 0.00000002115026, y: 0.55364424, z: -0.00000002115026, w: -0.51228315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4166667 + value: {x: 0.000000028888934, y: 0.73156273, z: -0.000000028888934, w: 0.68177414} + inSlope: {x: 0.00000002016466, y: 0.1732176, z: -0.00000002016466, w: -0.18442279} + outSlope: {x: 0.00000002016466, y: 0.1732176, z: -0.00000002016466, w: -0.18442279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.00000003224972, y: 0.74816805, z: -0.00000003224972, w: 0.66350937} + inSlope: {x: 0.000000020012513, y: 0.121775985, z: -0.000000020012513, w: -0.13731922} + outSlope: {x: 0.000000020012513, y: 0.121775985, z: -0.000000020012513, w: -0.13731922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: 0.00000004804615, y: 0.84812856, z: -0.00000004804615, w: 0.52979046} + inSlope: {x: 0.000000017964988, y: 0.09178287, z: -0.000000017964988, w: -0.14678378} + outSlope: {x: 0.000000017964988, y: 0.09178287, z: -0.000000017964988, w: -0.14678378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: 0.00000006199094, y: 0.87786317, z: -0.00000006199094, w: 0.47891155} + inSlope: {x: 0.00000001817073, y: 0.036927868, z: -0.00000001817073, w: -0.06768631} + outSlope: {x: 0.00000001817073, y: 0.036927868, z: -0.00000001817073, w: -0.06768631} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.9583335 + value: {x: 0.000000077393786, y: 0.8798362, z: -0.000000077393786, w: 0.47527707} + inSlope: {x: 0.000000020747754, y: -0.024594802, z: -0.000000020747754, w: 0.04554609} + outSlope: {x: 0.000000020747754, y: -0.024594802, z: -0.000000020747754, w: 0.04554609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.0833335 + value: {x: 0.000000099588895, y: 0.8765921, z: -0.000000099588895, w: 0.48123413} + inSlope: {x: 0.000000019594001, y: -0.00004577654, z: -0.000000019594001, w: 0.00008404287} + outSlope: {x: 0.000000019594001, y: -0.00004577654, z: -0.000000019594001, w: 0.00008404287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.125 + value: {x: 0.00000013959568, y: 0.8764977, z: -0.00000013959568, w: 0.48140606} + inSlope: {x: 0.000000019596277, y: -0.00004577628, z: -0.000000019596277, w: 0.00008404239} + outSlope: {x: 0.000000019596277, y: -0.00004577628, z: -0.000000019596277, w: 0.00008404239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 9.166667 + value: {x: 0.00000017960703, y: 0.8764033, z: -0.00000017960703, w: 0.481578} + inSlope: {x: 0.000000019598723, y: -0.000045776018, z: -0.000000019598723, w: 0.00008439954} + outSlope: {x: 0.000000019598723, y: -0.000045776018, z: -0.000000019598723, w: 0.00008439954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 11.25 + value: {x: 0.00000022043963, y: 0.8763069, z: -0.00000022043963, w: 0.4817534} + inSlope: {x: 0.000000019600652, y: -0.00004649179, z: -0.000000019600652, w: 0.000084042884} + outSlope: {x: 0.000000019600652, y: -0.00004649179, z: -0.000000019600652, w: 0.000084042884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.00000022125633, y: 0.8763049, z: -0.00000022125633, w: 0.48175687} + inSlope: {x: 0.000000019600598, y: -0.00004720652, z: -0.000000019600598, w: 0.00008296903} + outSlope: {x: 0.000000019600598, y: -0.00004720652, z: -0.000000019600598, w: 0.00008296903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/sdwPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: -0.00063443155, z: -0, w: 0.9999998} + inSlope: {x: 0, y: -0.017839264, z: 0, w: -0.00001859665} + outSlope: {x: 0, y: -0.017839264, z: 0, w: -0.00001859665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0, y: -0.05640171, z: -0, w: 0.99840814} + inSlope: {x: 0, y: -0.0065273405, z: 0, w: -0.0003676418} + outSlope: {x: 0, y: -0.0065273405, z: 0, w: -0.0003676418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0, y: -0.009295937, z: -0, w: 0.9999568} + inSlope: {x: 0, y: 0.3150614, z: 0, w: 0.0030341179} + outSlope: {x: 0, y: 0.3150614, z: 0, w: 0.0030341179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0, y: 0.024541836, z: -0, w: 0.9996988} + inSlope: {x: 0, y: -0.000002168121, z: 0, w: 0} + outSlope: {x: 0, y: -0.000002168121, 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: 4 + value: {x: 0, y: 0.02453739, z: -0, w: 0.99969894} + inSlope: {x: 0, y: -0.0000021904668, z: 0, w: 0} + outSlope: {x: 0, y: -0.0000021904668, 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: 6.041667 + value: {x: 0, y: 0.024532948, z: -0, w: 0.999699} + inSlope: {x: 0, y: -0.0000021681149, z: 0, w: 0} + outSlope: {x: 0, y: -0.0000021681149, 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: 8.125 + value: {x: 0, y: 0.024528414, z: -0, w: 0.9996991} + inSlope: {x: 0, y: -0.0000021681271, z: 0, w: 0} + outSlope: {x: 0, y: -0.0000021681271, 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: 10.166667 + value: {x: 0, y: 0.02452397, z: -0, w: 0.99969923} + inSlope: {x: 0, y: -0.0000021681026, z: 0, w: 0} + outSlope: {x: 0, y: -0.0000021681026, 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: 11.291667 + value: {x: 0, y: 0.02452152, z: -0, w: 0.9996993} + inSlope: {x: 0, y: -0.000002190454, z: 0, w: 0} + outSlope: {x: 0, y: -0.000002190454, 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: wall_low_model_skeleton/wall_low_root/sdwPg2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: -0.0008898461, z: -0, w: 0.99999964} + inSlope: {x: 0, y: -0.025165385, z: 0, w: -0.000035762787} + outSlope: {x: 0, y: -0.025165385, z: 0, w: -0.000035762787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7083334 + value: {x: 0, y: -0.024659999, z: -0, w: 0.9996959} + inSlope: {x: 0, y: 0.056665722, z: 0, w: 0.0013368137} + outSlope: {x: 0, y: 0.056665722, z: 0, w: 0.0013368137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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, y: 0.17555656, z: -0, w: 0.98446935} + inSlope: {x: 0, y: 0.4326908, z: 0, w: -0.07712467} + outSlope: {x: 0, y: 0.4326908, z: 0, w: -0.07712467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0, y: 0.32841265, z: -0, w: 0.94453436} + inSlope: {x: 0, y: 0.2943219, z: 0, w: -0.10197183} + outSlope: {x: 0, y: 0.2943219, z: 0, w: -0.10197183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: 0, y: 0.34996778, z: -0, w: 0.9367618} + inSlope: {x: 0, y: -0.0009262571, z: 0, w: 0.00034546884} + outSlope: {x: 0, y: -0.0009262571, z: 0, w: 0.00034546884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.75 + value: {x: 0, y: 0.31725046, z: -0, w: 0.9483418} + inSlope: {x: 0, y: -0.13231456, z: 0, w: 0.04424576} + outSlope: {x: 0, y: -0.13231456, z: 0, w: 0.04424576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.5416667 + value: {x: 0, y: 0.24280961, z: -0, w: 0.970074} + inSlope: {x: 0, y: -0.0002709026, z: 0, w: 0.000067949164} + outSlope: {x: 0, y: -0.0002709026, z: 0, w: 0.000067949164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.25 + value: {x: 0, y: 0.2417518, z: -0, w: 0.97033817} + inSlope: {x: 0, y: -0.017078115, z: 0, w: 0.004252899} + outSlope: {x: 0, y: -0.017078115, z: 0, w: 0.004252899} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 6.5 + value: {x: 0, y: 0.20540647, z: -0, w: 0.9786768} + 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: 8.541667 + value: {x: 0, y: 0.20540647, z: -0, w: 0.9786768} + 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: 10.625 + value: {x: 0, y: 0.20540647, z: -0, w: 0.9786768} + 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: 11.291667 + value: {x: 0, y: 0.20540647, z: -0, w: 0.9786768} + 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: wall_low_model_skeleton/wall_low_root/sdwPg3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0.0014262574, z: -0, w: 0.999999} + inSlope: {x: 0.0000000144744625, y: 0.042513415, z: -0.0000000144744625, w: -0.00009870529} + outSlope: {x: 0.0000000144744625, y: 0.042513415, z: -0.0000000144744625, w: -0.00009870529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.000000020743638, y: 0.21269855, z: -0.000000020743638, w: 0.9771179} + inSlope: {x: 0.000000020177096, y: 0.22076944, z: -0.000000020177096, w: -0.048043057} + outSlope: {x: 0.000000020177096, y: 0.22076944, z: -0.000000020177096, w: -0.048043057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.000000038491326, y: 0.4320001, z: -0.000000038491326, w: 0.9018735} + inSlope: {x: 0.000000023343791, y: 0.27265, z: -0.000000023343791, w: -0.1305334} + outSlope: {x: 0.000000023343791, y: 0.27265, z: -0.000000023343791, w: -0.1305334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7916667 + value: {x: 0.00000005626771, y: 0.58828676, z: -0.00000005626771, w: 0.8086524} + inSlope: {x: 0.000000022396762, y: 0.204326, z: -0.000000022396762, w: -0.14866276} + outSlope: {x: 0.000000022396762, y: 0.204326, z: -0.000000022396762, w: -0.14866276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 4.041667 + value: {x: 0.00000008139748, y: 0.81156015, z: -0.00000008139748, w: 0.5842689} + inSlope: {x: 0.00000001726556, y: 0.12676881, z: -0.00000001726556, w: -0.17604412} + outSlope: {x: 0.00000001726556, y: 0.12676881, z: -0.00000001726556, w: -0.17604412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 5.3333335 + value: {x: 0.000000102728954, y: 0.90084726, z: -0.000000102728954, w: 0.4341363} + inSlope: {x: 0.000000019203059, y: 0.00070667535, z: -0.000000019203059, w: -0.0014673527} + outSlope: {x: 0.000000019203059, y: 0.00070667535, z: -0.000000019203059, w: -0.0014673527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 7.041667 + value: {x: 0.00000013550189, y: 0.90205127, z: -0.00000013550189, w: 0.43162885} + inSlope: {x: 0.000000019165007, y: 0.0007023798, z: -0.000000019165007, w: -0.0014691325} + outSlope: {x: 0.000000019165007, y: 0.0007023798, z: -0.000000019165007, w: -0.0014691325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 8.416667 + value: {x: 0.0000001547359, y: 0.9438707, z: -0.0000001547359, w: 0.3303151} + inSlope: {x: 0.000000014221433, y: 0.018454887, z: -0.000000014221433, w: -0.052735403} + outSlope: {x: 0.000000014221433, y: 0.018454887, z: -0.000000014221433, w: -0.052735403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 9.791667 + value: {x: 0.00000017658331, y: 0.95576394, z: -0.00000017658331, w: 0.29413486} + inSlope: {x: 0.000000021657007, y: -0.011426839, z: -0.000000021657007, w: 0.037010625} + outSlope: {x: 0.000000021657007, y: -0.011426839, z: -0.000000021657007, w: 0.037010625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 10.375 + value: {x: 0.000000190111, y: 0.9460911, z: -0.000000190111, w: 0.3239007} + inSlope: {x: 0.00000001836618, y: -0.00014734325, z: -0.00000001836618, w: 0.00042915507} + outSlope: {x: 0.00000001836618, y: -0.00014734325, z: -0.00000001836618, w: 0.00042915507} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.00000020694999, y: 0.94595665, z: -0.00000020694999, w: 0.32429326} + inSlope: {x: 0.00000001837313, y: -0.00014734156, z: -0.00000001837313, w: 0.0004298654} + outSlope: {x: 0.00000001837313, y: -0.00014734156, z: -0.00000001837313, w: 0.0004298654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/sdwPg4 + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.021641059, z: 0.01532329} + inSlope: {x: 0.00033359256, y: 0.00018665314, z: -0.00038280486} + outSlope: {x: 0.00033359256, y: 0.00018665314, z: -0.00038280486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.00001389969, y: 0.021648835, z: 0.015307339} + inSlope: {x: 0.00033359256, y: 0.00018665314, z: -0.00038280486} + outSlope: {x: 0.0010403768, y: 0.00018665314, z: -0.0010766315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.00005724873, y: 0.021656614, z: 0.01526248} + inSlope: {x: 0.0010403768, y: 0.00018665314, z: -0.0010766315} + outSlope: {x: 0.0018065609, y: 0.00018665315, z: -0.0016629411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.0001325221, y: 0.02166439, z: 0.01519319} + inSlope: {x: 0.0018065609, y: 0.00018665315, z: -0.0016629411} + outSlope: {x: 0.0026321444, y: 0.00018659589, z: -0.0021420189} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.00024219479, y: 0.021672165, z: 0.015103939} + inSlope: {x: 0.0026321444, y: 0.00018659589, z: -0.0021420189} + outSlope: {x: 0.0035171288, y: 0.00018665317, z: -0.0025137526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.00038874178, y: 0.021679942, z: 0.0149992} + inSlope: {x: 0.0035171288, y: 0.00018665317, z: -0.0025137526} + outSlope: {x: 0.0041338145, y: 0.00018665311, z: -0.002762403} + tangentMode: 0 + weightedMode: 0 + 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.002157309, y: 0.02034621, z: 0.013741029} + inSlope: {x: 0.003538583, y: -0.0068265693, z: -0.002677945} + outSlope: {x: 0.0034665617, y: -0.006641299, z: -0.002659438} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.0029761652, y: 0.01820875, z: 0.0130893} + inSlope: {x: 0.0030779513, y: -0.011686529, z: -0.002550715} + outSlope: {x: 0.0029945069, y: -0.011318189, z: -0.0025259994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.0038030078, y: 0.01393599, z: 0.01227476} + inSlope: {x: 0.001255418, y: -0.015770404, z: -0.0024530434} + outSlope: {x: 0.0005333095, y: -0.009360503, z: -0.0045014517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.0036047678, y: 0.012358201, z: 0.01058246} + inSlope: {x: -0.0024567558, y: -0.0057724463, z: -0.010727986} + outSlope: {x: -0.0030503254, y: -0.006520821, z: -0.010054102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.002808141, y: 0.010312759, z: 0.008327175} + inSlope: {x: -0.0037365246, y: -0.009072715, z: -0.00856736} + outSlope: {x: -0.004279522, y: -0.005605436, z: -0.005004377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8333334 + value: {x: 0.002183341, y: 0.009703016, z: 0.0079979105} + inSlope: {x: -0.005752358, y: -0.0050780773, z: -0.0006251466} + outSlope: {x: -0.006326139, y: -0.006038681, z: -0.000061554965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.0013844951, y: 0.008855959, z: 0.007919219} + inSlope: {x: -0.0063277804, y: -0.0074585294, z: -0.0013046382} + outSlope: {x: -0.003082469, y: -0.001547729, z: -0.003425091} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.0012560589, y: 0.00879147, z: 0.0077765076} + inSlope: {x: -0.003082469, y: -0.001547729, z: -0.003425091} + outSlope: {x: 0.00307137, y: 0.007785601, z: -0.0072251563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.0013840329, y: 0.009115871, z: 0.007475459} + inSlope: {x: 0.00307137, y: 0.007785601, z: -0.0072251563} + outSlope: {x: 0.004284162, y: 0.007413997, z: -0.00841091} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0833333 + value: {x: 0.001562539, y: 0.009424786, z: 0.0071250056} + inSlope: {x: 0.004284162, y: 0.007413997, z: -0.00841091} + outSlope: {x: 0.0023576822, y: 0.004540063, z: -0.0073372084} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: 0.002248096, y: 0.01022158, z: 0.005016043} + inSlope: {x: 0.0018299497, y: 0.000012016273, z: -0.0057089888} + outSlope: {x: 0.0017710371, y: -0.00076561264, z: -0.0054604546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7083333 + value: {x: 0.002715062, y: 0.009241762, z: 0.003574177} + inSlope: {x: 0.0014353449, y: -0.006116604, z: -0.004569643} + outSlope: {x: 0.0013823506, y: -0.006514079, z: -0.00452118} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9166667 + value: {x: 0.0029817089, y: 0.007714859, z: 0.0026285946} + inSlope: {x: 0.0011791612, y: -0.009248667, z: -0.004613562} + outSlope: {x: 0.0011304803, y: -0.011176314, z: -0.0046903216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.125 + value: {x: 0.003197667, y: 0.0053591323, z: 0.0017659211} + inSlope: {x: 0.00094442186, y: -0.0117865335, z: -0.0034808284} + outSlope: {x: 0.0009000475, y: -0.013350366, z: -0.00308658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.2083333 + value: {x: 0.003270858, y: 0.0041996385, z: 0.0015262807} + inSlope: {x: 0.0008565363, y: -0.014477517, z: -0.0026647954} + outSlope: {x: 0.00081386644, y: -0.008583854, z: -0.002083078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.25 + value: {x: 0.003304769, y: 0.003841977, z: 0.0014394855} + inSlope: {x: 0.00081386644, y: -0.008583854, z: -0.002083078} + outSlope: {x: 0.00077207416, y: 0.008023437, z: -0.0008233436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.2916667 + value: {x: 0.0033369388, y: 0.0041762874, z: 0.0014051795} + inSlope: {x: 0.00077207416, y: 0.008023437, z: -0.0008233436} + outSlope: {x: 0.0007311157, y: 0.008907857, z: 0.000228053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.3333333 + value: {x: 0.003367402, y: 0.004547447, z: 0.0014146817} + inSlope: {x: 0.0007311157, y: 0.008907857, z: 0.000228053} + outSlope: {x: 0.00069102866, y: 0.0057465825, z: 0.0009227639} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.5 + value: {x: 0.003472911, y: 0.0053552375, z: 0.001593492} + inSlope: {x: 0.00057593, y: 0.0039117835, z: 0.0008662303} + outSlope: {x: 0.0005392517, y: 0.003229974, z: 0.00050702953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.75 + value: {x: 0.0036010179, y: 0.005685408, z: 0.0017379152} + inSlope: {x: 0.00055801996, y: -0.00070564135, z: 0.0006223571} + outSlope: {x: 0.0005756868, y: -0.00159805, z: 0.0006203544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.9583333 + value: {x: 0.00371629, y: 0.0049513746, z: 0.0018591702} + inSlope: {x: 0.0005020828, y: -0.005518877, z: 0.00052645884} + outSlope: {x: 0.000447599, y: -0.0063586403, z: 0.0004814234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.1666665 + value: {x: 0.0037721884, y: 0.0034797834, z: 0.0019335377} + inSlope: {x: 0.000022187316, y: -0.008398737, z: 0.00021526418} + outSlope: {x: 0.000022187063, y: -0.009814407, z: 0.00012722872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.2083335 + value: {x: 0.0037731128, y: 0.0030708467, z: 0.0019388389} + inSlope: {x: 0.000022187063, y: -0.009814407, z: 0.00012722872} + outSlope: {x: -0.00018215486, y: -0.0043209046, z: -0.00003559126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.25 + value: {x: 0.003765523, y: 0.0028908097, z: 0.001937356} + inSlope: {x: -0.00018215486, y: -0.0043209046, z: -0.00003559126} + outSlope: {x: -0.00029729, y: 0.0062408587, z: -0.00003559126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.375 + value: {x: 0.00373369, y: 0.0035545134, z: 0.001932907} + inSlope: {x: -0.00020856221, y: 0.004381416, z: -0.00003559126} + outSlope: {x: -0.00014880951, y: 0.0034650266, z: 0.000011980579} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.5416665 + value: {x: 0.0037135028, y: 0.0039066384, z: 0.0019349041} + inSlope: {x: -0.00009343421, y: 0.00076938915, z: 0.000011984155} + outSlope: {x: -0.00006679723, y: -0.000111321555, z: 0.000011980442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.7083335 + value: {x: 0.00370127, y: 0.0036716138, z: 0.001957773} + inSlope: {x: -0.00009318281, y: -0.0027000697, z: 0.00023574648} + outSlope: {x: -0.000093183866, y: -0.0035451928, z: 0.0003011238} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.7916665 + value: {x: 0.003693505, y: 0.0033621883, z: 0.0019858598} + inSlope: {x: -0.000093183866, y: -0.0038810496, z: 0.00037296436} + outSlope: {x: -0.00014483818, y: -0.0015725491, z: 0.0004512371} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.8333335 + value: {x: 0.00368747, y: 0.003296665, z: 0.0020046616} + inSlope: {x: -0.00014483818, y: -0.0015725491, z: 0.0004512371} + outSlope: {x: -0.00018283435, y: 0.00030847665, z: 0.0005360147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5 + value: {x: 0.0036444638, y: 0.0034148109, z: 0.0021178639} + inSlope: {x: -0.00034053455, y: 0.00014082009, z: 0.0008288987} + outSlope: {x: -0.00040771163, y: -0.0014883098, z: 0.0009394204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.125 + value: {x: 0.003583887, y: 0.0032814872, z: 0.0022457885} + inSlope: {x: -0.00056395266, y: -0.0003686156, z: 0.001074404} + outSlope: {x: -0.00057655555, y: 0.0011143441, z: 0.0008070404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.25 + value: {x: 0.003518486, y: 0.003360486, z: 0.0023165762} + inSlope: {x: -0.00047258555, y: -0.00015395223, z: 0.00033717285} + outSlope: {x: -0.00043281718, y: -0.0006271958, z: 0.0001544386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.4166665 + value: {x: 0.003452909, y: 0.0033717786, z: 0.0023111487} + inSlope: {x: -0.00036225695, y: 0.0011070485, z: -0.00018476557} + outSlope: {x: -0.0003549787, y: 0.0011022006, z: -0.00022819346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.7916665 + value: {x: 0.0032900309, y: 0.0037504814, z: 0.0023252082} + inSlope: {x: -0.0005895661, y: 0.0009501494, z: 0.00047212778} + outSlope: {x: -0.000655484, y: 0.0009468483, z: 0.0004841386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.4166665 + value: {x: 0.002403941, y: 0.004409381, z: 0.002730454} + inSlope: {x: -0.0023930508, y: 0.001267581, z: 0.00087779376} + outSlope: {x: -0.002436364, y: 0.0013166614, z: 0.0009219576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.8333335 + value: {x: 0.001174773, y: 0.0049593044, z: 0.0032122636} + inSlope: {x: -0.0037192765, y: 0.001375455, z: 0.0014164816} + outSlope: {x: -0.0039683897, y: 0.0014127785, z: 0.0014821586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.9583335 + value: {x: 0.0006440384, y: 0.0051417374, z: 0.0034061002} + inSlope: {x: -0.0045304364, y: 0.0015084915, z: 0.0016199274} + outSlope: {x: -0.0048434944, y: 0.0015669595, z: 0.0016921298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7 + value: {x: 0.00044222688, y: 0.0052070273, z: 0.0034766053} + inSlope: {x: -0.0048434944, y: 0.0015669595, z: 0.0016921298} + outSlope: {x: -0.0029058733, y: 0.0017869159, z: 0.0014114624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.0416665 + value: {x: 0.0003211493, y: 0.0052814814, z: 0.003535416} + inSlope: {x: -0.0029058733, y: 0.0017869159, z: 0.0014114624} + outSlope: {x: 0.0009613581, y: 0.0024517635, z: 0.00050942984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.0833335 + value: {x: 0.00036120618, y: 0.005383639, z: 0.0035566424} + inSlope: {x: 0.0009613581, y: 0.0024517635, z: 0.00050942984} + outSlope: {x: 0.002580598, y: 0.0027417287, z: -0.00021337591} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.125 + value: {x: 0.0004687307, y: 0.0054978775, z: 0.0035477518} + inSlope: {x: 0.002580598, y: 0.0027417287, z: -0.00021337591} + outSlope: {x: 0.0019361931, y: 0.0025757886, z: -0.0007334833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.1666665 + value: {x: 0.0005494051, y: 0.0056052017, z: 0.0035171902} + inSlope: {x: 0.0019361931, y: 0.0025757886, z: -0.0007334833} + outSlope: {x: 0.0013505919, y: 0.0019538922, z: -0.0010508742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.25 + value: {x: 0.00067370466, y: 0.005723121, z: 0.003424841} + inSlope: {x: 0.0016325936, y: 0.000876163, z: -0.0011654993} + outSlope: {x: 0.0017571772, y: -0.00055887434, z: -0.0010774367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.375 + value: {x: 0.00088268815, y: 0.0055118655, z: 0.003330599} + inSlope: {x: 0.0015341024, y: -0.0027026185, z: -0.00039776953} + outSlope: {x: 0.0011864547, y: -0.003241551, z: -0.00021380506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.4166665 + value: {x: 0.00093212357, y: 0.0053768014, z: 0.0033216905} + inSlope: {x: 0.0011864547, y: -0.003241551, z: -0.00021380506} + outSlope: {x: 0.0006813831, y: -0.0034254193, z: 0.000010456958} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.4583335 + value: {x: 0.00096051476, y: 0.0052340743, z: 0.003322126} + inSlope: {x: 0.0006813831, y: -0.0034254193, z: 0.000010456958} + outSlope: {x: 0.000018920375, y: -0.0032544546, z: 0.000010457078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.5 + value: {x: 0.00096130307, y: 0.005098473, z: 0.003322562} + inSlope: {x: 0.000018920375, y: -0.0032544546, z: 0.000010457078} + outSlope: {x: -0.0007691943, y: -0.0014191014, z: 0.00020693857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.5416665 + value: {x: 0.00092925347, y: 0.0050393436, z: 0.0033311844} + inSlope: {x: -0.0007691943, y: -0.0014191014, z: 0.00020693857} + outSlope: {x: -0.0011530854, y: 0.0025217435, z: 0.00031937356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.6666665 + value: {x: 0.00076606555, y: 0.005300207, z: 0.0033828567} + inSlope: {x: -0.0014389015, y: 0.0008594259, z: 0.00050274085} + outSlope: {x: -0.0014962123, y: 0.00026229658, z: 0.0005735735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.8333335 + value: {x: 0.00052613247, y: 0.0052909087, z: 0.0034903835} + inSlope: {x: -0.0013259149, y: -0.00014442333, z: 0.00070289074} + outSlope: {x: -0.0011550672, y: -0.00014442498, z: 0.0007181767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.9166665 + value: {x: 0.0004393734, y: 0.0052985405, z: 0.0035502934} + inSlope: {x: -0.0009271591, y: 0.00032758838, z: 0.00071966444} + outSlope: {x: -0.00059381325, y: 0.0008835916, z: 0.00063045014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.9583335 + value: {x: 0.00041463098, y: 0.005335357, z: 0.0035765623} + inSlope: {x: -0.00059381325, y: 0.0008835916, z: 0.00063045014} + outSlope: {x: -0.00008511397, y: 0.0011902759, z: 0.00033084996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8 + value: {x: 0.0004110846, y: 0.005384952, z: 0.0035903477} + inSlope: {x: -0.00008511397, y: 0.0011902759, z: 0.00033084996} + outSlope: {x: 0.0003183266, y: 0.00044399875, z: 0.00005650477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.041667 + value: {x: 0.00042434828, y: 0.0054034516, z: 0.003592702} + inSlope: {x: 0.0003183266, y: 0.00044399875, z: 0.00005650477} + outSlope: {x: 0.00058997696, y: -0.00017380978, z: -0.0001778153} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.208333 + value: {x: 0.0005356701, y: 0.0053066597, z: 0.0035212277} + inSlope: {x: 0.00061410025, y: -0.0007797837, z: -0.0006397917} + outSlope: {x: 0.00035853262, y: -0.0005659632, z: -0.0007135623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.25 + value: {x: 0.0005506091, y: 0.0052830777, z: 0.0034914957} + inSlope: {x: 0.00035853262, y: -0.0005659632, z: -0.0007135623} + outSlope: {x: -0.000028825481, y: 0.00010000629, z: -0.0007472076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.291667 + value: {x: 0.000549408, y: 0.005287245, z: 0.0034603619} + inSlope: {x: -0.000028825481, y: 0.00010000629, z: -0.0007472076} + outSlope: {x: -0.0005479908, y: 0.00009999428, z: -0.00074073015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.375 + value: {x: 0.0005004312, y: 0.005295578, z: 0.003400576} + inSlope: {x: -0.000627456, y: 0.00010000629, z: -0.0006941361} + outSlope: {x: 0.00020386867, y: 0.00014392266, z: -0.0006074192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.416667 + value: {x: 0.0005089258, y: 0.005301575, z: 0.0033752667} + inSlope: {x: 0.00020386867, y: 0.00014392266, z: -0.0006074192} + outSlope: {x: 0.0006888366, y: 0.00014392595, z: -0.00048054475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.5 + value: {x: 0.0005705437, y: 0.005306263, z: 0.0033421766} + inSlope: {x: 0.00078999746, y: -0.00003141379, z: -0.00031362294} + outSlope: {x: 0.0005192458, y: -0.00003141379, z: -0.00006260585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.875 + value: {x: 0.0006831291, y: 0.0052944827, z: 0.0033248386} + inSlope: {x: 0.00020215118, y: -0.00003141379, z: -0.000037629317} + outSlope: {x: 0.00018372097, y: -0.00012805841, z: -0.000037629317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 10.875 + value: {x: 0.0006364771, y: 0.0052459347, z: 0.0032684826} + inSlope: {x: -0.00002274369, y: -0.0000047064545, z: -0.000016265163} + outSlope: {x: 0.0000038337416, y: -0.0000047063468, z: -0.000006587455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.0006380776, y: 0.005243976, z: 0.0032657385} + inSlope: {x: 0.0000039034785, y: -0.0000047063468, z: -0.000006587455} + outSlope: {x: 0.0000039034785, y: -0.0000047063468, z: -0.000006587455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block01Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.01344496, z: -0.016676709} + inSlope: {x: 0.00057020324, y: 0.000105571744, z: -0.00043979645} + outSlope: {x: 0.00057020324, y: 0.000105571744, z: -0.00043979645} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.00002375847, y: 0.013449359, z: -0.016695034} + inSlope: {x: 0.00057020324, y: 0.000105571744, z: -0.00043979645} + outSlope: {x: 0.0016051617, y: 0.000105543135, z: -0.00043982506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.000090640206, y: 0.013453756, z: -0.01671336} + inSlope: {x: 0.0016051617, y: 0.000105543135, z: -0.00043982506} + outSlope: {x: 0.002481948, y: 0.00010554314, z: -0.0008738137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.0001940547, y: 0.013458154, z: -0.01674977} + inSlope: {x: 0.002481948, y: 0.00010554314, z: -0.0008738137} + outSlope: {x: 0.0032005608, y: 0.00010557174, z: -0.0009629057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.0003274114, y: 0.013462553, z: -0.01678989} + inSlope: {x: 0.0032005608, y: 0.00010557174, z: -0.0009629057} + outSlope: {x: 0.0037610068, y: 0.000105543164, z: -0.0009016802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.00048411998, y: 0.0134669505, z: -0.01682746} + inSlope: {x: 0.0037610068, y: 0.000105543164, z: -0.0009016802} + outSlope: {x: 0.004163273, y: 0.00010557174, z: -0.00050891866} + tangentMode: 0 + weightedMode: 0 + 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.001028451, y: 0.01357934, z: -0.01686219} + inSlope: {x: 0.004493297, y: 0.0015595142, z: 0.00018433561} + outSlope: {x: 0.005280073, y: 0.0021849636, z: 0.0008469488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.001248454, y: 0.01367038, z: -0.0168269} + inSlope: {x: 0.005280073, y: 0.0021849636, z: 0.0008469488} + outSlope: {x: 0.0069994084, y: 0.0026373486, z: 0.0016600804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: 0.0015400959, y: 0.01378027, z: -0.01675773} + inSlope: {x: 0.0069994084, y: 0.0026373486, z: 0.0016600804} + outSlope: {x: 0.008304454, y: 0.0026769722, z: 0.002529372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.002268791, y: 0.014000979, z: -0.01654224} + inSlope: {x: 0.009184225, y: 0.0026200681, z: 0.002642384} + outSlope: {x: 0.00961197, y: 0.002469605, z: 0.0025900828} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: 0.0041391198, y: 0.01437505, z: -0.01599164} + inSlope: {x: 0.009282175, y: 0.00093455403, z: 0.0027746514} + outSlope: {x: 0.010643372, y: -0.000038051585, z: 0.0029193577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.0059969435, y: 0.014234689, z: -0.01545245} + inSlope: {x: 0.010876303, y: -0.0020952118, z: 0.0035903817} + outSlope: {x: 0.011508001, y: -0.0024791895, z: -0.00043198562} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.0064764437, y: 0.01413139, z: -0.01547045} + inSlope: {x: 0.011508001, y: -0.0024791895, z: -0.00043198562} + outSlope: {x: 0.012987611, y: 0.00018671055, z: -0.013564809} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.01043955, y: 0.014510429, z: -0.0193619} + inSlope: {x: 0.01319311, y: 0.00073799945, z: -0.013560936} + outSlope: {x: 0.013498576, y: 0.00044137042, z: -0.013698247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.014587809, y: 0.0141848, z: -0.024125371} + inSlope: {x: 0.009314385, y: -0.0027887768, z: -0.011573788} + outSlope: {x: 0.008635691, y: -0.0034452183, z: -0.011323424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.01718635, y: 0.011425139, z: -0.028432868} + inSlope: {x: 0.0027115007, y: -0.010337027, z: -0.006518599} + outSlope: {x: 0.0023678488, y: -0.01034979, z: -0.0060969773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: 0.017922651, y: 0.00895254, z: -0.029914878} + inSlope: {x: 0.007223754, y: -0.014577599, z: -0.01017355} + outSlope: {x: 0.010829953, y: -0.016410267, z: -0.013433508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: 0.01916232, y: 0.00677486, z: -0.03149515} + inSlope: {x: 0.008195499, y: -0.018758934, z: -0.011256215} + outSlope: {x: 0.0070687155, y: -0.022133388, z: -0.010547026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: 0.01945685, y: 0.0058526336, z: -0.031934608} + inSlope: {x: 0.0070687155, y: -0.022133388, z: -0.010547026} + outSlope: {x: 0.005333768, y: -0.0016926448, z: -0.006443792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: 0.01967909, y: 0.005782107, z: -0.0322031} + inSlope: {x: 0.005333768, y: -0.0016926448, z: -0.006443792} + outSlope: {x: 0.0030436935, y: 0.019030215, z: -0.0008636267} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5 + value: {x: 0.01980591, y: 0.006575034, z: -0.032239083} + inSlope: {x: 0.0030436935, y: 0.019030215, z: -0.0008636267} + outSlope: {x: 0.0024734354, y: 0.014872241, z: -0.00086368393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: 0.02119429, y: 0.01225152, z: -0.03258299} + inSlope: {x: 0.0017986072, y: 0.003210233, z: 0.00019678078} + outSlope: {x: 0.0017776748, y: 0.0024499318, z: 0.00019672468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.5416667 + value: {x: 0.021845318, y: 0.01195547, z: -0.03244364} + inSlope: {x: 0.0017229619, y: -0.0040869634, z: 0.00072126254} + outSlope: {x: 0.0017294376, y: -0.0042590494, z: 0.0009132992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.875 + value: {x: 0.0224405, y: 0.009767869, z: -0.032039028} + inSlope: {x: 0.0018628656, y: -0.010167842, z: 0.0016017691} + outSlope: {x: 0.0018775141, y: -0.010128532, z: 0.0017316022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.02290138, y: 0.00681732, z: -0.03151552} + inSlope: {x: 0.002357549, y: -0.015386511, z: 0.0024775409} + outSlope: {x: 0.0029889792, y: -0.01531849, z: 0.0026459985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.1666665 + value: {x: 0.02302592, y: 0.006179052, z: -0.03140527} + inSlope: {x: 0.0029889792, y: -0.01531849, z: 0.0026459985} + outSlope: {x: 0.0044891397, y: -0.007180426, z: 0.002830789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.2083335 + value: {x: 0.02321297, y: 0.005879865, z: -0.03128732} + inSlope: {x: 0.0044891397, y: -0.007180426, z: 0.002830789} + outSlope: {x: 0.00935455, y: 0.009548572, z: 0.0031511998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.25 + value: {x: 0.02360274, y: 0.006277721, z: -0.03115602} + inSlope: {x: 0.00935455, y: 0.009548572, z: 0.0031511998} + outSlope: {x: 0.008379396, y: 0.005907906, z: 0.003054039} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.5416665 + value: {x: 0.02658432, y: 0.007500588, z: -0.02991438} + inSlope: {x: 0.011864707, y: 0.0028829493, z: 0.0061258166} + outSlope: {x: 0.011901764, y: 0.0043573044, z: 0.007087386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.5833335 + value: {x: 0.02708023, y: 0.0076821437, z: -0.029619068} + inSlope: {x: 0.011901764, y: 0.0043573044, z: 0.007087386} + outSlope: {x: 0.00077751454, y: 0.015827525, z: 0.008175862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.8333335 + value: {x: 0.02748487, y: 0.01128109, z: -0.027354779} + inSlope: {x: 0.002174361, y: 0.012120373, z: 0.009477524} + outSlope: {x: 0.0022843066, y: 0.01180494, z: 0.01030922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.0833335 + value: {x: 0.02814196, y: 0.013613501, z: -0.02471798} + inSlope: {x: 0.003011776, y: 0.006360435, z: 0.011038486} + outSlope: {x: 0.003192971, y: 0.0052941716, z: 0.012076138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.375 + value: {x: 0.02926258, y: 0.01443276, z: -0.02121479} + inSlope: {x: 0.0046068365, y: 0.0007692175, z: 0.013400224} + outSlope: {x: 0.0055562425, y: 0.005144167, z: 0.012914935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.5833335 + value: {x: 0.03059933, y: 0.01590679, z: -0.01909} + inSlope: {x: 0.0065577007, y: 0.007022842, z: 0.003874282} + outSlope: {x: 0.0061317673, y: 0.007059858, z: 0.0014450509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6 + value: {x: 0.03280675, y: 0.017261095, z: -0.01797738} + inSlope: {x: 0.005037136, y: -0.000041198888, z: 0.003681378} + outSlope: {x: 0.005304757, y: -0.000041198888, z: 0.0041232076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.2083335 + value: {x: 0.03386216, y: 0.017083079, z: -0.01803157} + inSlope: {x: 0.00443129, y: -0.0011219988, z: -0.0034269355} + outSlope: {x: 0.003718829, y: -0.0013096669, z: -0.0027331456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.5833335 + value: {x: 0.03328439, y: 0.01605841, z: -0.01973323} + inSlope: {x: -0.002680529, y: -0.005239151, z: -0.0053118775} + outSlope: {x: -0.0032474452, y: -0.005624678, z: -0.005470096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7916665 + value: {x: 0.03223073, y: 0.01458449, z: -0.02083626} + inSlope: {x: -0.006768977, y: -0.006775958, z: -0.0048233024} + outSlope: {x: -0.006830354, y: -0.0007917534, z: -0.0029488339} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.0833335 + value: {x: 0.03002208, y: 0.014141629, z: -0.021075511} + inSlope: {x: -0.008622657, y: -0.004195172, z: -0.0003209471} + outSlope: {x: -0.008495096, y: -0.0053803455, z: -0.0005576727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.2916665 + value: {x: 0.02837135, y: 0.01293756, z: -0.021190934} + inSlope: {x: -0.0073341457, y: -0.0037701845, z: -0.00058691244} + outSlope: {x: -0.0070216404, y: -0.0017373429, z: -0.00058696297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.5833335 + value: {x: 0.026480049, y: 0.01224753, z: -0.02145263} + inSlope: {x: -0.0063709915, y: -0.0035975657, z: -0.0012871071} + outSlope: {x: -0.0065654432, y: -0.0037123344, z: -0.001467367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.041667 + value: {x: 0.02409615, y: 0.009990187, z: -0.022622539} + inSlope: {x: -0.0037547778, y: -0.007252337, z: -0.0031912748} + outSlope: {x: -0.0035777637, y: -0.007385042, z: -0.003123884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.458333 + value: {x: 0.02232372, y: 0.0071724877, z: -0.023675488} + inSlope: {x: -0.004827878, y: -0.008864557, z: -0.0015926412} + outSlope: {x: -0.004677336, y: -0.0094894115, z: -0.0011858278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.583333 + value: {x: 0.02176269, y: 0.0059984517, z: -0.02379125} + inSlope: {x: -0.0042828447, y: -0.010178844, z: -0.0007962348} + outSlope: {x: -0.0037617588, y: -0.010481006, z: -0.0012745761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.625 + value: {x: 0.02160595, y: 0.0055617397, z: -0.023844358} + inSlope: {x: -0.0037617588, y: -0.010481006, z: -0.0012745761} + outSlope: {x: -0.0031134556, y: -0.00728315, z: -0.0016322583} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.666667 + value: {x: 0.02147622, y: 0.005258273, z: -0.02391237} + inSlope: {x: -0.0031134556, y: -0.00728315, z: -0.0016322583} + outSlope: {x: -0.0023381207, y: 0.0014041685, z: -0.0019387732} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.791667 + value: {x: 0.021297468, y: 0.005510082, z: -0.02418452} + inSlope: {x: -0.00051623903, y: 0.001152211, z: -0.0023987778} + outSlope: {x: -0.00051625085, y: 0.0014530213, z: -0.002551957} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 9.083333 + value: {x: 0.021363394, y: 0.005682442, z: -0.0249439} + inSlope: {x: 0.0005554475, y: -0.0012964923, z: -0.0024000343} + outSlope: {x: 0.00055549195, y: -0.0012460804, z: -0.002195761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 9.416667 + value: {x: 0.021362232, y: 0.005282866, z: -0.025398549} + inSlope: {x: -0.000083369574, y: -0.0018711233, z: -0.0008641368} + outSlope: {x: -0.00008331426, y: -0.0016391766, z: -0.0006939803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 9.791667 + value: {x: 0.021323975, y: 0.005243687, z: -0.02557895} + inSlope: {x: -0.00013938798, y: 0.00019457667, z: -0.0003455517} + outSlope: {x: -0.00013938798, y: 0.0001514471, z: -0.00023214163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.02126016, y: 0.005249264, z: -0.02565114} + inSlope: {x: 0.000011157904, y: 0.000010299605, z: -0.000011329565} + outSlope: {x: 0.000011157904, y: 0.000010299605, z: -0.000011329565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block02Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.003709804, y: 0.006525936, z: -0.0011454631} + inSlope: {x: 0.030023903, y: -0.00018314838, z: -0.0055294544} + outSlope: {x: 0.030023903, y: -0.00018314838, z: -0.0055294544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.0049608, y: 0.006518305, z: -0.0013758569} + inSlope: {x: 0.030023903, y: -0.00018314838, z: -0.0055294544} + outSlope: {x: 0.023067733, y: -0.00018314838, z: -0.0046282304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.0059219557, y: 0.0065106736, z: -0.0015686998} + inSlope: {x: 0.023067733, y: -0.00018314838, z: -0.0046282304} + outSlope: {x: 0.018018994, y: -0.00033905986, z: -0.006989043} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.006672747, y: 0.0064965463, z: -0.00185991} + inSlope: {x: 0.018018994, y: -0.00033905986, z: -0.006989043} + outSlope: {x: 0.014877575, y: -0.0003374433, z: -0.012938996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.007292646, y: 0.006482486, z: -0.0023990348} + inSlope: {x: 0.014877575, y: -0.0003374433, z: -0.012938996} + outSlope: {x: 0.013643564, y: -0.00017652515, z: -0.011531401} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.007861128, y: 0.0064751306, z: -0.00287951} + inSlope: {x: 0.013643564, y: -0.00017652515, z: -0.011531401} + outSlope: {x: 0.014316957, y: -0.0001765394, z: -0.009151539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.008457667, y: 0.006467775, z: -0.003260824} + inSlope: {x: 0.014316957, y: -0.0001765394, z: -0.009151539} + outSlope: {x: 0.016897762, y: 0.0001427937, z: -0.015285268} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: 0.009161741, y: 0.0064737247, z: -0.00389771} + inSlope: {x: 0.016897762, y: 0.0001427937, z: -0.015285268} + outSlope: {x: 0.021385893, y: 0.00046123957, z: -0.007977208} + tangentMode: 0 + weightedMode: 0 + 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.010052821, y: 0.006492943, z: -0.0042300937} + inSlope: {x: 0.021385893, y: 0.00046123957, z: -0.007977208} + outSlope: {x: 0.047141284, y: 0.0008589079, z: -0.024541944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.01201704, y: 0.006528731, z: -0.0052526747} + inSlope: {x: 0.047141284, y: 0.0008589079, z: -0.024541944} + outSlope: {x: 0.026508471, y: 0.0013357833, z: -0.010839517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: 0.013121559, y: 0.0065843887, z: -0.005704321} + inSlope: {x: 0.026508471, y: 0.0013357833, z: -0.010839517} + outSlope: {x: 0.039285116, y: 0.0018870726, z: -0.018135486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.01475844, y: 0.0066630165, z: -0.006459967} + inSlope: {x: 0.039285116, y: 0.0018870726, z: -0.018135486} + outSlope: {x: 0.04704624, y: 0.0019430785, z: -0.023244241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.016718699, y: 0.0067439782, z: -0.0074284766} + inSlope: {x: 0.04704624, y: 0.0019430785, z: -0.023244241} + outSlope: {x: 0.031401113, y: 0.0016573755, z: -0.016245196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.01802708, y: 0.0068130353, z: -0.00810536} + inSlope: {x: 0.031401113, y: 0.0016573755, z: -0.016245196} + outSlope: {x: 0.05680781, y: 0.0014144338, z: -0.02867148} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.02039407, y: 0.0068719704, z: -0.009300004} + inSlope: {x: 0.05680781, y: 0.0014144338, z: -0.02867148} + outSlope: {x: 0.026337592, y: 0.0012142175, z: -0.011227622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.02149147, y: 0.0069225626, z: -0.009767822} + inSlope: {x: 0.026337592, y: 0.0012142175, z: -0.011227622} + outSlope: {x: 0.05655667, y: 0.001056661, z: -0.029959844} + tangentMode: 0 + weightedMode: 0 + 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.023847999, y: 0.00696659, z: -0.011016149} + inSlope: {x: 0.05655667, y: 0.001056661, z: -0.029959844} + outSlope: {x: 0.03427131, y: 0.000941821, z: -0.01752916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.75 + value: {x: 0.026780099, y: 0.0070420695, z: -0.012618689} + inSlope: {x: 0.03609911, y: 0.000869679, z: -0.020931806} + outSlope: {x: 0.051481392, y: 0.00084026775, z: -0.026806314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.028925158, y: 0.0070770807, z: -0.013735619} + inSlope: {x: 0.051481392, y: 0.00084026775, z: -0.026806314} + outSlope: {x: 0.028435962, y: 0.0008535727, z: -0.01636395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: 0.030109989, y: 0.007112646, z: -0.01441745} + inSlope: {x: 0.028435962, y: 0.0008535727, z: -0.01636395} + outSlope: {x: 0.05492761, y: 0.00090957596, z: -0.028753666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.03239864, y: 0.007150545, z: -0.01561552} + inSlope: {x: 0.05492761, y: 0.00090957596, z: -0.028753666} + outSlope: {x: 0.02673167, y: 0.0010082383, z: -0.013566936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.033512462, y: 0.007192555, z: -0.01618081} + inSlope: {x: 0.02673167, y: 0.0010082383, z: -0.013566936} + outSlope: {x: 0.04618851, y: 0.0011496602, z: -0.024834732} + tangentMode: 0 + weightedMode: 0 + 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.0367436, y: 0.007293495, z: -0.01796783} + inSlope: {x: 0.031358857, y: 0.0012728971, z: -0.01805376} + outSlope: {x: 0.03273986, y: 0.0012414563, z: -0.01855298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.039929397, y: 0.007395162, z: -0.01966717} + inSlope: {x: 0.043719266, y: 0.0011985517, z: -0.022231163} + outSlope: {x: 0.02547869, y: 0.0011548387, z: -0.01360967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.04099101, y: 0.00744328, z: -0.020234238} + inSlope: {x: 0.02547869, y: 0.0011548387, z: -0.01360967} + outSlope: {x: 0.04430447, y: 0.0011102495, z: -0.024355968} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.043960128, y: 0.0075339056, z: -0.02184243} + inSlope: {x: 0.02695433, y: 0.0010647563, z: -0.014240599} + outSlope: {x: 0.040972173, y: 0.0010184393, z: -0.020103397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.049953416, y: 0.0076916977, z: -0.024911629} + inSlope: {x: 0.03744018, y: 0.00087420066, z: -0.020277862} + outSlope: {x: 0.025226235, y: 0.00082436163, z: -0.01288995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5416666 + value: {x: 0.054992598, y: 0.007816277, z: -0.02747861} + inSlope: {x: 0.032773163, y: 0.0006696946, z: -0.015108447} + outSlope: {x: 0.029556941, y: 0.0006164348, z: -0.01580306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.063631356, y: 0.007954008, z: -0.031956416} + inSlope: {x: 0.024845261, y: 0.0001584722, z: -0.013837866} + outSlope: {x: 0.019266032, y: 0.0001584722, z: -0.00955039} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3333333 + value: {x: 0.07330812, y: 0.007883251, z: -0.03668986} + inSlope: {x: 0.01982147, y: -0.0004915685, z: -0.008066914} + outSlope: {x: 0.018249515, y: -0.0005613602, z: -0.0088711} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3 + value: {x: 0.08177805, y: 0.0068243877, z: -0.039445248} + inSlope: {x: 0.007161928, y: -0.0039772294, z: 0.00032998974} + outSlope: {x: 0.009878521, y: -0.0020226391, z: 0.00032998974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.0416667 + value: {x: 0.08218966, y: 0.006740111, z: -0.0394315} + inSlope: {x: 0.009878521, y: -0.0020226391, z: 0.00032998974} + outSlope: {x: -0.00023529142, y: 0.0034254156, z: 0.00032999166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.2083333 + value: {x: 0.08215042, y: 0.007483077, z: -0.039376497} + inSlope: {x: -0.0002355203, y: 0.0036017124, z: 0.00032999166} + outSlope: {x: -0.00023529008, y: 0.0021580798, z: 0.00032998974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.4166667 + value: {x: 0.08210138, y: 0.0073524946, z: -0.039313108} + inSlope: {x: -0.00023529008, y: -0.0033596212, z: -0.00035505227} + outSlope: {x: -0.0002355203, y: -0.0043541216, z: -0.00035505428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.5416667 + value: {x: 0.08207195, y: 0.006808803, z: -0.03935749} + inSlope: {x: -0.00023551895, y: -0.0039642686, z: -0.00035505227} + outSlope: {x: -0.00023529142, y: 0.0010584537, z: -0.00035505428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.6666667 + value: {x: 0.08204253, y: 0.00696008, z: -0.039458062} + inSlope: {x: -0.00023529008, y: -0.000061068415, z: -0.0017036214} + outSlope: {x: -0.0002355203, y: -0.00006105446, z: -0.0017036312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.2083335 + value: {x: 0.08208239, y: 0.0067431717, z: -0.03946186} + inSlope: {x: 0.00021102745, y: -0.0011033451, z: 0.0024830056} + outSlope: {x: 0.00021080096, y: 0.0008207877, z: 0.0006495119} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.416667 + value: {x: 0.08212633, y: 0.006916592, z: -0.03937822} + inSlope: {x: 0.00021079856, y: -0.000008926323, z: 0.000029411092} + outSlope: {x: 0.00021102985, y: -0.000008926426, z: 0.000029411427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.9583335 + value: {x: 0.08216956, y: 0.006698961, z: -0.03936229} + inSlope: {x: -0.0000020599207, y: -0.0002095254, z: 0.000029411092} + outSlope: {x: -0.0000020599443, y: -0.00020951351, z: 0.000029411427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.416667 + value: {x: 0.08216643, y: 0.0066842493, z: -0.0393194} + inSlope: {x: -0.0000020599207, y: -0.000051455107, z: 0.000029411092} + outSlope: {x: -0.000002288827, y: -0.000051469997, z: 0.000029411427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.5 + value: {x: 0.082161956, y: 0.0066749845, z: -0.0393039} + inSlope: {x: -0.000002059968, y: 0.000009198329, z: -0.0000019455254} + outSlope: {x: -0.0000020599207, y: 0.000009198118, z: -0.0000020027007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 10.541667 + value: {x: 0.08215758, y: 0.006740201, z: -0.03930793} + inSlope: {x: -0.0000020599207, y: 0.000025963585, z: -0.0000020027007} + outSlope: {x: -0.000002288801, y: 0.00002597789, z: -0.0000020027007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.08215597, y: 0.0067511443, z: -0.03930941} + inSlope: {x: -0.0000020599207, y: 0.00001134387, z: -0.0000019454808} + outSlope: {x: -0.0000020599207, y: 0.00001134387, z: -0.0000019454808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block03Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.017380951, z: 0.01119341} + inSlope: {x: 0.000059408852, y: -0.00008537292, z: -0.00026759147} + outSlope: {x: 0.000059408852, y: -0.00008537292, z: -0.00026759147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.000002475369, y: 0.017377393, z: 0.011182261} + inSlope: {x: 0.000059408852, y: -0.00008537292, z: -0.00026759147} + outSlope: {x: 0.0009126348, y: -0.00008534431, z: -0.0009763241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.00004050182, y: 0.017373838, z: 0.0111415805} + inSlope: {x: 0.0009126348, y: -0.00008534431, z: -0.0009763241} + outSlope: {x: 0.002867474, y: -0.00008537293, z: -0.0019444943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.00015997989, y: 0.01737028, z: 0.011060559} + inSlope: {x: 0.002867474, y: -0.00008537293, z: -0.0019444943} + outSlope: {x: 0.005616006, y: 0.0015103052, z: -0.0031725594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.00039398018, y: 0.01743321, z: 0.010928369} + inSlope: {x: 0.005616006, y: 0.0015103052, z: -0.0031725594} + outSlope: {x: 0.0062785763, y: 0.00200738, z: -0.00466055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.001767717, y: 0.0175911, z: 0.009932619} + inSlope: {x: 0.0070348815, y: -0.0006048204, z: -0.004365164} + outSlope: {x: 0.0073809866, y: -0.0013987258, z: -0.0041434057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.00293732, y: 0.01713582, z: 0.009278873} + inSlope: {x: 0.0064518685, y: -0.0041210153, z: -0.0037462073} + outSlope: {x: 0.0061535584, y: -0.0051415204, z: -0.0037031542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.875 + value: {x: 0.005028858, y: 0.014554271, z: 0.007973008} + inSlope: {x: 0.0071725952, y: -0.01115086, z: -0.0040390757} + outSlope: {x: 0.0070532616, y: -0.012515052, z: -0.0038611202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0833334 + value: {x: 0.0062854984, y: 0.01190605, z: 0.0072938167} + inSlope: {x: 0.0063430616, y: -0.012514033, z: -0.002826485} + outSlope: {x: 0.008295715, y: -0.012280581, z: -0.011129018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.006631153, y: 0.01139436, z: 0.006830108} + inSlope: {x: 0.008295715, y: -0.012280581, z: -0.011129018} + outSlope: {x: 0.010958458, y: -0.012563307, z: -0.017518274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666666 + value: {x: 0.007087755, y: 0.010870889, z: 0.0061001806} + inSlope: {x: 0.010958458, y: -0.012563307, z: -0.017518274} + outSlope: {x: 0.010451525, y: -0.013361953, z: -0.013219388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2916666 + value: {x: 0.008264726, y: 0.008945075, z: 0.004501075} + inSlope: {x: 0.008685645, y: -0.017809084, z: -0.01179123} + outSlope: {x: 0.008333585, y: -0.020723922, z: -0.009263359} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.008963623, y: 0.007103406, z: 0.00372365} + inSlope: {x: 0.00843994, y: -0.023476116, z: -0.009394836} + outSlope: {x: 0.0070890062, y: -0.019122865, z: -0.007165152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4166666 + value: {x: 0.009258998, y: 0.006306621, z: 0.0034251022} + inSlope: {x: 0.0070890062, y: -0.019122865, z: -0.007165152} + outSlope: {x: 0.003336118, y: -0.0035741546, z: -0.004193107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.009398003, y: 0.006157697, z: 0.0032503891} + inSlope: {x: 0.003336118, y: -0.0035741546, z: -0.004193107} + outSlope: {x: -0.0017911736, y: 0.016387954, z: -0.0019074029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5 + value: {x: 0.009323371, y: 0.006840528, z: 0.003170914} + inSlope: {x: -0.0017911736, y: 0.016387954, z: -0.0019074029} + outSlope: {x: -0.002136199, y: 0.00999691, z: -0.00030814676} + tangentMode: 0 + weightedMode: 0 + 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.009241326, y: 0.008018656, z: 0.0032333839} + inSlope: {x: 0.0014676917, y: 0.004584722, z: 0.00037137544} + outSlope: {x: 0.0033010563, y: 0.0025512553, z: -0.0008629973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.75 + value: {x: 0.009610274, y: 0.008078436, z: 0.003103385} + inSlope: {x: 0.0055536944, y: -0.0011165296, z: -0.0022569771} + outSlope: {x: 0.007437136, y: -0.003993348, z: -0.0032514983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9583334 + value: {x: 0.011306619, y: 0.0066507705, z: 0.0023469399} + inSlope: {x: 0.008145803, y: -0.009471284, z: -0.0032055697} + outSlope: {x: 0.0070768897, y: -0.008706731, z: -0.0021881124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2 + value: {x: 0.01160149, y: 0.0062879906, z: 0.0022557687} + inSlope: {x: 0.0070768897, y: -0.008706731, z: -0.0021881124} + outSlope: {x: 0.004404479, y: -0.0012792468, z: -0.0010371045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0416667 + value: {x: 0.01178501, y: 0.0062346887, z: 0.0022125558} + inSlope: {x: 0.004404479, y: -0.0012792468, z: -0.0010371045} + outSlope: {x: 0.0014219909, y: 0.004788083, z: -0.00077275094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0833333 + value: {x: 0.01184426, y: 0.0064341915, z: 0.0021803582} + inSlope: {x: 0.0014219909, y: 0.004788083, z: -0.00077275094} + outSlope: {x: 0.0013564943, y: -0.000050468345, z: -0.0006445014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.375 + value: {x: 0.012370979, y: 0.0061411224, z: 0.002039094} + inSlope: {x: 0.0022584014, y: -0.00012531257, z: -0.000464572} + outSlope: {x: 0.0024108076, y: 0.00049366854, z: -0.0005328502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5416667 + value: {x: 0.0128111895, y: 0.00604745, z: 0.0019300508} + inSlope: {x: 0.0028723185, y: -0.0017260518, z: -0.0007173572} + outSlope: {x: 0.0030273744, y: -0.00059160456, z: -0.0006644608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.4166667 + value: {x: 0.016220229, y: 0.0049177874, z: 0.001698406} + inSlope: {x: 0.0044104587, y: -0.004476348, z: 0.000019022189} + outSlope: {x: 0.004746255, y: -0.004965782, z: 0.000019022298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.5833333 + value: {x: 0.017007379, y: 0.0040996373, z: 0.0017035604} + inSlope: {x: 0.0029757612, y: -0.0043288586, z: 0.00006663348} + outSlope: {x: 0.00016010254, y: 0.002878298, z: 0.000066633096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.625 + value: {x: 0.01701405, y: 0.0042195665, z: 0.0017063367} + inSlope: {x: 0.00016010254, y: 0.002878298, z: 0.000066633096} + outSlope: {x: 0.00016007393, y: 0.0066988436, z: 0.00007839903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.6666667 + value: {x: 0.01702072, y: 0.0044986857, z: 0.0017096034} + inSlope: {x: 0.00016007393, y: 0.0066988436, z: 0.00007839903} + outSlope: {x: -0.001194968, y: 0.0043707727, z: 0.00007839948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4 + value: {x: 0.016620625, y: 0.004977891, z: 0.0017345183} + inSlope: {x: -0.0006502806, y: -0.0016258303, z: 0.000053000345} + outSlope: {x: -0.00065028435, y: -0.0028323948, z: 0.00005300065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.125 + value: {x: 0.016607104, y: 0.004544569, z: 0.0017354208} + inSlope: {x: 0.00016287864, y: -0.0034065759, z: -0.000015671312} + outSlope: {x: 0.00016287864, y: -0.00047447387, z: -0.000015671312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.25 + value: {x: 0.01672986, y: 0.004582603, z: 0.0017334619} + inSlope: {x: 0.0016624896, y: 0.00053727353, z: -0.000015671312} + outSlope: {x: 0.0016295877, y: -0.0013917213, z: -0.000015671312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.3333335 + value: {x: 0.01685608, y: 0.004384184, z: 0.0017321559} + inSlope: {x: 0.0013996875, y: -0.0033703165, z: -0.000015671132} + outSlope: {x: 0.0011126274, y: -0.0035532322, z: -0.000015671312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.4166665 + value: {x: 0.016926084, y: 0.004158804, z: 0.0017296049} + inSlope: {x: 0.00056748604, y: -0.0018558955, z: -0.00004555481} + outSlope: {x: 0.0005674796, y: 0.000542503, z: -0.000045554287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.9583335 + value: {x: 0.01671921, y: 0.004240066, z: 0.0017094166} + inSlope: {x: 0.00009132315, y: 0.000033602457, z: -0.000028849618} + outSlope: {x: 0.000091352806, y: 0.00009084497, z: -0.000028846373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.9166665 + value: {x: 0.016718775, y: 0.004244245, z: 0.0016959512} + inSlope: {x: -0.00014508302, y: -0.00026916605, z: 0.0000045812303} + outSlope: {x: -0.00014508136, y: -0.00024089629, z: 0.000012942453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.791667 + value: {x: 0.016677307, y: 0.0042645824, z: 0.0017325445} + inSlope: {x: 0.000005378682, y: 0.00000007152503, z: 0.000023692664} + outSlope: {x: 0.000005407292, y: 0.00000007152503, z: 0.000023692664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 10.875 + value: {x: 0.016688535, y: 0.0042647305, z: 0.0017702451} + inSlope: {x: 0.0000054074158, y: 0.000000071526664, z: 0.000006691319} + outSlope: {x: 0.000005378682, y: 0.00000007152503, z: 0.000006691166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.01669078, y: 0.00426476, z: 0.0017726022} + inSlope: {x: 0.000005378682, y: 0.00000007152503, z: 0.0000015234831} + outSlope: {x: 0.000005378682, y: 0.00000007152503, z: 0.0000015234831} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block04Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0034579989, y: 0, z: -0.00021743297} + inSlope: {x: 0.028003922, y: -0, z: -0.0056298063} + outSlope: {x: 0.028003922, y: -0, z: -0.0056298063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.0046248287, y: 0, z: -0.00045200824} + inSlope: {x: 0.028003922, y: -0, z: -0.0056298063} + outSlope: {x: 0.023221156, y: -0, z: -0.006787816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.005592377, y: 0, z: -0.0007348339} + inSlope: {x: 0.023221156, y: -0, z: -0.006787816} + outSlope: {x: 0.020374963, y: -0, z: -0.007901045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.006441334, y: 0, z: -0.0010640441} + inSlope: {x: 0.020374963, y: -0, z: -0.007901045} + outSlope: {x: 0.019465482, y: -0, z: -0.00896947} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.0072523956, y: 0, z: -0.0014377721} + inSlope: {x: 0.019465482, y: -0, z: -0.00896947} + outSlope: {x: 0.020492654, y: -0, z: -0.009993098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.008106256, y: 0, z: -0.001854151} + inSlope: {x: 0.020492654, y: -0, z: -0.009993098} + outSlope: {x: 0.020782582, y: -0, z: -0.010971978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: 0.009700729, y: 0, z: -0.002807402} + inSlope: {x: 0.017484773, y: -0, z: -0.0119060455} + outSlope: {x: 0.01593865, y: -0, z: -0.012795304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: 0.01181962, y: 0, z: -0.0045105102} + inSlope: {x: 0.01860312, y: -0, z: -0.0144395} + outSlope: {x: 0.02281367, y: -0, z: -0.015194456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.01397614, y: 0, z: -0.005813277} + inSlope: {x: 0.028942801, y: -0, z: -0.016071929} + outSlope: {x: 0.038706932, y: -0, z: -0.01920535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.015588929, y: 0, z: -0.0066135} + inSlope: {x: 0.038706932, y: -0, z: -0.01920535} + outSlope: {x: 0.047009796, y: -0, z: -0.022094056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.019613799, y: 0, z: -0.008522741} + inSlope: {x: 0.049587112, y: -0, z: -0.02372774} + outSlope: {x: 0.052236933, y: -0, z: -0.028275218} + tangentMode: 0 + weightedMode: 0 + 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.021790339, y: 0, z: -0.009700876} + inSlope: {x: 0.052236933, y: -0, z: -0.028275218} + outSlope: {x: 0.026686102, y: -0, z: -0.025353964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.028169118, y: 0, z: -0.015508049} + inSlope: {x: 0.032330345, y: -0, z: -0.0242467} + outSlope: {x: 0.041135598, y: -0, z: -0.026209712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0416666 + value: {x: 0.03439398, y: 0, z: -0.01888377} + inSlope: {x: 0.05591909, y: -0, z: -0.026689736} + outSlope: {x: 0.05069128, y: -0, z: -0.021343648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.03803359, y: 0, z: -0.02027641} + inSlope: {x: 0.036659297, y: -0, z: -0.012079679} + outSlope: {x: 0.017250955, y: -0, z: -0.0013372435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.040204227, y: 0, z: -0.02056484} + inSlope: {x: 0.023907876, y: -0, z: -0.006527544} + outSlope: {x: 0.049774636, y: -0, z: -0.023058034} + tangentMode: 0 + weightedMode: 0 + 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.04475194, y: 0, z: -0.022895979} + inSlope: {x: 0.059370346, y: -0, z: -0.032889284} + outSlope: {x: 0.052257434, y: -0, z: -0.024608884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.375 + value: {x: 0.04692933, y: 0, z: -0.023921348} + inSlope: {x: 0.052257434, y: -0, z: -0.024608884} + outSlope: {x: 0.031722024, y: -0, z: -0.0059654675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5833334 + value: {x: 0.051627897, y: 0, z: -0.024748249} + inSlope: {x: 0.025175694, y: -0, z: -0.0072498755} + outSlope: {x: 0.02535006, y: -0, z: -0.009066991} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0833333 + value: {x: 0.06636982, y: 0, z: -0.031235658} + inSlope: {x: 0.033251848, y: -0, z: -0.014921092} + outSlope: {x: 0.030959984, y: -0, z: -0.014296046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7083333 + value: {x: 0.07603507, y: 0, z: -0.036477838} + inSlope: {x: 0.011309781, y: -0, z: -0.0054043215} + outSlope: {x: 0.011036317, y: -0, z: -0.0052257627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.7083335 + value: {x: 0.08315454, y: 0, z: -0.039586224} + inSlope: {x: -0.0003467553, y: -0, z: -0.001164148} + outSlope: {x: -0.0003465284, y: -0, z: -0.0011641547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.75 + value: {x: 0.083012566, y: 0, z: -0.03984131} + inSlope: {x: -0.0000070953643, y: -0, z: -0.00000509264} + outSlope: {x: -0.0000070952824, y: -0, z: -0.0000051498023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.791667 + value: {x: 0.0829979, y: 0, z: -0.039851762} + inSlope: {x: -0.0000070952824, y: -0, z: -0.000005092582} + outSlope: {x: -0.0000073242463, y: -0, z: -0.000005149861} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 9.875 + value: {x: 0.08298293, y: 0, z: -0.03986243} + inSlope: {x: -0.000007095445, y: -0, z: -0.0000050926988} + outSlope: {x: -0.0000073241627, y: -0, z: -0.0000051498023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.08297274, y: 0, z: -0.03986969} + inSlope: {x: -0.0000070952824, y: -0, z: -0.000005092582} + outSlope: {x: -0.0000070952824, y: -0, z: -0.000005092582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/sdwPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0003901673, y: 0, z: 0.021715399} + inSlope: {x: 0.0020180081, y: -0, z: -0.002226219} + outSlope: {x: 0.0020180081, y: -0, z: -0.002226219} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.00047425096, y: 0, z: 0.021622641} + inSlope: {x: 0.0020180081, y: -0, z: -0.002226219} + outSlope: {x: 0.0025310933, y: -0, z: -0.0027890396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.0005797132, y: 0, z: 0.02150643} + inSlope: {x: 0.0025310933, y: -0, z: -0.0027890396} + outSlope: {x: 0.0030073072, y: -0, z: -0.0033122636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.00070501765, y: 0, z: 0.02136842} + inSlope: {x: 0.0030073072, y: -0, z: -0.0033122636} + outSlope: {x: 0.0034466526, y: -0, z: -0.0037951462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.0010090079, y: 0, z: 0.02103368} + inSlope: {x: 0.0038491157, y: -0, z: -0.0042386064} + outSlope: {x: 0.004214735, y: -0, z: -0.004642581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.0017875009, y: 0, z: 0.020175569} + inSlope: {x: 0.0050903293, y: -0, z: -0.005615045} + outSlope: {x: 0.005308418, y: -0, z: -0.005860063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.125 + value: {x: 0.005670685, y: 0, z: 0.01582235} + inSlope: {x: 0.0033752664, y: -0, z: -0.004003462} + outSlope: {x: 0.0031824189, y: -0, z: -0.003807596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7916666 + value: {x: 0.008531448, y: 0, z: 0.013699359} + inSlope: {x: 0.0059224516, y: -0, z: -0.0031896143} + outSlope: {x: 0.005754708, y: -0, z: -0.0032920584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.25 + value: {x: 0.010770921, y: 0, z: 0.01219497} + inSlope: {x: 0.0040332046, y: -0, z: -0.0009237653} + outSlope: {x: 0.0038668653, y: -0, z: -0.00083518826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.1666667 + value: {x: 0.01396014, y: 0, z: 0.011964165} + inSlope: {x: 0.0032366402, y: -0, z: -0.000026264139} + outSlope: {x: 0.0031675366, y: -0, z: -0.00002626429} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4 + value: {x: 0.01657952, y: 0, z: 0.011911769} + inSlope: {x: 0.0040259664, y: -0, z: -0.000098647884} + outSlope: {x: 0.0030429955, y: -0, z: -0.000098648445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.5 + value: {x: 0.016229155, y: 0, z: 0.011868955} + inSlope: {x: -0.0005324384, y: -0, z: -0.00006895091} + outSlope: {x: -0.0005324384, y: -0, z: -0.0000689223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.2083335 + value: {x: 0.016278127, y: 0, z: 0.011828074} + inSlope: {x: 0.0000036049025, y: -0, z: -0.00004986782} + outSlope: {x: 0.000003633513, y: -0, z: -0.00004983921} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.25 + value: {x: 0.016285522, y: 0, z: 0.011837347} + inSlope: {x: 0.000003633513, y: -0, z: 0.0000068664813} + outSlope: {x: 0.0000036334714, y: -0, z: 0.0000068664026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 9.291667 + value: {x: 0.016292917, y: 0, z: 0.011860865} + inSlope: {x: 0.0000036334714, y: -0, z: 0.000029697192} + outSlope: {x: 0.0000036048614, y: -0, z: 0.000029697192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.016300159, y: 0, z: 0.011899349} + inSlope: {x: 0.0000036334714, y: -0, z: 0.000005493122} + outSlope: {x: 0.0000036334714, y: -0, z: 0.000005493122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/sdwPg2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0015466439, y: 0.0001570979, z: 0.015653959} + inSlope: {x: -0.00020904063, y: -0, z: 0.00025248528} + outSlope: {x: -0.00020904063, y: -0, z: 0.00025248528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: -0.002719058, y: 0.0001570979, z: 0.01667304} + inSlope: {x: -0.00058543734, y: -0, z: 0.000109090906} + outSlope: {x: -0.00057381444, y: -0, z: -0.0017680852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2083333 + value: {x: -0.002905274, y: 0.0001570979, z: 0.0137222} + inSlope: {x: -0.0005160232, y: -0, z: -0.012457971} + outSlope: {x: -0.0004920235, y: -0, z: -0.011997105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.625 + value: {x: -0.0030330755, y: 0.0001570979, z: 0.009994259} + inSlope: {x: 0.000023982479, y: -0, z: -0.008347934} + outSlope: {x: 0.000023975324, y: -0, z: -0.008352025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.3333333 + value: {x: -0.002812903, y: 0.0001570979, z: 0.0051417863} + inSlope: {x: 0.0006163024, y: -0, z: -0.0040702783} + outSlope: {x: 0.00065025204, y: -0, z: -0.003530896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.5833333 + value: {x: -0.002629795, y: 0.0001570979, z: 0.004586445} + inSlope: {x: 0.00081299857, y: -0, z: -0.0013424256} + outSlope: {x: 0.00084412884, y: -0, z: -0.0012717509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.3333335 + value: {x: -0.0018215289, y: 0.0001570979, z: 0.0040048063} + inSlope: {x: 0.0012178709, y: -0, z: -0.00038474743} + outSlope: {x: 0.0011668119, y: -0, z: -0.0003666129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.625 + value: {x: -0.0011219204, y: 0.0001570979, z: 0.0038293563} + inSlope: {x: 0.000033061035, y: -0, z: 0.000017030305} + outSlope: {x: 0.000033059245, y: -0, z: 0.000017037457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.375 + value: {x: -0.0012227059, y: 0.0001570979, z: 0.0039187167} + inSlope: {x: -0.00028080153, y: -0, z: 0.00017761296} + outSlope: {x: -0.00062102673, y: -0, z: 0.0002565775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.5 + value: {x: -0.001348491, y: 0.0001570979, z: 0.0039689275} + inSlope: {x: -0.0013838211, y: -0, z: 0.0005440542} + outSlope: {x: -0.0017304319, y: -0, z: 0.0006754901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 6.7083335 + value: {x: -0.001834127, y: 0.0001570979, z: 0.0041575874} + inSlope: {x: -0.0028853053, y: -0, z: 0.0011192235} + outSlope: {x: -0.0031161702, y: -0, z: 0.0012097023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.8333335 + value: {x: -0.0055535417, y: 0.0001570979, z: 0.0057227123} + inSlope: {x: -0.0009866449, y: -0, z: 0.0006848378} + outSlope: {x: -0.00059206237, y: -0, z: 0.0005540392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.5 + value: {x: -0.005391669, y: 0.0001570979, z: 0.005749688} + inSlope: {x: -0.00092095626, y: -0, z: 0.00042749077} + outSlope: {x: -0.0011631257, y: -0, z: 0.0005030355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 9.583334 + value: {x: -0.0058896467, y: 0.0001570979, z: 0.0060454947} + inSlope: {x: -0.00000038623514, y: -0, z: 0.00007301274} + outSlope: {x: -0.00000038624398, y: -0, z: 0.00007301442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: -0.00589031, y: 0.0001570979, z: 0.0059685055} + inSlope: {x: -0.00000038623514, y: -0, z: -0.000021314458} + outSlope: {x: -0.00000038623514, y: -0, z: -0.000021314458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/sdwPg3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00002899805, y: 0, z: -0.018001918} + inSlope: {x: 0.0008510517, y: -0, z: 0.0007000351} + outSlope: {x: 0.0008510517, y: -0, z: 0.0007000351} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.00006445854, y: 0, z: -0.01797275} + inSlope: {x: 0.0008510517, y: -0, z: 0.0007000351} + outSlope: {x: 0.0011388038, y: -0, z: 0.00096456526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.000111908696, y: 0, z: -0.01793256} + inSlope: {x: 0.0011388038, y: -0, z: 0.00096456526} + outSlope: {x: 0.0014167802, y: -0, z: 0.0012088966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.0001709412, y: 0, z: -0.017882189} + inSlope: {x: 0.0014167802, y: -0, z: 0.0012088966} + outSlope: {x: 0.0016849751, y: -0, z: 0.0014325712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.0002411485, y: 0, z: -0.017822498} + inSlope: {x: 0.0016849751, y: -0, z: 0.0014325712} + outSlope: {x: 0.0019433977, y: -0, z: 0.0016358189} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.00032212338, y: 0, z: -0.01775434} + inSlope: {x: 0.0019433977, y: -0, z: 0.0016358189} + outSlope: {x: 0.002192035, y: -0, z: 0.0018186949} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.00041345818, y: 0, z: -0.01767856} + inSlope: {x: 0.002192035, y: -0, z: 0.0018186949} + outSlope: {x: 0.002430901, y: -0, z: 0.0019809727} + tangentMode: 0 + weightedMode: 0 + 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.0006255784, y: 0, z: -0.01750757} + inSlope: {x: 0.002659983, y: -0, z: 0.0021228208} + outSlope: {x: 0.002879293, y: -0, z: 0.0022440152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.001156213, y: 0, z: -0.017111748} + inSlope: {x: 0.0034785361, y: -0, z: 0.0024851996} + outSlope: {x: 0.0036587494, y: -0, z: 0.0025247943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.25 + value: {x: 0.004654239, y: 0, z: -0.015807826} + inSlope: {x: 0.005226078, y: -0, z: -0.00027471568} + outSlope: {x: 0.005230248, y: -0, z: -0.00027471568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7916666 + value: {x: 0.007935131, y: 0, z: -0.01719005} + inSlope: {x: 0.007103297, y: -0, z: -0.0045171017} + outSlope: {x: 0.0072623068, y: -0, z: -0.004708777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4166667 + value: {x: 0.01307729, y: 0, z: -0.020698061} + inSlope: {x: 0.00906911, y: -0, z: -0.0065438333} + outSlope: {x: 0.009082123, y: -0, z: -0.006189103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 3.2083333 + value: {x: 0.01958599, y: 0, z: -0.02228142} + inSlope: {x: 0.0077858744, y: -0, z: -0.000648253} + outSlope: {x: 0.0077671185, y: -0, z: -0.0006482493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 4.375 + value: {x: 0.0280637, y: 0, z: -0.022247458} + inSlope: {x: 0.00641501, y: -0, z: 0.0011929367} + outSlope: {x: 0.0062930724, y: -0, z: 0.0014156395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.3333335 + value: {x: 0.03392033, y: 0, z: -0.018867102} + inSlope: {x: 0.0069474834, y: -0, z: 0.0055395844} + outSlope: {x: 0.0071294676, y: -0, z: 0.0067359037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 5.875 + value: {x: 0.0373091, y: 0, z: -0.014508969} + inSlope: {x: 0.0039115483, y: -0, z: 0.0042945836} + outSlope: {x: 0.0032296493, y: -0, z: 0.0037749624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 7.0833335 + value: {x: 0.038807053, y: 0, z: -0.01254308} + inSlope: {x: -0.00020290453, y: -0, z: -0.00013052036} + outSlope: {x: -0.00020290453, y: -0, z: -0.00013054897} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 8.333333 + value: {x: 0.03637229, y: 0, z: -0.01450885} + inSlope: {x: -0.0028841267, y: -0, z: -0.002397402} + outSlope: {x: -0.0029507792, y: -0, z: -0.0024827768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 9.666667 + value: {x: 0.03192866, y: 0, z: -0.01810629} + inSlope: {x: -0.002152274, y: -0, z: -0.00070151745} + outSlope: {x: -0.0019517052, y: -0, z: 0.00029872396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 10.791667 + value: {x: 0.031477943, y: 0, z: -0.017629396} + inSlope: {x: 0.000050983035, y: -0, z: 0.00000094413036} + outSlope: {x: 0.000051040257, y: -0, z: 0.00000094413036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.03150346, y: 0, z: -0.017628929} + inSlope: {x: 0.000051040257, y: -0, z: 0.00000094413036} + outSlope: {x: 0.000051040257, y: -0, z: 0.00000094413036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/sdwPg4 + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 1, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block01Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.99999994, y: 0.99999994, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block02Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 0.9999999, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.99999994, y: 0.9999999, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block03Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.99999994, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block04Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/sdwPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/sdwPg2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 11.291667 + value: {x: 0.99999994, y: 1, z: 0.99999994} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/sdwPg3 + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 24 + 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: 11.291667 + 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/Resources/Models/Games/Airboarder/Animations/wall/break.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/wall/break.anim.meta new file mode 100644 index 000000000..9dce5cdd9 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/wall/break.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 022e7fdc2d6e6d84184acb6854046934 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/wall/idle.anim b/Assets/Resources/Models/Games/Airboarder/Animations/wall/idle.anim new file mode 100644 index 000000000..6a1bd97bb --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/wall/idle.anim @@ -0,0 +1,232 @@ +%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: idle + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -140.99988, y: -1, z: 0.7999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + 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: -140.99988, y: -1, z: 0.7999998} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: wall_low_model + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 3301542606 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -140.99988 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -140.99988 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7999998 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.7999998 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: wall_low_model + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/wall/idle.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/wall/idle.anim.meta new file mode 100644 index 000000000..9da86aeff --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/wall/idle.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1446ea699ca64ee4eb030a3ee17686b4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/wall/move.anim b/Assets/Resources/Models/Games/Airboarder/Animations/wall/move.anim new file mode 100644 index 000000000..9a0900238 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/wall/move.anim @@ -0,0 +1,250 @@ +%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: move + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -140, y: -1, z: 0.8} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 300, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + 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: 60, y: -1, z: 0.8} + inSlope: {x: 300, y: -0, z: -0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.6666667 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: wall_low_model + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 0 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3301542606 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.6666667 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -140 + inSlope: 0 + outSlope: 300 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 60 + inSlope: 300 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -1 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.8 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.016666668 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.6666667 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: wall_low_model + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/wall/move.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/wall/move.anim.meta new file mode 100644 index 000000000..be9cda698 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/wall/move.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e3baee1c4d6194147b96c4789934f9de +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Animations/wall/shake.anim b/Assets/Resources/Models/Games/Airboarder/Animations/wall/shake.anim new file mode 100644 index 000000000..160057e76 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/wall/shake.anim @@ -0,0 +1,1089 @@ +%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: shake + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: 2.4583335 + value: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + 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: wall_low_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.4583335 + 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: wall_low_model_skeleton/wall_low_root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: 0.08976898, y: -0, z: 0, w: -0.00016736984} + outSlope: {x: 0.08976898, y: -0, z: 0, w: -0.00016736984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.0037403745, y: -0, z: -0, w: 0.999993} + inSlope: {x: 0, y: 0, z: -0.20601124, w: -0.0017681122} + outSlope: {x: 0, y: 0, z: -0.20601124, w: -0.0017681122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: -0.013628172, y: 0.00042852355, z: -0.031425495, w: 0.9994131} + inSlope: {x: -0.29615438, y: 0.012751795, z: -0.3100481, w: -0.0129983425} + outSlope: {x: -0.29615438, y: 0.012751795, z: -0.3100481, w: -0.0129983425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: -0.04544555, y: 0.0031528661, z: -0.06913857, w: 0.9965664} + inSlope: {x: 0.023008782, y: -0.00032219116, z: -0.02813566, w: -0.00090622966} + outSlope: {x: 0.023008782, y: -0.00032219116, z: -0.02813566, w: -0.00090622966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -0.034795973, y: 0.0013881375, z: -0.03983774, w: 0.9985992} + inSlope: {x: 0.14298011, y: -0.023635447, z: 0.5303186, w: 0.025401592} + outSlope: {x: 0.14298011, y: -0.023635447, z: 0.5303186, w: 0.025401592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: -0.010544604, y: -0.00006085975, z: 0.0057712323, w: 0.99992776} + inSlope: {x: 0.23921192, y: 2.910383e-10, z: 0.06271995, w: 0.00222087} + outSlope: {x: 0.23921192, y: 2.910383e-10, z: 0.06271995, w: 0.00222087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.006354359, y: -0.000026993781, z: -0.004247949, w: 0.9999708} + inSlope: {x: -0.08322494, y: 0.00028323958, z: 0.03346701, w: 0.00046277023} + outSlope: {x: -0.08322494, y: 0.00028323958, z: 0.03346701, w: 0.00046277023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12699932, y: 0, z: 0, w: 0.0001895432} + outSlope: {x: 0.12699932, y: 0, z: 0, w: 0.0001895432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0, y: -0, z: -0, w: 1} + inSlope: {x: 0.055163987, y: 0, z: 0, w: 0.00012660002} + outSlope: {x: 0.055163987, y: 0, z: 0, w: 0.00012660002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666667 + 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: 2.4583335 + 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: wall_low_model_skeleton/wall_low_root/block01Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00018292743, y: 0.0000049803302, z: -0.0002808779, w: 0.99999994} + inSlope: {x: -0.2426341, y: -0.34380937, z: 0.440366, w: -0.007560253} + outSlope: {x: -0.2426341, y: -0.34380937, z: 0.440366, w: -0.007560253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: -0.0036301338, y: -0.098177016, z: 0.04285279, w: 0.9942393} + inSlope: {x: 0.083507635, y: -0.313357, z: -0.095001206, w: -0.026680466} + outSlope: {x: 0.083507635, y: -0.313357, z: -0.095001206, w: -0.026680466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 0.03658183, y: -0.15688021, z: 0.016312262, w: 0.9868051} + inSlope: {x: -0.01036788, y: -0.25020054, z: -0.14799127, w: -0.03686642} + outSlope: {x: -0.01036788, y: -0.25020054, z: -0.14799127, w: -0.03686642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0.0010740604, y: -0.2050682, z: -0.0004878767, w: 0.978747} + inSlope: {x: -0.023118133, y: -0.06686869, z: 0.08201034, w: -0.013939613} + outSlope: {x: -0.023118133, y: -0.06686869, z: 0.08201034, w: -0.013939613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0017244236, y: -0.20790271, z: 0.0020674728, w: 0.97814584} + inSlope: {x: 0.14271154, y: 0.00026857865, z: -0.005004903, w: -0.000052213014} + outSlope: {x: 0.14271154, y: 0.00026857865, z: -0.005004903, w: -0.000052213014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.001287387, y: -0.20790674, z: 0.000011308558, w: 0.9781478} + inSlope: {x: 0.05635388, y: -0.000032365355, z: 0.01197806, w: 0.000060796796} + outSlope: {x: 0.05635388, y: -0.000032365355, z: 0.01197806, w: 0.000060796796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7083334 + value: {x: 0.0012873858, y: -0.20790878, z: 0.000011311471, w: 0.9781474} + inSlope: {x: -0.0000000027939704, y: -0.0000041127246, z: 0.000000005893531, w: -0.0000007152564} + outSlope: {x: -0.0000000027939704, y: -0.0000041127246, z: 0.000000005893531, w: -0.0000007152564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0.0012873841, y: -0.20791186, z: 0.000011315825, w: 0.97814673} + inSlope: {x: -0.000000005587925, y: -0.0000035762719, z: 0.000000005587925, w: -0.0000014305087} + outSlope: {x: -0.000000005587925, y: -0.0000035762719, z: 0.000000005587925, w: -0.0000014305087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block02Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7071067, y: 0, z: -0, w: 0.7071069} + inSlope: {x: 0.09631491, y: 0.24524409, z: -0.24810483, w: -0.10047197} + outSlope: {x: 0.09631491, y: 0.24524409, z: -0.24810483, w: -0.10047197} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.71396464, y: 0.019687645, z: -0.020091414, w: 0.6996165} + inSlope: {x: 0.061145067, y: 0.05519401, z: -0.38519597, w: -0.07788277} + outSlope: {x: 0.061145067, y: 0.05519401, z: -0.38519597, w: -0.07788277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.7176428, y: 0.013767601, z: -0.05953784, w: 0.6937251} + inSlope: {x: 0.023682114, y: 0.013619116, z: -0.35512, w: -0.054048292} + outSlope: {x: 0.023682114, y: 0.013619116, z: -0.35512, w: -0.054048292} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 0.70552063, y: 0.06988752, z: -0.076928765, w: 0.7010266} + inSlope: {x: -0.04725624, y: 0.013563929, z: 0.056223325, w: 0.05235101} + outSlope: {x: -0.04725624, y: 0.013563929, z: 0.056223325, w: 0.05235101} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9166667 + value: {x: 0.7039595, y: 0.06175408, z: -0.061675422, w: 0.7048572} + inSlope: {x: 0.02261566, y: 0.029124217, z: 0.029287206, w: -0.022559155} + outSlope: {x: 0.02261566, y: 0.029124217, z: 0.029287206, w: -0.022559155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2083334 + value: {x: 0.7031163, y: 0.06181153, z: -0.06158513, w: 0.7057011} + inSlope: {x: -0.021067878, y: 0.0017851907, z: 0.0019016432, w: 0.021026393} + outSlope: {x: -0.021067878, y: 0.0017851907, z: 0.0019016432, w: 0.021026393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.875 + value: {x: 0.7044131, y: 0.061661106, z: -0.061661087, w: 0.7044133} + inSlope: {x: 0.000005006789, y: -0.00005601344, z: 0.00005601344, w: 0.000005006789} + outSlope: {x: 0.000005006789, y: -0.00005601344, z: 0.00005601344, w: 0.000005006789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0.704416, y: 0.061628435, z: -0.061628416, w: 0.70441616} + inSlope: {x: 0.000005722035, y: -0.00005587925, z: 0.000055968656, w: 0.000005722035} + outSlope: {x: 0.000005722035, y: -0.00005587925, z: 0.000055968656, w: 0.000005722035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block03Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7071067, y: 0, z: -0, w: 0.7071069} + inSlope: {x: -0.35281134, y: -0.4015098, z: 0.38551435, w: 0.33667517} + outSlope: {x: -0.35281134, y: -0.4015098, z: 0.38551435, w: 0.33667517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2916667 + value: {x: 0.65009975, y: -0.09111973, z: 0.07895918, w: 0.75022197} + inSlope: {x: -0.011875389, y: -0.19891563, z: 0.17427579, w: -0.03193974} + outSlope: {x: -0.011875389, y: -0.19891563, z: 0.17427579, w: -0.03193974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.625 + value: {x: 0.67716175, y: -0.122696586, z: 0.11600904, w: 0.7161979} + inSlope: {x: 0.17955354, y: -0.008811958, z: 0.06852196, w: -0.18239026} + outSlope: {x: 0.17955354, y: -0.008811958, z: 0.06852196, w: -0.18239026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: 0.69548833, y: -0.122760765, z: 0.122440964, w: 0.69730484} + inSlope: {x: -0.040908318, y: -0.01107108, z: -0.0030461834, w: 0.039248925} + outSlope: {x: -0.040908318, y: -0.01107108, z: -0.0030461834, w: 0.039248925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9583334 + value: {x: 0.69185394, y: -0.12341385, z: 0.12182027, w: 0.70090437} + inSlope: {x: 0.039391976, y: 0.006704625, z: 0.00705063, w: -0.038740378} + outSlope: {x: 0.039391976, y: 0.006704625, z: 0.00705063, w: -0.038740378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4583334 + value: {x: 0.69184417, y: -0.12347026, z: 0.12187595, w: 0.7008945} + inSlope: {x: -0.00002002718, y: -0.000112742295, z: 0.00011131178, w: -0.00002002718} + outSlope: {x: -0.00002002718, y: -0.000112742295, z: 0.00011131178, w: -0.00002002718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0.6918245, y: -0.12358309, z: 0.12198731, w: 0.70087457} + inSlope: {x: -0.000020027122, y: -0.000112831374, z: 0.00011140087, w: -0.000020027122} + outSlope: {x: -0.000020027122, y: -0.000112831374, z: 0.00011140087, w: -0.000020027122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block04Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -0, w: 1} + inSlope: {x: 0, y: 0.33793977, z: 0, w: -0.0023789406} + outSlope: {x: 0, y: 0.33793977, z: 0, w: -0.0023789406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 0, y: 0.104523726, z: -0, w: 0.9945224} + inSlope: {x: 0, y: 0.0000025033958, z: 0, w: -0.0000007152554} + outSlope: {x: 0, y: 0.0000025033958, z: 0, w: -0.0000007152554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0, y: 0.104528494, z: -0, w: 0.9945219} + inSlope: {x: 0, y: 0.0000025033903, z: 0, w: 0} + outSlope: {x: 0, y: 0.0000025033903, 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: wall_low_model_skeleton/wall_low_root/sdwPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.4583335 + 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: wall_low_model_skeleton/wall_low_root/sdwPg2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.4583335 + 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: wall_low_model_skeleton/wall_low_root/sdwPg3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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: 2.4583335 + 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: wall_low_model_skeleton/wall_low_root/sdwPg4 + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.064925574, z: 0.01532329} + inSlope: {x: -0, y: -0, z: -0} + outSlope: {x: -0, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0, y: 0.064925574, z: 0.01532329} + inSlope: {x: -0, y: -0, z: -0} + outSlope: {x: 0.013840817, y: 0.060511548, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.0005767007, y: 0.06744689, z: 0.01532329} + inSlope: {x: 0.013840817, y: 0.060511548, z: -0} + outSlope: {x: 0.013016672, y: 0.03281296, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.125 + value: {x: 0.001119062, y: 0.06881409, z: 0.01532329} + inSlope: {x: 0.013016672, y: 0.03281296, z: -0} + outSlope: {x: 0.012133293, y: 0.009519881, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: 0.0016246159, y: 0.06921076, z: 0.01532329} + inSlope: {x: 0.012133293, y: 0.009519881, z: -0} + outSlope: {x: 0.011174475, y: -0.007931215, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20833333 + value: {x: 0.002090219, y: 0.06888029, z: 0.01532329} + inSlope: {x: 0.011174475, y: -0.007931215, z: -0} + outSlope: {x: 0.010140122, y: -0.019542158, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.29166666 + value: {x: 0.002888986, y: 0.06701139, z: 0.01532329} + inSlope: {x: 0.009030284, y: -0.025311362, z: -0} + outSlope: {x: 0.007844999, y: -0.025239702, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.003490201, y: 0.06508614, z: 0.01532329} + inSlope: {x: 0.0065841596, y: -0.020966267, z: -0} + outSlope: {x: 0.005247911, y: -0.013824924, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.45833334 + value: {x: 0.0038687007, y: 0.0643469, z: 0.01532329} + inSlope: {x: 0.0038360863, y: -0.003916853, z: -0} + outSlope: {x: 0.002348836, y: 0.014188159, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833334 + value: {x: 0.0040043984, y: 0.064938076, z: 0.01532329} + inSlope: {x: -0.0000023460375, y: -0, z: -0} + outSlope: {x: -0.000002346041, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: 0.004, y: 0.064938076, z: 0.01532329} + inSlope: {x: -0.0000023460477, y: -0, z: -0} + outSlope: {x: -0.0000023460477, y: -0, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block01Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.040334877, z: -0.016676709} + inSlope: {x: -0, y: -0, z: 0.013799515} + outSlope: {x: -0, y: -0, z: 0.013799515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: -0, y: 0.040334877, z: -0.01610173} + inSlope: {x: -0, y: -0, z: 0.013799515} + outSlope: {x: -0, y: 0.052474592, z: 0.011998329} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.16666667 + value: {x: -0, y: 0.04508112, z: -0.01481023} + inSlope: {x: -0, y: 0.023930622, z: 0.008705062} + outSlope: {x: -0, y: 0.012100298, z: 0.0072355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: -0, y: 0.04325594, z: -0.01374771} + inSlope: {x: -0, y: -0.020888448, z: 0.0016581635} + outSlope: {x: -0, y: -0.022253484, z: 0.0008971305} + tangentMode: 0 + weightedMode: 0 + 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, y: 0.039382618, z: -0.013827111} + inSlope: {x: -0, y: -0.0029191573, z: -0.0011385721} + outSlope: {x: -0, y: 0.0061798156, z: -0.0011915886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7916667 + value: {x: -0, y: 0.040334877, z: -0.01396301} + inSlope: {x: -0, y: -0, z: -0.00094345043} + outSlope: {x: -0, y: -0, z: -0.00048720336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.125 + value: {x: -0, y: 0.040334877, z: -0.0140007585} + inSlope: {x: -0, y: -0, z: 0.000002288827} + outSlope: {x: -0, y: -0, z: 0.0000022602037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0, y: 0.040334877, z: -0.0139999995} + inSlope: {x: -0, y: -0, z: 0.000002288827} + outSlope: {x: -0, y: -0, z: 0.000002288827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block02Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.021914357, z: 0.0000674613} + inSlope: {x: 0.009875268, y: 0.019052695, z: -0} + outSlope: {x: 0.009875268, y: 0.019052695, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.0004114695, y: 0.02270822, z: 0.0000674613} + inSlope: {x: 0.009875268, y: 0.019052695, z: -0} + outSlope: {x: 0.007723247, y: 0.012992821, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 0.0007332715, y: 0.023249587, z: 0.0000674613} + inSlope: {x: 0.007723247, y: 0.012992821, z: -0} + outSlope: {x: 0.008252918, y: 0.007581826, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: 0.002168678, y: 0.02350182, z: 0.0000674613} + inSlope: {x: 0.008772096, y: -0.0037360378, z: -0} + outSlope: {x: 0.008545419, y: -0.0058709346, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.41666666 + value: {x: 0.003452977, y: 0.022331018, z: 0.0000674613} + inSlope: {x: 0.0066662855, y: -0.0073595825, z: -0} + outSlope: {x: 0.0056402176, y: -0.006217915, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5416667 + value: {x: 0.003998228, y: 0.02183302, z: 0.0000674613} + inSlope: {x: 0.0030315598, y: -0.0014769738, z: -0} + outSlope: {x: 0.0008504184, y: 0.0015988555, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8333333 + value: {x: 0.0040331283, y: 0.022034649, z: 0.0000674613} + inSlope: {x: -0.0000021386165, y: -0.0012436307, z: -0} + outSlope: {x: -0.000002131461, y: -0.0012879175, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9166667 + value: {x: 0.004030816, y: 0.021904683, z: 0.0000674613} + inSlope: {x: -0.0000021386106, y: 0.00001790997, z: -0} + outSlope: {x: -0.000002131464, y: 0.0000178528, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: 0.00402966, y: 0.021914357, z: 0.0000674613} + inSlope: {x: -0.0000021314702, y: 0.000017852852, z: -0} + outSlope: {x: -0.0000021314702, y: 0.000017852852, z: -0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block03Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0.05214526, z: 0.01119341} + inSlope: {x: 0.012971229, y: 0.03594063, z: -0.0044246577} + outSlope: {x: 0.012971229, y: 0.03594063, z: -0.0044246577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.041666668 + value: {x: 0.0005404679, y: 0.053642787, z: 0.01100905} + inSlope: {x: 0.012971229, y: 0.03594063, z: -0.0044246577} + outSlope: {x: 0.008342579, y: 0.02485897, z: -0.003998852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.375 + value: {x: 0.0033683728, y: 0.053575158, z: 0.01025515} + inSlope: {x: 0.007860383, y: -0.015456051, z: -0.00080426235} + outSlope: {x: 0.0073512285, y: -0.015610088, z: -0.0005275155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5833333 + value: {x: 0.004595636, y: 0.0514266, z: 0.010227271} + inSlope: {x: 0.004209513, y: -0.0022135184, z: -0.000035390887} + outSlope: {x: 0.0032663497, y: 0.0046386314, z: -0.000035390836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7083333 + value: {x: 0.0049094236, y: 0.05214526, z: 0.0102228485} + inSlope: {x: 0.001789364, y: -0, z: -0.000035390887} + outSlope: {x: 0.0012089318, y: -0, z: -0.000035390836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1666667 + value: {x: 0.005004409, y: 0.05214526, z: 0.010194996} + inSlope: {x: -0.0000034189159, y: -0, z: -0.000005607594} + outSlope: {x: -0.0000034189256, y: -0, z: -0.00000560761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: 0.005, y: 0.05214526, z: 0.01018775} + inSlope: {x: -0.0000034189354, y: -0, z: -0.0000056076265} + outSlope: {x: -0.0000034189354, y: -0, z: -0.0000056076265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block04Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0.0015556399} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0, y: 0, z: 0.0015556399} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/sdwPg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0.021797199} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0, y: 0, z: 0.021797199} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/sdwPg2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00153876, y: 0.00015709801, z: 0.0156471} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0.00153876, y: 0.00015709801, z: 0.0156471} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/sdwPg3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0, y: 0, z: 0.021797199} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583333 + value: {x: -0, y: 0, z: 0.021797199} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/sdwPg4 + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 0.9999999, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0.9999999, y: 0.9999999, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block03Pg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9999999, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4583335 + value: {x: 0.9999999, y: 1, z: 1} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: wall_low_model_skeleton/wall_low_root/block04Pg + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 24 + 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: 2.4583335 + 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/Resources/Models/Games/Airboarder/Animations/wall/shake.anim.meta b/Assets/Resources/Models/Games/Airboarder/Animations/wall/shake.anim.meta new file mode 100644 index 000000000..564228e5c --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Animations/wall/shake.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2d03b736c5f6c404bbdcfadc82e96cf7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials.meta b/Assets/Resources/Models/Games/Airboarder/Materials.meta new file mode 100644 index 000000000..7ac0e2546 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 160d27e4e988b6143b49a7224a0f578e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/Dog.mat b/Assets/Resources/Models/Games/Airboarder/Materials/Dog.mat new file mode 100644 index 000000000..9303f51de --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/Dog.mat @@ -0,0 +1,86 @@ +%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: Dog + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: + - _EMISSION + m_InvalidKeywords: [] + m_LightmapFlags: 2 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 2800000, guid: 88ca27f4018b240448b1385495b8f5e8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 88ca27f4018b240448b1385495b8f5e8, 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.65 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0.6766883, g: 0.6766883, b: 0.6766883, a: 1} + - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/Dog.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/Dog.mat.meta new file mode 100644 index 000000000..0758405ad --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/Dog.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c466e7c7047232045bc7f7da99a96309 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/Sky.png b/Assets/Resources/Models/Games/Airboarder/Materials/Sky.png new file mode 100644 index 000000000..3410c6825 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/Sky.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/Sky.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/Sky.png.meta new file mode 100644 index 000000000..0b25187b6 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/Sky.png.meta @@ -0,0 +1,176 @@ +fileFormatVersion: 2 +guid: 5b82c9572d4fe7c41af997c06e051ea0 +TextureImporter: + internalIDToNameTable: + - first: + 213: 7482667652216324306 + second: Square + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 256 + spriteBorder: {x: 4, y: 4, z: 4, w: 4} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: 0 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: Square + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 256 + height: 256 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2d009a6b596c7d760800000000000000 + internalID: 7482667652216324306 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: + - - {x: -128, y: 128} + - {x: -128, y: -128} + - {x: 128, y: -128} + - {x: 128, y: 128} + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: + Square: 7482667652216324306 + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_board.mat b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_board.mat new file mode 100644 index 000000000..84502d7e4 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_board.mat @@ -0,0 +1,87 @@ +%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: airboy_board + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: + - _EMISSION + m_InvalidKeywords: + - _METALLICGLOSSMAP + m_LightmapFlags: 2 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 2800000, guid: b31d4f673c4dc0b498c0325fbece6d29, type: 3} + m_Scale: {x: 2, y: 3} + m_Offset: {x: 0, y: -2.2} + - _MainTex: + m_Texture: {fileID: 2800000, guid: b31d4f673c4dc0b498c0325fbece6d29, type: 3} + m_Scale: {x: 2, y: 3} + m_Offset: {x: 0, y: -2.2} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 9468b42a211b93845a16db88d3f8d471, type: 3} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.65 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0.6766883, g: 0.6766883, b: 0.6766883, a: 1} + - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_board.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_board.mat.meta new file mode 100644 index 000000000..e31499bfc --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_board.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 21a244208ca5883499c02785947c32eb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_board_up.png b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_board_up.png new file mode 100644 index 000000000..01be42e24 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_board_up.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_board_up.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_board_up.png.meta new file mode 100644 index 000000000..2cedf2357 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_board_up.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: b31d4f673c4dc0b498c0325fbece6d29 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 2 + wrapV: 2 + wrapW: 2 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_body.mat b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_body.mat new file mode 100644 index 000000000..11ffb9efc --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_body.mat @@ -0,0 +1,104 @@ +%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: airboy_body + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: + - _EMISSION + m_InvalidKeywords: [] + m_LightmapFlags: 2 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Cube: + 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: 2800000, guid: 9e8ea6638dfeae64283dd3e0d77aed0e, type: 3} + m_Scale: {x: 2, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 9e8ea6638dfeae64283dd3e0d77aed0e, type: 3} + m_Scale: {x: 2, 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} + - _ToonShade: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - PixelSnap: 0 + - _BumpScale: 1 + - _CautionThreshold: 0.25 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.65 + - _GlossyReflections: 1 + - _GoodThreshold: 0.5 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Outline: 0.005 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Threshold: 0 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _CautionColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _CriticalColor: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0.6766883, g: 0.6766883, b: 0.6766883, a: 1} + - _GoodColor: {r: 1, g: 1, b: 1, a: 1} + - _OutlineColor: {r: 0, g: 0, b: 0, a: 1} + - _ReflectColor: {r: 1, g: 1, b: 1, a: 0.5} + - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_body.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_body.mat.meta new file mode 100644 index 000000000..0c4178d3b --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_body.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d173bed14b93ec9489e590a1c0b3831e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_body_up.png b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_body_up.png new file mode 100644 index 000000000..427d2bb29 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_body_up.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_body_up.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_body_up.png.meta new file mode 100644 index 000000000..d670fbcb6 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_body_up.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 9e8ea6638dfeae64283dd3e0d77aed0e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 2 + wrapV: 2 + wrapW: 2 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_dead.mat b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_dead.mat new file mode 100644 index 000000000..1affd3b1c --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_dead.mat @@ -0,0 +1,86 @@ +%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: airboy_dead + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: + - _EMISSION + m_InvalidKeywords: [] + m_LightmapFlags: 2 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 2800000, guid: 4b2a5876117e25442a2674db9d59ac22, type: 3} + m_Scale: {x: 2, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 4b2a5876117e25442a2674db9d59ac22, type: 3} + m_Scale: {x: 2, 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0.6766883, g: 0.6766883, b: 0.6766883, a: 1} + - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_dead.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_dead.mat.meta new file mode 100644 index 000000000..e4de1b6c4 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_dead.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a18a0015544712349972ba1f9e49f3a7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_hurt.png b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_hurt.png new file mode 100644 index 000000000..a4828a0c5 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_hurt.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_hurt.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_hurt.png.meta new file mode 100644 index 000000000..c9150223d --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_hurt.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 4b2a5876117e25442a2674db9d59ac22 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 3 + wrapV: 1 + wrapW: 3 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_oooo.png b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_oooo.png new file mode 100644 index 000000000..ed15bafc2 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_oooo.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_oooo.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_oooo.png.meta new file mode 100644 index 000000000..eb76705d3 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_oooo.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 27cfa63e19b6e7c4b953335c6c7a1391 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 3 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shadow.mat b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shadow.mat new file mode 100644 index 000000000..4de09b979 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shadow.mat @@ -0,0 +1,80 @@ +%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: airboy_shadow + m_Shader: {fileID: 4800000, guid: 6edf21a3fdd28154ab40e23fb0660133, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 128, y: 64} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ababa4335c96cd447ab78f65faf90e7d, 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 0.44705883} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shadow.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shadow.mat.meta new file mode 100644 index 000000000..be852b329 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shadow.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 88c6b20a5757e1047b66d40ca9f60a3e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shadow_up.png b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shadow_up.png new file mode 100644 index 000000000..92e96a335 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shadow_up.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shadow_up.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shadow_up.png.meta new file mode 100644 index 000000000..ebf614f55 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shadow_up.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: ababa4335c96cd447ab78f65faf90e7d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shout.mat b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shout.mat new file mode 100644 index 000000000..249a9c5ca --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shout.mat @@ -0,0 +1,86 @@ +%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: airboy_shout + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: + - _EMISSION + m_InvalidKeywords: [] + m_LightmapFlags: 2 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 2800000, guid: 27cfa63e19b6e7c4b953335c6c7a1391, type: 3} + m_Scale: {x: 2, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 27cfa63e19b6e7c4b953335c6c7a1391, type: 3} + m_Scale: {x: 2, 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 1 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0.6766883, g: 0.6766883, b: 0.6766883, a: 1} + - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shout.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shout.mat.meta new file mode 100644 index 000000000..8206be4b7 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_shout.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b3c9df74b1ef91940a4fbbe6e7812a79 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_smile.mat b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_smile.mat new file mode 100644 index 000000000..57a752fd3 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_smile.mat @@ -0,0 +1,86 @@ +%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: airboy_smile + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: + - _EMISSION + m_InvalidKeywords: [] + m_LightmapFlags: 2 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0, y: 0} + m_Offset: {x: 100, 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: 2800000, guid: c1489975cea6d494e8b5fb97a3df7420, type: 3} + m_Scale: {x: 2, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: c1489975cea6d494e8b5fb97a3df7420, type: 3} + m_Scale: {x: 2, 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.65 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0.6766883, g: 0.6766883, b: 0.6766883, a: 1} + - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_smile.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_smile.mat.meta new file mode 100644 index 000000000..d7d73506b --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_smile.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 87659f38f7545534ca0e91a913b69fbc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_smile.png b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_smile.png new file mode 100644 index 000000000..4ac46e982 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_smile.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/airboy_smile.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_smile.png.meta new file mode 100644 index 000000000..8b783b179 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/airboy_smile.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: c1489975cea6d494e8b5fb97a3df7420 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 3 + wrapV: 1 + wrapW: 3 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 0 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/block_shadow.mat b/Assets/Resources/Models/Games/Airboarder/Materials/block_shadow.mat new file mode 100644 index 000000000..5959a0627 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/block_shadow.mat @@ -0,0 +1,80 @@ +%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: block_shadow + m_Shader: {fileID: 4800000, guid: 6edf21a3fdd28154ab40e23fb0660133, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: b7b154f14d1c0954e829f3ffd889d91e, 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 0.5019608} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/block_shadow.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/block_shadow.mat.meta new file mode 100644 index 000000000..79e786834 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/block_shadow.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a8381275f858de342b6da7d85f663236 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/block_shadow_up.png b/Assets/Resources/Models/Games/Airboarder/Materials/block_shadow_up.png new file mode 100644 index 000000000..547a4bd11 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/block_shadow_up.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/block_shadow_up.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/block_shadow_up.png.meta new file mode 100644 index 000000000..54af789c6 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/block_shadow_up.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: b7b154f14d1c0954e829f3ffd889d91e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/cloud01.png b/Assets/Resources/Models/Games/Airboarder/Materials/cloud01.png new file mode 100644 index 000000000..c9c6ad9e7 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/cloud01.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/cloud01.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/cloud01.png.meta new file mode 100644 index 000000000..fcaaa6d7d --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/cloud01.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: b9367d4ab4f046c4e9a68ca6c41bae2d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/cloud_up.png b/Assets/Resources/Models/Games/Airboarder/Materials/cloud_up.png new file mode 100644 index 000000000..3203353f5 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/cloud_up.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/cloud_up.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/cloud_up.png.meta new file mode 100644 index 000000000..0eaf3037c --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/cloud_up.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 1d2639e7922955d4885420d3bc0e61c3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/clouds.mat b/Assets/Resources/Models/Games/Airboarder/Materials/clouds.mat new file mode 100644 index 000000000..8705590e2 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/clouds.mat @@ -0,0 +1,86 @@ +%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: clouds + m_Shader: {fileID: 10751, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: [] + m_InvalidKeywords: + - _ALPHATEST_ON + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 1d2639e7922955d4885420d3bc0e61c3, 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/clouds.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/clouds.mat.meta new file mode 100644 index 000000000..456c0c4da --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/clouds.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 04362130d29b5134fa53ff055e11734e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/dog.png b/Assets/Resources/Models/Games/Airboarder/Materials/dog.png new file mode 100644 index 000000000..bef1c6f58 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/dog.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/dog.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/dog.png.meta new file mode 100644 index 000000000..03e23e740 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/dog.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 88ca27f4018b240448b1385495b8f5e8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 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: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/dog_shadow.mat b/Assets/Resources/Models/Games/Airboarder/Materials/dog_shadow.mat new file mode 100644 index 000000000..5608ebf7f --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/dog_shadow.mat @@ -0,0 +1,86 @@ +%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: dog_shadow + m_Shader: {fileID: 4800000, guid: 6edf21a3fdd28154ab40e23fb0660133, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: + - _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: c94502c75174fa448836079af762a7bb, 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 0.5019608} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/dog_shadow.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/dog_shadow.mat.meta new file mode 100644 index 000000000..fb7e35629 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/dog_shadow.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d60ea1e87341a3a4fbad986e8d3b2aec +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/dog_up.png b/Assets/Resources/Models/Games/Airboarder/Materials/dog_up.png new file mode 100644 index 000000000..4084b1531 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/dog_up.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/dog_up.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/dog_up.png.meta new file mode 100644 index 000000000..deb3c0ab1 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/dog_up.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 0ecceba387529984a9ee91e382fe65d0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 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: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/dogshadow_up.png b/Assets/Resources/Models/Games/Airboarder/Materials/dogshadow_up.png new file mode 100644 index 000000000..d0f565014 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/dogshadow_up.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/dogshadow_up.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/dogshadow_up.png.meta new file mode 100644 index 000000000..754f0b746 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/dogshadow_up.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: c94502c75174fa448836079af762a7bb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/floor 1.png b/Assets/Resources/Models/Games/Airboarder/Materials/floor 1.png new file mode 100644 index 000000000..c2d9b47d7 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/floor 1.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/floor 1.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/floor 1.png.meta new file mode 100644 index 000000000..0a9bfebf7 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/floor 1.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: e63f82dce03ddec43891c66e2945190b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 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: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/floor.mat b/Assets/Resources/Models/Games/Airboarder/Materials/floor.mat new file mode 100644 index 000000000..bfc347490 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/floor.mat @@ -0,0 +1,92 @@ +%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: floor + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: + - _EMISSION + m_LightmapFlags: 2 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 2800000, guid: f181c9819c5bc7b488b3eedee117d8e0, type: 3} + m_Scale: {x: 128, y: 0} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: f181c9819c5bc7b488b3eedee117d8e0, type: 3} + m_Scale: {x: 128, y: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.65 + - _GlossyReflections: 1 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 0.82745105, g: 0.1254902, b: 0.8078432, a: 1} + - _ColorBravo: {r: 1, g: 1, b: 1, a: 1} + - _ColorDelta: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0.6766883, g: 0.6766883, b: 0.6766883, a: 1} + - _SpecColor: {r: 0.21960786, g: 0.21960786, b: 0.21960786, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/floor.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/floor.mat.meta new file mode 100644 index 000000000..98ee18a28 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/floor.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 189d3cb852c97e347a22ac98acecf531 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/floor.png b/Assets/Resources/Models/Games/Airboarder/Materials/floor.png new file mode 100644 index 000000000..fd128a392 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/floor.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/floor.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/floor.png.meta new file mode 100644 index 000000000..dc195c34c --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/floor.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: f181c9819c5bc7b488b3eedee117d8e0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 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: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/floor.png~ b/Assets/Resources/Models/Games/Airboarder/Materials/floor.png~ new file mode 100644 index 000000000..f48eff75c Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/floor.png~ differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/floorspecular.mat b/Assets/Resources/Models/Games/Airboarder/Materials/floorspecular.mat new file mode 100644 index 000000000..9d00adfa0 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/floorspecular.mat @@ -0,0 +1,85 @@ +%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: floorspecular + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 2800000, guid: e63f82dce03ddec43891c66e2945190b, type: 3} + m_Scale: {x: 128, y: 0} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: e63f82dce03ddec43891c66e2945190b, type: 3} + m_Scale: {x: 128, y: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.65 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + - _SpecColor: {r: 0.21960786, g: 0.21960786, b: 0.21960786, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/floorspecular.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/floorspecular.mat.meta new file mode 100644 index 000000000..5fcd539b1 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/floorspecular.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5c5aa636b730eba44b9a80ea76a7bc4e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/fog texture.png b/Assets/Resources/Models/Games/Airboarder/Materials/fog texture.png new file mode 100644 index 000000000..be1410a84 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/fog texture.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/fog texture.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/fog texture.png.meta new file mode 100644 index 000000000..a0de59e6b --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/fog texture.png.meta @@ -0,0 +1,176 @@ +fileFormatVersion: 2 +guid: 9e7c56053f5ba384ebaeefae32797c98 +TextureImporter: + internalIDToNameTable: + - first: + 213: 7482667652216324306 + second: Square + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 256 + spriteBorder: {x: 4, y: 4, z: 4, w: 4} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: 0 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: Square + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 256 + height: 256 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2d009a6b596c7d760800000000000000 + internalID: 7482667652216324306 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: + - - {x: -128, y: 128} + - {x: -128, y: -128} + - {x: 128, y: -128} + - {x: 128, y: 128} + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: + Square: 7482667652216324306 + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/fog texture.png~ b/Assets/Resources/Models/Games/Airboarder/Materials/fog texture.png~ new file mode 100644 index 000000000..e7c3e354c Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/fog texture.png~ differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/fog.mat b/Assets/Resources/Models/Games/Airboarder/Materials/fog.mat new file mode 100644 index 000000000..540d7a56e --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/fog.mat @@ -0,0 +1,121 @@ +%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: fog + m_Shader: {fileID: 4800000, guid: 6edf21a3fdd28154ab40e23fb0660133, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: + - _GLOSSYREFLECTIONS_OFF + - _SPECULARHIGHLIGHTS_OFF + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BackTex: + m_Texture: {fileID: 0} + 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} + - _DownTex: + 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} + - _FrontTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LeftTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 9e7c56053f5ba384ebaeefae32797c98, 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} + - _RightTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Tex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _UpTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _Exposure: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _Rotation: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 0 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 0.9921569, g: 0.7686275, b: 0.9921569, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _Specular: {r: 0, g: 0, b: 0, a: 0} + - _Tint: {r: 0.5, g: 0.5, b: 0.5, a: 0.5} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/fog.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/fog.mat.meta new file mode 100644 index 000000000..430246423 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/fog.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 06975a2349e5f424c891dd2b44d74c26 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/metal_env.png b/Assets/Resources/Models/Games/Airboarder/Materials/metal_env.png new file mode 100644 index 000000000..e754d69dd Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/metal_env.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/metal_env.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/metal_env.png.meta new file mode 100644 index 000000000..3b4aba055 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/metal_env.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 9468b42a211b93845a16db88d3f8d471 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/mothership.mat b/Assets/Resources/Models/Games/Airboarder/Materials/mothership.mat new file mode 100644 index 000000000..32de1516d --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/mothership.mat @@ -0,0 +1,86 @@ +%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: mothership + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: + - _EMISSION + m_InvalidKeywords: [] + m_LightmapFlags: 2 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 2800000, guid: 850e40bc393a1cc45abb8745f5950668, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 850e40bc393a1cc45abb8745f5950668, 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.65 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0.6766883, g: 0.6766883, b: 0.6766883, a: 1} + - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/mothership.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/mothership.mat.meta new file mode 100644 index 000000000..318dffdce --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/mothership.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 50453eb304d2d674697c11f75f7b1ee7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/mothership.png b/Assets/Resources/Models/Games/Airboarder/Materials/mothership.png new file mode 100644 index 000000000..f81d6a5e6 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/mothership.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/mothership.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/mothership.png.meta new file mode 100644 index 000000000..162b76eae --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/mothership.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 850e40bc393a1cc45abb8745f5950668 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 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: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/purplesky.png b/Assets/Resources/Models/Games/Airboarder/Materials/purplesky.png new file mode 100644 index 000000000..2598d652f Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/purplesky.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/purplesky.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/purplesky.png.meta new file mode 100644 index 000000000..ee678609d --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/purplesky.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: b3d955972a2608c49b05b527a1c374bd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/sky.mat b/Assets/Resources/Models/Games/Airboarder/Materials/sky.mat new file mode 100644 index 000000000..1ab266b1a --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/sky.mat @@ -0,0 +1,92 @@ +%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: sky + m_Shader: {fileID: 10755, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: [] + m_InvalidKeywords: + - _GLOSSYREFLECTIONS_OFF + - _SPECULARHIGHLIGHTS_OFF + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 5b82c9572d4fe7c41af997c06e051ea0, 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _CullMode: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 0 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _Threshold: 0 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767} + - _Color: {r: 0.9921569, g: 0.7686275, b: 0.9921569, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/sky.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/sky.mat.meta new file mode 100644 index 000000000..5209b7760 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/sky.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d308d6053cbc091489ae82391d36d476 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/wall_body.mat b/Assets/Resources/Models/Games/Airboarder/Materials/wall_body.mat new file mode 100644 index 000000000..92a1a5ff1 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/wall_body.mat @@ -0,0 +1,103 @@ +%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: wall_body + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: + - _EMISSION + m_InvalidKeywords: [] + m_LightmapFlags: 2 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BlendTex: + m_Texture: {fileID: 0} + 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: 2800000, guid: ee81d836898ee474a80f704b7a905b0f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ee81d836898ee474a80f704b7a905b0f, 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} + - _Ramp: + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.65 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _BlendColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0.6766883, g: 0.6766883, b: 0.6766883, a: 1} + - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + - _Specular: {r: 0, g: 0, b: 0, a: 0} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/wall_body.mat.meta b/Assets/Resources/Models/Games/Airboarder/Materials/wall_body.mat.meta new file mode 100644 index 000000000..b0c0cd708 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/wall_body.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 35ed2295779a9214993f4719b9fa7912 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/wall_body.png b/Assets/Resources/Models/Games/Airboarder/Materials/wall_body.png new file mode 100644 index 000000000..530d572b0 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/Materials/wall_body.png differ diff --git a/Assets/Resources/Models/Games/Airboarder/Materials/wall_body.png.meta b/Assets/Resources/Models/Games/Airboarder/Materials/wall_body.png.meta new file mode 100644 index 000000000..0f764ee98 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/Materials/wall_body.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: ee81d836898ee474a80f704b7a905b0f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/airboy.controller b/Assets/Resources/Models/Games/Airboarder/airboy.controller new file mode 100644 index 000000000..8bb601de6 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/airboy.controller @@ -0,0 +1,335 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-8866377821578892374 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: jump + 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: 0497759d7cdd78c49967881bdeddabc5, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-8798039939797931423 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: duck + 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: 1b4429b24dbe1444780def62339b9adc, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-6807521180335360168 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: bop + 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: 6692c31ca8193fd4c81304cf44ec9310, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-6351643419652078674 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: letsgo + 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: e69593c5887486143a03f3ce10624f97, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-1798779648231258738 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: hover + 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: 5ac047d6d29b065478606ced9573944e, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-89424942073692808 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: hit2 + 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: 075efdf7c3d99334db629d7af0aa5a4a, 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: airboy + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Hovering + m_StateMachine: {fileID: 7764868861449969032} + 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} + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 4518392715466498807} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &1588523339311908880 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: hit1 + 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: 76170fa24eac34343bd183f3af30efd4, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &3739942649928942988 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: charge + 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: 7656cb95d07e19e4c9ad59d1873c00a0, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &4518392715466498807 +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: -89424942073692808} + m_Position: {x: 300, y: -60, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8375474103083543902} + m_Position: {x: 380, y: 20, z: 0} + - serializedVersion: 1 + m_State: {fileID: 1588523339311908880} + m_Position: {x: 390, y: 140, z: 0} + - serializedVersion: 1 + m_State: {fileID: -6351643419652078674} + m_Position: {x: 400, y: 200, z: 0} + - serializedVersion: 1 + m_State: {fileID: -8798039939797931423} + m_Position: {x: 571.3122, y: -75.69092, z: 0} + - serializedVersion: 1 + m_State: {fileID: 3739942649928942988} + m_Position: {x: 612.64105, y: -2.5706482, z: 0} + - serializedVersion: 1 + m_State: {fileID: -6807521180335360168} + m_Position: {x: 120, y: 30, z: 0} + - serializedVersion: 1 + m_State: {fileID: -8866377821578892374} + m_Position: {x: 380, y: 90, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 70, y: -90, 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: 8375474103083543902} +--- !u!1107 &7764868861449969032 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Hovering + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -1798779648231258738} + m_Position: {x: 253.819, y: 76.98872, 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: -1798779648231258738} +--- !u!1102 &8375474103083543902 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: hold + 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: 57cdf694ecf05ca4bb5ca39034cc97d8, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Models/Games/Airboarder/airboy.controller.meta b/Assets/Resources/Models/Games/Airboarder/airboy.controller.meta new file mode 100644 index 000000000..3db418eed --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/airboy.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f4b96d8a00d1d1469c6fc1556d78383 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/airboy.fbx b/Assets/Resources/Models/Games/Airboarder/airboy.fbx new file mode 100644 index 000000000..dd18b0491 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/airboy.fbx differ diff --git a/Assets/Resources/Models/Games/Airboarder/airboy.fbx.meta b/Assets/Resources/Models/Games/Airboarder/airboy.fbx.meta new file mode 100644 index 000000000..c3042a286 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/airboy.fbx.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: 89b88e5e5c5b4564eb6c4f352f7bec6a +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/airboy_model.dae b/Assets/Resources/Models/Games/Airboarder/airboy_model.dae new file mode 100644 index 000000000..576476e6c --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/airboy_model.dae @@ -0,0 +1,706 @@ + + + + 2024-02-25T16:08:48.9422839-06:00 + 2024-02-25T16:08:48.9453045-06:00 + + + + ./airboy_board.png + + + ./airboy_body.png + + + ./airboy_face.0.png + + + ./airboy_face.1.png + + + ./airboy_face.2.png + + + ./airboy_shadow.png + + + ./block_shadow.png + + + ./dog.png + + + ./dog_sdw.png + + + ./floor.png + + + ./metal_env.png + + + ./mother_ship.png + + + ./wall_body.png + + + ./cloud01.png + + + + + + + + + + + + + + + + + + + + + + airboy_body + PNG + + + + + airboyMt_surf + MIRROR + MIRROR + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + airboy_board + PNG + + + + + boardMt_surf + MIRROR + MIRROR + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + airboy_face.0 + PNG + + + + + faceMt_surf + MIRROR + MIRROR + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + airboy_body + PNG + + + + + grassMt_surf + MIRROR + MIRROR + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + + 0 0.585431 0.197722 0.178082 0.647137 0.136151 0 0.741958 0.206067 -0.178082 0.647137 0.136151 0 0.606746 -0.120777 0 0.788869 -0.106034 0.117299 0.629325 -0.114982 -0.117299 0.629325 -0.114982 0 0.550972 0.178648 -0.0634326 0.532874 0.159135 0 0.519989 0.144676 -0.234437 0.62717 0.0421592 -0.228874 0.685921 0.0444487 -0.234437 0.62717 0.0421592 -0.228874 0.685921 0.0444487 -0.216932 0.629245 -0.0431988 -0.20601 0.685858 -0.0438924 -0.208937 0.781489 0.0285582 0 0.532906 -0.0980525 0.0804513 0.517631 -0.0923255 0.145058 0.550887 -0.0861893 -0.0804513 0.517631 -0.0923255 -0.03188 0.486355 -0.035088 0 0.507101 -0.0620532 -0.145058 0.550887 -0.0861893 0.03188 0.486355 -0.035088 0.20601 0.685858 -0.0438924 0.208937 0.781489 0.0285582 0.228874 0.685921 0.0444487 -0.230883 0.582789 0.0403612 -0.212138 0.568358 -0.0426541 0.216932 0.629245 -0.0431988 0.234437 0.62717 0.0421592 0.212138 0.568358 -0.0426541 0.230883 0.582789 0.0403612 0.0634326 0.532874 0.159135 0.081658 0.516893 0.14623 0.0323225 0.497224 0.0901162 0.054526 0.315582 0.0716587 0.117215 0.305043 0.112596 0 0.510681 0.107454 0.234437 0.62717 0.0421592 0.228874 0.685921 0.0444487 0.180768 0.564999 0.126045 0.230883 0.582789 0.0403612 0.184655 0.318988 0.066145 -0.0323225 0.497224 0.0901162 -0.081658 0.516893 0.14623 -0.054526 0.315582 0.0716587 -0.180768 0.564999 0.126045 -0.117215 0.305043 0.112596 -0.230883 0.582789 0.0403612 -0.184655 0.318988 0.066145 0.125542 0.361969 -0.0625965 0.0804513 0.517631 -0.0923255 0.145058 0.550887 -0.0861893 0.198632 0.340626 0.00731139 0.212138 0.568358 -0.0426541 -0.0804513 0.517631 -0.0923255 -0.125542 0.361969 -0.0625965 -0.145058 0.550887 -0.0861893 -0.212138 0.568358 -0.0426541 -0.198632 0.340626 0.00731139 -0.16521 0.780115 -0.0618417 -0.189418 0.966748 -0.00149999 -0.166515 0.763502 0.144049 -0.208937 0.781489 0.0285582 0.10039 0.967431 0.153593 0 1.09922 0.122928 0 0.961757 0.175282 0.166515 0.763502 0.144049 -0.10039 0.967431 0.153593 0.0539951 1.16323 0.0389948 0 1.15995 0.0677687 -0.0539951 1.16323 0.0389948 0.16521 0.780115 -0.0618417 0.189418 0.966748 -0.00149999 0 0.990508 -0.119984 0.208937 0.781489 0.0285582 0 1.24041 0.0658813 0.0565443 1.24214 0.0321413 -0.0565443 1.24214 0.0321413 0.0585444 1.16555 -0.0637593 0 1.16759 -0.0781576 0.0610936 1.24022 -0.0656467 0 1.24225 -0.080045 -0.0585444 1.16555 -0.0637593 -0.0610936 1.24022 -0.0656467 0.0585444 1.16555 -0.0637593 0.0610936 1.24022 -0.0656467 -0.0585444 1.16555 -0.0637593 -0.0610936 1.24022 -0.0656467 0.205013 1.66902 0.182557 0.253992 1.66645 0.00750331 0.167284 1.74564 0.149553 0.189205 1.77061 0.00106585 0.126853 1.55931 -0.295363 0.240431 1.56002 -0.179045 0.13285 1.43543 -0.290784 0.246934 1.43465 -0.168463 0.214474 1.67297 -0.1555 0.118735 1.68312 -0.244253 0.172889 1.75306 -0.111138 0.0892625 1.76306 -0.182311 0.295062 1.54321 0.00997178 0.172889 1.75306 -0.111138 0 1.77618 0.198533 0.0866592 1.77338 0.183908 0 1.81379 0.0680099 0.0991004 1.80461 0.0636942 0 1.80889 -0.0755043 0.0971722 1.80024 -0.0700966 0.189205 1.77061 0.00106585 0.167284 1.74564 0.149553 0.0892625 1.76306 -0.182311 0.172889 1.75306 -0.111138 0 1.76829 -0.205179 0 1.68489 -0.278876 0 1.76829 -0.205179 0 1.55859 -0.329797 0.290579 1.41521 0.0129353 0 1.43131 -0.330931 0.220408 1.32189 -0.157434 0.15729 1.25673 -0.127271 0.121778 1.31268 -0.241188 0.101161 1.23001 -0.150846 0 1.3054 -0.271179 0 1.21593 -0.176644 0.248107 1.28919 0.00972873 0.15729 1.25673 -0.127271 0.170968 1.21343 0.000788968 0.0792986 1.19295 0.15416 0 1.18029 0.169868 0.0817894 1.18423 0.0285315 0 1.17041 -0.0243392 0 1.21593 -0.176644 0.0836874 1.19887 -0.0543881 0.101161 1.23001 -0.150846 0.170968 1.21343 0.000788968 0.151286 1.21868 0.105794 0.15729 1.25673 -0.127271 0.0553531 1.68753 0.32137 0.0556045 1.74786 0.366248 0 1.69511 0.321143 0 1.75443 0.362718 0.113109 1.7262 0.374681 0.11495 1.63807 0.305089 0.318452 1.71066 0.119394 0.281059 1.80241 0.235128 0.307837 1.61223 0.236353 0.279162 1.70603 0.322693 0.249916 1.60125 0.262787 0.2413 1.70929 0.348421 0.198731 1.76416 0.0829193 0.184422 1.85536 0.2384 0.281059 1.80241 0.235128 0.184422 1.85536 0.2384 0.253261 1.79395 0.262513 0.184725 1.82832 0.262786 0.243137 1.74691 0.177452 0.293007 1.74691 0.186246 0.297108 1.5841 0.00336099 0.354485 1.5841 0.0134781 0.349742 1.48961 0.0990875 0.288265 1.65242 0.271855 0.296202 1.4855 0.0933504 0.242231 1.64831 0.267441 0.349742 1.48961 0.0990875 0.354485 1.5841 0.0134781 0.288265 1.65242 0.271855 0.293007 1.74691 0.186246 0.296202 1.4855 0.0933504 0.242231 1.64831 0.267441 0.297108 1.5841 0.00336099 0.243137 1.74691 0.177452 0.455986 1.65618 -0.0868568 0.455986 1.60728 -0.148172 0.425438 1.68219 -0.0993839 0.425438 1.62528 -0.170745 0.455986 1.53662 -0.182199 0.425438 1.54305 -0.210347 0.455986 1.4582 -0.182199 0.425438 1.45177 -0.210347 0.455986 1.38754 -0.148172 0.425438 1.36954 -0.170745 0.455986 1.34276 -0.0905604 0.425438 1.31674 -0.103087 0.455986 1.32119 -0.0103983 0.425438 1.29232 -0.0103983 0.455986 1.33864 0.0660603 0.425438 1.31263 0.0785874 0.455986 1.38754 0.127375 0.425438 1.36954 0.149948 0.455986 1.4582 0.161403 0.425438 1.45177 0.189551 0.455986 1.53662 0.161403 0.425438 1.54305 0.189551 0.455986 1.60728 0.127375 0.425438 1.62528 0.149948 0.455986 1.65618 0.0660603 0.425438 1.68219 0.0785874 0.455986 1.67363 -0.0103983 0.425438 1.7025 -0.0103983 0.266136 1.36954 -0.170745 0.266136 1.31263 -0.099384 0.266136 1.45177 -0.210347 0.266136 1.7025 -0.0103983 0.266136 1.68219 -0.0993839 0.266136 1.68219 0.0785874 0.266136 1.62528 -0.170745 0.266136 1.54305 -0.210347 0.266136 1.29232 -0.0103983 0.266136 1.31263 0.0785874 0.266136 1.36954 0.149948 0.266136 1.45177 0.189551 0.266136 1.54305 0.189551 0.266136 1.62528 0.149948 0.425438 1.54305 0.189551 0.425438 1.62528 0.149948 0.266136 1.54305 0.189551 0.266136 1.62528 0.149948 0.425438 1.45177 0.189551 0.266136 1.45177 0.189551 0.425438 1.36954 0.149948 0.266136 1.36954 0.149948 0.425438 1.31263 0.0785874 0.266136 1.31263 0.0785874 0.425438 1.29232 -0.0103983 0.266136 1.29232 -0.0103983 0.425438 1.31674 -0.103087 0.266136 1.31263 -0.099384 0.425438 1.36954 -0.170745 0.266136 1.36954 -0.170745 0.425438 1.45177 -0.210347 0.266136 1.45177 -0.210347 0.425438 1.54305 -0.210347 0.266136 1.54305 -0.210347 0.425438 1.62528 -0.170745 0.266136 1.62528 -0.170745 0.425438 1.68219 -0.0993839 0.266136 1.68219 -0.0993839 0.425438 1.7025 -0.0103983 0.425438 1.68219 -0.0993839 0.266136 1.7025 -0.0103983 0.266136 1.68219 -0.0993839 0.425438 1.68219 0.0785874 0.266136 1.68219 0.0785874 0.0867043 1.78396 0.327562 0 1.78694 0.333235 0.0556045 1.74786 0.366248 0 1.75443 0.362718 0.101255 1.75413 0.349395 0.113109 1.7262 0.374681 0.2413 1.70929 0.348421 0.252687 1.73443 0.317368 0.279162 1.70603 0.322693 -0.189205 1.77061 0.00106585 -0.253992 1.66645 0.00750331 -0.167284 1.74564 0.149553 -0.205013 1.66902 0.182557 -0.126853 1.55931 -0.295363 -0.240431 1.56002 -0.179045 -0.118735 1.68312 -0.244253 -0.214474 1.67297 -0.1555 -0.0892625 1.76306 -0.182311 -0.172889 1.75306 -0.111138 -0.246934 1.43465 -0.168463 -0.295062 1.54321 0.00997178 -0.290579 1.41521 0.0129353 -0.172889 1.75306 -0.111138 -0.0991004 1.80461 0.0636942 -0.0866592 1.77338 0.183908 0 1.81379 0.0680099 0 1.77618 0.198533 -0.0971722 1.80024 -0.0700966 0 1.80889 -0.0755043 -0.189205 1.77061 0.00106585 -0.167284 1.74564 0.149553 -0.172889 1.75306 -0.111138 -0.0892625 1.76306 -0.182311 0 1.76829 -0.205179 0 1.76829 -0.205179 0 1.68489 -0.278876 0 1.55859 -0.329797 0 1.43131 -0.330931 -0.13285 1.43543 -0.290784 -0.101161 1.23001 -0.150846 -0.15729 1.25673 -0.127271 -0.121778 1.31268 -0.241188 -0.220408 1.32189 -0.157434 0 1.21593 -0.176644 0 1.3054 -0.271179 -0.15729 1.25673 -0.127271 -0.248107 1.28919 0.00972873 -0.170968 1.21343 0.000788968 0 1.17041 -0.0243392 0 1.18029 0.169868 -0.0817894 1.18423 0.0285315 -0.0792986 1.19295 0.15416 -0.0836874 1.19887 -0.0543881 0 1.21593 -0.176644 -0.101161 1.23001 -0.150846 -0.170968 1.21343 0.000788968 -0.151286 1.21868 0.105794 -0.15729 1.25673 -0.127271 -0.0553531 1.68753 0.32137 0 1.69511 0.321143 -0.0556045 1.74786 0.366248 -0.113109 1.7262 0.374681 -0.11495 1.63807 0.305089 -0.279162 1.70603 0.322693 -0.281059 1.80241 0.235128 -0.307837 1.61223 0.236353 -0.318452 1.71066 0.119394 -0.2413 1.70929 0.348421 -0.249916 1.60125 0.262787 -0.243137 1.74691 0.177452 -0.297108 1.5841 0.00336099 -0.293007 1.74691 0.186246 -0.354485 1.5841 0.0134781 -0.242231 1.64831 0.267441 -0.288265 1.65242 0.271855 -0.296202 1.4855 0.0933504 -0.349742 1.48961 0.0990875 -0.293007 1.74691 0.186246 -0.354485 1.5841 0.0134781 -0.288265 1.65242 0.271855 -0.349742 1.48961 0.0990875 -0.296202 1.4855 0.0933504 -0.297108 1.5841 0.00336099 -0.242231 1.64831 0.267441 -0.243137 1.74691 0.177452 -0.455986 1.65618 -0.0868568 -0.425438 1.68219 -0.0993839 -0.455986 1.60728 -0.148172 -0.425438 1.62528 -0.170745 -0.455986 1.53662 -0.182199 -0.425438 1.54305 -0.210347 -0.455986 1.4582 -0.182199 -0.425438 1.45177 -0.210347 -0.455986 1.38754 -0.148172 -0.425438 1.36954 -0.170745 -0.425438 1.31674 -0.103087 -0.455986 1.34276 -0.0905604 -0.455986 1.32119 -0.0103983 -0.425438 1.29232 -0.0103983 -0.455986 1.33864 0.0660603 -0.425438 1.31263 0.0785874 -0.455986 1.38754 0.127375 -0.425438 1.36954 0.149948 -0.455986 1.4582 0.161403 -0.425438 1.45177 0.189551 -0.455986 1.53662 0.161403 -0.425438 1.54305 0.189551 -0.455986 1.60728 0.127375 -0.425438 1.62528 0.149948 -0.455986 1.65618 0.0660603 -0.425438 1.68219 0.0785874 -0.455986 1.67363 -0.0103983 -0.425438 1.7025 -0.0103983 -0.266136 1.31263 -0.099384 -0.266136 1.36954 -0.170745 -0.266136 1.29232 -0.0103983 -0.266136 1.7025 -0.0103983 -0.266136 1.68219 0.0785874 -0.266136 1.68219 -0.0993839 -0.266136 1.62528 0.149948 -0.266136 1.54305 0.189551 -0.266136 1.45177 0.189551 -0.266136 1.36954 0.149948 -0.266136 1.31263 0.0785874 -0.266136 1.45177 -0.210347 -0.266136 1.54305 -0.210347 -0.266136 1.62528 -0.170745 -0.425438 1.54305 0.189551 -0.266136 1.54305 0.189551 -0.425438 1.62528 0.149948 -0.266136 1.62528 0.149948 -0.425438 1.45177 0.189551 -0.266136 1.45177 0.189551 -0.425438 1.36954 0.149948 -0.266136 1.36954 0.149948 -0.425438 1.31263 0.0785874 -0.266136 1.31263 0.0785874 -0.425438 1.29232 -0.0103983 -0.266136 1.29232 -0.0103983 -0.425438 1.31674 -0.103087 -0.266136 1.31263 -0.099384 -0.425438 1.36954 -0.170745 -0.266136 1.36954 -0.170745 -0.425438 1.45177 -0.210347 -0.266136 1.45177 -0.210347 -0.425438 1.54305 -0.210347 -0.266136 1.54305 -0.210347 -0.425438 1.62528 -0.170745 -0.266136 1.62528 -0.170745 -0.425438 1.68219 -0.0993839 -0.266136 1.68219 -0.0993839 -0.425438 1.7025 -0.0103983 -0.266136 1.7025 -0.0103983 -0.425438 1.68219 -0.0993839 -0.266136 1.68219 -0.0993839 -0.425438 1.68219 0.0785874 -0.266136 1.68219 0.0785874 -0.0556045 1.74786 0.366248 -0.0867043 1.78396 0.327562 -0.113109 1.7262 0.374681 -0.101255 1.75413 0.349395 -0.252687 1.73443 0.317368 -0.2413 1.70929 0.348421 -0.279162 1.70603 0.322693 -0.281059 1.80241 0.235128 -0.253261 1.79395 0.262513 -0.184422 1.85536 0.2384 -0.184725 1.82832 0.262786 -0.184422 1.85536 0.2384 -0.198731 1.76416 0.0829193 0.0555715 1.85708 0.267441 0.0555636 1.88312 0.243887 0 1.8598 0.266751 0 1.88432 0.244908 0.0555636 1.88312 0.243887 0.0571593 1.8035 0.103761 0 1.88432 0.244908 -0.0555715 1.85708 0.267441 0 1.8598 0.266751 -0.0555636 1.88312 0.243887 0 1.88432 0.244908 -0.0555636 1.88312 0.243887 -0.0571593 1.8035 0.103761 -0.151286 1.21868 0.105794 -0.189689 1.27703 0.173372 0.189689 1.27703 0.173372 0.151286 1.21868 0.105794 0.0458105 0.303511 0.0178051 0.03188 0.486355 -0.035088 0.0537603 0.32388 -0.0222221 0.120785 0.257866 0.103309 0.118054 0.280257 0.109814 0.0601287 0.266599 0.0619079 0.0562103 0.284281 0.0682022 0.0483902 0.269191 0.0141578 0.185483 0.264569 0.057072 0.184437 0.286177 0.0634194 0.0544529 0.269868 -0.0345457 0.129621 0.269588 -0.0767448 0.203646 0.267328 -0.0163533 0.0458105 0.303511 0.0178051 0.0483902 0.269191 0.0141578 0.172909 0.0742068 0.0367215 0.12764 0.0808753 0.0573321 0.172359 0.0535168 0.0445587 0.127764 0.0622707 0.0644756 0.108784 0 0.0930407 0.147587 0 0.094059 0.171245 0 0.0651665 0.166129 0 -0.0362174 0.086936 0 0.0607894 0.0834867 0.0467596 0.0421858 0.082192 0.0667442 0.0351919 0.088637 0.000563445 -0.036127 0.129109 0 -0.06 0.166129 0 -0.0362174 0.086936 0 0.0607894 0.171245 0 0.0651665 0.108784 0 0.0930407 0.147587 0 0.094059 0.170874 0.0629126 -0.0339586 0.129744 0.0583615 -0.0699793 0.129109 0 -0.06 0.0851436 0.0577441 -0.0365604 0.088637 0.000563445 -0.036127 -0.0537603 0.32388 -0.0222221 -0.03188 0.486355 -0.035088 -0.0458105 0.303511 0.0178051 -0.185483 0.264569 0.057072 -0.120785 0.257866 0.103309 -0.184437 0.286177 0.0634194 -0.118054 0.280257 0.109814 -0.0601287 0.266599 0.0619079 -0.0562103 0.284281 0.0682022 -0.129621 0.269588 -0.0767448 -0.0544529 0.269868 -0.0345457 -0.203646 0.267328 -0.0163533 -0.0458105 0.303511 0.0178051 -0.0483902 0.269191 0.0141578 -0.0483902 0.269191 0.0141578 -0.172909 0.0742068 0.0367215 -0.172359 0.0535168 0.0445587 -0.12764 0.0808753 0.0573321 -0.127764 0.0622707 0.0644756 -0.0834867 0.0467596 0.0421858 -0.082192 0.0667442 0.0351919 -0.170874 0.0629126 -0.0339586 -0.129744 0.0583615 -0.0699793 -0.166129 0 -0.0362174 -0.129109 0 -0.06 -0.088637 0.00056343 -0.036127 -0.0851436 0.0577441 -0.0365604 -0.086936 0 0.0607894 -0.108784 0 0.0930407 -0.147587 0 0.094059 -0.171245 0 0.0651665 -0.129109 0 -0.06 -0.088637 0.00056343 -0.036127 -0.166129 0 -0.0362174 -0.086936 0 0.0607894 -0.171245 0 0.0651665 -0.108784 0 0.0930407 -0.147587 0 0.094059 0 1.09998 -0.105435 0.14548 1.10434 -0.0816517 -0.157146 1.00142 -0.0748804 -0.166444 0.985173 0.0821037 -0.189418 0.966748 -0.00149999 -0.141331 1.09285 0.0906054 -0.11886 1.15436 0.0381056 -0.12964 1.15921 -0.0371616 -0.14548 1.10434 -0.0816517 -0.12964 1.15921 -0.0371616 0.141331 1.09285 0.0906054 0.166444 0.985173 0.0821037 0.189418 0.966748 -0.00149999 0.11886 1.15436 0.0381056 0.12964 1.15921 -0.0371616 0.157146 1.00142 -0.0748804 0.12964 1.15921 -0.0371616 0.224415 1.14833 -0.0272423 0.388503 1.12747 -0.00710638 0.224732 1.10165 -0.0736535 0.394523 1.09934 -0.075703 0.223629 1.14767 0.0337273 0.227524 1.01278 0.0731427 0.235774 0.992941 -0.00376714 0.372292 1.02637 0.0624254 0.380362 0.994408 -0.0114527 0.235774 0.992941 -0.00376714 0.231459 1.01041 -0.0730685 0.380362 0.994408 -0.0114527 0.386955 1.0196 -0.0804208 0.231547 1.10171 0.0828712 0.374746 1.08969 0.0747467 0.174535 1.15609 0.0345528 0.178024 1.15675 -0.0304199 0.186453 1.10128 0.0865303 0.18683 1.10393 -0.0776526 0.12964 1.15921 -0.0371616 0.189418 0.966748 -0.00149999 0.157146 1.00142 -0.0748804 0.14548 1.10434 -0.0816517 -0.372292 1.02637 0.0624254 -0.374746 1.08969 0.0747467 -0.453258 1.02296 0.0703077 -0.457789 1.09006 0.0820476 -0.380362 0.994408 -0.0114527 -0.415566 0.99495 -0.00948517 -0.388503 1.12747 -0.00710638 -0.423912 1.12616 -0.0055516 -0.224415 1.14833 -0.0272423 -0.224732 1.10165 -0.0736535 -0.394523 1.09934 -0.075703 -0.223629 1.14767 0.0337273 -0.235774 0.992941 -0.00376714 -0.227524 1.01278 0.0731427 -0.235774 0.992941 -0.00376714 -0.380362 0.994408 -0.0114527 -0.231459 1.01041 -0.0730685 -0.386955 1.0196 -0.0804208 -0.231547 1.10171 0.0828712 -0.174535 1.15609 0.0345528 -0.178024 1.15675 -0.0304199 -0.186453 1.10128 0.0865303 -0.18683 1.10393 -0.0776526 -0.157146 1.00142 -0.0748804 -0.189418 0.966748 -0.00149999 -0.14548 1.10434 -0.0816517 -0.12964 1.15921 -0.0371616 -0.469686 0.987568 -0.00441787 -0.445872 1.01998 -0.0908611 -0.415566 0.99495 -0.00948517 -0.41511 1.02019 -0.0861674 -0.469686 0.987568 -0.00441787 -0.416701 1.09743 -0.0810518 -0.449031 1.09614 -0.0829072 -0.474924 1.12806 -0.00153317 -0.609875 1.03811 0.0579667 -0.611543 1.08334 0.0696514 -0.606179 1.00697 -0.00501814 -0.607536 1.03121 -0.0609815 -0.606179 1.00697 -0.00501814 -0.617049 1.07488 -0.0604981 -0.613029 1.10065 0.00250413 -0.646512 1.0327 -0.0584707 -0.652283 1.07201 -0.0578607 -0.655195 1.10328 0.00501362 -0.652283 1.07201 -0.0578607 -0.722332 1.05461 -0.0716498 -0.655195 1.10328 0.00501362 -0.750911 1.08236 0.0068536 -0.652499 1.0827 0.0680462 -0.760363 1.06382 0.0957033 -0.722486 1.04219 0.118288 -0.652499 1.0827 0.0680462 -0.689485 1.03939 0.1244 -0.711686 1.01667 -0.0693366 -0.646512 1.0327 -0.0584707 -0.643053 1.00913 -0.00600602 -0.643053 1.00913 -0.00600602 -0.728112 1.02314 0.0129282 -0.701339 1.00213 0.0312881 -0.649137 1.00453 0.0360027 -0.632947 1.04 0.0574403 -0.671653 1.00173 0.0897658 -0.632947 1.04 0.0574403 -0.643053 1.00913 -0.00600602 -0.632947 1.04 0.0574403 -0.671653 1.00173 0.0897658 -0.745852 0.978809 0.121489 -0.732146 0.97493 0.104599 -0.727772 0.977388 0.132729 -0.715442 0.970725 0.107221 -0.806204 1.00239 -0.0519948 -0.842572 1.01178 0.018932 -0.826065 1.01734 0.0816655 -0.726408 1.0104 0.0868225 -0.715442 0.970725 0.107221 -0.726408 1.0104 0.0868225 -0.732146 0.97493 0.104599 -0.753374 1.02626 0.0880973 -0.753374 1.02626 0.0880973 -0.818844 0.992172 0.02206 -0.818844 0.992172 0.02206 -0.826065 1.01734 0.0816655 0.469686 0.987568 -0.00441787 0.415566 0.99495 -0.00948518 0.445872 1.01998 -0.0908611 0.41511 1.02019 -0.0861674 0.453258 1.02296 0.0703077 0.415566 0.99495 -0.00948518 0.469686 0.987568 -0.00441787 0.457789 1.09006 0.0820476 0.416701 1.09743 -0.0810518 0.449031 1.09614 -0.0829072 0.423912 1.12616 -0.0055516 0.474924 1.12806 -0.00153317 0.617049 1.07488 -0.0604981 0.607536 1.03121 -0.0609815 0.613029 1.10065 0.00250413 0.611543 1.08334 0.0696514 0.609875 1.03811 0.0579667 0.606179 1.00697 -0.00501814 0.606179 1.00697 -0.00501814 0.655195 1.10328 0.00501362 0.652283 1.07201 -0.0578607 0.750911 1.08236 0.0068536 0.722332 1.05461 -0.0716498 0.655195 1.10328 0.00501362 0.652283 1.07201 -0.0578607 0.652499 1.0827 0.0680462 0.760363 1.06382 0.0957033 0.652499 1.0827 0.0680462 0.722486 1.04219 0.118288 0.689485 1.03939 0.1244 0.649137 1.00453 0.0360027 0.701339 1.00213 0.0312881 0.671653 1.00173 0.0897658 0.646512 1.0327 -0.0584707 0.646512 1.0327 -0.0584707 0.711686 1.01667 -0.0693366 0.643053 1.00913 -0.00600602 0.643053 1.00913 -0.00600602 0.728112 1.02314 0.0129282 0.632947 1.04 0.0574403 0.643053 1.00913 -0.00600602 0.632947 1.04 0.0574403 0.632947 1.04 0.0574403 0.671653 1.00173 0.0897658 0.745852 0.978809 0.121489 0.727772 0.977388 0.132729 0.732146 0.97493 0.104599 0.715442 0.970725 0.107221 0.806204 1.00239 -0.0519948 0.842572 1.01178 0.018932 0.818844 0.992172 0.02206 0.826065 1.01734 0.0816655 0.753374 1.02626 0.0880973 0.726408 1.0104 0.0868225 0.732146 0.97493 0.104599 0.715442 0.970725 0.107221 0.726408 1.0104 0.0868225 0.753374 1.02626 0.0880973 0.818844 0.992172 0.02206 0.826065 1.01734 0.0816655 + + + + + + + + + + 0 -0.111548 0.993759 0.550558 -0.0215313 0.834519 0 0.0273125 0.999627 -0.550558 -0.0215313 0.834519 0 -0.0942885 -0.995545 0 0.0380723 -0.999275 0.265849 0.0217992 -0.963768 -0.265849 0.0217992 -0.963768 0 -0.31246 0.949931 -0.288172 -0.325051 0.900721 0 -0.88278 0.469787 -0.986134 0.00912128 0.165701 -0.974381 0.173861 0.142668 -0.986134 0.00912128 0.165701 -0.974381 0.173861 0.142668 -0.830651 0.0113096 -0.556679 -0.838214 0.17214 -0.51746 -0.991539 0.124675 0.0361485 0 -0.404438 -0.914566 -0.0499212 -0.288548 -0.956163 0.466784 -0.14552 -0.872317 0.0499212 -0.288548 -0.956163 0.837908 -0.465675 -0.284705 0 -0.930161 -0.367152 -0.466784 -0.14552 -0.872317 -0.837908 -0.465675 -0.284705 0.838214 0.17214 -0.51746 0.991539 0.124675 0.0361485 0.974381 0.173861 0.142668 -0.973927 -0.0948723 0.206073 -0.817246 -0.119127 -0.563842 0.830651 0.0113097 -0.556679 0.986134 0.00912136 0.165701 0.817246 -0.119127 -0.563842 0.973927 -0.0948723 0.206073 0.288172 -0.325051 0.900721 0.0603546 -0.17933 0.981936 -0.821454 -0.474558 0.316241 -0.779849 -0.181203 0.599168 0.0924704 -0.197768 0.975878 0 -0.972606 0.232461 0.986134 0.00912136 0.165701 0.974381 0.173861 0.142668 0.649185 -0.120785 0.750979 0.973927 -0.0948723 0.206073 0.778981 -0.154753 0.607652 0.821454 -0.474558 0.316241 -0.0603546 -0.17933 0.981936 0.779849 -0.181203 0.599168 -0.649185 -0.120785 0.750979 -0.0924705 -0.197768 0.975878 -0.973927 -0.0948723 0.206073 -0.778981 -0.154753 0.607652 0.258762 -0.0908807 -0.961656 -0.0499212 -0.288548 -0.956163 0.466784 -0.14552 -0.872317 0.91276 -0.0631559 -0.403585 0.817246 -0.119127 -0.563842 0.0499212 -0.288548 -0.956163 -0.258762 -0.0908807 -0.961656 -0.466784 -0.14552 -0.872317 -0.817246 -0.119127 -0.563842 -0.91276 -0.0631559 -0.403585 -0.641466 0.0797539 -0.762994 -0.988641 -0.128493 -0.0779601 -0.586959 0.0750022 0.806135 -0.991539 0.124675 0.0361485 0.374818 0.166543 0.912017 0 0.527422 0.849603 0 0.145065 0.989422 0.586959 0.0750022 0.806135 -0.374818 0.166543 0.912017 0.522043 0.61795 0.587885 0 0.308973 0.951071 -0.522043 0.61795 0.587885 0.641466 0.0797539 -0.762994 0.988641 -0.128493 -0.0779601 0 -0.0293574 -0.999569 0.991539 0.124675 0.0361485 0 0.0457861 0.998951 0.917513 -0.00503875 0.397675 -0.917513 -0.00503875 0.397675 0.553723 0.504169 -0.662725 0 0.103954 -0.994582 0.903218 -0.037864 -0.427508 0 -0.0293574 -0.999569 -0.553723 0.504169 -0.662725 -0.903218 -0.037864 -0.427508 0.553723 0.504169 -0.662725 0.903218 -0.037864 -0.427508 -0.553723 0.504169 -0.662725 -0.903218 -0.037864 -0.427508 0.812294 0.381169 0.441463 0.924633 0.378997 0.0376306 0.656708 0.668182 0.349668 0.717726 0.696134 0.0163374 0.50779 0.166233 -0.845291 0.867574 0.145683 -0.475491 0.516535 -0.173039 -0.8386 0.8792 -0.134 -0.457222 0.807472 0.40934 -0.424771 0.467266 0.465417 -0.751698 0.650393 0.687817 -0.322332 0.325673 0.794258 -0.512924 0.991862 0.111473 0.0615063 0.650393 0.687817 -0.322332 0 0.815271 0.57908 0.281873 0.808647 0.516369 0 0.993663 0.112399 0.247749 0.958398 0.141755 0 0.985941 -0.167094 0.225017 0.957483 -0.180538 0.717726 0.696134 0.0163374 0.656708 0.668182 0.349668 0.325673 0.794258 -0.512924 0.650393 0.687817 -0.322332 0 0.822511 -0.568749 0 0.491967 -0.870614 0 0.822511 -0.568749 0 0.187614 -0.982243 0.988239 -0.140745 0.0597881 0 -0.216248 -0.976338 0.793853 -0.426737 -0.433235 0.557156 -0.750753 -0.354891 0.440028 -0.501395 -0.744969 0.322915 -0.828184 -0.458081 0 -0.564294 -0.825574 0 -0.853643 -0.520858 0.869411 -0.493592 -0.0221789 0.557156 -0.750753 -0.354891 0.590036 -0.804303 -0.0703959 0.294091 -0.920811 0.256159 0 -0.960824 0.277159 0.237846 -0.970685 0.0346477 0 -0.992232 -0.124399 0 -0.853643 -0.520858 0.285625 -0.922329 -0.260245 0.322915 -0.828184 -0.458081 0.590036 -0.804303 -0.0703959 0.556922 -0.807304 0.195189 0.557156 -0.750753 -0.354891 -0.240512 -0.586144 0.773686 -0.212301 -0.586372 0.781726 0 -0.585535 0.810647 0 -0.585535 0.810647 -0.0447762 -0.615698 0.786709 0.0263159 -0.617025 0.786503 0.839958 0.52558 -0.135046 0.793998 0.578196 -0.187768 0.944871 0.0013139 0.32744 0.910441 -0.0828743 0.405251 0.22326 -0.594145 0.772753 0.150929 -0.606767 0.780419 0.317492 0.825284 -0.467018 0.272003 0.837322 -0.474243 0.421262 0.629884 0.652521 0.237339 0.665443 0.707711 0.354173 0.62796 0.692984 0.258161 0.634451 0.728577 0.116193 0.743145 -0.658965 0.116193 0.743145 -0.658965 0.116193 0.743145 -0.658965 0.116193 0.743145 -0.658965 -0.0092443 -0.730579 0.682766 -0.0092443 -0.730579 0.682766 -0.0092443 -0.730579 0.682766 -0.0092443 -0.730579 0.682766 0.967256 0.142031 0.210342 0.967256 0.142031 0.210342 0.967256 0.142031 0.210342 0.967256 0.142031 0.210342 -0.975268 -0.144041 -0.167643 -0.975268 -0.144041 -0.167643 -0.975268 -0.144041 -0.167643 -0.975268 -0.144041 -0.167643 0.805125 0.53437 -0.257339 0.958632 0.177475 -0.222546 0.129851 0.893341 -0.43021 0.129851 0.618211 -0.775212 0.805124 0.131979 -0.578236 0.129851 0.220637 -0.966674 0.984232 -0.0393604 -0.172449 0.129851 -0.220637 -0.966674 0.803688 -0.37031 -0.465786 0.128991 -0.617367 -0.776028 0.991203 -0.119183 -0.0575499 0.135671 -0.891089 -0.433076 0.81358 -0.581255 -0.0152065 0.135029 -0.990758 -0.0128336 0.960595 -0.250426 0.120599 0.129851 -0.893341 0.43021 0.805124 -0.369796 0.463709 0.129851 -0.618211 0.775212 0.991547 -0.0288719 0.126497 0.129851 -0.220637 0.966674 0.805124 0.131978 0.578236 0.129851 0.220637 0.966674 0.958633 0.177474 0.222546 0.129851 0.618211 0.775213 0.805124 0.534371 0.257338 0.129851 0.893341 0.43021 0.989414 0.145119 0 0.129851 0.991534 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.129851 0.220637 0.966674 0.129851 0.618211 0.775213 0 0.222521 0.974928 0 0.623489 0.781832 0.129851 -0.220637 0.966674 0 -0.222521 0.974928 0.129851 -0.618211 0.775212 0 -0.62349 0.781832 0.129851 -0.893341 0.43021 0 -0.900969 0.433883 0.135029 -0.990758 -0.0128336 0.00507505 -0.999922 -0.0114368 0.135671 -0.891089 -0.433076 0.00665724 -0.902816 -0.429976 0.128991 -0.617367 -0.776028 0.00148253 -0.62275 -0.782419 0.129851 -0.220637 -0.966674 0 -0.216248 -0.976338 0.129851 0.220637 -0.966674 0 0.222521 -0.974928 0.129851 0.618211 -0.775212 0 0.62349 -0.781832 0.129851 0.893341 -0.43021 0 0.900969 -0.433884 0.129851 0.991534 0 0.129851 0.893341 -0.43021 0 1 0 0 0.900969 -0.433884 0.129851 0.893341 0.43021 0 0.900969 0.433884 0.137246 0.663845 0.735168 0 0.675053 0.737769 0.0904042 0.685492 0.722446 0 0.691655 0.722228 0.219096 0.669229 0.710021 0.223347 0.70351 0.674678 0.248379 0.702797 0.666622 0.317894 0.653534 0.686904 0.482735 0.585841 0.650966 -0.717726 0.696133 0.0163376 -0.921629 0.387168 0.0264742 -0.656708 0.668182 0.349668 -0.80747 0.398785 0.434699 -0.50779 0.166233 -0.84529 -0.867574 0.145683 -0.475491 -0.467266 0.465417 -0.751698 -0.807472 0.40934 -0.424771 -0.325673 0.794258 -0.512923 -0.650393 0.687817 -0.322331 -0.8792 -0.134 -0.457222 -0.992391 0.105945 0.0627392 -0.98821 -0.137596 0.0671471 -0.650393 0.687817 -0.322331 -0.247749 0.958398 0.141755 -0.281873 0.808647 0.516369 0 0.993663 0.112399 0 0.815271 0.57908 -0.225017 0.957483 -0.180538 0 0.985941 -0.167094 -0.717726 0.696133 0.0163376 -0.656708 0.668182 0.349668 -0.650393 0.687817 -0.322331 -0.325673 0.794258 -0.512923 0 0.822511 -0.568749 0 0.822511 -0.568749 0 0.491967 -0.870614 0 0.187614 -0.982243 0 -0.216248 -0.976338 -0.516535 -0.173039 -0.8386 -0.322915 -0.828184 -0.458081 -0.557156 -0.750753 -0.354891 -0.440028 -0.501395 -0.744969 -0.793853 -0.426737 -0.433235 0 -0.853643 -0.520858 0 -0.564294 -0.825574 -0.557156 -0.750753 -0.354891 -0.869411 -0.493592 -0.022179 -0.590036 -0.804303 -0.0703962 0 -0.992232 -0.124399 0 -0.960824 0.277159 -0.237846 -0.970685 0.0346476 -0.294091 -0.920811 0.256158 -0.285625 -0.922329 -0.260245 0 -0.853643 -0.520858 -0.322915 -0.828184 -0.458081 -0.590036 -0.804303 -0.0703962 -0.556921 -0.807304 0.195189 -0.557156 -0.750753 -0.354891 0.240512 -0.586144 0.773686 0 -0.585535 0.810647 0.2123 -0.586372 0.781726 0.0420881 -0.617442 0.78549 -0.0263159 -0.617025 0.786503 -0.910441 -0.0828743 0.405252 -0.793998 0.578196 -0.187768 -0.944871 0.00131388 0.32744 -0.839958 0.52558 -0.135046 -0.150929 -0.606767 0.780419 -0.22326 -0.594144 0.772753 -0.116193 0.743145 -0.658965 -0.116193 0.743145 -0.658965 -0.116193 0.743145 -0.658965 -0.116193 0.743145 -0.658965 0.00924432 -0.730579 0.682766 0.00924432 -0.730579 0.682766 0.00924432 -0.730579 0.682766 0.00924432 -0.730579 0.682766 -0.967256 0.142032 0.210342 -0.967256 0.142032 0.210342 -0.967256 0.142032 0.210342 -0.967256 0.142032 0.210342 0.975268 -0.144041 -0.167643 0.975268 -0.144041 -0.167643 0.975268 -0.144041 -0.167643 0.975268 -0.144041 -0.167643 -0.805125 0.53437 -0.257339 -0.129851 0.893341 -0.43021 -0.989367 0.0906817 -0.113711 -0.129851 0.618211 -0.775212 -0.805124 0.131979 -0.578236 -0.129851 0.220637 -0.966674 -0.956509 -0.0649099 -0.284389 -0.129851 -0.220637 -0.966674 -0.803688 -0.37031 -0.465786 -0.128991 -0.617367 -0.776028 -0.135671 -0.891089 -0.433076 -0.991776 -0.115256 -0.0556536 -0.81358 -0.581255 -0.0152065 -0.135029 -0.990758 -0.0128336 -0.960595 -0.250426 0.120599 -0.129851 -0.893341 0.43021 -0.805124 -0.369796 0.463709 -0.129851 -0.618211 0.775212 -0.99084 -0.0300489 0.131653 -0.129851 -0.220637 0.966674 -0.805124 0.131979 0.578236 -0.129851 0.220637 0.966674 -0.985039 0.107445 0.134732 -0.129851 0.618211 0.775213 -0.805125 0.53437 0.257338 -0.129851 0.893341 0.43021 -0.958633 0.284647 0 -0.129851 0.991534 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -0.129851 0.220637 0.966674 0 0.222521 0.974928 -0.129851 0.618211 0.775213 0 0.623489 0.781832 -0.129851 -0.220637 0.966674 0 -0.222521 0.974928 -0.129851 -0.618211 0.775212 0 -0.62349 0.781832 -0.129851 -0.893341 0.43021 0 -0.900969 0.433883 -0.135029 -0.990758 -0.0128336 -0.00507505 -0.999922 -0.0114368 -0.135671 -0.891089 -0.433076 -0.00665725 -0.902816 -0.429976 -0.128991 -0.617367 -0.776028 0.00148253 -0.62275 -0.782419 -0.129851 -0.220637 -0.966674 0 -0.216248 -0.976338 -0.129851 0.220637 -0.966674 0 0.222521 -0.974928 -0.129851 0.618211 -0.775212 0 0.62349 -0.781832 -0.129851 0.893341 -0.43021 0 0.900969 -0.433884 -0.129851 0.991534 0 0 1 0 -0.129851 0.893341 -0.43021 0 0.900969 -0.433884 -0.129851 0.893341 0.43021 0 0.900969 0.433884 -0.0904042 0.685492 0.722446 -0.137246 0.663846 0.735168 -0.223347 0.70351 0.674678 -0.219096 0.669229 0.710021 -0.317894 0.653534 0.686904 -0.248379 0.702797 0.666622 -0.482735 0.585841 0.650966 -0.421262 0.629884 0.652522 -0.354173 0.62796 0.692985 -0.237339 0.665443 0.707712 -0.258161 0.634451 0.728578 -0.272003 0.837322 -0.474243 -0.317492 0.825284 -0.467018 0.122842 0.665574 0.736153 0.137246 0.663845 0.735168 0 0.675053 0.737769 0 0.675053 0.737769 0.137784 0.861392 -0.488897 0.127471 0.862228 -0.490218 0 0.868891 -0.495004 -0.122842 0.665574 0.736153 0 0.675053 0.737769 -0.137246 0.663846 0.735168 0 0.675053 0.737769 -0.137784 0.861392 -0.488897 -0.127471 0.862228 -0.490218 -0.556921 -0.807304 0.195189 -0.774651 -0.547889 0.315807 0.774651 -0.547889 0.315807 0.556922 -0.807304 0.195189 -0.99554 -0.0943022 0.00285379 -0.837908 -0.465675 -0.284705 -0.699111 -0.053557 -0.713005 0 -0.222521 0.974928 0.0447045 -0.196966 0.979391 -0.709226 -0.207542 0.673739 -0.762765 -0.192745 0.617283 -0.991868 -0.125137 0.0232124 0.866766 -0.138213 0.47918 0.846103 -0.0674113 0.52874 -0.729088 -0.00443721 -0.684406 0.157386 0.0731632 -0.984823 0.937052 -0.00780602 -0.349103 -0.99554 -0.0943022 0.00285379 -0.991868 -0.125137 0.0232124 0.901253 -0.129413 0.413516 0.000556078 -0.173357 0.984859 0.943559 0.127095 0.305848 -0.0266671 0.436447 0.899335 -0.461957 0.414452 0.784108 0.40115 0.427012 0.810395 0.841036 0.260448 0.474158 0.881209 -0.0742156 -0.466864 -0.846608 0.242386 0.473819 -0.944304 0.114834 0.308389 -0.865071 -0.166822 0.473098 -0.283836 -0.944489 -0.165465 0.00847739 -0.943963 -0.329944 -0.00314337 -0.999995 -0.00109759 -0.00314337 -0.999995 -0.00109759 -0.00314337 -0.999995 -0.00109759 -0.00314337 -0.999995 -0.00109759 -0.00314337 -0.999995 -0.00109759 0.96281 -0.0995144 -0.251184 0.0441479 -0.0733616 -0.996328 0.00847739 -0.943963 -0.329944 -0.881886 -0.119044 -0.456187 -0.283836 -0.944489 -0.165465 0.699111 -0.0535569 -0.713005 0.837908 -0.465675 -0.284705 0.99554 -0.0943022 0.00285372 -0.866766 -0.138213 0.47918 0 -0.222521 0.974928 -0.846103 -0.0674113 0.52874 -0.0447044 -0.196966 0.979391 0.709226 -0.207542 0.673739 0.762766 -0.192745 0.617283 -0.157386 0.0731633 -0.984823 0.729088 -0.00443722 -0.684406 -0.937052 -0.00780602 -0.349103 0.99554 -0.0943022 0.00285372 0.991868 -0.125137 0.0232124 0.991868 -0.125137 0.0232124 -0.901253 -0.129413 0.413516 -0.943559 0.127095 0.305848 0.000556078 -0.173357 0.984859 0.0266672 0.436447 0.899335 0.944304 0.114834 0.308389 0.865072 -0.166822 0.473098 -0.96281 -0.0995144 -0.251184 -0.0441479 -0.0733616 -0.996328 -0.881209 -0.0742156 -0.466864 -0.0342707 -0.101815 -0.994213 0.859591 -0.0890394 -0.503165 0.881886 -0.119044 -0.456187 0.846608 0.242386 0.473819 0.461957 0.414452 0.784108 -0.40115 0.427012 0.810395 -0.841036 0.260448 0.474158 -0.00314337 -0.999995 -0.00109759 -0.00314337 -0.999995 -0.00109759 -0.00314337 -0.999995 -0.00109759 -0.00314337 -0.999995 -0.00109759 -0.00314337 -0.999995 -0.00109759 -0.00314337 -0.999995 -0.00109759 -0.00314337 -0.999995 -0.00109759 0 0.276213 -0.961096 0.17628 0.260633 -0.949208 -0.465557 -0.104792 -0.878792 -0.826459 0.0232008 0.562518 -0.988641 -0.128493 -0.0779601 -0.213966 0.438634 0.872822 -0.110019 0.873068 0.475024 -0.140432 0.885701 -0.442507 -0.17628 0.260633 -0.949208 -0.140432 0.885701 -0.442507 0.213966 0.438634 0.872822 0.826459 0.0232008 0.562518 0.988641 -0.128493 -0.0779601 0.110019 0.873068 0.475025 0.140432 0.885701 -0.442506 0.465557 -0.104792 -0.878792 0.140432 0.885701 -0.442506 0.121464 0.913834 -0.387497 0.104508 0.994371 0.0174595 0.0480035 0.459132 -0.88707 0.00793565 0.479626 -0.877437 0.156844 0.896829 0.413639 0.172665 -0.596301 0.783972 0.148893 -0.988778 0.012227 0.0300563 -0.632446 0.774021 0.024638 -0.999044 0.036122 0.148893 -0.988778 0.012227 0.0485828 -0.51803 -0.853982 0.024638 -0.999044 0.036122 -0.0281275 -0.483598 -0.874838 0.137454 0.457244 0.878655 0.0817401 0.44767 0.890455 0.0580016 0.907865 0.415232 0.111088 0.929009 -0.35299 0.0945292 0.32265 0.941786 0.0958158 0.278316 -0.955698 0.140432 0.885701 -0.442506 0.988641 -0.128493 -0.0779601 0.465557 -0.104792 -0.878792 0.17628 0.260633 -0.949208 -0.0300563 -0.632446 0.774021 -0.0817401 0.44767 0.890455 -0.0447762 -0.615698 0.786709 -0.0589732 0.49046 0.869466 -0.024638 -0.999044 0.0361218 0.0704917 -0.995261 0.0669757 -0.104508 0.994371 0.0174581 0.0151637 0.995291 0.0957341 -0.121464 0.913834 -0.387497 -0.0480035 0.459131 -0.887071 -0.00793595 0.479625 -0.877438 -0.156844 0.896829 0.413641 -0.148893 -0.988778 0.0122268 -0.172665 -0.596302 0.783971 -0.148893 -0.988778 0.0122268 -0.024638 -0.999044 0.0361218 -0.0485828 -0.51803 -0.853982 0.0281275 -0.483598 -0.874838 -0.137454 0.457244 0.878655 -0.058001 0.907865 0.415232 -0.111087 0.929009 -0.352991 -0.0945292 0.32265 0.941786 -0.0958153 0.278316 -0.955699 -0.465557 -0.104792 -0.878792 -0.988641 -0.128493 -0.0779601 -0.17628 0.260633 -0.949208 -0.140432 0.885701 -0.442507 -0.0977213 -0.995111 0.0143365 -0.103007 -0.554663 -0.825675 0.0704917 -0.995261 0.0669757 0.12092 -0.640608 -0.758288 -0.0977213 -0.995111 0.0143365 0.0747998 0.643192 -0.762043 -0.136483 0.598076 -0.789733 -0.13184 0.990561 -0.0375055 -0.10902 -0.648381 0.75347 -0.113044 0.607203 0.786464 -0.129803 -0.991109 0.0292222 -0.1622 -0.554733 -0.816065 -0.129803 -0.991109 0.0292222 -0.173288 0.628614 -0.758166 -0.13184 0.990561 -0.0375055 0.116428 -0.507302 -0.853867 -0.085564 0.745375 -0.661132 -0.127166 0.99025 -0.056867 -0.085564 0.745375 -0.661132 -0.318038 0.701361 -0.637922 -0.127166 0.99025 -0.056867 -0.409423 0.903094 -0.129596 0.074533 0.865629 0.495107 -0.392712 0.849807 0.351577 -0.241825 0.565731 0.788333 0.074533 0.865629 0.495107 0.394397 0.332049 0.856851 0.147834 -0.86646 -0.476856 0.116428 -0.507302 -0.853867 -0.00457564 -0.996593 -0.082344 -0.00457564 -0.996593 -0.082344 0.108224 -0.99285 0.0503647 -0.247557 -0.94587 -0.209871 0.490079 -0.869403 0.0629433 0.500231 -0.423484 0.755268 0.695195 -0.514173 0.502325 0.500231 -0.423484 0.755268 -0.00457564 -0.996593 -0.082344 0.500231 -0.423484 0.755268 0.695195 -0.514173 0.502325 -0.870843 0.105424 0.480124 -0.622334 -0.360012 -0.695048 0.216741 -0.236399 0.947174 0.614348 -0.784212 0.087106 -0.658401 -0.13675 -0.74014 -0.703347 0.690988 -0.166851 -0.798121 0.308019 0.51781 -0.692778 -0.677219 -0.247858 0.614348 -0.784212 0.087106 -0.692778 -0.677219 -0.247858 -0.622334 -0.360012 -0.695048 -0.00539822 -0.876427 0.481505 -0.00539822 -0.876427 0.481505 0.123687 -0.984544 0.123993 0.123687 -0.984544 0.123993 -0.798121 0.308019 0.51781 0.0977213 -0.995111 0.0143371 -0.0704917 -0.995261 0.0669758 0.103007 -0.554664 -0.825674 -0.12092 -0.640608 -0.758287 0.0420881 -0.617442 0.78549 -0.0704917 -0.995261 0.0669758 0.0977213 -0.995111 0.0143371 0.0589732 0.49046 0.869466 -0.0747998 0.643192 -0.762043 0.136483 0.598076 -0.789733 -0.0151637 0.995291 0.0957343 0.13184 0.990561 -0.0375049 0.173288 0.628615 -0.758165 0.1622 -0.554733 -0.816065 0.13184 0.990561 -0.0375049 0.113044 0.607203 0.786464 0.10902 -0.648381 0.75347 0.129803 -0.991109 0.0292226 0.129803 -0.991109 0.0292226 0.127166 0.99025 -0.0568667 0.085564 0.745375 -0.661132 0.409423 0.903094 -0.129596 0.318038 0.701361 -0.637922 0.127166 0.99025 -0.0568667 0.085564 0.745375 -0.661132 -0.0745331 0.865629 0.495108 0.392712 0.849807 0.351577 -0.0745331 0.865629 0.495108 0.241826 0.565731 0.788333 -0.394398 0.332049 0.856851 -0.490079 -0.869403 0.062943 0.247557 -0.94587 -0.209872 -0.695195 -0.514173 0.502325 -0.116428 -0.507302 -0.853867 -0.116428 -0.507302 -0.853867 -0.147833 -0.86646 -0.476856 -0.00457564 -0.996593 -0.082344 -0.00457564 -0.996593 -0.082344 -0.108224 -0.99285 0.0503645 -0.500231 -0.423484 0.755268 -0.00457564 -0.996593 -0.082344 -0.500231 -0.423484 0.755268 -0.500231 -0.423484 0.755268 -0.695195 -0.514173 0.502325 0.870842 0.105425 0.480125 -0.21674 -0.236399 0.947174 0.622334 -0.360012 -0.695048 -0.614348 -0.784212 0.0871063 0.658402 -0.136749 -0.74014 0.703347 0.690988 -0.166851 -0.123687 -0.984544 0.123993 0.798121 0.308019 0.51781 0.00539836 -0.876427 0.481505 0.692778 -0.677218 -0.247858 0.622334 -0.360012 -0.695048 -0.614348 -0.784212 0.0871063 0.692778 -0.677218 -0.247858 0.00539836 -0.876427 0.481505 -0.123687 -0.984544 0.123993 0.798121 0.308019 0.51781 + + + + + + + + + + 0.00738887 0.376952 0.110937 0.389278 0.00701752 0.4417 0.110937 0.389278 0.32836 0.215144 0.328251 0.305274 0.265263 0.224882 0.265263 0.224882 0.00738887 0.358813 0.0412601 0.337799 0.00738887 0.336218 0.170689 0.382231 0.167769 0.412366 0.177526 0.21721 0.176946 0.239856 0.21268 0.22513 0.213863 0.25103 0.182092 0.286633 0.322579 0.205236 0.285625 0.201184 0.255457 0.203798 0.285625 0.201184 0.287339 0.191274 0.317454 0.19066 0.255457 0.203798 0.298267 0.187277 0.213863 0.25103 0.182092 0.286633 0.176946 0.239856 0.179081 0.204185 0.217926 0.204465 0.21268 0.22513 0.177526 0.21721 0.217926 0.204465 0.179081 0.204185 0.0412601 0.337799 0.0510353 0.323244 0.0297248 0.31353 0.0307785 0.18947 0.0820723 0.178996 0.0382721 0.312654 0.170689 0.382231 0.167769 0.412366 0.118225 0.349857 0.171117 0.358685 0.146167 0.18593 0.0297248 0.31353 0.0510353 0.323244 0.0412798 0.189584 0.118225 0.349857 0.0820723 0.178996 0.171117 0.358685 0.146167 0.18593 0.262305 0.221308 0.285001 0.349536 0.252779 0.355632 0.185146 0.201757 0.211654 0.357025 0.282657 0.349531 0.262305 0.221308 0.252779 0.355632 0.211654 0.357025 0.185119 0.201757 0.227622 0.299298 0.182554 0.381829 0.0988397 0.445476 0.169743 0.462265 0.0565733 0.541144 0.00738887 0.605574 0.00738887 0.533438 0.0988397 0.445476 0.0565733 0.541144 0.0438894 0.690053 0.00738887 0.673326 0.0438894 0.690053 0.227622 0.299298 0.182554 0.381829 0.299115 0.415482 0.169743 0.462265 0.00738887 0.776923 0.0360515 0.776923 0.0360515 0.776923 0.255821 0.552742 0.32836 0.552742 0.255821 0.587349 0.32836 0.587349 0.255821 0.552742 0.255821 0.587349 0.0612073 0.73158 0.058972 0.776923 0.0612073 0.73158 0.058972 0.776923 0.150538 0.292036 0.115896 0.290386 0.144762 0.308337 0.115389 0.313234 0.0483937 0.266591 0.0715965 0.266599 0.0501857 0.237784 0.0728084 0.237777 0.0748854 0.292146 0.0504219 0.294416 0.0689273 0.310459 0.0465009 0.312558 0.116626 0.264036 0.087262 0.309917 0.0990555 0.211327 0.0788436 0.211172 0.100128 0.242317 0.0770084 0.241342 0.0998098 0.267337 0.0768063 0.265149 0.0551424 0.248048 0.0590041 0.210916 0.0781466 0.286711 0.0591839 0.270756 0.0993486 0.291654 0.0193828 0.294609 0.0228954 0.313794 0.0173379 0.266326 0.116363 0.23655 0.0171639 0.236565 0.0724379 0.210432 0.0641016 0.188423 0.0514967 0.206886 0.0512487 0.180983 0.0193907 0.203794 0.0239591 0.176334 0.116436 0.207188 0.0809369 0.189369 0.115336 0.182779 0.0791717 0.280559 0.101483 0.282248 0.078363 0.255239 0.101821 0.244425 0.10094 0.217675 0.0767258 0.237622 0.0706289 0.21836 0.051686 0.249184 0.0578406 0.271811 0.0529852 0.221111 0.025183 0.969753 0.0254918 0.953528 0.0086871 0.974312 0.00809181 0.957854 0.0448199 0.950442 0.0433201 0.973786 0.125459 0.964579 0.129979 0.935211 0.0926121 0.962298 0.0948542 0.93801 0.080759 0.967216 0.0833798 0.939115 0.16441 0.975757 0.163225 0.934993 0.366464 0.0672811 0.411861 0.084311 0.380398 0.0568613 0.413161 0.0687699 0.0585956 0.935346 0.0464877 0.935398 0.0592882 0.985839 0.0461595 0.985907 0.0338504 0.985903 0.0334496 0.935416 0.0211055 0.985762 0.022173 0.935354 0.0338504 0.985903 0.0461595 0.985907 0.0334496 0.935416 0.0464877 0.935398 0.0702901 0.985843 0.0698905 0.935403 0.0592882 0.985839 0.0585956 0.935346 0.45735 0.318664 0.423212 0.292008 0.450627 0.332596 0.411357 0.301463 0.404825 0.252795 0.389741 0.256249 0.404218 0.209425 0.389585 0.206131 0.423546 0.170633 0.411531 0.161133 0.455004 0.145418 0.448703 0.132328 0.499458 0.134034 0.499539 0.118657 0.541783 0.143313 0.548363 0.129677 0.57536 0.170682 0.587448 0.16103 0.594739 0.209453 0.609348 0.20612 0.594101 0.252795 0.609181 0.256249 0.575711 0.292008 0.587567 0.301463 0.541574 0.318664 0.548297 0.332596 0.499465 0.328955 0.499462 0.343915 0.0705452 0.987182 0.0799344 0.976611 0.0581755 0.99417 0.0196704 0.962681 0.0220009 0.976625 0.0219181 0.94865 0.0314737 0.987174 0.0439719 0.993941 0.0823449 0.96268 0.0800685 0.948688 0.0705488 0.938181 0.0581939 0.931309 0.0440398 0.932137 0.0309567 0.93769 0.0293887 0.9296 0.0226615 0.9296 0.0293887 0.97875 0.0226615 0.97875 0.0361158 0.9296 0.0361158 0.97875 0.042843 0.9296 0.042843 0.97875 0.0495733 0.929602 0.049567 0.978749 0.056314 0.92961 0.0562765 0.978749 0.0634127 0.929633 0.0630224 0.978767 0.0697448 0.929607 0.0697564 0.978745 0.0764779 0.929602 0.0764798 0.978748 0.0832061 0.9296 0.0832061 0.97875 0.0899322 0.929612 0.0899322 0.978738 0.0965809 0.929672 0.0965809 0.978678 0.00920821 0.929612 0.00255948 0.929672 0.00920821 0.978738 0.00255948 0.978678 0.0159343 0.9296 0.0159343 0.97875 0.454838 0.0359233 0.493095 0.0360762 0.468349 0.0130712 0.493138 0.0166336 0.447946 0.0194712 0.442549 0.00301882 0.384504 0.00413884 0.379428 0.0211048 0.366551 0.0100939 0.115011 0.313331 0.115015 0.290038 0.147614 0.308876 0.151517 0.292113 0.0476738 0.266797 0.0726574 0.266999 0.0494984 0.294424 0.0755243 0.292259 0.0467263 0.312825 0.0705753 0.31114 0.0734005 0.238281 0.115391 0.26393 0.116115 0.238251 0.0875148 0.310243 0.0770867 0.241578 0.0788998 0.210827 0.10014 0.242362 0.0990591 0.211109 0.0766726 0.265521 0.099826 0.267378 0.0552716 0.24853 0.0571891 0.208641 0.058591 0.271487 0.0775859 0.286626 0.0992772 0.291559 0.0230798 0.313829 0.0193062 0.294586 0.0173636 0.266332 0.0172356 0.236572 0.0491272 0.238082 0.0531761 0.180301 0.0664345 0.18816 0.0508666 0.207164 0.0740854 0.211507 0.0264511 0.175721 0.0193667 0.203764 0.0816017 0.188845 0.116712 0.208955 0.116457 0.182598 0.101913 0.24437 0.101505 0.28239 0.0783155 0.255212 0.0793822 0.281413 0.0767075 0.237803 0.100669 0.217433 0.0699172 0.216607 0.0514896 0.249733 0.0579276 0.273097 0.051957 0.217998 0.0253575 0.970164 0.00870048 0.974444 0.0253821 0.953163 0.0441487 0.950934 0.0442727 0.973794 0.0949141 0.937603 0.12869 0.935848 0.0939225 0.962055 0.126462 0.963859 0.0828987 0.939044 0.0815106 0.967068 0.0589308 0.935309 0.0593765 0.985914 0.0462824 0.935333 0.0459434 0.98593 0.0214916 0.935332 0.0335243 0.935341 0.0207903 0.985869 0.0342276 0.985928 0.0462824 0.935333 0.0459434 0.98593 0.0335243 0.935341 0.0342276 0.985928 0.070152 0.985904 0.0593765 0.985914 0.0701517 0.93534 0.0589308 0.935309 0.456976 0.319425 0.450015 0.333879 0.422905 0.292254 0.410362 0.302257 0.403997 0.252991 0.388356 0.256561 0.403997 0.209412 0.388356 0.205842 0.422905 0.170149 0.410362 0.160146 0.448203 0.131296 0.454945 0.145304 0.499462 0.133281 0.499462 0.117238 0.541948 0.142979 0.548909 0.128524 0.576019 0.170149 0.588562 0.160146 0.594927 0.209412 0.610568 0.205842 0.594927 0.252991 0.610568 0.256561 0.576019 0.292254 0.588562 0.302257 0.541948 0.319425 0.548909 0.333879 0.499462 0.329122 0.499462 0.345165 0.080182 0.976731 0.0711972 0.987997 0.0833885 0.962682 0.018629 0.962682 0.0218358 0.948633 0.0218357 0.976731 0.0308205 0.937366 0.0438038 0.931114 0.0582139 0.931114 0.0711972 0.937366 0.080182 0.948633 0.0582139 0.99425 0.0438038 0.99425 0.0308205 0.987997 0.0293887 0.929503 0.0293887 0.978847 0.0226615 0.929503 0.0226615 0.978847 0.0361158 0.929503 0.0361158 0.978847 0.042843 0.929503 0.042843 0.978847 0.0495702 0.929503 0.0495702 0.978847 0.0562973 0.929503 0.0562973 0.978847 0.0634105 0.929552 0.0630245 0.978847 0.0697517 0.929503 0.0697517 0.978847 0.0764789 0.929503 0.0764789 0.978847 0.0832061 0.929503 0.0832061 0.978847 0.0899333 0.929503 0.0899333 0.978847 0.0966604 0.929503 0.0966604 0.978847 0.00920713 0.929503 0.00920713 0.978847 0.00247993 0.929503 0.00247993 0.978847 0.0159343 0.929503 0.0159343 0.978847 0.468363 0.0127748 0.454233 0.0358544 0.44273 0.00250185 0.44767 0.0193931 0.37915 0.0209843 0.384149 0.00350624 0.366013 0.00989234 0.366357 0.06751 0.380244 0.0569047 0.410041 0.0849904 0.417278 0.0689529 0.163992 0.935435 0.165304 0.975138 0.466899 0.078001 0.467169 0.0929733 0.491993 0.0809256 0.492013 0.093592 0.200347 0.935948 0.199155 0.974668 0.208614 0.935748 0.46775 0.0781313 0.492007 0.0808506 0.467604 0.0937109 0.492015 0.0936729 0.202577 0.935647 0.203601 0.97644 0.140534 0.187573 0.153797 0.208151 0.153541 0.207313 0.139269 0.187819 0.00738887 0.175746 0.315855 0.334913 0.289893 0.19827 0.0844617 0.160819 0.0823072 0.169686 0.0412285 0.163067 0.0304313 0.171687 0.00738887 0.160421 0.150043 0.161848 0.146579 0.170257 0.309222 0.164078 0.266314 0.163078 0.198572 0.154815 0.331328 0.176541 0.331328 0.160439 0.144457 0.0566342 0.0809915 0.062017 0.143144 0.0441569 0.0811792 0.0500062 0.0598165 0.00906596 0.102167 0.00906596 0.144457 0.00906596 0.229296 0.00227637 0.0297248 0.00906596 0.0302796 0.0471036 0.0297248 0.0616565 0.261088 0.0189741 0.294963 0.116099 0.320374 0.117202 0.260195 0.116263 0.320816 0.11941 0.275905 0.139452 0.303805 0.140185 0.219357 0.0391082 0.267985 0.0345629 0.270768 0.00813318 0.309222 0.0284425 0.30489 0.00611055 0.312553 0.198315 0.309222 0.335461 0.30483 0.179373 0.150043 0.161848 0.0844617 0.160819 0.146579 0.170257 0.0823072 0.169686 0.0305602 0.163056 0.0323396 0.171709 0.266314 0.163078 0.309222 0.164078 0.198468 0.154816 0.00715143 0.175348 0.00738887 0.160421 0.331328 0.160439 0.144457 0.0566342 0.143144 0.0441569 0.0809915 0.062017 0.0811792 0.0500062 0.0302796 0.0471036 0.0297248 0.0616565 0.2197 0.0388267 0.267985 0.0345629 0.23058 0.00186562 0.270768 0.00813318 0.32262 0.00227997 0.309222 0.0284425 0.0297248 0.00906596 0.0598165 0.00906596 0.102167 0.00906596 0.144457 0.00906596 0.291494 0.0213985 0.263132 0.0390878 0.317707 0.0399397 0.260195 0.116263 0.320816 0.11941 0.275905 0.139452 0.303805 0.140185 0.290771 0.493676 0.217528 0.490654 0.217528 0.420433 0.127107 0.556093 0.175483 0.554394 0.0950929 0.625252 0.086619 0.687639 0.0998637 0.717383 0.217528 0.490654 0.217528 0.554351 0.0950929 0.625252 0.127107 0.556093 0.175483 0.554394 0.086619 0.687639 0.0998637 0.717383 0.217528 0.420433 0.217528 0.554351 0.152874 0.733042 0.343847 0.728318 0.149014 0.781843 0.350158 0.775724 0.158019 0.684205 0.160769 0.591756 0.187405 0.575871 0.338596 0.614699 0.343847 0.55893 0.136758 0.900534 0.135756 0.844418 0.343847 0.900534 0.343847 0.845478 0.161808 0.640936 0.339295 0.667563 0.124421 0.684012 0.122729 0.735334 0.126356 0.634195 0.118136 0.782473 0.0985706 0.739241 0.0987711 0.900534 0.0947181 0.849674 0.0944691 0.784462 0.338596 0.614699 0.339295 0.667563 0.400315 0.609182 0.397823 0.675207 0.343847 0.55893 0.37715 0.557194 0.343847 0.728318 0.377123 0.728738 0.152874 0.733042 0.149014 0.781843 0.350158 0.775724 0.158019 0.684205 0.187405 0.575871 0.160769 0.591756 0.136758 0.900534 0.343847 0.900534 0.135756 0.844418 0.343847 0.845478 0.161808 0.640936 0.124421 0.684012 0.122729 0.735334 0.126356 0.634195 0.118136 0.782473 0.0947181 0.849674 0.0987711 0.900534 0.0944691 0.784462 0.0985706 0.739241 0.420855 0.900534 0.399166 0.841405 0.377129 0.900534 0.377123 0.84328 0.420381 0.553649 0.377123 0.775969 0.400095 0.775482 0.417612 0.726249 0.477433 0.625936 0.464779 0.671326 0.474822 0.569492 0.470208 0.843262 0.47227 0.900534 0.475138 0.780438 0.475663 0.729788 0.494782 0.838285 0.494782 0.780909 0.494782 0.727241 0.11704 0.0150365 0.114188 0.0438579 0.152633 0.0203876 0.150457 0.0589689 0.494782 0.66723 0.183992 0.0737907 0.198231 0.0626782 0.186723 0.027399 0.203121 0.0516278 0.100698 0.0509976 0.100587 0.0206096 0.494782 0.900534 0.0699292 0.0228386 0.0656505 0.0637625 0.0539316 0.0508066 0.0502654 0.0275329 0.0375589 0.0131953 0.0243435 0.0387129 0.494782 0.627375 0.494782 0.571544 0.205177 0.0159151 0.222005 0.0395431 0.229312 0.0806925 0.232396 0.074658 0.225938 0.0753463 0.231684 0.0650354 0.115203 0.0913827 0.143927 0.106907 0.170149 0.106748 0.213759 0.0801888 0.0104876 0.0596802 0.0296619 0.0656914 0.0122815 0.0670873 0.199661 0.086176 0.0326803 0.0798603 0.14311 0.109279 0.0685861 0.10961 0.0409209 0.108868 0.420855 0.900534 0.377129 0.900534 0.399166 0.841405 0.377123 0.84328 0.400315 0.609182 0.37715 0.557194 0.420381 0.553649 0.397823 0.675207 0.377123 0.775969 0.400095 0.775482 0.377123 0.728738 0.417612 0.726249 0.475138 0.780438 0.470208 0.843262 0.475663 0.729788 0.464779 0.671326 0.477433 0.625936 0.474822 0.569492 0.47227 0.900534 0.494782 0.727241 0.494782 0.780909 0.150457 0.0589689 0.114188 0.0438579 0.152633 0.0203876 0.11704 0.0150365 0.494782 0.66723 0.183992 0.0737907 0.186723 0.027399 0.198231 0.0626782 0.203121 0.0516278 0.0502654 0.0275329 0.0539316 0.0508066 0.0243435 0.0387129 0.494782 0.838285 0.100587 0.0206096 0.100698 0.0509976 0.494782 0.900534 0.0699292 0.0228386 0.0656505 0.0637625 0.0375589 0.0131953 0.494782 0.571544 0.494782 0.627375 0.205177 0.0159151 0.222005 0.0395431 0.229312 0.0806925 0.225938 0.0753463 0.232396 0.074658 0.231684 0.0650354 0.115203 0.0913827 0.143927 0.106907 0.14311 0.109279 0.170149 0.106748 0.199661 0.086176 0.213759 0.0801888 0.0122815 0.0670873 0.0104876 0.0596802 0.0296619 0.0656914 0.0326803 0.0798603 0.0685861 0.10961 0.0409209 0.108868 + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + + + + + + + + + + + + + + + + + +

89 80 88 88 80 72 80 79 72 88 72 524 524 72 523 72 79 73 72 520 523 72 73 68 72 68 520 73 79 74 73 74 68 79 81 74 81 90 74 90 81 91 90 517 74 517 516 74 74 515 68 74 516 515 516 569 515 516 576 569 569 571 515 569 576 570 576 575 570 569 561 571 569 570 561 515 71 68 515 571 513 515 513 71 570 575 572 575 573 572 570 558 561 570 572 558 68 67 520 68 71 69 68 69 67 69 71 2 69 2 67 71 513 65 71 65 2 571 568 563 571 561 568 571 563 513 572 573 566 573 574 566 574 564 566 564 565 566 572 559 558 572 566 559 566 565 567 566 567 559 565 579 567 558 556 561 558 559 556 559 567 560 559 560 556 567 579 580 567 580 560 561 551 568 561 556 551 556 560 557 556 557 551 560 580 582 560 582 557 582 580 583 582 583 557 580 579 578 580 578 583 579 577 578 578 588 583 578 577 588 577 589 588 589 606 588 606 592 588 588 590 583 588 592 590 592 593 590 583 584 557 583 590 584 590 593 591 590 591 584 593 594 591 594 599 591 591 586 584 591 599 586 599 613 586 584 553 557 557 553 551 584 586 553 586 613 585 586 585 553 553 552 551 553 585 552 551 550 568 551 552 550 568 550 563 585 613 587 587 581 585 585 581 552 552 555 550 552 581 555 555 554 550 550 562 563 550 554 562 562 514 563 563 514 513 514 66 513 513 66 65 66 12 65 587 613 614 65 12 3 12 11 3 65 3 2 3 11 49 11 51 49 3 0 2 3 49 9 3 9 0 0 1 2 0 9 8 0 35 1 0 8 35 8 9 10 8 10 35 9 49 47 9 46 10 9 47 46 49 51 52 49 50 47 49 52 50 47 48 46 47 50 48 10 37 35 10 46 40 10 40 37 52 51 62 51 61 62 52 477 50 52 62 477 48 474 46 46 22 40 46 474 473 35 43 1 35 37 36 35 36 43 50 480 48 48 480 484 484 480 485 50 477 478 50 478 480 480 479 485 480 478 479 478 477 476 478 476 479 40 22 23 40 25 37 40 23 25 23 22 18 23 18 25 25 18 19 22 21 18 18 4 19 18 21 4 36 38 39 36 39 43 36 37 38 477 62 483 477 475 476 477 483 475 476 489 479 476 475 489 475 483 487 475 487 489 479 492 485 479 489 492 38 440 39 38 37 434 38 434 440 37 435 434 434 441 440 441 439 440 440 438 39 440 439 438 434 435 436 435 54 436 487 483 493 487 488 489 487 493 488 489 490 492 489 488 490 39 45 43 39 438 443 39 443 45 438 439 437 438 437 443 483 62 481 483 494 493 483 481 494 493 495 488 493 494 495 495 502 488 488 502 490 502 501 490 501 500 490 490 491 492 490 500 491 500 499 491 499 497 491 491 498 492 491 497 498 497 496 498 496 495 494 496 494 498 494 481 482 494 482 498 498 485 492 485 498 482 45 44 43 45 443 56 45 56 44 44 41 43 43 41 1 41 42 1 44 56 57 437 439 450 437 442 443 437 450 442 443 446 56 443 442 446 442 450 449 442 449 446 56 53 57 57 53 55 55 53 54 54 53 436 53 56 445 56 446 445 53 445 436 449 450 451 449 467 446 449 451 467 446 468 445 446 467 468 467 451 456 467 456 468 456 451 455 451 450 452 451 452 455 455 452 454 454 452 453 450 439 459 450 459 452 452 458 453 452 459 458 453 458 457 457 458 460 458 459 470 458 470 460 459 439 448 459 448 470 456 469 468 469 470 468 468 444 445 445 444 436 468 470 444 470 448 444 444 447 436 447 444 448 470 469 471 460 461 462 460 462 463 462 464 463 463 464 465 465 464 466 523 520 542 523 542 546 546 542 543 546 543 549 542 520 544 542 531 543 542 544 531 543 545 549 549 545 548 543 531 527 543 527 545 527 531 528 527 529 545 527 528 529 545 537 548 545 529 537 548 537 547 547 537 536 536 537 538 537 529 539 537 539 538 538 539 634 529 528 530 529 530 539 539 636 634 539 530 636 531 544 540 531 541 528 531 540 541 528 643 530 528 541 643 530 641 636 530 643 641 641 642 636 641 643 642 636 635 634 636 642 635 634 635 633 635 642 646 635 646 633 633 646 651 651 646 669 669 646 666 646 642 645 646 645 666 666 645 653 642 643 644 642 644 645 645 647 653 645 644 647 653 647 652 652 647 658 647 644 648 647 648 658 658 648 674 644 643 640 643 541 640 644 640 648 648 649 674 648 640 649 640 541 637 640 637 649 541 540 534 541 534 637 540 544 532 540 532 534 649 650 674 674 650 673 650 649 639 649 637 639 639 637 638 637 534 638 638 534 535 535 534 533 534 532 533 533 532 522 532 544 521 532 521 522 522 521 78 544 520 521 520 67 521 521 70 78 521 67 70 67 2 70 2 1 70 70 42 78 42 70 1 62 61 59 61 60 59 60 58 59 62 59 481 59 58 472 59 472 481 481 472 482 58 473 472 472 474 482 472 473 474 474 486 482 19 4 6 19 6 20 20 6 31 20 31 33 33 31 34 34 31 32 32 31 28 31 6 26 31 26 28 28 26 27 26 6 75 26 75 27 27 75 76 76 75 525 6 4 5 6 5 75 75 77 525 75 5 77 525 77 511 5 4 7 4 21 7 21 24 7 5 63 77 5 7 63 7 24 15 24 30 15 30 29 15 29 13 15 13 14 15 15 16 7 7 16 63 15 14 16 16 17 63 16 14 17 17 64 63 63 512 77 63 64 512 512 518 77 77 510 511 77 518 510 510 82 511 511 82 526 510 518 86 518 519 86 510 83 82 510 86 83 86 87 83 87 85 83 83 84 82 84 83 85 92 93 94 94 93 95 95 93 105 105 93 100 93 97 100 93 104 97 104 120 99 104 99 97 97 101 100 97 99 98 97 96 101 97 98 96 99 120 122 120 128 122 99 124 98 99 122 124 122 128 129 129 128 130 130 128 433 433 128 432 122 123 124 123 125 124 125 127 124 124 126 98 124 127 126 126 121 98 98 121 96 121 119 96 96 117 101 96 119 117 117 118 101 101 103 100 101 118 103 103 102 100 106 107 108 107 109 108 107 113 109 113 112 109 109 111 108 109 112 111 112 115 111 115 114 111 111 110 108 111 114 110 110 114 116 159 160 161 161 160 162 163 164 165 165 164 166 167 168 169 169 168 170 171 172 173 173 172 174 203 204 205 204 211 212 204 212 205 205 212 208 208 207 205 205 207 210 210 207 209 207 208 206 208 212 214 212 213 214 208 214 216 216 214 215 239 237 240 240 237 238 237 235 238 238 235 236 235 233 236 236 233 234 233 231 234 234 231 232 231 229 232 232 229 230 229 227 230 230 227 228 227 225 228 228 225 226 225 223 226 226 223 224 223 221 224 224 221 222 221 217 222 222 217 219 217 218 219 219 218 220 218 245 220 220 245 246 245 241 246 246 241 243 241 242 243 243 242 244 259 258 257 258 256 257 256 269 257 269 263 257 257 263 261 257 261 267 267 261 266 267 266 268 268 266 289 268 289 293 266 261 285 266 288 289 266 285 288 289 292 293 292 294 293 294 430 293 293 430 431 289 288 287 287 288 286 286 288 290 290 288 291 288 285 291 291 285 284 285 261 260 285 260 284 284 260 283 283 260 282 260 261 262 261 263 262 260 262 282 282 262 281 281 262 264 262 263 264 264 263 265 273 272 271 271 272 270 271 270 277 277 270 276 270 272 274 270 274 276 276 274 278 278 274 279 274 272 275 274 275 279 279 275 280 316 317 318 318 317 319 320 321 322 322 321 323 324 325 326 326 325 327 328 329 330 330 329 331 360 361 362 362 361 369 362 369 370 369 361 365 361 371 372 361 372 365 372 373 365 369 367 368 369 365 367 367 365 364 364 366 367 364 365 363 396 397 394 397 395 394 394 395 392 395 393 392 392 393 390 393 391 390 390 391 388 391 389 388 388 389 386 389 387 386 386 387 384 387 385 384 384 385 382 385 383 382 382 383 380 383 381 380 380 381 378 381 379 378 378 379 374 379 375 374 374 375 376 375 377 376 376 377 402 377 403 402 402 403 398 403 399 398 398 399 400 400 399 401 420 419 418 419 417 418 418 417 156 417 158 156 158 157 156 156 157 155 155 157 255 157 254 255 255 254 253 254 251 253 253 251 252 252 251 249 251 247 249 247 248 249 249 248 250 250 248 404 248 405 404 405 407 404 404 407 406 406 407 409 407 408 409 409 408 410 408 412 410 410 412 411 411 412 413 412 414 413 414 424 413 413 424 426 424 425 426 426 425 427 503 504 505 504 506 505 505 506 507 506 508 507 507 508 509 615 602 616 616 602 603 603 619 616 616 619 620 620 619 618 603 602 601 603 601 619 619 617 618 619 601 617 617 624 618 617 601 624 624 601 628 601 602 600 601 600 628 628 600 623 600 602 598 602 597 598 600 622 623 600 598 622 623 622 630 630 622 621 622 598 621 598 597 596 598 596 621 597 595 596 595 605 596 596 604 621 596 605 604 605 607 604 604 608 621 604 607 608 621 608 631 608 607 609 608 629 631 608 609 629 629 632 631 629 609 626 609 607 610 607 611 610 610 612 609 609 612 626 610 611 612 612 625 626 626 625 627 675 676 660 676 662 660 662 676 678 676 680 678 680 679 678 662 661 660 662 678 661 678 679 677 678 677 661 677 679 686 677 686 661 686 685 661 661 659 660 661 685 659 685 684 659 659 654 660 660 654 656 659 684 682 659 682 654 684 683 682 682 681 654 682 683 681 654 655 656 654 681 655 656 655 657 657 655 667 655 681 668 655 668 667 667 668 670 668 681 671 668 671 670 681 691 671 671 664 670 671 691 690 671 690 664 690 691 692 690 689 664 664 663 670 670 663 672 672 663 665 664 689 665 664 665 663 665 689 688 688 689 687 131 132 133 132 134 133 131 133 139 139 133 138 133 134 136 133 136 138 138 136 140 140 136 137 137 136 135 135 136 134 143 141 142 142 144 143 142 141 145 141 146 145 145 146 152 146 151 152 152 151 150 151 149 150 150 149 148 149 147 148 147 153 148 148 153 154 153 422 154 154 422 421 421 422 423 422 429 423 423 429 428 428 429 415 429 416 415 415 416 311 416 313 311 313 312 311 311 312 310 312 315 310 310 315 314 315 309 314 314 309 308 309 305 308 308 305 307 307 306 144 306 307 305 184 182 183 184 183 186 183 182 181 182 180 181 183 185 186 183 181 185 181 180 179 180 178 179 179 176 181 179 178 176 178 177 176 181 201 185 181 176 201 176 177 175 176 175 201 175 177 202 175 202 201 202 200 201 201 193 185 201 200 199 200 198 199 199 197 201 201 197 193 199 198 197 198 196 197 197 195 193 197 196 195 195 194 193 195 196 194 194 192 193 185 187 186 186 187 188 187 185 189 185 193 189 187 189 188 188 189 190 190 191 192 191 193 192 191 190 189 189 193 191 296 297 295 296 298 297 298 303 297 303 302 297 297 299 295 297 302 299 302 304 299 304 301 299 299 300 295 300 299 301 341 340 339 341 342 340 340 338 339 339 338 337 340 342 343 340 343 338 338 336 337 337 336 335 336 338 334 338 343 334 336 334 335 335 334 333 333 334 332 333 332 359 332 334 358 332 358 359 359 358 357 334 343 350 334 354 358 334 350 354 358 356 357 358 354 356 356 355 357 356 354 355 355 354 353 354 350 352 354 352 353 353 352 351 352 350 351 351 350 349 343 342 344 342 345 344 344 346 343 343 346 350 344 345 346 345 347 346 346 348 350 348 347 349 348 346 347 348 349 350

+
+
+
+ + + + -3.7573905E-06 1.674723 0.2829702 -3.3964525E-06 1.575016 0.3093362 0.11840925 1.6727135 0.2592972 0.13183162 1.5741045 0.2717252 0.20500927 1.6690228 0.1825572 0.22893472 1.5442569 0.20291618 0.25398827 1.6664469 0.007503289 0.29505873 1.5432131 0.00997179 -4.1246494E-06 1.776176 0.19853318 0.08665509 1.7733853 0.1839082 0.16727999 1.7456417 0.14955318 -0.11841675 1.6727126 0.2592972 -3.7573905E-06 1.674723 0.2829702 -0.08666331 1.7733848 0.1839082 -4.1246494E-06 1.776176 0.19853318 -0.167288 1.7456405 0.14955318 -0.20501675 1.6690214 0.1825572 -0.13183838 1.5741036 0.2717252 -3.3964525E-06 1.575016 0.3093362 -0.25399572 1.6664451 0.007503289 -0.22894135 1.5632602 0.20291618 -0.29506528 1.543211 0.00997179 -0.13467753 1.3384886 0.2632302 -0.22413957 1.3513483 0.19007519 -0.2905818 1.415213 0.01293529 -0.1896913 1.2770277 0.17337218 -0.1512881 1.218679 0.10579419 -0.1093502 1.2439834 0.22352618 -0.07930061 1.1929463 0.1541602 -0.24810936 1.2891849 0.009728789 -2.5250988E-06 1.33431 0.3026602 0.13467246 1.3384895 0.2632302 0.2905762 1.4152151 0.01293529 0.22413442 1.3513498 0.19007519 0.1093458 1.2439841 0.22352618 -2.1474482E-06 1.2299863 0.2460252 0.07929659 1.1929469 0.1541602 -1.9675333E-06 1.1802859 0.1698682 0.18968669 1.2770293 0.17337218 0.1512839 1.2186801 0.10579419 0.24810465 1.2891867 0.009728789 -2.1474482E-06 1.2299863 0.2460252 -1.9675333E-06 1.1802859 0.1698682 + + + + + + + + + + -1.5542869E-06 0.42936218 0.9031324 -1.3173502E-07 0.03639099 0.9993376 0.39552757 0.4079375 0.82288814 0.43188292 0.049792077 0.90055424 0.8122923 0.38117176 0.44146279 0.83852434 0.0697001 0.54038775 0.92463124 0.37900016 0.03763058 0.9918619 0.11147662 0.06150632 -2.9512723E-06 0.81527084 0.57907987 0.28187016 0.8086483 0.51636916 0.6567055 0.66818434 0.34966797 -0.3851934 0.4157085 0.8239008 -1.5542869E-06 0.42936218 0.9031324 -0.281876 0.80864626 0.51636916 -2.9512723E-06 0.81527084 0.57907987 -0.6567104 0.6681796 0.34966797 -0.8074713 0.39878199 0.4346989 -0.43164408 0.044373836 0.90095186 -1.3173502E-07 0.03639099 0.9993376 -0.92163044 0.38716465 0.0264742 -0.8400042 0.07961505 0.5367069 -0.9923912 0.10594139 0.06273919 -0.4206275 -0.13988651 0.896384 -0.845346 -0.15738498 0.5105098 -0.9882093 -0.13759954 0.06714708 -0.77464885 -0.5478917 0.31580693 -0.5569182 -0.80730623 0.19518904 -0.3725468 -0.63332254 0.67831516 -0.29408777 -0.9208124 0.25615808 -0.869409 -0.49359503 -0.022178994 5.7058276E-07 -0.15761998 0.9874999 0.41664055 -0.1418945 0.8979291 0.9882395 -0.14074142 0.0597881 0.8456133 -0.16282688 0.5083558 0.37255228 -0.63331956 0.6783149 2.258643E-06 -0.62393624 0.7814753 0.29409444 -0.9208103 0.25615808 3.4781738E-06 -0.9608241 0.27715904 0.7746528 -0.5478861 0.31580693 0.5569248 -0.8073018 0.19518895 0.86941266 -0.49358878 -0.022178898 2.258643E-06 -0.62393624 0.7814753 3.4781738E-06 -0.9608241 0.27715904 + + + + + + + + + + 0.459058 0.77992 0.459058 0.647037 0.287704 0.769994 0.277107 0.637136 0.149432 0.773546 0.132987 0.593484 0.0231997 0.766687 -0.00176807 0.588447 0.459058 0.939018 0.315699 0.928465 0.168677 0.895942 0.287704 0.769994 0.459058 0.779848 0.315699 0.928465 0.459058 0.940288 0.168677 0.895942 0.143396 0.772826 0.276288 0.636685 0.459058 0.64652 0.0201875 0.769456 0.132103 0.619071 0.0036665 0.592965 0.269159 0.321233 0.132526 0.31968 0.00471135 0.405966 0.163842 0.20453 0.189442 0.0763268 0.293282 0.167294 0.314428 0.0586525 0.0171132 0.218939 0.459058 0.330084 0.269159 0.321233 0.000481369 0.41192 0.134672 0.319499 0.295684 0.167376 0.452145 0.15712 0.320408 0.0605647 0.459058 0.0505177 0.170865 0.204017 0.198613 0.0880239 0.0373651 0.219539 0.459058 0.15672 0.459058 0.0506267 + + + + + + + + + + + + + + +

0 1 2 2 1 3 4 5 6 6 5 7 8 0 9 9 0 2 4 10 2 2 10 9 5 4 3 3 4 2 11 12 13 13 12 14 13 15 11 11 15 16 17 18 11 11 18 12 16 19 20 20 19 21 11 16 17 17 16 20 17 20 22 22 20 23 21 24 20 20 24 23 25 26 27 27 26 28 24 29 23 23 29 25 23 27 22 27 23 25 1 30 3 3 30 31 7 5 32 32 5 33 3 31 5 5 31 33 34 35 36 36 35 37 38 34 39 39 34 36 38 40 33 33 40 32 33 34 38 35 34 30 30 34 31 22 30 17 17 30 18 27 28 41 41 28 42 22 27 30 30 27 41 34 33 31

+
+
+
+ + + + 0.055567082 1.8570802 0.26744118 0.08670015 1.7839624 0.32756218 0.1847207 1.8283226 0.2627862 0.25268304 1.734432 0.3173682 0.25325683 1.7939459 0.2625132 0.10125096 1.7541354 0.3493952 -4.163615E-06 1.7869401 0.3332352 -0.25269097 1.7344301 0.3173682 -0.10125904 1.7541347 0.3493952 -0.25326517 1.7939441 0.2625132 -0.18472931 1.8283215 0.2627862 -0.08670845 1.7839618 0.32756218 -4.427371E-06 1.859801 0.2667512 -4.427371E-06 1.859801 0.2667512 -0.05557592 1.8570799 0.26744118 + + + + + + + + + + 0.12283959 0.66557443 0.736153 0.1372437 0.66384596 0.7351685 0.25815877 0.63445204 0.72857714 0.31789163 0.65353507 0.68690395 0.3541709 0.6279616 0.6929843 0.21909355 0.6692297 0.71002096 -2.4436856E-06 0.6750531 0.7377691 -0.31789628 0.6535327 0.68690383 -0.2190984 0.66922814 0.71002096 -0.35417518 0.62795854 0.6929848 -0.25816318 0.6344497 0.7285776 -0.1372484 0.66384554 0.735168 -2.4436856E-06 0.6750531 0.7377691 -2.4436856E-06 0.6750531 0.7377691 -0.12284439 0.66557354 0.73615295 + + + + + + + + + + 0.466899 0.078001 0.454838 0.0359233 0.413161 0.0687699 0.379428 0.0211048 0.380398 0.0568613 0.447946 0.0194712 0.493095 0.0360762 0.37915 0.0209843 0.44767 0.0193931 0.380244 0.0569047 0.417278 0.0689529 0.454233 0.0358544 0.475095 0.0785407 0.47511 0.0785411 0.46775 0.0781313 + + + + + + + + + + + + + + +

0 1 2 3 4 5 4 2 5 2 1 5 6 1 0 7 8 9 9 8 10 8 11 10 12 6 0 13 14 6 6 14 11 14 10 11

+
+
+
+ + + + 1.26054 -0.039810248 0.346838 1.26054 -0.100089155 0.32187 1.19965 -0.013313251 0.320341 1.19965 -0.100089155 0.284397 1.26054 -0.16036816 0.346838 1.19965 -0.18686515 0.320341 1.26054 -0.18533716 0.407117 1.19965 -0.22280915 0.407117 1.26054 -0.16036816 0.467397 1.19965 -0.18686515 0.493894 1.26054 -0.100089155 0.492365 1.19965 -0.100089155 0.529837 1.26054 -0.039810248 0.467397 1.19965 -0.013313251 0.493894 1.26054 -0.01484175 0.407117 1.19965 0.02263065 0.407117 1.26054 -0.039810248 0.346838 1.19965 -0.013313251 0.320341 0.714501 -0.03331845 0.340347 0.714501 -0.0056610494 0.407118 0.714501 -0.100089155 0.312689 0.714501 -0.03331845 0.340347 0.714501 -0.16686015 0.340347 0.714501 -0.19451815 0.407118 0.714501 -0.16686015 0.473888 0.714501 -0.100089155 0.501546 0.714501 -0.03331845 0.473888 0.187655 -0.100089155 0.407117 0.229349 -0.068922654 0.438284 0.229349 -0.056013048 0.407118 0.229349 -0.100089155 0.451194 0.187655 -0.100089155 0.407117 0.229349 -0.13125615 0.438284 0.187655 -0.100089155 0.407117 0.229349 -0.14416616 0.407118 0.187655 -0.100089155 0.407117 0.229349 -0.13125615 0.375951 0.187655 -0.100089155 0.407117 0.229349 -0.100089155 0.363041 0.187655 -0.100089155 0.407117 0.229349 -0.068922654 0.375951 0.187655 -0.100089155 0.407117 0.229349 -0.068922654 0.375951 0.187655 -0.100089155 0.407117 1.358 -0.01589115 0.324423 1.358 -0.09940815 0.289829 1.23082 0.00043380028 0.308098 1.23082 -0.09940815 0.266742 1.358 -0.18292515 0.324423 1.23082 -0.19925015 0.308098 1.358 -0.21751915 0.40794 1.23082 -0.24060616 0.40794 1.358 -0.18292515 0.491457 1.23082 -0.19925015 0.507782 1.358 -0.09940815 0.526051 1.23082 -0.09940815 0.549138 1.358 -0.01589115 0.491457 1.23082 0.00043380028 0.507782 1.358 0.018702751 0.40794 1.23082 0.04178965 0.40794 1.358 -0.01589115 0.324423 1.23082 0.00043380028 0.308098 1.358 -0.01589115 0.491457 1.358 -0.09940815 0.526051 1.358 0.018702751 0.40794 1.358 -0.18292515 0.491457 1.358 -0.21751915 0.40794 1.358 -0.18292515 0.324423 1.358 -0.09940815 0.289829 1.358 -0.01589115 0.324423 1.23082 0.04178965 0.40794 1.23082 0.00043380028 0.308098 1.23082 0.00043380028 0.507782 1.23082 -0.09940815 0.266742 1.23082 -0.19925015 0.308098 1.23082 -0.24060616 0.40794 1.23082 -0.19925015 0.507782 1.23082 -0.09940815 0.549138 1.26054 -0.039810248 -0.346838 1.19965 -0.013313251 -0.320341 1.26054 -0.100089155 -0.32187 1.19965 -0.100089155 -0.284397 1.26054 -0.16036816 -0.346838 1.19965 -0.18686515 -0.320341 1.26054 -0.18533716 -0.407117 1.19965 -0.22280915 -0.407117 1.26054 -0.16036816 -0.467397 1.19965 -0.18686515 -0.493894 1.26054 -0.100089155 -0.492365 1.19965 -0.100089155 -0.529837 1.26054 -0.039810248 -0.467397 1.19965 -0.013313251 -0.493894 1.26054 -0.01484175 -0.407117 1.19965 0.02263065 -0.407117 1.26054 -0.039810248 -0.346838 1.19965 -0.013313251 -0.320341 0.187655 -0.100089155 -0.407117 0.229349 -0.067473255 -0.374501 0.229349 -0.053963147 -0.407117 0.187655 -0.100089155 -0.407117 0.229349 -0.067473255 -0.439733 0.229349 -0.100089155 -0.453244 0.187655 -0.100089155 -0.407117 0.229349 -0.13270515 -0.439733 0.187655 -0.100089155 -0.407117 0.229349 -0.14621516 -0.407117 0.187655 -0.100089155 -0.407117 0.229349 -0.13270515 -0.374501 0.187655 -0.100089155 -0.407117 0.229349 -0.100089155 -0.360991 0.187655 -0.100089155 -0.407117 0.229349 -0.067473255 -0.374501 0.187655 -0.100089155 -0.407117 0.714501 -0.032597348 -0.474609 0.714501 -0.100089155 -0.502566 0.714501 -0.16758116 -0.474609 0.714501 -0.19553715 -0.407117 0.714501 -0.16758116 -0.339625 0.714501 -0.100089155 -0.311669 0.714501 -0.032597348 -0.339625 0.714501 -0.032597348 -0.339625 0.714501 -0.0046412596 -0.407117 1.358 -0.01589115 -0.324423 1.23082 0.00043380028 -0.308098 1.358 -0.09940815 -0.289829 1.23082 -0.09940815 -0.266742 1.358 -0.18292515 -0.324423 1.23082 -0.19925015 -0.308098 1.358 -0.21751915 -0.40794 1.23082 -0.24060616 -0.40794 1.358 -0.18292515 -0.491457 1.23082 -0.19925015 -0.507782 1.358 -0.09940815 -0.526051 1.23082 -0.09940815 -0.549138 1.358 -0.01589115 -0.491457 1.23082 0.00043380028 -0.507782 1.358 0.018702751 -0.40794 1.23082 0.04178965 -0.40794 1.358 -0.01589115 -0.324423 1.23082 0.00043380028 -0.308098 1.358 -0.01589115 -0.491457 1.358 0.018702751 -0.40794 1.358 -0.09940815 -0.526051 1.358 -0.01589115 -0.324423 1.358 -0.09940815 -0.289829 1.358 -0.18292515 -0.324423 1.358 -0.21751915 -0.40794 1.358 -0.18292515 -0.491457 1.23082 0.04178965 -0.40794 1.23082 0.00043380028 -0.507782 1.23082 0.00043380028 -0.308098 1.23082 -0.09940815 -0.549138 1.23082 -0.19925015 -0.507782 1.23082 -0.24060616 -0.40794 1.23082 -0.19925015 -0.308098 1.23082 -0.09940815 -0.266742 -0.913945 0.06863235 -0.0789925 -0.933054 0.00683196 -0.0820895 -0.913945 0.06863235 0.0789925 -0.933054 0.00683196 0.0820895 -0.596862 0.01065967 0 1.08083 -0.08969015 -0.307144 1.03667 -0.15089016 -0.295556 0.06 -0.03007015 -0.396354 0.0779094 -0.20044915 -0.36937 -0.814049 -0.052491248 0.188582 -0.820703 -0.01857515 0.195535 -0.809298 0.04630545 0.188158 -0.590087 0.008313401 0.276684 -0.585341 -0.065342754 0.287532 -0.814049 -0.052491248 -0.188582 -0.820703 -0.01857515 -0.195535 -0.809298 0.04630545 -0.188158 -0.814049 -0.052491248 -0.188582 -0.571869 -0.11955315 0.276684 0.0779094 -0.20045115 0.369499 -0.590087 0.008313401 -0.276684 -0.571869 -0.11955315 -0.276684 -0.585341 -0.065342754 -0.287532 1.07876 -0.02849015 -0.295556 -0.571869 -0.11955315 -0.276684 -0.571869 -0.11955315 0.276684 0.0779094 -0.20044915 -0.36937 0.0779094 -0.20045115 0.369499 1.12543 -0.01186965 -0.123611 1.12453 -0.08848465 0 1.12543 -0.01186965 0.123611 1.07876 -0.02849015 0.295556 1.08083 -0.08969015 0.307144 1.03667 -0.15089016 0.295556 1.07333 -0.16509916 0 0.06 -0.03007015 0.396491 1.03667 -0.15089016 -0.295556 1.07333 -0.16509916 0 1.03667 -0.15089016 0.295556 + + + + + + + + + + 0.5241009 0.6022119 -0.6022119 0.5240999 0 -0.8516568 0.0063957986 0.7070928 -0.7070918 0.0063958676 0 -0.9999796 0.5241002 -0.6022122 -0.6022122 0.0063958187 -0.7070928 -0.7070918 0.5240999 -0.8516568 0 0.0063959276 -0.9999796 0 0.5241002 -0.6022122 0.6022122 0.0063960985 -0.7070918 0.7070928 0.5240999 0 0.8516568 0.0063959775 0 0.9999796 0.5241002 0.6022122 0.6022122 0.0063960487 0.7070918 0.7070928 0.5240999 0.8516568 0 0.0063959677 0.9999796 0 0.5241009 0.6022119 -0.6022119 0.0063957986 0.7070928 -0.7070918 -0.07538238 0.7050958 -0.7050938 -0.07538238 0.9971548 0 -0.07538238 0 -0.9971548 -0.07538238 0.7050958 -0.7050938 -0.07538238 -0.7050958 -0.7050938 -0.075382285 -0.9971548 0 -0.075382195 -0.7050939 0.70509595 -0.075382285 0 0.9971548 -0.075382195 0.7050939 0.70509595 -1 0 -2.58982E-06 -0.12326299 0.70171297 0.70171595 -0.123263985 0.9923739 0 -0.123263985 0 0.9923739 -1 0 -2.58982E-06 -0.12326299 -0.70171297 0.70171595 -1 0 -2.58982E-06 -0.12326301 -0.99237406 0 -1 0 -2.58982E-06 -0.123263076 -0.7017164 -0.7017124 -1 0 -2.58982E-06 -0.123263985 0 -0.9923739 -1 0 -2.58982E-06 -0.12326397 0.70171684 -0.70171183 -1 0 -2.58982E-06 -0.12326397 0.70171684 -0.70171183 -1 0 -2.58982E-06 0.17860503 0.6957371 -0.6957371 0.17860499 0 -0.9839209 0.17860503 0.6957371 -0.6957371 0.17860499 0 -0.9839209 0.17860503 -0.6957371 -0.6957371 0.17860503 -0.6957371 -0.6957371 0.17860499 -0.9839209 0 0.17860499 -0.9839209 0 0.17860503 -0.6957371 0.6957371 0.17860503 -0.6957371 0.6957371 0.17860499 0 0.9839209 0.17860499 0 0.9839209 0.17860503 0.6957371 0.6957371 0.17860503 0.6957371 0.6957371 0.17860499 0.9839209 0 0.17860499 0.9839209 0 0.17860503 0.6957371 -0.6957371 0.17860503 0.6957371 -0.6957371 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 -2.58982E-06 -1 0 -2.58982E-06 -1 0 -2.58982E-06 -1 0 -2.58982E-06 -1 0 -2.58982E-06 -1 0 -2.58982E-06 -1 0 -2.58982E-06 -1 0 -2.58982E-06 0.5241002 0.6022122 0.6022122 0.0063960487 0.7070918 0.7070928 0.5240999 0 0.8516568 0.0063959775 0 0.9999796 0.5241002 -0.6022122 0.6022122 0.0063960985 -0.7070918 0.7070928 0.5240999 -0.8516568 0 0.0063959276 -0.9999796 0 0.5241002 -0.6022122 -0.6022122 0.0063958187 -0.7070928 -0.7070918 0.5240999 0 -0.8516568 0.0063958676 0 -0.9999796 0.5241009 0.6022119 -0.6022119 0.0063957986 0.7070928 -0.7070918 0.5240999 0.8516568 0 0.0063959677 0.9999796 0 0.5241002 0.6022122 0.6022122 0.0063960487 0.7070918 0.7070928 -1 0 -2.58982E-06 -0.12326299 0.70171297 0.70171595 -0.123263985 0.9923739 0 -1 0 -2.58982E-06 -0.12326397 0.70171684 -0.70171183 -0.123263985 0 -0.9923739 -1 0 -2.58982E-06 -0.123263076 -0.7017164 -0.7017124 -1 0 -2.58982E-06 -0.12326301 -0.99237406 0 -1 0 -2.58982E-06 -0.12326299 -0.70171297 0.70171595 -1 0 -2.58982E-06 -0.123263985 0 0.9923739 -1 0 -2.58982E-06 -0.12326299 0.70171297 0.70171595 -1 0 -2.58982E-06 -0.07538238 0.7050958 -0.7050938 -0.07538238 0 -0.9971548 -0.07538238 -0.7050958 -0.7050938 -0.075382285 -0.9971548 0 -0.075382195 -0.7050939 0.70509595 -0.075382285 0 0.9971548 -0.075382195 0.7050939 0.70509595 -0.075382195 0.7050939 0.70509595 -0.07538238 0.9971548 0 0.17860503 0.6957371 0.6957371 0.17860503 0.6957371 0.6957371 0.17860499 0 0.9839209 0.17860499 0 0.9839209 0.17860503 -0.6957371 0.6957371 0.17860503 -0.6957371 0.6957371 0.17860499 -0.9839209 0 0.17860499 -0.9839209 0 0.17860503 -0.6957371 -0.6957371 0.17860503 -0.6957371 -0.6957371 0.17860499 0 -0.9839209 0.17860499 0 -0.9839209 0.17860503 0.6957371 -0.6957371 0.17860503 0.6957371 -0.6957371 0.17860499 0.9839209 0 0.17860499 0.9839209 0 0.17860503 0.6957371 0.6957371 0.17860503 0.6957371 0.6957371 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 -2.58982E-06 -1 0 -2.58982E-06 -1 0 -2.58982E-06 -1 0 -2.58982E-06 -1 0 -2.58982E-06 -1 0 -2.58982E-06 -1 0 -2.58982E-06 -1 0 -2.58982E-06 -0.119568035 0.9847413 -0.12644404 -0.69045705 -0.71191007 -0.12827002 -0.119568035 0.9847413 0.12644404 -0.69045705 -0.71191007 0.12827002 0.08931683 0.99600327 0 0.5560818 -0.2195669 -0.80160064 0.175877 -0.931094 -0.31958 0.0011570605 0.9800104 -0.1989431 -0.04989811 -0.9817702 -0.18340504 -0.32011688 -0.94394565 0.080571674 -0.4824281 0.032508306 0.8753322 0.029258605 0.96771115 0.25035805 0.013155198 0.9615369 0.27436098 -0.24684402 -0.042058904 0.9681421 -0.32011688 -0.94394565 -0.080571674 -0.4824281 0.032508206 -0.8753322 0.029258605 0.96771115 -0.25035805 -0.32011688 -0.94394565 -0.080571674 -0.15751493 -0.98625153 0.04996938 -0.049892794 -0.9817669 0.18342498 0.013182794 0.9615305 -0.27438188 -0.15751098 -0.9862519 -0.04997669 -0.24672203 -0.042037904 -0.9681741 0.19908497 0.9034349 -0.37969795 -0.15751098 -0.9862519 -0.04997669 -0.15751493 -0.98625153 0.04996938 -0.04989811 -0.9817702 -0.18340504 -0.049892794 -0.9817669 0.18342498 0.027714293 0.99950176 -0.015105296 0.9077897 -0.41942585 0 0.027712896 0.9995019 0.015103598 0.19912496 0.90343076 0.37968692 0.5561378 -0.21957792 0.8015587 0.17590794 -0.93109566 0.31955788 0.14911807 -0.9888194 -2.0853809E-06 0.0011525202 0.98000616 0.19896403 0.175877 -0.931094 -0.31958 0.14911807 -0.9888194 -2.0853809E-06 0.17590794 -0.93109566 0.31955788 + + + + + + + + + + 0.168816 0.740351 0.176656 0.740351 0.168816 0.743288 0.176656 0.743288 0.184496 0.740351 0.184496 0.743288 0.192336 0.740351 0.192336 0.743288 0.199495 0.740351 0.199495 0.743288 0.20709 0.740351 0.20709 0.743288 0.215328 0.740351 0.215328 0.743288 0.224211 0.740351 0.224211 0.743288 0.232308 0.740351 0.232308 0.743288 0.229508 0.790819 0.2234 0.791086 0.177482 0.791306 0.171398 0.790902 0.18504 0.79092 0.192487 0.791052 0.199426 0.791084 0.207011 0.791084 0.215126 0.791095 0.219127 0.844882 0.215039 0.83891 0.222179 0.83887 0.20712 0.838892 0.210757 0.844885 0.199509 0.838887 0.202906 0.844882 0.19247 0.838819 0.195766 0.844871 0.185573 0.838618 0.188365 0.84483 0.178506 0.839252 0.181522 0.844895 0.174486 0.83859 0.173819 0.844891 0.226165 0.838451 0.227013 0.844813 0.294582 0.72901 0.31514 0.72901 0.294582 0.768503 0.31514 0.768503 0.335698 0.72901 0.335698 0.768503 0.356256 0.72901 0.356256 0.768503 0.376814 0.72901 0.376814 0.768503 0.397373 0.72901 0.397373 0.768503 0.417931 0.72901 0.417931 0.768503 0.438489 0.72901 0.438489 0.768503 0.459047 0.72901 0.459047 0.768503 0.443693 0.947371 0.381031 0.973327 0.469648 0.884741 0.318368 0.947371 0.292413 0.884741 0.318368 0.822046 0.381031 0.796091 0.443693 0.822046 0.333787 0.686921 0.324887 0.708407 0.324887 0.665434 0.3034 0.717308 0.281913 0.708407 0.273013 0.686921 0.281913 0.665434 0.3034 0.656533 0.168816 0.740351 0.168816 0.743288 0.176656 0.740351 0.176656 0.743288 0.184496 0.740351 0.184496 0.743288 0.192336 0.740351 0.192336 0.743288 0.199495 0.740351 0.199495 0.743288 0.20709 0.740351 0.20709 0.743288 0.215328 0.740351 0.215328 0.743288 0.224211 0.740351 0.224211 0.743288 0.232308 0.740351 0.232308 0.743288 0.22682 0.84481 0.225359 0.838274 0.221467 0.838602 0.210835 0.84491 0.215034 0.83889 0.20768 0.838668 0.203012 0.844898 0.199704 0.838809 0.19577 0.844929 0.192313 0.838879 0.188246 0.844943 0.184959 0.838902 0.181495 0.844939 0.178971 0.838851 0.173954 0.844876 0.175133 0.838477 0.219027 0.8449 0.215126 0.791095 0.207324 0.79096 0.199523 0.791045 0.192411 0.79108 0.18468 0.791092 0.177739 0.791075 0.1717 0.79083 0.229121 0.790726 0.223028 0.790941 0.294582 0.72901 0.294582 0.768503 0.31514 0.72901 0.31514 0.768503 0.335698 0.72901 0.335698 0.768503 0.356256 0.72901 0.356256 0.768503 0.376814 0.72901 0.376814 0.768503 0.397373 0.72901 0.397373 0.768503 0.417931 0.72901 0.417931 0.768503 0.438489 0.72901 0.438489 0.768503 0.459047 0.72901 0.459047 0.768503 0.443693 0.947371 0.469648 0.884741 0.381031 0.973327 0.443693 0.822046 0.381031 0.796091 0.318368 0.822046 0.292413 0.884741 0.318368 0.947371 0.333787 0.686921 0.324887 0.665434 0.324887 0.708407 0.3034 0.656533 0.281913 0.665434 0.273013 0.686921 0.281913 0.708407 0.3034 0.717308 0.00953591 0.846698 0.00860733 0.861413 -0.00893885 0.846698 -0.00801027 0.861413 0.000298054 0.809498 0.0405915 0.604094 0.0472897 0.601893 0.0492726 0.730537 0.0667676 0.728735 -0.0291233 0.850719 -0.0280748 0.843472 -0.0221295 0.834598 -0.033044 0.808713 -0.0415482 0.812392 0.0321494 0.849725 0.0286718 0.843472 0.0227265 0.834598 0.0205551 0.855991 -0.0473686 0.81487 -0.066299 0.72868 0.033641 0.808713 0.0481867 0.815201 0.0421453 0.812392 0.0359152 0.607604 0.0316774 0.833105 -0.0371648 0.830932 0.0437345 0.755687 -0.0452844 0.755687 0.0151946 0.601981 0.0002985 0.593342 -0.0145975 0.601981 -0.0353181 0.607604 -0.0411544 0.603514 -0.0478526 0.601313 0.0002985 0.583206 -0.0487608 0.730502 0.0348495 0.640153 -0.000767171 0.635735 -0.0363838 0.640153 + + + + + + + + + + + + + + +

163 161 162 163 179 161 163 162 164 163 184 179 163 164 178 163 186 184 163 178 176 163 191 186 163 176 160 163 160 191 179 184 161 162 161 185 162 185 190 184 186 185 184 185 161 164 177 178 176 172 160 176 178 171 176 171 172 191 187 186 191 160 168 191 188 187 191 168 169 191 189 188 191 169 175 191 175 189 188 185 186 188 186 187 188 189 185 185 189 190 177 170 178 178 170 171 172 156 160 172 171 157 172 157 156 171 170 157 168 166 169 168 160 167 168 167 166 175 169 174 156 157 158 156 158 160 160 158 167 166 165 169 166 167 159 166 159 165 159 158 157 159 167 158 159 157 165 169 165 174 157 173 165 173 181 165 173 180 181 180 183 181 180 182 183 182 193 183 182 192 193 183 193 194 91 90 89 91 92 90 91 89 114 91 93 92 91 114 113 91 121 93 91 113 121 90 88 89 92 93 94 114 101 113 114 89 115 114 103 101 114 115 103 121 95 93 121 113 100 121 120 95 121 100 98 121 98 120 95 94 93 113 101 100 88 87 89 88 86 87 89 87 115 103 102 101 103 115 105 103 105 104 98 97 120 98 100 112 98 96 97 86 85 87 86 84 85 101 99 100 115 116 105 115 87 116 87 85 116 84 83 85 84 82 83 105 116 107 105 107 106 85 83 117 85 117 116 116 117 107 82 81 83 82 80 81 117 109 107 117 83 118 117 118 109 83 81 118 80 79 81 80 78 79 107 109 108 118 81 119 118 111 109 118 119 111 119 81 79 109 111 110 3 2 1 3 21 2 3 1 4 3 20 21 3 4 5 3 5 20 2 0 1 21 20 40 4 6 5 20 38 40 20 5 22 20 22 38 6 7 5 6 8 7 5 7 22 40 38 41 8 9 7 8 10 9 22 36 38 22 7 23 22 23 36 7 9 23 10 11 9 10 12 11 38 36 39 23 9 24 23 34 36 23 24 34 9 11 24 12 13 11 12 14 13 36 34 37 24 11 25 24 32 34 24 25 32 11 13 25 14 15 13 14 16 15 34 32 35 25 13 26 25 30 32 25 26 30 13 15 26 16 17 15 32 30 33 26 15 19 26 28 30 26 19 28 15 17 19 30 28 31 17 18 19 28 19 29 28 29 27 19 18 29 18 42 29 42 43 29 64 62 63 64 63 65 64 65 66 64 66 67 64 67 68 64 68 69 72 70 71 72 71 73 72 73 74 72 74 75 72 75 76 72 76 77 142 140 141 142 141 143 142 143 144 142 144 145 142 145 146 142 146 147 150 148 149 150 149 151 150 151 152 150 152 153 150 153 154 150 154 155 45 46 44 45 47 46 45 48 47 48 49 47 48 50 49 50 51 49 50 52 51 52 53 51 52 54 53 54 55 53 54 56 55 56 57 55 56 58 57 58 59 57 58 60 59 60 61 59 124 122 123 124 123 125 124 125 126 125 127 126 127 128 126 127 129 128 129 130 128 129 131 130 131 132 130 131 133 132 133 134 132 133 135 134 135 136 134 135 137 136 137 138 136 137 139 138

+
+
+
+
+ + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + airboy Skl_Root Leg_1_L Leg_2_L Ankle_L Leg_1_R Leg_2_R Ankle_R Waist Spine Arm_1_L Arm_2_L Wrist_L Arm_1_R Arm_2_R Wrist_R Head board_model eft_fire_L eft_fire_R + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 -3.6199901E-06 1 0 -0.636767 -1 -3.6199901E-06 0 2.3050904E-06 0 -0 1 -0.0339199 0 0 0 1 1 -0 0 -0.12651713 -0 1 -0 -0.6001962 0 -0 1 -0.03585245 0 0 0 1 1 -0 -0 -0.12433421 -0 0.9603356 0.27884674 -0.29691833 0 -0.27884674 0.9603356 0.054409493 0 0 0 1 -0.005231079 -0.99994886 -0.0086439485 0.040903833 0.9999863 -0.0052298643 -0.00016309964 -0.12605366 0.00011788469 -0.008644648 0.9999625 0.0053147874 0 0 0 1 1.0848084E-06 -1 6.8133936E-20 0.6001957 -1 -1.0848084E-06 2.5351817E-06 -0.1265683 -2.5351817E-06 -2.7501866E-12 -1 0.035852112 0 0 0 1 2.5351778E-06 3.6199929E-06 1 -0.030389488 1 -1.4503732E-06 -2.5351726E-06 0.12655298 1.450364E-06 1 -3.6199965E-06 -0.3002883 0 0 0 1 1.450355E-06 1 -7.2399866E-06 -0.040288337 -1.0848071E-06 7.239988E-06 1 0.0051706224 1 -1.450347E-06 1.0848175E-06 0.122870654 0 0 0 1 -3.6199901E-06 1 0 -0.6379521 -1 -3.6199901E-06 0 2.3050904E-06 0 -0 1 -0.02712379 0 0 0 1 -3.6199901E-06 1 0 -0.9237851 -1 -3.6199901E-06 0 2.3050904E-06 0 -0 1 -0.01288109 0 0 0 1 1 -0 0 -0.14599444 -0 1 -0 -1.0693476 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 -0.42349142 -0 1 -0 -1.0693645 0 -0 1 0.000120524724 0 0 0 1 1 -0 0 -0.6333184 -0 1 -0 -1.0693476 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 0.14553657 -0 1 -0 -1.0693426 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 0.42506057 -0 1 -0 -1.0693426 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 0.6253266 -0 1 -0 -1.0693426 0 -0 1 -0.0004228903 0 0 0 1 -3.6199901E-06 1 0 -1.197504 -1 -3.6199901E-06 0 2.3050902E-06 0 -0 1 0.00648681 0 0 0 1 1 -0 0 0 -0 1 -0 -0.00475085 0 -0 1 0 0 0 0 1 1 -0 0 -1.36136 -0 1 -0 0.099887155 0 -0 1 -0.407001 0 0 0 1 1 -0 0 -1.36136 -0 1 -0 0.099887155 0 -0 1 0.408049 0 0 0 1 + + + + + + + + 0.099999994 0.79999995 0.9 0.19999999 0.59999996 0.39999998 0.14999999 0.7 0.29999998 1 0.35 0.25 0.5 0.66999996 0.32999998 0.01 0.98999995 0.089999996 0.85999995 0.049999997 0.88 0.12 0.62 0.38 + + + + + + + + + + + + + + 3 2 2 2 3 2 2 2 3 2 3 2 2 2 2 2 2 1 3 2 2 2 2 3 2 2 2 1 2 2 2 2 2 2 2 2 2 2 1 1 3 2 2 2 2 1 2 2 1 2 1 2 1 1 2 2 1 2 2 1 2 2 1 2 1 2 1 2 1 2 2 2 2 2 2 2 1 2 1 1 1 1 2 2 1 1 2 1 2 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 1 2 1 2 1 1 2 1 1 1 2 1 1 1 1 1 1 1 1 2 1 1 1 2 2 2 1 1 1 1 1 1 2 1 2 2 2 2 1 1 2 2 1 2 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 2 2 2 1 2 2 2 2 2 2 2 1 2 2 2 2 2 1 2 1 2 2 2 1 1 2 2 1 1 2 1 2 2 2 2 2 1 2 2 2 2 2 2 1 2 1 2 2 2 1 2 2 2 2 1 2 1 2 2 2 2 2 2 1 2 2 1 1 2 2 1 2 1 1 1 1 1 1 1 1 1 2 1 2 1 1 2 1 2 1 1 2 1 1 2 2 2 1 1 2 2 1 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 2 2 2 1 2 2 1 2 1 1 1 1 1 1 1 1 2 1 1 1 2 1 2 1 2 1 1 2 1 1 2 2 1 2 2 1 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 2 0 5 0 8 1 2 0 8 2 8 2 9 0 5 0 8 2 2 3 5 3 8 4 8 1 9 3 2 5 8 4 5 5 8 4 2 6 5 6 8 7 5 3 8 1 2 3 5 3 8 4 5 8 8 7 5 0 8 2 5 8 8 7 5 0 8 2 5 5 8 4 5 0 8 2 8 9 2 10 5 10 8 8 2 7 8 8 2 1 8 3 5 7 8 8 5 7 8 8 2 10 5 10 8 8 5 1 8 3 2 7 8 8 2 0 8 2 8 9 2 0 8 2 5 2 8 0 5 1 8 3 2 5 8 4 2 8 8 7 2 1 8 3 2 2 8 0 2 3 8 1 2 1 8 3 2 2 8 0 2 9 2 9 2 11 5 11 8 12 2 8 8 7 2 0 8 2 2 1 8 3 2 2 8 0 2 9 5 2 8 0 5 13 8 14 5 9 5 1 8 3 5 9 5 2 8 0 5 9 2 9 2 7 8 8 2 1 8 3 2 9 2 1 8 3 5 7 8 8 5 9 5 1 8 3 5 1 8 3 5 9 8 1 9 3 9 9 8 2 9 0 8 9 8 0 9 2 9 9 8 0 9 2 8 2 9 0 8 0 9 2 8 15 9 16 8 15 9 16 8 15 9 16 8 1 9 3 9 9 8 3 9 1 8 9 16 9 16 9 16 9 8 15 9 16 8 15 9 16 16 9 16 9 8 15 9 16 16 9 8 15 9 16 16 9 8 15 9 16 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 16 9 2 12 3 12 2 7 8 8 2 12 3 12 3 9 2 12 3 12 3 9 2 12 3 12 3 9 3 9 2 12 3 12 3 9 3 9 3 9 2 12 3 12 3 9 3 9 3 9 4 9 4 9 4 9 4 9 4 9 3 12 4 12 4 9 4 9 3 9 3 12 4 12 3 12 4 12 3 12 4 12 4 9 4 9 4 9 4 9 3 9 3 9 3 12 4 12 3 9 3 12 4 12 5 12 6 12 5 7 8 8 5 12 6 12 6 9 6 9 5 12 6 12 5 12 6 12 6 9 5 12 6 12 6 9 6 9 6 9 5 12 6 12 6 9 6 9 6 9 7 9 6 9 7 9 7 9 6 9 6 9 6 9 7 9 7 9 7 9 6 9 7 9 7 9 7 9 7 9 7 9 7 9 7 9 7 9 7 9 7 9 7 9 8 17 9 18 13 19 9 1 10 3 9 12 13 12 9 20 13 21 9 9 9 2 13 0 9 1 13 3 9 1 13 3 9 1 13 3 9 1 13 3 9 2 10 0 9 2 10 0 9 9 9 2 10 0 9 2 10 0 9 12 10 12 9 2 10 0 9 8 10 7 10 9 9 3 10 1 10 9 9 8 10 7 9 4 10 5 9 4 10 5 10 9 10 9 9 4 10 5 9 3 10 1 10 9 10 9 9 8 10 7 10 9 9 5 10 4 9 5 10 4 9 12 10 12 9 12 10 12 9 2 10 0 9 9 9 12 10 12 9 1 10 3 9 15 13 16 9 15 13 16 13 12 14 12 13 12 14 12 13 9 13 12 14 12 13 9 13 12 14 12 9 8 13 7 9 3 13 1 13 9 9 8 13 7 9 4 13 5 9 22 13 23 9 4 13 5 13 9 9 3 13 1 13 9 9 8 13 7 9 12 13 12 9 12 13 12 9 12 13 12 9 12 13 12 9 12 13 12 9 9 9 1 13 3 9 1 13 3 14 9 14 9 13 12 14 12 13 12 14 12 14 9 13 12 14 12 14 9 14 9 14 9 14 9 14 9 14 9 14 9 14 9 14 9 14 4 15 5 15 9 14 3 15 1 15 9 15 9 14 3 15 1 15 9 14 2 15 0 15 9 15 9 14 2 15 0 15 9 15 9 14 4 15 5 14 1 15 3 14 1 15 3 15 9 15 9 14 12 15 12 14 1 15 3 15 9 14 1 15 3 14 1 15 3 14 1 15 3 15 9 15 9 15 9 15 9 15 9 15 9 15 9 15 9 15 9 15 9 15 9 15 9 15 9 15 9 15 9 15 9 15 9 11 9 10 12 11 12 11 9 10 12 11 12 10 12 11 12 10 12 11 12 11 9 10 12 11 12 10 12 11 12 11 9 10 12 11 12 11 9 11 9 11 9 11 9 11 9 11 9 11 9 11 9 11 3 12 1 12 9 12 9 12 9 11 3 12 1 12 9 11 0 12 2 12 9 11 0 12 2 12 9 12 9 11 12 12 12 12 9 12 9 11 4 12 5 11 4 12 5 12 9 11 1 12 3 11 1 12 3 12 9 11 1 12 3 11 1 12 3 11 1 12 3 11 1 12 3 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + airboy Skl_Root Leg_1_L Leg_2_L Ankle_L Leg_1_R Leg_2_R Ankle_R Waist Spine Arm_1_L Arm_2_L Wrist_L Arm_1_R Arm_2_R Wrist_R Head board_model eft_fire_L eft_fire_R + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 -3.6199901E-06 1 0 -0.636767 -1 -3.6199901E-06 0 2.3050904E-06 0 -0 1 -0.0339199 0 0 0 1 1 -0 0 -0.12651713 -0 1 -0 -0.6001962 0 -0 1 -0.03585245 0 0 0 1 1 -0 -0 -0.12433421 -0 0.9603356 0.27884674 -0.29691833 0 -0.27884674 0.9603356 0.054409493 0 0 0 1 -0.005231079 -0.99994886 -0.0086439485 0.040903833 0.9999863 -0.0052298643 -0.00016309964 -0.12605366 0.00011788469 -0.008644648 0.9999625 0.0053147874 0 0 0 1 1.0848084E-06 -1 6.8133936E-20 0.6001957 -1 -1.0848084E-06 2.5351817E-06 -0.1265683 -2.5351817E-06 -2.7501866E-12 -1 0.035852112 0 0 0 1 2.5351778E-06 3.6199929E-06 1 -0.030389488 1 -1.4503732E-06 -2.5351726E-06 0.12655298 1.450364E-06 1 -3.6199965E-06 -0.3002883 0 0 0 1 1.450355E-06 1 -7.2399866E-06 -0.040288337 -1.0848071E-06 7.239988E-06 1 0.0051706224 1 -1.450347E-06 1.0848175E-06 0.122870654 0 0 0 1 -3.6199901E-06 1 0 -0.6379521 -1 -3.6199901E-06 0 2.3050904E-06 0 -0 1 -0.02712379 0 0 0 1 -3.6199901E-06 1 0 -0.9237851 -1 -3.6199901E-06 0 2.3050904E-06 0 -0 1 -0.01288109 0 0 0 1 1 -0 0 -0.14599444 -0 1 -0 -1.0693476 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 -0.42349142 -0 1 -0 -1.0693645 0 -0 1 0.000120524724 0 0 0 1 1 -0 0 -0.6333184 -0 1 -0 -1.0693476 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 0.14553657 -0 1 -0 -1.0693426 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 0.42506057 -0 1 -0 -1.0693426 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 0.6253266 -0 1 -0 -1.0693426 0 -0 1 -0.0004228903 0 0 0 1 -3.6199901E-06 1 0 -1.197504 -1 -3.6199901E-06 0 2.3050902E-06 0 -0 1 0.00648681 0 0 0 1 1 -0 0 0 -0 1 -0 -0.00475085 0 -0 1 0 0 0 0 1 1 -0 0 -1.36136 -0 1 -0 0.099887155 0 -0 1 -0.407001 0 0 0 1 1 -0 0 -1.36136 -0 1 -0 0.099887155 0 -0 1 0.408049 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + airboy Skl_Root Leg_1_L Leg_2_L Ankle_L Leg_1_R Leg_2_R Ankle_R Waist Spine Arm_1_L Arm_2_L Wrist_L Arm_1_R Arm_2_R Wrist_R Head board_model eft_fire_L eft_fire_R + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 -3.6199901E-06 1 0 -0.636767 -1 -3.6199901E-06 0 2.3050904E-06 0 -0 1 -0.0339199 0 0 0 1 1 -0 0 -0.12651713 -0 1 -0 -0.6001962 0 -0 1 -0.03585245 0 0 0 1 1 -0 -0 -0.12433421 -0 0.9603356 0.27884674 -0.29691833 0 -0.27884674 0.9603356 0.054409493 0 0 0 1 -0.005231079 -0.99994886 -0.0086439485 0.040903833 0.9999863 -0.0052298643 -0.00016309964 -0.12605366 0.00011788469 -0.008644648 0.9999625 0.0053147874 0 0 0 1 1.0848084E-06 -1 6.8133936E-20 0.6001957 -1 -1.0848084E-06 2.5351817E-06 -0.1265683 -2.5351817E-06 -2.7501866E-12 -1 0.035852112 0 0 0 1 2.5351778E-06 3.6199929E-06 1 -0.030389488 1 -1.4503732E-06 -2.5351726E-06 0.12655298 1.450364E-06 1 -3.6199965E-06 -0.3002883 0 0 0 1 1.450355E-06 1 -7.2399866E-06 -0.040288337 -1.0848071E-06 7.239988E-06 1 0.0051706224 1 -1.450347E-06 1.0848175E-06 0.122870654 0 0 0 1 -3.6199901E-06 1 0 -0.6379521 -1 -3.6199901E-06 0 2.3050904E-06 0 -0 1 -0.02712379 0 0 0 1 -3.6199901E-06 1 0 -0.9237851 -1 -3.6199901E-06 0 2.3050904E-06 0 -0 1 -0.01288109 0 0 0 1 1 -0 0 -0.14599444 -0 1 -0 -1.0693476 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 -0.42349142 -0 1 -0 -1.0693645 0 -0 1 0.000120524724 0 0 0 1 1 -0 0 -0.6333184 -0 1 -0 -1.0693476 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 0.14553657 -0 1 -0 -1.0693426 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 0.42506057 -0 1 -0 -1.0693426 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 0.6253266 -0 1 -0 -1.0693426 0 -0 1 -0.0004228903 0 0 0 1 -3.6199901E-06 1 0 -1.197504 -1 -3.6199901E-06 0 2.3050902E-06 0 -0 1 0.00648681 0 0 0 1 1 -0 0 0 -0 1 -0 -0.00475085 0 -0 1 0 0 0 0 1 1 -0 0 -1.36136 -0 1 -0 0.099887155 0 -0 1 -0.407001 0 0 0 1 1 -0 0 -1.36136 -0 1 -0 0.099887155 0 -0 1 0.408049 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 16 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + airboy Skl_Root Leg_1_L Leg_2_L Ankle_L Leg_1_R Leg_2_R Ankle_R Waist Spine Arm_1_L Arm_2_L Wrist_L Arm_1_R Arm_2_R Wrist_R Head board_model eft_fire_L eft_fire_R + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 -3.6199901E-06 1 0 -0.636767 -1 -3.6199901E-06 0 2.3050904E-06 0 -0 1 -0.0339199 0 0 0 1 1 -0 0 -0.12651713 -0 1 -0 -0.6001962 0 -0 1 -0.03585245 0 0 0 1 1 -0 -0 -0.12433421 -0 0.9603356 0.27884674 -0.29691833 0 -0.27884674 0.9603356 0.054409493 0 0 0 1 -0.005231079 -0.99994886 -0.0086439485 0.040903833 0.9999863 -0.0052298643 -0.00016309964 -0.12605366 0.00011788469 -0.008644648 0.9999625 0.0053147874 0 0 0 1 1.0848084E-06 -1 6.8133936E-20 0.6001957 -1 -1.0848084E-06 2.5351817E-06 -0.1265683 -2.5351817E-06 -2.7501866E-12 -1 0.035852112 0 0 0 1 2.5351778E-06 3.6199929E-06 1 -0.030389488 1 -1.4503732E-06 -2.5351726E-06 0.12655298 1.450364E-06 1 -3.6199965E-06 -0.3002883 0 0 0 1 1.450355E-06 1 -7.2399866E-06 -0.040288337 -1.0848071E-06 7.239988E-06 1 0.0051706224 1 -1.450347E-06 1.0848175E-06 0.122870654 0 0 0 1 -3.6199901E-06 1 0 -0.6379521 -1 -3.6199901E-06 0 2.3050904E-06 0 -0 1 -0.02712379 0 0 0 1 -3.6199901E-06 1 0 -0.9237851 -1 -3.6199901E-06 0 2.3050904E-06 0 -0 1 -0.01288109 0 0 0 1 1 -0 0 -0.14599444 -0 1 -0 -1.0693476 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 -0.42349142 -0 1 -0 -1.0693645 0 -0 1 0.000120524724 0 0 0 1 1 -0 0 -0.6333184 -0 1 -0 -1.0693476 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 0.14553657 -0 1 -0 -1.0693426 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 0.42506057 -0 1 -0 -1.0693426 0 -0 1 -0.0004228903 0 0 0 1 1 -0 0 0.6253266 -0 1 -0 -1.0693426 0 -0 1 -0.0004228903 0 0 0 1 -3.6199901E-06 1 0 -1.197504 -1 -3.6199901E-06 0 2.3050902E-06 0 -0 1 0.00648681 0 0 0 1 1 -0 0 0 -0 1 -0 -0.00475085 0 -0 1 0 0 0 0 1 1 -0 0 -1.36136 -0 1 -0 0.099887155 0 -0 1 -0.407001 0 0 0 1 1 -0 0 -1.36136 -0 1 -0 0.099887155 0 -0 1 0.408049 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 17 0 + + + + + + + + 0 0 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 0 0.636767 0.0339199 + 0 0 1 90.000206 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + -0.0365713 -0.126517 0.00193255 + 0 0 1 -90.000206 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + -0.00218292 -0.299883 -0.00530911 + 0 0 1 0 + 0 1 0 0 + 1 0 0 16.191387 + 1 1 1 + + 0.00193108 -0.259617 0.0383912 + 0 0 1 -90.31133 + 0 1 0 -15.695892 + 1 0 0 0.077470765 + 1 1 1 + + + + + -0.036571 0.126569 0.00193253 + 0 0 1 179.99986 + 0 1 0 0 + 1 0 0 179.99986 + 1 1 1 + + 0.299907 -1.60818E-05 0.00546371 + 0 0 1 0 + 0 1 0 90.000206 + 1 0 0 179.99986 + 1 1 1 + + -0.0355607 0.00368236 -0.26 + 0 0 1 0 + 0 1 0 -90.000206 + 1 0 0 -90.000206 + 1 1 1 + + + + + 0.00118504 0 -0.00679611 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 0.285833 0 -0.0142427 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 0.145562 -0.145996 -0.0124582 + 0 0 1 -90.000206 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 0.277497 1.69173E-05 -0.000543415 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 0.209827 -1.69235E-05 0.000543415 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + + + 0.145558 0.145535 -0.0124582 + 0 0 1 -90.000206 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + -0.279524 0 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + -0.200266 0 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + + + 0.273719 0 -0.0193679 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + + + + 0 0.00475085 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 1.36136 -0.104638 0.407001 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + 1.36136 -0.104638 -0.408049 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #airboy_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #airboy_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #airboy_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #airboy_bone_id + + + + + + + + + + + + +
\ No newline at end of file diff --git a/Assets/Resources/Models/Games/Airboarder/airboy_model.dae.meta b/Assets/Resources/Models/Games/Airboarder/airboy_model.dae.meta new file mode 100644 index 000000000..53479335f --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/airboy_model.dae.meta @@ -0,0 +1,126 @@ +fileFormatVersion: 2 +guid: bad7ac774d6d2d74ea0716633b8cee42 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: airboyMt + second: {fileID: 2100000, guid: d173bed14b93ec9489e590a1c0b3831e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: boardMt + second: {fileID: 2100000, guid: 21a244208ca5883499c02785947c32eb, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: faceMt + second: {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: grassMt + second: {fileID: 2100000, guid: d173bed14b93ec9489e590a1c0b3831e, type: 2} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/airboy_shadow_model.dae b/Assets/Resources/Models/Games/Airboarder/airboy_shadow_model.dae new file mode 100644 index 000000000..4bedebcdf --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/airboy_shadow_model.dae @@ -0,0 +1,195 @@ + + + + 2024-02-25T16:09:23.9096529-06:00 + 2024-02-25T16:09:23.9096584-06:00 + + + + ./airboy_board.png + + + ./airboy_body.png + + + ./airboy_face.0.png + + + ./airboy_face.1.png + + + ./airboy_face.2.png + + + ./airboy_shadow.png + + + ./block_shadow.png + + + ./dog.png + + + ./dog_sdw.png + + + ./floor.png + + + ./metal_env.png + + + ./mother_ship.png + + + ./wall_body.png + + + ./cloud01.png + + + + + + + + + + + + + airboy_shadow + PNG + + + + + airboy_sdwMt_surf + WRAP + WRAP + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + + -1.194352 0 0.743173 1.838348 0 0.743173 -1.194352 0 -0.743173 1.838348 0 -0.743173 + + + + + + + + + + 0 0 1 0 0 1 1 1 + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + + + + + + +

0 1 2 2 1 3

+
+
+
+
+ + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + airboy_sdwPg + + + + + + + + 1 -0 0 -0.321998 -0 1 -0 0 0 -0 1 0 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 + 0 0 0 0 0 0 0 0 + + + + + + + + 0.321998 0 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #airboy_sdwPg_bone_id + + + + + + + + + + + + +
\ No newline at end of file diff --git a/Assets/Resources/Models/Games/Airboarder/airboy_shadow_model.dae.meta b/Assets/Resources/Models/Games/Airboarder/airboy_shadow_model.dae.meta new file mode 100644 index 000000000..502e45ec4 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/airboy_shadow_model.dae.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: 94df92b5e5343dd40b32bcc24267b22b +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: airboy_sdwMt + second: {fileID: 2100000, guid: 88c6b20a5757e1047b66d40ca9f60a3e, type: 2} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/arch.dae b/Assets/Resources/Models/Games/Airboarder/arch.dae new file mode 100644 index 000000000..4dd808793 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/arch.dae @@ -0,0 +1,1420 @@ + + + + 2024-02-25T16:09:49.977038-06:00 + 2024-02-25T16:09:49.9770468-06:00 + + + + ./airboy_board.png + + + ./airboy_body.png + + + ./airboy_face.0.png + + + ./airboy_face.1.png + + + ./airboy_face.2.png + + + ./airboy_shadow.png + + + ./block_shadow.png + + + ./dog.png + + + ./dog_sdw.png + + + ./floor.png + + + ./metal_env.png + + + ./mother_ship.png + + + ./wall_body.png + + + ./cloud01.png + + + + + + + + + + + + + + + + wall_body + PNG + + + + + blockMt_surf + WRAP + WRAP + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + block_shadow + PNG + + + + + sdwMt_surf + WRAP + WRAP + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + + -0.320008 0.030361278 0.95999193 0.320008 0.030361278 0.95999193 -0.320008 0.030361278 1.600008 0.320008 0.030361278 1.600008 0.320008 0.11035298 1.68 0.320008 1.5564849 1.68 -0.320008 0.11035298 1.68 -0.320008 1.5564849 1.68 -0.4 1.5564849 1.600008 -0.4 1.5564849 0.95999193 -0.4 0.11035298 1.600008 -0.4 0.11035298 0.95999193 0.4 0.11035298 0.95999193 0.4 1.5564849 0.95999193 0.4 0.11035298 1.600008 0.4 1.5564849 1.600008 0.320008 1.636475 1.600008 0.320008 1.636475 0.95999193 -0.320008 1.636475 1.600008 -0.320008 1.636475 0.95999193 0.320008 1.5564849 0.88 0.320008 0.11035298 0.88 -0.320008 1.5564849 0.88 -0.320008 0.11035298 0.88 -0.320008 0.030361278 1.600008 -0.4 0.11035298 1.600008 -0.320008 0.030361278 0.95999193 -0.4 0.11035298 0.95999193 -0.320008 0.11035298 1.68 -0.320008 0.030361278 1.600008 0.320008 0.11035298 1.68 0.320008 0.030361278 1.600008 -0.4 0.11035298 1.600008 -0.320008 0.11035298 1.68 -0.4 1.5564849 1.600008 -0.320008 1.5564849 1.68 0.4 0.11035298 1.600008 0.320008 0.030361278 1.600008 0.4 0.11035298 0.95999193 0.320008 0.030361278 0.95999193 0.320008 0.11035298 1.68 0.4 0.11035298 1.600008 0.320008 1.5564849 1.68 0.4 1.5564849 1.600008 -0.4 1.5564849 1.600008 -0.320008 1.636475 1.600008 -0.4 1.5564849 0.95999193 -0.320008 1.636475 0.95999193 -0.320008 1.636475 1.600008 -0.320008 1.5564849 1.68 0.320008 1.636475 1.600008 0.320008 1.5564849 1.68 0.320008 1.636475 1.600008 0.4 1.5564849 1.600008 0.320008 1.636475 0.95999193 0.4 1.5564849 0.95999193 -0.4 1.5564849 0.95999193 -0.320008 1.5564849 0.88 -0.4 0.11035298 0.95999193 -0.320008 0.11035298 0.88 -0.320008 1.5564849 0.88 -0.320008 1.636475 0.95999193 0.320008 1.5564849 0.88 0.320008 1.636475 0.95999193 0.320008 1.5564849 0.88 0.4 1.5564849 0.95999193 0.320008 0.11035298 0.88 0.4 0.11035298 0.95999193 -0.320008 0.030361278 0.95999193 -0.320008 0.11035298 0.88 0.320008 0.030361278 0.95999193 0.320008 0.11035298 0.88 -0.4 0.11035298 1.600008 -0.320008 0.030361278 1.600008 -0.320008 0.11035298 1.68 0.320008 0.030361278 1.600008 0.4 0.11035298 1.600008 0.320008 0.11035298 1.68 -0.320008 1.636475 1.600008 -0.4 1.5564849 1.600008 -0.320008 1.5564849 1.68 0.4 1.5564849 1.600008 0.320008 1.636475 1.600008 0.320008 1.5564849 1.68 -0.320008 1.5564849 0.88 -0.4 1.5564849 0.95999193 -0.320008 1.636475 0.95999193 0.4 1.5564849 0.95999193 0.320008 1.5564849 0.88 0.320008 1.636475 0.95999193 -0.320008 0.030361278 0.95999193 -0.4 0.11035298 0.95999193 -0.320008 0.11035298 0.88 0.4 0.11035298 0.95999193 0.320008 0.030361278 0.95999193 0.320008 0.11035298 0.88 + + + + + + + + + + 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 0.5773496 -0.57735056 0.57735056 0.5773496 -0.57735056 0.57735056 0.5773496 -0.57735056 0.57735056 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 0.57734996 0.57734996 0.5773509 0.57734996 0.57734996 0.5773509 0.57734996 0.57734996 0.5773509 0.57734996 -0.5773509 0.5773509 -0.57734895 -0.5773509 0.5773509 -0.57734895 -0.5773509 0.5773509 -0.57734895 0.5773509 0.5773509 -0.57734895 0.5773509 0.5773509 -0.57734895 0.5773509 0.5773509 -0.57734895 -0.57735026 -0.57735026 -0.57735026 -0.57735026 -0.57735026 -0.57735026 -0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 + + + + + + + + + + 0.382672 0.285334 0.382672 0.189607 0.478399 0.285334 0.478399 0.189607 0.0174928 0.189607 0.125643 0.189607 0.0174927 0.285334 0.125643 0.285334 0.125643 0.309263 0.125643 0.40499 0.0174927 0.309263 0.0174928 0.40499 0.0174928 0.0699514 0.125643 0.0699514 0.0174928 0.165679 0.125643 0.165678 0.14336 0.189607 0.239087 0.189607 0.14336 0.285334 0.239087 0.285334 0.256805 0.189607 0.364955 0.189607 0.256805 0.285334 0.364955 0.285334 0.478399 0.285334 0.478399 0.297299 0.382672 0.285334 0.382672 0.297299 0.0174927 0.285334 0.0117398 0.285334 0.0174928 0.189607 0.0117399 0.189607 0.0174927 0.297299 0.0174927 0.285334 0.125643 0.297299 0.125643 0.285334 0.478399 0.177643 0.478399 0.189607 0.382672 0.177643 0.382672 0.189607 0.0174928 0.189607 0.0174928 0.177643 0.125643 0.189607 0.125643 0.177643 0.14336 0.297299 0.14336 0.285334 0.239087 0.297299 0.239087 0.285334 0.131396 0.285334 0.125643 0.285334 0.131396 0.189607 0.125643 0.189607 0.14336 0.189607 0.14336 0.177643 0.239087 0.189607 0.239087 0.177643 0.256805 0.297299 0.256805 0.285334 0.364955 0.297299 0.364955 0.285334 0.251052 0.285334 0.239087 0.285334 0.251052 0.189607 0.239087 0.189607 0.256805 0.189607 0.256805 0.177643 0.364955 0.189607 0.364955 0.177643 0.370707 0.285334 0.364955 0.285334 0.370707 0.189607 0.364955 0.189607 0.0174927 0.297299 0.0117398 0.285334 0.0174927 0.285334 0.0117399 0.189607 0.0174928 0.177643 0.0174928 0.189607 0.131396 0.285334 0.125643 0.297299 0.125643 0.285334 0.125643 0.177643 0.131396 0.189607 0.125643 0.189607 0.251052 0.285334 0.239087 0.297299 0.239087 0.285334 0.239087 0.177643 0.251052 0.189607 0.239087 0.189607 0.370707 0.285334 0.364955 0.297299 0.364955 0.285334 0.364955 0.177643 0.370707 0.189607 0.364955 0.189607 + + + + + + + + + + + + + + +

0 1 2 2 1 3 4 5 6 6 5 7 8 9 10 10 9 11 12 13 14 14 13 15 16 17 18 18 17 19 20 21 22 22 21 23 24 25 26 26 25 27 28 29 30 30 29 31 32 33 34 34 33 35 36 37 38 38 37 39 40 41 42 42 41 43 44 45 46 46 45 47 48 49 50 50 49 51 52 53 54 54 53 55 56 57 58 58 57 59 60 61 62 62 61 63 64 65 66 66 65 67 68 69 70 70 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

+
+
+
+ + + + -0.320008 0.04704138 -1.600008 0.320008 0.04704138 -1.600008 -0.320008 0.04704138 -0.95999193 0.320008 0.04704138 -0.95999193 0.320008 0.12703298 -0.88 0.320008 1.5564849 -0.88 -0.320008 0.12703298 -0.88 -0.320008 1.5564849 -0.88 -0.4 1.5564849 -0.95999193 -0.4 1.5564849 -1.600008 -0.4 0.12703298 -0.95999193 -0.4 0.12703298 -1.600008 0.4 0.12703298 -1.600008 0.4 1.5564849 -1.600008 0.4 0.12703298 -0.95999193 0.4 1.5564849 -0.95999193 0.320008 1.636475 -0.95999193 0.320008 1.636475 -1.600008 -0.320008 1.636475 -0.95999193 -0.320008 1.636475 -1.600008 0.320008 1.5564849 -1.68 0.320008 0.12703298 -1.68 -0.320008 1.5564849 -1.68 -0.320008 0.12703298 -1.68 -0.320008 0.04704138 -0.95999193 -0.4 0.12703298 -0.95999193 -0.320008 0.04704138 -1.600008 -0.4 0.12703298 -1.600008 -0.320008 0.12703298 -0.88 -0.320008 0.04704138 -0.95999193 0.320008 0.12703298 -0.88 0.320008 0.04704138 -0.95999193 -0.4 0.12703298 -0.95999193 -0.320008 0.12703298 -0.88 -0.4 1.5564849 -0.95999193 -0.320008 1.5564849 -0.88 0.4 0.12703298 -0.95999193 0.320008 0.04704138 -0.95999193 0.4 0.12703298 -1.600008 0.320008 0.04704138 -1.600008 0.320008 0.12703298 -0.88 0.4 0.12703298 -0.95999193 0.320008 1.5564849 -0.88 0.4 1.5564849 -0.95999193 -0.4 1.5564849 -0.95999193 -0.320008 1.636475 -0.95999193 -0.4 1.5564849 -1.600008 -0.320008 1.636475 -1.600008 -0.320008 1.636475 -0.95999193 -0.320008 1.5564849 -0.88 0.320008 1.636475 -0.95999193 0.320008 1.5564849 -0.88 0.320008 1.636475 -0.95999193 0.4 1.5564849 -0.95999193 0.320008 1.636475 -1.600008 0.4 1.5564849 -1.600008 -0.4 1.5564849 -1.600008 -0.320008 1.5564849 -1.68 -0.4 0.12703298 -1.600008 -0.320008 0.12703298 -1.68 -0.320008 1.5564849 -1.68 -0.320008 1.636475 -1.600008 0.320008 1.5564849 -1.68 0.320008 1.636475 -1.600008 0.320008 1.5564849 -1.68 0.4 1.5564849 -1.600008 0.320008 0.12703298 -1.68 0.4 0.12703298 -1.600008 -0.320008 0.04704138 -1.600008 -0.320008 0.12703298 -1.68 0.320008 0.04704138 -1.600008 0.320008 0.12703298 -1.68 -0.4 0.12703298 -0.95999193 -0.320008 0.04704138 -0.95999193 -0.320008 0.12703298 -0.88 0.320008 0.04704138 -0.95999193 0.4 0.12703298 -0.95999193 0.320008 0.12703298 -0.88 -0.320008 1.636475 -0.95999193 -0.4 1.5564849 -0.95999193 -0.320008 1.5564849 -0.88 0.4 1.5564849 -0.95999193 0.320008 1.636475 -0.95999193 0.320008 1.5564849 -0.88 -0.320008 1.5564849 -1.68 -0.4 1.5564849 -1.600008 -0.320008 1.636475 -1.600008 0.4 1.5564849 -1.600008 0.320008 1.5564849 -1.68 0.320008 1.636475 -1.600008 -0.320008 0.04704138 -1.600008 -0.4 0.12703298 -1.600008 -0.320008 0.12703298 -1.68 0.4 0.12703298 -1.600008 0.320008 0.04704138 -1.600008 0.320008 0.12703298 -1.68 + + + + + + + + + + 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 0.57735026 -0.57735026 0.57735026 0.57735026 -0.57735026 0.57735026 0.57735026 -0.57735026 0.57735026 -0.5773509 0.5773509 0.57734895 -0.5773509 0.5773509 0.57734895 -0.5773509 0.5773509 0.57734895 0.5773509 0.5773509 0.57734895 0.5773509 0.5773509 0.57734895 0.5773509 0.5773509 0.57734895 -0.57734996 0.5773509 -0.57734996 -0.57734996 0.5773509 -0.57734996 -0.57734996 0.5773509 -0.57734996 0.57734996 0.5773509 -0.57734996 0.57734996 0.5773509 -0.57734996 0.57734996 0.5773509 -0.57734996 -0.5773496 -0.57735056 -0.57735056 -0.5773496 -0.57735056 -0.57735056 -0.5773496 -0.57735056 -0.57735056 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 + + + + + + + + + + 0.144554 0.693075 0.144554 0.777608 0.0600217 0.693075 0.0600217 0.777608 0.467027 0.777608 0.371525 0.777608 0.467027 0.693075 0.371525 0.693075 0.371525 0.671945 0.371525 0.587413 0.467027 0.671945 0.467027 0.587413 0.467027 0.88327 0.371525 0.88327 0.467027 0.798738 0.371525 0.798738 0.355879 0.777608 0.271347 0.777608 0.355879 0.693075 0.271347 0.693075 0.255702 0.777608 0.160199 0.777608 0.255702 0.693075 0.160199 0.693075 0.0600217 0.693075 0.0600217 0.68251 0.144554 0.693075 0.144554 0.68251 0.467027 0.693075 0.472107 0.693075 0.467027 0.777608 0.472107 0.777608 0.467027 0.68251 0.467027 0.693075 0.371525 0.68251 0.371525 0.693075 0.0600217 0.788173 0.0600217 0.777608 0.144554 0.788173 0.144554 0.777608 0.467027 0.777608 0.467027 0.788173 0.371525 0.777608 0.371525 0.788173 0.355879 0.68251 0.355879 0.693075 0.271347 0.68251 0.271347 0.693075 0.366445 0.693075 0.371525 0.693075 0.366445 0.777608 0.371525 0.777608 0.355879 0.777608 0.355879 0.788173 0.271347 0.777608 0.271347 0.788173 0.255702 0.68251 0.255702 0.693075 0.160199 0.68251 0.160199 0.693075 0.260782 0.693075 0.271347 0.693075 0.260782 0.777608 0.271347 0.777608 0.255702 0.777608 0.255702 0.788173 0.160199 0.777608 0.160199 0.788173 0.155119 0.693075 0.160199 0.693075 0.155119 0.777608 0.160199 0.777608 0.467027 0.68251 0.472107 0.693075 0.467027 0.693075 0.472107 0.777608 0.467027 0.788173 0.467027 0.777608 0.366445 0.693075 0.371525 0.68251 0.371525 0.693075 0.371525 0.788173 0.366445 0.777608 0.371525 0.777608 0.260782 0.693075 0.271347 0.68251 0.271347 0.693075 0.271347 0.788173 0.260782 0.777608 0.271347 0.777608 0.155119 0.693075 0.160199 0.68251 0.160199 0.693075 0.160199 0.788173 0.155119 0.777608 0.160199 0.777608 + + + + + + + + + + + + + + +

0 1 2 2 1 3 4 5 6 6 5 7 8 9 10 10 9 11 12 13 14 14 13 15 16 17 18 18 17 19 20 21 22 22 21 23 24 25 26 26 25 27 28 29 30 30 29 31 32 33 34 34 33 35 36 37 38 38 37 39 40 41 42 42 41 43 44 45 46 46 45 47 48 49 50 50 49 51 52 53 54 54 53 55 56 57 58 58 57 59 60 61 62 62 61 63 64 65 66 66 65 67 68 69 70 70 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

+
+
+
+ + + + -0.426265 2.3527482 -1.514881 0.21375102 2.3527482 -1.514881 -0.426265 1.7127321 -1.514881 0.21375102 1.7127321 -1.514881 0.21375102 1.6327401 -1.434891 0.21375102 1.6327401 1.051209 -0.426265 1.6327401 -1.434891 -0.426265 1.6327401 1.051209 -0.506257 1.7127321 1.051209 -0.506257 2.3527482 1.051209 -0.506257 1.7127321 -1.434891 -0.506257 2.3527482 -1.434891 0.293743 2.3527482 -1.434891 0.293743 2.3527482 1.051209 0.293743 1.7127321 -1.434891 0.293743 1.7127321 1.051209 0.21375102 1.7127321 1.131199 0.21375102 2.3527482 1.131199 -0.426265 1.7127321 1.131199 -0.426265 2.3527482 1.131199 0.21375102 2.4327402 1.051209 0.21375102 2.4327402 -1.434891 -0.426265 2.4327402 1.051209 -0.426265 2.4327402 -1.434891 -0.426265 1.7127321 -1.514881 -0.506257 1.7127321 -1.434891 -0.426265 2.3527482 -1.514881 -0.506257 2.3527482 -1.434891 -0.426265 1.6327401 -1.434891 -0.426265 1.7127321 -1.514881 0.21375102 1.6327401 -1.434891 0.21375102 1.7127321 -1.514881 -0.506257 1.7127321 -1.434891 -0.426265 1.6327401 -1.434891 -0.506257 1.7127321 1.051209 -0.426265 1.6327401 1.051209 0.293743 1.7127321 -1.434891 0.21375102 1.7127321 -1.514881 0.293743 2.3527482 -1.434891 0.21375102 2.3527482 -1.514881 0.21375102 1.6327401 -1.434891 0.293743 1.7127321 -1.434891 0.21375102 1.6327401 1.051209 0.293743 1.7127321 1.051209 -0.506257 1.7127321 1.051209 -0.426265 1.7127321 1.131199 -0.506257 2.3527482 1.051209 -0.426265 2.3527482 1.131199 -0.426265 1.7127321 1.131199 -0.426265 1.6327401 1.051209 0.21375102 1.7127321 1.131199 0.21375102 1.6327401 1.051209 0.21375102 1.7127321 1.131199 0.293743 1.7127321 1.051209 0.21375102 2.3527482 1.131199 0.293743 2.3527482 1.051209 -0.506257 2.3527482 1.051209 -0.426265 2.4327402 1.051209 -0.506257 2.3527482 -1.434891 -0.426265 2.4327402 -1.434891 -0.426265 2.4327402 1.051209 -0.426265 2.3527482 1.131199 0.21375102 2.4327402 1.051209 0.21375102 2.3527482 1.131199 0.21375102 2.4327402 1.051209 0.293743 2.3527482 1.051209 0.21375102 2.4327402 -1.434891 0.293743 2.3527482 -1.434891 -0.426265 2.3527482 -1.514881 -0.426265 2.4327402 -1.434891 0.21375102 2.3527482 -1.514881 0.21375102 2.4327402 -1.434891 -0.506257 1.7127321 -1.434891 -0.426265 1.7127321 -1.514881 -0.426265 1.6327401 -1.434891 0.21375102 1.7127321 -1.514881 0.293743 1.7127321 -1.434891 0.21375102 1.6327401 -1.434891 -0.426265 1.7127321 1.131199 -0.506257 1.7127321 1.051209 -0.426265 1.6327401 1.051209 0.293743 1.7127321 1.051209 0.21375102 1.7127321 1.131199 0.21375102 1.6327401 1.051209 -0.426265 2.4327402 1.051209 -0.506257 2.3527482 1.051209 -0.426265 2.3527482 1.131199 0.293743 2.3527482 1.051209 0.21375102 2.4327402 1.051209 0.21375102 2.3527482 1.131199 -0.426265 2.3527482 -1.514881 -0.506257 2.3527482 -1.434891 -0.426265 2.4327402 -1.434891 0.293743 2.3527482 -1.434891 0.21375102 2.3527482 -1.514881 0.21375102 2.4327402 -1.434891 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 -0.7071058 0 -0.70710784 -0.7071058 0 -0.70710784 -0.7071058 0 -0.70710784 -0.7071058 0 -0.70710784 0 -0.7071058 -0.70710784 0 -0.7071058 -0.70710784 0 -0.7071058 -0.70710784 0 -0.7071058 -0.70710784 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 0.7071058 0 -0.70710784 0.7071058 0 -0.70710784 0.7071058 0 -0.70710784 0.7071058 0 -0.70710784 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 -0.7071058 0 0.70710784 -0.7071058 0 0.70710784 -0.7071058 0 0.70710784 -0.7071058 0 0.70710784 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0.7071058 0 0.70710784 0.7071058 0 0.70710784 0.7071058 0 0.70710784 0.7071058 0 0.70710784 -0.70710784 0.7071058 0 -0.70710784 0.7071058 0 -0.70710784 0.7071058 0 -0.70710784 0.7071058 0 0 0.7071063 0.7071073 0 0.7071063 0.7071073 0 0.7071063 0.7071073 0 0.7071063 0.7071073 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0 0.7071048 -0.7071088 0 0.7071048 -0.7071088 0 0.7071048 -0.7071088 0 0.7071048 -0.7071088 -0.5773493 -0.5773493 -0.5773523 -0.5773493 -0.5773493 -0.5773523 -0.5773493 -0.5773493 -0.5773523 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 -0.5773493 -0.5773493 0.5773523 -0.5773493 -0.5773493 0.5773523 -0.5773493 -0.5773493 0.5773523 0.57735026 -0.57735026 0.57735026 0.57735026 -0.57735026 0.57735026 0.57735026 -0.57735026 0.57735026 -0.57734895 0.57734996 0.5773519 -0.57734895 0.57734996 0.5773519 -0.57734895 0.57734996 0.5773519 0.57734793 0.57734895 0.57735395 0.57734793 0.57734895 0.57735395 0.57734793 0.57734895 0.57735395 -0.5773509 0.57734895 -0.5773509 -0.5773509 0.57734895 -0.5773509 -0.5773509 0.57734895 -0.5773509 0.5773503 0.5773473 -0.5773533 0.5773503 0.5773473 -0.5773533 0.5773503 0.5773473 -0.5773533 + + + + + + + + + + 0.881197 0.755243 0.881197 0.66262 0.97382 0.755243 0.97382 0.66262 0.525792 0.66262 0.634568 0.66262 0.525792 0.755243 0.634568 0.755243 0.634568 0.778396 0.634568 0.871019 0.525792 0.778396 0.525792 0.871019 0.525792 0.546844 0.634568 0.546844 0.525792 0.639467 0.634568 0.639467 0.649645 0.66262 0.742268 0.66262 0.649645 0.755243 0.742268 0.755243 0.757344 0.66262 0.86612 0.66262 0.757344 0.755243 0.86612 0.755243 0.97382 0.755243 0.97382 0.76682 0.881197 0.755243 0.881197 0.76682 0.525792 0.755243 0.522292 0.755243 0.525792 0.66262 0.522292 0.66262 0.525792 0.766819 0.525792 0.755243 0.634568 0.76682 0.634568 0.755243 0.97382 0.651043 0.97382 0.66262 0.881197 0.651043 0.881197 0.66262 0.525792 0.66262 0.525792 0.651043 0.634568 0.66262 0.634568 0.651043 0.649645 0.766819 0.649645 0.755243 0.742268 0.766819 0.742268 0.755243 0.638068 0.755243 0.634568 0.755243 0.638068 0.66262 0.634568 0.66262 0.649645 0.66262 0.649645 0.651043 0.742268 0.66262 0.742268 0.651043 0.757344 0.766819 0.757344 0.755243 0.86612 0.76682 0.86612 0.755243 0.753844 0.755243 0.742268 0.755243 0.753844 0.66262 0.742268 0.66262 0.757344 0.66262 0.757344 0.651043 0.86612 0.66262 0.86612 0.651043 0.86962 0.755243 0.86612 0.755243 0.86962 0.66262 0.86612 0.66262 0.525792 0.766819 0.522292 0.755243 0.525792 0.755243 0.522292 0.66262 0.525792 0.651043 0.525792 0.66262 0.638068 0.755243 0.634568 0.76682 0.634568 0.755243 0.634568 0.651043 0.638068 0.66262 0.634568 0.66262 0.753844 0.755243 0.742268 0.766819 0.742268 0.755243 0.742268 0.651043 0.753844 0.66262 0.742268 0.66262 0.86962 0.755243 0.86612 0.76682 0.86612 0.755243 0.86612 0.651043 0.86962 0.66262 0.86612 0.66262 + + + + + + + + + + + + + + +

0 1 2 2 1 3 4 5 6 6 5 7 8 9 10 10 9 11 12 13 14 14 13 15 16 17 18 18 17 19 20 21 22 22 21 23 24 25 26 26 25 27 28 29 30 30 29 31 32 33 34 34 33 35 36 37 38 38 37 39 40 41 42 42 41 43 44 45 46 46 45 47 48 49 50 50 49 51 52 53 54 54 53 55 56 57 58 58 57 59 60 61 62 62 61 63 64 65 66 66 65 67 68 69 70 70 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

+
+
+
+ + + + -0.335858 1.635823 1.212811 0.335858 1.635823 1.212811 -0.335858 1.635823 1.7260089 0.335858 1.635823 1.7260089 0.335858 1.6999648 1.7901509 0.335858 3.12855 1.7901509 -0.335858 1.6999648 1.7901509 -0.335858 3.12855 1.7901509 -0.4 3.12855 1.7260089 -0.4 3.12855 1.212811 -0.4 1.6999648 1.7260089 -0.4 1.6999648 1.212811 0.4 1.6999648 1.212811 0.4 3.12855 1.212811 0.4 1.6999648 1.7260089 0.4 3.12855 1.7260089 0.335858 3.1927 1.7260089 0.335858 3.1927 1.212811 -0.335858 3.1927 1.7260089 -0.335858 3.1927 1.212811 0.335858 3.12855 1.148669 0.335858 1.6999648 1.148669 -0.335858 3.12855 1.148669 -0.335858 1.6999648 1.148669 -0.335858 1.635823 1.7260089 -0.4 1.6999648 1.7260089 -0.335858 1.635823 1.212811 -0.4 1.6999648 1.212811 -0.335858 1.6999648 1.7901509 -0.335858 1.635823 1.7260089 0.335858 1.6999648 1.7901509 0.335858 1.635823 1.7260089 -0.4 1.6999648 1.7260089 -0.335858 1.6999648 1.7901509 -0.4 3.12855 1.7260089 -0.335858 3.12855 1.7901509 0.4 1.6999648 1.7260089 0.335858 1.635823 1.7260089 0.4 1.6999648 1.212811 0.335858 1.635823 1.212811 0.335858 1.6999648 1.7901509 0.4 1.6999648 1.7260089 0.335858 3.12855 1.7901509 0.4 3.12855 1.7260089 -0.4 3.12855 1.7260089 -0.335858 3.1927 1.7260089 -0.4 3.12855 1.212811 -0.335858 3.1927 1.212811 -0.335858 3.1927 1.7260089 -0.335858 3.12855 1.7901509 0.335858 3.1927 1.7260089 0.335858 3.12855 1.7901509 0.335858 3.1927 1.7260089 0.4 3.12855 1.7260089 0.335858 3.1927 1.212811 0.4 3.12855 1.212811 -0.4 3.12855 1.212811 -0.335858 3.12855 1.148669 -0.4 1.6999648 1.212811 -0.335858 1.6999648 1.148669 -0.335858 3.12855 1.148669 -0.335858 3.1927 1.212811 0.335858 3.12855 1.148669 0.335858 3.1927 1.212811 0.335858 3.12855 1.148669 0.4 3.12855 1.212811 0.335858 1.6999648 1.148669 0.4 1.6999648 1.212811 -0.335858 1.635823 1.212811 -0.335858 1.6999648 1.148669 0.335858 1.635823 1.212811 0.335858 1.6999648 1.148669 -0.4 1.6999648 1.7260089 -0.335858 1.635823 1.7260089 -0.335858 1.6999648 1.7901509 0.335858 1.635823 1.7260089 0.4 1.6999648 1.7260089 0.335858 1.6999648 1.7901509 -0.335858 3.1927 1.7260089 -0.4 3.12855 1.7260089 -0.335858 3.12855 1.7901509 0.4 3.12855 1.7260089 0.335858 3.1927 1.7260089 0.335858 3.12855 1.7901509 -0.335858 3.12855 1.148669 -0.4 3.12855 1.212811 -0.335858 3.1927 1.212811 0.4 3.12855 1.212811 0.335858 3.12855 1.148669 0.335858 3.1927 1.212811 -0.335858 1.635823 1.212811 -0.4 1.6999648 1.212811 -0.335858 1.6999648 1.148669 0.4 1.6999648 1.212811 0.335858 1.635823 1.212811 0.335858 1.6999648 1.148669 + + + + + + + + + + 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 -0.7071073 0 -0.7071063 -0.7071073 0 -0.7071063 -0.7071073 0 -0.7071063 -0.7071073 0 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0 -0.7071063 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 0.57734996 0.57734996 -0.5773509 0.57734996 0.57734996 -0.5773509 0.57734996 0.57734996 -0.5773509 0.57734996 -0.5773493 0.5773503 0.5773513 -0.5773493 0.5773503 0.5773513 -0.5773493 0.5773503 0.5773513 0.5773493 0.5773503 0.5773513 0.5773493 0.5773503 0.5773513 0.5773493 0.5773503 0.5773513 -0.57735056 0.5773496 -0.57735056 -0.57735056 0.5773496 -0.57735056 -0.57735056 0.5773496 -0.57735056 0.57735056 0.5773496 -0.57735056 0.57735056 0.5773496 -0.57735056 0.57735056 0.5773496 -0.57735056 -0.5773513 -0.5773503 -0.5773493 -0.5773513 -0.5773503 -0.5773493 -0.5773513 -0.5773503 -0.5773493 0.5773513 -0.5773503 -0.5773493 0.5773513 -0.5773503 -0.5773493 0.5773513 -0.5773503 -0.5773493 + + + + + + + + + + 0.389415 0.795034 0.389415 0.693301 0.486347 0.795034 0.486347 0.693301 0.0188037 0.693301 0.129983 0.693301 0.0188037 0.795034 0.129983 0.795034 0.129983 0.816864 0.129983 0.913796 0.0188037 0.816864 0.0188038 0.913796 0.0188038 0.574539 0.129983 0.574539 0.0188037 0.671471 0.129983 0.671471 0.14709 0.693301 0.244022 0.693301 0.14709 0.795034 0.244022 0.795034 0.261129 0.693301 0.372308 0.693301 0.261129 0.795034 0.372308 0.795034 0.486347 0.795034 0.486347 0.804749 0.389415 0.795034 0.389415 0.804749 0.0188037 0.795034 0.0138119 0.795034 0.0188037 0.693301 0.0138119 0.693301 0.0188037 0.804749 0.0188037 0.795034 0.129983 0.804749 0.129983 0.795034 0.486347 0.683586 0.486347 0.693301 0.389415 0.683586 0.389415 0.693301 0.0188037 0.693301 0.0188037 0.683586 0.129983 0.693301 0.129983 0.683586 0.14709 0.804749 0.14709 0.795034 0.244022 0.804749 0.244022 0.795034 0.134975 0.795034 0.129983 0.795034 0.134975 0.693301 0.129983 0.693301 0.14709 0.693301 0.14709 0.683586 0.244022 0.693301 0.244022 0.683586 0.261129 0.804749 0.261129 0.795034 0.372308 0.804749 0.372308 0.795034 0.256137 0.795034 0.244022 0.795034 0.256137 0.693301 0.244022 0.693301 0.261129 0.693301 0.261129 0.683586 0.372308 0.693301 0.372308 0.683586 0.3773 0.795034 0.372308 0.795034 0.3773 0.693301 0.372308 0.693301 0.0188037 0.804749 0.0138119 0.795034 0.0188037 0.795034 0.0138119 0.693301 0.0188037 0.683586 0.0188037 0.693301 0.134975 0.795034 0.129983 0.804749 0.129983 0.795034 0.129983 0.683586 0.134975 0.693301 0.129983 0.693301 0.256137 0.795034 0.244022 0.804749 0.244022 0.795034 0.244022 0.683586 0.256137 0.693301 0.244022 0.693301 0.3773 0.795034 0.372308 0.804749 0.372308 0.795034 0.372308 0.683586 0.3773 0.693301 0.372308 0.693301 + + + + + + + + + + + + + + +

0 1 2 2 1 3 4 5 6 6 5 7 8 9 10 10 9 11 12 13 14 14 13 15 16 17 18 18 17 19 20 21 22 22 21 23 24 25 26 26 25 27 28 29 30 30 29 31 32 33 34 34 33 35 36 37 38 38 37 39 40 41 42 42 41 43 44 45 46 46 45 47 48 49 50 50 49 51 52 53 54 54 53 55 56 57 58 58 57 59 60 61 62 62 61 63 64 65 66 66 65 67 68 69 70 70 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

+
+
+
+ + + + -0.320008 2.445256 -0.041419 0.320008 2.445256 -0.041419 -0.320008 2.445256 0.70963705 0.320008 2.445256 0.70963705 0.320008 2.525248 0.789629 0.320008 3.253912 0.789629 -0.320008 2.525248 0.789629 -0.320008 3.253912 0.789629 -0.4 3.253912 0.70963705 -0.4 3.253912 -0.041419 -0.4 2.525248 0.70963705 -0.4 2.525248 -0.041419 0.4 2.525248 -0.041419 0.4 3.253912 -0.041419 0.4 2.525248 0.70963705 0.4 3.253912 0.70963705 0.320008 3.333904 0.70963705 0.320008 3.333904 -0.041419 -0.320008 3.333904 0.70963705 -0.320008 3.333904 -0.041419 0.320008 3.253912 -0.121410996 0.320008 2.525248 -0.121410996 -0.320008 3.253912 -0.121410996 -0.320008 2.525248 -0.121410996 -0.320008 2.445256 0.70963705 -0.4 2.525248 0.70963705 -0.320008 2.445256 -0.041419 -0.4 2.525248 -0.041419 -0.320008 2.525248 0.789629 -0.320008 2.445256 0.70963705 0.320008 2.525248 0.789629 0.320008 2.445256 0.70963705 -0.4 2.525248 0.70963705 -0.320008 2.525248 0.789629 -0.4 3.253912 0.70963705 -0.320008 3.253912 0.789629 0.4 2.525248 0.70963705 0.320008 2.445256 0.70963705 0.4 2.525248 -0.041419 0.320008 2.445256 -0.041419 0.320008 2.525248 0.789629 0.4 2.525248 0.70963705 0.320008 3.253912 0.789629 0.4 3.253912 0.70963705 -0.4 3.253912 0.70963705 -0.320008 3.333904 0.70963705 -0.4 3.253912 -0.041419 -0.320008 3.333904 -0.041419 -0.320008 3.333904 0.70963705 -0.320008 3.253912 0.789629 0.320008 3.333904 0.70963705 0.320008 3.253912 0.789629 0.320008 3.333904 0.70963705 0.4 3.253912 0.70963705 0.320008 3.333904 -0.041419 0.4 3.253912 -0.041419 -0.4 3.253912 -0.041419 -0.320008 3.253912 -0.121410996 -0.4 2.525248 -0.041419 -0.320008 2.525248 -0.121410996 -0.320008 3.253912 -0.121410996 -0.320008 3.333904 -0.041419 0.320008 3.253912 -0.121410996 0.320008 3.333904 -0.041419 0.320008 3.253912 -0.121410996 0.4 3.253912 -0.041419 0.320008 2.525248 -0.121410996 0.4 2.525248 -0.041419 -0.320008 2.445256 -0.041419 -0.320008 2.525248 -0.121410996 0.320008 2.445256 -0.041419 0.320008 2.525248 -0.121410996 -0.4 2.525248 0.70963705 -0.320008 2.445256 0.70963705 -0.320008 2.525248 0.789629 0.320008 2.445256 0.70963705 0.4 2.525248 0.70963705 0.320008 2.525248 0.789629 -0.320008 3.333904 0.70963705 -0.4 3.253912 0.70963705 -0.320008 3.253912 0.789629 0.4 3.253912 0.70963705 0.320008 3.333904 0.70963705 0.320008 3.253912 0.789629 -0.320008 3.253912 -0.121410996 -0.4 3.253912 -0.041419 -0.320008 3.333904 -0.041419 0.4 3.253912 -0.041419 0.320008 3.253912 -0.121410996 0.320008 3.333904 -0.041419 -0.320008 2.445256 -0.041419 -0.4 2.525248 -0.041419 -0.320008 2.525248 -0.121410996 0.4 2.525248 -0.041419 0.320008 2.445256 -0.041419 0.320008 2.525248 -0.121410996 + + + + + + + + + + 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0.7071058 0.70710784 0 0.7071058 0.70710784 0 0.7071058 0.70710784 0 0.7071058 0.70710784 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0 -0.7071063 -0.7071073 0 -0.7071063 -0.7071073 0 -0.7071063 -0.7071073 0 -0.7071063 -0.7071073 -0.57734996 -0.57734996 0.5773509 -0.57734996 -0.57734996 0.5773509 -0.57734996 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 -0.5773509 0.5773519 0.57734793 -0.5773509 0.5773519 0.57734793 -0.5773509 0.5773519 0.57734793 0.5773509 0.5773519 0.57734793 0.5773509 0.5773519 0.57734793 0.5773509 0.5773519 0.57734793 -0.5773509 0.5773519 -0.57734793 -0.5773509 0.5773519 -0.57734793 -0.5773509 0.5773519 -0.57734793 0.5773509 0.5773519 -0.57734793 0.5773509 0.5773519 -0.57734793 0.5773509 0.5773519 -0.57734793 -0.57734996 -0.57734996 -0.5773509 -0.57734996 -0.57734996 -0.5773509 -0.57734996 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 + + + + + + + + + + 0.222262 0.366864 0.297648 0.366864 0.222262 0.444546 0.297648 0.444546 0.297648 0.0843819 0.297648 0.161648 0.222262 0.0843819 0.222262 0.161648 0.204567 0.161648 0.126884 0.161648 0.204567 0.0843819 0.126884 0.0843819 0.393027 0.0843819 0.393027 0.161648 0.315344 0.0843819 0.315344 0.161648 0.297648 0.178403 0.297648 0.256086 0.222262 0.178403 0.222262 0.256086 0.297648 0.272842 0.297648 0.350108 0.222262 0.272842 0.222262 0.350108 0.222262 0.444546 0.21284 0.444546 0.222262 0.366864 0.21284 0.366864 0.222262 0.0843819 0.222262 0.0758997 0.297648 0.0843819 0.297648 0.0758997 0.21284 0.0843819 0.222262 0.0843819 0.21284 0.161648 0.222262 0.161648 0.30707 0.444546 0.297648 0.444546 0.30707 0.366864 0.297648 0.366864 0.297648 0.0843819 0.30707 0.0843818 0.297648 0.161648 0.30707 0.161648 0.21284 0.178403 0.222262 0.178403 0.21284 0.256086 0.222262 0.256086 0.222262 0.17013 0.222262 0.161648 0.297648 0.17013 0.297648 0.161648 0.297648 0.178403 0.30707 0.178403 0.297648 0.256086 0.30707 0.256086 0.21284 0.272842 0.222262 0.272842 0.21284 0.350108 0.222262 0.350108 0.222262 0.26436 0.222262 0.256086 0.297648 0.26436 0.297648 0.256086 0.297648 0.272842 0.30707 0.272842 0.297648 0.350108 0.30707 0.350108 0.222262 0.35859 0.222262 0.350108 0.297648 0.35859 0.297648 0.350108 0.21284 0.0843819 0.222262 0.0758997 0.222262 0.0843819 0.297648 0.0758997 0.30707 0.0843818 0.297648 0.0843819 0.222262 0.17013 0.21284 0.161648 0.222262 0.161648 0.30707 0.161648 0.297648 0.17013 0.297648 0.161648 0.222262 0.26436 0.21284 0.256086 0.222262 0.256086 0.30707 0.256086 0.297648 0.26436 0.297648 0.256086 0.222262 0.35859 0.21284 0.350108 0.222262 0.350108 0.30707 0.350108 0.297648 0.35859 0.297648 0.350108 + + + + + + + + + + + + + + +

0 1 2 2 1 3 4 5 6 6 5 7 8 9 10 10 9 11 12 13 14 14 13 15 16 17 18 18 17 19 20 21 22 22 21 23 24 25 26 26 25 27 28 29 30 30 29 31 32 33 34 34 33 35 36 37 38 38 37 39 40 41 42 42 41 43 44 45 46 46 45 47 48 49 50 50 49 51 52 53 54 54 53 55 56 57 58 58 57 59 60 61 62 62 61 63 64 65 66 66 65 67 68 69 70 70 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

+
+
+
+ + + + -0.320008 2.445256 -1.123388 0.320008 2.445256 -1.123388 -0.320008 2.445256 -0.372332 0.320008 2.445256 -0.372332 0.320008 2.525248 -0.29234 0.320008 3.253912 -0.29234 -0.320008 2.525248 -0.29234 -0.320008 3.253912 -0.29234 -0.4 3.253912 -0.372332 -0.4 3.253912 -1.123388 -0.4 2.525248 -0.372332 -0.4 2.525248 -1.123388 0.4 2.525248 -1.123388 0.4 3.253912 -1.123388 0.4 2.525248 -0.372332 0.4 3.253912 -0.372332 0.320008 3.333904 -0.372332 0.320008 3.333904 -1.123388 -0.320008 3.333904 -0.372332 -0.320008 3.333904 -1.123388 0.320008 3.253912 -1.20338 0.320008 2.525248 -1.20338 -0.320008 3.253912 -1.20338 -0.320008 2.525248 -1.20338 -0.320008 2.445256 -0.372332 -0.4 2.525248 -0.372332 -0.320008 2.445256 -1.123388 -0.4 2.525248 -1.123388 -0.320008 2.525248 -0.29234 -0.320008 2.445256 -0.372332 0.320008 2.525248 -0.29234 0.320008 2.445256 -0.372332 -0.4 2.525248 -0.372332 -0.320008 2.525248 -0.29234 -0.4 3.253912 -0.372332 -0.320008 3.253912 -0.29234 0.4 2.525248 -0.372332 0.320008 2.445256 -0.372332 0.4 2.525248 -1.123388 0.320008 2.445256 -1.123388 0.320008 2.525248 -0.29234 0.4 2.525248 -0.372332 0.320008 3.253912 -0.29234 0.4 3.253912 -0.372332 -0.4 3.253912 -0.372332 -0.320008 3.333904 -0.372332 -0.4 3.253912 -1.123388 -0.320008 3.333904 -1.123388 -0.320008 3.333904 -0.372332 -0.320008 3.253912 -0.29234 0.320008 3.333904 -0.372332 0.320008 3.253912 -0.29234 0.320008 3.333904 -0.372332 0.4 3.253912 -0.372332 0.320008 3.333904 -1.123388 0.4 3.253912 -1.123388 -0.4 3.253912 -1.123388 -0.320008 3.253912 -1.20338 -0.4 2.525248 -1.123388 -0.320008 2.525248 -1.20338 -0.320008 3.253912 -1.20338 -0.320008 3.333904 -1.123388 0.320008 3.253912 -1.20338 0.320008 3.333904 -1.123388 0.320008 3.253912 -1.20338 0.4 3.253912 -1.123388 0.320008 2.525248 -1.20338 0.4 2.525248 -1.123388 -0.320008 2.445256 -1.123388 -0.320008 2.525248 -1.20338 0.320008 2.445256 -1.123388 0.320008 2.525248 -1.20338 -0.4 2.525248 -0.372332 -0.320008 2.445256 -0.372332 -0.320008 2.525248 -0.29234 0.320008 2.445256 -0.372332 0.4 2.525248 -0.372332 0.320008 2.525248 -0.29234 -0.320008 3.333904 -0.372332 -0.4 3.253912 -0.372332 -0.320008 3.253912 -0.29234 0.4 3.253912 -0.372332 0.320008 3.333904 -0.372332 0.320008 3.253912 -0.29234 -0.320008 3.253912 -1.20338 -0.4 3.253912 -1.123388 -0.320008 3.333904 -1.123388 0.4 3.253912 -1.123388 0.320008 3.253912 -1.20338 0.320008 3.333904 -1.123388 -0.320008 2.445256 -1.123388 -0.4 2.525248 -1.123388 -0.320008 2.525248 -1.20338 0.4 2.525248 -1.123388 0.320008 2.445256 -1.123388 0.320008 2.525248 -1.20338 + + + + + + + + + + 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0.7071058 0.70710784 0 0.7071058 0.70710784 0 0.7071058 0.70710784 0 0.7071058 0.70710784 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 -0.57734996 -0.57734996 0.5773509 -0.57734996 -0.57734996 0.5773509 -0.57734996 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 -0.5773509 0.5773519 0.57734793 -0.5773509 0.5773519 0.57734793 -0.5773509 0.5773519 0.57734793 0.5773509 0.5773519 0.57734793 0.5773509 0.5773519 0.57734793 0.5773509 0.5773519 0.57734793 -0.57734996 0.57735294 -0.57734793 -0.57734996 0.57735294 -0.57734793 -0.57734996 0.57735294 -0.57734793 0.5773503 0.5773523 -0.5773483 0.5773503 0.5773523 -0.5773483 0.5773503 0.5773523 -0.5773483 -0.57734996 -0.57734996 -0.5773509 -0.57734996 -0.57734996 -0.5773509 -0.57734996 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 + + + + + + + + + + 1.38317 0.848941 1.38317 0.756113 1.47882 0.848941 1.47882 0.756113 1.03533 0.756113 1.13047 0.756113 1.03533 0.848941 1.13047 0.848941 1.13047 0.87073 1.13047 0.966386 1.03533 0.87073 1.03533 0.966386 1.03533 0.638668 1.13047 0.638668 1.03533 0.734323 1.13047 0.734323 1.1511 0.756113 1.24676 0.756113 1.1511 0.848941 1.24676 0.848941 1.26739 0.756113 1.36253 0.756113 1.26739 0.848941 1.36253 0.848941 1.47882 0.848941 1.47882 0.860543 1.38317 0.848941 1.38317 0.860543 1.03533 0.848941 1.02488 0.848941 1.03533 0.756113 1.02488 0.756113 1.03533 0.860543 1.03533 0.848941 1.13047 0.860543 1.13047 0.848941 1.47882 0.744511 1.47882 0.756113 1.38317 0.744511 1.38317 0.756113 1.03533 0.756113 1.03533 0.744511 1.13047 0.756113 1.13047 0.744511 1.1511 0.860543 1.1511 0.848941 1.24676 0.860543 1.24676 0.848941 1.14092 0.848941 1.13047 0.848941 1.14092 0.756113 1.13047 0.756113 1.1511 0.756113 1.1511 0.744511 1.24676 0.756113 1.24676 0.744511 1.26739 0.860543 1.26739 0.848941 1.36253 0.860543 1.36253 0.848941 1.25695 0.848941 1.24676 0.848941 1.25695 0.756113 1.24676 0.756113 1.26739 0.756113 1.26739 0.744511 1.36253 0.756113 1.36253 0.744511 1.37298 0.848941 1.36253 0.848941 1.37298 0.756113 1.36253 0.756113 1.03533 0.860543 1.02488 0.848941 1.03533 0.848941 1.02488 0.756113 1.03533 0.744511 1.03533 0.756113 1.14092 0.848941 1.13047 0.860543 1.13047 0.848941 1.13047 0.744511 1.14092 0.756113 1.13047 0.756113 1.25695 0.848941 1.24676 0.860543 1.24676 0.848941 1.24676 0.744511 1.25695 0.756113 1.24676 0.756113 1.37298 0.848941 1.36253 0.860543 1.36253 0.848941 1.36253 0.744511 1.37298 0.756113 1.36253 0.756113 + + + + + + + + + + + + + + +

0 1 2 2 1 3 4 5 6 6 5 7 8 9 10 10 9 11 12 13 14 14 13 15 16 17 18 18 17 19 20 21 22 22 21 23 24 25 26 26 25 27 28 29 30 30 29 31 32 33 34 34 33 35 36 37 38 38 37 39 40 41 42 42 41 43 44 45 46 46 45 47 48 49 50 50 49 51 52 53 54 54 53 55 56 57 58 58 57 59 60 61 62 62 61 63 64 65 66 66 65 67 68 69 70 70 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

+
+
+
+ + + + -0.320008 3.340906 -0.579986 0.320008 3.340906 -0.579986 -0.320008 3.340906 0.17107001 0.320008 3.340906 0.17107001 0.320008 3.420898 0.251062 0.320008 4.149562 0.251062 -0.320008 3.420898 0.251062 -0.320008 4.149562 0.251062 -0.4 4.149562 0.17107001 -0.4 4.149562 -0.579986 -0.4 3.420898 0.17107001 -0.4 3.420898 -0.579986 0.4 3.420898 -0.579986 0.4 4.149562 -0.579986 0.4 3.420898 0.17107001 0.4 4.149562 0.17107001 0.320008 4.2295537 0.17107001 0.320008 4.2295537 -0.579986 -0.320008 4.2295537 0.17107001 -0.320008 4.2295537 -0.579986 0.320008 4.149562 -0.65997803 0.320008 3.420898 -0.65997803 -0.320008 4.149562 -0.65997803 -0.320008 3.420898 -0.65997803 -0.320008 3.340906 0.17107001 -0.4 3.420898 0.17107001 -0.320008 3.340906 -0.579986 -0.4 3.420898 -0.579986 -0.320008 3.420898 0.251062 -0.320008 3.340906 0.17107001 0.320008 3.420898 0.251062 0.320008 3.340906 0.17107001 -0.4 3.420898 0.17107001 -0.320008 3.420898 0.251062 -0.4 4.149562 0.17107001 -0.320008 4.149562 0.251062 0.4 3.420898 0.17107001 0.320008 3.340906 0.17107001 0.4 3.420898 -0.579986 0.320008 3.340906 -0.579986 0.320008 3.420898 0.251062 0.4 3.420898 0.17107001 0.320008 4.149562 0.251062 0.4 4.149562 0.17107001 -0.4 4.149562 0.17107001 -0.320008 4.2295537 0.17107001 -0.4 4.149562 -0.579986 -0.320008 4.2295537 -0.579986 -0.320008 4.2295537 0.17107001 -0.320008 4.149562 0.251062 0.320008 4.2295537 0.17107001 0.320008 4.149562 0.251062 0.320008 4.2295537 0.17107001 0.4 4.149562 0.17107001 0.320008 4.2295537 -0.579986 0.4 4.149562 -0.579986 -0.4 4.149562 -0.579986 -0.320008 4.149562 -0.65997803 -0.4 3.420898 -0.579986 -0.320008 3.420898 -0.65997803 -0.320008 4.149562 -0.65997803 -0.320008 4.2295537 -0.579986 0.320008 4.149562 -0.65997803 0.320008 4.2295537 -0.579986 0.320008 4.149562 -0.65997803 0.4 4.149562 -0.579986 0.320008 3.420898 -0.65997803 0.4 3.420898 -0.579986 -0.320008 3.340906 -0.579986 -0.320008 3.420898 -0.65997803 0.320008 3.340906 -0.579986 0.320008 3.420898 -0.65997803 -0.4 3.420898 0.17107001 -0.320008 3.340906 0.17107001 -0.320008 3.420898 0.251062 0.320008 3.340906 0.17107001 0.4 3.420898 0.17107001 0.320008 3.420898 0.251062 -0.320008 4.2295537 0.17107001 -0.4 4.149562 0.17107001 -0.320008 4.149562 0.251062 0.4 4.149562 0.17107001 0.320008 4.2295537 0.17107001 0.320008 4.149562 0.251062 -0.320008 4.149562 -0.65997803 -0.4 4.149562 -0.579986 -0.320008 4.2295537 -0.579986 0.4 4.149562 -0.579986 0.320008 4.149562 -0.65997803 0.320008 4.2295537 -0.579986 -0.320008 3.340906 -0.579986 -0.4 3.420898 -0.579986 -0.320008 3.420898 -0.65997803 0.4 3.420898 -0.579986 0.320008 3.340906 -0.579986 0.320008 3.420898 -0.65997803 + + + + + + + + + + 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.7071058 -0.70710784 0 -0.7071058 -0.70710784 0 -0.7071058 -0.70710784 0 -0.7071058 -0.70710784 0 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0.7071058 -0.70710784 0 0.7071058 -0.70710784 0 0.7071058 -0.70710784 0 0.7071058 -0.70710784 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0.7071058 0.70710784 0 0.7071058 0.70710784 0 0.7071058 0.70710784 0 0.7071058 0.70710784 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 -0.57734895 -0.57734996 0.5773519 -0.57734895 -0.57734996 0.5773519 -0.57734895 -0.57734996 0.5773519 0.57734895 -0.57734996 0.5773519 0.57734895 -0.57734996 0.5773519 0.57734895 -0.57734996 0.5773519 -0.57734895 0.57734996 0.5773519 -0.57734895 0.57734996 0.5773519 -0.57734895 0.57734996 0.5773519 0.57734895 0.57734996 0.5773519 0.57734895 0.57734996 0.5773519 0.57734895 0.57734996 0.5773519 -0.57734895 0.57734996 -0.5773519 -0.57734895 0.57734996 -0.5773519 -0.57734895 0.57734996 -0.5773519 0.57734895 0.57734996 -0.5773519 0.57734895 0.57734996 -0.5773519 0.57734895 0.57734996 -0.5773519 -0.57734895 -0.57734996 -0.5773519 -0.57734895 -0.57734996 -0.5773519 -0.57734895 -0.57734996 -0.5773519 0.57734895 -0.57734996 -0.5773519 0.57734895 -0.57734996 -0.5773519 0.57734895 -0.57734996 -0.5773519 + + + + + + + + + + 0.700077 0.854106 0.788821 0.854106 0.700077 0.945555 0.788821 0.945555 0.788821 0.521567 0.788821 0.612524 0.700077 0.521567 0.700077 0.612524 0.679245 0.612524 0.587797 0.612524 0.679245 0.521567 0.587797 0.521567 0.901102 0.521567 0.901102 0.612524 0.809653 0.521567 0.809653 0.612524 0.788821 0.632249 0.788821 0.723698 0.700077 0.632249 0.700077 0.723698 0.788821 0.743423 0.788821 0.834381 0.700077 0.743423 0.700077 0.834381 0.700077 0.945555 0.688985 0.945555 0.700077 0.854106 0.688985 0.854106 0.700077 0.521567 0.700077 0.511581 0.788821 0.521567 0.788821 0.511581 0.688985 0.521567 0.700077 0.521567 0.688985 0.612524 0.700077 0.612524 0.799913 0.945555 0.788821 0.945555 0.799913 0.854106 0.788821 0.854106 0.788821 0.521567 0.799913 0.521567 0.788821 0.612524 0.799913 0.612524 0.688985 0.632249 0.700077 0.632249 0.688985 0.723698 0.700077 0.723698 0.700077 0.62251 0.700077 0.612524 0.788821 0.62251 0.788821 0.612524 0.788821 0.632249 0.799913 0.632249 0.788821 0.723698 0.799913 0.723698 0.688985 0.743423 0.700077 0.743423 0.688985 0.834381 0.700077 0.834381 0.700077 0.733438 0.700077 0.723698 0.788821 0.733438 0.788821 0.723698 0.788821 0.743423 0.799913 0.743423 0.788821 0.834381 0.799913 0.834381 0.700077 0.844366 0.700077 0.834381 0.788821 0.844366 0.788821 0.834381 0.688985 0.521567 0.700077 0.511581 0.700077 0.521567 0.788821 0.511581 0.799913 0.521567 0.788821 0.521567 0.700077 0.62251 0.688985 0.612524 0.700077 0.612524 0.799913 0.612524 0.788821 0.62251 0.788821 0.612524 0.700077 0.733438 0.688985 0.723698 0.700077 0.723698 0.799913 0.723698 0.788821 0.733438 0.788821 0.723698 0.700077 0.844366 0.688985 0.834381 0.700077 0.834381 0.799913 0.834381 0.788821 0.844366 0.788821 0.834381 + + + + + + + + + + + + + + +

0 1 2 2 1 3 4 5 6 6 5 7 8 9 10 10 9 11 12 13 14 14 13 15 16 17 18 18 17 19 20 21 22 22 21 23 24 25 26 26 25 27 28 29 30 30 29 31 32 33 34 34 33 35 36 37 38 38 37 39 40 41 42 42 41 43 44 45 46 46 45 47 48 49 50 50 49 51 52 53 54 54 53 55 56 57 58 58 57 59 60 61 62 62 61 63 64 65 66 66 65 67 68 69 70 70 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

+
+
+
+ + + + -1.15218 0.0270677 2.38897 1.15218 0.0270677 2.38897 -1.15218 0.0270677 -2.38897 1.15218 0.0270677 -2.38897 + + + + + + + + + + 0 0 1 0 0 1 1 1 + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + + + + + + +

0 1 2 2 1 3

+
+
+
+ + + + -0.0115217995 0.0270677 -1.3392504 0.0115217995 0.0270677 -1.3392504 -0.0115217995 0.0270677 -1.3531896 0.0115217995 0.0270677 -1.3531896 + + + + + + + + + + 0 0 1 0 0 1 1 1 + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + + + + + + +

0 1 2 2 1 3

+
+
+
+ + + + -0.0115217995 0.0270677 1.3336396 0.0115217995 0.0270677 1.3336396 -0.0115217995 0.0270677 1.3197005 0.0115217995 0.0270677 1.3197005 + + + + + + + + + + 0 0 1 0 0 1 1 1 + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + + + + + + +

0 1 2 2 1 3

+
+
+
+ + + + -0.0115217995 0.0270677 -0.49370447 0.0115217995 0.0270677 -0.49370447 -0.0115217995 0.0270677 -0.5076436 0.0115217995 0.0270677 -0.5076436 + + + + + + + + + + 0 0 1 0 0 1 1 1 + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + + + + + + +

0 1 2 2 1 3

+
+
+
+ + + + -0.0115217995 0.0270677 0.13981755 0.0115217995 0.0270677 0.13981755 -0.0115217995 0.0270677 0.12587844 0.0115217995 0.0270677 0.12587844 + + + + + + + + + + 0 0 1 0 0 1 1 1 + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + + + + + + +

0 1 2 2 1 3

+
+
+
+ + + + -0.0115217995 0.0270677 0.64399356 0.0115217995 0.0270677 0.64399356 -0.0115217995 0.0270677 0.6300544 0.0115217995 0.0270677 0.6300544 + + + + + + + + + + 0 0 1 0 0 1 1 1 + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + + + + + + +

0 1 2 2 1 3

+
+
+
+
+ + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root block01Pg block02Pg block03Pg block04Pg block05Pg block06Pg block07Pg sdwPg sdwPg1 sdwPg15 sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 -0 -0 1 -0 0.000645022 0 -0 1 -1.28 0 0 0 1 1 -0 0 0 -0 1 -0 0.000645022 0 -0 1 1.28 0 0 0 1 1 -0 0 0.106257 -0 1 -0 -2.03274 0 -0 1 0.191841 0 0 0 1 1 -0 0 0 -0 1 -0 -1.66075 0 -0 1 -1.46941 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 -0.334109 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 0.74786 0 0 0 1 1 -0 0 0 -0 1 -0 -3.78523 0 -0 1 0.204458 0 0 0 1 1 -0 0 0 -0 1 -0 -0.0270677 0 -0 1 0 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 134.62201 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -132.66702 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 50.067406 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -13.284801 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -63.702404 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root block01Pg block02Pg block03Pg block04Pg block05Pg block06Pg block07Pg sdwPg sdwPg1 sdwPg15 sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 -0 -0 1 -0 0.000645022 0 -0 1 -1.28 0 0 0 1 1 -0 0 0 -0 1 -0 0.000645022 0 -0 1 1.28 0 0 0 1 1 -0 0 0.106257 -0 1 -0 -2.03274 0 -0 1 0.191841 0 0 0 1 1 -0 0 0 -0 1 -0 -1.66075 0 -0 1 -1.46941 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 -0.334109 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 0.74786 0 0 0 1 1 -0 0 0 -0 1 -0 -3.78523 0 -0 1 0.204458 0 0 0 1 1 -0 0 0 -0 1 -0 -0.0270677 0 -0 1 0 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 134.62201 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -132.66702 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 50.067406 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -13.284801 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -63.702404 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root block01Pg block02Pg block03Pg block04Pg block05Pg block06Pg block07Pg sdwPg sdwPg1 sdwPg15 sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 -0 -0 1 -0 0.000645022 0 -0 1 -1.28 0 0 0 1 1 -0 0 0 -0 1 -0 0.000645022 0 -0 1 1.28 0 0 0 1 1 -0 0 0.106257 -0 1 -0 -2.03274 0 -0 1 0.191841 0 0 0 1 1 -0 0 0 -0 1 -0 -1.66075 0 -0 1 -1.46941 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 -0.334109 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 0.74786 0 0 0 1 1 -0 0 0 -0 1 -0 -3.78523 0 -0 1 0.204458 0 0 0 1 1 -0 0 0 -0 1 -0 -0.0270677 0 -0 1 0 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 134.62201 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -132.66702 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 50.067406 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -13.284801 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -63.702404 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root block01Pg block02Pg block03Pg block04Pg block05Pg block06Pg block07Pg sdwPg sdwPg1 sdwPg15 sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 -0 -0 1 -0 0.000645022 0 -0 1 -1.28 0 0 0 1 1 -0 0 0 -0 1 -0 0.000645022 0 -0 1 1.28 0 0 0 1 1 -0 0 0.106257 -0 1 -0 -2.03274 0 -0 1 0.191841 0 0 0 1 1 -0 0 0 -0 1 -0 -1.66075 0 -0 1 -1.46941 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 -0.334109 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 0.74786 0 0 0 1 1 -0 0 0 -0 1 -0 -3.78523 0 -0 1 0.204458 0 0 0 1 1 -0 0 0 -0 1 -0 -0.0270677 0 -0 1 0 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 134.62201 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -132.66702 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 50.067406 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -13.284801 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -63.702404 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root block01Pg block02Pg block03Pg block04Pg block05Pg block06Pg block07Pg sdwPg sdwPg1 sdwPg15 sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 -0 -0 1 -0 0.000645022 0 -0 1 -1.28 0 0 0 1 1 -0 0 0 -0 1 -0 0.000645022 0 -0 1 1.28 0 0 0 1 1 -0 0 0.106257 -0 1 -0 -2.03274 0 -0 1 0.191841 0 0 0 1 1 -0 0 0 -0 1 -0 -1.66075 0 -0 1 -1.46941 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 -0.334109 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 0.74786 0 0 0 1 1 -0 0 0 -0 1 -0 -3.78523 0 -0 1 0.204458 0 0 0 1 1 -0 0 0 -0 1 -0 -0.0270677 0 -0 1 0 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 134.62201 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -132.66702 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 50.067406 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -13.284801 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -63.702404 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root block01Pg block02Pg block03Pg block04Pg block05Pg block06Pg block07Pg sdwPg sdwPg1 sdwPg15 sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 -0 -0 1 -0 0.000645022 0 -0 1 -1.28 0 0 0 1 1 -0 0 0 -0 1 -0 0.000645022 0 -0 1 1.28 0 0 0 1 1 -0 0 0.106257 -0 1 -0 -2.03274 0 -0 1 0.191841 0 0 0 1 1 -0 0 0 -0 1 -0 -1.66075 0 -0 1 -1.46941 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 -0.334109 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 0.74786 0 0 0 1 1 -0 0 0 -0 1 -0 -3.78523 0 -0 1 0.204458 0 0 0 1 1 -0 0 0 -0 1 -0 -0.0270677 0 -0 1 0 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 134.62201 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -132.66702 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 50.067406 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -13.284801 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -63.702404 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root block01Pg block02Pg block03Pg block04Pg block05Pg block06Pg block07Pg sdwPg sdwPg1 sdwPg15 sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 -0 -0 1 -0 0.000645022 0 -0 1 -1.28 0 0 0 1 1 -0 0 0 -0 1 -0 0.000645022 0 -0 1 1.28 0 0 0 1 1 -0 0 0.106257 -0 1 -0 -2.03274 0 -0 1 0.191841 0 0 0 1 1 -0 0 0 -0 1 -0 -1.66075 0 -0 1 -1.46941 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 -0.334109 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 0.74786 0 0 0 1 1 -0 0 0 -0 1 -0 -3.78523 0 -0 1 0.204458 0 0 0 1 1 -0 0 0 -0 1 -0 -0.0270677 0 -0 1 0 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 134.62201 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -132.66702 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 50.067406 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -13.284801 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -63.702404 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root block01Pg block02Pg block03Pg block04Pg block05Pg block06Pg block07Pg sdwPg sdwPg1 sdwPg15 sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 -0 -0 1 -0 0.000645022 0 -0 1 -1.28 0 0 0 1 1 -0 0 0 -0 1 -0 0.000645022 0 -0 1 1.28 0 0 0 1 1 -0 0 0.106257 -0 1 -0 -2.03274 0 -0 1 0.191841 0 0 0 1 1 -0 0 0 -0 1 -0 -1.66075 0 -0 1 -1.46941 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 -0.334109 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 0.74786 0 0 0 1 1 -0 0 0 -0 1 -0 -3.78523 0 -0 1 0.204458 0 0 0 1 1 -0 0 0 -0 1 -0 -0.0270677 0 -0 1 0 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 134.62201 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -132.66702 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 50.067406 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -13.284801 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -63.702404 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 + 8 0 8 0 8 0 8 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root block01Pg block02Pg block03Pg block04Pg block05Pg block06Pg block07Pg sdwPg sdwPg1 sdwPg15 sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 -0 -0 1 -0 0.000645022 0 -0 1 -1.28 0 0 0 1 1 -0 0 0 -0 1 -0 0.000645022 0 -0 1 1.28 0 0 0 1 1 -0 0 0.106257 -0 1 -0 -2.03274 0 -0 1 0.191841 0 0 0 1 1 -0 0 0 -0 1 -0 -1.66075 0 -0 1 -1.46941 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 -0.334109 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 0.74786 0 0 0 1 1 -0 0 0 -0 1 -0 -3.78523 0 -0 1 0.204458 0 0 0 1 1 -0 0 0 -0 1 -0 -0.0270677 0 -0 1 0 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 134.62201 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -132.66702 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 50.067406 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -13.284801 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -63.702404 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 + 9 0 9 0 9 0 9 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root block01Pg block02Pg block03Pg block04Pg block05Pg block06Pg block07Pg sdwPg sdwPg1 sdwPg15 sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 -0 -0 1 -0 0.000645022 0 -0 1 -1.28 0 0 0 1 1 -0 0 0 -0 1 -0 0.000645022 0 -0 1 1.28 0 0 0 1 1 -0 0 0.106257 -0 1 -0 -2.03274 0 -0 1 0.191841 0 0 0 1 1 -0 0 0 -0 1 -0 -1.66075 0 -0 1 -1.46941 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 -0.334109 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 0.74786 0 0 0 1 1 -0 0 0 -0 1 -0 -3.78523 0 -0 1 0.204458 0 0 0 1 1 -0 0 0 -0 1 -0 -0.0270677 0 -0 1 0 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 134.62201 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -132.66702 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 50.067406 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -13.284801 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -63.702404 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 + 10 0 10 0 10 0 10 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root block01Pg block02Pg block03Pg block04Pg block05Pg block06Pg block07Pg sdwPg sdwPg1 sdwPg15 sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 -0 -0 1 -0 0.000645022 0 -0 1 -1.28 0 0 0 1 1 -0 0 0 -0 1 -0 0.000645022 0 -0 1 1.28 0 0 0 1 1 -0 0 0.106257 -0 1 -0 -2.03274 0 -0 1 0.191841 0 0 0 1 1 -0 0 0 -0 1 -0 -1.66075 0 -0 1 -1.46941 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 -0.334109 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 0.74786 0 0 0 1 1 -0 0 0 -0 1 -0 -3.78523 0 -0 1 0.204458 0 0 0 1 1 -0 0 0 -0 1 -0 -0.0270677 0 -0 1 0 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 134.62201 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -132.66702 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 50.067406 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -13.284801 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -63.702404 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 + 11 0 11 0 11 0 11 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root block01Pg block02Pg block03Pg block04Pg block05Pg block06Pg block07Pg sdwPg sdwPg1 sdwPg15 sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 -0 -0 1 -0 0.000645022 0 -0 1 -1.28 0 0 0 1 1 -0 0 0 -0 1 -0 0.000645022 0 -0 1 1.28 0 0 0 1 1 -0 0 0.106257 -0 1 -0 -2.03274 0 -0 1 0.191841 0 0 0 1 1 -0 0 0 -0 1 -0 -1.66075 0 -0 1 -1.46941 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 -0.334109 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 0.74786 0 0 0 1 1 -0 0 0 -0 1 -0 -3.78523 0 -0 1 0.204458 0 0 0 1 1 -0 0 0 -0 1 -0 -0.0270677 0 -0 1 0 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 134.62201 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -132.66702 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 50.067406 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -13.284801 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -63.702404 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 + 12 0 12 0 12 0 12 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root block01Pg block02Pg block03Pg block04Pg block05Pg block06Pg block07Pg sdwPg sdwPg1 sdwPg15 sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 -0 -0 1 -0 0.000645022 0 -0 1 -1.28 0 0 0 1 1 -0 0 0 -0 1 -0 0.000645022 0 -0 1 1.28 0 0 0 1 1 -0 0 0.106257 -0 1 -0 -2.03274 0 -0 1 0.191841 0 0 0 1 1 -0 0 0 -0 1 -0 -1.66075 0 -0 1 -1.46941 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 -0.334109 0 0 0 1 1 -0 0 0 -0 1 -0 -2.88958 0 -0 1 0.74786 0 0 0 1 1 -0 0 0 -0 1 -0 -3.78523 0 -0 1 0.204458 0 0 0 1 1 -0 0 0 -0 1 -0 -0.0270677 0 -0 1 0 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 134.62201 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -132.66702 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 50.067406 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -13.284801 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 -2.7067702 0 -0 100.00001 -63.702404 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 + 13 0 13 0 13 0 13 0 + + + + + + + + 0 0 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 0 -0.000645022 1.28 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + 0 -0.000645022 -1.28 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + -0.106257 2.03274 -0.191841 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + 0 1.66075 1.46941 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + 0 2.88958 0.334109 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + 0 2.88958 -0.74786 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + 0 3.78523 -0.204458 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + 0 0.0270677 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + 0 0.0270677 -1.34622 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 0.01 0.01 0.01 + + + 0 0.0270677 1.32667 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 0.01 0.01 0.01 + + + 0 0.0270677 -0.500674 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 0.01 0.01 0.01 + + + 0 0.0270677 0.132848 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 0.01 0.01 0.01 + + + 0 0.0270677 0.637024 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 0.01 0.01 0.01 + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + + + + +
\ No newline at end of file diff --git a/Assets/Resources/Models/Games/Airboarder/arch.dae.meta b/Assets/Resources/Models/Games/Airboarder/arch.dae.meta new file mode 100644 index 000000000..8ecbc39fa --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/arch.dae.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: f6ee36b31b2f3e849b5b8dc69738ced0 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/cloud_model.dae b/Assets/Resources/Models/Games/Airboarder/cloud_model.dae new file mode 100644 index 000000000..cac1a4d03 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/cloud_model.dae @@ -0,0 +1,196 @@ + + + + 2024-02-25T16:10:01.4172611-06:00 + 2024-02-25T16:10:01.4172657-06:00 + + + + ./airboy_board.png + + + ./airboy_body.png + + + ./airboy_face.0.png + + + ./airboy_face.1.png + + + ./airboy_face.2.png + + + ./airboy_shadow.png + + + ./block_shadow.png + + + ./dog.png + + + ./dog_sdw.png + + + ./floor.png + + + ./metal_env.png + + + ./mother_ship.png + + + ./wall_body.png + + + ./cloud01.png + + + + + + + + + + + + + cloud01 + PNG + + + + + cloud02_model_cloudMt_surf + WRAP + WRAP + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + + 40.627274 29.77799 -241.97482 94.54958 29.77799 -219.35777 37.644356 61.31393 -234.86307 91.56662 61.31393 -212.2461 -37.55558 43.00911 -243.94206 35.065483 43.00911 -244.31241 -37.503567 82.01779 -233.74028 35.117485 82.01779 -234.11061 3.4789658 13.9608 -260.91205 46.436577 13.9608 -255.47662 3.0941086 37.80538 -257.87085 46.051826 37.80538 -252.43549 -45.89654 -1.505984 -265.70593 1.2632294 -1.505984 -271.20782 -45.61795 24.74551 -263.318 1.5418472 24.74551 -268.8199 111.167145 19.16725 -106.36623 136.5761 19.16725 -70.84398 107.16661 42.91171 -103.50464 132.57558 42.91171 -67.98239 161.43987 57.64988 -82.16765 177.48502 57.64988 -36.241238 151.92392 82.70879 -78.843094 167.96907 82.70879 -32.91669 72.09732 49.22925 -131.60912 115.61586 49.22925 -95.665794 63.898495 77.80018 -121.68239 107.41712 77.80018 -85.739105 78.325745 5.883205 -183.02565 133.63472 5.883205 -147.56383 75.911354 42.08588 -179.26001 131.22034 42.08588 -143.79822 184.55524 60.7678 18.171555 163.93932 60.7678 86.68753 160.92043 91.89604 11.060066 140.30453 91.89604 79.576035 29.06643 86.53994 238.1587 -34.45388 86.53994 237.4392 29.228867 118.7622 223.81868 -34.291504 118.7622 223.09917 147.03325 18.2349 55.580376 116.15924 18.2349 105.90088 140.84958 50.20004 51.786327 109.975525 50.20004 102.10684 154.60884 9.356973 -52.760723 162.78752 9.356973 13.7035675 148.1919 45.97052 -51.97107 156.37068 45.97052 14.493164 112.50785 21.33423 258.3516 49.29678 21.33423 277.44083 111.01372 57.62922 253.40395 47.802597 57.62922 272.4931 175.25607 3.534714 180.63707 143.7818 3.534714 206.57016 174.40372 26.13754 179.6026 142.92946 26.13754 205.53568 157.5311 55.57116 153.53264 96.72414 55.57116 197.56711 149.27972 94.80891 142.13837 88.47276 94.80891 186.17282 127.95421 93.56487 -44.479294 132.21037 93.56487 29.514194 99.90946 123.6351 -42.86609 104.16572 123.6351 31.127373 106.13987 104.0388 168.67824 21.156853 104.0388 198.16765 96.82039 145.1023 141.82117 11.837315 145.1023 171.31049 18.413536 39.28349 270.79657 -47.649048 39.28349 267.20663 18.833504 75.19141 263.0676 -47.22902 75.19141 259.47772 16.094376 76.79278 -202.17159 92.50758 76.79278 -180.48466 10.618774 116.07 -182.87836 87.03204 116.0701 -161.19168 + + + + + + + + + + 8.13198E-06 0.505294 0.999992 0.505294 8.13198E-06 0.993853 0.999992 0.993853 8.13198E-06 0.0105794 0.999992 0.0105794 8.13198E-06 0.499139 0.999992 0.499139 8.13198E-06 0.0105794 0.999992 0.0105794 8.13198E-06 0.499139 0.999992 0.499139 1.01454 0.0105794 2.01452 0.0105794 1.01454 0.499139 2.01452 0.499139 1.01148 0.0105794 2.01146 0.0105794 1.01148 0.499139 2.01146 0.499139 1.01454 0.00414181 2.01452 0.00414181 1.01454 0.492701 2.01452 0.492701 8.13198E-06 0.499508 0.999992 0.499508 8.13198E-06 0.988068 0.999992 0.988068 8.13198E-06 0.0105794 0.999992 0.0105794 8.13198E-06 0.499139 0.999992 0.499139 8.13198E-06 0.0105794 0.999992 0.0105794 8.13198E-06 0.499139 0.999992 0.499139 8.13198E-06 0.505294 0.999992 0.505294 8.13198E-06 0.993853 0.999992 0.993853 1.01148 0.0105794 2.01146 0.0105794 1.01148 0.499139 2.01146 0.499139 1.01759 0.505294 2.01758 0.505294 1.01759 0.993853 2.01758 0.993853 8.13198E-06 0.0102534 0.999992 0.0102534 8.13198E-06 0.498813 0.999992 0.498813 8.13198E-06 0.0105794 0.999992 0.0105794 8.13198E-06 0.499139 0.999992 0.499139 1.01454 0.511732 2.01452 0.511732 1.01454 1.00029 2.01452 1.00029 8.13198E-06 0.505294 0.999992 0.505294 8.13198E-06 0.993853 0.999992 0.993853 1.01454 0.0102534 2.01452 0.0102534 1.01454 0.498813 2.01452 0.498813 1.00842 0.0105794 2.00841 0.0105794 1.00842 0.499139 2.00841 0.499139 1.01454 0.0102534 2.01452 0.0102534 1.01454 0.498813 2.01452 0.498813 + + + + + + + + + 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 + + + + + + + + + + + + + + + + +

0 1 2 2 1 3 4 5 6 6 5 7 8 9 10 10 9 11 12 13 14 14 13 15 16 17 18 18 17 19 20 21 22 22 21 23 24 25 26 26 25 27 28 29 30 30 29 31 32 33 34 34 33 35 36 37 38 38 37 39 40 41 42 42 41 43 44 45 46 46 45 47 48 49 50 50 49 51 52 53 54 54 53 55 56 57 58 58 57 59 60 61 62 62 61 63 64 65 66 66 65 67 68 69 70 70 69 71 72 73 74 74 73 75

+
+
+
+
+ + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + cloudPg + + + + + + + + 0.39592627 -0 0.91828233 0 -0 1 -0 0 -0.91828233 -0 0.39592627 0 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + + + 0 0 0 + 0 0 1 0 + 0 1 0 -66.67625 + 1 0 0 0 + 1 1 1 + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #cloudPg_bone_id + + + + + + + + + + + + +
\ No newline at end of file diff --git a/Assets/Resources/Models/Games/Airboarder/cloud_model.dae.meta b/Assets/Resources/Models/Games/Airboarder/cloud_model.dae.meta new file mode 100644 index 000000000..9b5595f1b --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/cloud_model.dae.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: ff59f8d97b493cd48be0648a02466412 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: cloud02_model_cloudMt + second: {fileID: 2100000, guid: 04362130d29b5134fa53ff055e11734e, type: 2} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/dog.fbx b/Assets/Resources/Models/Games/Airboarder/dog.fbx new file mode 100644 index 000000000..cfb221aec Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/dog.fbx differ diff --git a/Assets/Resources/Models/Games/Airboarder/dog.fbx.meta b/Assets/Resources/Models/Games/Airboarder/dog.fbx.meta new file mode 100644 index 000000000..8de763afe --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/dog.fbx.meta @@ -0,0 +1,116 @@ +fileFormatVersion: 2 +guid: 2b191f0019f7a454da1d277016908992 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: dog + second: {fileID: 2100000, guid: c466e7c7047232045bc7f7da99a96309, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: dog_sdw + second: {fileID: 2100000, guid: d60ea1e87341a3a4fbad986e8d3b2aec, type: 2} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/dog_model.dae b/Assets/Resources/Models/Games/Airboarder/dog_model.dae new file mode 100644 index 000000000..ce8b400e9 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/dog_model.dae @@ -0,0 +1,415 @@ + + + + 2024-02-25T16:09:40.6386841-06:00 + 2024-02-25T16:09:40.6387173-06:00 + + + + ./airboy_board.png + + + ./airboy_body.png + + + ./airboy_face.0.png + + + ./airboy_face.1.png + + + ./airboy_face.2.png + + + ./airboy_shadow.png + + + ./block_shadow.png + + + ./dog.png + + + ./dog_sdw.png + + + ./floor.png + + + ./metal_env.png + + + ./mother_ship.png + + + ./wall_body.png + + + ./cloud01.png + + + + + + + + + + + + + + + + dog + PNG + + + + + dogMt_surf + WRAP + WRAP + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + dog_sdw + PNG + + + + + sdwMt_surf + WRAP + WRAP + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + + -0.215007 2.1419864 -3.0042129 0.215007 2.1419864 -3.0042129 -0.215007 1.7669713 -3.0042129 0.215007 1.7669713 -3.0042129 0.215007 1.6919785 -2.92922 0.215007 1.6919785 -2.5792048 -0.215007 1.6919785 -2.92922 -0.215007 1.6919785 -2.5792048 -0.29 1.7669713 -2.5792048 -0.29 2.1419864 -2.5792048 -0.29 1.7669713 -2.92922 -0.29 2.1419864 -2.92922 0.29 2.1419864 -2.92922 0.29 2.1419864 -2.5792048 0.29 1.7669713 -2.92922 0.29 1.7669713 -2.5792048 0.215007 2.1419864 -2.5042129 -0.215007 2.1419864 -2.5042129 0.215007 1.7669713 -2.5042129 -0.215007 1.7669713 -2.5042129 0.215007 2.2169783 -2.92922 -0.215007 2.2169783 -2.92922 0.215007 2.2169783 -2.5792048 -0.215007 2.2169783 -2.5792048 0.116 0.834152 -2.4479206 0.09619099 0.055053055 -2.4598746 0.116 0.834152 -2.2029095 0.09619099 0.055053055 -2.1909566 0.15380798 -0.0025639534 -2.4598746 0.48419088 -0.0025639534 -2.4598746 0.15380798 -0.0025639534 -2.1909566 0.48419088 -0.0025639534 -2.1909566 0.16849399 0.834152 -2.1504157 0.15380798 0.055053055 -2.1333385 0.46950477 0.834152 -2.1504157 0.48419088 0.055053055 -2.1333385 0.46950477 0.834152 -2.5004156 0.48419088 0.055053055 -2.5174916 0.16849399 0.834152 -2.5004156 0.15380798 0.055053055 -2.5174916 0.522 0.834152 -2.2029095 0.541808 0.055053055 -2.1909566 0.522 0.834152 -2.4479206 0.541808 0.055053055 -2.4598746 -0.11600001 0.8752672 -0.6526641 -0.11600001 0.05249244 -0.6526641 -0.11600001 0.8752672 -0.8976741 -0.11600001 0.05249244 -0.8976741 -0.168495 -2.5629997E-06 -0.6526641 -0.469505 -2.5629997E-06 -0.6526641 -0.168495 -2.5629997E-06 -0.8976741 -0.469505 -2.5629997E-06 -0.8976741 -0.168495 0.8752672 -0.9501691 -0.168495 0.05249244 -0.9501691 -0.469505 0.875406 -0.9501691 -0.469505 0.05249244 -0.9501691 -0.469505 0.875406 -0.6001691 -0.469505 0.05249244 -0.6001691 -0.168495 0.8752672 -0.6001691 -0.168495 0.05249244 -0.6001691 -0.522 0.875406 -0.8976741 -0.522 0.05249244 -0.8976741 -0.522 0.875406 -0.6526641 -0.522 0.05249244 -0.6526641 0.11600001 0.83415174 -0.89809215 0.096192 0.055053473 -0.9100461 0.11600001 0.83415174 -0.6530811 0.096192 0.055053473 -0.6411281 0.15380901 -0.0025635362 -0.9100461 0.484191 -0.0025635362 -0.9100461 0.15380901 -0.0025635362 -0.6411281 0.484191 -0.0025635362 -0.6411281 0.168495 0.83415174 -0.6005871 0.15380901 0.055053473 -0.5835111 0.469505 0.83415174 -0.6005871 0.484191 0.055053473 -0.5835111 0.469505 0.83415174 -0.9505871 0.484191 0.055053473 -0.9676631 0.168495 0.83415174 -0.9505871 0.15380901 0.055053473 -0.9676631 0.522 0.83415174 -0.6530811 0.541808 0.055053473 -0.6411281 0.522 0.83415174 -0.89809215 0.541808 0.055053473 -0.9100461 -0.406017 1.9760134 -2.622244 0.406017 1.9760134 -2.622244 -0.406017 0.8239801 -2.622244 0.406017 0.8239801 -2.622244 0.406017 0.6500001 -2.448261 0.406017 0.6500001 -0.67350006 -0.406017 0.6500001 -2.448261 -0.406017 0.6500001 -0.67350006 -0.58 0.8239801 -0.67350006 -0.58 1.9760134 -0.67350006 -0.58 0.8239801 -2.448261 -0.58 1.9760134 -2.448261 0.58 1.9760134 -2.448261 0.58 1.9760134 -0.67350006 0.58 0.8239801 -2.448261 0.58 0.8239801 -0.67350006 0.406017 1.9760134 -0.49951005 -0.406017 1.9760134 -0.49951005 0.406017 0.8239801 -0.49951005 -0.406017 0.8239801 -0.49951005 0.406017 2.149996 -2.448261 -0.406017 2.149996 -2.448261 0.406017 2.149996 -0.67350006 -0.406017 2.149996 -0.67350006 0.316987 1.4728332 0.53695196 0.316987 1.4728332 1.216964 -0.316987 1.4728332 0.53695196 -0.316987 1.4728332 1.216964 0.316987 2.1528451 1.336952 -0.316987 2.1528451 1.336952 0.316987 1.5928211 1.336952 -0.316987 1.5928211 1.336952 0.427549 2.1528451 0.53695196 0.427549 2.1528451 1.216964 0.427549 1.5928211 0.53695196 0.427549 1.5928211 1.216964 -0.427549 1.5928211 0.53695196 -0.427549 1.5928211 1.216964 -0.427549 2.1528451 0.53695196 -0.427549 2.1528451 1.216964 -0.316987 2.239731 0.53695196 -0.316987 2.239731 1.216964 0.316987 2.239731 0.53695196 0.316987 2.239731 1.216964 0.316987 1.5928211 1.336952 0.316987 2.1528451 1.336952 -0.316987 1.5928211 1.336952 -0.316987 2.1528451 1.336952 -0.92651 2.899612 -0.71305 -0.72349 2.899612 -0.71305 -0.92651 2.0025916 -0.71305 -0.72349 2.0025916 -0.71305 -0.72349 1.9011021 -0.6115601 -0.72349 1.9011021 -0.06453806 -0.92651 1.9011021 -0.6115601 -0.92651 1.9011021 -0.06453806 -1.028 2.0025916 -0.06453806 -1.028 2.899612 -0.06453806 -1.028 2.0025916 -0.6115601 -1.028 2.899612 -0.6115601 -0.622 2.899612 -0.6115601 -0.622 2.899612 -0.06453806 -0.622 2.0025916 -0.6115601 -0.622 2.0025916 -0.06453806 -0.72349 2.899612 0.03695196 -0.92651 2.899612 0.03695196 -0.72349 2.0025916 0.03695196 -0.92651 2.0025916 0.03695196 -0.72349 3.001102 -0.6115601 -0.92651 3.001102 -0.6115601 -0.72349 3.001102 -0.06453806 -0.92651 3.001102 -0.06453806 0.59052 2.899612 -0.06453806 0.59052 2.899612 -0.6115601 0.59052 2.0025916 -0.06453806 0.59052 2.0025916 -0.6115601 0.69201 1.9011021 -0.6115601 0.89503 1.9011021 -0.6115601 0.69201 1.9011021 -0.06453806 0.89503 1.9011021 -0.06453806 0.89503 2.0025916 0.03695196 0.89503 2.899612 0.03695196 0.69201 2.0025916 0.03695196 0.69201 2.899612 0.03695196 0.69201 2.899612 -0.71305 0.89503 2.899612 -0.71305 0.69201 2.0025916 -0.71305 0.89503 2.0025916 -0.71305 0.99652 2.899612 -0.6115601 0.99652 2.899612 -0.06453806 0.99652 2.0025916 -0.6115601 0.99652 2.0025916 -0.06453806 0.89503 3.001102 -0.6115601 0.69201 3.001102 -0.6115601 0.89503 3.001102 -0.06453806 0.69201 3.001102 -0.06453806 0 3.226675 -0.27553904 -0.165627 3.2215753 -0.27553904 0 3.1551952 -0.18804806 -0.165627 3.150095 -0.18804806 0 3.226675 -0.4505601 -0.165627 3.2215753 -0.4505601 -0.165627 3.150095 -0.53805006 0 3.1551952 -0.53805006 0.165627 3.150095 -0.53805006 0.165627 3.2215753 -0.4505601 0.165627 3.2215753 -0.27553904 0.165627 3.150095 -0.18804806 -0.331254 3.2109551 -0.27553904 -0.331254 3.2109551 -0.4505601 -0.496882 3.195265 -0.4505601 -0.496882 3.195265 -0.27553904 0.496882 3.195265 -0.4505601 0.496882 3.195265 -0.27553904 0.614294 3.1629252 -0.4505601 0.614294 3.1629252 -0.27553904 0.331254 3.2109551 -0.4505601 0.331254 3.2109551 -0.27553904 0.331254 3.139465 -0.18804806 0.331254 3.139465 -0.53805006 0.496882 3.123785 -0.18804806 -0.331254 3.139465 -0.18804806 -0.331254 3.139465 -0.53805006 -0.496882 3.123785 -0.53805006 -0.165627 2.958044 -0.18804806 0 2.965039 -0.18804806 -0.165627 2.958044 -0.53805006 0 2.965039 -0.53805006 0.165627 2.958044 -0.53805006 0.165627 2.958044 -0.18804806 -0.331254 2.945148 -0.53805006 0.331254 2.945148 -0.18804806 0.331254 2.945148 -0.53805006 -0.331254 2.945148 -0.18804806 -0.496882 2.9272 -0.53805006 0.662509 3.091885 -0.18804806 0.496882 2.9272 -0.18804806 -0.496882 3.123785 -0.18804806 -0.496882 2.9272 -0.18804806 -0.614294 3.1629252 -0.4505601 -0.662509 3.091885 -0.53805006 -0.614294 3.1629252 -0.27553904 -0.662509 3.091885 -0.18804806 0.496882 3.123785 -0.53805006 0.496882 2.9272 -0.53805006 0 2.939119 -0.21291208 -0.165601 2.932693 -0.21291208 0 2.939119 -0.51318 -0.165601 2.932693 -0.51318 0.165601 2.932693 -0.51318 0.165601 2.932693 -0.21291208 -0.331219 2.9197972 -0.21291208 -0.331219 2.9197972 -0.51318 0.331219 2.9197972 -0.51318 0.331219 2.9197972 -0.21291208 0.496797 2.901484 -0.51318 0.496797 2.901484 -0.21291208 -0.496797 2.901484 -0.21291208 -0.496797 2.901484 -0.51318 -0.666872 2.898695 -0.19241107 -0.658831 2.874849 -0.20907706 -0.75 3.091885 -0.4505601 -0.666872 2.898695 -0.5336801 -0.75 2.8490462 -0.4505601 -0.658831 2.874849 -0.5170201 -0.75 2.8490462 -0.27553904 -0.75 3.091885 -0.27553904 0.662509 3.091885 -0.53805006 0.666872 2.898695 -0.5336801 0.658831 2.874849 -0.5170201 0.75 3.091885 -0.27553904 0.666872 2.898695 -0.19241107 0.75 2.8490462 -0.27553904 0.658831 2.874849 -0.20907706 0.75 3.091885 -0.4505601 0.75 2.8490462 -0.4505601 -0.427795 2.727119 -0.81305003 0.427795 2.727119 -0.81305003 -0.427795 1.5750841 -0.81305003 0.427795 1.5750841 -0.81305003 0.427795 1.4011021 -0.63907003 0.427795 1.4011021 0.51296896 -0.427795 1.4011021 -0.63907003 -0.427795 1.4011021 0.51296896 -0.61111 1.5750841 -0.63907003 -0.61111 2.727119 -0.63907003 -0.61111 1.5750841 0.51296896 0.61111 1.5750841 -0.63907003 0.61111 2.727119 -0.63907003 0.427795 2.901102 -0.63907003 -0.427795 2.901102 -0.63907003 0.61111 1.5750841 0.51296896 0.61111 2.727119 0.51296896 -0.442947 1.5750841 0.68695205 0.442947 1.5750841 0.68695205 0.427795 2.901102 0.51296896 -0.61111 2.727119 0.51296896 -0.427795 2.901102 0.51296896 -0.442947 2.727119 0.68695205 -0.442947 2.151102 0.68695205 0.442947 2.727119 0.68695205 0.442947 2.151102 0.68695205 0.442947 2.151102 0.68695205 0.442947 2.727119 0.68695205 -0.442947 2.151102 0.68695205 -0.442947 2.727119 0.68695205 -0.116 0.8752674 -2.2024915 -0.116 0.052492082 -2.2024915 -0.116 0.8752674 -2.4475026 -0.116 0.052492082 -2.4475026 -0.16849399 -2.9206276E-06 -2.2024915 -0.46950477 -2.9206276E-06 -2.2024915 -0.16849399 -2.9206276E-06 -2.4475026 -0.46950477 -2.9206276E-06 -2.4475026 -0.16849399 0.8752674 -2.4999976 -0.16849399 0.052492082 -2.4999976 -0.46950477 0.87540615 -2.4999976 -0.46950477 0.052492082 -2.4999976 -0.46950477 0.87540615 -2.1499975 -0.46950477 0.052492082 -2.1499975 -0.16849399 0.8752674 -2.1499975 -0.16849399 0.052492082 -2.1499975 -0.522 0.87540615 -2.4475026 -0.522 0.052492082 -2.4475026 -0.522 0.87540615 -2.2024915 -0.522 0.052492082 -2.2024915 + + + + + + + + + + -0.13152395 0.14960794 -0.97995865 0.13152395 0.14960794 -0.97995865 -0.13152395 -0.14960794 -0.97995865 0.13152395 -0.14960794 -0.97995865 0.13052101 -0.9787161 -0.15836401 0.13052101 -0.9787161 0.15836401 -0.13052101 -0.9787161 -0.15836401 -0.13052101 -0.9787161 0.15836401 -0.97678906 -0.14650302 0.15626901 -0.97678906 0.14650302 0.15626901 -0.97678906 -0.14650302 -0.15626901 -0.97678906 0.14650302 -0.15626901 0.97678906 0.14650302 -0.15626901 0.97678906 0.14650302 0.15626901 0.97678906 -0.14650302 -0.15626901 0.97678906 -0.14650302 0.15626901 0.13152395 0.14960794 0.97995865 -0.13152395 0.14960794 0.97995865 0.14126007 -0.15797107 0.9772875 -0.14126007 -0.15797107 0.9772875 0.13052101 0.9787161 -0.15836401 -0.13052101 0.9787161 -0.15836401 0.13052101 0.9787161 0.15836401 -0.13052101 0.9787161 0.15836401 -0.9845362 0.027685706 -0.17298003 -0.9851456 -0.037561685 -0.16756295 -0.9845362 0.027685706 0.17298003 -0.9851456 -0.037561685 0.16756295 -0.13052101 -0.9787161 -0.15836401 0.13052101 -0.9787161 -0.15836401 -0.13052101 -0.9787161 0.15836401 0.13052101 -0.9787161 0.15836401 -0.14555804 0.024421707 0.9890483 -0.14202099 -0.042242195 0.9889619 0.14555804 0.024421707 0.9890483 0.14202099 -0.042242195 0.9889619 0.14555804 0.024421707 -0.9890483 0.14202099 -0.042242195 -0.9889619 -0.14555804 0.024421707 -0.9890483 -0.14202099 -0.042242195 -0.9889619 0.9845362 0.027685706 0.17298003 0.9851456 -0.037561685 0.16756295 0.9845362 0.027685706 -0.17298003 0.9851456 -0.037561685 -0.16756295 0.98478717 0 0.17376503 0.98440063 -0.05246498 0.16793694 0.984787 0 -0.173766 0.98440063 -0.05246498 -0.16793694 0.13052101 -0.9787161 0.15836401 -0.13052101 -0.9787161 0.15836401 0.13052101 -0.9787161 -0.15836401 -0.13052101 -0.9787161 -0.15836401 0.14684102 0 -0.9891601 0.14174502 -0.053729005 -0.98844403 -0.14693308 0 -0.9891465 -0.14176503 -0.05372751 -0.9884412 -0.14693308 0 0.9891465 -0.14176404 -0.05372752 0.98844135 0.14684102 0 0.9891601 0.14174502 -0.053729005 0.98844403 -0.984787 0 -0.173766 -0.984401 -0.0524566 -0.167938 -0.984787 0 0.173766 -0.984401 -0.0524566 0.167938 -0.9845362 0.027685706 -0.17298003 -0.9851456 -0.037561685 -0.16756295 -0.9845362 0.027685706 0.17298003 -0.9851456 -0.037561685 0.16756295 -0.13052101 -0.9787161 -0.15836401 0.13052101 -0.9787161 -0.15836401 -0.13052101 -0.9787161 0.15836401 0.13052101 -0.9787161 0.15836401 -0.14555804 0.024421707 0.9890483 -0.14202099 -0.042242195 0.9889619 0.14555804 0.024421707 0.9890483 0.14202099 -0.042242195 0.9889619 0.14555804 0.024421707 -0.9890483 0.14202099 -0.042242195 -0.9889619 -0.14555804 0.024421707 -0.9890483 -0.14202099 -0.042242195 -0.9889619 0.9845362 0.027685706 0.17298003 0.9851456 -0.037561685 0.16756295 0.9845362 0.027685706 -0.17298003 0.9851456 -0.037561685 -0.16756295 -0.16032001 0.115272015 -0.9803111 0.16032001 0.115272015 -0.9803111 -0.16032001 -0.115272015 -0.9803111 0.16032001 -0.115272015 -0.9803111 0.16489194 -0.98320067 -0.07827567 0.16489194 -0.98320067 0.07827567 -0.16489194 -0.98320067 -0.07827567 -0.16489194 -0.98320067 0.07827567 -0.98907673 -0.12300997 0.081214175 -0.98907673 0.12300997 0.081214175 -0.98907673 -0.12300997 -0.081214175 -0.98907673 0.12300997 -0.081214175 0.98907673 0.12300997 -0.081214175 0.98907673 0.12300997 0.081214175 0.98907673 -0.12300997 -0.081214175 0.98907673 -0.12300997 0.081214175 0.16032001 0.115272015 0.9803111 -0.16032001 0.115272015 0.9803111 0.16032001 -0.115272015 0.9803111 -0.16032001 -0.115272015 0.9803111 0.16489194 0.98320067 -0.07827567 -0.16489194 0.98320067 -0.07827567 0.16489194 0.98320067 0.07827567 -0.16489194 0.98320067 0.07827567 0.15910494 -0.98726165 0 0.14418896 -0.98038864 0.13434196 -0.15910494 -0.98726165 0 -0.14418896 -0.98038864 0.13434196 0.14442803 0.16439204 0.9757642 -0.14442803 0.16439204 0.9757642 0.14126007 -0.15797107 0.9772875 -0.14126007 -0.15797107 0.9772875 0.98570764 0.16846494 0 0.9803741 0.15258001 0.124844015 0.9870389 -0.16048099 0 0.9816339 -0.14652598 0.12216798 -0.9870389 -0.16048099 0 -0.9816339 -0.14652598 0.12216798 -0.98570764 0.16846494 0 -0.9803741 0.15258001 0.124844015 -0.115911946 0.99325955 0 -0.10622102 0.98940617 0.09895722 0.115911946 0.99325955 0 0.10622102 0.98940617 0.09895722 0.14126007 -0.15797107 0.9772875 0.14442803 0.16439204 0.9757642 -0.14126007 -0.15797107 0.9772875 -0.14442803 0.16439204 0.9757642 -0.30205 0.0768551 -0.950189 0.30205 0.0768551 -0.950189 -0.30205 -0.0768551 -0.950189 0.30205 -0.0768551 -0.950189 0.29334113 -0.9484954 -0.11961405 0.29334113 -0.9484954 0.11961405 -0.29334202 -0.9484951 -0.11961401 -0.29334202 -0.9484951 0.11961401 -0.9852291 -0.090653405 0.14527802 -0.9852291 0.090653405 0.14527802 -0.9852291 -0.090653405 -0.14527802 -0.9852291 0.090653405 -0.14527802 0.9852291 0.090653606 -0.14527802 0.9852291 0.09065351 0.14527802 0.9852291 -0.090653606 -0.14527802 0.9852291 -0.09065351 0.14527802 0.30205 0.0768551 0.950189 -0.30205 0.0768551 0.950189 0.30205 -0.0768551 0.950189 -0.30205 -0.0768551 0.950189 0.29334113 0.9484954 -0.11961405 -0.29334202 0.9484951 -0.11961401 0.29334113 0.9484954 0.11961405 -0.29334202 0.9484951 0.11961401 -0.9852291 0.090653405 0.14527802 -0.9852291 0.090653405 -0.14527802 -0.9852291 -0.090653405 0.14527802 -0.9852291 -0.090653405 -0.14527802 -0.29334202 -0.9484951 -0.11961401 0.29334113 -0.9484954 -0.11961405 -0.29334202 -0.9484951 0.11961401 0.29334113 -0.9484954 0.11961405 0.30205 -0.0768551 0.950189 0.30205 0.0768551 0.950189 -0.30205 -0.0768551 0.950189 -0.30205 0.0768551 0.950189 -0.30205 0.0768551 -0.950189 0.30205 0.0768551 -0.950189 -0.30205 -0.0768551 -0.950189 0.30205 -0.0768551 -0.950189 0.9852291 0.090653606 -0.14527802 0.9852291 0.09065351 0.14527802 0.9852291 -0.090653606 -0.14527802 0.9852291 -0.09065351 0.14527802 0.29334113 0.9484954 -0.11961405 -0.29334202 0.9484951 -0.11961401 0.29334113 0.9484954 0.11961405 -0.29334202 0.9484951 0.11961401 0 0.9654159 0.26071498 -0.04567011 0.96415526 0.26137906 0 0.32278 0.946474 -0.015224607 0.3185661 0.9477784 0 0.9654159 -0.26071498 -0.04567011 0.96415526 -0.26137906 -0.015224607 0.3185661 -0.9477784 0 0.32278 -0.946474 0.015224506 0.3185661 -0.9477784 0.0456701 0.964155 -0.26138 0.04567011 0.96415526 0.26137906 0.015224607 0.3185661 0.9477784 -0.07628583 0.96232337 0.2609871 -0.07628583 0.96232337 -0.2609871 -0.15550005 0.9531114 -0.2596121 -0.15550005 0.9531114 0.2596121 0.15549996 0.95311177 -0.25961095 0.15550005 0.9531114 0.2596121 0.33739492 0.9186618 -0.20548795 0.33739492 0.9186618 0.20548795 0.07628583 0.96232337 -0.2609871 0.07628583 0.96232337 0.2609871 0.025245305 0.3158831 0.94846225 0.025245305 0.3158831 -0.94846225 0.05252819 0.30371496 0.95131385 -0.025245313 0.31588218 0.94846255 -0.025245406 0.3158831 -0.94846225 -0.052528393 0.30371496 -0.95131385 0.0065482007 -0.11157802 0.9937341 0.0065482007 -0.11157802 0.9937341 0 -0.109468035 -0.99399036 0 -0.109468035 -0.99399036 0 -0.109468035 -0.99399036 -0.0065482007 -0.11157802 0.9937341 0.010302796 -0.11077096 -0.99379265 -0.0065482007 -0.11157802 0.9937341 -0.010302996 -0.11077096 -0.99379265 0.0065482007 -0.11157802 0.9937341 0 -0.109468035 -0.99399036 0.23079307 0.22608007 0.9463733 -0.0065482007 -0.11157802 0.9937341 -0.05252819 0.30371496 0.95131385 0.0065482007 -0.11157802 0.9937341 -0.33739492 0.9186618 -0.20548795 -0.23079307 0.22608007 -0.9463733 -0.33739492 0.9186618 0.20548795 -0.23079307 0.22608007 0.9463733 0.052528393 0.30371496 -0.95131385 0 -0.109468035 -0.99399036 0 -0.9968035 0.07989236 0.058158506 -0.99520314 0.078665905 0 -0.9968035 -0.07989275 0.058158506 -0.99520314 -0.078665905 -0.05815851 -0.9952032 -0.07866572 -0.05815851 -0.9952032 0.07866552 0.09353561 -0.99253803 0.07822671 0.09353561 -0.99253803 -0.07822671 -0.09353561 -0.99253803 -0.07822661 -0.09353561 -0.99253803 0.078226306 -0.13575098 -0.9876399 -0.07835239 -0.135751 -0.98764 0.078352 0.13575098 -0.9876399 0.078352295 0.13575098 -0.9876399 -0.078352295 -0.2617919 -0.08828817 0.96107763 0.17170201 -0.9811761 0.08838531 -0.91388816 0.37722006 -0.15004502 -0.26179308 -0.08828833 -0.9610773 -0.79446286 -0.58911496 -0.14755498 0.17170201 -0.9811761 -0.08838541 -0.79446286 -0.58911496 0.14755498 -0.91388816 0.37722006 0.15004502 0.23079307 0.22608007 -0.9463733 0.26179215 -0.088288255 -0.9610776 -0.171702 -0.981176 -0.0883855 0.9138883 0.37722012 0.15004404 0.2617919 -0.08828837 0.96107763 0.79446286 -0.58911496 0.14755498 -0.17170201 -0.9811761 0.08838531 0.9138883 0.37722012 -0.15004404 0.79446286 -0.58911496 -0.14755498 -0.16032001 0.115272015 -0.9803111 0.16032001 0.115272015 -0.9803111 -0.16032001 -0.115272015 -0.9803111 0.16032001 -0.115272015 -0.9803111 0.15243801 -0.9815391 -0.11551501 0.15113492 -0.9812055 0.11997494 -0.15243801 -0.9815391 -0.11551501 -0.15113492 -0.9812055 0.11997494 -0.98413926 -0.12543903 -0.12543903 -0.98413926 0.12543903 -0.12543903 -0.98907673 -0.12300997 0.081214175 0.98413926 -0.12543903 -0.12543903 0.98413926 0.12543903 -0.12543903 0.15243801 0.9815391 -0.11551501 -0.15243801 0.9815391 -0.11551501 0.98907673 -0.12300997 0.081214175 0.989408 0.136019 0.0507017 -0.19103298 -0.18604198 0.9637919 0.19103298 -0.18604198 0.9637919 0.15113492 0.9812055 0.11997494 -0.989408 0.136019 0.0507017 -0.15113492 0.9812055 0.11997494 -0.0825561 0.213389 0.973473 -0.20921496 0 0.97786975 0.0825561 0.213389 0.973473 0.20921496 0 0.97786975 0.20921496 0 0.97786975 0.0825561 0.213389 0.973473 -0.20921496 0 0.97786975 -0.0825561 0.213389 0.973473 0.98478717 0 0.17376503 0.98440063 -0.05246498 0.16793694 0.984787 0 -0.173766 0.98440063 -0.05246498 -0.16793694 0.13052101 -0.9787161 0.15836401 -0.13052101 -0.9787161 0.15836401 0.13052101 -0.9787161 -0.15836401 -0.13052101 -0.9787161 -0.15836401 0.14684102 0 -0.9891601 0.14174502 -0.053729005 -0.98844403 -0.14693308 0 -0.9891465 -0.14176503 -0.05372751 -0.9884412 -0.14693308 0 0.9891465 -0.14176404 -0.05372752 0.98844135 0.14684102 0 0.9891601 0.14174502 -0.053729005 0.98844403 -0.984787 0 -0.173766 -0.984401 -0.0524566 -0.167938 -0.984787 0 0.173766 -0.984401 -0.0524566 0.167938 + + + + + + + + + + 0.767401 1.17095 0.877036 1.17095 0.767401 1.17095 0.877036 1.17095 0.877036 1.14877 0.877036 1.04526 0.767401 1.14877 0.767401 1.04526 0.748281 1.04526 0.748281 1.04526 0.748281 1.14877 0.748281 1.14877 0.896156 1.14877 0.896156 1.04526 0.896156 1.14877 0.896156 1.04526 0.877036 1.02308 0.767401 1.02308 0.877036 1.02308 0.767401 1.02308 0.877036 1.14877 0.767401 1.14877 0.877036 1.04526 0.767401 1.04526 1.99599 0.514513 1.99118 0.516108 1.99599 0.481823 1.99118 0.480229 2.00516 0.516108 2.08529 0.516108 2.00516 0.480229 2.08529 0.480229 2.00872 0.47482 2.00516 0.472541 2.08173 0.47482 2.08529 0.472541 2.08173 0.521516 2.08529 0.523795 2.00872 0.521516 2.00516 0.523795 2.09446 0.481823 2.09927 0.480229 2.09446 0.514513 2.09927 0.516108 1.93971 0.27499 1.93971 0.27499 1.93971 0.307679 1.93971 0.307679 1.92698 0.27499 1.85397 0.27499 1.92698 0.307679 1.85397 0.307679 1.92698 0.314683 1.92698 0.314683 1.85397 0.314683 1.85397 0.314683 1.85397 0.267986 1.85397 0.267986 1.92698 0.267986 1.92698 0.267986 1.84124 0.307679 1.84124 0.307679 1.84124 0.27499 1.84124 0.27499 1.99599 0.307734 1.99118 0.309329 1.99599 0.275045 1.99118 0.27345 2.00516 0.309329 2.08529 0.309329 2.00516 0.27345 2.08529 0.27345 2.00872 0.268041 2.00516 0.265763 2.08173 0.268041 2.08529 0.265763 2.08173 0.314738 2.08529 0.317017 2.00872 0.314738 2.00516 0.317017 2.09446 0.275045 2.09927 0.27345 2.09446 0.307734 2.09927 0.309329 -0.931612 0.564121 -0.801749 0.564121 -0.931612 0.564121 -0.801749 0.564121 -0.801749 0.548916 -0.801749 0.393814 -0.931612 0.548916 -0.931612 0.393814 -0.959436 0.393814 -0.959436 0.393814 -0.959436 0.548916 -0.959436 0.548916 -0.773925 0.548916 -0.773925 0.393814 -0.773925 0.548916 -0.773925 0.393814 -0.801749 0.378609 -0.931612 0.378609 -0.801749 0.378609 -0.931612 0.378609 -0.801749 0.548916 -0.931612 0.548916 -0.801749 0.393814 -0.931612 0.393814 -0.0786245 0.556245 -0.0786245 0.438499 -0.181325 0.556245 -0.181325 0.438499 0.780658 0.535706 0.219342 0.535706 0.780658 0.201523 0.219342 0.201523 -0.0607139 0.556245 -0.0607139 0.438499 -0.0607139 0.556245 -0.0607139 0.438499 -0.199236 0.556245 -0.199236 0.438499 -0.199236 0.556245 -0.199236 0.438499 -0.181325 0.556245 -0.181325 0.438499 -0.0786245 0.556245 -0.0786245 0.438499 -0.0786245 0.417723 -0.0786245 0.417723 -0.181325 0.417723 -0.181325 0.417723 0.438687 1.15851 0.570964 1.15851 0.438687 1.15851 0.570964 1.15851 0.570964 1.13985 0.570964 1.03926 0.438687 1.13985 0.438687 1.03926 0.372561 1.03926 0.372561 1.03926 0.372561 1.13985 0.372561 1.13985 0.637089 1.13985 0.637089 1.03926 0.637089 1.13985 0.637089 1.03926 0.570964 1.02059 0.438687 1.02059 0.570964 1.02059 0.438687 1.02059 0.570964 1.13985 0.438687 1.13985 0.570964 1.03926 0.438687 1.03926 0.372561 1.03926 0.372561 1.13985 0.372561 1.03926 0.372561 1.13985 0.438687 1.13985 0.570964 1.13985 0.438687 1.03926 0.570964 1.03926 0.570964 1.02059 0.570964 1.02059 0.438687 1.02059 0.438687 1.02059 0.438687 1.15851 0.570964 1.15851 0.438687 1.15851 0.570964 1.15851 0.637089 1.13985 0.637089 1.03926 0.637089 1.13985 0.637089 1.03926 0.570964 1.13985 0.438687 1.13985 0.570964 1.03926 0.438687 1.03926 0.170566 1.06917 0.144894 1.06917 0.170566 1.04292 0.144894 1.04292 0.170566 1.1217 0.144894 1.1217 0.144894 1.14796 0.170566 1.14796 0.196238 1.14796 0.196238 1.1217 0.196238 1.06917 0.196238 1.04292 0.119221 1.06917 0.119221 1.1217 0.0935491 1.1217 0.0935491 1.06917 0.247583 1.1217 0.247583 1.06917 0.265782 1.1217 0.265782 1.06917 0.221911 1.1217 0.221911 1.06917 0.221911 1.04292 0.221911 1.14796 0.247583 1.04292 0.119221 1.04292 0.119221 1.14796 0.0935491 1.14796 0.144894 1.04292 0.170566 1.04292 0.144894 1.14796 0.170566 1.14796 0.196238 1.14796 0.196238 1.04292 0.119221 1.14796 0.221911 1.04292 0.221911 1.14796 0.119221 1.04292 0.0935491 1.14796 0.273256 1.04292 0.247583 1.04292 0.0935491 1.04292 0.0935491 1.04292 0.07535 1.1217 0.0678768 1.14796 0.07535 1.06917 0.0678768 1.04292 0.247583 1.14796 0.247583 1.14796 0.170566 1.05038 0.144898 1.05038 0.170566 1.14049 0.144898 1.14049 0.196234 1.14049 0.196234 1.05038 0.119227 1.05038 0.119227 1.14049 0.221905 1.14049 0.221905 1.05038 0.24757 1.14049 0.24757 1.05038 0.0935622 1.05038 0.0935622 1.14049 0.0672004 1.04423 0.0684468 1.04923 0.0543155 1.1217 0.0672004 1.14665 0.0543155 1.1217 0.0684468 1.14165 0.0543155 1.06917 0.0543155 1.06917 0.273256 1.14796 0.273932 1.14665 0.272686 1.14165 0.286817 1.06917 0.273932 1.04423 0.286817 1.06917 0.272686 1.04923 0.286817 1.1217 0.286817 1.1217 -0.17031 0.356617 -0.073341 0.356617 -0.17031 0.250229 -0.073341 0.250229 -0.073341 0.234162 -0.073341 0.234162 -0.17031 0.234162 -0.17031 0.234162 -0.191087 0.250229 -0.191087 0.356617 -0.191087 0.250229 -0.0525649 0.250229 -0.0525649 0.356617 -0.073341 0.372684 -0.17031 0.372684 -0.0525649 0.250229 -0.0525649 0.356617 -0.172028 0.250229 -0.0716238 0.250229 -0.073341 0.372684 -0.191087 0.356617 -0.17031 0.372684 0.148531 0.991047 0.148531 0.526473 0.859492 0.991047 0.859492 0.526473 -0.0716238 0.303423 -0.0716238 0.356617 -0.172028 0.303423 -0.172028 0.356617 1.93971 0.481768 1.93971 0.481768 1.93971 0.514457 1.93971 0.514457 1.92698 0.481768 1.85397 0.481768 1.92698 0.514457 1.85397 0.514457 1.92698 0.521461 1.92698 0.521461 1.85397 0.521461 1.85397 0.521461 1.85397 0.474764 1.85397 0.474764 1.92698 0.474764 1.92698 0.474764 1.84124 0.514457 1.84124 0.514457 1.84124 0.481768 1.84124 0.481768 + + + + + + + + + + + + + + +

112 113 114 113 115 114 282 283 284 283 285 284 24 25 26 24 38 25 26 25 27 38 36 37 26 27 33 25 28 27 38 37 39 25 38 39 25 39 28 36 42 37 26 33 32 27 28 30 27 30 33 39 29 28 28 29 30 39 37 29 42 40 41 32 33 34 40 34 41 30 29 31 37 42 43 43 42 41 43 31 29 43 29 37 43 41 31 33 35 34 35 33 30 35 41 34 35 30 31 31 41 35 44 45 46 44 58 45 46 45 47 58 56 57 46 47 53 45 48 47 58 57 59 45 58 59 45 59 48 56 62 57 46 53 52 47 48 50 47 50 53 59 49 48 48 49 50 59 57 49 62 60 61 52 53 54 60 54 61 50 49 51 57 62 63 63 62 61 63 51 49 63 49 57 63 61 51 53 55 54 55 53 50 55 61 54 55 50 51 51 61 55 64 65 66 64 78 65 66 65 67 78 76 77 66 67 73 65 68 67 78 77 79 65 78 79 65 79 68 76 82 77 66 73 72 67 68 70 67 70 73 79 69 68 68 69 70 79 77 69 82 80 81 72 73 74 80 74 81 70 69 71 77 82 83 83 82 81 83 71 69 83 69 77 83 81 71 73 75 74 75 73 70 75 81 74 75 70 71 71 81 75 108 109 110 108 118 109 110 109 111 118 116 117 110 111 121 109 118 119 118 117 119 116 126 117 110 121 120 111 109 128 109 119 128 126 124 125 117 129 119 119 129 128 121 122 120 124 122 125 111 128 130 111 130 121 126 125 127 117 126 127 117 127 129 122 121 123 121 130 123 122 123 125 127 131 129 131 123 130 131 127 125 125 123 131 290 291 292 290 304 291 292 291 293 304 302 303 292 293 299 291 294 293 304 303 305 291 304 305 291 305 294 302 308 303 292 299 298 293 294 296 293 296 299 305 295 294 294 295 296 305 303 295 308 306 307 298 299 300 306 300 307 296 295 297 303 308 309 309 308 307 309 297 295 309 295 303 309 307 297 299 301 300 301 299 296 301 307 300 301 296 297 297 307 301 287 286 276 287 279 289 287 276 279 286 277 278 289 279 281 276 275 272 276 286 275 276 272 279 277 267 265 278 277 265 278 275 286 278 265 275 289 281 280 272 271 263 279 272 273 267 266 265 277 270 267 267 270 266 286 288 277 288 289 280 288 270 277 288 280 270 275 271 272 281 274 280 279 274 281 279 273 274 263 262 261 273 272 261 272 263 261 273 261 274 265 266 264 264 275 265 264 263 271 264 266 262 264 271 275 264 262 263 270 268 266 266 268 262 280 269 270 270 269 268 280 274 269 261 262 260 260 262 268 260 274 261 260 268 269 269 274 260 184 185 180 184 187 185 180 181 182 184 189 187 184 180 189 185 181 180 182 181 183 187 186 185 189 188 187 180 190 189 180 182 190 181 193 192 181 192 183 185 186 193 185 193 181 188 200 203 187 211 186 187 188 211 189 201 200 189 190 201 189 200 188 182 191 190 190 191 201 192 193 195 183 192 205 192 195 205 203 216 212 188 212 211 188 203 212 186 206 193 200 201 196 200 196 203 182 183 209 182 209 191 195 193 194 193 206 194 205 217 208 183 208 209 183 205 208 216 227 228 203 196 227 203 227 216 211 210 186 186 210 206 212 231 211 211 231 210 201 191 202 195 221 205 205 221 217 194 206 207 209 213 191 191 213 202 208 229 209 209 229 213 228 237 216 196 197 198 196 198 227 201 197 196 201 202 197 212 233 231 216 237 233 216 233 212 210 214 206 206 214 207 195 194 225 195 225 221 217 221 222 208 230 229 208 217 230 213 215 202 228 239 237 198 197 199 227 198 251 227 251 228 231 229 230 233 234 231 229 234 213 213 234 215 229 231 234 233 237 234 210 231 232 231 230 232 210 232 214 207 214 218 194 207 223 194 223 225 221 225 226 221 226 222 217 222 235 230 235 232 230 217 235 202 204 197 197 204 199 202 215 204 239 240 237 198 258 251 198 199 258 228 251 252 251 258 252 228 252 239 234 237 238 237 240 238 234 238 215 214 232 236 232 235 236 214 236 218 207 224 223 207 218 224 225 245 250 225 250 226 223 224 245 223 245 225 222 241 235 204 219 199 258 199 254 199 219 254 252 253 239 240 220 238 204 215 220 215 238 220 204 220 219 236 235 242 235 241 242 236 242 218 250 245 249 226 243 222 250 243 226 250 249 243 222 243 241 224 218 246 218 242 246 224 246 245 258 254 256 252 258 259 259 256 253 259 253 252 259 258 256 239 257 240 253 257 239 253 256 257 220 255 219 255 256 254 255 220 240 255 240 257 255 254 219 255 257 256 249 245 247 245 246 247 243 244 241 249 247 244 249 244 243 241 244 242 246 248 247 248 244 247 248 246 242 242 244 248 0 1 2 0 2 10 1 3 2 0 10 11 1 12 3 2 4 6 2 6 10 2 3 4 0 21 1 0 11 21 12 13 14 3 12 14 3 14 4 6 4 5 4 14 5 10 8 9 10 9 11 10 6 8 1 21 20 12 20 13 12 1 20 14 13 15 14 15 5 9 8 19 11 9 23 11 23 21 6 5 7 8 6 7 8 7 19 20 21 22 21 23 22 20 22 13 15 16 18 15 18 5 13 22 16 7 5 18 7 18 19 13 16 15 9 19 17 17 22 23 17 18 16 17 23 9 17 19 18 17 16 22 84 85 86 84 86 94 85 87 86 84 94 95 85 96 87 86 88 90 86 90 94 86 87 88 84 105 85 84 95 105 96 97 98 87 96 98 87 98 88 90 88 89 88 98 89 94 92 93 94 93 95 94 90 92 85 105 104 96 104 97 96 85 104 98 97 99 98 99 89 93 92 103 95 93 107 95 107 105 90 89 91 92 90 91 92 91 103 104 105 106 105 107 106 104 106 97 99 100 102 99 102 89 97 106 100 91 89 102 91 102 103 97 100 99 93 103 101 101 106 107 101 102 100 101 107 93 101 103 102 101 100 106 132 133 134 132 134 142 133 135 134 132 142 143 133 144 135 134 136 138 134 138 142 134 135 136 132 153 133 132 143 153 144 145 146 135 144 146 135 146 136 138 136 137 136 146 137 142 140 141 142 141 143 142 138 140 133 153 152 144 152 145 144 133 152 146 145 147 146 147 137 141 140 151 143 141 155 143 155 153 138 137 139 140 138 139 140 139 151 152 153 154 153 155 154 152 154 145 147 148 150 147 150 137 145 154 148 139 137 150 139 150 151 145 148 147 141 151 149 149 154 155 149 150 148 149 155 141 149 151 150 149 148 154 156 157 158 156 158 166 157 159 158 156 166 167 157 168 159 158 160 162 158 162 166 158 159 160 156 179 157 156 167 179 168 169 170 159 168 170 159 170 160 162 160 161 160 170 161 166 164 165 166 165 167 166 162 164 157 179 177 168 177 169 168 157 177 170 169 171 170 171 161 165 164 175 167 165 178 179 178 177 179 167 178 162 161 163 164 162 163 164 163 175 169 172 171 165 175 173 165 173 178 177 178 176 176 169 177 176 173 172 176 178 173 176 172 169 161 174 163 174 171 172 174 173 175 174 161 171 174 175 163 174 172 173

+
+
+
+ + + + 1.67413 0.13069999 1.7462232 1.67413 0.13069999 -3.4493368 -1.67413 0.13069999 1.7462232 -1.67413 0.13069999 -3.4493368 + + + + + + + + + + 0 0 1 0 0 1 1 1 + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + + + + + + +

0 1 2 2 1 3

+
+
+
+
+ + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + dog_root dogPg sdwPg hip l_back_leg l_back_foot neck l_front_leg l_front_foot nose2 r_front_leg r_front_foot r_back_leg r_back_foot tail2 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 0.0157401 -0 1 -0 -1.73651 0 -0 1 0.79759 0 0 0 1 1 -0 0 0 -0 1 -0 -0.13069999 0 -0 1 0.85155684 0 0 0 1 1 -0 0 0 -0 1 -0 -1.99416 0 -0 1 2.34235 0 0 0 1 1 -0 0 -0.397337 -0 1 -0 -0.92605007 0 -0 1 2.3081706 0 0 0 1 1 -0 0 -0.397337 -0 1 -0 -0.13137507 0 -0 1 2.3167155 0 0 0 1 1 -0 0 0 -0 1 -0 -1.9685254 0 -0 1 0.69319 0 0 0 1 1 -0 0 -0.277709 -0 1 -0 -0.88332546 0 -0 1 0.76154906 0 0 0 1 1 -0 0 -0.277709 -0 1 -0 -0.17409945 0 -0 1 0.7530042 0 0 0 1 1 -0 0 0 -0 1 -0 -2.002705 0 -0 1 -0.70817006 0 0 0 1 1 -0 0 0.277709 -0 1 -0 -0.88332546 0 -0 1 0.76154906 0 0 0 1 1 -0 0 0.277709 -0 1 -0 -0.17409945 0 -0 1 0.7530042 0 0 0 1 1 -0 0 0.397337 -0 1 -0 -0.92605007 0 -0 1 2.3081706 0 0 0 1 1 -0 0 0.397337 -0 1 -0 -0.13137507 0 -0 1 2.3167155 0 0 0 1 1 -0 0 0 -0 1 -0 -1.9471104 0 -0 1 2.74396 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 14 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 10 0 10 0 10 0 10 0 10 0 10 0 10 0 10 0 10 0 10 0 10 0 10 0 10 0 10 0 10 0 10 0 10 0 10 0 10 0 10 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 9 0 12 0 12 0 12 0 12 0 12 0 12 0 12 0 12 0 12 0 12 0 12 0 12 0 12 0 12 0 12 0 12 0 12 0 12 0 12 0 12 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + dog_root dogPg sdwPg hip l_back_leg l_back_foot neck l_front_leg l_front_foot nose2 r_front_leg r_front_foot r_back_leg r_back_foot tail2 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 0.0157401 -0 1 -0 -1.73651 0 -0 1 0.79759 0 0 0 1 1 -0 0 0 -0 1 -0 -0.13069999 0 -0 1 0.85155684 0 0 0 1 1 -0 0 0 -0 1 -0 -1.99416 0 -0 1 2.34235 0 0 0 1 1 -0 0 -0.397337 -0 1 -0 -0.92605007 0 -0 1 2.3081706 0 0 0 1 1 -0 0 -0.397337 -0 1 -0 -0.13137507 0 -0 1 2.3167155 0 0 0 1 1 -0 0 0 -0 1 -0 -1.9685254 0 -0 1 0.69319 0 0 0 1 1 -0 0 -0.277709 -0 1 -0 -0.88332546 0 -0 1 0.76154906 0 0 0 1 1 -0 0 -0.277709 -0 1 -0 -0.17409945 0 -0 1 0.7530042 0 0 0 1 1 -0 0 0 -0 1 -0 -2.002705 0 -0 1 -0.70817006 0 0 0 1 1 -0 0 0.277709 -0 1 -0 -0.88332546 0 -0 1 0.76154906 0 0 0 1 1 -0 0 0.277709 -0 1 -0 -0.17409945 0 -0 1 0.7530042 0 0 0 1 1 -0 0 0.397337 -0 1 -0 -0.92605007 0 -0 1 2.3081706 0 0 0 1 1 -0 0 0.397337 -0 1 -0 -0.13137507 0 -0 1 2.3167155 0 0 0 1 1 -0 0 0 -0 1 -0 -1.9471104 0 -0 1 2.74396 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 + 2 0 2 0 2 0 2 0 + + + + + + + + 0 0 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + -0.0157401 1.73651 -0.79759 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 0.0157401 -1.60581 -0.0539668 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + + 0 1.99416 -2.34235 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 0.397337 -1.06811 0.0341795 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 0 -0.794675 -0.00854489 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + + 0 -0.0256346 1.64916 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 0.277709 -1.0852 -0.0683591 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 0 -0.709226 0.00854489 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + + 0 0.0341796 1.40136 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + -0.277709 -1.0852 -0.0683591 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 0 -0.709226 0.00854489 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + + + -0.397337 -1.06811 0.0341795 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 0 -0.794675 -0.00854489 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + + 0 -0.0470497 -0.40161 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #dog_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #dog_root_bone_id + + + + + + + + + + + + +
\ No newline at end of file diff --git a/Assets/Resources/Models/Games/Airboarder/dog_model.dae.meta b/Assets/Resources/Models/Games/Airboarder/dog_model.dae.meta new file mode 100644 index 000000000..8b8928268 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/dog_model.dae.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: 9ac4366931460d2418ee132f0611c6d5 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: dogMt + second: {fileID: 2100000, guid: c466e7c7047232045bc7f7da99a96309, type: 2} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/floor_model.dae b/Assets/Resources/Models/Games/Airboarder/floor_model.dae new file mode 100644 index 000000000..423382aa7 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/floor_model.dae @@ -0,0 +1,195 @@ + + + + 2024-02-25T16:09:42.9226325-06:00 + 2024-02-25T16:09:42.9226687-06:00 + + + + ./airboy_board.png + + + ./airboy_body.png + + + ./airboy_face.0.png + + + ./airboy_face.1.png + + + ./airboy_face.2.png + + + ./airboy_shadow.png + + + ./block_shadow.png + + + ./dog.png + + + ./dog_sdw.png + + + ./floor.png + + + ./metal_env.png + + + ./mother_ship.png + + + ./wall_body.png + + + ./cloud01.png + + + + + + + + + + + + + floor + PNG + + + + + floorMt_surf + WRAP + WRAP + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + + -400 5.0317774 -13.15108 -327.273 5.0317774 -13.15108 -400 5.0317774 -15.32008 -327.273 5.0317774 -15.32008 -400 3.321127 -10.93163 -327.273 3.321127 -10.93163 -400 4.4754972 -11.93248 -327.273 4.4754972 -11.93248 -400 2.764837 -8.24021 -327.273 2.764837 -8.24021 -400 2.764837 -9.71304 -327.273 2.764837 -9.71304 -400 0.5124971 -5.9481 -327.273 0.5124971 -5.9481 -400 2.1590471 -7.0854797 -327.273 2.1590471 -7.0854797 -400 -0.0932929 35.52312 -327.273 -0.0932929 35.52312 -400 -0.0932929 -4.7933702 -327.273 -0.0932929 -4.7933702 -400 4.8861275 -12.48128 -327.273 4.8861275 -12.48128 -400 2.910487 -10.38282 -327.273 2.910487 -10.38282 -400 2.604197 -7.58822 -327.273 2.604197 -7.58822 -400 0.0673481 -5.44537 -327.273 0.0673481 -5.44537 327.273 -0.0932929 35.52312 400 -0.0932929 35.52312 327.273 -0.0932929 -4.7933702 400 -0.0932929 -4.7933702 327.273 0.0673481 -5.44537 400 0.0673481 -5.44537 327.273 0.5124971 -5.9481 400 0.5124971 -5.9481 327.273 2.1590471 -7.0854797 400 2.1590471 -7.0854797 327.273 2.604197 -7.58822 400 2.604197 -7.58822 327.273 2.764837 -8.24021 400 2.764837 -8.24021 327.273 2.764837 -9.71304 400 2.764837 -9.71304 327.273 2.910487 -10.38282 400 2.910487 -10.38282 327.273 3.321127 -10.93163 400 3.321127 -10.93163 327.273 4.4754972 -11.93248 400 4.4754972 -11.93248 327.273 4.8861275 -12.48128 400 4.8861275 -12.48128 327.273 5.0317774 -13.15108 400 5.0317774 -13.15108 327.273 5.0317774 -15.32008 400 5.0317774 -15.32008 254.545 -0.0932929 35.52312 254.545 -0.0932929 -4.7933702 254.545 0.0673481 -5.44537 254.545 0.5124971 -5.9481 254.545 2.1590471 -7.0854797 254.545 2.604197 -7.58822 254.545 2.764837 -8.24021 254.545 2.764837 -9.71304 254.545 2.910487 -10.38282 254.545 3.321127 -10.93163 254.545 4.4754972 -11.93248 254.545 4.8861275 -12.48128 254.545 5.0317774 -13.15108 254.545 5.0317774 -15.32008 181.818 -0.0932929 35.52312 181.818 -0.0932929 -4.7933702 181.818 0.0673481 -5.44537 181.818 0.5124971 -5.9481 181.818 2.1590471 -7.0854797 181.818 2.604197 -7.58822 181.818 2.764837 -8.24021 181.818 2.764837 -9.71304 181.818 2.910487 -10.38282 181.818 3.321127 -10.93163 181.818 4.4754972 -11.93248 181.818 4.8861275 -12.48128 181.818 5.0317774 -13.15108 181.818 5.0317774 -15.32008 109.090996 -0.0932929 35.52312 109.090996 -0.0932929 -4.7933702 109.090996 0.0673481 -5.44537 109.090996 0.5124971 -5.9481 109.090996 2.1590471 -7.0854797 109.090996 2.604197 -7.58822 109.090996 2.764837 -8.24021 109.090996 2.764837 -9.71304 109.090996 2.910487 -10.38282 109.090996 3.321127 -10.93163 109.090996 4.4754972 -11.93248 109.090996 4.8861275 -12.48128 109.090996 5.0317774 -13.15108 109.090996 5.0317774 -15.32008 36.363598 -0.0932929 35.52312 36.363598 -0.0932929 -4.7933702 36.363598 0.0673481 -5.44537 36.363598 0.5124971 -5.9481 36.363598 2.1590471 -7.0854797 36.363598 2.604197 -7.58822 36.363598 2.764837 -8.24021 36.363598 2.764837 -9.71304 36.363598 2.910487 -10.38282 36.363598 3.321127 -10.93163 36.363598 4.4754972 -11.93248 36.363598 4.8861275 -12.48128 36.363598 5.0317774 -13.15108 36.363598 5.0317774 -15.32008 -36.3637 -0.0932929 35.52312 -36.3637 -0.0932929 -4.7933702 -36.3637 0.0673481 -5.44537 -36.3637 0.5124971 -5.9481 -36.3637 2.1590471 -7.0854797 -36.3637 2.604197 -7.58822 -36.3637 2.764837 -8.24021 -36.3637 2.764837 -9.71304 -36.3637 2.910487 -10.38282 -36.3637 3.321127 -10.93163 -36.3637 4.4754972 -11.93248 -36.3637 4.8861275 -12.48128 -36.3637 5.0317774 -13.15108 -36.3637 5.0317774 -15.32008 -109.090996 -0.0932929 35.52312 -109.090996 -0.0932929 -4.7933702 -109.090996 0.0673481 -5.44537 -109.090996 0.5124971 -5.9481 -109.090996 2.1590471 -7.0854797 -109.090996 2.604197 -7.58822 -109.090996 2.764837 -8.24021 -109.090996 2.764837 -9.71304 -109.090996 2.910487 -10.38282 -109.090996 3.321127 -10.93163 -109.090996 4.4754972 -11.93248 -109.090996 4.8861275 -12.48128 -109.090996 5.0317774 -13.15108 -109.090996 5.0317774 -15.32008 -181.818 -0.0932929 35.52312 -181.818 -0.0932929 -4.7933702 -181.818 0.0673481 -5.44537 -181.818 0.5124971 -5.9481 -181.818 2.1590471 -7.0854797 -181.818 2.604197 -7.58822 -181.818 2.764837 -8.24021 -181.818 2.764837 -9.71304 -181.818 2.910487 -10.38282 -181.818 3.321127 -10.93163 -181.818 4.4754972 -11.93248 -181.818 4.8861275 -12.48128 -181.818 5.0317774 -13.15108 -181.818 5.0317774 -15.32008 -254.545 -0.0932929 35.52312 -254.545 -0.0932929 -4.7933702 -254.545 0.0673481 -5.44537 -254.545 0.5124971 -5.9481 -254.545 2.1590471 -7.0854797 -254.545 2.604197 -7.58822 -254.545 2.764837 -8.24021 -254.545 2.764837 -9.71304 -254.545 2.910487 -10.38282 -254.545 3.321127 -10.93163 -254.545 4.4754972 -11.93248 -254.545 4.8861275 -12.48128 -254.545 5.0317774 -13.15108 -254.545 5.0317774 -15.32008 + + + + + + + + + + 0 0.99868643 0.051238623 0 0.99868643 0.051238623 0 1 0 0 1 0 0 0.7036222 0.7105742 0 0.7036222 0.7105742 0 0.7036222 0.7105742 0 0.7036222 0.7105742 0 0.99715436 0.07538733 0 0.99715436 0.07538733 0 0.99715436 0.07538733 0 0.99715436 0.07538733 0 0.6170388 0.7869327 0 0.6170388 0.7869327 0 0.6170388 0.7869327 0 0.6170388 0.7869327 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9096954 0.41527617 0 0.9096954 0.41527617 0 0.9096954 0.41527617 0 0.9096954 0.41527617 0 0.885537 0.464569 0 0.885537 0.464569 0 0.885537 0.464569 0 0.885537 0.464569 0 1 0 0 1 0 0 1 0 0 1 0 0 0.885537 0.464569 0 0.885537 0.464569 0 0.6170388 0.7869327 0 0.6170388 0.7869327 0 0.6170388 0.7869327 0 0.6170388 0.7869327 0 0.885537 0.464569 0 0.885537 0.464569 0 0.99715436 0.07538733 0 0.99715436 0.07538733 0 0.99715436 0.07538733 0 0.99715436 0.07538733 0 0.9096954 0.41527617 0 0.9096954 0.41527617 0 0.7036222 0.7105742 0 0.7036222 0.7105742 0 0.7036222 0.7105742 0 0.7036222 0.7105742 0 0.9096954 0.41527617 0 0.9096954 0.41527617 0 0.99868643 0.051238623 0 0.99868643 0.051238623 0 1 0 0 1 0 0 1 0 0 1 0 0 0.885537 0.464569 0 0.6170388 0.7869327 0 0.6170388 0.7869327 0 0.885537 0.464569 0 0.99715436 0.07538733 0 0.99715436 0.07538733 0 0.9096954 0.41527617 0 0.7036222 0.7105742 0 0.7036222 0.7105742 0 0.9096954 0.41527617 0 0.99868643 0.051238623 0 1 0 0 1 0 0 1 0 0 0.885537 0.464569 0 0.6170388 0.7869327 0 0.6170388 0.7869327 0 0.885537 0.464569 0 0.99715436 0.07538733 0 0.99715436 0.07538733 0 0.9096954 0.41527617 0 0.7036222 0.7105742 0 0.7036222 0.7105742 0 0.9096954 0.41527617 0 0.99868643 0.051238623 0 1 0 0 1 0 0 1 0 0 0.885537 0.464569 0 0.6170388 0.7869327 0 0.6170388 0.7869327 0 0.885537 0.464569 0 0.99715436 0.07538733 0 0.99715436 0.07538733 0 0.9096954 0.41527617 0 0.7036222 0.7105742 0 0.7036222 0.7105742 0 0.9096954 0.41527617 0 0.99868643 0.051238623 0 1 0 0 1 0 0 1 0 0 0.885537 0.464569 0 0.6170388 0.7869327 0 0.6170388 0.7869327 0 0.885537 0.464569 0 0.99715436 0.07538733 0 0.99715436 0.07538733 0 0.9096954 0.41527617 0 0.7036222 0.7105742 0 0.7036222 0.7105742 0 0.9096954 0.41527617 0 0.99868643 0.051238623 0 1 0 0 1 0 0 1 0 0 0.885537 0.464569 0 0.6170388 0.7869327 0 0.6170388 0.7869327 0 0.885537 0.464569 0 0.99715436 0.07538733 0 0.99715436 0.07538733 0 0.9096954 0.41527617 0 0.7036222 0.7105742 0 0.7036222 0.7105742 0 0.9096954 0.41527617 0 0.99868643 0.051238623 0 1 0 0 1 0 0 1 0 0 0.885537 0.464569 0 0.6170388 0.7869327 0 0.6170388 0.7869327 0 0.885537 0.464569 0 0.99715436 0.07538733 0 0.99715436 0.07538733 0 0.9096954 0.41527617 0 0.7036222 0.7105742 0 0.7036222 0.7105742 0 0.9096954 0.41527617 0 0.99868643 0.051238623 0 1 0 0 1 0 0 1 0 0 0.885537 0.464569 0 0.6170388 0.7869327 0 0.6170388 0.7869327 0 0.885537 0.464569 0 0.99715436 0.07538733 0 0.99715436 0.07538733 0 0.9096954 0.41527617 0 0.7036222 0.7105742 0 0.7036222 0.7105742 0 0.9096954 0.41527617 0 0.99868643 0.051238623 0 1 0 0 1 0 0 1 0 0 0.885537 0.464569 0 0.6170388 0.7869327 0 0.6170388 0.7869327 0 0.885537 0.464569 0 0.99715436 0.07538733 0 0.99715436 0.07538733 0 0.9096954 0.41527617 0 0.7036222 0.7105742 0 0.7036222 0.7105742 0 0.9096954 0.41527617 0 0.99868643 0.051238623 0 1 0 + + + + + + + + + + 0 0.529066 0.0909091 0.529066 0 0.531777 0.0909091 0.531777 0 0.526291 0.0909091 0.526291 0 0.527542 0.0909091 0.527542 0 0.522927 0.0909091 0.522927 0 0.524768 0.0909091 0.524768 0 0.520062 0.0909091 0.520062 0 0.521484 0.0909091 0.521484 0 0.468223 0.0909091 0.468223 0 0.518619 0.0909091 0.518619 0 0.528229 0.0909091 0.528229 0 0.525605 0.0909091 0.525605 0 0.522112 0.0909091 0.522112 0 0.519434 0.0909091 0.519434 0.909091 0.468223 1 0.468223 0.909091 0.518619 1 0.518619 0.909091 0.519434 1 0.519434 0.909091 0.520062 1 0.520062 0.909091 0.521484 1 0.521484 0.909091 0.522112 1 0.522112 0.909091 0.522927 1 0.522927 0.909091 0.524768 1 0.524768 0.909091 0.525605 1 0.525605 0.909091 0.526291 1 0.526291 0.909091 0.527542 1 0.527542 0.909091 0.528229 1 0.528229 0.909091 0.529066 1 0.529066 0.909091 0.531777 1 0.531777 0.818182 0.468223 0.818182 0.518619 0.818182 0.519434 0.818182 0.520062 0.818182 0.521484 0.818182 0.522112 0.818182 0.522927 0.818182 0.524768 0.818182 0.525605 0.818182 0.526291 0.818182 0.527542 0.818182 0.528229 0.818182 0.529066 0.818182 0.531777 0.727273 0.468223 0.727273 0.518619 0.727273 0.519434 0.727273 0.520062 0.727273 0.521484 0.727273 0.522112 0.727273 0.522927 0.727273 0.524768 0.727273 0.525605 0.727273 0.526291 0.727273 0.527542 0.727273 0.528229 0.727273 0.529066 0.727273 0.531777 0.636364 0.468223 0.636364 0.518619 0.636364 0.519434 0.636364 0.520062 0.636364 0.521484 0.636364 0.522112 0.636364 0.522927 0.636364 0.524768 0.636364 0.525605 0.636364 0.526291 0.636364 0.527542 0.636364 0.528229 0.636364 0.529066 0.636364 0.531777 0.545455 0.468223 0.545455 0.518619 0.545455 0.519434 0.545455 0.520062 0.545455 0.521484 0.545455 0.522112 0.545455 0.522927 0.545455 0.524768 0.545455 0.525605 0.545455 0.526291 0.545455 0.527542 0.545455 0.528229 0.545455 0.529066 0.545455 0.531777 0.454545 0.468223 0.454545 0.518619 0.454545 0.519434 0.454545 0.520062 0.454545 0.521484 0.454545 0.522112 0.454545 0.522927 0.454545 0.524768 0.454545 0.525605 0.454545 0.526291 0.454545 0.527542 0.454545 0.528229 0.454545 0.529066 0.454545 0.531777 0.363636 0.468223 0.363636 0.518619 0.363636 0.519434 0.363636 0.520062 0.363636 0.521484 0.363636 0.522112 0.363636 0.522927 0.363636 0.524768 0.363636 0.525605 0.363636 0.526291 0.363636 0.527542 0.363636 0.528229 0.363636 0.529066 0.363636 0.531777 0.272727 0.468223 0.272727 0.518619 0.272727 0.519434 0.272727 0.520062 0.272727 0.521484 0.272727 0.522112 0.272727 0.522927 0.272727 0.524768 0.272727 0.525605 0.272727 0.526291 0.272727 0.527542 0.272727 0.528229 0.272727 0.529066 0.272727 0.531777 0.181818 0.468223 0.181818 0.518619 0.181818 0.519434 0.181818 0.520062 0.181818 0.521484 0.181818 0.522112 0.181818 0.522927 0.181818 0.524768 0.181818 0.525605 0.181818 0.526291 0.181818 0.527542 0.181818 0.528229 0.181818 0.529066 0.181818 0.531777 + + + + + + + + + + + + + + +

1 2 0 1 3 2 1 0 20 1 167 3 1 20 21 1 166 167 1 21 166 20 6 21 167 166 153 6 7 21 6 5 7 6 4 5 166 152 153 166 21 165 166 165 152 21 7 165 4 22 5 153 152 139 7 164 165 7 5 164 22 23 5 22 10 23 152 138 139 152 165 151 152 151 138 165 164 151 5 23 163 5 163 164 10 11 23 10 9 11 10 8 9 139 138 125 151 164 150 151 137 138 151 150 137 164 163 150 23 11 162 23 162 163 8 24 9 125 138 124 125 124 111 138 137 124 150 163 149 150 136 137 150 149 136 163 162 149 11 9 161 11 161 162 24 25 9 24 14 25 111 124 110 111 110 97 137 136 123 137 123 124 124 123 110 149 162 148 149 135 136 149 148 135 162 161 148 9 25 160 9 160 161 14 15 25 14 13 15 14 12 13 97 110 96 97 96 83 123 136 122 123 109 110 123 122 109 110 109 96 136 135 122 148 161 147 148 134 135 148 147 134 161 160 147 25 15 159 25 159 160 12 26 13 83 96 82 83 82 69 109 122 108 109 95 96 109 108 95 96 95 82 135 134 121 135 121 122 122 121 108 147 160 146 147 133 134 147 146 133 160 159 146 15 13 158 15 158 159 26 27 13 26 18 27 69 82 68 69 68 54 95 108 94 95 81 82 95 94 81 82 81 68 121 134 120 121 107 108 121 120 107 108 107 94 134 133 120 146 159 145 146 132 133 146 145 132 159 158 145 13 27 157 13 157 158 18 19 27 18 17 19 18 16 17 54 68 52 54 52 55 81 94 80 81 67 68 81 80 67 68 67 52 107 120 106 107 93 94 107 106 93 94 93 80 133 132 119 133 119 120 120 119 106 145 158 144 145 131 132 145 144 131 158 157 144 27 19 156 27 156 157 17 154 19 55 52 53 67 80 66 67 50 52 67 66 50 52 50 53 93 106 92 93 79 80 93 92 79 80 79 66 119 132 118 119 105 106 119 118 105 106 105 92 132 131 118 144 157 143 144 130 131 144 143 130 157 156 143 154 155 19 154 140 155 19 155 156 50 51 53 50 66 48 50 48 51 79 92 78 79 65 66 79 78 65 66 65 48 105 118 104 105 91 92 105 104 91 92 91 78 131 130 117 131 117 118 118 117 104 143 156 142 143 129 130 143 142 129 156 155 142 140 141 155 140 126 141 155 141 142 51 48 49 65 78 64 65 46 48 65 64 46 48 46 49 91 104 90 91 77 78 91 90 77 78 77 64 117 130 116 117 103 104 117 116 103 104 103 90 130 129 116 126 127 141 126 112 127 142 128 129 142 141 128 141 127 128 46 47 49 46 64 44 46 44 47 77 90 76 77 63 64 77 76 63 64 63 44 103 116 102 103 89 90 103 102 89 90 89 76 112 113 127 112 98 113 129 128 115 129 115 116 116 115 102 47 44 45 63 76 62 63 42 44 63 62 42 44 42 45 89 102 88 89 75 76 89 88 75 76 75 62 127 113 114 127 114 128 128 114 115 98 99 113 98 84 99 42 43 45 42 62 40 42 40 43 102 101 88 102 115 101 115 114 101 75 61 62 75 88 74 75 74 61 62 61 40 113 99 100 113 100 114 114 100 101 84 85 99 84 70 85 43 40 41 88 87 74 88 101 87 101 100 87 61 38 40 61 74 60 61 60 38 40 38 41 99 85 86 99 86 100 100 86 87 70 71 85 70 56 71 74 73 60 74 87 73 87 86 73 38 39 41 38 60 36 38 36 39 85 71 72 85 72 86 86 72 73 56 57 71 56 28 57 60 59 36 60 73 59 73 72 59 39 36 37 71 57 58 71 58 72 72 58 59 28 30 57 28 29 30 36 34 37 36 59 34 59 58 34 57 30 32 57 32 58 58 32 34 29 31 30 37 34 35 34 32 35 31 33 30 33 32 30 33 35 32

+
+
+
+
+ + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + floorPg + + + + + + + + 0.01 -0 0 0 -0 1 -0 0.0932929 0 -0 1 1.25138 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + + + 0 -0.0932929 -1.25138 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 100 1 1 + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #floorPg_bone_id + + + + + + + + + + + + +
\ No newline at end of file diff --git a/Assets/Resources/Models/Games/Airboarder/floor_model.dae.meta b/Assets/Resources/Models/Games/Airboarder/floor_model.dae.meta new file mode 100644 index 000000000..4f6f1bc9c --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/floor_model.dae.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: ddff1c9d4886fd746bbd2b69bf51f546 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: floorMt + second: {fileID: 2100000, guid: 189d3cb852c97e347a22ac98acecf531, type: 2} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/mothership.fbx b/Assets/Resources/Models/Games/Airboarder/mothership.fbx new file mode 100644 index 000000000..73f783ca6 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/mothership.fbx differ diff --git a/Assets/Resources/Models/Games/Airboarder/mothership.fbx.meta b/Assets/Resources/Models/Games/Airboarder/mothership.fbx.meta new file mode 100644 index 000000000..f6c160f2e --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/mothership.fbx.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: 0345d64d7b0875748851d1e7f48ee346 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/mothership_model.dae b/Assets/Resources/Models/Games/Airboarder/mothership_model.dae new file mode 100644 index 000000000..d12492d6f --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/mothership_model.dae @@ -0,0 +1,195 @@ + + + + 2024-02-25T16:09:45.3842296-06:00 + 2024-02-25T16:09:45.3842416-06:00 + + + + ./airboy_board.png + + + ./airboy_body.png + + + ./airboy_face.0.png + + + ./airboy_face.1.png + + + ./airboy_face.2.png + + + ./airboy_shadow.png + + + ./block_shadow.png + + + ./dog.png + + + ./dog_sdw.png + + + ./floor.png + + + ./metal_env.png + + + ./mother_ship.png + + + ./wall_body.png + + + ./cloud01.png + + + + + + + + + + + + + mother_ship + PNG + + + + + bodyMt_surf + WRAP + WRAP + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + + 2.12675 -1.91132 0 1.53542 -1.91132 -1.53542 3.9771 -1.62587 -1.29224 2.92055 -1.62587 -2.92055 0 -1.91132 -2.12675 1.29224 -1.62587 -3.9771 0 -1.62587 -4.18177 0 -1.91132 -2.12675 -1.29224 -1.62587 -3.9771 0 -1.62587 -4.18177 -1.53542 -1.91132 -1.53542 -2.92055 -1.62587 -2.92055 -2.12675 -1.91132 0 -3.9771 -1.62587 -1.29224 -4.18177 -1.62587 0 -2.12675 -1.91132 0 -3.9771 -1.62587 1.29224 -4.18177 -1.62587 0 -1.53542 -1.91132 1.53542 -2.92055 -1.62587 2.92055 0 -1.91132 2.12675 -1.29224 -1.62587 3.9771 0 -1.62587 4.18177 1.29224 -1.62587 3.9771 1.53542 -1.91132 1.53542 2.92055 -1.62587 2.92055 3.9771 -1.62587 1.29224 4.18177 -1.62587 0 4.65647 -1.18126 -3.38312 5.47401 -1.18126 -1.77861 3.38312 -1.18126 -4.65647 1.77861 -1.18126 -5.474 0 -1.18126 -5.75571 0 -1.18126 -5.75571 -1.77861 -1.18126 -5.474 -3.38312 -1.18126 -4.65647 -4.65647 -1.18126 -3.38312 -5.474 -1.18126 -1.77861 -5.75571 -1.18126 0 -5.75571 -1.18126 0 -5.474 -1.18126 1.77861 -4.65647 -1.18126 3.38312 -3.38312 -1.18126 4.65647 -1.77861 -1.18126 5.474 0 -1.18126 5.75571 1.77861 -1.18126 5.474 3.38312 -1.18126 4.65646 4.65646 -1.18126 3.38312 5.474 -1.18126 1.77861 5.75571 -1.18126 0 6.43508 -0.621026 -2.09088 5.47401 -0.621026 -3.9771 3.9771 -0.621026 -5.47401 2.09088 -0.621026 -6.43508 0 -0.621026 -6.76624 0 -0.621026 -6.76624 -2.09088 -0.621026 -6.43508 -3.9771 -0.621026 -5.474 -5.474 -0.621026 -3.9771 -6.43508 -0.621026 -2.09088 -6.76624 -0.621026 0 -6.76624 -0.621026 0 -6.43508 -0.621026 2.09088 -5.474 -0.621026 3.9771 -3.9771 -0.621026 5.474 -2.09088 -0.621026 6.43508 0 -0.621026 6.76624 2.09088 -0.621026 6.43508 3.9771 -0.621026 5.474 5.474 -0.621026 3.9771 6.43508 -0.621026 2.09088 6.76624 -0.621026 0 6.76624 0 -2.19849 5.75571 0 -4.18177 4.18177 0 -5.75571 2.19849 0 -6.76624 0 0 -7.11445 0 0 -7.11445 -2.19849 0 -6.76624 -4.18177 0 -5.75571 -5.75571 0 -4.18177 -6.76624 0 -2.19848 -7.11445 0 0 -7.11445 0 0 -6.76624 0 2.19848 -5.75571 0 4.18177 -4.18177 0 5.75571 -2.19848 0 6.76624 0 0 7.11445 2.19848 0 6.76624 4.18177 0 5.75571 5.75571 0 4.18177 6.76624 0 2.19848 7.11444 0 0 6.43508 0.621027 -2.09088 5.47401 0.621027 -3.9771 3.9771 0.621027 -5.47401 2.09088 0.621027 -6.43508 0 0.621027 -6.76624 0 0.621027 -6.76624 -2.09088 0.621027 -6.43508 -3.9771 0.621027 -5.474 -5.474 0.621027 -3.9771 -6.43508 0.621027 -2.09088 -6.76624 0.621027 0 -6.76624 0.621027 0 -6.43508 0.621027 2.09088 -5.474 0.621027 3.9771 -3.9771 0.621027 5.474 -2.09088 0.621027 6.43508 0 0.621027 6.76624 2.09088 0.621027 6.43508 3.9771 0.621027 5.474 5.474 0.621027 3.9771 6.43508 0.621027 2.09088 6.76624 0.621027 0 5.47401 1.18126 -1.77861 4.65647 1.18126 -3.38312 3.38312 1.18126 -4.65647 1.77861 1.18126 -5.474 0 1.18126 -5.75571 0 1.18126 -5.75571 -1.77861 1.18126 -5.474 -3.38312 1.18126 -4.65647 -4.65647 1.18126 -3.38312 -5.474 1.18126 -1.77861 -5.75571 1.18126 0 -5.75571 1.18126 0 -5.474 1.18126 1.77861 -4.65647 1.18126 3.38312 -3.38312 1.18126 4.65647 -1.77861 1.18126 5.474 0 1.18126 5.75571 1.77861 1.18126 5.474 3.38312 1.18126 4.65646 4.65646 1.18126 3.38312 5.474 1.18126 1.77861 5.75571 1.18126 0 0 -2.00968 0 0 -2.00968 0 + + + + + + + + + + 0.10454996 -0.99451965 0 0.080529794 -0.99349385 -0.08052969 0.19535293 -0.97766566 -0.07750537 0.136356 -0.981231 -0.136356 0 -0.99451965 -0.10454996 0.07750547 -0.97766566 -0.19535293 0 -0.9728675 -0.2313631 0 -0.99451965 -0.10454996 -0.07750556 -0.9776654 -0.19535388 0 -0.9728675 -0.2313631 -0.080529794 -0.99349385 -0.080529794 -0.136356 -0.981231 -0.136356 -0.10454996 -0.99451965 0 -0.19535293 -0.97766566 -0.07750557 -0.2313629 -0.97286755 0 -0.10454996 -0.99451965 0 -0.19535293 -0.97766566 0.07750557 -0.2313629 -0.97286755 0 -0.080529794 -0.99349385 0.080529794 -0.136356 -0.981231 0.136356 0 -0.99451965 0.10454996 -0.07750556 -0.9776654 0.19535388 0 -0.97286755 0.2313629 0.077505656 -0.9776654 0.19535388 0.080529794 -0.99349385 0.080529794 0.136356 -0.981231 0.136356 0.19535388 -0.9776654 0.077505656 0.2313629 -0.97286755 0 0.31106195 -0.92484874 -0.21884994 0.35370907 -0.9274632 -0.12125202 0.21884994 -0.92484874 -0.31106195 0.12125202 -0.9274632 -0.35370907 0 -0.92309844 -0.38456377 0 -0.92309844 -0.38456377 -0.121253006 -0.92746305 -0.35370904 -0.21884994 -0.92484874 -0.31106195 -0.31106195 -0.92484874 -0.21884994 -0.35370904 -0.92746305 -0.121253006 -0.38456377 -0.92309844 0 -0.38456377 -0.92309844 0 -0.35370904 -0.92746305 0.121253006 -0.31106186 -0.92484856 0.2188509 -0.2188509 -0.92484856 0.31106186 -0.121253006 -0.92746305 0.35370904 0 -0.9230983 0.38456413 0.12125297 -0.92746276 0.3537099 0.2188509 -0.92484856 0.31106186 0.31106186 -0.92484856 0.2188509 0.35370904 -0.92746305 0.121253006 0.38456377 -0.92309844 0 0.6474298 -0.73251784 -0.21036196 0.55073667 -0.7325176 -0.40013376 0.40013382 -0.73251766 -0.5507368 0.21036293 -0.7325178 -0.64742976 0 -0.73251784 -0.6807478 0 -0.73251784 -0.6807478 -0.21036293 -0.7325178 -0.64742976 -0.40013382 -0.73251766 -0.5507368 -0.55073667 -0.7325176 -0.40013376 -0.64742976 -0.7325178 -0.21036293 -0.68074834 -0.7325174 0 -0.68074834 -0.7325174 0 -0.64743024 -0.73251724 0.21036308 -0.55073714 -0.7325172 0.4001341 -0.40013406 -0.7325171 0.55073714 -0.21036308 -0.73251724 0.64743024 0 -0.7325174 0.68074834 0.21036308 -0.73251724 0.64743024 0.40013406 -0.7325171 0.55073714 0.55073714 -0.7325172 0.4001341 0.64743024 -0.73251724 0.21036308 0.68074834 -0.7325174 0 0.9510569 0 -0.30901596 0.8090171 0 -0.58778507 0.58778507 0 -0.8090171 0.30901685 0 -0.95105654 0 0 -1 0 0 -1 -0.30901685 0 -0.95105654 -0.58778507 0 -0.8090171 -0.8090171 0 -0.58778507 -0.95105654 0 -0.30901685 -1 0 0 -1 0 0 -0.95105654 0 0.30901685 -0.8090171 0 0.58778507 -0.58778507 0 0.8090171 -0.30901685 0 0.95105654 0 0 1 0.30901685 0 0.95105654 0.58778507 0 0.8090171 0.8090171 0 0.58778507 0.95105654 0 0.30901685 1 0 0 0.64743036 0.7325174 -0.21036212 0.55073714 0.7325172 -0.4001341 0.40013406 0.7325171 -0.55073714 0.21036308 0.73251724 -0.64743024 0 0.7325174 -0.68074834 0 0.7325174 -0.68074834 -0.21036308 0.73251724 -0.64743024 -0.40013406 0.7325171 -0.55073714 -0.55073714 0.7325172 -0.4001341 -0.64743024 0.73251724 -0.21036308 -0.68074834 0.7325174 0 -0.68074834 0.7325174 0 -0.64743024 0.73251724 0.21036308 -0.55073714 0.7325172 0.4001341 -0.40013406 0.7325171 0.55073714 -0.21036308 0.73251724 0.64743024 0 0.73251694 0.68074894 0.21036308 0.73251724 0.64743024 0.40013406 0.7325171 0.55073714 0.55073714 0.7325172 0.4001341 0.64743024 0.73251724 0.21036308 0.68074834 0.7325174 0 0.46113595 0.8745879 -0.14983198 0.39226586 0.8745877 -0.2849979 0.2849979 0.8745877 -0.39226586 0.14983198 0.8745879 -0.46113595 0 0.8745879 -0.48486695 0 0.8745879 -0.48486695 -0.14983198 0.8745879 -0.46113595 -0.28499803 0.8745881 -0.39226502 -0.39226586 0.8745877 -0.2849979 -0.46113595 0.8745879 -0.14983198 -0.48486695 0.8745879 0 -0.48486695 0.8745879 0 -0.46113595 0.8745879 0.14983198 -0.39226586 0.8745877 0.2849979 -0.2849979 0.8745877 0.39226586 -0.14983198 0.8745879 0.46113595 0 0.8745879 0.48486695 0.14983198 0.8745879 0.46113595 0.2849979 0.8745877 0.39226586 0.39226586 0.8745877 0.2849979 0.46113595 0.8745879 0.14983198 0.48486695 0.8745879 0 0 -1 0 0 -1 0 + + + + + + + + + + 0.701066 0.017464 0.784182 0.215818 0.440983 0.181636 0.58949 0.41051 0.993016 0.301455 0.818364 0.559017 1 0.587785 1.98492 0.307558 1.8157 0.56512 1.99734 0.593888 1.78152 0.221921 1.58683 0.416613 1.69588 0.0185219 1.43832 0.187739 1.40955 0.00610328 0.698545 0.00154886 0.440983 0.181636 0.412215 0 0.784182 0.215818 0.58949 0.41051 0.993016 0.301455 0.818364 0.559017 1 0.587785 0.818364 0.559017 0.784182 0.215818 0.58949 0.41051 0.440983 0.181636 0.412215 0 0.345491 0.475528 0.230579 0.25 0.524471 0.654509 0.75 0.769421 1 0.809017 1.99734 0.81512 1.74734 0.775524 1.52181 0.660611 1.34283 0.481631 1.22792 0.256103 1.18832 0.00610328 0.190983 0 0.230579 0.25 0.345491 0.475528 0.524471 0.654509 0.75 0.769421 1 0.809017 0.75 0.769421 0.524471 0.654509 0.345491 0.475528 0.230579 0.25 0.190983 0 0.0954911 0.293893 0.230579 0.559017 0.440983 0.769421 0.706107 0.904509 1 0.951056 1.99734 0.95716 1.70345 0.910612 1.43832 0.775524 1.22792 0.56512 1.09283 0.299996 1.04628 0.00610316 0.0489435 0 0.0954911 0.293893 0.230579 0.559017 0.440983 0.769421 0.706107 0.904509 1 0.951056 0.706107 0.904509 0.440983 0.769421 0.230579 0.559017 0.0954911 0.293893 0.0489435 0 0.0489429 0.309017 0.190982 0.587785 0.412214 0.809017 0.690983 0.951056 1 1 1.99734 1.0061 1.68832 0.95716 1.40955 0.81512 1.18832 0.593888 1.04628 0.31512 0.997339 0.00610316 0 0 0.0489429 0.309017 0.190982 0.587785 0.412214 0.809017 0.690983 0.951056 1 1 0.690983 0.951056 0.412214 0.809017 0.190982 0.587785 0.0489429 0.309017 0 0 0.0954911 0.293893 0.230579 0.559017 0.440983 0.769421 0.706107 0.904509 1 0.951056 1.99734 0.95716 1.70345 0.910612 1.43832 0.775524 1.22792 0.56512 1.09283 0.299996 1.04628 0.00610316 0.0489435 0 0.0954911 0.293893 0.230579 0.559017 0.440983 0.769421 0.706107 0.904509 1 0.951056 0.706107 0.904509 0.440983 0.769421 0.230579 0.559017 0.0954911 0.293893 0.0489435 0 0.230579 0.25 0.345491 0.475528 0.524471 0.654509 0.75 0.769421 1 0.809017 1.99734 0.81512 1.74734 0.775524 1.52181 0.660611 1.34283 0.481631 1.22792 0.256103 1.18832 0.00610328 0.190983 0 0.230579 0.25 0.345491 0.475528 0.524471 0.654509 0.75 0.769421 1 0.809017 0.75 0.769421 0.524471 0.654509 0.345491 0.475528 0.230579 0.25 0.190983 0 1 0 1.99734 0.0061034 + + + + + + + + + + + + + + +

120 119 98 119 118 97 119 97 98 118 117 96 118 96 97 98 97 76 117 116 95 117 95 96 97 96 75 97 75 76 116 94 95 96 95 74 96 74 75 76 75 54 116 137 94 95 94 73 95 73 74 75 74 53 75 53 54 137 136 115 137 115 94 73 72 51 94 115 72 94 72 73 74 73 52 73 51 52 74 52 53 54 53 32 136 135 114 136 114 115 72 50 51 52 51 30 53 52 31 52 30 31 53 31 32 135 134 113 135 113 114 115 114 93 72 93 50 72 115 93 51 50 28 51 28 30 31 30 5 32 31 6 31 5 6 134 133 112 134 112 113 114 113 92 114 92 93 50 29 28 30 28 3 30 3 5 6 5 4 133 132 111 133 111 112 113 112 91 113 91 92 93 92 71 50 71 29 50 93 71 28 2 3 28 29 2 5 1 4 3 2 1 3 1 5 132 131 110 132 110 111 112 111 90 112 90 91 92 91 70 92 70 71 29 49 2 71 70 49 71 49 29 4 1 138 131 130 109 131 109 110 111 110 89 111 89 90 91 90 69 91 69 70 2 0 1 1 0 138 49 48 27 49 70 48 2 27 0 2 49 27 70 69 48 130 129 108 130 108 109 110 109 88 110 88 89 90 89 68 90 68 69 138 18 15 0 26 24 0 27 26 27 48 26 0 24 138 129 128 107 129 107 108 109 108 87 109 87 88 89 88 67 89 67 68 69 68 47 48 47 26 48 69 47 18 16 15 24 23 20 138 20 18 138 24 20 128 127 106 128 106 107 108 107 86 108 86 87 88 87 66 88 66 67 68 67 46 68 46 47 26 25 24 25 23 24 25 46 23 25 47 46 47 25 26 16 17 15 18 19 16 20 21 18 18 21 19 127 105 106 107 106 85 107 85 86 87 86 65 87 65 66 67 66 45 46 45 23 46 67 45 17 16 39 20 22 21 20 23 22 19 41 16 105 83 84 106 105 84 106 84 85 86 85 64 86 64 65 66 65 44 23 45 44 45 66 44 23 44 22 39 16 40 16 41 40 21 42 19 19 42 41 83 61 62 40 61 39 40 41 62 40 62 61 83 62 84 85 84 63 63 42 64 63 62 41 63 64 85 63 84 62 63 41 42 65 64 43 43 22 44 43 42 21 43 44 65 43 64 42 43 21 22 126 125 104 125 124 103 125 103 104 124 123 102 124 102 103 104 103 82 123 122 101 123 101 102 103 102 81 103 81 82 122 121 100 122 100 101 102 101 80 102 80 81 82 81 60 121 99 100 101 100 79 101 79 80 81 80 59 81 59 60 99 77 78 100 99 78 100 78 79 80 79 58 80 58 59 60 59 38 77 55 56 77 56 78 79 78 57 78 56 57 79 57 58 59 58 37 59 37 38 55 33 34 55 34 56 57 56 35 56 34 35 58 57 36 57 35 36 58 36 37 38 37 14 33 9 8 34 33 8 34 8 35 36 35 11 35 8 11 37 36 13 36 11 13 37 13 14 9 7 8 11 8 10 8 7 10 11 10 13 14 13 12 13 10 12 7 139 10 10 139 12

+
+
+
+
+ + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + mothershipPg + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + + + 0 0 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #mothershipPg_bone_id + + + + + + + + + + + + +
\ No newline at end of file diff --git a/Assets/Resources/Models/Games/Airboarder/mothership_model.dae.meta b/Assets/Resources/Models/Games/Airboarder/mothership_model.dae.meta new file mode 100644 index 000000000..7bdf0440c --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/mothership_model.dae.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: 0fda9d12bd084a047aa0dd724e70fc36 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/neo_airboy.fbx b/Assets/Resources/Models/Games/Airboarder/neo_airboy.fbx new file mode 100644 index 000000000..327b7c362 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/neo_airboy.fbx differ diff --git a/Assets/Resources/Models/Games/Airboarder/neo_airboy.fbx.meta b/Assets/Resources/Models/Games/Airboarder/neo_airboy.fbx.meta new file mode 100644 index 000000000..40955606e --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/neo_airboy.fbx.meta @@ -0,0 +1,271 @@ +fileFormatVersion: 2 +guid: 333100bf553a5924d870acafacb4f53a +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: airboy_board + second: {fileID: 2100000, guid: 18236ab917d571548b689dbcdf081b2e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: airboy_body + second: {fileID: 2100000, guid: d173bed14b93ec9489e590a1c0b3831e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: airboy_face.0 + second: {fileID: 2100000, guid: 87659f38f7545534ca0e91a913b69fbc, type: 2} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: + - name: neo_airboy(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: airboy_model + parentName: neo_airboy(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + scale: {x: 100, y: 100, z: 100} + - name: airboy_model_skeleton + parentName: neo_airboy(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + scale: {x: 100, y: 100, z: 100} + - name: airboy + parentName: airboy_model_skeleton + position: {x: 0, y: -5.9604643e-10, z: 0.0047615133} + rotation: {x: 0.6252786, y: -0.18935074, z: -0.056728657, w: 0.7549536} + scale: {x: 1, y: 1, z: 1} + - name: Skl_Root + parentName: airboy + position: {x: -0.0000143014295, y: 0.0017634439, z: -0.00065276027} + rotation: {x: 0, y: 0, z: -0.7071081, w: 0.7071055} + scale: {x: 1, y: 1, z: 1} + - name: Leg_1_L + parentName: Skl_Root + position: {x: 0.00023749859, y: -0.0012651699, z: 0.00024293795} + rotation: {x: -0.0701334, y: 0.021923741, z: 0.5820632, w: 0.8098168} + scale: {x: 1, y: 1, z: 1} + - name: Leg_2_L + parentName: Leg_1_L + position: {x: 0.000021828784, y: -0.00299883, z: -0.000053091644} + rotation: {x: 0.3738204, y: -0.15457922, z: -0.0067697144, w: 0.9145042} + scale: {x: 0.9999999, y: 0.99999994, z: 0.99999994} + - name: Ankle_L + parentName: Leg_2_L + position: {x: -0.000019310237, y: -0.0025961706, z: 0.00038391133} + rotation: {x: 0.44290522, y: 0.695263, z: 0.38431135, w: 0.4156309} + scale: {x: 1, y: 0.9999999, z: 1.0000001} + - name: Ankle_L_end + parentName: Ankle_L + position: {x: -0, y: 0.00006831873, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Leg_1_R + parentName: Skl_Root + position: {x: 0.0004820577, y: 0.0012244481, z: -0.00016237333} + rotation: {x: 0.018891929, y: 0.9935955, z: -0.11084521, w: -0.011162682} + scale: {x: 1, y: 0.99999994, z: 0.99999994} + - name: Leg_2_R + parentName: Leg_1_R + position: {x: -0.0029990696, y: -0.00000016089528, z: 0.000054637192} + rotation: {x: 0.84910434, y: -0.022140535, z: 0.5240824, w: -0.062203437} + scale: {x: 0.9999999, y: 0.9999999, z: 0.99999994} + - name: Ankle_R + parentName: Leg_2_R + position: {x: 0.00035560734, y: 0.00003682382, z: -0.0025999998} + rotation: {x: -0.41944757, y: 0.53825307, z: 0.66963845, w: 0.2931412} + scale: {x: 1, y: 0.99999994, z: 1} + - name: Ankle_R_end + parentName: Ankle_R + position: {x: -0, y: 0.0000683188, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Waist + parentName: Skl_Root + position: {x: -0.000011850246, y: -1.0635972e-10, z: -0.00006796107} + rotation: {x: -0.081661806, y: -0.025835225, z: -0.046427183, w: 0.9952429} + scale: {x: 1, y: 0.99999994, z: 1} + - name: Spine + parentName: Waist + position: {x: -0.00285833, y: 4.6566126e-11, z: -0.00014242729} + rotation: {x: -0.19188948, y: 0.3852869, z: -0.053714685, w: 0.90102565} + scale: {x: 1, y: 0.99999994, z: 1} + - name: Arm_1_L + parentName: Spine + position: {x: -0.0014556204, y: -0.0014599604, z: -0.00012458261} + rotation: {x: -0.28129122, y: -0.44526345, z: 0.59765553, w: 0.6045028} + scale: {x: 1.0000001, y: 1, z: 1} + - name: Arm_2_L + parentName: Arm_1_L + position: {x: -0.0027749697, y: 0.00000016977778, z: -0.000005434118} + rotation: {x: -0.009569032, y: 0.04283372, z: -0.008593103, w: 0.9989995} + scale: {x: 1, y: 1.0000001, z: 0.99999994} + - name: Wrist_L + parentName: Arm_2_L + position: {x: -0.0020982707, y: -0.00000016995705, z: 0.000005434453} + rotation: {x: 0.0015187274, y: -0.34756982, z: 0.57559866, w: 0.7401886} + scale: {x: 1, y: 1, z: 1} + - name: Wrist_L_end + parentName: Wrist_L + position: {x: -0, y: 0.00006831884, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Arm_1_R + parentName: Spine + position: {x: -0.0014555797, y: 0.0014553501, z: -0.00012458238} + rotation: {x: -0.091404326, y: -0.2838889, z: 0.65810406, w: 0.6913403} + scale: {x: 1, y: 1, z: 1} + - name: Arm_2_R + parentName: Arm_1_R + position: {x: 0.00279524, y: 7.4505804e-11, z: 7.4505804e-11} + rotation: {x: -0.021586465, y: 0.0049736337, z: 0.035006884, w: 0.9991416} + scale: {x: 1, y: 1, z: 0.99999994} + - name: Wrist_R + parentName: Arm_2_R + position: {x: 0.00200266, y: -2.4214386e-10, z: 3.9115547e-10} + rotation: {x: 0.0020077813, y: 0.03459511, z: -0.6778131, w: 0.73441714} + scale: {x: 0.99999994, y: 0.9999999, z: 1} + - name: Wrist_R_end + parentName: Wrist_R + position: {x: -0, y: 0.00006831884, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Head + parentName: Spine + position: {x: -0.00273719, y: -2.4214386e-10, z: -0.00019367904} + rotation: {x: -0.22803612, y: -0.3707989, z: -0.1509692, w: 0.88753366} + scale: {x: 1, y: 0.99999994, z: 1} + - name: Head_end + parentName: Head + position: {x: -0, y: 0.0000683188, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: board_model + parentName: airboy + position: {x: -0, y: -0.001552491, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: eft_fire_L + parentName: board_model + position: {x: -0.013613599, y: -0.0010463799, z: 0.0040700096} + rotation: {x: 0, y: -0, z: -0.0000000074505797, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: eft_fire_L_end + parentName: eft_fire_L + position: {x: -0, y: 0.00006831877, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: eft_fire_R + parentName: board_model + position: {x: -0.013613599, y: -0.0010463799, z: -0.0040804893} + rotation: {x: 0, y: -0, z: -0.0000000074505797, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: eft_fire_R_end + parentName: eft_fire_R + position: {x: -0, y: 0.00006831877, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/scene.fbx b/Assets/Resources/Models/Games/Airboarder/scene.fbx new file mode 100644 index 000000000..b3325ad3a Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/scene.fbx differ diff --git a/Assets/Resources/Models/Games/Airboarder/scene.fbx.meta b/Assets/Resources/Models/Games/Airboarder/scene.fbx.meta new file mode 100644 index 000000000..259b74c2f --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/scene.fbx.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: 669fa6d6b4096764387b9cf777fbf915 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: cakeMt_mat + second: {fileID: 2100000, guid: d308d6053cbc091489ae82391d36d476, type: 2} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/wall_high.fbx b/Assets/Resources/Models/Games/Airboarder/wall_high.fbx new file mode 100644 index 000000000..4de51bb47 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/wall_high.fbx differ diff --git a/Assets/Resources/Models/Games/Airboarder/wall_high.fbx.meta b/Assets/Resources/Models/Games/Airboarder/wall_high.fbx.meta new file mode 100644 index 000000000..eff2157c9 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/wall_high.fbx.meta @@ -0,0 +1,116 @@ +fileFormatVersion: 2 +guid: 49f7ce11d95b7954a8b997bfb1effb51 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: block_shadow + second: {fileID: 2100000, guid: a8381275f858de342b6da7d85f663236, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: wall_body + second: {fileID: 4308077249516054671, guid: f6ee36b31b2f3e849b5b8dc69738ced0, type: 3} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/wall_high_merge.fbx b/Assets/Resources/Models/Games/Airboarder/wall_high_merge.fbx new file mode 100644 index 000000000..b82945bd8 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/wall_high_merge.fbx differ diff --git a/Assets/Resources/Models/Games/Airboarder/wall_high_merge.fbx.meta b/Assets/Resources/Models/Games/Airboarder/wall_high_merge.fbx.meta new file mode 100644 index 000000000..c155e7c8a --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/wall_high_merge.fbx.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: 444c61a5a0d19384caf4e1e2c96ec1fe +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/wall_high_model_merge.dae b/Assets/Resources/Models/Games/Airboarder/wall_high_model_merge.dae new file mode 100644 index 000000000..ea7b8a140 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/wall_high_model_merge.dae @@ -0,0 +1,317 @@ + + + + 2024-02-25T16:09:55.5230152-06:00 + 2024-02-25T16:09:55.5230233-06:00 + + + + ./airboy_board.png + + + ./airboy_body.png + + + ./airboy_face.0.png + + + ./airboy_face.1.png + + + ./airboy_face.2.png + + + ./airboy_shadow.png + + + ./block_shadow.png + + + ./dog.png + + + ./dog_sdw.png + + + ./floor.png + + + ./metal_env.png + + + ./mother_ship.png + + + ./wall_body.png + + + ./cloud01.png + + + + + + + + + + + + + + + + wall_body + PNG + + + + + blockMt_surf + WRAP + WRAP + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + block_shadow + PNG + + + + + sdwMt_surf + WRAP + WRAP + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + + -0.320008 0.03036128 0.9599919 0.320008 0.03036128 0.9599919 -0.320008 0.03036128 1.600008 0.320008 0.03036128 1.600008 0.320008 0.110353 1.68 0.320008 1.556485 1.68 -0.320008 0.110353 1.68 -0.320008 1.556485 1.68 -0.4 1.556485 1.600008 -0.4 1.556485 0.9599919 -0.4 0.110353 1.600008 -0.4 0.110353 0.9599919 0.4 0.110353 0.9599919 0.4 1.556485 0.9599919 0.4 0.110353 1.600008 0.4 1.556485 1.600008 0.320008 1.636475 1.600008 0.320008 1.636475 0.9599919 -0.320008 1.636475 1.600008 -0.320008 1.636475 0.9599919 0.320008 1.556485 0.88 0.320008 0.110353 0.88 -0.320008 1.556485 0.88 -0.320008 0.110353 0.88 -0.320008 0.03036128 1.600008 -0.4 0.110353 1.600008 -0.320008 0.03036128 0.9599919 -0.4 0.110353 0.9599919 -0.320008 0.110353 1.68 -0.320008 0.03036128 1.600008 0.320008 0.110353 1.68 0.320008 0.03036128 1.600008 -0.4 0.110353 1.600008 -0.320008 0.110353 1.68 -0.4 1.556485 1.600008 -0.320008 1.556485 1.68 0.4 0.110353 1.600008 0.320008 0.03036128 1.600008 0.4 0.110353 0.9599919 0.320008 0.03036128 0.9599919 0.320008 0.110353 1.68 0.4 0.110353 1.600008 0.320008 1.556485 1.68 0.4 1.556485 1.600008 -0.4 1.556485 1.600008 -0.320008 1.636475 1.600008 -0.4 1.556485 0.9599919 -0.320008 1.636475 0.9599919 -0.320008 1.636475 1.600008 -0.320008 1.556485 1.68 0.320008 1.636475 1.600008 0.320008 1.556485 1.68 0.320008 1.636475 1.600008 0.4 1.556485 1.600008 0.320008 1.636475 0.9599919 0.4 1.556485 0.9599919 -0.4 1.556485 0.9599919 -0.320008 1.556485 0.88 -0.4 0.110353 0.9599919 -0.320008 0.110353 0.88 -0.320008 1.556485 0.88 -0.320008 1.636475 0.9599919 0.320008 1.556485 0.88 0.320008 1.636475 0.9599919 0.320008 1.556485 0.88 0.4 1.556485 0.9599919 0.320008 0.110353 0.88 0.4 0.110353 0.9599919 -0.320008 0.03036128 0.9599919 -0.320008 0.110353 0.88 0.320008 0.03036128 0.9599919 0.320008 0.110353 0.88 -0.4 0.110353 1.600008 -0.320008 0.03036128 1.600008 -0.320008 0.110353 1.68 0.320008 0.03036128 1.600008 0.4 0.110353 1.600008 0.320008 0.110353 1.68 -0.320008 1.636475 1.600008 -0.4 1.556485 1.600008 -0.320008 1.556485 1.68 0.4 1.556485 1.600008 0.320008 1.636475 1.600008 0.320008 1.556485 1.68 -0.320008 1.556485 0.88 -0.4 1.556485 0.9599919 -0.320008 1.636475 0.9599919 0.4 1.556485 0.9599919 0.320008 1.556485 0.88 0.320008 1.636475 0.9599919 -0.320008 0.03036128 0.9599919 -0.4 0.110353 0.9599919 -0.320008 0.110353 0.88 0.4 0.110353 0.9599919 0.320008 0.03036128 0.9599919 0.320008 0.110353 0.88 -0.320008 0.04704138 -1.600008 0.320008 0.04704138 -1.600008 -0.320008 0.04704138 -0.9599919 0.320008 0.04704138 -0.9599919 0.320008 0.127033 -0.88 0.320008 1.556485 -0.88 -0.320008 0.127033 -0.88 -0.320008 1.556485 -0.88 -0.4 1.556485 -0.9599919 -0.4 1.556485 -1.600008 -0.4 0.127033 -0.9599919 -0.4 0.127033 -1.600008 0.4 0.127033 -1.600008 0.4 1.556485 -1.600008 0.4 0.127033 -0.9599919 0.4 1.556485 -0.9599919 0.320008 1.636475 -0.9599919 0.320008 1.636475 -1.600008 -0.320008 1.636475 -0.9599919 -0.320008 1.636475 -1.600008 0.320008 1.556485 -1.68 0.320008 0.127033 -1.68 -0.320008 1.556485 -1.68 -0.320008 0.127033 -1.68 -0.320008 0.04704138 -0.9599919 -0.4 0.127033 -0.9599919 -0.320008 0.04704138 -1.600008 -0.4 0.127033 -1.600008 -0.320008 0.127033 -0.88 -0.320008 0.04704138 -0.9599919 0.320008 0.127033 -0.88 0.320008 0.04704138 -0.9599919 -0.4 0.127033 -0.9599919 -0.320008 0.127033 -0.88 -0.4 1.556485 -0.9599919 -0.320008 1.556485 -0.88 0.4 0.127033 -0.9599919 0.320008 0.04704138 -0.9599919 0.4 0.127033 -1.600008 0.320008 0.04704138 -1.600008 0.320008 0.127033 -0.88 0.4 0.127033 -0.9599919 0.320008 1.556485 -0.88 0.4 1.556485 -0.9599919 -0.4 1.556485 -0.9599919 -0.320008 1.636475 -0.9599919 -0.4 1.556485 -1.600008 -0.320008 1.636475 -1.600008 -0.320008 1.636475 -0.9599919 -0.320008 1.556485 -0.88 0.320008 1.636475 -0.9599919 0.320008 1.556485 -0.88 0.320008 1.636475 -0.9599919 0.4 1.556485 -0.9599919 0.320008 1.636475 -1.600008 0.4 1.556485 -1.600008 -0.4 1.556485 -1.600008 -0.320008 1.556485 -1.68 -0.4 0.127033 -1.600008 -0.320008 0.127033 -1.68 -0.320008 1.556485 -1.68 -0.320008 1.636475 -1.600008 0.320008 1.556485 -1.68 0.320008 1.636475 -1.600008 0.320008 1.556485 -1.68 0.4 1.556485 -1.600008 0.320008 0.127033 -1.68 0.4 0.127033 -1.600008 -0.320008 0.04704138 -1.600008 -0.320008 0.127033 -1.68 0.320008 0.04704138 -1.600008 0.320008 0.127033 -1.68 -0.4 0.127033 -0.9599919 -0.320008 0.04704138 -0.9599919 -0.320008 0.127033 -0.88 0.320008 0.04704138 -0.9599919 0.4 0.127033 -0.9599919 0.320008 0.127033 -0.88 -0.320008 1.636475 -0.9599919 -0.4 1.556485 -0.9599919 -0.320008 1.556485 -0.88 0.4 1.556485 -0.9599919 0.320008 1.636475 -0.9599919 0.320008 1.556485 -0.88 -0.320008 1.556485 -1.68 -0.4 1.556485 -1.600008 -0.320008 1.636475 -1.600008 0.4 1.556485 -1.600008 0.320008 1.556485 -1.68 0.320008 1.636475 -1.600008 -0.320008 0.04704138 -1.600008 -0.4 0.127033 -1.600008 -0.320008 0.127033 -1.68 0.4 0.127033 -1.600008 0.320008 0.04704138 -1.600008 0.320008 0.127033 -1.68 -0.426265 2.352748 -1.514881 0.213751 2.352748 -1.514881 -0.426265 1.712732 -1.514881 0.213751 1.712732 -1.514881 0.213751 1.63274 -1.434891 0.213751 1.63274 1.051209 -0.426265 1.63274 -1.434891 -0.426265 1.63274 1.051209 -0.506257 1.712732 1.051209 -0.506257 2.352748 1.051209 -0.506257 1.712732 -1.434891 -0.506257 2.352748 -1.434891 0.293743 2.352748 -1.434891 0.293743 2.352748 1.051209 0.293743 1.712732 -1.434891 0.293743 1.712732 1.051209 0.213751 1.712732 1.131199 0.213751 2.352748 1.131199 -0.426265 1.712732 1.131199 -0.426265 2.352748 1.131199 0.213751 2.43274 1.051209 0.213751 2.43274 -1.434891 -0.426265 2.43274 1.051209 -0.426265 2.43274 -1.434891 -0.426265 1.712732 -1.514881 -0.506257 1.712732 -1.434891 -0.426265 2.352748 -1.514881 -0.506257 2.352748 -1.434891 -0.426265 1.63274 -1.434891 -0.426265 1.712732 -1.514881 0.213751 1.63274 -1.434891 0.213751 1.712732 -1.514881 -0.506257 1.712732 -1.434891 -0.426265 1.63274 -1.434891 -0.506257 1.712732 1.051209 -0.426265 1.63274 1.051209 0.293743 1.712732 -1.434891 0.213751 1.712732 -1.514881 0.293743 2.352748 -1.434891 0.213751 2.352748 -1.514881 0.213751 1.63274 -1.434891 0.293743 1.712732 -1.434891 0.213751 1.63274 1.051209 0.293743 1.712732 1.051209 -0.506257 1.712732 1.051209 -0.426265 1.712732 1.131199 -0.506257 2.352748 1.051209 -0.426265 2.352748 1.131199 -0.426265 1.712732 1.131199 -0.426265 1.63274 1.051209 0.213751 1.712732 1.131199 0.213751 1.63274 1.051209 0.213751 1.712732 1.131199 0.293743 1.712732 1.051209 0.213751 2.352748 1.131199 0.293743 2.352748 1.051209 -0.506257 2.352748 1.051209 -0.426265 2.43274 1.051209 -0.506257 2.352748 -1.434891 -0.426265 2.43274 -1.434891 -0.426265 2.43274 1.051209 -0.426265 2.352748 1.131199 0.213751 2.43274 1.051209 0.213751 2.352748 1.131199 0.213751 2.43274 1.051209 0.293743 2.352748 1.051209 0.213751 2.43274 -1.434891 0.293743 2.352748 -1.434891 -0.426265 2.352748 -1.514881 -0.426265 2.43274 -1.434891 0.213751 2.352748 -1.514881 0.213751 2.43274 -1.434891 -0.506257 1.712732 -1.434891 -0.426265 1.712732 -1.514881 -0.426265 1.63274 -1.434891 0.213751 1.712732 -1.514881 0.293743 1.712732 -1.434891 0.213751 1.63274 -1.434891 -0.426265 1.712732 1.131199 -0.506257 1.712732 1.051209 -0.426265 1.63274 1.051209 0.293743 1.712732 1.051209 0.213751 1.712732 1.131199 0.213751 1.63274 1.051209 -0.426265 2.43274 1.051209 -0.506257 2.352748 1.051209 -0.426265 2.352748 1.131199 0.293743 2.352748 1.051209 0.213751 2.43274 1.051209 0.213751 2.352748 1.131199 -0.426265 2.352748 -1.514881 -0.506257 2.352748 -1.434891 -0.426265 2.43274 -1.434891 0.293743 2.352748 -1.434891 0.213751 2.352748 -1.514881 0.213751 2.43274 -1.434891 -0.335858 1.635823 1.212811 0.335858 1.635823 1.212811 -0.335858 1.635823 1.726009 0.335858 1.635823 1.726009 0.335858 1.699965 1.790151 0.335858 3.12855 1.790151 -0.335858 1.699965 1.790151 -0.335858 3.12855 1.790151 -0.4 3.12855 1.726009 -0.4 3.12855 1.212811 -0.4 1.699965 1.726009 -0.4 1.699965 1.212811 0.4 1.699965 1.212811 0.4 3.12855 1.212811 0.4 1.699965 1.726009 0.4 3.12855 1.726009 0.335858 3.1927 1.726009 0.335858 3.1927 1.212811 -0.335858 3.1927 1.726009 -0.335858 3.1927 1.212811 0.335858 3.12855 1.148669 0.335858 1.699965 1.148669 -0.335858 3.12855 1.148669 -0.335858 1.699965 1.148669 -0.335858 1.635823 1.726009 -0.4 1.699965 1.726009 -0.335858 1.635823 1.212811 -0.4 1.699965 1.212811 -0.335858 1.699965 1.790151 -0.335858 1.635823 1.726009 0.335858 1.699965 1.790151 0.335858 1.635823 1.726009 -0.4 1.699965 1.726009 -0.335858 1.699965 1.790151 -0.4 3.12855 1.726009 -0.335858 3.12855 1.790151 0.4 1.699965 1.726009 0.335858 1.635823 1.726009 0.4 1.699965 1.212811 0.335858 1.635823 1.212811 0.335858 1.699965 1.790151 0.4 1.699965 1.726009 0.335858 3.12855 1.790151 0.4 3.12855 1.726009 -0.4 3.12855 1.726009 -0.335858 3.1927 1.726009 -0.4 3.12855 1.212811 -0.335858 3.1927 1.212811 -0.335858 3.1927 1.726009 -0.335858 3.12855 1.790151 0.335858 3.1927 1.726009 0.335858 3.12855 1.790151 0.335858 3.1927 1.726009 0.4 3.12855 1.726009 0.335858 3.1927 1.212811 0.4 3.12855 1.212811 -0.4 3.12855 1.212811 -0.335858 3.12855 1.148669 -0.4 1.699965 1.212811 -0.335858 1.699965 1.148669 -0.335858 3.12855 1.148669 -0.335858 3.1927 1.212811 0.335858 3.12855 1.148669 0.335858 3.1927 1.212811 0.335858 3.12855 1.148669 0.4 3.12855 1.212811 0.335858 1.699965 1.148669 0.4 1.699965 1.212811 -0.335858 1.635823 1.212811 -0.335858 1.699965 1.148669 0.335858 1.635823 1.212811 0.335858 1.699965 1.148669 -0.4 1.699965 1.726009 -0.335858 1.635823 1.726009 -0.335858 1.699965 1.790151 0.335858 1.635823 1.726009 0.4 1.699965 1.726009 0.335858 1.699965 1.790151 -0.335858 3.1927 1.726009 -0.4 3.12855 1.726009 -0.335858 3.12855 1.790151 0.4 3.12855 1.726009 0.335858 3.1927 1.726009 0.335858 3.12855 1.790151 -0.335858 3.12855 1.148669 -0.4 3.12855 1.212811 -0.335858 3.1927 1.212811 0.4 3.12855 1.212811 0.335858 3.12855 1.148669 0.335858 3.1927 1.212811 -0.335858 1.635823 1.212811 -0.4 1.699965 1.212811 -0.335858 1.699965 1.148669 0.4 1.699965 1.212811 0.335858 1.635823 1.212811 0.335858 1.699965 1.148669 -0.320008 2.445256 -0.041419 0.320008 2.445256 -0.041419 -0.320008 2.445256 0.709637 0.320008 2.445256 0.709637 0.320008 2.525248 0.789629 0.320008 3.253912 0.789629 -0.320008 2.525248 0.789629 -0.320008 3.253912 0.789629 -0.4 3.253912 0.709637 -0.4 3.253912 -0.041419 -0.4 2.525248 0.709637 -0.4 2.525248 -0.041419 0.4 2.525248 -0.041419 0.4 3.253912 -0.041419 0.4 2.525248 0.709637 0.4 3.253912 0.709637 0.320008 3.333904 0.709637 0.320008 3.333904 -0.041419 -0.320008 3.333904 0.709637 -0.320008 3.333904 -0.041419 0.320008 3.253912 -0.121411 0.320008 2.525248 -0.121411 -0.320008 3.253912 -0.121411 -0.320008 2.525248 -0.121411 -0.320008 2.445256 0.709637 -0.4 2.525248 0.709637 -0.320008 2.445256 -0.041419 -0.4 2.525248 -0.041419 -0.320008 2.525248 0.789629 -0.320008 2.445256 0.709637 0.320008 2.525248 0.789629 0.320008 2.445256 0.709637 -0.4 2.525248 0.709637 -0.320008 2.525248 0.789629 -0.4 3.253912 0.709637 -0.320008 3.253912 0.789629 0.4 2.525248 0.709637 0.320008 2.445256 0.709637 0.4 2.525248 -0.041419 0.320008 2.445256 -0.041419 0.320008 2.525248 0.789629 0.4 2.525248 0.709637 0.320008 3.253912 0.789629 0.4 3.253912 0.709637 -0.4 3.253912 0.709637 -0.320008 3.333904 0.709637 -0.4 3.253912 -0.041419 -0.320008 3.333904 -0.041419 -0.320008 3.333904 0.709637 -0.320008 3.253912 0.789629 0.320008 3.333904 0.709637 0.320008 3.253912 0.789629 0.320008 3.333904 0.709637 0.4 3.253912 0.709637 0.320008 3.333904 -0.041419 0.4 3.253912 -0.041419 -0.4 3.253912 -0.041419 -0.320008 3.253912 -0.121411 -0.4 2.525248 -0.041419 -0.320008 2.525248 -0.121411 -0.320008 3.253912 -0.121411 -0.320008 3.333904 -0.041419 0.320008 3.253912 -0.121411 0.320008 3.333904 -0.041419 0.320008 3.253912 -0.121411 0.4 3.253912 -0.041419 0.320008 2.525248 -0.121411 0.4 2.525248 -0.041419 -0.320008 2.445256 -0.041419 -0.320008 2.525248 -0.121411 0.320008 2.445256 -0.041419 0.320008 2.525248 -0.121411 -0.4 2.525248 0.709637 -0.320008 2.445256 0.709637 -0.320008 2.525248 0.789629 0.320008 2.445256 0.709637 0.4 2.525248 0.709637 0.320008 2.525248 0.789629 -0.320008 3.333904 0.709637 -0.4 3.253912 0.709637 -0.320008 3.253912 0.789629 0.4 3.253912 0.709637 0.320008 3.333904 0.709637 0.320008 3.253912 0.789629 -0.320008 3.253912 -0.121411 -0.4 3.253912 -0.041419 -0.320008 3.333904 -0.041419 0.4 3.253912 -0.041419 0.320008 3.253912 -0.121411 0.320008 3.333904 -0.041419 -0.320008 2.445256 -0.041419 -0.4 2.525248 -0.041419 -0.320008 2.525248 -0.121411 0.4 2.525248 -0.041419 0.320008 2.445256 -0.041419 0.320008 2.525248 -0.121411 -0.320008 2.445256 -1.123388 0.320008 2.445256 -1.123388 -0.320008 2.445256 -0.372332 0.320008 2.445256 -0.372332 0.320008 2.525248 -0.29234 0.320008 3.253912 -0.29234 -0.320008 2.525248 -0.29234 -0.320008 3.253912 -0.29234 -0.4 3.253912 -0.372332 -0.4 3.253912 -1.123388 -0.4 2.525248 -0.372332 -0.4 2.525248 -1.123388 0.4 2.525248 -1.123388 0.4 3.253912 -1.123388 0.4 2.525248 -0.372332 0.4 3.253912 -0.372332 0.320008 3.333904 -0.372332 0.320008 3.333904 -1.123388 -0.320008 3.333904 -0.372332 -0.320008 3.333904 -1.123388 0.320008 3.253912 -1.20338 0.320008 2.525248 -1.20338 -0.320008 3.253912 -1.20338 -0.320008 2.525248 -1.20338 -0.320008 2.445256 -0.372332 -0.4 2.525248 -0.372332 -0.320008 2.445256 -1.123388 -0.4 2.525248 -1.123388 -0.320008 2.525248 -0.29234 -0.320008 2.445256 -0.372332 0.320008 2.525248 -0.29234 0.320008 2.445256 -0.372332 -0.4 2.525248 -0.372332 -0.320008 2.525248 -0.29234 -0.4 3.253912 -0.372332 -0.320008 3.253912 -0.29234 0.4 2.525248 -0.372332 0.320008 2.445256 -0.372332 0.4 2.525248 -1.123388 0.320008 2.445256 -1.123388 0.320008 2.525248 -0.29234 0.4 2.525248 -0.372332 0.320008 3.253912 -0.29234 0.4 3.253912 -0.372332 -0.4 3.253912 -0.372332 -0.320008 3.333904 -0.372332 -0.4 3.253912 -1.123388 -0.320008 3.333904 -1.123388 -0.320008 3.333904 -0.372332 -0.320008 3.253912 -0.29234 0.320008 3.333904 -0.372332 0.320008 3.253912 -0.29234 0.320008 3.333904 -0.372332 0.4 3.253912 -0.372332 0.320008 3.333904 -1.123388 0.4 3.253912 -1.123388 -0.4 3.253912 -1.123388 -0.320008 3.253912 -1.20338 -0.4 2.525248 -1.123388 -0.320008 2.525248 -1.20338 -0.320008 3.253912 -1.20338 -0.320008 3.333904 -1.123388 0.320008 3.253912 -1.20338 0.320008 3.333904 -1.123388 0.320008 3.253912 -1.20338 0.4 3.253912 -1.123388 0.320008 2.525248 -1.20338 0.4 2.525248 -1.123388 -0.320008 2.445256 -1.123388 -0.320008 2.525248 -1.20338 0.320008 2.445256 -1.123388 0.320008 2.525248 -1.20338 -0.4 2.525248 -0.372332 -0.320008 2.445256 -0.372332 -0.320008 2.525248 -0.29234 0.320008 2.445256 -0.372332 0.4 2.525248 -0.372332 0.320008 2.525248 -0.29234 -0.320008 3.333904 -0.372332 -0.4 3.253912 -0.372332 -0.320008 3.253912 -0.29234 0.4 3.253912 -0.372332 0.320008 3.333904 -0.372332 0.320008 3.253912 -0.29234 -0.320008 3.253912 -1.20338 -0.4 3.253912 -1.123388 -0.320008 3.333904 -1.123388 0.4 3.253912 -1.123388 0.320008 3.253912 -1.20338 0.320008 3.333904 -1.123388 -0.320008 2.445256 -1.123388 -0.4 2.525248 -1.123388 -0.320008 2.525248 -1.20338 0.4 2.525248 -1.123388 0.320008 2.445256 -1.123388 0.320008 2.525248 -1.20338 -0.320008 3.340906 -0.579986 0.320008 3.340906 -0.579986 -0.320008 3.340906 0.17107 0.320008 3.340906 0.17107 0.320008 3.420898 0.251062 0.320008 4.149562 0.251062 -0.320008 3.420898 0.251062 -0.320008 4.149562 0.251062 -0.4 4.149562 0.17107 -0.4 4.149562 -0.579986 -0.4 3.420898 0.17107 -0.4 3.420898 -0.579986 0.4 3.420898 -0.579986 0.4 4.149562 -0.579986 0.4 3.420898 0.17107 0.4 4.149562 0.17107 0.320008 4.229554 0.17107 0.320008 4.229554 -0.579986 -0.320008 4.229554 0.17107 -0.320008 4.229554 -0.579986 0.320008 4.149562 -0.659978 0.320008 3.420898 -0.659978 -0.320008 4.149562 -0.659978 -0.320008 3.420898 -0.659978 -0.320008 3.340906 0.17107 -0.4 3.420898 0.17107 -0.320008 3.340906 -0.579986 -0.4 3.420898 -0.579986 -0.320008 3.420898 0.251062 -0.320008 3.340906 0.17107 0.320008 3.420898 0.251062 0.320008 3.340906 0.17107 -0.4 3.420898 0.17107 -0.320008 3.420898 0.251062 -0.4 4.149562 0.17107 -0.320008 4.149562 0.251062 0.4 3.420898 0.17107 0.320008 3.340906 0.17107 0.4 3.420898 -0.579986 0.320008 3.340906 -0.579986 0.320008 3.420898 0.251062 0.4 3.420898 0.17107 0.320008 4.149562 0.251062 0.4 4.149562 0.17107 -0.4 4.149562 0.17107 -0.320008 4.229554 0.17107 -0.4 4.149562 -0.579986 -0.320008 4.229554 -0.579986 -0.320008 4.229554 0.17107 -0.320008 4.149562 0.251062 0.320008 4.229554 0.17107 0.320008 4.149562 0.251062 0.320008 4.229554 0.17107 0.4 4.149562 0.17107 0.320008 4.229554 -0.579986 0.4 4.149562 -0.579986 -0.4 4.149562 -0.579986 -0.320008 4.149562 -0.659978 -0.4 3.420898 -0.579986 -0.320008 3.420898 -0.659978 -0.320008 4.149562 -0.659978 -0.320008 4.229554 -0.579986 0.320008 4.149562 -0.659978 0.320008 4.229554 -0.579986 0.320008 4.149562 -0.659978 0.4 4.149562 -0.579986 0.320008 3.420898 -0.659978 0.4 3.420898 -0.579986 -0.320008 3.340906 -0.579986 -0.320008 3.420898 -0.659978 0.320008 3.340906 -0.579986 0.320008 3.420898 -0.659978 -0.4 3.420898 0.17107 -0.320008 3.340906 0.17107 -0.320008 3.420898 0.251062 0.320008 3.340906 0.17107 0.4 3.420898 0.17107 0.320008 3.420898 0.251062 -0.320008 4.229554 0.17107 -0.4 4.149562 0.17107 -0.320008 4.149562 0.251062 0.4 4.149562 0.17107 0.320008 4.229554 0.17107 0.320008 4.149562 0.251062 -0.320008 4.149562 -0.659978 -0.4 4.149562 -0.579986 -0.320008 4.229554 -0.579986 0.4 4.149562 -0.579986 0.320008 4.149562 -0.659978 0.320008 4.229554 -0.579986 -0.320008 3.340906 -0.579986 -0.4 3.420898 -0.579986 -0.320008 3.420898 -0.659978 0.4 3.420898 -0.579986 0.320008 3.340906 -0.579986 0.320008 3.420898 -0.659978 + + + + + + + + + + 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 0.5773496 -0.57735056 0.57735056 0.5773496 -0.57735056 0.57735056 0.5773496 -0.57735056 0.57735056 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 0.57734996 0.57734996 0.5773509 0.57734996 0.57734996 0.5773509 0.57734996 0.57734996 0.5773509 0.57734996 -0.5773509 0.5773509 -0.57734895 -0.5773509 0.5773509 -0.57734895 -0.5773509 0.5773509 -0.57734895 0.5773509 0.5773509 -0.57734895 0.5773509 0.5773509 -0.57734895 0.5773509 0.5773509 -0.57734895 -0.57735026 -0.57735026 -0.57735026 -0.57735026 -0.57735026 -0.57735026 -0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 0.57735026 -0.57735026 0.57735026 0.57735026 -0.57735026 0.57735026 0.57735026 -0.57735026 0.57735026 -0.5773509 0.5773509 0.57734895 -0.5773509 0.5773509 0.57734895 -0.5773509 0.5773509 0.57734895 0.5773509 0.5773509 0.57734895 0.5773509 0.5773509 0.57734895 0.5773509 0.5773509 0.57734895 -0.57734996 0.5773509 -0.57734996 -0.57734996 0.5773509 -0.57734996 -0.57734996 0.5773509 -0.57734996 0.57734996 0.5773509 -0.57734996 0.57734996 0.5773509 -0.57734996 0.57734996 0.5773509 -0.57734996 -0.5773496 -0.57735056 -0.57735056 -0.5773496 -0.57735056 -0.57735056 -0.5773496 -0.57735056 -0.57735056 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 -0.7071058 0 -0.70710784 -0.7071058 0 -0.70710784 -0.7071058 0 -0.70710784 -0.7071058 0 -0.70710784 0 -0.7071058 -0.70710784 0 -0.7071058 -0.70710784 0 -0.7071058 -0.70710784 0 -0.7071058 -0.70710784 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 0.7071058 0 -0.70710784 0.7071058 0 -0.70710784 0.7071058 0 -0.70710784 0.7071058 0 -0.70710784 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 -0.7071058 0 0.70710784 -0.7071058 0 0.70710784 -0.7071058 0 0.70710784 -0.7071058 0 0.70710784 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0.7071058 0 0.70710784 0.7071058 0 0.70710784 0.7071058 0 0.70710784 0.7071058 0 0.70710784 -0.70710784 0.7071058 0 -0.70710784 0.7071058 0 -0.70710784 0.7071058 0 -0.70710784 0.7071058 0 0 0.7071063 0.7071073 0 0.7071063 0.7071073 0 0.7071063 0.7071073 0 0.7071063 0.7071073 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0 0.7071048 -0.7071088 0 0.7071048 -0.7071088 0 0.7071048 -0.7071088 0 0.7071048 -0.7071088 -0.5773493 -0.5773493 -0.5773523 -0.5773493 -0.5773493 -0.5773523 -0.5773493 -0.5773493 -0.5773523 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 0.57735026 -0.57735026 -0.57735026 -0.5773493 -0.5773493 0.5773523 -0.5773493 -0.5773493 0.5773523 -0.5773493 -0.5773493 0.5773523 0.57735026 -0.57735026 0.57735026 0.57735026 -0.57735026 0.57735026 0.57735026 -0.57735026 0.57735026 -0.57734895 0.57734996 0.5773519 -0.57734895 0.57734996 0.5773519 -0.57734895 0.57734996 0.5773519 0.57734793 0.57734895 0.57735395 0.57734793 0.57734895 0.57735395 0.57734793 0.57734895 0.57735395 -0.5773509 0.57734895 -0.5773509 -0.5773509 0.57734895 -0.5773509 -0.5773509 0.57734895 -0.5773509 0.5773503 0.5773473 -0.5773533 0.5773503 0.5773473 -0.5773533 0.5773503 0.5773473 -0.5773533 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 -0.7071073 0 -0.7071063 -0.7071073 0 -0.7071063 -0.7071073 0 -0.7071063 -0.7071073 0 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0 -0.7071063 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 0.57734996 0.57734996 -0.5773509 0.57734996 0.57734996 -0.5773509 0.57734996 0.57734996 -0.5773509 0.57734996 -0.5773493 0.5773503 0.5773513 -0.5773493 0.5773503 0.5773513 -0.5773493 0.5773503 0.5773513 0.5773493 0.5773503 0.5773513 0.5773493 0.5773503 0.5773513 0.5773493 0.5773503 0.5773513 -0.57735056 0.5773496 -0.57735056 -0.57735056 0.5773496 -0.57735056 -0.57735056 0.5773496 -0.57735056 0.57735056 0.5773496 -0.57735056 0.57735056 0.5773496 -0.57735056 0.57735056 0.5773496 -0.57735056 -0.5773513 -0.5773503 -0.5773493 -0.5773513 -0.5773503 -0.5773493 -0.5773513 -0.5773503 -0.5773493 0.5773513 -0.5773503 -0.5773493 0.5773513 -0.5773503 -0.5773493 0.5773513 -0.5773503 -0.5773493 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0.7071058 0.70710784 0 0.7071058 0.70710784 0 0.7071058 0.70710784 0 0.7071058 0.70710784 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0 -0.7071063 -0.7071073 0 -0.7071063 -0.7071073 0 -0.7071063 -0.7071073 0 -0.7071063 -0.7071073 -0.57734996 -0.57734996 0.5773509 -0.57734996 -0.57734996 0.5773509 -0.57734996 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 -0.5773509 0.5773519 0.57734793 -0.5773509 0.5773519 0.57734793 -0.5773509 0.5773519 0.57734793 0.5773509 0.5773519 0.57734793 0.5773509 0.5773519 0.57734793 0.5773509 0.5773519 0.57734793 -0.5773509 0.5773519 -0.57734793 -0.5773509 0.5773519 -0.57734793 -0.5773509 0.5773519 -0.57734793 0.5773509 0.5773519 -0.57734793 0.5773509 0.5773519 -0.57734793 0.5773509 0.5773519 -0.57734793 -0.57734996 -0.57734996 -0.5773509 -0.57734996 -0.57734996 -0.5773509 -0.57734996 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 0 -0.7071063 0.7071073 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0.7071058 0.70710784 0 0.7071058 0.70710784 0 0.7071058 0.70710784 0 0.7071058 0.70710784 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 -0.57734996 -0.57734996 0.5773509 -0.57734996 -0.57734996 0.5773509 -0.57734996 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 0.57734996 -0.57734996 0.5773509 -0.5773509 0.5773519 0.57734793 -0.5773509 0.5773519 0.57734793 -0.5773509 0.5773519 0.57734793 0.5773509 0.5773519 0.57734793 0.5773509 0.5773519 0.57734793 0.5773509 0.5773519 0.57734793 -0.57734996 0.57735294 -0.57734793 -0.57734996 0.57735294 -0.57734793 -0.57734996 0.57735294 -0.57734793 0.5773503 0.5773523 -0.5773483 0.5773503 0.5773523 -0.5773483 0.5773503 0.5773523 -0.5773483 -0.57734996 -0.57734996 -0.5773509 -0.57734996 -0.57734996 -0.5773509 -0.57734996 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 0.57734996 -0.57734996 -0.5773509 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.7071058 -0.70710784 0 -0.7071058 -0.70710784 0 -0.7071058 -0.70710784 0 -0.7071058 -0.70710784 0 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 0 -0.7071073 0.7071063 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 0.7071058 -0.70710784 0 0.7071058 -0.70710784 0 0.7071058 -0.70710784 0 0.7071058 -0.70710784 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 -0.7071058 0.70710784 0 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0.7071058 0.70710784 0 0.7071058 0.70710784 0 0.7071058 0.70710784 0 0.7071058 0.70710784 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 0 -0.7071073 -0.7071063 -0.57734895 -0.57734996 0.5773519 -0.57734895 -0.57734996 0.5773519 -0.57734895 -0.57734996 0.5773519 0.57734895 -0.57734996 0.5773519 0.57734895 -0.57734996 0.5773519 0.57734895 -0.57734996 0.5773519 -0.57734895 0.57734996 0.5773519 -0.57734895 0.57734996 0.5773519 -0.57734895 0.57734996 0.5773519 0.57734895 0.57734996 0.5773519 0.57734895 0.57734996 0.5773519 0.57734895 0.57734996 0.5773519 -0.57734895 0.57734996 -0.5773519 -0.57734895 0.57734996 -0.5773519 -0.57734895 0.57734996 -0.5773519 0.57734895 0.57734996 -0.5773519 0.57734895 0.57734996 -0.5773519 0.57734895 0.57734996 -0.5773519 -0.57734895 -0.57734996 -0.5773519 -0.57734895 -0.57734996 -0.5773519 -0.57734895 -0.57734996 -0.5773519 0.57734895 -0.57734996 -0.5773519 0.57734895 -0.57734996 -0.5773519 0.57734895 -0.57734996 -0.5773519 + + + + + + + + + + 0.382672 0.285334 0.382672 0.189607 0.478399 0.285334 0.478399 0.189607 0.0174928 0.189607 0.125643 0.189607 0.0174927 0.285334 0.125643 0.285334 0.125643 0.309263 0.125643 0.40499 0.0174927 0.309263 0.0174928 0.40499 0.0174928 0.0699514 0.125643 0.0699514 0.0174928 0.165679 0.125643 0.165678 0.14336 0.189607 0.239087 0.189607 0.14336 0.285334 0.239087 0.285334 0.256805 0.189607 0.364955 0.189607 0.256805 0.285334 0.364955 0.285334 0.478399 0.285334 0.478399 0.297299 0.382672 0.285334 0.382672 0.297299 0.0174927 0.285334 0.0117398 0.285334 0.0174928 0.189607 0.0117399 0.189607 0.0174927 0.297299 0.0174927 0.285334 0.125643 0.297299 0.125643 0.285334 0.478399 0.177643 0.478399 0.189607 0.382672 0.177643 0.382672 0.189607 0.0174928 0.189607 0.0174928 0.177643 0.125643 0.189607 0.125643 0.177643 0.14336 0.297299 0.14336 0.285334 0.239087 0.297299 0.239087 0.285334 0.131396 0.285334 0.125643 0.285334 0.131396 0.189607 0.125643 0.189607 0.14336 0.189607 0.14336 0.177643 0.239087 0.189607 0.239087 0.177643 0.256805 0.297299 0.256805 0.285334 0.364955 0.297299 0.364955 0.285334 0.251052 0.285334 0.239087 0.285334 0.251052 0.189607 0.239087 0.189607 0.256805 0.189607 0.256805 0.177643 0.364955 0.189607 0.364955 0.177643 0.370707 0.285334 0.364955 0.285334 0.370707 0.189607 0.364955 0.189607 0.0174927 0.297299 0.0117398 0.285334 0.0174927 0.285334 0.0117399 0.189607 0.0174928 0.177643 0.0174928 0.189607 0.131396 0.285334 0.125643 0.297299 0.125643 0.285334 0.125643 0.177643 0.131396 0.189607 0.125643 0.189607 0.251052 0.285334 0.239087 0.297299 0.239087 0.285334 0.239087 0.177643 0.251052 0.189607 0.239087 0.189607 0.370707 0.285334 0.364955 0.297299 0.364955 0.285334 0.364955 0.177643 0.370707 0.189607 0.364955 0.189607 0.144554 0.693075 0.144554 0.777608 0.0600217 0.693075 0.0600217 0.777608 0.467027 0.777608 0.371525 0.777608 0.467027 0.693075 0.371525 0.693075 0.371525 0.671945 0.371525 0.587413 0.467027 0.671945 0.467027 0.587413 0.467027 0.88327 0.371525 0.88327 0.467027 0.798738 0.371525 0.798738 0.355879 0.777608 0.271347 0.777608 0.355879 0.693075 0.271347 0.693075 0.255702 0.777608 0.160199 0.777608 0.255702 0.693075 0.160199 0.693075 0.0600217 0.693075 0.0600217 0.68251 0.144554 0.693075 0.144554 0.68251 0.467027 0.693075 0.472107 0.693075 0.467027 0.777608 0.472107 0.777608 0.467027 0.68251 0.467027 0.693075 0.371525 0.68251 0.371525 0.693075 0.0600217 0.788173 0.0600217 0.777608 0.144554 0.788173 0.144554 0.777608 0.467027 0.777608 0.467027 0.788173 0.371525 0.777608 0.371525 0.788173 0.355879 0.68251 0.355879 0.693075 0.271347 0.68251 0.271347 0.693075 0.366445 0.693075 0.371525 0.693075 0.366445 0.777608 0.371525 0.777608 0.355879 0.777608 0.355879 0.788173 0.271347 0.777608 0.271347 0.788173 0.255702 0.68251 0.255702 0.693075 0.160199 0.68251 0.160199 0.693075 0.260782 0.693075 0.271347 0.693075 0.260782 0.777608 0.271347 0.777608 0.255702 0.777608 0.255702 0.788173 0.160199 0.777608 0.160199 0.788173 0.155119 0.693075 0.160199 0.693075 0.155119 0.777608 0.160199 0.777608 0.467027 0.68251 0.472107 0.693075 0.467027 0.693075 0.472107 0.777608 0.467027 0.788173 0.467027 0.777608 0.366445 0.693075 0.371525 0.68251 0.371525 0.693075 0.371525 0.788173 0.366445 0.777608 0.371525 0.777608 0.260782 0.693075 0.271347 0.68251 0.271347 0.693075 0.271347 0.788173 0.260782 0.777608 0.271347 0.777608 0.155119 0.693075 0.160199 0.68251 0.160199 0.693075 0.160199 0.788173 0.155119 0.777608 0.160199 0.777608 0.881197 0.755243 0.881197 0.66262 0.97382 0.755243 0.97382 0.66262 0.525792 0.66262 0.634568 0.66262 0.525792 0.755243 0.634568 0.755243 0.634568 0.778396 0.634568 0.871019 0.525792 0.778396 0.525792 0.871019 0.525792 0.546844 0.634568 0.546844 0.525792 0.639467 0.634568 0.639467 0.649645 0.66262 0.742268 0.66262 0.649645 0.755243 0.742268 0.755243 0.757344 0.66262 0.86612 0.66262 0.757344 0.755243 0.86612 0.755243 0.97382 0.755243 0.97382 0.76682 0.881197 0.755243 0.881197 0.76682 0.525792 0.755243 0.522292 0.755243 0.525792 0.66262 0.522292 0.66262 0.525792 0.766819 0.525792 0.755243 0.634568 0.76682 0.634568 0.755243 0.97382 0.651043 0.97382 0.66262 0.881197 0.651043 0.881197 0.66262 0.525792 0.66262 0.525792 0.651043 0.634568 0.66262 0.634568 0.651043 0.649645 0.766819 0.649645 0.755243 0.742268 0.766819 0.742268 0.755243 0.638068 0.755243 0.634568 0.755243 0.638068 0.66262 0.634568 0.66262 0.649645 0.66262 0.649645 0.651043 0.742268 0.66262 0.742268 0.651043 0.757344 0.766819 0.757344 0.755243 0.86612 0.76682 0.86612 0.755243 0.753844 0.755243 0.742268 0.755243 0.753844 0.66262 0.742268 0.66262 0.757344 0.66262 0.757344 0.651043 0.86612 0.66262 0.86612 0.651043 0.86962 0.755243 0.86612 0.755243 0.86962 0.66262 0.86612 0.66262 0.525792 0.766819 0.522292 0.755243 0.525792 0.755243 0.522292 0.66262 0.525792 0.651043 0.525792 0.66262 0.638068 0.755243 0.634568 0.76682 0.634568 0.755243 0.634568 0.651043 0.638068 0.66262 0.634568 0.66262 0.753844 0.755243 0.742268 0.766819 0.742268 0.755243 0.742268 0.651043 0.753844 0.66262 0.742268 0.66262 0.86962 0.755243 0.86612 0.76682 0.86612 0.755243 0.86612 0.651043 0.86962 0.66262 0.86612 0.66262 0.389415 0.795034 0.389415 0.693301 0.486347 0.795034 0.486347 0.693301 0.0188037 0.693301 0.129983 0.693301 0.0188037 0.795034 0.129983 0.795034 0.129983 0.816864 0.129983 0.913796 0.0188037 0.816864 0.0188038 0.913796 0.0188038 0.574539 0.129983 0.574539 0.0188037 0.671471 0.129983 0.671471 0.14709 0.693301 0.244022 0.693301 0.14709 0.795034 0.244022 0.795034 0.261129 0.693301 0.372308 0.693301 0.261129 0.795034 0.372308 0.795034 0.486347 0.795034 0.486347 0.804749 0.389415 0.795034 0.389415 0.804749 0.0188037 0.795034 0.0138119 0.795034 0.0188037 0.693301 0.0138119 0.693301 0.0188037 0.804749 0.0188037 0.795034 0.129983 0.804749 0.129983 0.795034 0.486347 0.683586 0.486347 0.693301 0.389415 0.683586 0.389415 0.693301 0.0188037 0.693301 0.0188037 0.683586 0.129983 0.693301 0.129983 0.683586 0.14709 0.804749 0.14709 0.795034 0.244022 0.804749 0.244022 0.795034 0.134975 0.795034 0.129983 0.795034 0.134975 0.693301 0.129983 0.693301 0.14709 0.693301 0.14709 0.683586 0.244022 0.693301 0.244022 0.683586 0.261129 0.804749 0.261129 0.795034 0.372308 0.804749 0.372308 0.795034 0.256137 0.795034 0.244022 0.795034 0.256137 0.693301 0.244022 0.693301 0.261129 0.693301 0.261129 0.683586 0.372308 0.693301 0.372308 0.683586 0.3773 0.795034 0.372308 0.795034 0.3773 0.693301 0.372308 0.693301 0.0188037 0.804749 0.0138119 0.795034 0.0188037 0.795034 0.0138119 0.693301 0.0188037 0.683586 0.0188037 0.693301 0.134975 0.795034 0.129983 0.804749 0.129983 0.795034 0.129983 0.683586 0.134975 0.693301 0.129983 0.693301 0.256137 0.795034 0.244022 0.804749 0.244022 0.795034 0.244022 0.683586 0.256137 0.693301 0.244022 0.693301 0.3773 0.795034 0.372308 0.804749 0.372308 0.795034 0.372308 0.683586 0.3773 0.693301 0.372308 0.693301 0.222262 0.366864 0.297648 0.366864 0.222262 0.444546 0.297648 0.444546 0.297648 0.0843819 0.297648 0.161648 0.222262 0.0843819 0.222262 0.161648 0.204567 0.161648 0.126884 0.161648 0.204567 0.0843819 0.126884 0.0843819 0.393027 0.0843819 0.393027 0.161648 0.315344 0.0843819 0.315344 0.161648 0.297648 0.178403 0.297648 0.256086 0.222262 0.178403 0.222262 0.256086 0.297648 0.272842 0.297648 0.350108 0.222262 0.272842 0.222262 0.350108 0.222262 0.444546 0.21284 0.444546 0.222262 0.366864 0.21284 0.366864 0.222262 0.0843819 0.222262 0.0758997 0.297648 0.0843819 0.297648 0.0758997 0.21284 0.0843819 0.222262 0.0843819 0.21284 0.161648 0.222262 0.161648 0.30707 0.444546 0.297648 0.444546 0.30707 0.366864 0.297648 0.366864 0.297648 0.0843819 0.30707 0.0843818 0.297648 0.161648 0.30707 0.161648 0.21284 0.178403 0.222262 0.178403 0.21284 0.256086 0.222262 0.256086 0.222262 0.17013 0.222262 0.161648 0.297648 0.17013 0.297648 0.161648 0.297648 0.178403 0.30707 0.178403 0.297648 0.256086 0.30707 0.256086 0.21284 0.272842 0.222262 0.272842 0.21284 0.350108 0.222262 0.350108 0.222262 0.26436 0.222262 0.256086 0.297648 0.26436 0.297648 0.256086 0.297648 0.272842 0.30707 0.272842 0.297648 0.350108 0.30707 0.350108 0.222262 0.35859 0.222262 0.350108 0.297648 0.35859 0.297648 0.350108 0.21284 0.0843819 0.222262 0.0758997 0.222262 0.0843819 0.297648 0.0758997 0.30707 0.0843818 0.297648 0.0843819 0.222262 0.17013 0.21284 0.161648 0.222262 0.161648 0.30707 0.161648 0.297648 0.17013 0.297648 0.161648 0.222262 0.26436 0.21284 0.256086 0.222262 0.256086 0.30707 0.256086 0.297648 0.26436 0.297648 0.256086 0.222262 0.35859 0.21284 0.350108 0.222262 0.350108 0.30707 0.350108 0.297648 0.35859 0.297648 0.350108 1.38317 0.848941 1.38317 0.756113 1.47882 0.848941 1.47882 0.756113 1.03533 0.756113 1.13047 0.756113 1.03533 0.848941 1.13047 0.848941 1.13047 0.87073 1.13047 0.966386 1.03533 0.87073 1.03533 0.966386 1.03533 0.638668 1.13047 0.638668 1.03533 0.734323 1.13047 0.734323 1.1511 0.756113 1.24676 0.756113 1.1511 0.848941 1.24676 0.848941 1.26739 0.756113 1.36253 0.756113 1.26739 0.848941 1.36253 0.848941 1.47882 0.848941 1.47882 0.860543 1.38317 0.848941 1.38317 0.860543 1.03533 0.848941 1.02488 0.848941 1.03533 0.756113 1.02488 0.756113 1.03533 0.860543 1.03533 0.848941 1.13047 0.860543 1.13047 0.848941 1.47882 0.744511 1.47882 0.756113 1.38317 0.744511 1.38317 0.756113 1.03533 0.756113 1.03533 0.744511 1.13047 0.756113 1.13047 0.744511 1.1511 0.860543 1.1511 0.848941 1.24676 0.860543 1.24676 0.848941 1.14092 0.848941 1.13047 0.848941 1.14092 0.756113 1.13047 0.756113 1.1511 0.756113 1.1511 0.744511 1.24676 0.756113 1.24676 0.744511 1.26739 0.860543 1.26739 0.848941 1.36253 0.860543 1.36253 0.848941 1.25695 0.848941 1.24676 0.848941 1.25695 0.756113 1.24676 0.756113 1.26739 0.756113 1.26739 0.744511 1.36253 0.756113 1.36253 0.744511 1.37298 0.848941 1.36253 0.848941 1.37298 0.756113 1.36253 0.756113 1.03533 0.860543 1.02488 0.848941 1.03533 0.848941 1.02488 0.756113 1.03533 0.744511 1.03533 0.756113 1.14092 0.848941 1.13047 0.860543 1.13047 0.848941 1.13047 0.744511 1.14092 0.756113 1.13047 0.756113 1.25695 0.848941 1.24676 0.860543 1.24676 0.848941 1.24676 0.744511 1.25695 0.756113 1.24676 0.756113 1.37298 0.848941 1.36253 0.860543 1.36253 0.848941 1.36253 0.744511 1.37298 0.756113 1.36253 0.756113 0.700077 0.854106 0.788821 0.854106 0.700077 0.945555 0.788821 0.945555 0.788821 0.521567 0.788821 0.612524 0.700077 0.521567 0.700077 0.612524 0.679245 0.612524 0.587797 0.612524 0.679245 0.521567 0.587797 0.521567 0.901102 0.521567 0.901102 0.612524 0.809653 0.521567 0.809653 0.612524 0.788821 0.632249 0.788821 0.723698 0.700077 0.632249 0.700077 0.723698 0.788821 0.743423 0.788821 0.834381 0.700077 0.743423 0.700077 0.834381 0.700077 0.945555 0.688985 0.945555 0.700077 0.854106 0.688985 0.854106 0.700077 0.521567 0.700077 0.511581 0.788821 0.521567 0.788821 0.511581 0.688985 0.521567 0.700077 0.521567 0.688985 0.612524 0.700077 0.612524 0.799913 0.945555 0.788821 0.945555 0.799913 0.854106 0.788821 0.854106 0.788821 0.521567 0.799913 0.521567 0.788821 0.612524 0.799913 0.612524 0.688985 0.632249 0.700077 0.632249 0.688985 0.723698 0.700077 0.723698 0.700077 0.62251 0.700077 0.612524 0.788821 0.62251 0.788821 0.612524 0.788821 0.632249 0.799913 0.632249 0.788821 0.723698 0.799913 0.723698 0.688985 0.743423 0.700077 0.743423 0.688985 0.834381 0.700077 0.834381 0.700077 0.733438 0.700077 0.723698 0.788821 0.733438 0.788821 0.723698 0.788821 0.743423 0.799913 0.743423 0.788821 0.834381 0.799913 0.834381 0.700077 0.844366 0.700077 0.834381 0.788821 0.844366 0.788821 0.834381 0.688985 0.521567 0.700077 0.511581 0.700077 0.521567 0.788821 0.511581 0.799913 0.521567 0.788821 0.521567 0.700077 0.62251 0.688985 0.612524 0.700077 0.612524 0.799913 0.612524 0.788821 0.62251 0.788821 0.612524 0.700077 0.733438 0.688985 0.723698 0.700077 0.723698 0.799913 0.723698 0.788821 0.733438 0.788821 0.723698 0.700077 0.844366 0.688985 0.834381 0.700077 0.834381 0.799913 0.834381 0.788821 0.844366 0.788821 0.834381 + + + + + + + + + + + + + + +

0 1 2 2 1 3 4 5 6 6 5 7 8 9 10 10 9 11 12 13 14 14 13 15 16 17 18 18 17 19 20 21 22 22 21 23 24 25 26 26 25 27 28 29 30 30 29 31 32 33 34 34 33 35 36 37 38 38 37 39 40 41 42 42 41 43 44 45 46 46 45 47 48 49 50 50 49 51 52 53 54 54 53 55 56 57 58 58 57 59 60 61 62 62 61 63 64 65 66 66 65 67 68 69 70 70 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 98 97 99 100 101 102 102 101 103 104 105 106 106 105 107 108 109 110 110 109 111 112 113 114 114 113 115 116 117 118 118 117 119 120 121 122 122 121 123 124 125 126 126 125 127 128 129 130 130 129 131 132 133 134 134 133 135 136 137 138 138 137 139 140 141 142 142 141 143 144 145 146 146 145 147 148 149 150 150 149 151 152 153 154 154 153 155 156 157 158 158 157 159 160 161 162 162 161 163 164 165 166 166 165 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 194 193 195 196 197 198 198 197 199 200 201 202 202 201 203 204 205 206 206 205 207 208 209 210 210 209 211 212 213 214 214 213 215 216 217 218 218 217 219 220 221 222 222 221 223 224 225 226 226 225 227 228 229 230 230 229 231 232 233 234 234 233 235 236 237 238 238 237 239 240 241 242 242 241 243 244 245 246 246 245 247 248 249 250 250 249 251 252 253 254 254 253 255 256 257 258 258 257 259 260 261 262 262 261 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 290 289 291 292 293 294 294 293 295 296 297 298 298 297 299 300 301 302 302 301 303 304 305 306 306 305 307 308 309 310 310 309 311 312 313 314 314 313 315 316 317 318 318 317 319 320 321 322 322 321 323 324 325 326 326 325 327 328 329 330 330 329 331 332 333 334 334 333 335 336 337 338 338 337 339 340 341 342 342 341 343 344 345 346 346 345 347 348 349 350 350 349 351 352 353 354 354 353 355 356 357 358 358 357 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 386 385 387 388 389 390 390 389 391 392 393 394 394 393 395 396 397 398 398 397 399 400 401 402 402 401 403 404 405 406 406 405 407 408 409 410 410 409 411 412 413 414 414 413 415 416 417 418 418 417 419 420 421 422 422 421 423 424 425 426 426 425 427 428 429 430 430 429 431 432 433 434 434 433 435 436 437 438 438 437 439 440 441 442 442 441 443 444 445 446 446 445 447 448 449 450 450 449 451 452 453 454 454 453 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 482 481 483 484 485 486 486 485 487 488 489 490 490 489 491 492 493 494 494 493 495 496 497 498 498 497 499 500 501 502 502 501 503 504 505 506 506 505 507 508 509 510 510 509 511 512 513 514 514 513 515 516 517 518 518 517 519 520 521 522 522 521 523 524 525 526 526 525 527 528 529 530 530 529 531 532 533 534 534 533 535 536 537 538 538 537 539 540 541 542 542 541 543 544 545 546 546 545 547 548 549 550 550 549 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 578 577 579 580 581 582 582 581 583 584 585 586 586 585 587 588 589 590 590 589 591 592 593 594 594 593 595 596 597 598 598 597 599 600 601 602 602 601 603 604 605 606 606 605 607 608 609 610 610 609 611 612 613 614 614 613 615 616 617 618 618 617 619 620 621 622 622 621 623 624 625 626 626 625 627 628 629 630 630 629 631 632 633 634 634 633 635 636 637 638 638 637 639 640 641 642 642 641 643 644 645 646 646 645 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671

+
+
+
+ + + + -1.15218 0.0270677 2.38897 1.15218 0.0270677 2.38897 -1.15218 0.0270677 -2.38897 1.15218 0.0270677 -2.38897 + + + + + + + + + + 0 0 1 0 0 1 1 1 + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + + + + + + +

0 1 2 2 1 3

+
+
+
+
+ + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_root + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 + 0 0 0 0 0 0 0 0 + + + + + + + + 0 0 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_root_bone_id + + + + + + + + + + + + +
\ No newline at end of file diff --git a/Assets/Resources/Models/Games/Airboarder/wall_high_model_merge.dae.meta b/Assets/Resources/Models/Games/Airboarder/wall_high_model_merge.dae.meta new file mode 100644 index 000000000..e4c48e05e --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/wall_high_model_merge.dae.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: 77750ee59f86d444cba032e18a9f87a9 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/wall_low.fbx b/Assets/Resources/Models/Games/Airboarder/wall_low.fbx new file mode 100644 index 000000000..ad9077781 Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/wall_low.fbx differ diff --git a/Assets/Resources/Models/Games/Airboarder/wall_low.fbx.meta b/Assets/Resources/Models/Games/Airboarder/wall_low.fbx.meta new file mode 100644 index 000000000..ff22a80e5 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/wall_low.fbx.meta @@ -0,0 +1,116 @@ +fileFormatVersion: 2 +guid: cdd45697068de0942941fd70c7b8b9a2 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: block_shadow + second: {fileID: 2100000, guid: a8381275f858de342b6da7d85f663236, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: wall_body + second: {fileID: 4308077249516054671, guid: f6ee36b31b2f3e849b5b8dc69738ced0, type: 3} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/wall_low_merge.fbx b/Assets/Resources/Models/Games/Airboarder/wall_low_merge.fbx new file mode 100644 index 000000000..1fdeac64c Binary files /dev/null and b/Assets/Resources/Models/Games/Airboarder/wall_low_merge.fbx differ diff --git a/Assets/Resources/Models/Games/Airboarder/wall_low_merge.fbx.meta b/Assets/Resources/Models/Games/Airboarder/wall_low_merge.fbx.meta new file mode 100644 index 000000000..3a2efc546 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/wall_low_merge.fbx.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: 09b42c349d6b04c45b9e252d26e7d12f +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/wall_low_model.dae b/Assets/Resources/Models/Games/Airboarder/wall_low_model.dae new file mode 100644 index 000000000..1e2c32eb8 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/wall_low_model.dae @@ -0,0 +1,925 @@ + + + + 2024-02-25T16:09:52.292249-06:00 + 2024-02-25T16:09:52.2922548-06:00 + + + + ./airboy_board.png + + + ./airboy_body.png + + + ./airboy_face.0.png + + + ./airboy_face.1.png + + + ./airboy_face.2.png + + + ./airboy_shadow.png + + + ./block_shadow.png + + + ./dog.png + + + ./dog_sdw.png + + + ./floor.png + + + ./metal_env.png + + + ./mother_ship.png + + + ./wall_body.png + + + ./cloud01.png + + + + + + + + + + + + + + + + wall_body + PNG + + + + + blockMt_surf + WRAP + WRAP + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + block_shadow + PNG + + + + + sdwMt_surf + WRAP + WRAP + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + + -0.40001 2.1430748 1.13232 0.40001 2.1430748 1.13232 -0.40001 2.1430748 1.93234 0.40001 2.1430748 1.93234 0.40001 2.2430646 2.03233 0.40001 3.36188 2.03233 -0.40001 2.2430646 2.03233 -0.40001 3.36188 2.03233 -0.5 3.36188 1.93234 -0.5 3.36188 1.13232 -0.5 2.2430646 1.93234 -0.5 2.2430649 1.13232 0.5 2.2430649 1.13232 0.5 3.36188 1.13232 0.5 2.2430646 1.93234 0.5 3.36188 1.93234 0.40001 3.4618702 1.93234 0.40001 3.4618702 1.13232 -0.40001 3.4618702 1.93234 -0.40001 3.4618702 1.13232 0.40001 3.36188 1.03233 0.40001 2.2430649 1.03233 -0.40001 3.36188 1.03233 -0.40001 2.2430649 1.03233 -0.40001 2.1430748 1.93234 -0.5 2.2430646 1.93234 -0.40001 2.1430748 1.13232 -0.5 2.2430649 1.13232 -0.40001 2.2430646 2.03233 -0.40001 2.1430748 1.93234 0.40001 2.2430646 2.03233 0.40001 2.1430748 1.93234 -0.5 2.2430646 1.93234 -0.40001 2.2430646 2.03233 -0.5 3.36188 1.93234 -0.40001 3.36188 2.03233 0.5 2.2430646 1.93234 0.40001 2.1430748 1.93234 0.5 2.2430649 1.13232 0.40001 2.1430748 1.13232 0.40001 2.2430646 2.03233 0.5 2.2430646 1.93234 0.40001 3.36188 2.03233 0.5 3.36188 1.93234 -0.5 3.36188 1.93234 -0.40001 3.4618702 1.93234 -0.5 3.36188 1.13232 -0.40001 3.4618702 1.13232 -0.40001 3.4618702 1.93234 -0.40001 3.36188 2.03233 0.40001 3.4618702 1.93234 0.40001 3.36188 2.03233 0.40001 3.4618702 1.93234 0.5 3.36188 1.93234 0.40001 3.4618702 1.13232 0.5 3.36188 1.13232 -0.5 3.36188 1.13232 -0.40001 3.36188 1.03233 -0.5 2.2430649 1.13232 -0.40001 2.2430649 1.03233 -0.40001 3.36188 1.03233 -0.40001 3.4618702 1.13232 0.40001 3.36188 1.03233 0.40001 3.4618702 1.13232 0.40001 3.36188 1.03233 0.5 3.36188 1.13232 0.40001 2.2430649 1.03233 0.5 2.2430649 1.13232 -0.40001 2.1430748 1.13232 -0.40001 2.2430649 1.03233 0.40001 2.1430748 1.13232 0.40001 2.2430649 1.03233 -0.5 2.2430646 1.93234 -0.40001 2.1430748 1.93234 -0.40001 2.2430646 2.03233 0.40001 2.1430748 1.93234 0.5 2.2430646 1.93234 0.40001 2.2430646 2.03233 -0.40001 3.4618702 1.93234 -0.5 3.36188 1.93234 -0.40001 3.36188 2.03233 0.5 3.36188 1.93234 0.40001 3.4618702 1.93234 0.40001 3.36188 2.03233 -0.40001 3.36188 1.03233 -0.5 3.36188 1.13232 -0.40001 3.4618702 1.13232 0.5 3.36188 1.13232 0.40001 3.36188 1.03233 0.40001 3.4618702 1.13232 -0.40001 2.1430748 1.13232 -0.5 2.2430649 1.13232 -0.40001 2.2430649 1.03233 0.5 2.2430649 1.13232 0.40001 2.1430748 1.13232 0.40001 2.2430649 1.03233 + + + + + + + + + + 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.11043118 -0.9938838 0 -0.11043118 -0.9938838 0 -0.11043118 -0.9938838 0 -0.11043118 -0.9938838 0 0 -0.99388367 0.110431634 0 -0.99388367 0.110431634 0 -0.99388367 0.110431634 0 -0.99388367 0.110431634 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 -0.7071063 0 0.7071073 0.11043118 -0.9938838 0 0.11043118 -0.9938838 0 0.11043118 -0.9938838 0 0.11043118 -0.9938838 0 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.7071073 -0.11043118 0.9938838 0 -0.11043118 0.9938838 0 -0.11043118 0.9938838 0 -0.11043118 0.9938838 0 0 0.99388367 0.110431634 0 0.99388367 0.110431634 0 0.99388367 0.110431634 0 0.99388367 0.110431634 0.11043118 0.9938838 0 0.11043118 0.9938838 0 0.11043118 0.9938838 0 0.11043118 0.9938838 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 0 0.9938838 -0.11043129 0 0.9938838 -0.11043129 0 0.9938838 -0.11043129 0 0.9938838 -0.11043129 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0 -0.9938838 -0.11043129 0 -0.9938838 -0.11043129 0 -0.9938838 -0.11043129 0 -0.9938838 -0.11043129 -0.10976413 -0.9878783 0.109764494 -0.10976413 -0.9878783 0.109764494 -0.10976413 -0.9878783 0.109764494 0.10976413 -0.9878783 0.109764494 0.10976413 -0.9878783 0.109764494 0.10976413 -0.9878783 0.109764494 -0.10976414 0.9878784 0.10976414 -0.10976414 0.9878784 0.10976414 -0.10976414 0.9878784 0.10976414 0.10976414 0.9878784 0.10976414 0.10976414 0.9878784 0.10976414 0.10976414 0.9878784 0.10976414 -0.10976414 0.9878784 -0.10976414 -0.10976414 0.9878784 -0.10976414 -0.10976414 0.9878784 -0.10976414 0.10976414 0.9878784 -0.10976414 0.10976414 0.9878784 -0.10976414 0.10976414 0.9878784 -0.10976414 -0.10976414 -0.9878784 -0.10976414 -0.10976414 -0.9878784 -0.10976414 -0.10976414 -0.9878784 -0.10976414 0.10976414 -0.9878784 -0.10976414 0.10976414 -0.9878784 -0.10976414 0.10976414 -0.9878784 -0.10976414 + + + + + + + + + + 0.387076 0.794053 0.387076 0.698326 0.482804 0.794053 0.482804 0.698326 0.0252166 0.698326 0.126728 0.698326 0.0252165 0.794053 0.126728 0.794053 0.126728 0.817981 0.126728 0.913709 0.0252165 0.817981 0.0252166 0.913709 0.0252166 0.57867 0.126728 0.57867 0.0252166 0.674397 0.126728 0.674397 0.147765 0.698326 0.243492 0.698326 0.147765 0.794053 0.243492 0.794053 0.264528 0.698326 0.36604 0.698326 0.264528 0.794053 0.36604 0.794053 0.482804 0.794053 0.482804 0.806017 0.387076 0.794053 0.387076 0.806017 0.0252165 0.794053 0.0161443 0.794053 0.0252166 0.698326 0.0161444 0.698326 0.0252165 0.806017 0.0252165 0.794053 0.126728 0.806017 0.126728 0.794053 0.482804 0.686361 0.482804 0.698326 0.387076 0.686361 0.387076 0.698326 0.0252166 0.698326 0.0252166 0.686361 0.126728 0.698326 0.126728 0.686361 0.147765 0.806017 0.147765 0.794053 0.243492 0.806017 0.243492 0.794053 0.1358 0.794052 0.126728 0.794053 0.1358 0.698326 0.126728 0.698326 0.147765 0.698326 0.147765 0.686361 0.243492 0.698326 0.243492 0.686361 0.264528 0.806017 0.264528 0.794053 0.36604 0.806017 0.36604 0.794053 0.255456 0.794053 0.243492 0.794053 0.255456 0.698326 0.243492 0.698326 0.264528 0.698326 0.264528 0.686361 0.36604 0.698326 0.36604 0.686361 0.375112 0.794053 0.36604 0.794053 0.375112 0.698326 0.36604 0.698326 0.0252165 0.806017 0.0161443 0.794053 0.0252165 0.794053 0.0161444 0.698326 0.0252166 0.686361 0.0252166 0.698326 0.1358 0.794052 0.126728 0.806017 0.126728 0.794053 0.126728 0.686361 0.1358 0.698326 0.126728 0.698326 0.255456 0.794053 0.243492 0.806017 0.243492 0.794053 0.243492 0.686361 0.255456 0.698326 0.243492 0.698326 0.375112 0.794053 0.36604 0.806017 0.36604 0.794053 0.36604 0.686361 0.375112 0.698326 0.36604 0.698326 + + + + + + + + + + + + + + +

0 1 2 2 1 3 4 5 6 6 5 7 8 9 10 10 9 11 12 13 14 14 13 15 16 17 18 18 17 19 20 21 22 22 21 23 24 25 26 26 25 27 28 29 30 30 29 31 32 33 34 34 33 35 36 37 38 38 37 39 40 41 42 42 41 43 44 45 46 46 45 47 48 49 50 50 49 51 52 53 54 54 53 55 56 57 58 58 57 59 60 61 62 62 61 63 64 65 66 66 65 67 68 69 70 70 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

+
+
+
+ + + + -0.436157 1.3112017 -2.103827 0.436157 1.3112017 -2.103827 -0.436157 1.3112017 -1.231513 0.436157 1.3112017 -1.231513 0.436157 1.3750445 -1.16767 0.436157 2.6401668 -1.16767 -0.436157 1.3750445 -1.16767 -0.436157 2.6401668 -1.16767 -0.5 3.2696 -2.103827 -0.5 1.3750445 -2.103827 -0.5 2.67041 -1.231513 -0.5 1.3750445 -1.231513 0.5 3.2696 -2.103827 0.5 2.67041 -1.231513 0.5 1.3750445 -2.103827 0.5 1.3750445 -1.231513 0.436157 2.740157 -1.220294 0.436157 3.3547583 -2.115046 -0.436157 2.740157 -1.220294 -0.436157 3.3547583 -2.115046 0.436157 3.327062 -2.16767 0.436157 1.3750445 -2.16767 -0.436157 3.327062 -2.16767 -0.436157 1.3750445 -2.16767 -0.436157 1.3112017 -1.231513 -0.5 1.3750445 -1.231513 -0.436157 1.3112017 -2.103827 -0.5 1.3750445 -2.103827 -0.436157 1.3750445 -1.16767 -0.436157 1.3112017 -1.231513 0.436157 1.3750445 -1.16767 0.436157 1.3112017 -1.231513 -0.436157 1.3750445 -1.16767 -0.436157 2.6401668 -1.16767 -0.5 1.3750445 -1.231513 -0.5 2.67041 -1.231513 0.5 1.3750445 -1.231513 0.436157 1.3112017 -1.231513 0.5 1.3750445 -2.103827 0.436157 1.3112017 -2.103827 0.436157 1.3750445 -1.16767 0.5 1.3750445 -1.231513 0.436157 2.6401668 -1.16767 0.5 2.67041 -1.231513 -0.5 2.67041 -1.231513 -0.436157 2.740157 -1.220294 -0.5 3.2696 -2.103827 -0.436157 3.3547583 -2.115046 -0.436157 2.740157 -1.220294 0.436157 2.740157 -1.220294 0.5 2.67041 -1.231513 0.5 3.2696 -2.103827 0.436157 2.740157 -1.220294 0.436157 3.3547583 -2.115046 -0.436157 3.327062 -2.16767 -0.436157 1.3750445 -2.16767 -0.5 3.2696 -2.103827 -0.5 1.3750445 -2.103827 -0.436157 3.327062 -2.16767 -0.436157 3.3547583 -2.115046 0.436157 3.327062 -2.16767 0.436157 3.3547583 -2.115046 0.436157 3.327062 -2.16767 0.5 3.2696 -2.103827 0.436157 1.3750445 -2.16767 0.5 1.3750445 -2.103827 -0.436157 1.3112017 -2.103827 -0.436157 1.3750445 -2.16767 0.436157 1.3112017 -2.103827 0.436157 1.3750445 -2.16767 -0.5 1.3750445 -1.231513 -0.436157 1.3112017 -1.231513 -0.436157 1.3750445 -1.16767 0.436157 1.3112017 -1.231513 0.5 1.3750445 -1.231513 0.436157 1.3750445 -1.16767 -0.436157 2.740157 -1.220294 0.436157 2.740157 -1.220294 -0.436157 3.327062 -2.16767 -0.5 3.2696 -2.103827 -0.436157 3.3547583 -2.115046 0.5 3.2696 -2.103827 0.436157 3.327062 -2.16767 0.436157 3.3547583 -2.115046 -0.436157 1.3112017 -2.103827 -0.5 1.3750445 -2.103827 -0.436157 1.3750445 -2.16767 0.5 1.3750445 -2.103827 0.436157 1.3112017 -2.103827 0.436157 1.3750445 -2.16767 + + + + + + + + + + 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0.32777637 0.9447553 0 0 1 0 0.32777637 0.9447553 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.99650633 0.08351656 0 0.9971001 0.07610056 0 0.99650633 0.08351656 0 0.9971001 0.07610056 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.11043129 -0.9938838 0 -0.11043129 -0.9938838 0 -0.11043129 -0.9938838 0 -0.11043129 -0.9938838 0 0 -0.99388367 0.110431634 0 -0.99388367 0.110431634 0 -0.99388367 0.110431634 0 -0.99388367 0.110431634 -0.7071068 0 0.7071068 -0.7038609 0.06552389 0.70730925 -0.7071068 0 0.7071068 -0.25970152 0.9434754 0.2059347 0.11043129 -0.9938838 0 0.11043129 -0.9938838 0 0.11043129 -0.9938838 0 0.11043129 -0.9938838 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7038609 0.06552389 0.70730925 0.25970152 0.9434754 0.2059347 -0.25970152 0.9434754 0.2059347 -0.13385168 0.98781985 0.079344824 -0.13321006 0.98821384 0.07542205 -0.13321006 0.98821384 0.07542205 0 0.99650633 0.08351656 0 0.99650633 0.08351656 0.25970152 0.9434754 0.2059347 0.13321006 0.98821384 0.07542205 0.13385168 0.98781985 0.079344824 0.13321006 0.98821384 0.07542205 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 0 0.9982946 -0.058377557 0 0.9982946 -0.058377557 0 0.9982946 -0.058377557 0 0.9982946 -0.058377557 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0 -0.99388367 -0.110431634 0 -0.99388367 -0.110431634 0 -0.99388367 -0.110431634 0 -0.99388367 -0.110431634 -0.10976413 -0.9878783 0.109764494 -0.10976413 -0.9878783 0.109764494 -0.10976413 -0.9878783 0.109764494 0.10976413 -0.9878783 0.109764494 0.10976413 -0.9878783 0.109764494 0.10976413 -0.9878783 0.109764494 -0.13385168 0.98781985 0.079344824 0.13385168 0.98781985 0.079344824 -0.15627252 0.9860295 -0.057660095 -0.15627252 0.9860295 -0.057660095 -0.15627252 0.9860295 -0.057660095 0.15627252 0.9860295 -0.057660095 0.15627252 0.9860295 -0.057660095 0.15627252 0.9860295 -0.057660095 -0.10976413 -0.9878783 -0.109764494 -0.10976413 -0.9878783 -0.109764494 -0.10976413 -0.9878783 -0.109764494 0.10976413 -0.9878783 -0.109764494 0.10976413 -0.9878783 -0.109764494 0.10976413 -0.9878783 -0.109764494 + + + + + + + + + + 0.347886 0.29684 0.347886 0.209656 0.43507 0.29684 0.435071 0.209656 0.046247 0.209656 0.137031 0.209656 0.046247 0.296841 0.137031 0.296841 0.13789 0.396787 0.0462471 0.396787 0.13789 0.309602 0.046247 0.309602 0.13789 0.109709 0.13789 0.196894 0.046247 0.109709 0.046247 0.196894 0.146872 0.209656 0.236299 0.209656 0.146872 0.29684 0.236299 0.296841 0.244627 0.209656 0.338437 0.209656 0.244627 0.296841 0.338437 0.29684 0.43507 0.29684 0.43507 0.303221 0.347886 0.29684 0.347886 0.303221 0.046247 0.296841 0.0416657 0.296841 0.046247 0.209656 0.0416657 0.209656 0.046247 0.296841 0.137031 0.296841 0.046247 0.303221 0.139201 0.303221 0.43507 0.203275 0.435071 0.209656 0.347886 0.203275 0.347886 0.209656 0.046247 0.209656 0.046247 0.203275 0.137031 0.209656 0.139201 0.203275 0.147432 0.303221 0.146872 0.29684 0.234616 0.303221 0.236299 0.296841 0.141612 0.294474 0.141612 0.209494 0.147432 0.203275 0.234616 0.203275 0.146872 0.209656 0.236299 0.209656 0.244627 0.296841 0.338437 0.29684 0.247388 0.303221 0.338437 0.303221 0.241096 0.296841 0.236299 0.296841 0.241096 0.209656 0.236299 0.209656 0.244627 0.209656 0.247388 0.203275 0.338437 0.209656 0.338437 0.203275 0.341505 0.29684 0.338437 0.29684 0.341505 0.209656 0.338437 0.209656 0.046247 0.303221 0.0416657 0.296841 0.046247 0.296841 0.0416657 0.209656 0.046247 0.203275 0.046247 0.209656 0.141612 0.294474 0.141612 0.209494 0.241096 0.296841 0.234616 0.303221 0.236299 0.296841 0.234616 0.203275 0.241096 0.209656 0.236299 0.209656 0.341505 0.29684 0.338437 0.303221 0.338437 0.29684 0.338437 0.203275 0.341505 0.209656 0.338437 0.209656 + + + + + + + + + + + + + + +

5 6 4 5 7 6 5 49 7 49 48 7 33 34 32 33 35 34 33 76 35 42 40 41 42 41 43 42 43 77 1 2 0 1 3 2 9 10 8 9 11 10 13 14 12 13 15 14 17 18 16 17 19 18 21 22 20 21 23 22 25 26 24 25 27 26 29 30 28 29 31 30 37 38 36 37 39 38 45 46 44 45 47 46 51 52 50 51 53 52 55 56 54 55 57 56 59 60 58 59 61 60 63 64 62 63 65 64 67 68 66 67 69 68 70 71 72 73 74 75 78 79 80 81 82 83 84 85 86 87 88 89

+
+
+
+ + + + -0.44775116 1.1935387 -2.091289 0.44775116 1.1935387 -2.091289 -0.44775116 0.111664474 -2.0912929 0.44775116 0.111664474 -2.0912929 0.44775116 -0.00025963783 -1.9793696 0.44775116 -0.00027406216 1.9914186 -0.44775116 -0.00025963783 -1.9793696 -0.44775116 -0.00027406216 1.9914186 -0.559675 0.11164969 1.9914191 -0.559675 1.1935239 1.9914229 -0.559675 0.11166412 -1.9793692 -0.559675 1.1935382 -1.9793653 0.559675 1.1935382 -1.9793653 0.559675 1.1935239 1.9914229 0.559675 0.11166412 -1.9793692 0.559675 0.11164969 1.9914191 0.44775116 0.111649334 2.1033425 0.44775116 1.1935234 2.1033463 -0.44775116 0.111649334 2.1033425 -0.44775116 1.1935234 2.1033463 0.44775116 1.3054476 1.9914234 0.44775116 1.305462 -1.9793649 -0.44775116 1.3054476 1.9914234 -0.44775116 1.305462 -1.9793649 -0.44775116 0.111664474 -2.0912929 -0.559675 0.11166412 -1.9793692 -0.44775116 1.1935387 -2.091289 -0.559675 1.1935382 -1.9793653 -0.44775116 -0.00025963783 -1.9793696 -0.44775116 0.111664474 -2.0912929 0.44775116 -0.00025963783 -1.9793696 0.44775116 0.111664474 -2.0912929 -0.559675 0.11166412 -1.9793692 -0.44775116 -0.00025963783 -1.9793696 -0.559675 0.11164969 1.9914191 -0.44775116 -0.00027406216 1.9914186 0.559675 0.11166412 -1.9793692 0.44775116 0.111664474 -2.0912929 0.559675 1.1935382 -1.9793653 0.44775116 1.1935387 -2.091289 0.44775116 -0.00025963783 -1.9793696 0.559675 0.11166412 -1.9793692 0.44775116 -0.00027406216 1.9914186 0.559675 0.11164969 1.9914191 -0.559675 0.11164969 1.9914191 -0.44775116 0.111649334 2.1033425 -0.559675 1.1935239 1.9914229 -0.44775116 1.1935234 2.1033463 -0.44775116 0.111649334 2.1033425 -0.44775116 -0.00027406216 1.9914186 0.44775116 0.111649334 2.1033425 0.44775116 -0.00027406216 1.9914186 0.44775116 0.111649334 2.1033425 0.559675 0.11164969 1.9914191 0.44775116 1.1935234 2.1033463 0.559675 1.1935239 1.9914229 -0.559675 1.1935239 1.9914229 -0.44775116 1.3054476 1.9914234 -0.559675 1.1935382 -1.9793653 -0.44775116 1.305462 -1.9793649 -0.44775116 1.3054476 1.9914234 -0.44775116 1.1935234 2.1033463 0.44775116 1.3054476 1.9914234 0.44775116 1.1935234 2.1033463 0.44775116 1.3054476 1.9914234 0.559675 1.1935239 1.9914229 0.44775116 1.305462 -1.9793649 0.559675 1.1935382 -1.9793653 -0.44775116 1.1935387 -2.091289 -0.44775116 1.305462 -1.9793649 0.44775116 1.1935387 -2.091289 0.44775116 1.305462 -1.9793649 -0.559675 0.11166412 -1.9793692 -0.44775116 0.111664474 -2.0912929 -0.44775116 -0.00025963783 -1.9793696 0.44775116 0.111664474 -2.0912929 0.559675 0.11166412 -1.9793692 0.44775116 -0.00025963783 -1.9793696 -0.44775116 0.111649334 2.1033425 -0.559675 0.11164969 1.9914191 -0.44775116 -0.00027406216 1.9914186 0.559675 0.11164969 1.9914191 0.44775116 0.111649334 2.1033425 0.44775116 -0.00027406216 1.9914186 -0.44775116 1.3054476 1.9914234 -0.559675 1.1935239 1.9914229 -0.44775116 1.1935234 2.1033463 0.559675 1.1935239 1.9914229 0.44775116 1.3054476 1.9914234 0.44775116 1.1935234 2.1033463 -0.44775116 1.1935387 -2.091289 -0.559675 1.1935382 -1.9793653 -0.44775116 1.305462 -1.9793649 0.559675 1.1935382 -1.9793653 0.44775116 1.1935387 -2.091289 0.44775116 1.305462 -1.9793649 + + + + + + + + + + 0 3.6199904E-06 -1 0 3.6199904E-06 -1 0 3.6199904E-06 -1 0 3.6199904E-06 -1 0 -1 -3.6199901E-06 0 -1 -3.6199901E-06 0 -1 -3.6199901E-06 0 -1 -3.6199901E-06 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -3.6199904E-06 1 0 -3.6199904E-06 1 0 -3.6199904E-06 1 0 -3.6199904E-06 1 0 1 3.6199901E-06 0 1 3.6199901E-06 0 1 3.6199901E-06 0 1 3.6199901E-06 -0.11043196 3.5978492E-06 -0.9938837 -0.11043196 3.5978492E-06 -0.9938837 -0.11043196 3.5978492E-06 -0.9938837 -0.11043196 3.5978492E-06 -0.9938837 0 -0.11042801 -0.9938841 0 -0.11042801 -0.9938841 0 -0.11042801 -0.9938841 0 -0.11042801 -0.9938841 -0.70710677 -0.70710677 -2.5597196E-06 -0.70710677 -0.70710677 -2.5597196E-06 -0.70710677 -0.70710677 -2.5597196E-06 -0.70710677 -0.70710677 -2.5597196E-06 0.11043196 3.5978492E-06 -0.9938837 0.11043196 3.5978492E-06 -0.9938837 0.11043196 3.5978492E-06 -0.9938837 0.11043196 3.5978492E-06 -0.9938837 0.70710677 -0.70710677 -2.5597196E-06 0.70710677 -0.70710677 -2.5597196E-06 0.70710677 -0.70710677 -2.5597196E-06 0.70710677 -0.70710677 -2.5597196E-06 -0.11043196 -3.5978492E-06 0.9938837 -0.11043196 -3.5978492E-06 0.9938837 -0.11043196 -3.5978492E-06 0.9938837 -0.11043196 -3.5978492E-06 0.9938837 0 -0.11043555 0.99388325 0 -0.11043555 0.99388325 0 -0.11043555 0.99388325 0 -0.11043555 0.99388325 0.11043196 -3.5978492E-06 0.9938837 0.11043196 -3.5978492E-06 0.9938837 0.11043196 -3.5978492E-06 0.9938837 0.11043196 -3.5978492E-06 0.9938837 -0.70710677 0.70710677 2.5597196E-06 -0.70710677 0.70710677 2.5597196E-06 -0.70710677 0.70710677 2.5597196E-06 -0.70710677 0.70710677 2.5597196E-06 0 0.11042836 0.9938841 0 0.11042836 0.9938841 0 0.11042836 0.9938841 0 0.11042836 0.9938841 0.70710677 0.70710677 2.5597196E-06 0.70710677 0.70710677 2.5597196E-06 0.70710677 0.70710677 2.5597196E-06 0.70710677 0.70710677 2.5597196E-06 0 0.1104351 -0.9938833 0 0.1104351 -0.9938833 0 0.1104351 -0.9938833 0 0.1104351 -0.9938833 -0.109764814 -0.109760866 -0.9878786 -0.109764814 -0.109760866 -0.9878786 -0.109764814 -0.109760866 -0.9878786 0.109764814 -0.109760866 -0.9878786 0.109764814 -0.109760866 -0.9878786 0.109764814 -0.109760866 -0.9878786 -0.109764814 -0.10976802 0.98787785 -0.109764814 -0.10976802 0.98787785 -0.109764814 -0.10976802 0.98787785 0.109764814 -0.10976802 0.98787785 0.109764814 -0.10976802 0.98787785 0.109764814 -0.10976802 0.98787785 -0.109764814 0.109760866 0.9878786 -0.109764814 0.109760866 0.9878786 -0.109764814 0.109760866 0.9878786 0.109764814 0.109760866 0.9878786 0.109764814 0.109760866 0.9878786 0.109764814 0.109760866 0.9878786 -0.10976446 0.10976803 -0.9878779 -0.10976446 0.10976803 -0.9878779 -0.10976446 0.10976803 -0.9878779 0.10976446 0.10976803 -0.9878779 0.10976446 0.10976803 -0.9878779 0.10976446 0.10976803 -0.9878779 + + + + + + + + + + 0.884672 0.29859 0.884672 0.203273 0.983389 0.29859 0.983389 0.203273 0.520208 0.203273 0.632993 0.203273 0.520208 0.29859 0.632993 0.29859 0.632993 0.320716 0.632993 0.419433 0.520208 0.320716 0.520208 0.419433 0.520208 0.082429 0.632993 0.082429 0.520208 0.181147 0.632993 0.181147 0.646385 0.203273 0.745103 0.203273 0.646385 0.29859 0.745103 0.29859 0.758495 0.203273 0.87128 0.203273 0.758495 0.29859 0.87128 0.29859 0.983389 0.29859 0.983389 0.310503 0.884672 0.29859 0.884672 0.310503 0.520208 0.29859 0.517029 0.29859 0.520208 0.203273 0.517029 0.203273 0.520208 0.310503 0.520208 0.29859 0.632993 0.310503 0.632993 0.29859 0.983389 0.19136 0.983389 0.203273 0.884672 0.19136 0.884672 0.203273 0.520208 0.203273 0.520208 0.19136 0.632993 0.203273 0.632993 0.19136 0.646385 0.310503 0.646385 0.29859 0.745103 0.310503 0.745103 0.29859 0.636172 0.29859 0.632993 0.29859 0.636172 0.203273 0.632993 0.203273 0.646385 0.203273 0.646385 0.19136 0.745103 0.203273 0.745103 0.19136 0.758495 0.310503 0.758495 0.29859 0.87128 0.310503 0.87128 0.29859 0.755316 0.29859 0.745103 0.29859 0.755316 0.203273 0.745103 0.203273 0.758495 0.203273 0.758495 0.19136 0.87128 0.203273 0.87128 0.19136 0.874459 0.29859 0.87128 0.29859 0.874459 0.203273 0.87128 0.203273 0.520208 0.310503 0.517029 0.29859 0.520208 0.29859 0.517029 0.203273 0.520208 0.19136 0.520208 0.203273 0.636172 0.29859 0.632993 0.310503 0.632993 0.29859 0.632993 0.19136 0.636172 0.203273 0.632993 0.203273 0.755316 0.29859 0.745103 0.310503 0.745103 0.29859 0.745103 0.19136 0.755316 0.203273 0.745103 0.203273 0.874459 0.29859 0.87128 0.310503 0.87128 0.29859 0.87128 0.19136 0.874459 0.203273 0.87128 0.203273 + + + + + + + + + + + + + + +

0 1 2 2 1 3 4 5 6 6 5 7 8 9 10 10 9 11 12 13 14 14 13 15 16 17 18 18 17 19 20 21 22 22 21 23 24 25 26 26 25 27 28 29 30 30 29 31 32 33 34 34 33 35 36 37 38 38 37 39 40 41 42 42 41 43 44 45 46 46 45 47 48 49 50 50 49 51 52 53 54 54 53 55 56 57 58 58 57 59 60 61 62 62 61 63 64 65 66 66 65 67 68 69 70 70 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

+
+
+
+ + + + -0.419823 2.0589292 1.0881824 0.419823 2.0589292 1.0881824 -0.419823 1.4174311 1.0881802 0.419823 1.4174311 1.0881802 0.419823 1.3372538 1.168357 0.419823 1.3372474 2.9540935 -0.419823 1.3372538 1.168357 -0.419823 1.3372474 2.9540935 -0.5 1.4174244 2.954094 -0.5 2.0589223 2.9540963 -0.5 1.4174309 1.1683573 -0.5 2.058929 1.1683596 0.5 2.058929 1.1683596 0.5 2.0589223 2.9540963 0.5 1.4174309 1.1683573 0.5 1.4174244 2.954094 0.419823 1.4174241 3.0342717 0.419823 2.058922 3.034274 -0.419823 1.4174241 3.0342717 -0.419823 2.058922 3.034274 0.419823 2.1390994 2.9540963 0.419823 2.1391058 1.1683599 -0.419823 2.1390994 2.9540963 -0.419823 2.1391058 1.1683599 -0.419823 1.4174311 1.0881802 -0.5 1.4174309 1.1683573 -0.419823 2.0589292 1.0881824 -0.5 2.058929 1.1683596 -0.419823 1.3372538 1.168357 -0.419823 1.4174311 1.0881802 0.419823 1.3372538 1.168357 0.419823 1.4174311 1.0881802 -0.5 1.4174309 1.1683573 -0.419823 1.3372538 1.168357 -0.5 1.4174244 2.954094 -0.419823 1.3372474 2.9540935 0.5 1.4174309 1.1683573 0.419823 1.4174311 1.0881802 0.5 2.058929 1.1683596 0.419823 2.0589292 1.0881824 0.419823 1.3372538 1.168357 0.5 1.4174309 1.1683573 0.419823 1.3372474 2.9540935 0.5 1.4174244 2.954094 -0.5 1.4174244 2.954094 -0.419823 1.4174241 3.0342717 -0.5 2.0589223 2.9540963 -0.419823 2.058922 3.034274 -0.419823 1.4174241 3.0342717 -0.419823 1.3372474 2.9540935 0.419823 1.4174241 3.0342717 0.419823 1.3372474 2.9540935 0.419823 1.4174241 3.0342717 0.5 1.4174244 2.954094 0.419823 2.058922 3.034274 0.5 2.0589223 2.9540963 -0.5 2.0589223 2.9540963 -0.419823 2.1390994 2.9540963 -0.5 2.058929 1.1683596 -0.419823 2.1391058 1.1683599 -0.419823 2.1390994 2.9540963 -0.419823 2.058922 3.034274 0.419823 2.1390994 2.9540963 0.419823 2.058922 3.034274 0.419823 2.1390994 2.9540963 0.5 2.0589223 2.9540963 0.419823 2.1391058 1.1683599 0.5 2.058929 1.1683596 -0.419823 2.0589292 1.0881824 -0.419823 2.1391058 1.1683599 0.419823 2.0589292 1.0881824 0.419823 2.1391058 1.1683599 -0.5 1.4174309 1.1683573 -0.419823 1.4174311 1.0881802 -0.419823 1.3372538 1.168357 0.419823 1.4174311 1.0881802 0.5 1.4174309 1.1683573 0.419823 1.3372538 1.168357 -0.419823 1.4174241 3.0342717 -0.5 1.4174244 2.954094 -0.419823 1.3372474 2.9540935 0.5 1.4174244 2.954094 0.419823 1.4174241 3.0342717 0.419823 1.3372474 2.9540935 -0.419823 2.1390994 2.9540963 -0.5 2.0589223 2.9540963 -0.419823 2.058922 3.034274 0.5 2.0589223 2.9540963 0.419823 2.1390994 2.9540963 0.419823 2.058922 3.034274 -0.419823 2.0589292 1.0881824 -0.5 2.058929 1.1683596 -0.419823 2.1391058 1.1683599 0.5 2.058929 1.1683596 0.419823 2.0589292 1.0881824 0.419823 2.1391058 1.1683599 + + + + + + + + + + 0 3.6199901E-06 -1 0 3.6199901E-06 -1 0 3.6199901E-06 -1 0 3.6199901E-06 -1 0 -1 -3.6199901E-06 0 -1 -3.6199901E-06 0 -1 -3.6199901E-06 0 -1 -3.6199901E-06 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -3.6199901E-06 1 0 -3.6199901E-06 1 0 -3.6199901E-06 1 0 -3.6199901E-06 1 0 1 3.6199901E-06 0 1 3.6199901E-06 0 1 3.6199901E-06 0 1 3.6199901E-06 -0.110431634 3.5978492E-06 -0.99388367 -0.110431634 3.5978492E-06 -0.99388367 -0.110431634 3.5978492E-06 -0.99388367 -0.110431634 3.5978492E-06 -0.99388367 0 -0.110428035 -0.9938841 0 -0.110428035 -0.9938841 0 -0.110428035 -0.9938841 0 -0.110428035 -0.9938841 -0.7071068 -0.7071068 -2.5597196E-06 -0.7071068 -0.7071068 -2.5597196E-06 -0.7071068 -0.7071068 -2.5597196E-06 -0.7071068 -0.7071068 -2.5597196E-06 0.110431634 3.5978492E-06 -0.99388367 0.110431634 3.5978492E-06 -0.99388367 0.110431634 3.5978492E-06 -0.99388367 0.110431634 3.5978492E-06 -0.99388367 0.7071068 -0.7071068 -2.5597196E-06 0.7071068 -0.7071068 -2.5597196E-06 0.7071068 -0.7071068 -2.5597196E-06 0.7071068 -0.7071068 -2.5597196E-06 -0.110431634 -3.5978492E-06 0.99388367 -0.110431634 -3.5978492E-06 0.99388367 -0.110431634 -3.5978492E-06 0.99388367 -0.110431634 -3.5978492E-06 0.99388367 0 -0.11043523 0.99388325 0 -0.11043523 0.99388325 0 -0.11043523 0.99388325 0 -0.11043523 0.99388325 0.110431634 -3.5978492E-06 0.99388367 0.110431634 -3.5978492E-06 0.99388367 0.110431634 -3.5978492E-06 0.99388367 0.110431634 -3.5978492E-06 0.99388367 -0.7071068 0.7071068 2.5597196E-06 -0.7071068 0.7071068 2.5597196E-06 -0.7071068 0.7071068 2.5597196E-06 -0.7071068 0.7071068 2.5597196E-06 0 0.110428035 0.9938841 0 0.110428035 0.9938841 0 0.110428035 0.9938841 0 0.110428035 0.9938841 0.7071068 0.7071068 2.5597196E-06 0.7071068 0.7071068 2.5597196E-06 0.7071068 0.7071068 2.5597196E-06 0.7071068 0.7071068 2.5597196E-06 0 0.11043523 -0.99388325 0 0.11043523 -0.99388325 0 0.11043523 -0.99388325 0 0.11043523 -0.99388325 -0.109764494 -0.109760545 -0.98787874 -0.109764494 -0.109760545 -0.98787874 -0.109764494 -0.109760545 -0.98787874 0.109764494 -0.109760545 -0.98787874 0.109764494 -0.109760545 -0.98787874 0.109764494 -0.109760545 -0.98787874 -0.10976451 -0.10976772 0.98787796 -0.10976451 -0.10976772 0.98787796 -0.10976451 -0.10976772 0.98787796 0.10976451 -0.10976772 0.98787796 0.10976451 -0.10976772 0.98787796 0.10976451 -0.10976772 0.98787796 -0.109764494 0.109760545 0.98787874 -0.109764494 0.109760545 0.98787874 -0.109764494 0.109760545 0.98787874 0.109764494 0.109760545 0.98787874 0.109764494 0.109760545 0.98787874 0.109764494 0.109760545 0.98787874 -0.10976451 0.10976772 -0.98787796 -0.10976451 0.10976772 -0.98787796 -0.10976451 0.10976772 -0.98787796 0.10976451 0.10976772 -0.98787796 0.10976451 0.10976772 -0.98787796 0.10976451 0.10976772 -0.98787796 + + + + + + + + + + 0.878021 0.777571 0.878021 0.680943 0.970088 0.777571 0.970088 0.680943 0.526012 0.680943 0.63161 0.680943 0.526012 0.777571 0.63161 0.777571 0.63161 0.798304 0.63161 0.890372 0.526012 0.798304 0.526012 0.890372 0.526012 0.568142 0.63161 0.568142 0.526012 0.660209 0.63161 0.660209 0.647859 0.680943 0.739926 0.680943 0.647859 0.777571 0.739926 0.777571 0.756174 0.680943 0.861773 0.680943 0.756174 0.777571 0.861773 0.777571 0.970088 0.777571 0.970088 0.786798 0.878021 0.777571 0.878021 0.786797 0.526012 0.777571 0.52127 0.777571 0.526012 0.680943 0.52127 0.680943 0.526012 0.786798 0.526012 0.777571 0.63161 0.786798 0.63161 0.777571 0.970088 0.671716 0.970088 0.680943 0.878021 0.671716 0.878021 0.680943 0.526012 0.680943 0.526012 0.671716 0.63161 0.680943 0.63161 0.671716 0.647859 0.786798 0.647859 0.777571 0.739926 0.786797 0.739926 0.777571 0.636352 0.777571 0.63161 0.777571 0.636352 0.680943 0.63161 0.680943 0.647859 0.680943 0.647859 0.671716 0.739926 0.680943 0.739926 0.671716 0.756174 0.786797 0.756174 0.777571 0.861773 0.786797 0.861773 0.777571 0.751433 0.777571 0.739926 0.777571 0.751433 0.680943 0.739926 0.680943 0.756174 0.680943 0.756174 0.671716 0.861773 0.680943 0.861773 0.671716 0.866514 0.777571 0.861773 0.777571 0.866514 0.680943 0.861773 0.680943 0.526012 0.786798 0.52127 0.777571 0.526012 0.777571 0.52127 0.680943 0.526012 0.671716 0.526012 0.680943 0.636352 0.777571 0.63161 0.786798 0.63161 0.777571 0.63161 0.671716 0.636352 0.680943 0.63161 0.680943 0.751433 0.777571 0.739926 0.786797 0.739926 0.777571 0.739926 0.671716 0.751433 0.680943 0.739926 0.680943 0.866514 0.777571 0.861773 0.786797 0.861773 0.777571 0.861773 0.671716 0.866514 0.680943 0.861773 0.680943 + + + + + + + + + + + + + + +

0 1 2 2 1 3 4 5 6 6 5 7 8 9 10 10 9 11 12 13 14 14 13 15 16 17 18 18 17 19 20 21 22 22 21 23 24 25 26 26 25 27 28 29 30 30 29 31 32 33 34 34 33 35 36 37 38 38 37 39 40 41 42 42 41 43 44 45 46 46 45 47 48 49 50 50 49 51 52 53 54 54 53 55 56 57 58 58 57 59 60 61 62 62 61 63 64 65 66 66 65 67 68 69 70 70 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

+
+
+
+ + + + -1.63548 0 3.5937333 1.63548 0 3.5937333 -1.63548 0 -3.2826052 1.63548 0 -3.2826052 + + + + + + + + + + 0 0 1 0 0 1 1 1 + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + + + + + + +

0 1 2 2 1 3

+
+
+
+ + + + -0.0136503 0 2.1922877 0.013109899 0 2.1916878 -0.013109899 0 2.167752 0.0136503 0 2.1671522 + + + + + + + + + + 0 0 1 0 0 1 1 1 + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + + + + + + +

0 1 2 2 1 3

+
+
+
+ + + + 0.16779971 0.0157098 1.5720519 0.16766381 0.0157098 1.5572478 0.1400882 0.0157098 1.5721723 0.1399523 0.0157098 1.5573682 + + + + + + + + + + 1 0 1 1 0 0 0 1 + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + + + + + + +

0 1 2 2 1 3

+
+
+
+ + + + -0.0136503 0 2.1922877 0.013109899 0 2.1916878 -0.013109899 0 2.167752 0.0136503 0 2.1671522 + + + + + + + + + + 0 0 1 0 0 1 1 1 + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + + + + + + +

0 1 2 2 1 3

+
+
+
+
+ + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_low_root block01Pg block02Pg block03Pg block04Pg sdwPg sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.7213967 0 -0 1 -1.53233 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.44816667 0 -0 1 1.66767 0 0 0 1 0.8933756 0 0 -0 -0 -1.0780068E-06 0.29779273 -0.0017940426 0 -0.8933756 -3.234011E-06 0.5830115 0 0 0 1 1 0 0 -0 -0 -1.2066635E-06 0.33333334 -0.37311122 0 -1 -3.6199904E-06 1.7381841 0 0 0 1 1 -0 0 0 -0 1 -0 0 0 -0 0.9033587 -0.1405301 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 100.00001 -0 0 -15.387602 -0 100.00001 -0 -1.5709802 0 -0 100.00001 -156.47101 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_low_root block01Pg block02Pg block03Pg block04Pg sdwPg sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.7213967 0 -0 1 -1.53233 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.44816667 0 -0 1 1.66767 0 0 0 1 0.8933756 0 0 -0 -0 -1.0780068E-06 0.29779273 -0.0017940426 0 -0.8933756 -3.234011E-06 0.5830115 0 0 0 1 1 0 0 -0 -0 -1.2066635E-06 0.33333334 -0.37311122 0 -1 -3.6199904E-06 1.7381841 0 0 0 1 1 -0 0 0 -0 1 -0 0 0 -0 0.9033587 -0.1405301 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 100.00001 -0 0 -15.387602 -0 100.00001 -0 -1.5709802 0 -0 100.00001 -156.47101 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 2 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_low_root block01Pg block02Pg block03Pg block04Pg sdwPg sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.7213967 0 -0 1 -1.53233 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.44816667 0 -0 1 1.66767 0 0 0 1 0.8933756 0 0 -0 -0 -1.0780068E-06 0.29779273 -0.0017940426 0 -0.8933756 -3.234011E-06 0.5830115 0 0 0 1 1 0 0 -0 -0 -1.2066635E-06 0.33333334 -0.37311122 0 -1 -3.6199904E-06 1.7381841 0 0 0 1 1 -0 0 0 -0 1 -0 0 0 -0 0.9033587 -0.1405301 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 100.00001 -0 0 -15.387602 -0 100.00001 -0 -1.5709802 0 -0 100.00001 -156.47101 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 3 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_low_root block01Pg block02Pg block03Pg block04Pg sdwPg sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.7213967 0 -0 1 -1.53233 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.44816667 0 -0 1 1.66767 0 0 0 1 0.8933756 0 0 -0 -0 -1.0780068E-06 0.29779273 -0.0017940426 0 -0.8933756 -3.234011E-06 0.5830115 0 0 0 1 1 0 0 -0 -0 -1.2066635E-06 0.33333334 -0.37311122 0 -1 -3.6199904E-06 1.7381841 0 0 0 1 1 -0 0 0 -0 1 -0 0 0 -0 0.9033587 -0.1405301 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 100.00001 -0 0 -15.387602 -0 100.00001 -0 -1.5709802 0 -0 100.00001 -156.47101 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 4 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_low_root block01Pg block02Pg block03Pg block04Pg sdwPg sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.7213967 0 -0 1 -1.53233 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.44816667 0 -0 1 1.66767 0 0 0 1 0.8933756 0 0 -0 -0 -1.0780068E-06 0.29779273 -0.0017940426 0 -0.8933756 -3.234011E-06 0.5830115 0 0 0 1 1 0 0 -0 -0 -1.2066635E-06 0.33333334 -0.37311122 0 -1 -3.6199904E-06 1.7381841 0 0 0 1 1 -0 0 0 -0 1 -0 0 0 -0 0.9033587 -0.1405301 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 100.00001 -0 0 -15.387602 -0 100.00001 -0 -1.5709802 0 -0 100.00001 -156.47101 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 + 5 0 5 0 5 0 5 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_low_root block01Pg block02Pg block03Pg block04Pg sdwPg sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.7213967 0 -0 1 -1.53233 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.44816667 0 -0 1 1.66767 0 0 0 1 0.8933756 0 0 -0 -0 -1.0780068E-06 0.29779273 -0.0017940426 0 -0.8933756 -3.234011E-06 0.5830115 0 0 0 1 1 0 0 -0 -0 -1.2066635E-06 0.33333334 -0.37311122 0 -1 -3.6199904E-06 1.7381841 0 0 0 1 1 -0 0 0 -0 1 -0 0 0 -0 0.9033587 -0.1405301 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 100.00001 -0 0 -15.387602 -0 100.00001 -0 -1.5709802 0 -0 100.00001 -156.47101 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 + 6 0 6 0 6 0 6 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_low_root block01Pg block02Pg block03Pg block04Pg sdwPg sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.7213967 0 -0 1 -1.53233 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.44816667 0 -0 1 1.66767 0 0 0 1 0.8933756 0 0 -0 -0 -1.0780068E-06 0.29779273 -0.0017940426 0 -0.8933756 -3.234011E-06 0.5830115 0 0 0 1 1 0 0 -0 -0 -1.2066635E-06 0.33333334 -0.37311122 0 -1 -3.6199904E-06 1.7381841 0 0 0 1 1 -0 0 0 -0 1 -0 0 0 -0 0.9033587 -0.1405301 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 100.00001 -0 0 -15.387602 -0 100.00001 -0 -1.5709802 0 -0 100.00001 -156.47101 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 + 7 0 7 0 7 0 7 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_low_root block01Pg block02Pg block03Pg block04Pg sdwPg sdwPg2 sdwPg3 sdwPg4 + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.7213967 0 -0 1 -1.53233 0 0 0 1 1 -0 0 0 -0 0.33333334 -0 -0.44816667 0 -0 1 1.66767 0 0 0 1 0.8933756 0 0 -0 -0 -1.0780068E-06 0.29779273 -0.0017940426 0 -0.8933756 -3.234011E-06 0.5830115 0 0 0 1 1 0 0 -0 -0 -1.2066635E-06 0.33333334 -0.37311122 0 -1 -3.6199904E-06 1.7381841 0 0 0 1 1 -0 0 0 -0 1 -0 0 0 -0 0.9033587 -0.1405301 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 100.00001 -0 0 -15.387602 -0 100.00001 -0 -1.5709802 0 -0 100.00001 -156.47101 0 0 0 1 100.00001 -0 0 0 -0 100.00001 -0 0 0 -0 100.00001 -217.97202 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 + 8 0 8 0 8 0 8 0 + + + + + + + + 0 0 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + 0 2.16419 1.53233 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 3 1 + + + 0 1.3445 -1.66767 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 3 1 + + + 0 0.652594 0.00602683 + 0 0 1 0 + 0 1 0 0 + 1 0 0 90.000206 + 1.11935 3.35804 1.11935 + + + 0 1.73818 1.11934 + 0 0 1 0 + 0 1 0 0 + 1 0 0 90.000206 + 1 3 1 + + + 0 0 0.155564 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1.10698 + + + 0 0 2.17972 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 0.01 0.01 0.01 + + + 0.153876 0.0157098 1.56471 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 0.01 0.01 0.01 + + + 0 0 2.17972 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 0.01 0.01 0.01 + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_low_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_low_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_low_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_low_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_low_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_low_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_low_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_low_root_bone_id + + + + + + + + + + + + +
\ No newline at end of file diff --git a/Assets/Resources/Models/Games/Airboarder/wall_low_model.dae.meta b/Assets/Resources/Models/Games/Airboarder/wall_low_model.dae.meta new file mode 100644 index 000000000..c5eb68b54 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/wall_low_model.dae.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: be3f852a27432fb43b99df273a935ca0 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/Airboarder/wall_low_model_merge.dae b/Assets/Resources/Models/Games/Airboarder/wall_low_model_merge.dae new file mode 100644 index 000000000..f5679284f --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/wall_low_model_merge.dae @@ -0,0 +1,317 @@ + + + + 2024-02-25T16:09:58.2950751-06:00 + 2024-02-25T16:09:58.2950798-06:00 + + + + ./airboy_board.png + + + ./airboy_body.png + + + ./airboy_face.0.png + + + ./airboy_face.1.png + + + ./airboy_face.2.png + + + ./airboy_shadow.png + + + ./block_shadow.png + + + ./dog.png + + + ./dog_sdw.png + + + ./floor.png + + + ./metal_env.png + + + ./mother_ship.png + + + ./wall_body.png + + + ./cloud01.png + + + + + + + + + + + + + + + + wall_body + PNG + + + + + blockMt_surf + WRAP + WRAP + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + block_shadow + PNG + + + + + sdwMt_surf + WRAP + WRAP + LINEAR_MIPMAP_NEAREST + LINEAR + LINEAR + + + + + + + + + + + + + + + + + -0.40001 2.143075 1.13232 0.40001 2.143075 1.13232 -0.40001 2.143075 1.93234 0.40001 2.143075 1.93234 0.40001 2.243065 2.03233 0.40001 3.36188 2.03233 -0.40001 2.243065 2.03233 -0.40001 3.36188 2.03233 -0.5 3.36188 1.93234 -0.5 3.36188 1.13232 -0.5 2.243065 1.93234 -0.5 2.243065 1.13232 0.5 2.243065 1.13232 0.5 3.36188 1.13232 0.5 2.243065 1.93234 0.5 3.36188 1.93234 0.40001 3.46187 1.93234 0.40001 3.46187 1.13232 -0.40001 3.46187 1.93234 -0.40001 3.46187 1.13232 0.40001 3.36188 1.03233 0.40001 2.243065 1.03233 -0.40001 3.36188 1.03233 -0.40001 2.243065 1.03233 -0.40001 2.143075 1.93234 -0.5 2.243065 1.93234 -0.40001 2.143075 1.13232 -0.5 2.243065 1.13232 -0.40001 2.243065 2.03233 -0.40001 2.143075 1.93234 0.40001 2.243065 2.03233 0.40001 2.143075 1.93234 -0.5 2.243065 1.93234 -0.40001 2.243065 2.03233 -0.5 3.36188 1.93234 -0.40001 3.36188 2.03233 0.5 2.243065 1.93234 0.40001 2.143075 1.93234 0.5 2.243065 1.13232 0.40001 2.143075 1.13232 0.40001 2.243065 2.03233 0.5 2.243065 1.93234 0.40001 3.36188 2.03233 0.5 3.36188 1.93234 -0.5 3.36188 1.93234 -0.40001 3.46187 1.93234 -0.5 3.36188 1.13232 -0.40001 3.46187 1.13232 -0.40001 3.46187 1.93234 -0.40001 3.36188 2.03233 0.40001 3.46187 1.93234 0.40001 3.36188 2.03233 0.40001 3.46187 1.93234 0.5 3.36188 1.93234 0.40001 3.46187 1.13232 0.5 3.36188 1.13232 -0.5 3.36188 1.13232 -0.40001 3.36188 1.03233 -0.5 2.243065 1.13232 -0.40001 2.243065 1.03233 -0.40001 3.36188 1.03233 -0.40001 3.46187 1.13232 0.40001 3.36188 1.03233 0.40001 3.46187 1.13232 0.40001 3.36188 1.03233 0.5 3.36188 1.13232 0.40001 2.243065 1.03233 0.5 2.243065 1.13232 -0.40001 2.143075 1.13232 -0.40001 2.243065 1.03233 0.40001 2.143075 1.13232 0.40001 2.243065 1.03233 -0.5 2.243065 1.93234 -0.40001 2.143075 1.93234 -0.40001 2.243065 2.03233 0.40001 2.143075 1.93234 0.5 2.243065 1.93234 0.40001 2.243065 2.03233 -0.40001 3.46187 1.93234 -0.5 3.36188 1.93234 -0.40001 3.36188 2.03233 0.5 3.36188 1.93234 0.40001 3.46187 1.93234 0.40001 3.36188 2.03233 -0.40001 3.36188 1.03233 -0.5 3.36188 1.13232 -0.40001 3.46187 1.13232 0.5 3.36188 1.13232 0.40001 3.36188 1.03233 0.40001 3.46187 1.13232 -0.40001 2.143075 1.13232 -0.5 2.243065 1.13232 -0.40001 2.243065 1.03233 0.5 2.243065 1.13232 0.40001 2.143075 1.13232 0.40001 2.243065 1.03233 -0.436157 1.311202 -2.103827 0.436157 1.311202 -2.103827 -0.436157 1.311202 -1.231513 0.436157 1.311202 -1.231513 0.436157 1.375044 -1.16767 0.436157 2.640167 -1.16767 -0.436157 1.375044 -1.16767 -0.436157 2.640167 -1.16767 -0.5 3.2696 -2.103827 -0.5 1.375044 -2.103827 -0.5 2.67041 -1.231513 -0.5 1.375044 -1.231513 0.5 3.2696 -2.103827 0.5 2.67041 -1.231513 0.5 1.375044 -2.103827 0.5 1.375044 -1.231513 0.436157 2.740157 -1.220294 0.436157 3.354758 -2.115046 -0.436157 2.740157 -1.220294 -0.436157 3.354758 -2.115046 0.436157 3.327062 -2.16767 0.436157 1.375044 -2.16767 -0.436157 3.327062 -2.16767 -0.436157 1.375044 -2.16767 -0.436157 1.311202 -1.231513 -0.5 1.375044 -1.231513 -0.436157 1.311202 -2.103827 -0.5 1.375044 -2.103827 -0.436157 1.375044 -1.16767 -0.436157 1.311202 -1.231513 0.436157 1.375044 -1.16767 0.436157 1.311202 -1.231513 -0.436157 1.375044 -1.16767 -0.436157 2.640167 -1.16767 -0.5 1.375044 -1.231513 -0.5 2.67041 -1.231513 0.5 1.375044 -1.231513 0.436157 1.311202 -1.231513 0.5 1.375044 -2.103827 0.436157 1.311202 -2.103827 0.436157 1.375044 -1.16767 0.5 1.375044 -1.231513 0.436157 2.640167 -1.16767 0.5 2.67041 -1.231513 -0.5 2.67041 -1.231513 -0.436157 2.740157 -1.220294 -0.5 3.2696 -2.103827 -0.436157 3.354758 -2.115046 -0.436157 2.740157 -1.220294 0.436157 2.740157 -1.220294 0.5 2.67041 -1.231513 0.5 3.2696 -2.103827 0.436157 2.740157 -1.220294 0.436157 3.354758 -2.115046 -0.436157 3.327062 -2.16767 -0.436157 1.375044 -2.16767 -0.5 3.2696 -2.103827 -0.5 1.375044 -2.103827 -0.436157 3.327062 -2.16767 -0.436157 3.354758 -2.115046 0.436157 3.327062 -2.16767 0.436157 3.354758 -2.115046 0.436157 3.327062 -2.16767 0.5 3.2696 -2.103827 0.436157 1.375044 -2.16767 0.5 1.375044 -2.103827 -0.436157 1.311202 -2.103827 -0.436157 1.375044 -2.16767 0.436157 1.311202 -2.103827 0.436157 1.375044 -2.16767 -0.5 1.375044 -1.231513 -0.436157 1.311202 -1.231513 -0.436157 1.375044 -1.16767 0.436157 1.311202 -1.231513 0.5 1.375044 -1.231513 0.436157 1.375044 -1.16767 -0.436157 2.740157 -1.220294 0.436157 2.740157 -1.220294 -0.436157 3.327062 -2.16767 -0.5 3.2696 -2.103827 -0.436157 3.354758 -2.115046 0.5 3.2696 -2.103827 0.436157 3.327062 -2.16767 0.436157 3.354758 -2.115046 -0.436157 1.311202 -2.103827 -0.5 1.375044 -2.103827 -0.436157 1.375044 -2.16767 0.5 1.375044 -2.103827 0.436157 1.311202 -2.103827 0.436157 1.375044 -2.16767 -0.4477512 1.193539 -2.091289 0.4477512 1.193539 -2.091289 -0.4477512 0.1116645 -2.091293 0.4477512 0.1116645 -2.091293 0.4477512 -0.0002596893 -1.97937 0.4477512 -0.0002740635 1.991419 -0.4477512 -0.0002596893 -1.97937 -0.4477512 -0.0002740635 1.991419 -0.559675 0.1116497 1.991419 -0.559675 1.193524 1.991423 -0.559675 0.1116641 -1.979369 -0.559675 1.193538 -1.979365 0.559675 1.193538 -1.979365 0.559675 1.193524 1.991423 0.559675 0.1116641 -1.979369 0.559675 0.1116497 1.991419 0.4477512 0.1116493 2.103343 0.4477512 1.193523 2.103347 -0.4477512 0.1116493 2.103343 -0.4477512 1.193523 2.103347 0.4477512 1.305448 1.991423 0.4477512 1.305462 -1.979365 -0.4477512 1.305448 1.991423 -0.4477512 1.305462 -1.979365 -0.4477512 0.1116645 -2.091293 -0.559675 0.1116641 -1.979369 -0.4477512 1.193539 -2.091289 -0.559675 1.193538 -1.979365 -0.4477512 -0.0002596893 -1.97937 -0.4477512 0.1116645 -2.091293 0.4477512 -0.0002596893 -1.97937 0.4477512 0.1116645 -2.091293 -0.559675 0.1116641 -1.979369 -0.4477512 -0.0002596893 -1.97937 -0.559675 0.1116497 1.991419 -0.4477512 -0.0002740635 1.991419 0.559675 0.1116641 -1.979369 0.4477512 0.1116645 -2.091293 0.559675 1.193538 -1.979365 0.4477512 1.193539 -2.091289 0.4477512 -0.0002596893 -1.97937 0.559675 0.1116641 -1.979369 0.4477512 -0.0002740635 1.991419 0.559675 0.1116497 1.991419 -0.559675 0.1116497 1.991419 -0.4477512 0.1116493 2.103343 -0.559675 1.193524 1.991423 -0.4477512 1.193523 2.103347 -0.4477512 0.1116493 2.103343 -0.4477512 -0.0002740635 1.991419 0.4477512 0.1116493 2.103343 0.4477512 -0.0002740635 1.991419 0.4477512 0.1116493 2.103343 0.559675 0.1116497 1.991419 0.4477512 1.193523 2.103347 0.559675 1.193524 1.991423 -0.559675 1.193524 1.991423 -0.4477512 1.305448 1.991423 -0.559675 1.193538 -1.979365 -0.4477512 1.305462 -1.979365 -0.4477512 1.305448 1.991423 -0.4477512 1.193523 2.103347 0.4477512 1.305448 1.991423 0.4477512 1.193523 2.103347 0.4477512 1.305448 1.991423 0.559675 1.193524 1.991423 0.4477512 1.305462 -1.979365 0.559675 1.193538 -1.979365 -0.4477512 1.193539 -2.091289 -0.4477512 1.305462 -1.979365 0.4477512 1.193539 -2.091289 0.4477512 1.305462 -1.979365 -0.559675 0.1116641 -1.979369 -0.4477512 0.1116645 -2.091293 -0.4477512 -0.0002596893 -1.97937 0.4477512 0.1116645 -2.091293 0.559675 0.1116641 -1.979369 0.4477512 -0.0002596893 -1.97937 -0.4477512 0.1116493 2.103343 -0.559675 0.1116497 1.991419 -0.4477512 -0.0002740635 1.991419 0.559675 0.1116497 1.991419 0.4477512 0.1116493 2.103343 0.4477512 -0.0002740635 1.991419 -0.4477512 1.305448 1.991423 -0.559675 1.193524 1.991423 -0.4477512 1.193523 2.103347 0.559675 1.193524 1.991423 0.4477512 1.305448 1.991423 0.4477512 1.193523 2.103347 -0.4477512 1.193539 -2.091289 -0.559675 1.193538 -1.979365 -0.4477512 1.305462 -1.979365 0.559675 1.193538 -1.979365 0.4477512 1.193539 -2.091289 0.4477512 1.305462 -1.979365 -0.419823 2.058929 1.088182 0.419823 2.058929 1.088182 -0.419823 1.417431 1.08818 0.419823 1.417431 1.08818 0.419823 1.337254 1.168357 0.419823 1.337247 2.954093 -0.419823 1.337254 1.168357 -0.419823 1.337247 2.954093 -0.5 1.417424 2.954094 -0.5 2.058923 2.954096 -0.5 1.417431 1.168357 -0.5 2.058929 1.16836 0.5 2.058929 1.16836 0.5 2.058923 2.954096 0.5 1.417431 1.168357 0.5 1.417424 2.954094 0.419823 1.417424 3.034272 0.419823 2.058922 3.034274 -0.419823 1.417424 3.034272 -0.419823 2.058922 3.034274 0.419823 2.139099 2.954097 0.419823 2.139106 1.16836 -0.419823 2.139099 2.954097 -0.419823 2.139106 1.16836 -0.419823 1.417431 1.08818 -0.5 1.417431 1.168357 -0.419823 2.058929 1.088182 -0.5 2.058929 1.16836 -0.419823 1.337254 1.168357 -0.419823 1.417431 1.08818 0.419823 1.337254 1.168357 0.419823 1.417431 1.08818 -0.5 1.417431 1.168357 -0.419823 1.337254 1.168357 -0.5 1.417424 2.954094 -0.419823 1.337247 2.954093 0.5 1.417431 1.168357 0.419823 1.417431 1.08818 0.5 2.058929 1.16836 0.419823 2.058929 1.088182 0.419823 1.337254 1.168357 0.5 1.417431 1.168357 0.419823 1.337247 2.954093 0.5 1.417424 2.954094 -0.5 1.417424 2.954094 -0.419823 1.417424 3.034272 -0.5 2.058923 2.954096 -0.419823 2.058922 3.034274 -0.419823 1.417424 3.034272 -0.419823 1.337247 2.954093 0.419823 1.417424 3.034272 0.419823 1.337247 2.954093 0.419823 1.417424 3.034272 0.5 1.417424 2.954094 0.419823 2.058922 3.034274 0.5 2.058923 2.954096 -0.5 2.058923 2.954096 -0.419823 2.139099 2.954097 -0.5 2.058929 1.16836 -0.419823 2.139106 1.16836 -0.419823 2.139099 2.954097 -0.419823 2.058922 3.034274 0.419823 2.139099 2.954097 0.419823 2.058922 3.034274 0.419823 2.139099 2.954097 0.5 2.058923 2.954096 0.419823 2.139106 1.16836 0.5 2.058929 1.16836 -0.419823 2.058929 1.088182 -0.419823 2.139106 1.16836 0.419823 2.058929 1.088182 0.419823 2.139106 1.16836 -0.5 1.417431 1.168357 -0.419823 1.417431 1.08818 -0.419823 1.337254 1.168357 0.419823 1.417431 1.08818 0.5 1.417431 1.168357 0.419823 1.337254 1.168357 -0.419823 1.417424 3.034272 -0.5 1.417424 2.954094 -0.419823 1.337247 2.954093 0.5 1.417424 2.954094 0.419823 1.417424 3.034272 0.419823 1.337247 2.954093 -0.419823 2.139099 2.954097 -0.5 2.058923 2.954096 -0.419823 2.058922 3.034274 0.5 2.058923 2.954096 0.419823 2.139099 2.954097 0.419823 2.058922 3.034274 -0.419823 2.058929 1.088182 -0.5 2.058929 1.16836 -0.419823 2.139106 1.16836 0.5 2.058929 1.16836 0.419823 2.058929 1.088182 0.419823 2.139106 1.16836 + + + + + + + + + + 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.70710564 -0.70710796 0 -0.70710564 -0.70710796 0 -0.70710564 -0.70710796 0 -0.70710564 -0.70710796 0 0 -0.7071065 0.7071072 0 -0.7071065 0.7071072 0 -0.7071065 0.7071072 0 -0.7071065 0.7071072 -0.70710635 0 0.70710737 -0.70710635 0 0.70710737 -0.70710635 0 0.70710737 -0.70710635 0 0.70710737 0.70710564 -0.70710796 0 0.70710564 -0.70710796 0 0.70710564 -0.70710796 0 0.70710564 -0.70710796 0 0.70710635 0 0.70710737 0.70710635 0 0.70710737 0.70710635 0 0.70710737 0.70710635 0 0.70710737 -0.70710564 0.70710796 0 -0.70710564 0.70710796 0 -0.70710564 0.70710796 0 -0.70710564 0.70710796 0 0 0.7071065 0.7071072 0 0.7071065 0.7071072 0 0.7071065 0.7071072 0 0.7071065 0.7071072 0.70710564 0.70710796 0 0.70710564 0.70710796 0 0.70710564 0.70710796 0 0.70710564 0.70710796 0 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 0 0.70710754 -0.70710593 0 0.70710754 -0.70710593 0 0.70710754 -0.70710593 0 0.70710754 -0.70710593 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0 -0.70710754 -0.70710593 0 -0.70710754 -0.70710593 0 -0.70710754 -0.70710593 0 -0.70710754 -0.70710593 -0.5773495 -0.57735014 0.57735133 -0.5773495 -0.57735014 0.57735133 -0.5773495 -0.57735014 0.57735133 0.5773495 -0.57735014 0.57735133 0.5773495 -0.57735014 0.57735133 0.5773495 -0.57735014 0.57735133 -0.5773501 0.5773507 0.5773501 -0.5773501 0.5773507 0.5773501 -0.5773501 0.5773507 0.5773501 0.5773501 0.5773507 0.5773501 0.5773501 0.5773507 0.5773501 0.5773501 0.5773507 0.5773501 -0.5773501 0.5773507 -0.5773501 -0.5773501 0.5773507 -0.5773501 -0.5773501 0.5773507 -0.5773501 0.5773501 0.5773507 -0.5773501 0.5773501 0.5773507 -0.5773501 0.5773501 0.5773507 -0.5773501 -0.5773501 -0.5773507 -0.5773501 -0.5773501 -0.5773507 -0.5773501 -0.5773501 -0.5773507 -0.5773501 0.5773501 -0.5773507 -0.5773501 0.5773501 -0.5773507 -0.5773501 0.5773501 -0.5773507 -0.5773501 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0.038520627 0.9992578 0 0 1 0 0.038520627 0.9992578 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.7983553 0.60218674 0 0.8242739 0.5661913 0 0.7983553 0.60218674 0 0.8242739 0.5661913 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.70710593 -0.70710754 0 -0.70710593 -0.70710754 0 -0.70710593 -0.70710754 0 -0.70710593 -0.70710754 0 0 -0.7071065 0.7071072 0 -0.7071065 0.7071072 0 -0.7071065 0.7071072 0 -0.7071065 0.7071072 -0.7071068 0 0.7071068 -0.705358 0.007295918 0.7088137 -0.7071068 0 0.7071068 -0.7470729 0.301562 0.5924041 0.70710593 -0.70710754 0 0.70710593 -0.70710754 0 0.70710593 -0.70710754 0 0.70710593 -0.70710754 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.705358 0.007295918 0.7088137 0.7470729 0.301562 0.5924041 -0.7470729 0.301562 0.5924041 -0.7029397 0.5764073 0.4166898 -0.7071074 0.5828499 0.4003563 -0.7071074 0.5828499 0.4003563 0 0.7983553 0.60218674 0 0.7983553 0.60218674 0.7470729 0.301562 0.5924041 0.7071074 0.5828499 0.4003563 0.7029397 0.5764073 0.4166898 0.7071074 0.5828499 0.4003563 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 0 0.8849256 -0.46573246 0 0.8849256 -0.46573246 0 0.8849256 -0.46573246 0 0.8849256 -0.46573246 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0 -0.7071065 -0.7071072 0 -0.7071065 -0.7071072 0 -0.7071065 -0.7071072 0 -0.7071065 -0.7071072 -0.5773495 -0.57735014 0.57735133 -0.5773495 -0.57735014 0.57735133 -0.5773495 -0.57735014 0.57735133 0.5773495 -0.57735014 0.57735133 0.5773495 -0.57735014 0.57735133 0.5773495 -0.57735014 0.57735133 -0.7029397 0.5764073 0.4166898 0.7029397 0.5764073 0.4166898 -0.78382635 0.54952157 -0.28920957 -0.78382635 0.54952157 -0.28920957 -0.78382635 0.54952157 -0.28920957 0.78382635 0.54952157 -0.28920957 0.78382635 0.54952157 -0.28920957 0.78382635 0.54952157 -0.28920957 -0.5773495 -0.57735014 -0.57735133 -0.5773495 -0.57735014 -0.57735133 -0.5773495 -0.57735014 -0.57735133 0.5773495 -0.57735014 -0.57735133 0.5773495 -0.57735014 -0.57735133 0.5773495 -0.57735014 -0.57735133 0 3.61999E-06 -1 0 3.61999E-06 -1 0 3.61999E-06 -1 0 3.61999E-06 -1 0 -1 -3.619991E-06 0 -1 -3.619991E-06 0 -1 -3.619991E-06 0 -1 -3.619991E-06 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -3.61999E-06 1 0 -3.61999E-06 1 0 -3.61999E-06 1 0 -3.61999E-06 1 0 1 3.619991E-06 0 1 3.619991E-06 0 1 3.619991E-06 0 1 3.619991E-06 -0.7071062 2.5597221E-06 -0.7071075 -0.7071062 2.5597221E-06 -0.7071075 -0.7071062 2.5597221E-06 -0.7071075 -0.7071062 2.5597221E-06 -0.7071075 0 -0.7071024 -0.7071111 0 -0.7071024 -0.7071111 0 -0.7071024 -0.7071111 0 -0.7071024 -0.7071111 -0.7071068 -0.7071068 -2.55972E-06 -0.7071068 -0.7071068 -2.55972E-06 -0.7071068 -0.7071068 -2.55972E-06 -0.7071068 -0.7071068 -2.55972E-06 0.7071062 2.5597221E-06 -0.7071075 0.7071062 2.5597221E-06 -0.7071075 0.7071062 2.5597221E-06 -0.7071075 0.7071062 2.5597221E-06 -0.7071075 0.7071068 -0.7071068 -2.55972E-06 0.7071068 -0.7071068 -2.55972E-06 0.7071068 -0.7071068 -2.55972E-06 0.7071068 -0.7071068 -2.55972E-06 -0.7071062 -2.5597221E-06 0.7071075 -0.7071062 -2.5597221E-06 0.7071075 -0.7071062 -2.5597221E-06 0.7071075 -0.7071062 -2.5597221E-06 0.7071075 0 -0.7071086 0.7071049 0 -0.7071086 0.7071049 0 -0.7071086 0.7071049 0 -0.7071086 0.7071049 0.7071062 -2.5597221E-06 0.7071075 0.7071062 -2.5597221E-06 0.7071075 0.7071062 -2.5597221E-06 0.7071075 0.7071062 -2.5597221E-06 0.7071075 -0.7071068 0.7071068 2.55972E-06 -0.7071068 0.7071068 2.55972E-06 -0.7071068 0.7071068 2.55972E-06 -0.7071068 0.7071068 2.55972E-06 0 0.7071036 0.70711 0 0.7071036 0.70711 0 0.7071036 0.70711 0 0.7071036 0.70711 0.7071068 0.7071068 2.55972E-06 0.7071068 0.7071068 2.55972E-06 0.7071068 0.7071068 2.55972E-06 0.7071068 0.7071068 2.55972E-06 0 0.7071072 -0.7071064 0 0.7071072 -0.7071064 0 0.7071072 -0.7071064 0 0.7071072 -0.7071064 -0.5773508 -0.5773468 -0.5773533 -0.5773508 -0.5773468 -0.5773533 -0.5773508 -0.5773468 -0.5773533 0.5773508 -0.5773468 -0.5773533 0.5773508 -0.5773468 -0.5773533 0.5773508 -0.5773468 -0.5773533 -0.5773508 -0.5773509 0.5773491 -0.5773508 -0.5773509 0.5773491 -0.5773508 -0.5773509 0.5773491 0.5773508 -0.5773509 0.5773491 0.5773508 -0.5773509 0.5773491 0.5773508 -0.5773509 0.5773491 -0.5773508 0.5773468 0.5773533 -0.5773508 0.5773468 0.5773533 -0.5773508 0.5773468 0.5773533 0.5773508 0.5773468 0.5773533 0.5773508 0.5773468 0.5773533 0.5773508 0.5773468 0.5773533 -0.5773495 0.5773516 -0.5773497 -0.5773495 0.5773516 -0.5773497 -0.5773495 0.5773516 -0.5773497 0.5773495 0.5773516 -0.5773497 0.5773495 0.5773516 -0.5773497 0.5773495 0.5773516 -0.5773497 0 3.61999E-06 -1 0 3.61999E-06 -1 0 3.61999E-06 -1 0 3.61999E-06 -1 0 -1 -3.61999E-06 0 -1 -3.61999E-06 0 -1 -3.61999E-06 0 -1 -3.61999E-06 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -3.61999E-06 1 0 -3.61999E-06 1 0 -3.61999E-06 1 0 -3.61999E-06 1 0 1 3.61999E-06 0 1 3.61999E-06 0 1 3.61999E-06 0 1 3.61999E-06 -0.7071072 2.5597183E-06 -0.7071065 -0.7071072 2.5597183E-06 -0.7071065 -0.7071072 2.5597183E-06 -0.7071065 -0.7071072 2.5597183E-06 -0.7071065 0 -0.7071046 -0.707109 0 -0.7071046 -0.707109 0 -0.7071046 -0.707109 0 -0.7071046 -0.707109 -0.7071068 -0.7071068 -2.55972E-06 -0.7071068 -0.7071068 -2.55972E-06 -0.7071068 -0.7071068 -2.55972E-06 -0.7071068 -0.7071068 -2.55972E-06 0.7071072 2.5597183E-06 -0.7071065 0.7071072 2.5597183E-06 -0.7071065 0.7071072 2.5597183E-06 -0.7071065 0.7071072 2.5597183E-06 -0.7071065 0.7071068 -0.7071068 -2.55972E-06 0.7071068 -0.7071068 -2.55972E-06 0.7071068 -0.7071068 -2.55972E-06 0.7071068 -0.7071068 -2.55972E-06 -0.7071072 -2.5597183E-06 0.7071065 -0.7071072 -2.5597183E-06 0.7071065 -0.7071072 -2.5597183E-06 0.7071065 -0.7071072 -2.5597183E-06 0.7071065 0 -0.7071097 0.7071039 0 -0.7071097 0.7071039 0 -0.7071097 0.7071039 0 -0.7071097 0.7071039 0.7071072 -2.5597183E-06 0.7071065 0.7071072 -2.5597183E-06 0.7071065 0.7071072 -2.5597183E-06 0.7071065 0.7071072 -2.5597183E-06 0.7071065 -0.7071068 0.7071068 2.55972E-06 -0.7071068 0.7071068 2.55972E-06 -0.7071068 0.7071068 2.55972E-06 -0.7071068 0.7071068 2.55972E-06 0 0.7071046 0.707109 0 0.7071046 0.707109 0 0.7071046 0.707109 0 0.7071046 0.707109 0.7071068 0.7071068 2.55972E-06 0.7071068 0.7071068 2.55972E-06 0.7071068 0.7071068 2.55972E-06 0.7071068 0.7071068 2.55972E-06 0 0.7071097 -0.7071039 0 0.7071097 -0.7071039 0 0.7071097 -0.7071039 0 0.7071097 -0.7071039 -0.57735133 -0.57734734 -0.57735217 -0.57735133 -0.57734734 -0.57735217 -0.57735133 -0.57734734 -0.57735217 0.57735133 -0.57734734 -0.57735217 0.57735133 -0.57734734 -0.57735217 0.57735133 -0.57734734 -0.57735217 -0.5773513 -0.5773515 0.577348 -0.5773513 -0.5773515 0.577348 -0.5773513 -0.5773515 0.577348 0.5773513 -0.5773515 0.577348 0.5773513 -0.5773515 0.577348 0.5773513 -0.5773515 0.577348 -0.57735133 0.57734734 0.57735217 -0.57735133 0.57734734 0.57735217 -0.57735133 0.57734734 0.57735217 0.57735133 0.57734734 0.57735217 0.57735133 0.57734734 0.57735217 0.57735133 0.57734734 0.57735217 -0.5773513 0.5773515 -0.577348 -0.5773513 0.5773515 -0.577348 -0.5773513 0.5773515 -0.577348 0.5773513 0.5773515 -0.577348 0.5773513 0.5773515 -0.577348 0.5773513 0.5773515 -0.577348 + + + + + + + + + + 0.387076 0.794053 0.387076 0.698326 0.482804 0.794053 0.482804 0.698326 0.0252166 0.698326 0.126728 0.698326 0.0252165 0.794053 0.126728 0.794053 0.126728 0.817981 0.126728 0.913709 0.0252165 0.817981 0.0252166 0.913709 0.0252166 0.57867 0.126728 0.57867 0.0252166 0.674397 0.126728 0.674397 0.147765 0.698326 0.243492 0.698326 0.147765 0.794053 0.243492 0.794053 0.264528 0.698326 0.36604 0.698326 0.264528 0.794053 0.36604 0.794053 0.482804 0.794053 0.482804 0.806017 0.387076 0.794053 0.387076 0.806017 0.0252165 0.794053 0.0161443 0.794053 0.0252166 0.698326 0.0161444 0.698326 0.0252165 0.806017 0.0252165 0.794053 0.126728 0.806017 0.126728 0.794053 0.482804 0.686361 0.482804 0.698326 0.387076 0.686361 0.387076 0.698326 0.0252166 0.698326 0.0252166 0.686361 0.126728 0.698326 0.126728 0.686361 0.147765 0.806017 0.147765 0.794053 0.243492 0.806017 0.243492 0.794053 0.1358 0.794052 0.126728 0.794053 0.1358 0.698326 0.126728 0.698326 0.147765 0.698326 0.147765 0.686361 0.243492 0.698326 0.243492 0.686361 0.264528 0.806017 0.264528 0.794053 0.36604 0.806017 0.36604 0.794053 0.255456 0.794053 0.243492 0.794053 0.255456 0.698326 0.243492 0.698326 0.264528 0.698326 0.264528 0.686361 0.36604 0.698326 0.36604 0.686361 0.375112 0.794053 0.36604 0.794053 0.375112 0.698326 0.36604 0.698326 0.0252165 0.806017 0.0161443 0.794053 0.0252165 0.794053 0.0161444 0.698326 0.0252166 0.686361 0.0252166 0.698326 0.1358 0.794052 0.126728 0.806017 0.126728 0.794053 0.126728 0.686361 0.1358 0.698326 0.126728 0.698326 0.255456 0.794053 0.243492 0.806017 0.243492 0.794053 0.243492 0.686361 0.255456 0.698326 0.243492 0.698326 0.375112 0.794053 0.36604 0.806017 0.36604 0.794053 0.36604 0.686361 0.375112 0.698326 0.36604 0.698326 0.347886 0.29684 0.347886 0.209656 0.43507 0.29684 0.435071 0.209656 0.046247 0.209656 0.137031 0.209656 0.046247 0.296841 0.137031 0.296841 0.13789 0.396787 0.0462471 0.396787 0.13789 0.309602 0.046247 0.309602 0.13789 0.109709 0.13789 0.196894 0.046247 0.109709 0.046247 0.196894 0.146872 0.209656 0.236299 0.209656 0.146872 0.29684 0.236299 0.296841 0.244627 0.209656 0.338437 0.209656 0.244627 0.296841 0.338437 0.29684 0.43507 0.29684 0.43507 0.303221 0.347886 0.29684 0.347886 0.303221 0.046247 0.296841 0.0416657 0.296841 0.046247 0.209656 0.0416657 0.209656 0.046247 0.296841 0.137031 0.296841 0.046247 0.303221 0.139201 0.303221 0.43507 0.203275 0.435071 0.209656 0.347886 0.203275 0.347886 0.209656 0.046247 0.209656 0.046247 0.203275 0.137031 0.209656 0.139201 0.203275 0.147432 0.303221 0.146872 0.29684 0.234616 0.303221 0.236299 0.296841 0.141612 0.294474 0.141612 0.209494 0.147432 0.203275 0.234616 0.203275 0.146872 0.209656 0.236299 0.209656 0.244627 0.296841 0.338437 0.29684 0.247388 0.303221 0.338437 0.303221 0.241096 0.296841 0.236299 0.296841 0.241096 0.209656 0.236299 0.209656 0.244627 0.209656 0.247388 0.203275 0.338437 0.209656 0.338437 0.203275 0.341505 0.29684 0.338437 0.29684 0.341505 0.209656 0.338437 0.209656 0.046247 0.303221 0.0416657 0.296841 0.046247 0.296841 0.0416657 0.209656 0.046247 0.203275 0.046247 0.209656 0.141612 0.294474 0.141612 0.209494 0.241096 0.296841 0.234616 0.303221 0.236299 0.296841 0.234616 0.203275 0.241096 0.209656 0.236299 0.209656 0.341505 0.29684 0.338437 0.303221 0.338437 0.29684 0.338437 0.203275 0.341505 0.209656 0.338437 0.209656 0.884672 0.29859 0.884672 0.203273 0.983389 0.29859 0.983389 0.203273 0.520208 0.203273 0.632993 0.203273 0.520208 0.29859 0.632993 0.29859 0.632993 0.320716 0.632993 0.419433 0.520208 0.320716 0.520208 0.419433 0.520208 0.082429 0.632993 0.082429 0.520208 0.181147 0.632993 0.181147 0.646385 0.203273 0.745103 0.203273 0.646385 0.29859 0.745103 0.29859 0.758495 0.203273 0.87128 0.203273 0.758495 0.29859 0.87128 0.29859 0.983389 0.29859 0.983389 0.310503 0.884672 0.29859 0.884672 0.310503 0.520208 0.29859 0.517029 0.29859 0.520208 0.203273 0.517029 0.203273 0.520208 0.310503 0.520208 0.29859 0.632993 0.310503 0.632993 0.29859 0.983389 0.19136 0.983389 0.203273 0.884672 0.19136 0.884672 0.203273 0.520208 0.203273 0.520208 0.19136 0.632993 0.203273 0.632993 0.19136 0.646385 0.310503 0.646385 0.29859 0.745103 0.310503 0.745103 0.29859 0.636172 0.29859 0.632993 0.29859 0.636172 0.203273 0.632993 0.203273 0.646385 0.203273 0.646385 0.19136 0.745103 0.203273 0.745103 0.19136 0.758495 0.310503 0.758495 0.29859 0.87128 0.310503 0.87128 0.29859 0.755316 0.29859 0.745103 0.29859 0.755316 0.203273 0.745103 0.203273 0.758495 0.203273 0.758495 0.19136 0.87128 0.203273 0.87128 0.19136 0.874459 0.29859 0.87128 0.29859 0.874459 0.203273 0.87128 0.203273 0.520208 0.310503 0.517029 0.29859 0.520208 0.29859 0.517029 0.203273 0.520208 0.19136 0.520208 0.203273 0.636172 0.29859 0.632993 0.310503 0.632993 0.29859 0.632993 0.19136 0.636172 0.203273 0.632993 0.203273 0.755316 0.29859 0.745103 0.310503 0.745103 0.29859 0.745103 0.19136 0.755316 0.203273 0.745103 0.203273 0.874459 0.29859 0.87128 0.310503 0.87128 0.29859 0.87128 0.19136 0.874459 0.203273 0.87128 0.203273 0.878021 0.777571 0.878021 0.680943 0.970088 0.777571 0.970088 0.680943 0.526012 0.680943 0.63161 0.680943 0.526012 0.777571 0.63161 0.777571 0.63161 0.798304 0.63161 0.890372 0.526012 0.798304 0.526012 0.890372 0.526012 0.568142 0.63161 0.568142 0.526012 0.660209 0.63161 0.660209 0.647859 0.680943 0.739926 0.680943 0.647859 0.777571 0.739926 0.777571 0.756174 0.680943 0.861773 0.680943 0.756174 0.777571 0.861773 0.777571 0.970088 0.777571 0.970088 0.786798 0.878021 0.777571 0.878021 0.786797 0.526012 0.777571 0.52127 0.777571 0.526012 0.680943 0.52127 0.680943 0.526012 0.786798 0.526012 0.777571 0.63161 0.786798 0.63161 0.777571 0.970088 0.671716 0.970088 0.680943 0.878021 0.671716 0.878021 0.680943 0.526012 0.680943 0.526012 0.671716 0.63161 0.680943 0.63161 0.671716 0.647859 0.786798 0.647859 0.777571 0.739926 0.786797 0.739926 0.777571 0.636352 0.777571 0.63161 0.777571 0.636352 0.680943 0.63161 0.680943 0.647859 0.680943 0.647859 0.671716 0.739926 0.680943 0.739926 0.671716 0.756174 0.786797 0.756174 0.777571 0.861773 0.786797 0.861773 0.777571 0.751433 0.777571 0.739926 0.777571 0.751433 0.680943 0.739926 0.680943 0.756174 0.680943 0.756174 0.671716 0.861773 0.680943 0.861773 0.671716 0.866514 0.777571 0.861773 0.777571 0.866514 0.680943 0.861773 0.680943 0.526012 0.786798 0.52127 0.777571 0.526012 0.777571 0.52127 0.680943 0.526012 0.671716 0.526012 0.680943 0.636352 0.777571 0.63161 0.786798 0.63161 0.777571 0.63161 0.671716 0.636352 0.680943 0.63161 0.680943 0.751433 0.777571 0.739926 0.786797 0.739926 0.777571 0.739926 0.671716 0.751433 0.680943 0.739926 0.680943 0.866514 0.777571 0.861773 0.786797 0.861773 0.777571 0.861773 0.671716 0.866514 0.680943 0.861773 0.680943 + + + + + + + + + + + + + + +

101 102 100 101 103 102 101 145 103 145 144 103 129 130 128 129 131 130 129 172 131 138 136 137 138 137 139 138 139 173 1 2 0 1 3 2 5 6 4 5 7 6 9 10 8 9 11 10 13 14 12 13 15 14 17 18 16 17 19 18 21 22 20 21 23 22 25 26 24 25 27 26 29 30 28 29 31 30 33 34 32 33 35 34 37 38 36 37 39 38 41 42 40 41 43 42 45 46 44 45 47 46 49 50 48 49 51 50 53 54 52 53 55 54 57 58 56 57 59 58 61 62 60 61 63 62 65 66 64 65 67 66 69 70 68 69 71 70 97 98 96 97 99 98 105 106 104 105 107 106 109 110 108 109 111 110 113 114 112 113 115 114 117 118 116 117 119 118 121 122 120 121 123 122 125 126 124 125 127 126 133 134 132 133 135 134 141 142 140 141 143 142 147 148 146 147 149 148 151 152 150 151 153 152 155 156 154 155 157 156 159 160 158 159 161 160 163 164 162 163 165 164 187 188 186 187 189 188 191 192 190 191 193 192 195 196 194 195 197 196 199 200 198 199 201 200 203 204 202 203 205 204 207 208 206 207 209 208 211 212 210 211 213 212 215 216 214 215 217 216 219 220 218 219 221 220 223 224 222 223 225 224 227 228 226 227 229 228 231 232 230 231 233 232 235 236 234 235 237 236 239 240 238 239 241 240 243 244 242 243 245 244 247 248 246 247 249 248 251 252 250 251 253 252 255 256 254 255 257 256 283 284 282 283 285 284 287 288 286 287 289 288 291 292 290 291 293 292 295 296 294 295 297 296 299 300 298 299 301 300 303 304 302 303 305 304 307 308 306 307 309 308 311 312 310 311 313 312 315 316 314 315 317 316 319 320 318 319 321 320 323 324 322 323 325 324 327 328 326 327 329 328 331 332 330 331 333 332 335 336 334 335 337 336 339 340 338 339 341 340 343 344 342 343 345 344 347 348 346 347 349 348 351 352 350 351 353 352 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 166 167 168 169 170 171 174 175 176 177 178 179 180 181 182 183 184 185 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377

+
+
+
+ + + + -1.63548 0 3.593733 1.63548 0 3.593733 -1.63548 0 -3.282605 1.63548 0 -3.282605 + + + + + + + + + + 0 0 1 0 0 1 1 1 + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + + + + + + +

0 1 2 2 1 3

+
+
+
+
+ + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_low_root + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + wall_low_root + + + + + + + + 1 -0 0 0 -0 1 -0 0 0 -0 1 0 0 0 0 1 + + + + + + + + 1 + + + + + + + + + + + + + + 1 1 1 1 + 0 0 0 0 0 0 0 0 + + + + + + + + 0 0 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 0 + 1 1 1 + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_low_root_bone_id + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + #wall_low_root_bone_id + + + + + + + + + + + + +
\ No newline at end of file diff --git a/Assets/Resources/Models/Games/Airboarder/wall_low_model_merge.dae.meta b/Assets/Resources/Models/Games/Airboarder/wall_low_model_merge.dae.meta new file mode 100644 index 000000000..69fc58255 --- /dev/null +++ b/Assets/Resources/Models/Games/Airboarder/wall_low_model_merge.dae.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: d452f98d7cfcb8648b721a0d6f01523a +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/Elevator.controller b/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/Elevator.controller index 370104186..39c67b351 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/Elevator.controller +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/Elevator.controller @@ -20,7 +20,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: -5988718474069186256, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3} + m_Motion: {fileID: 3800077309258468399, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3} m_Tag: m_SpeedParameter: m_MirrorParameter: @@ -46,7 +46,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: -6767608362192247663, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3} + m_Motion: {fileID: -3344633985405764014, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3} m_Tag: m_SpeedParameter: m_MirrorParameter: @@ -94,7 +94,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 888322792775095555, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3} + m_Motion: {fileID: 6125961371069380270, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3} m_Tag: m_SpeedParameter: m_MirrorParameter: diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/FlyingRod.controller b/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/FlyingRod.controller index c1f407939..cf89674c4 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/FlyingRod.controller +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/FlyingRod.controller @@ -64,7 +64,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 1800392339729405328, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} + m_Motion: {fileID: 2465399158856133786, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} m_Tag: m_SpeedParameter: m_MirrorParameter: diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/MissParts.controller b/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/MissParts.controller index 274476d35..951fb3021 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/MissParts.controller +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/MissParts.controller @@ -20,7 +20,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 3977097287908140603, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} + m_Motion: {fileID: 9130175970626193648, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} m_Tag: m_SpeedParameter: m_MirrorParameter: diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/MovingBlocks.controller b/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/MovingBlocks.controller index 2876ab7bf..916251d55 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/MovingBlocks.controller +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/MovingBlocks.controller @@ -64,7 +64,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: -7095431843126280680, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} + m_Motion: {fileID: 5263545620203285798, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} m_Tag: m_SpeedParameter: m_MirrorParameter: diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/PartsHit.anim b/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/PartsHit.anim index fb165136a..75f64637a 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/PartsHit.anim +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/PartsHit.anim @@ -767,12 +767,12 @@ AnimationClip: m_PPtrCurves: - curve: - time: 0 - value: {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2} + value: {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2} - time: 0.041666668 - value: {fileID: 2100000, guid: 65811a5ed9222154b8a07c752e87c8c8, type: 2} + value: {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2} - time: 0.083333336 value: {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2} - - time: 0.125 + - time: 0.16666667 value: {fileID: 2100000, guid: c2dcdccce937af54aab2ffb52ce8b7e4, type: 2} - time: 7.5416665 value: {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2} @@ -780,6 +780,19 @@ AnimationClip: path: parts_ok.001 classID: 137 script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2} + - time: 0.083333336 + value: {fileID: 2100000, guid: 65811a5ed9222154b8a07c752e87c8c8, type: 2} + - time: 0.125 + value: {fileID: 2100000, guid: 65811a5ed9222154b8a07c752e87c8c8, type: 2} + - time: 0.16666667 + value: {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2} + attribute: m_Materials.Array.data[3] + path: parts_ok.001 + classID: 137 + script: {fileID: 0} m_SampleRate: 24 m_WrapMode: 0 m_Bounds: @@ -843,6 +856,13 @@ AnimationClip: typeID: 137 customType: 21 isPPtrCurve: 1 + - serializedVersion: 2 + path: 2603234997 + attribute: 3 + script: {fileID: 0} + typeID: 137 + customType: 21 + isPPtrCurve: 1 - serializedVersion: 2 path: 2288273962 attribute: 1 @@ -900,11 +920,15 @@ AnimationClip: customType: 0 isPPtrCurve: 0 pptrCurveMapping: - - {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2} - - {fileID: 2100000, guid: 65811a5ed9222154b8a07c752e87c8c8, type: 2} + - {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2} + - {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2} - {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2} - {fileID: 2100000, guid: c2dcdccce937af54aab2ffb52ce8b7e4, type: 2} - {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2} + - {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2} + - {fileID: 2100000, guid: 65811a5ed9222154b8a07c752e87c8c8, type: 2} + - {fileID: 2100000, guid: 65811a5ed9222154b8a07c752e87c8c8, type: 2} + - {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2} m_AnimationClipSettings: serializedVersion: 2 m_AdditiveReferencePoseClip: {fileID: 0} diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/Shooter.controller b/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/Shooter.controller index e85d7c659..845cacb41 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/Shooter.controller +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Animations/Shooter.controller @@ -20,7 +20,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: -7723785180693003703, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3} + m_Motion: {fileID: 3178102532616702734, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3} m_Tag: m_SpeedParameter: m_MirrorParameter: @@ -46,7 +46,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 241429122767823071, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3} + m_Motion: {fileID: -1408222738841483094, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3} m_Tag: m_SpeedParameter: m_MirrorParameter: @@ -72,7 +72,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 241429122767823071, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3} + m_Motion: {fileID: -1408222738841483094, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3} m_Tag: m_SpeedParameter: m_MirrorParameter: @@ -98,7 +98,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: -8998818034351126502, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3} + m_Motion: {fileID: -1871232912940249434, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3} m_Tag: m_SpeedParameter: m_MirrorParameter: diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/ElevatorWithRod.fbx b/Assets/Resources/Models/Games/BuiltToScaleDS/ElevatorWithRod.fbx index 462e1107c..8051cd99f 100644 Binary files a/Assets/Resources/Models/Games/BuiltToScaleDS/ElevatorWithRod.fbx and b/Assets/Resources/Models/Games/BuiltToScaleDS/ElevatorWithRod.fbx differ diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/ElevatorWithRod.fbx.meta b/Assets/Resources/Models/Games/BuiltToScaleDS/ElevatorWithRod.fbx.meta index 247874783..b1ad10060 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/ElevatorWithRod.fbx.meta +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/ElevatorWithRod.fbx.meta @@ -40,7 +40,94 @@ ModelImporter: animationWrapMode: 0 extraExposedTransformPaths: [] extraUserProperties: [] - clipAnimations: [] + clipAnimations: + - serializedVersion: 16 + name: elevator_down + takeName: elevator|elevator|elevator|elevator_down_elevator|elevator|elevator_down + internalID: 3800077309258468399 + firstFrame: 0 + lastFrame: 36 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: elevator_up + takeName: elevator|elevator|elevator|elevator_up_elevator|elevator|elevator_up_ele + internalID: 6125961371069380270 + firstFrame: 0 + lastFrame: 40 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: elevator_wait + takeName: elevator|elevator|elevator|elevator_wait_elevator|elevator|elevator_wait + internalID: -3344633985405764014 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 isReadable: 0 meshes: lODScreenPercentages: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/FlyingRod.fbx b/Assets/Resources/Models/Games/BuiltToScaleDS/FlyingRod.fbx index b4a0cb0ad..1ee8a33eb 100644 Binary files a/Assets/Resources/Models/Games/BuiltToScaleDS/FlyingRod.fbx and b/Assets/Resources/Models/Games/BuiltToScaleDS/FlyingRod.fbx differ diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/FlyingRod.fbx.meta b/Assets/Resources/Models/Games/BuiltToScaleDS/FlyingRod.fbx.meta index 5567fb9b5..5e764e05c 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/FlyingRod.fbx.meta +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/FlyingRod.fbx.meta @@ -18,7 +18,7 @@ ModelImporter: resampleCurves: 1 optimizeGameObjects: 0 removeConstantScaleCurves: 0 - motionNodeName: + motionNodeName: rigImportErrors: rigImportWarnings: animationImportErrors: @@ -27,14 +27,43 @@ ModelImporter: animationDoRetargetingWarnings: 0 importAnimatedCustomProperties: 0 importConstraints: 0 - animationCompression: 1 + animationCompression: 0 animationRotationError: 0.5 animationPositionError: 0.5 animationScaleError: 0.5 animationWrapMode: 0 extraExposedTransformPaths: [] extraUserProperties: [] - clipAnimations: [] + clipAnimations: + - serializedVersion: 16 + name: parts_airshot + takeName: parts_airshot|parts_airshot|parts_airshot|parts_airshot_parts_airshot|parts_a + internalID: 2465399158856133786 + firstFrame: 0 + lastFrame: 40 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 isReadable: 0 meshes: lODScreenPercentages: [] @@ -59,7 +88,7 @@ ModelImporter: skinWeightsMode: 0 maxBonesPerVertex: 4 minBoneWeight: 0.001 - optimizeBones: 1 + optimizeBones: 0 meshOptimizationFlags: -1 indexFormat: 0 secondaryUVAngleDistortion: 8 @@ -92,7 +121,7 @@ ModelImporter: legStretch: 0.05 feetSpacing: 0 globalScale: 1 - rootMotionBoneName: + rootMotionBoneName: parts_airshot.001 hasTranslationDoF: 0 hasExtraRoot: 0 skeletonHasParents: 1 @@ -100,7 +129,7 @@ ModelImporter: autoGenerateAvatarMappingIfUnspecified: 1 animationType: 2 humanoidOversampling: 1 - avatarSetup: 0 + avatarSetup: 1 addHumanoidExtraRootOnlyWhenUsingAvatar: 1 remapMaterialsIfMaterialImportModeIsNone: 1 additionalBone: 0 diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/HitParts.fbx b/Assets/Resources/Models/Games/BuiltToScaleDS/HitParts.fbx index f889ac963..71f138a5a 100644 Binary files a/Assets/Resources/Models/Games/BuiltToScaleDS/HitParts.fbx and b/Assets/Resources/Models/Games/BuiltToScaleDS/HitParts.fbx differ diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/HitParts.fbx.meta b/Assets/Resources/Models/Games/BuiltToScaleDS/HitParts.fbx.meta index 912217ae7..db3c12fa0 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/HitParts.fbx.meta +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/HitParts.fbx.meta @@ -34,7 +34,36 @@ ModelImporter: animationWrapMode: 0 extraExposedTransformPaths: [] extraUserProperties: [] - clipAnimations: [] + clipAnimations: + - serializedVersion: 16 + name: partsok + takeName: parts_ok|parts_ok|parts_ok|parts_ok_parts_ok|parts_ok|parts_ok_parts_ok + internalID: 4401626605303300418 + firstFrame: 0 + lastFrame: 180 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 isReadable: 0 meshes: lODScreenPercentages: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Divider.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Divider.mat index fd53ffb74..1c507da00 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Divider.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Divider.mat @@ -2,14 +2,15 @@ %TAG !u! tag:unity3d.com,2011: --- !u!21 &2100000 Material: - serializedVersion: 6 + serializedVersion: 8 m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: Divider m_Shader: {fileID: 10755, guid: 0000000000000000f000000000000000, type: 0} - m_ShaderKeywords: + m_ValidKeywords: [] + m_InvalidKeywords: [] m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -55,6 +56,7 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + m_Ints: [] m_Floats: - _BumpScale: 1 - _Cutoff: 0.5 @@ -73,6 +75,6 @@ Material: - _UVSec: 0 - _ZWrite: 1 m_Colors: - - _Color: {r: 0, g: 0, b: 0, a: 1} + - _Color: {r: 0.509434, g: 0.509434, b: 0.509434, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Effects/Impact.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Effects/Impact.mat index 9f4b18ad4..6e451e903 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Effects/Impact.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Effects/Impact.mat @@ -2,15 +2,19 @@ %TAG !u! tag:unity3d.com,2011: --- !u!21 &2100000 Material: - serializedVersion: 6 + serializedVersion: 8 m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: Impact m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} - m_ShaderKeywords: _ALPHAPREMULTIPLY_ON _GLOSSYREFLECTIONS_OFF - m_LightmapFlags: 4 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _EMISSION + - _GLOSSYREFLECTIONS_OFF + m_InvalidKeywords: [] + m_LightmapFlags: 2 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 m_CustomRenderQueue: 3000 @@ -42,7 +46,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} - _EmissionMap: - m_Texture: {fileID: 0} + m_Texture: {fileID: 2800000, guid: 772d88056ab3bf5408fc8d5a3387df8d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} - _MainTex: @@ -77,6 +81,7 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + m_Ints: [] m_Floats: - _AlphaClip: 0 - _Blend: 0 @@ -110,7 +115,7 @@ Material: 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} + - _EmissionColor: {r: 1, g: 1, b: 1, a: 1} - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} m_BuildTextureStacks: [] --- !u!114 &1655112528312275563 diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Effects/ImpactFaded.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Effects/ImpactFaded.mat index 0b64406ce..3c4b5ce55 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Effects/ImpactFaded.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Effects/ImpactFaded.mat @@ -2,15 +2,19 @@ %TAG !u! tag:unity3d.com,2011: --- !u!21 &2100000 Material: - serializedVersion: 6 + serializedVersion: 8 m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: ImpactFaded m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} - m_ShaderKeywords: _ALPHAPREMULTIPLY_ON _GLOSSYREFLECTIONS_OFF - m_LightmapFlags: 4 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _EMISSION + - _GLOSSYREFLECTIONS_OFF + m_InvalidKeywords: [] + m_LightmapFlags: 2 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 m_CustomRenderQueue: 3000 @@ -42,7 +46,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} - _EmissionMap: - m_Texture: {fileID: 0} + m_Texture: {fileID: 2800000, guid: 772d88056ab3bf5408fc8d5a3387df8d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} - _MainTex: @@ -77,6 +81,7 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + m_Ints: [] m_Floats: - _AlphaClip: 0 - _Blend: 0 @@ -110,7 +115,7 @@ Material: m_Colors: - _BaseColor: {r: 1, g: 1, b: 1, a: 0.5019608} - _Color: {r: 1, g: 1, b: 1, a: 1} - - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _EmissionColor: {r: 1, g: 1, b: 1, a: 1} - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} m_BuildTextureStacks: [] --- !u!114 &1655112528312275563 diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Object.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Object.mat index 55b1189b6..024ad14a2 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Object.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Object.mat @@ -8,11 +8,12 @@ Material: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: Object - m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} m_ValidKeywords: + - _EMISSION - _GLOSSYREFLECTIONS_OFF m_InvalidKeywords: [] - m_LightmapFlags: 4 + m_LightmapFlags: 2 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 @@ -102,7 +103,7 @@ Material: - _EnvironmentReflections: 1 - _FirstOutlineWidth: 0.02 - _GlossMapScale: 0 - - _Glossiness: 0 + - _Glossiness: 0.621 - _GlossinessSource: 0 - _GlossyReflections: 0 - _IndirectLightMultiplier: 1 @@ -141,7 +142,7 @@ Material: 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} + - _EmissionColor: {r: 0.20754719, g: 0.20754719, b: 0.20754719, a: 1} - _EmissionMapChannelMask: {r: 1, g: 1, b: 1, a: 0} - _FirstOutlineColor: {r: 0, g: 0, b: 0, a: 0.5} - _IndirectLightMinColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Shooter.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Shooter.mat index 94b52f167..5f321223c 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Shooter.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/Shooter.mat @@ -8,10 +8,11 @@ Material: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: Shooter - m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} - m_ValidKeywords: [] + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: + - _EMISSION m_InvalidKeywords: [] - m_LightmapFlags: 4 + m_LightmapFlags: 2 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 @@ -56,6 +57,10 @@ Material: 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} m_Ints: [] m_Floats: - _BumpScale: 1 @@ -63,7 +68,7 @@ Material: - _DetailNormalMapScale: 1 - _DstBlend: 0 - _GlossMapScale: 1 - - _Glossiness: 0.5 + - _Glossiness: 0.684 - _GlossyReflections: 1 - _Metallic: 0 - _Mode: 0 @@ -76,5 +81,6 @@ Material: - _ZWrite: 1 m_Colors: - _Color: {r: 1, g: 1, b: 1, a: 1} - - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _EmissionColor: {r: 0.16981131, g: 0.16981131, b: 0.16981131, a: 1} + - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Belt.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Belt.mat index eb9f6802b..3d8ebdba2 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Belt.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Belt.mat @@ -65,7 +65,7 @@ Material: - _MainTex: m_Texture: {fileID: 2800000, guid: 42ac679b050de8c4288fbafb9d353498, type: 3} m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} + m_Offset: {x: 0, y: -0.013172884} - _MetallicGlossMap: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Bridge.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Bridge.mat index 2c9aa06e8..06e7e64e8 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Bridge.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Bridge.mat @@ -15,15 +15,18 @@ MonoBehaviour: version: 4 --- !u!21 &2100000 Material: - serializedVersion: 6 + serializedVersion: 8 m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: Bridge - m_Shader: {fileID: 10752, guid: 0000000000000000f000000000000000, type: 0} - m_ShaderKeywords: - m_LightmapFlags: 4 + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: + - _EMISSION + - _GLOSSYREFLECTIONS_OFF + m_InvalidKeywords: [] + m_LightmapFlags: 2 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 @@ -53,7 +56,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} - _EmissionMap: - m_Texture: {fileID: 0} + m_Texture: {fileID: 2800000, guid: 657c2f9c15dce0541bcc21ff7c7ede1d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} - _MainTex: @@ -88,6 +91,7 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + m_Ints: [] m_Floats: - _AlphaClip: 0 - _Blend: 0 @@ -101,9 +105,10 @@ Material: - _DstBlend: 0 - _EnvironmentReflections: 1 - _GlossMapScale: 0 - - _Glossiness: 0 + - _Glossiness: 0.807 - _GlossyReflections: 0 - _Metallic: 0 + - _Mode: 0 - _OcclusionStrength: 1 - _Parallax: 0.005 - _QueueOffset: 0 @@ -114,11 +119,12 @@ Material: - _SpecularHighlights: 1 - _SrcBlend: 1 - _Surface: 0 + - _UVSec: 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} + - _EmissionColor: {r: 0.122641504, g: 0.122641504, b: 0.122641504, a: 1} - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/GapShadow.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/GapShadow.mat index db5b0cf62..33862c4bf 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/GapShadow.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/GapShadow.mat @@ -15,14 +15,17 @@ MonoBehaviour: version: 4 --- !u!21 &2100000 Material: - serializedVersion: 6 + serializedVersion: 8 m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: GapShadow m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} - m_ShaderKeywords: _ALPHAPREMULTIPLY_ON _GLOSSYREFLECTIONS_OFF + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _GLOSSYREFLECTIONS_OFF + m_InvalidKeywords: [] m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -105,6 +108,7 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + m_Ints: [] m_Floats: - _AdditionalLightIgnoreCelShade: 0.9 - _AlphaClip: 0 diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Grid.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Grid.mat index f2244349b..dbceea585 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Grid.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Grid.mat @@ -21,7 +21,7 @@ Material: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: Grid - m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} m_ValidKeywords: - _GLOSSYREFLECTIONS_OFF m_InvalidKeywords: @@ -79,6 +79,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _TerrainHolesTexture: + 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} @@ -104,8 +108,8 @@ Material: - _DetailNormalMapScale: 1 - _DstBlend: 0 - _EnvironmentReflections: 1 - - _GlossMapScale: 0 - - _Glossiness: 0 + - _GlossMapScale: 0.305 + - _Glossiness: 0.689 - _GlossinessSource: 0 - _GlossyReflections: 0 - _Metallic: 0 @@ -130,5 +134,5 @@ Material: - _BaseColor: {r: 0, g: 1, b: 0, a: 1} - _Color: {r: 0, g: 1, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + - _SpecColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1} m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/GridPlane.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/GridPlane.mat index 2f5e10587..306e4adda 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/GridPlane.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/GridPlane.mat @@ -21,7 +21,7 @@ Material: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: GridPlane - m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} m_ValidKeywords: - _GLOSSYREFLECTIONS_OFF m_InvalidKeywords: @@ -79,6 +79,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _TerrainHolesTexture: + 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} @@ -105,7 +109,7 @@ Material: - _DstBlend: 0 - _EnvironmentReflections: 1 - _GlossMapScale: 0 - - _Glossiness: 0 + - _Glossiness: 0.689 - _GlossinessSource: 0 - _GlossyReflections: 0 - _Metallic: 0 @@ -130,5 +134,5 @@ Material: - _BaseColor: {r: 0, g: 1, b: 0, a: 1} - _Color: {r: 0, g: 1, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + - _SpecColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1} m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 1.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 1.mat index 65327de3f..f49db7033 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 1.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 1.mat @@ -21,7 +21,7 @@ Material: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: Lights 1 - m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} m_ValidKeywords: - _GLOSSYREFLECTIONS_OFF m_InvalidKeywords: @@ -79,6 +79,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _TerrainHolesTexture: + 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} @@ -105,7 +109,7 @@ Material: - _DstBlend: 0 - _EnvironmentReflections: 1 - _GlossMapScale: 0 - - _Glossiness: 0 + - _Glossiness: 0.689 - _GlossinessSource: 0 - _GlossyReflections: 0 - _Metallic: 0 @@ -130,5 +134,5 @@ Material: - _BaseColor: {r: 0, g: 1, b: 0, a: 1} - _Color: {r: 0, g: 1, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + - _SpecColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1} m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 2.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 2.mat index f5d88e807..616e6fc80 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 2.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 2.mat @@ -21,7 +21,7 @@ Material: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: Lights 2 - m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} m_ValidKeywords: - _GLOSSYREFLECTIONS_OFF m_InvalidKeywords: @@ -79,6 +79,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _TerrainHolesTexture: + 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} @@ -105,7 +109,7 @@ Material: - _DstBlend: 0 - _EnvironmentReflections: 1 - _GlossMapScale: 0 - - _Glossiness: 0 + - _Glossiness: 0.689 - _GlossinessSource: 0 - _GlossyReflections: 0 - _Metallic: 0 @@ -130,5 +134,5 @@ Material: - _BaseColor: {r: 0, g: 1, b: 0, a: 1} - _Color: {r: 0, g: 1, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + - _SpecColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1} m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 3.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 3.mat index b3aceb703..f72cad602 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 3.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 3.mat @@ -21,7 +21,7 @@ Material: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: Lights 3 - m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} m_ValidKeywords: - _GLOSSYREFLECTIONS_OFF m_InvalidKeywords: @@ -79,6 +79,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _TerrainHolesTexture: + 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} @@ -105,7 +109,7 @@ Material: - _DstBlend: 0 - _EnvironmentReflections: 1 - _GlossMapScale: 0 - - _Glossiness: 0 + - _Glossiness: 0.689 - _GlossinessSource: 0 - _GlossyReflections: 0 - _Metallic: 0 @@ -130,5 +134,5 @@ Material: - _BaseColor: {r: 0, g: 1, b: 0, a: 1} - _Color: {r: 0, g: 1, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + - _SpecColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1} m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 4.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 4.mat index d10383559..78b618183 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 4.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights 4.mat @@ -15,14 +15,17 @@ MonoBehaviour: version: 4 --- !u!21 &2100000 Material: - serializedVersion: 6 + serializedVersion: 8 m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: Lights 4 - m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} - m_ShaderKeywords: _GLOSSYREFLECTIONS_OFF _RECEIVE_SHADOWS_OFF + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: + - _GLOSSYREFLECTIONS_OFF + m_InvalidKeywords: + - _RECEIVE_SHADOWS_OFF m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -76,6 +79,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _TerrainHolesTexture: + 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} @@ -88,6 +95,7 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + m_Ints: [] m_Floats: - _AlphaClip: 0 - _Blend: 0 @@ -101,7 +109,7 @@ Material: - _DstBlend: 0 - _EnvironmentReflections: 1 - _GlossMapScale: 0 - - _Glossiness: 0 + - _Glossiness: 0.689 - _GlossinessSource: 0 - _GlossyReflections: 0 - _Metallic: 0 @@ -126,5 +134,5 @@ Material: - _BaseColor: {r: 0, g: 1, b: 0, a: 1} - _Color: {r: 0, g: 1, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + - _SpecColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1} m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights.mat index 712c96802..cf36ba992 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Lights.mat @@ -21,7 +21,7 @@ Material: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: Lights - m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} m_ValidKeywords: - _GLOSSYREFLECTIONS_OFF m_InvalidKeywords: @@ -79,6 +79,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _TerrainHolesTexture: + 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} @@ -105,7 +109,7 @@ Material: - _DstBlend: 0 - _EnvironmentReflections: 1 - _GlossMapScale: 0 - - _Glossiness: 0 + - _Glossiness: 0.689 - _GlossinessSource: 0 - _GlossyReflections: 0 - _Metallic: 0 @@ -130,5 +134,5 @@ Material: - _BaseColor: {r: 0, g: 1, b: 0, a: 1} - _Color: {r: 0, g: 1, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + - _SpecColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1} m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Line.mat b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Line.mat index df126c280..5e9cbb813 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Line.mat +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Materials/World/Line.mat @@ -15,15 +15,18 @@ MonoBehaviour: version: 4 --- !u!21 &2100000 Material: - serializedVersion: 6 + serializedVersion: 8 m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: Line - m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} - m_ShaderKeywords: _GLOSSYREFLECTIONS_OFF - m_LightmapFlags: 4 + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: + - _EMISSION + - _GLOSSYREFLECTIONS_OFF + m_InvalidKeywords: [] + m_LightmapFlags: 2 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 @@ -88,6 +91,7 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + m_Ints: [] m_Floats: - _AlphaClip: 0 - _Blend: 0 @@ -101,7 +105,7 @@ Material: - _DstBlend: 0 - _EnvironmentReflections: 1 - _GlossMapScale: 0 - - _Glossiness: 0 + - _Glossiness: 0.711 - _GlossinessSource: 0 - _GlossyReflections: 0 - _Metallic: 0 @@ -125,6 +129,6 @@ Material: m_Colors: - _BaseColor: {r: 1, g: 0, b: 0, a: 1} - _Color: {r: 1, g: 0, b: 0, a: 1} - - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _EmissionColor: {r: 0.084905684, g: 0.084905684, b: 0.084905684, a: 1} - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} m_BuildTextureStacks: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/MissParts.fbx b/Assets/Resources/Models/Games/BuiltToScaleDS/MissParts.fbx index bb3ecca0d..46028f5cf 100644 Binary files a/Assets/Resources/Models/Games/BuiltToScaleDS/MissParts.fbx and b/Assets/Resources/Models/Games/BuiltToScaleDS/MissParts.fbx differ diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/MissParts.fbx.meta b/Assets/Resources/Models/Games/BuiltToScaleDS/MissParts.fbx.meta index 228656283..f5acf4a7d 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/MissParts.fbx.meta +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/MissParts.fbx.meta @@ -34,7 +34,36 @@ ModelImporter: animationWrapMode: 0 extraExposedTransformPaths: [] extraUserProperties: [] - clipAnimations: [] + clipAnimations: + - serializedVersion: 16 + name: parts_ng + takeName: parts_ng|parts_ng|parts_ng|parts_ng_parts_ng|parts_ng|parts_ng_parts_ng + internalID: 9130175970626193648 + firstFrame: 0 + lastFrame: 200 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 isReadable: 0 meshes: lODScreenPercentages: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/MovingBlocks.fbx b/Assets/Resources/Models/Games/BuiltToScaleDS/MovingBlocks.fbx index bc662b24b..b805b7aa4 100644 Binary files a/Assets/Resources/Models/Games/BuiltToScaleDS/MovingBlocks.fbx and b/Assets/Resources/Models/Games/BuiltToScaleDS/MovingBlocks.fbx differ diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/MovingBlocks.fbx.meta b/Assets/Resources/Models/Games/BuiltToScaleDS/MovingBlocks.fbx.meta index cfb0b58ff..cad747daf 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/MovingBlocks.fbx.meta +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/MovingBlocks.fbx.meta @@ -34,7 +34,36 @@ ModelImporter: animationWrapMode: 0 extraExposedTransformPaths: [] extraUserProperties: [] - clipAnimations: [] + clipAnimations: + - serializedVersion: 16 + name: piece_LR + takeName: piece_LR|piece_LR|piece_LR|piece_LR_piece_LR|piece_LR|piece_LR_piece_LR + internalID: 5263545620203285798 + firstFrame: 0 + lastFrame: 80 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 isReadable: 0 meshes: lODScreenPercentages: [] diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Shooter.fbx b/Assets/Resources/Models/Games/BuiltToScaleDS/Shooter.fbx index 44779e182..2946b13c3 100644 Binary files a/Assets/Resources/Models/Games/BuiltToScaleDS/Shooter.fbx and b/Assets/Resources/Models/Games/BuiltToScaleDS/Shooter.fbx differ diff --git a/Assets/Resources/Models/Games/BuiltToScaleDS/Shooter.fbx.meta b/Assets/Resources/Models/Games/BuiltToScaleDS/Shooter.fbx.meta index ca72a2e11..aac78dd46 100644 --- a/Assets/Resources/Models/Games/BuiltToScaleDS/Shooter.fbx.meta +++ b/Assets/Resources/Models/Games/BuiltToScaleDS/Shooter.fbx.meta @@ -33,14 +33,101 @@ ModelImporter: animationDoRetargetingWarnings: 0 importAnimatedCustomProperties: 0 importConstraints: 0 - animationCompression: 1 + animationCompression: 0 animationRotationError: 0.5 animationPositionError: 0.5 animationScaleError: 0.5 animationWrapMode: 0 extraExposedTransformPaths: [] extraUserProperties: [] - clipAnimations: [] + clipAnimations: + - serializedVersion: 16 + name: machine_shot_machine + takeName: machine|machine|machine|machine_shot_machine|machine|machine_shot_machi + internalID: 3178102532616702734 + firstFrame: 0 + lastFrame: 28 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: machine_touch_machine + takeName: machine|machine|machine|machine_touch_machine|machine|machine_touch_mac + internalID: -1408222738841483094 + firstFrame: 0 + lastFrame: 28 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: machine_wait_machine + takeName: machine|machine|machine|machine_wait_machine|machine|machine_wait_machi + internalID: -1871232912940249434 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 isReadable: 0 meshes: lODScreenPercentages: [] diff --git a/Assets/Resources/Prefabs/GameView/GameTex.renderTexture b/Assets/Resources/Prefabs/GameView/GameTex.renderTexture index 8c4b7c141..62cbb7cda 100644 --- a/Assets/Resources/Prefabs/GameView/GameTex.renderTexture +++ b/Assets/Resources/Prefabs/GameView/GameTex.renderTexture @@ -14,8 +14,8 @@ RenderTexture: m_DownscaleFallback: 0 m_IsAlphaChannelOptional: 0 serializedVersion: 5 - m_Width: 1057 - m_Height: 595 + m_Width: 1920 + m_Height: 1080 m_AntiAliasing: 2 m_MipCount: -1 m_DepthStencilFormat: 92 diff --git a/Assets/Resources/Prefabs/GameView/OverlayTex.renderTexture b/Assets/Resources/Prefabs/GameView/OverlayTex.renderTexture index 0adc9aee6..8d5f14078 100644 --- a/Assets/Resources/Prefabs/GameView/OverlayTex.renderTexture +++ b/Assets/Resources/Prefabs/GameView/OverlayTex.renderTexture @@ -14,8 +14,8 @@ RenderTexture: m_DownscaleFallback: 0 m_IsAlphaChannelOptional: 0 serializedVersion: 5 - m_Width: 1585 - m_Height: 892 + m_Width: 2880 + m_Height: 1620 m_AntiAliasing: 1 m_MipCount: -1 m_DepthStencilFormat: 92 diff --git a/Assets/Resources/Prefabs/Games/Airboarder.meta b/Assets/Resources/Prefabs/Games/Airboarder.meta new file mode 100644 index 000000000..0ef418de5 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/Airboarder.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 45eddc273fbe08a4da29cba22a5ebafe +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/Airboarder/Arch.prefab b/Assets/Resources/Prefabs/Games/Airboarder/Arch.prefab new file mode 100644 index 000000000..4bea873cb --- /dev/null +++ b/Assets/Resources/Prefabs/Games/Airboarder/Arch.prefab @@ -0,0 +1,162 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &119085810299290300 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9162829953361993292} + - component: {fileID: 7156544168921380517} + - component: {fileID: 2055555711795975103} + m_Layer: 0 + m_Name: Arch + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9162829953361993292 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 119085810299290300} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -140, y: -1, z: 0.8} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2022295182614061159} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &7156544168921380517 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 119085810299290300} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 4464fa6dd045f9345bcdb7f9d2d7d8f3, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!114 &2055555711795975103 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 119085810299290300} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7418df1ca9a5218468aa02006816659f, type: 3} + m_Name: + m_EditorClassIdentifier: + game: {fileID: 0} + targetBeat: 0 + appearBeat: 0 + normalizedStart: 0 + anim: {fileID: 0} +--- !u!1001 &1988932681719383948 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9162829953361993292} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + propertyPath: m_Name + value: wall_high + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} +--- !u!1 &1683064700847373021 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + m_PrefabInstance: {fileID: 1988932681719383948} + m_PrefabAsset: {fileID: 0} +--- !u!95 &2312026763175664203 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1683064700847373021} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 4464fa6dd045f9345bcdb7f9d2d7d8f3, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!4 &2022295182614061159 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 49f7ce11d95b7954a8b997bfb1effb51, type: 3} + m_PrefabInstance: {fileID: 1988932681719383948} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/Resources/Prefabs/Games/Airboarder/Arch.prefab.meta b/Assets/Resources/Prefabs/Games/Airboarder/Arch.prefab.meta new file mode 100644 index 000000000..f486d18b9 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/Airboarder/Arch.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5991fbd63a80ddb48a0f75ff19b7fccb +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/FreezeFrame.meta b/Assets/Resources/Prefabs/Games/FreezeFrame.meta new file mode 100644 index 000000000..ddb9c19e6 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/FreezeFrame.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 05c4fdf9be5abb84d8bfe849dd744f03 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/FreezeFrame/FarCar.prefab b/Assets/Resources/Prefabs/Games/FreezeFrame/FarCar.prefab new file mode 100644 index 000000000..208cbfc36 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/FreezeFrame/FarCar.prefab @@ -0,0 +1,5208 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &215111139478105809 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5184499548829762474} + - component: {fileID: 1830503430873878583} + m_Layer: 0 + m_Name: WheelFar02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5184499548829762474 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 215111139478105809} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.1568, y: -0.0585, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2867493124072553945} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1830503430873878583 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 215111139478105809} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 56 + m_Sprite: {fileID: -1950327860, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.21, y: 0.21} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &2075028642364583115 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6946551013102958060} + - component: {fileID: 7997424004296554398} + m_Layer: 0 + m_Name: FarCar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6946551013102958060 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2075028642364583115} + 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: 1853104473625298798} + - {fileID: 2867493124072553945} + - {fileID: 1842858107515577248} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &7997424004296554398 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2075028642364583115} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: ad0434844caee2c408d7e8930c9455c9, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &2367453434430737401 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1842858107515577248} + - component: {fileID: 2474116073957625541} + - component: {fileID: 8785100233753835939} + m_Layer: 0 + m_Name: Particle System + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1842858107515577248 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2367453434430737401} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.106, y: -0.109, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6946551013102958060} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!198 &2474116073957625541 +ParticleSystem: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2367453434430737401} + serializedVersion: 8 + lengthInSec: 5 + simulationSpeed: 1 + stopAction: 0 + cullingMode: 0 + ringBufferMode: 0 + ringBufferLoopRange: {x: 0, y: 1} + emitterVelocityMode: 1 + looping: 1 + prewarm: 0 + playOnAwake: 1 + useUnscaledTime: 0 + autoRandomSeed: 1 + startDelay: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + moveWithTransform: 1 + moveWithCustomTransform: {fileID: 0} + scalingMode: 1 + randomSeed: 0 + InitialModule: + serializedVersion: 3 + enabled: 1 + startLifetime: + serializedVersion: 2 + minMaxState: 0 + scalar: 1.6 + minScalar: 5 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startSpeed: + serializedVersion: 2 + minMaxState: 0 + scalar: 0.2 + minScalar: 5 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startColor: + serializedVersion: 2 + minMaxState: 0 + minColor: {r: 1, g: 1, b: 1, a: 0.5019608} + maxColor: {r: 1, g: 1, b: 1, a: 1} + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + startSize: + serializedVersion: 2 + minMaxState: 3 + scalar: 2 + minScalar: 0.5 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startSizeY: + serializedVersion: 2 + minMaxState: 3 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startSizeZ: + serializedVersion: 2 + minMaxState: 3 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startRotationX: + serializedVersion: 2 + minMaxState: 3 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startRotationY: + serializedVersion: 2 + minMaxState: 3 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startRotation: + serializedVersion: 2 + minMaxState: 3 + scalar: 6.283185 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + randomizeRotationDirection: 0 + maxNumParticles: 100 + customEmitterVelocity: {x: 0, y: 0, z: 0} + size3D: 0 + rotation3D: 0 + gravityModifier: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + ShapeModule: + serializedVersion: 6 + enabled: 1 + type: 10 + angle: 0 + length: 5 + boxThickness: {x: 0, y: 0, z: 0} + radiusThickness: 1 + donutRadius: 0.2 + m_Position: {x: 0, y: 0, z: 0} + m_Rotation: {x: 0, y: 0, z: 90} + m_Scale: {x: 1, y: 1, z: 1} + placementMode: 0 + m_MeshMaterialIndex: 0 + m_MeshNormalOffset: 0 + m_MeshSpawn: + mode: 0 + spread: 0 + speed: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + m_Mesh: {fileID: 0} + m_MeshRenderer: {fileID: 0} + m_SkinnedMeshRenderer: {fileID: 0} + m_Sprite: {fileID: 0} + m_SpriteRenderer: {fileID: 0} + m_UseMeshMaterialIndex: 0 + m_UseMeshColors: 1 + alignToDirection: 0 + m_Texture: {fileID: 0} + m_TextureClipChannel: 3 + m_TextureClipThreshold: 0 + m_TextureUVChannel: 0 + m_TextureColorAffectsParticles: 1 + m_TextureAlphaAffectsParticles: 1 + m_TextureBilinearFiltering: 0 + randomDirectionAmount: 0 + sphericalDirectionAmount: 0 + randomPositionAmount: 0 + radius: + value: 0.75 + mode: 0 + spread: 0 + speed: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + arc: + value: 0 + mode: 0 + spread: 0 + speed: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + EmissionModule: + enabled: 1 + serializedVersion: 4 + rateOverTime: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 10 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + rateOverDistance: + serializedVersion: 2 + minMaxState: 0 + scalar: 1.5 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + m_BurstCount: 0 + m_Bursts: [] + SizeModule: + enabled: 1 + curve: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + y: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + z: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + separateAxes: 0 + RotationModule: + enabled: 0 + x: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + y: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + curve: + serializedVersion: 2 + minMaxState: 0 + scalar: 0.7853982 + minScalar: 0.7853982 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + separateAxes: 0 + ColorModule: + enabled: 1 + gradient: + serializedVersion: 2 + minMaxState: 1 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 32768 + atime2: 65535 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 3 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + UVModule: + serializedVersion: 2 + enabled: 0 + mode: 0 + timeMode: 0 + fps: 30 + frameOverTime: + serializedVersion: 2 + minMaxState: 1 + scalar: 0.9999 + minScalar: 0.9999 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startFrame: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + speedRange: {x: 0, y: 1} + tilesX: 1 + tilesY: 1 + animationType: 0 + rowIndex: 0 + cycles: 1 + uvChannelMask: -1 + rowMode: 1 + sprites: + - sprite: {fileID: 0} + flipU: 0 + flipV: 0 + VelocityModule: + enabled: 0 + x: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + y: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + z: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + orbitalX: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + orbitalY: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + orbitalZ: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + orbitalOffsetX: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + orbitalOffsetY: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + orbitalOffsetZ: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + radial: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + speedModifier: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + inWorldSpace: 0 + InheritVelocityModule: + enabled: 0 + m_Mode: 0 + m_Curve: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + LifetimeByEmitterSpeedModule: + enabled: 0 + m_Curve: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: -0.8 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2 + inSlope: -0.8 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + m_Range: {x: 0, y: 1} + ForceModule: + enabled: 0 + x: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + y: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + z: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + inWorldSpace: 0 + randomizePerFrame: 0 + ExternalForcesModule: + serializedVersion: 2 + enabled: 0 + multiplierCurve: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + influenceFilter: 0 + influenceMask: + serializedVersion: 2 + m_Bits: 4294967295 + influenceList: [] + ClampVelocityModule: + enabled: 0 + x: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + y: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + z: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + magnitude: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + separateAxis: 0 + inWorldSpace: 0 + multiplyDragByParticleSize: 1 + multiplyDragByParticleVelocity: 1 + dampen: 0 + drag: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + NoiseModule: + enabled: 0 + strength: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + strengthY: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + strengthZ: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + separateAxes: 0 + frequency: 0.5 + damping: 1 + octaves: 1 + octaveMultiplier: 0.5 + octaveScale: 2 + quality: 2 + scrollSpeed: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + remap: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: 0 + outSlope: 2 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 2 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + remapY: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: 0 + outSlope: 2 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 2 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + remapZ: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: 0 + outSlope: 2 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 2 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + remapEnabled: 0 + positionAmount: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + rotationAmount: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + sizeAmount: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + SizeBySpeedModule: + enabled: 0 + curve: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + y: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + z: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + range: {x: 0, y: 1} + separateAxes: 0 + RotationBySpeedModule: + enabled: 0 + x: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + y: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + curve: + serializedVersion: 2 + minMaxState: 0 + scalar: 0.7853982 + minScalar: 0.7853982 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + separateAxes: 0 + range: {x: 0, y: 1} + ColorBySpeedModule: + enabled: 0 + gradient: + serializedVersion: 2 + minMaxState: 1 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + range: {x: 0, y: 1} + CollisionModule: + enabled: 0 + serializedVersion: 4 + type: 0 + collisionMode: 0 + colliderForce: 0 + multiplyColliderForceByParticleSize: 0 + multiplyColliderForceByParticleSpeed: 0 + multiplyColliderForceByCollisionAngle: 1 + m_Planes: [] + m_Dampen: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + m_Bounce: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + m_EnergyLossOnCollision: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minKillSpeed: 0 + maxKillSpeed: 10000 + radiusScale: 1 + collidesWith: + serializedVersion: 2 + m_Bits: 4294967295 + maxCollisionShapes: 256 + quality: 0 + voxelSize: 0.5 + collisionMessages: 0 + collidesWithDynamic: 1 + interiorCollisions: 0 + TriggerModule: + enabled: 0 + serializedVersion: 2 + inside: 1 + outside: 0 + enter: 0 + exit: 0 + colliderQueryMode: 0 + radiusScale: 1 + primitives: [] + SubModule: + serializedVersion: 2 + enabled: 0 + subEmitters: + - serializedVersion: 3 + emitter: {fileID: 0} + type: 0 + properties: 0 + emitProbability: 1 + LightsModule: + enabled: 0 + ratio: 0 + light: {fileID: 0} + randomDistribution: 1 + color: 1 + range: 1 + intensity: 1 + rangeCurve: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + intensityCurve: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + maxLights: 20 + TrailModule: + enabled: 0 + mode: 0 + ratio: 1 + lifetime: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minVertexDistance: 0.2 + textureMode: 0 + ribbonCount: 1 + shadowBias: 0.5 + worldSpace: 0 + dieWithParticles: 1 + sizeAffectsWidth: 1 + sizeAffectsLifetime: 0 + inheritParticleColor: 1 + generateLightingData: 0 + splitSubEmitterRibbons: 0 + attachRibbonsToTransform: 0 + colorOverLifetime: + serializedVersion: 2 + minMaxState: 0 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + widthOverTrail: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + colorOverTrail: + serializedVersion: 2 + minMaxState: 0 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + CustomDataModule: + enabled: 0 + mode0: 0 + vectorComponentCount0: 4 + color0: + serializedVersion: 2 + minMaxState: 0 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + colorLabel0: Color + vector0_0: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel0_0: X + vector0_1: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel0_1: Y + vector0_2: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel0_2: Z + vector0_3: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel0_3: W + mode1: 0 + vectorComponentCount1: 4 + color1: + serializedVersion: 2 + minMaxState: 0 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + colorLabel1: Color + vector1_0: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel1_0: X + vector1_1: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel1_1: Y + vector1_2: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel1_2: Z + vector1_3: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel1_3: W +--- !u!199 &8785100233753835939 +ParticleSystemRenderer: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2367453434430737401} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 6debacd2e65d0d340acabb2727a92b7f, 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: 2 + m_RenderMode: 0 + m_MeshDistribution: 0 + m_SortMode: 0 + m_MinParticleSize: 0 + m_MaxParticleSize: 0.5 + m_CameraVelocityScale: 0 + m_VelocityScale: 0 + m_LengthScale: 2 + m_SortingFudge: 0 + m_NormalDirection: 1 + m_ShadowBias: 0 + m_RenderAlignment: 1 + m_Pivot: {x: 0, y: 0, z: 0} + m_Flip: {x: 0, y: 0, z: 0} + m_UseCustomVertexStreams: 0 + m_EnableGPUInstancing: 1 + m_ApplyActiveColorSpace: 1 + m_AllowRoll: 1 + m_FreeformStretching: 0 + m_RotateWithStretchDirection: 1 + m_VertexStreams: 00010304 + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} + m_Mesh1: {fileID: 0} + m_Mesh2: {fileID: 0} + m_Mesh3: {fileID: 0} + m_MeshWeighting: 1 + m_MeshWeighting1: 1 + m_MeshWeighting2: 1 + m_MeshWeighting3: 1 + m_MaskInteraction: 0 +--- !u!1 &3936155148052734441 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1853104473625298798} + - component: {fileID: 7803443364827996012} + m_Layer: 0 + m_Name: SlowCarFar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1853104473625298798 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3936155148052734441} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0047, y: 0.0947, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6946551013102958060} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7803443364827996012 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3936155148052734441} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 55 + m_Sprite: {fileID: -49849053, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.39, y: 0.47} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &3950975342435591753 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 845368209255405604} + - component: {fileID: 6498047394246920079} + m_Layer: 0 + m_Name: WheelFar01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &845368209255405604 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3950975342435591753} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.079, y: -0.0585, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2867493124072553945} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &6498047394246920079 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3950975342435591753} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 56 + m_Sprite: {fileID: -1950327860, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.21, y: 0.21} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5580641685281620075 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2867493124072553945} + - component: {fileID: 2230411980844722636} + m_Layer: 0 + m_Name: FastCarFar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2867493124072553945 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5580641685281620075} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0934, y: 0.0947, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 845368209255405604} + - {fileID: 5184499548829762474} + m_Father: {fileID: 6946551013102958060} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &2230411980844722636 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5580641685281620075} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 55 + m_Sprite: {fileID: 818276007, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.95, y: 0.47} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 diff --git a/Assets/Resources/Prefabs/Games/FreezeFrame/FarCar.prefab.meta b/Assets/Resources/Prefabs/Games/FreezeFrame/FarCar.prefab.meta new file mode 100644 index 000000000..5c2c810a3 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/FreezeFrame/FarCar.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4a2f3e693b7572442b1c884bab276bc4 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/FreezeFrame/NearCar.prefab b/Assets/Resources/Prefabs/Games/FreezeFrame/NearCar.prefab new file mode 100644 index 000000000..52b694018 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/FreezeFrame/NearCar.prefab @@ -0,0 +1,5378 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3014258871542000631 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4877796981155230049} + - component: {fileID: 3711623167737813775} + - component: {fileID: 7904591763105940858} + m_Layer: 0 + m_Name: Particle System + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4877796981155230049 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3014258871542000631} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.43, y: -0.172, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6084288726060573987} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!198 &3711623167737813775 +ParticleSystem: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3014258871542000631} + serializedVersion: 8 + lengthInSec: 5 + simulationSpeed: 1 + stopAction: 0 + cullingMode: 0 + ringBufferMode: 0 + ringBufferLoopRange: {x: 0, y: 1} + emitterVelocityMode: 1 + looping: 1 + prewarm: 0 + playOnAwake: 1 + useUnscaledTime: 0 + autoRandomSeed: 1 + startDelay: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + moveWithTransform: 1 + moveWithCustomTransform: {fileID: 0} + scalingMode: 1 + randomSeed: 0 + InitialModule: + serializedVersion: 3 + enabled: 1 + startLifetime: + serializedVersion: 2 + minMaxState: 0 + scalar: 1.6 + minScalar: 5 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startSpeed: + serializedVersion: 2 + minMaxState: 0 + scalar: 0.2 + minScalar: 5 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startColor: + serializedVersion: 2 + minMaxState: 0 + minColor: {r: 1, g: 1, b: 1, a: 0.5019608} + maxColor: {r: 1, g: 1, b: 1, a: 1} + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + startSize: + serializedVersion: 2 + minMaxState: 3 + scalar: 2 + minScalar: 0.5 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startSizeY: + serializedVersion: 2 + minMaxState: 3 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startSizeZ: + serializedVersion: 2 + minMaxState: 3 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startRotationX: + serializedVersion: 2 + minMaxState: 3 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startRotationY: + serializedVersion: 2 + minMaxState: 3 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startRotation: + serializedVersion: 2 + minMaxState: 3 + scalar: 6.283185 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + randomizeRotationDirection: 0 + maxNumParticles: 100 + customEmitterVelocity: {x: 0, y: 0, z: 0} + size3D: 0 + rotation3D: 0 + gravityModifier: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + ShapeModule: + serializedVersion: 6 + enabled: 1 + type: 10 + angle: 0 + length: 5 + boxThickness: {x: 0, y: 0, z: 0} + radiusThickness: 1 + donutRadius: 0.2 + m_Position: {x: 0, y: 0, z: 0} + m_Rotation: {x: 0, y: 0, z: 90} + m_Scale: {x: 1, y: 1, z: 1} + placementMode: 0 + m_MeshMaterialIndex: 0 + m_MeshNormalOffset: 0 + m_MeshSpawn: + mode: 0 + spread: 0 + speed: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + m_Mesh: {fileID: 0} + m_MeshRenderer: {fileID: 0} + m_SkinnedMeshRenderer: {fileID: 0} + m_Sprite: {fileID: 0} + m_SpriteRenderer: {fileID: 0} + m_UseMeshMaterialIndex: 0 + m_UseMeshColors: 1 + alignToDirection: 0 + m_Texture: {fileID: 0} + m_TextureClipChannel: 3 + m_TextureClipThreshold: 0 + m_TextureUVChannel: 0 + m_TextureColorAffectsParticles: 1 + m_TextureAlphaAffectsParticles: 1 + m_TextureBilinearFiltering: 0 + randomDirectionAmount: 0 + sphericalDirectionAmount: 0 + randomPositionAmount: 0 + radius: + value: 0.75 + mode: 0 + spread: 0 + speed: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + arc: + value: 0 + mode: 0 + spread: 0 + speed: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + EmissionModule: + enabled: 1 + serializedVersion: 4 + rateOverTime: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 10 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + rateOverDistance: + serializedVersion: 2 + minMaxState: 0 + scalar: 0.785 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + m_BurstCount: 0 + m_Bursts: [] + SizeModule: + enabled: 1 + curve: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + y: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + z: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + separateAxes: 0 + RotationModule: + enabled: 0 + x: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + y: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + curve: + serializedVersion: 2 + minMaxState: 0 + scalar: 0.7853982 + minScalar: 0.7853982 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + separateAxes: 0 + ColorModule: + enabled: 1 + gradient: + serializedVersion: 2 + minMaxState: 1 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 32768 + atime2: 65535 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 3 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + UVModule: + serializedVersion: 2 + enabled: 0 + mode: 0 + timeMode: 0 + fps: 30 + frameOverTime: + serializedVersion: 2 + minMaxState: 1 + scalar: 0.9999 + minScalar: 0.9999 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + startFrame: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + speedRange: {x: 0, y: 1} + tilesX: 1 + tilesY: 1 + animationType: 0 + rowIndex: 0 + cycles: 1 + uvChannelMask: -1 + rowMode: 1 + sprites: + - sprite: {fileID: 0} + flipU: 0 + flipV: 0 + VelocityModule: + enabled: 0 + x: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + y: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + z: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + orbitalX: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + orbitalY: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + orbitalZ: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + orbitalOffsetX: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + orbitalOffsetY: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + orbitalOffsetZ: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + radial: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + speedModifier: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + inWorldSpace: 0 + InheritVelocityModule: + enabled: 0 + m_Mode: 0 + m_Curve: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + LifetimeByEmitterSpeedModule: + enabled: 0 + m_Curve: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: -0.8 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2 + inSlope: -0.8 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + m_Range: {x: 0, y: 1} + ForceModule: + enabled: 0 + x: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + y: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + z: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + inWorldSpace: 0 + randomizePerFrame: 0 + ExternalForcesModule: + serializedVersion: 2 + enabled: 0 + multiplierCurve: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + influenceFilter: 0 + influenceMask: + serializedVersion: 2 + m_Bits: 4294967295 + influenceList: [] + ClampVelocityModule: + enabled: 0 + x: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + y: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + z: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + magnitude: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + separateAxis: 0 + inWorldSpace: 0 + multiplyDragByParticleSize: 1 + multiplyDragByParticleVelocity: 1 + dampen: 0 + drag: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + NoiseModule: + enabled: 0 + strength: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + strengthY: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + strengthZ: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + separateAxes: 0 + frequency: 0.5 + damping: 1 + octaves: 1 + octaveMultiplier: 0.5 + octaveScale: 2 + quality: 2 + scrollSpeed: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + remap: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: 0 + outSlope: 2 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 2 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + remapY: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: 0 + outSlope: 2 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 2 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + remapZ: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: 0 + outSlope: 2 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 2 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + remapEnabled: 0 + positionAmount: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + rotationAmount: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + sizeAmount: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + SizeBySpeedModule: + enabled: 0 + curve: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + y: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + z: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + range: {x: 0, y: 1} + separateAxes: 0 + RotationBySpeedModule: + enabled: 0 + x: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + y: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + curve: + serializedVersion: 2 + minMaxState: 0 + scalar: 0.7853982 + minScalar: 0.7853982 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + separateAxes: 0 + range: {x: 0, y: 1} + ColorBySpeedModule: + enabled: 0 + gradient: + serializedVersion: 2 + minMaxState: 1 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + range: {x: 0, y: 1} + CollisionModule: + enabled: 0 + serializedVersion: 4 + type: 0 + collisionMode: 0 + colliderForce: 0 + multiplyColliderForceByParticleSize: 0 + multiplyColliderForceByParticleSpeed: 0 + multiplyColliderForceByCollisionAngle: 1 + m_Planes: [] + m_Dampen: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + m_Bounce: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + m_EnergyLossOnCollision: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minKillSpeed: 0 + maxKillSpeed: 10000 + radiusScale: 1 + collidesWith: + serializedVersion: 2 + m_Bits: 4294967295 + maxCollisionShapes: 256 + quality: 0 + voxelSize: 0.5 + collisionMessages: 0 + collidesWithDynamic: 1 + interiorCollisions: 0 + TriggerModule: + enabled: 0 + serializedVersion: 2 + inside: 1 + outside: 0 + enter: 0 + exit: 0 + colliderQueryMode: 0 + radiusScale: 1 + primitives: [] + SubModule: + serializedVersion: 2 + enabled: 0 + subEmitters: + - serializedVersion: 3 + emitter: {fileID: 0} + type: 0 + properties: 0 + emitProbability: 1 + LightsModule: + enabled: 0 + ratio: 0 + light: {fileID: 0} + randomDistribution: 1 + color: 1 + range: 1 + intensity: 1 + rangeCurve: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + intensityCurve: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + maxLights: 20 + TrailModule: + enabled: 0 + mode: 0 + ratio: 1 + lifetime: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minVertexDistance: 0.2 + textureMode: 0 + ribbonCount: 1 + shadowBias: 0.5 + worldSpace: 0 + dieWithParticles: 1 + sizeAffectsWidth: 1 + sizeAffectsLifetime: 0 + inheritParticleColor: 1 + generateLightingData: 0 + splitSubEmitterRibbons: 0 + attachRibbonsToTransform: 0 + colorOverLifetime: + serializedVersion: 2 + minMaxState: 0 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + widthOverTrail: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + colorOverTrail: + serializedVersion: 2 + minMaxState: 0 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + CustomDataModule: + enabled: 0 + mode0: 0 + vectorComponentCount0: 4 + color0: + serializedVersion: 2 + minMaxState: 0 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + colorLabel0: Color + vector0_0: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel0_0: X + vector0_1: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel0_1: Y + vector0_2: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel0_2: Z + vector0_3: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel0_3: W + mode1: 0 + vectorComponentCount1: 4 + color1: + serializedVersion: 2 + minMaxState: 0 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + colorLabel1: Color + vector1_0: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel1_0: X + vector1_1: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel1_1: Y + vector1_2: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel1_2: Z + vector1_3: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + minScalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + 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 + vectorLabel1_3: W +--- !u!199 &7904591763105940858 +ParticleSystemRenderer: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3014258871542000631} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 6debacd2e65d0d340acabb2727a92b7f, 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: 2 + m_RenderMode: 0 + m_MeshDistribution: 0 + m_SortMode: 0 + m_MinParticleSize: 0 + m_MaxParticleSize: 0.5 + m_CameraVelocityScale: 0 + m_VelocityScale: 0 + m_LengthScale: 2 + m_SortingFudge: 0 + m_NormalDirection: 1 + m_ShadowBias: 0 + m_RenderAlignment: 1 + m_Pivot: {x: 0, y: 0, z: 0} + m_Flip: {x: 0, y: 0, z: 0} + m_UseCustomVertexStreams: 0 + m_EnableGPUInstancing: 1 + m_ApplyActiveColorSpace: 1 + m_AllowRoll: 1 + m_FreeformStretching: 0 + m_RotateWithStretchDirection: 1 + m_VertexStreams: 00010304 + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} + m_Mesh1: {fileID: 0} + m_Mesh2: {fileID: 0} + m_Mesh3: {fileID: 0} + m_MeshWeighting: 1 + m_MeshWeighting1: 1 + m_MeshWeighting2: 1 + m_MeshWeighting3: 1 + m_MaskInteraction: 0 +--- !u!1 &3542147781938885842 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1319294765555201737} + - component: {fileID: 2183914388984837295} + m_Layer: 0 + m_Name: Wheel2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1319294765555201737 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3542147781938885842} + m_LocalRotation: {x: 0, y: 0, z: -0.21643952, w: 0.97629607} + m_LocalPosition: {x: 0.6071, y: -0.39, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 735089033296233407} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -25} +--- !u!212 &2183914388984837295 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3542147781938885842} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 2042807485, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.54, y: 0.55} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &4519872251614624900 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 735089033296233407} + - component: {fileID: 3701883268780111755} + m_Layer: 0 + m_Name: LongCar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &735089033296233407 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4519872251614624900} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0051, y: 0.5551, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8344687458299776161} + - {fileID: 1319294765555201737} + m_Father: {fileID: 6084288726060573987} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3701883268780111755 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4519872251614624900} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 2093622923, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 1 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 4.15, y: 1.11} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &6316383854990439577 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8344687458299776161} + - component: {fileID: 1462882942847441189} + m_Layer: 0 + m_Name: Wheel1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8344687458299776161 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6316383854990439577} + m_LocalRotation: {x: 0, y: 0, z: -0.21643952, w: 0.97629607} + m_LocalPosition: {x: -0.6049, y: -0.39, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 735089033296233407} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -25} +--- !u!212 &1462882942847441189 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6316383854990439577} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 2042807485, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.54, y: 0.55} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &7261507305415260607 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 294430731119819701} + - component: {fileID: 8591474886851436666} + m_Layer: 0 + m_Name: SlowCar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &294430731119819701 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7261507305415260607} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.455, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 553736965606395844} + - {fileID: 3488128711242144420} + m_Father: {fileID: 6084288726060573987} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8591474886851436666 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7261507305415260607} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: -299858999, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 1 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.34, y: 1.11} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &7486745507928904205 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 553736965606395844} + - component: {fileID: 5247128557610869362} + m_Layer: 0 + m_Name: Wheel1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &553736965606395844 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7486745507928904205} + m_LocalRotation: {x: 0, y: 0, z: -0.21643952, w: 0.97629607} + m_LocalPosition: {x: -0.2339, y: -0.2996, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 294430731119819701} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -25} +--- !u!212 &5247128557610869362 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7486745507928904205} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 2042807485, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.54, y: 0.55} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &9072446756646562533 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3488128711242144420} + - component: {fileID: 4592429922913371326} + m_Layer: 0 + m_Name: Wheel2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3488128711242144420 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9072446756646562533} + m_LocalRotation: {x: 0, y: 0, z: -0.21643952, w: 0.97629607} + m_LocalPosition: {x: 0.2254, y: -0.2996, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 294430731119819701} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -25} +--- !u!212 &4592429922913371326 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9072446756646562533} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 2042807485, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.54, y: 0.55} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &9201264650996470607 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6084288726060573987} + - component: {fileID: 5306769740670614925} + m_Layer: 0 + m_Name: NearCar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6084288726060573987 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9201264650996470607} + 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: 294430731119819701} + - {fileID: 735089033296233407} + - {fileID: 4877796981155230049} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &5306769740670614925 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9201264650996470607} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: f3016a51d39383040b47ad5039b9feba, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 diff --git a/Assets/Resources/Prefabs/Games/FreezeFrame/NearCar.prefab.meta b/Assets/Resources/Prefabs/Games/FreezeFrame/NearCar.prefab.meta new file mode 100644 index 000000000..6f8cb6c15 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/FreezeFrame/NearCar.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 896c419b7cd23ee4da5472c50a3ecc36 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/FreezeFrame/Photograph.prefab b/Assets/Resources/Prefabs/Games/FreezeFrame/Photograph.prefab new file mode 100644 index 000000000..6d47a1444 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/FreezeFrame/Photograph.prefab @@ -0,0 +1,1945 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &670573583472326503 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1433158191583428323} + - component: {fileID: 5739923312083636362} + m_Layer: 0 + m_Name: Wheel2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1433158191583428323 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 670573583472326503} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 1.003, y: -0.363, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2894170334435023076} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &5739923312083636362 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 670573583472326503} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 2042807485, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.54, y: 0.55} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &747716241443114069 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8449834335419517958} + - component: {fileID: 2027379055137629751} + m_Layer: 0 + m_Name: Wheel2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8449834335419517958 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 747716241443114069} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.2382, y: -0.36600003, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1.9617248} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5356231702138573691} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &2027379055137629751 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 747716241443114069} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 2042807485, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.54, y: 0.55} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &993060137680215235 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4282985837680045871} + - component: {fileID: 1513330043702872655} + m_Layer: 0 + m_Name: Wheel1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4282985837680045871 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 993060137680215235} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.2416, y: -0.36600003, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1.9617248} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5356231702138573691} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1513330043702872655 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 993060137680215235} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 2042807485, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.54, y: 0.55} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &1884727371926844168 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1932942986473492494} + - component: {fileID: 3207165631836330623} + m_Layer: 0 + m_Name: Mask + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1932942986473492494 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884727371926844168} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1.7500001, y: 1.2943751, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6034071938853170862} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!331 &3207165631836330623 +SpriteMask: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884727371926844168} + 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: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10758, guid: 0000000000000000f000000000000000, type: 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 + m_Sprite: {fileID: 7482667652216324306, guid: ef2fa2a75dc283e40b9d4fe1f20dc6fb, type: 3} + m_MaskAlphaCutoff: 0.2 + m_FrontSortingLayerID: 0 + m_BackSortingLayerID: 0 + m_FrontSortingLayer: 0 + m_BackSortingLayer: 0 + m_FrontSortingOrder: 0 + m_BackSortingOrder: 0 + m_IsCustomRangeActive: 0 + m_SpriteSortPoint: 0 +--- !u!1 &1935912681009576752 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2063311831097090443} + - component: {fileID: 5097862375587261262} + m_Layer: 0 + m_Name: Peace + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2063311831097090443 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1935912681009576752} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7338110216945798119} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &5097862375587261262 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1935912681009576752} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 1067254330, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.71, y: 0.62} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &2320061434944716667 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8893874458938880333} + - component: {fileID: 581431794165700110} + - component: {fileID: 5694201485641358967} + - component: {fileID: 8870642042190759657} + m_Layer: 0 + m_Name: Photograph + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8893874458938880333 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2320061434944716667} + 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: 6034071938853170862} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &581431794165700110 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2320061434944716667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6e32d9c0a4600404e87df2a5807e2d62, type: 3} + m_Name: + m_EditorClassIdentifier: + _Animator: {fileID: 5694201485641358967} +--- !u!95 &5694201485641358967 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2320061434944716667} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: cb8f66b88796da944bd20dfe69f106cc, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!210 &8870642042190759657 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2320061434944716667} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!1 &2521870842546410147 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3350198301140688800} + - component: {fileID: 854769121943918062} + m_Layer: 0 + m_Name: TrackEdge + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3350198301140688800 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2521870842546410147} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.004899999, y: -0.08, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6034071938853170862} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &854769121943918062 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2521870842546410147} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -9 + m_Sprite: {fileID: -1029839650, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 2.23, y: 0.46} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &2538306193934904188 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1202687893155699494} + - component: {fileID: 3161749486585325155} + m_Layer: 0 + m_Name: Border + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1202687893155699494 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2538306193934904188} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0062, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6034071938853170862} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3161749486585325155 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2538306193934904188} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 50 + m_Sprite: {fileID: 832552208, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 2.23, y: 1.74} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &2961761167415600934 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2894170334435023076} + - component: {fileID: 3803485491321209615} + m_Layer: 0 + m_Name: FastCar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2894170334435023076 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2961761167415600934} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0881, y: -0.1727, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4263030155025361156} + - {fileID: 1433158191583428323} + m_Father: {fileID: 6034071938853170862} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3803485491321209615 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2961761167415600934} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 2093622923, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 1 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 4.15, y: 1.11} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &3049923175259605929 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1582374787615562081} + - component: {fileID: 8880671876719737096} + m_Layer: 0 + m_Name: Ghost + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1582374787615562081 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3049923175259605929} + m_LocalRotation: {x: -0, y: -0, z: -0.7071068, w: 0.7071068} + m_LocalPosition: {x: -0.11, y: 0.4249, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7338110216945798119} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -90} +--- !u!212 &8880671876719737096 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3049923175259605929} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -1 + m_Sprite: {fileID: -1782248971, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.87, y: 1.26} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &3129460755842467786 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 915917313090085819} + m_Layer: 0 + m_Name: Dude + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &915917313090085819 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3129460755842467786} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.059, y: 0.275, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1314018063511443102} + - {fileID: 8810783679441180009} + m_Father: {fileID: 7338110216945798119} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3654161429537191770 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4314859471449649189} + - component: {fileID: 57101658321301315} + m_Layer: 0 + m_Name: NinjaBlack + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4314859471449649189 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3654161429537191770} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.565, y: 0.32, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3703013360460205297} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &57101658321301315 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3654161429537191770} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -1 + m_Sprite: {fileID: -2123024622, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.11, y: 0.94} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &3681927817205389662 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7909362455604719391} + - component: {fileID: 2009372213426368938} + m_Layer: 0 + m_Name: Grass + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7909362455604719391 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3681927817205389662} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.027500004, y: 0.28920004, z: 0} + m_LocalScale: {x: 5.967048, y: 0.6699471, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6034071938853170862} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &2009372213426368938 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3681927817205389662} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -10 + m_Sprite: {fileID: -2068509640, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.62, y: 1.18} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &3814103966521989448 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1314018063511443102} + - component: {fileID: 5186125203295512843} + m_Layer: 0 + m_Name: DudeHead + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1314018063511443102 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3814103966521989448} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.598, y: -0.26, z: 0} + m_LocalScale: {x: 1, y: 1, z: 0.7986988} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 915917313090085819} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &5186125203295512843 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3814103966521989448} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 5 + m_Sprite: {fileID: 8396014, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.58, y: 1.42} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &4115321772085886115 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7338110216945798119} + m_Layer: 0 + m_Name: Cameos + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7338110216945798119 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4115321772085886115} + 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: 3703013360460205297} + - {fileID: 1582374787615562081} + - {fileID: 4595703916525937615} + - {fileID: 1734095669450168202} + - {fileID: 2063311831097090443} + - {fileID: 915917313090085819} + m_Father: {fileID: 6034071938853170862} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4268858110186585555 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8810783679441180009} + - component: {fileID: 7362610987397619548} + m_Layer: 0 + m_Name: DudeTorso + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8810783679441180009 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4268858110186585555} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.495, y: -1.584, z: 0} + m_LocalScale: {x: 1, y: 1, z: 0.7986988} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 915917313090085819} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7362610987397619548 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4268858110186585555} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 6 + m_Sprite: {fileID: -1413667912, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 2.06, y: 2.3} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &4323534464033400756 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3703013360460205297} + m_Layer: 0 + m_Name: Ninjas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3703013360460205297 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4323534464033400756} + 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: 5829174357979273238} + - {fileID: 4314859471449649189} + m_Father: {fileID: 7338110216945798119} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5104044738408755917 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4595703916525937615} + - component: {fileID: 211981288586238226} + m_Layer: 0 + m_Name: Rats + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4595703916525937615 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5104044738408755917} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.055, y: -0.5199, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7338110216945798119} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &211981288586238226 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5104044738408755917} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 2 + m_Sprite: {fileID: -1099585802, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.51, y: 0.7} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &5979342397040060961 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5356231702138573691} + - component: {fileID: 4717842634050899597} + m_Layer: 0 + m_Name: SlowCar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5356231702138573691 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5979342397040060961} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0.161, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5097555} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4282985837680045871} + - {fileID: 8449834335419517958} + m_Father: {fileID: 6034071938853170862} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &4717842634050899597 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5979342397040060961} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: -299858999, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 1 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.34, y: 1.11} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &6045409898540892531 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6034071938853170862} + m_Layer: 0 + m_Name: Main + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6034071938853170862 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6045409898540892531} + 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: 1932942986473492494} + - {fileID: 1202687893155699494} + - {fileID: 3350198301140688800} + - {fileID: 7909362455604719391} + - {fileID: 4943837461966710608} + - {fileID: 5356231702138573691} + - {fileID: 2894170334435023076} + - {fileID: 7338110216945798119} + m_Father: {fileID: 8893874458938880333} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6372504214757189636 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5829174357979273238} + - component: {fileID: 1772070105910127425} + m_Layer: 0 + m_Name: NinjaWhite + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5829174357979273238 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6372504214757189636} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.475, y: 0.32, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3703013360460205297} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1772070105910127425 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6372504214757189636} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -1 + m_Sprite: {fileID: -314316757, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.11, y: 0.94} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &6568632156940612593 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4263030155025361156} + - component: {fileID: 8169825850475577397} + m_Layer: 0 + m_Name: Wheel1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4263030155025361156 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6568632156940612593} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.5196, y: -0.363, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2894170334435023076} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8169825850475577397 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6568632156940612593} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 2042807485, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.54, y: 0.55} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &7284828431454634635 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1734095669450168202} + m_Layer: 0 + m_Name: Lady + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1734095669450168202 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7284828431454634635} + 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: 2330577533288533281} + - {fileID: 3947741033430932193} + m_Father: {fileID: 7338110216945798119} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7856208245186896471 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2330577533288533281} + - component: {fileID: 8225960137368547745} + m_Layer: 0 + m_Name: LadyFace + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2330577533288533281 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7856208245186896471} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.7151, y: -0.36506, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1734095669450168202} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8225960137368547745 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7856208245186896471} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 3 + m_Sprite: {fileID: -249442660, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.27, y: 2.31} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &8339901051540661129 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3947741033430932193} + - component: {fileID: 6050603293773221630} + m_Layer: 0 + m_Name: LadyBosom + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3947741033430932193 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8339901051540661129} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.565, y: -0.7601, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1734095669450168202} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &6050603293773221630 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8339901051540661129} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 4 + m_Sprite: {fileID: 315876861, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.11, y: 1.18} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 +--- !u!1 &9006650969956167135 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4943837461966710608} + - component: {fileID: 8021828765468778018} + m_Layer: 0 + m_Name: Track + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4943837461966710608 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9006650969956167135} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.016899992, y: -0.38520005, z: 0} + m_LocalScale: {x: 5.6910086, y: 0.60373557, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6034071938853170862} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8021828765468778018 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9006650969956167135} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -10 + m_Sprite: {fileID: 1594896761, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.62, y: 1.1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 1 + m_SpriteSortPoint: 0 diff --git a/Assets/Resources/Prefabs/Games/FreezeFrame/Photograph.prefab.meta b/Assets/Resources/Prefabs/Games/FreezeFrame/Photograph.prefab.meta new file mode 100644 index 000000000..4f4174efa --- /dev/null +++ b/Assets/Resources/Prefabs/Games/FreezeFrame/Photograph.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ded39dfb8985a1b46bd392c1bf7cd667 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/FreezeFrame/Walker.prefab b/Assets/Resources/Prefabs/Games/FreezeFrame/Walker.prefab new file mode 100644 index 000000000..552c06a18 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/FreezeFrame/Walker.prefab @@ -0,0 +1,641 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &205782476499455839 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3511898143015912962} + - component: {fileID: 5755786331216080248} + m_Layer: 0 + m_Name: LadyBosom + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3511898143015912962 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 205782476499455839} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.1553, y: -0.23987, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2248015370471273054} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &5755786331216080248 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 205782476499455839} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 4 + m_Sprite: {fileID: 315876861, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.11, y: 1.18} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &399546115407881669 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2876562867661457574} + - component: {fileID: 2564788946147382351} + m_Layer: 0 + m_Name: DudeHead + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2876562867661457574 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 399546115407881669} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.1, y: 0.6301, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 133126722085826772} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &2564788946147382351 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 399546115407881669} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 8396014, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.58, y: 1.42} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &1223157926225650465 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6871981132469122428} + - component: {fileID: 2061037176081126909} + m_Layer: 0 + m_Name: LadyArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6871981132469122428 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1223157926225650465} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.05966, y: -0.9, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2248015370471273054} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &2061037176081126909 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1223157926225650465} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 5 + m_Sprite: {fileID: 1834455136, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.62, y: 2.06} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &1328053298846351541 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7784322127376215575} + - component: {fileID: 9112910325772506427} + - component: {fileID: 1532584477763433015} + m_Layer: 0 + m_Name: Walker + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7784322127376215575 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1328053298846351541} + 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: 133126722085826772} + - {fileID: 2248015370471273054} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &9112910325772506427 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1328053298846351541} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 2cf5fed5be2cb114fa30e5984ed71fcb, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!210 &1532584477763433015 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1328053298846351541} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!1 &4491025377101545800 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 133126722085826772} + m_Layer: 0 + m_Name: Dude + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &133126722085826772 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4491025377101545800} + 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: 2876562867661457574} + - {fileID: 1252041402854233140} + m_Father: {fileID: 7784322127376215575} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6944636835018804305 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2248015370471273054} + m_Layer: 0 + m_Name: Girlfriend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2248015370471273054 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6944636835018804305} + 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: 5854537857942055584} + - {fileID: 3511898143015912962} + - {fileID: 205892274870522726} + - {fileID: 6871981132469122428} + m_Father: {fileID: 7784322127376215575} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7461925983565204115 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1252041402854233140} + - component: {fileID: 2494224027788011675} + m_Layer: 0 + m_Name: DudeTorso + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1252041402854233140 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7461925983565204115} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.2603, y: -0.75, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 133126722085826772} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &2494224027788011675 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7461925983565204115} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -1413667912, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 2.06, y: 2.3} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &8531394952305040998 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 205892274870522726} + - component: {fileID: 4309017244929629611} + m_Layer: 0 + m_Name: LadyWaist + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &205892274870522726 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8531394952305040998} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.1249, y: -1.1201, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2248015370471273054} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &4309017244929629611 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8531394952305040998} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 3 + m_Sprite: {fileID: 433216211, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.11, y: 1.58} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &9168863295689650524 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5854537857942055584} + - component: {fileID: 5710951943696502829} + m_Layer: 0 + m_Name: LadyFace + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5854537857942055584 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9168863295689650524} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0403, y: 0.17506, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2248015370471273054} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &5710951943696502829 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9168863295689650524} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 2 + m_Sprite: {fileID: 268902830, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1.26, y: 2.31} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 diff --git a/Assets/Resources/Prefabs/Games/FreezeFrame/Walker.prefab.meta b/Assets/Resources/Prefabs/Games/FreezeFrame/Walker.prefab.meta new file mode 100644 index 000000000..a61ca5961 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/FreezeFrame/Walker.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2ed65f53577660448ba4f8b0fde49438 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy.meta b/Assets/Resources/Prefabs/Games/PowerCalligraphy.meta new file mode 100644 index 000000000..52bbd013f --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d817a0404ce3c2c44990f0dd9245fa0d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_chikara.prefab b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_chikara.prefab new file mode 100644 index 000000000..c6ca1c020 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_chikara.prefab @@ -0,0 +1,464 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &195357483364548343 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1178238817085027802} + - component: {fileID: 7074893976072341121} + m_Layer: 0 + m_Name: line02-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1178238817085027802 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 195357483364548343} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.1, y: 0.5, z: 0} + m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6805082560439140673} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7074893976072341121 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 195357483364548343} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -397528732, guid: 601a210af9469ec4c9a88674c4ed436d, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &1537105759762099161 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2756067806312241595} + - component: {fileID: 453079108433053212} + m_Layer: 0 + m_Name: line02-1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2756067806312241595 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1537105759762099161} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.2, y: 0.3, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6805082560439140673} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &453079108433053212 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1537105759762099161} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 3 + m_Sprite: {fileID: -2112578622, guid: 601a210af9469ec4c9a88674c4ed436d, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &2256836737809108092 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6805082560439140673} + m_Layer: 0 + m_Name: character + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6805082560439140673 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2256836737809108092} + 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: 7298269289566964098} + - {fileID: 1178238817085027802} + - {fileID: 2756067806312241595} + m_Father: {fileID: 3632738556188128167} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3522147905795316729 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3632738556188128167} + - component: {fileID: 214456315437628215} + - component: {fileID: 8031681962790497104} + - component: {fileID: 3471140596217382313} + - component: {fileID: 2745287404196091379} + m_Layer: 0 + m_Name: paper_chikara + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3632738556188128167 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3522147905795316729} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.1, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 6805082560439140673} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &214456315437628215 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3522147905795316729} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 1 + m_Size: {x: 6.23, y: 8.03} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!114 &8031681962790497104 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3522147905795316729} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} + m_Name: + m_EditorClassIdentifier: + startBeat: 0 + AnimPattern: + - beat: 0 + soundType: 1 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 0.5 + soundType: 2 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 1 + soundType: 3 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 2 + soundType: 4 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 2.5 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 1 + - beat: 3 + soundType: 1 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 4 + soundType: 0 + soundVolume: 0 + stroke: 3 + fudeAnim: 0 + - beat: 7 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 0 + scrollSpeed: {x: 0, y: 0, z: 0} + onGoing: 0 +--- !u!95 &3471140596217382313 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3522147905795316729} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 817f6e26e22e2854d9575e0095056cf0, type: 2} + m_CullingMode: 0 + m_UpdateMode: 2 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!210 &2745287404196091379 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3522147905795316729} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 +--- !u!1 &4784305608563424229 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7298269289566964098} + - component: {fileID: 3405609108656925645} + m_Layer: 0 + m_Name: line01-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7298269289566964098 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4784305608563424229} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.4, y: -0.1, z: 0} + m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6805082560439140673} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3405609108656925645 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4784305608563424229} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 2 + m_Sprite: {fileID: 1653516715, guid: 601a210af9469ec4c9a88674c4ed436d, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_chikara.prefab.meta b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_chikara.prefab.meta new file mode 100644 index 000000000..85120b9af --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_chikara.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: be60362a8480b894c97ac7ca6fc4dd08 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_comma.prefab b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_comma.prefab new file mode 100644 index 000000000..9fd8f8677 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_comma.prefab @@ -0,0 +1,369 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3774049005728139305 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3061285399785495424} + - component: {fileID: 7180064204813991853} + - component: {fileID: 5627911193726578627} + - component: {fileID: 3312983310429999770} + - component: {fileID: 2941026686099194616} + m_Layer: 0 + m_Name: paper_comma + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3061285399785495424 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3774049005728139305} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.1, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 3643526108975920731} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7180064204813991853 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3774049005728139305} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 1 + m_Size: {x: 6.23, y: 8.03} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!114 &5627911193726578627 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3774049005728139305} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} + m_Name: + m_EditorClassIdentifier: + startBeat: 0 + AnimPattern: + - beat: 0 + soundType: 6 + soundVolume: 1 + stroke: 0 + fudeAnim: 3 + - beat: 2 + soundType: 7 + soundVolume: 1 + stroke: 0 + fudeAnim: 3 + - beat: 3 + soundType: 7 + soundVolume: 1 + stroke: 0 + fudeAnim: 3 + - beat: 4 + soundType: 8 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 5 + soundType: 0 + soundVolume: 0 + stroke: 1 + fudeAnim: 0 + - beat: 7 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 0 + scrollSpeed: {x: 0, y: 0, z: 0} + onGoing: 0 +--- !u!95 &3312983310429999770 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3774049005728139305} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: a236d6f31008448439761534488a5a76, type: 2} + m_CullingMode: 0 + m_UpdateMode: 2 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!210 &2941026686099194616 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3774049005728139305} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 +--- !u!1 &3774621737725889555 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9155314363147800552} + - component: {fileID: 6529879997699288826} + m_Layer: 0 + m_Name: line01-1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9155314363147800552 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3774621737725889555} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.45, y: -0.36, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3643526108975920731} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &6529879997699288826 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3774621737725889555} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 2 + m_Sprite: {fileID: 200246606, guid: ad40b2614844fbc47802e876fe0d3273, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5906655677664717676 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3643526108975920731} + m_Layer: 0 + m_Name: character + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3643526108975920731 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5906655677664717676} + 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: 5567213193608951625} + - {fileID: 9155314363147800552} + m_Father: {fileID: 3061285399785495424} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6233219195389626915 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5567213193608951625} + - component: {fileID: 3770309327560870602} + m_Layer: 0 + m_Name: line01-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5567213193608951625 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6233219195389626915} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.45, y: -0.36, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3643526108975920731} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3770309327560870602 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6233219195389626915} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -621564299, guid: ad40b2614844fbc47802e876fe0d3273, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_comma.prefab.meta b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_comma.prefab.meta new file mode 100644 index 000000000..b75885cc5 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_comma.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f7a33e3cba987aa4181c9206fadea292 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_face.prefab b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_face.prefab new file mode 100644 index 000000000..14f228b60 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_face.prefab @@ -0,0 +1,1209 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &420400752710336129 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2950982017723047585} + - component: {fileID: 8193702992723877364} + m_Layer: 0 + m_Name: line04-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2950982017723047585 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 420400752710336129} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.4, y: 0.8, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5064198219657614499} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8193702992723877364 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 420400752710336129} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 2129426473, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &1697902706293382701 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1131108785614864995} + - component: {fileID: 5662889360140886231} + m_Layer: 0 + m_Name: line02-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1131108785614864995 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1697902706293382701} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 1.6, y: -0.1, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5064198219657614499} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &5662889360140886231 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1697902706293382701} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -393905871, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &2381927093231859325 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8962185302215557796} + - component: {fileID: 7376069092067390250} + m_Layer: 0 + m_Name: line05-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8962185302215557796 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2381927093231859325} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -1.03, y: 0.36, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5064198219657614499} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7376069092067390250 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2381927093231859325} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 1130663883, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &4057754358475847228 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8692448632245936276} + - component: {fileID: 132977176637426712} + - component: {fileID: 1649560922685754979} + - component: {fileID: 7088647528396591489} + - component: {fileID: 6793234725573819454} + m_Layer: 0 + m_Name: paper_face + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8692448632245936276 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4057754358475847228} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.1, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 5064198219657614499} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &132977176637426712 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4057754358475847228} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 1 + m_Size: {x: 6.23, y: 8.03} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!114 &1649560922685754979 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4057754358475847228} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} + m_Name: + m_EditorClassIdentifier: + startBeat: 0 + AnimPattern: + - beat: 0 + soundType: 2 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 1 + soundType: 3 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 1.5 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 1 + - beat: 2 + soundType: 4 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 2.5 + soundType: 4 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 3 + soundType: 2 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 3.5 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 1 + - beat: 4 + soundType: 2 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 4.5 + soundType: 2 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 4.75 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 1 + - beat: 5 + soundType: 3 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 5.25 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 1 + - beat: 5.5 + soundType: 3 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 6 + soundType: 2 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 6.5 + soundType: 2 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 7 + soundType: 4 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 7.25 + soundType: 4 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 7.5 + soundType: 1 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 7.75 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 1 + - beat: 8 + soundType: 0 + soundVolume: 0 + stroke: 3 + fudeAnim: 2 + - beat: 11 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 0 + scrollSpeed: {x: 0, y: 0, z: 0} + onGoing: 0 +--- !u!95 &7088647528396591489 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4057754358475847228} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 0c31a273cf822064a9631b1f68e6104b, type: 2} + m_CullingMode: 0 + m_UpdateMode: 2 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!210 &6793234725573819454 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4057754358475847228} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 +--- !u!1 &5370232375554243410 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2537014795506448937} + - component: {fileID: 8214474020971974175} + m_Layer: 0 + m_Name: line10-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2537014795506448937 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5370232375554243410} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.2, y: -1.9, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5064198219657614499} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8214474020971974175 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5370232375554243410} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -428493417, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5483461331203284572 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6058701479946516609} + - component: {fileID: 983333437981397211} + m_Layer: 0 + m_Name: line08-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6058701479946516609 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5483461331203284572} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.2, y: -0.3, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5064198219657614499} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &983333437981397211 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5483461331203284572} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 1091740618, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5652094354825751614 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2004042939742289977} + - component: {fileID: 2113132151414046262} + m_Layer: 0 + m_Name: line01-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2004042939742289977 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5652094354825751614} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.5, y: 1.8, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5064198219657614499} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &2113132151414046262 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5652094354825751614} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -1959236509, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &6178144805933170097 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 553006401345689001} + - component: {fileID: 2480913913018060614} + m_Layer: 0 + m_Name: line10-1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &553006401345689001 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6178144805933170097} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.25, y: -3.3, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5064198219657614499} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &2480913913018060614 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6178144805933170097} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 2 + m_Sprite: {fileID: 582952446, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &6465100658503987017 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5064198219657614499} + m_Layer: 0 + m_Name: character + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5064198219657614499 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6465100658503987017} + 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: 2004042939742289977} + - {fileID: 1131108785614864995} + - {fileID: 8866670239064230155} + - {fileID: 2950982017723047585} + - {fileID: 8962185302215557796} + - {fileID: 2087076057563017067} + - {fileID: 1777688512668169944} + - {fileID: 6058701479946516609} + - {fileID: 237251301155225711} + - {fileID: 2537014795506448937} + - {fileID: 553006401345689001} + m_Father: {fileID: 8692448632245936276} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6871488288852608092 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8866670239064230155} + - component: {fileID: 3448626678459286258} + m_Layer: 0 + m_Name: line03-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8866670239064230155 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6871488288852608092} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.3, y: 1.3, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5064198219657614499} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3448626678459286258 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6871488288852608092} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 26309253, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &7896833886691561346 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 237251301155225711} + - component: {fileID: 3721491185078124266} + m_Layer: 0 + m_Name: line09-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &237251301155225711 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7896833886691561346} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.5, y: -1.1, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5064198219657614499} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3721491185078124266 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7896833886691561346} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 1254064485, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &8760324010335582051 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2087076057563017067} + - component: {fileID: 8674955641951609585} + m_Layer: 0 + m_Name: line06-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2087076057563017067 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8760324010335582051} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.4, y: 0.4, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5064198219657614499} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8674955641951609585 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8760324010335582051} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 912336089, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &8923523756596661307 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1777688512668169944} + - component: {fileID: 1156718827398448459} + m_Layer: 0 + m_Name: line07-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1777688512668169944 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8923523756596661307} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.8, y: -0.3, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5064198219657614499} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1156718827398448459 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8923523756596661307} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 283160622, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_face.prefab.meta b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_face.prefab.meta new file mode 100644 index 000000000..f2278a2d2 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_face.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: cdf6b70c8e62dfe4d857d857374f3c08 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_face_kr.prefab b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_face_kr.prefab new file mode 100644 index 000000000..310461ab2 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_face_kr.prefab @@ -0,0 +1,1209 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &758071151647859230 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8972790007619162204} + - component: {fileID: 6905227132126728754} + m_Layer: 0 + m_Name: line04-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8972790007619162204 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 758071151647859230} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.4, y: 0.8, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4044002308076207923} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &6905227132126728754 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 758071151647859230} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 2129426473, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &924014222149701354 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4044002308076207923} + m_Layer: 0 + m_Name: character + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4044002308076207923 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 924014222149701354} + 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: 8787687891482541703} + - {fileID: 178570876622226225} + - {fileID: 1183020433497386280} + - {fileID: 8972790007619162204} + - {fileID: 701694654796449260} + - {fileID: 1748341505210335246} + - {fileID: 6235521566408134987} + - {fileID: 1995216859499481511} + - {fileID: 4163294384555361271} + - {fileID: 7093252246077347105} + - {fileID: 2834835283723858315} + m_Father: {fileID: 9032452709665895545} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2201609883656763640 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4163294384555361271} + - component: {fileID: 1276998182663834330} + m_Layer: 0 + m_Name: line09-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4163294384555361271 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2201609883656763640} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.5, y: -1.1, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4044002308076207923} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1276998182663834330 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2201609883656763640} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 1254064485, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &2917176058676385823 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1995216859499481511} + - component: {fileID: 8319544920022124526} + m_Layer: 0 + m_Name: line08-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1995216859499481511 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2917176058676385823} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.2, y: -0.3, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4044002308076207923} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8319544920022124526 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2917176058676385823} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 1091740618, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &3172098273894748904 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9032452709665895545} + - component: {fileID: 1033667981984962245} + - component: {fileID: 410259130208538763} + - component: {fileID: 3600462146974121475} + - component: {fileID: 6944734431760097084} + m_Layer: 0 + m_Name: paper_face_kr + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9032452709665895545 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3172098273894748904} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.1, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 4044002308076207923} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1033667981984962245 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3172098273894748904} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 1 + m_Size: {x: 6.23, y: 8.03} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!114 &410259130208538763 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3172098273894748904} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} + m_Name: + m_EditorClassIdentifier: + startBeat: 0 + AnimPattern: + - beat: 0 + soundType: 2 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 1 + soundType: 3 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 1.5 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 1 + - beat: 2 + soundType: 1 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 2.5 + soundType: 4 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 3.25 + soundType: 4 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 3.5 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 1 + - beat: 4 + soundType: 2 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 4.5 + soundType: 2 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 4.75 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 1 + - beat: 5 + soundType: 3 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 5.25 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 1 + - beat: 5.5 + soundType: 3 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 6 + soundType: 2 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 6.5 + soundType: 2 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 7 + soundType: 4 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 7.25 + soundType: 4 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 7.5 + soundType: 1 + soundVolume: 1 + stroke: 0 + fudeAnim: 1 + - beat: 7.75 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 1 + - beat: 8 + soundType: 0 + soundVolume: 0 + stroke: 3 + fudeAnim: 2 + - beat: 11 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 0 + scrollSpeed: {x: 0, y: 0, z: 0} + onGoing: 0 +--- !u!95 &3600462146974121475 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3172098273894748904} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 5ba354e9a8bd298428bd42bcab85cab9, type: 2} + m_CullingMode: 0 + m_UpdateMode: 2 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!210 &6944734431760097084 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3172098273894748904} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 +--- !u!1 &3691488504838086251 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1748341505210335246} + - component: {fileID: 4403232525629726864} + m_Layer: 0 + m_Name: line06-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1748341505210335246 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3691488504838086251} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.4, y: 0.4, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4044002308076207923} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &4403232525629726864 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3691488504838086251} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 912336089, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &4119664569978775684 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 178570876622226225} + - component: {fileID: 7378862838298137937} + m_Layer: 0 + m_Name: line02-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &178570876622226225 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4119664569978775684} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 1.6, y: 0, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4044002308076207923} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &7378862838298137937 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4119664569978775684} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -393905871, guid: 46240fc17d4a3c244b8421a030f579f5, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &4579883989264654479 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6235521566408134987} + - component: {fileID: 3489556214865297664} + m_Layer: 0 + m_Name: line07-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6235521566408134987 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4579883989264654479} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.8, y: -0.3, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4044002308076207923} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3489556214865297664 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4579883989264654479} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 283160622, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5301381141008318568 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 701694654796449260} + - component: {fileID: 6987470134704800990} + m_Layer: 0 + m_Name: line05-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &701694654796449260 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5301381141008318568} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -1.03, y: 0.36, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4044002308076207923} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &6987470134704800990 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5301381141008318568} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 1130663883, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5422435093402859857 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2834835283723858315} + - component: {fileID: 3333719888947428418} + m_Layer: 0 + m_Name: line10-1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2834835283723858315 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5422435093402859857} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.25, y: -3.3, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4044002308076207923} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3333719888947428418 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5422435093402859857} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 2 + m_Sprite: {fileID: 582952446, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &7420070725156307038 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1183020433497386280} + - component: {fileID: 8457810617234953994} + m_Layer: 0 + m_Name: line03-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1183020433497386280 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7420070725156307038} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.3, y: 1.3, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4044002308076207923} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8457810617234953994 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7420070725156307038} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 26309253, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &7884370146910816704 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8787687891482541703} + - component: {fileID: 2218575500481446784} + m_Layer: 0 + m_Name: line01-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8787687891482541703 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7884370146910816704} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.5, y: 1.8, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4044002308076207923} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &2218575500481446784 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7884370146910816704} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -1959236509, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &8811763539244530492 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7093252246077347105} + - component: {fileID: 2179001441128400541} + m_Layer: 0 + m_Name: line10-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7093252246077347105 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8811763539244530492} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.2, y: -1.9, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4044002308076207923} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &2179001441128400541 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8811763539244530492} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -428493417, guid: 1496ae1edcbcc0d48bb555c46ce8030c, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_face_kr.prefab.meta b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_face_kr.prefab.meta new file mode 100644 index 000000000..799a680ae --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_face_kr.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d1f9b2ba14264984eb340d312a866725 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_kokoro.prefab b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_kokoro.prefab new file mode 100644 index 000000000..3d7d3372c --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_kokoro.prefab @@ -0,0 +1,469 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2761046352831041541 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6239449809996596450} + - component: {fileID: 5834736323263061060} + m_Layer: 0 + m_Name: line01-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6239449809996596450 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2761046352831041541} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.4, y: 0.3, z: 0} + m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 514425391724833506} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &5834736323263061060 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2761046352831041541} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -826016376, guid: d4745e98e2ce2764aab4a5103bf0a015, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5145401375096171017 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 514425391724833506} + m_Layer: 0 + m_Name: character + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &514425391724833506 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5145401375096171017} + 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: 6239449809996596450} + - {fileID: 6492451985666446390} + - {fileID: 8243892058379501450} + m_Father: {fileID: 4543016308120630451} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6271697657141521623 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4543016308120630451} + - component: {fileID: 868245380388059379} + - component: {fileID: 3307941373517175782} + - component: {fileID: 8230393154136936128} + - component: {fileID: 7044550432274675992} + m_Layer: 0 + m_Name: paper_kokoro + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4543016308120630451 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6271697657141521623} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.1, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 514425391724833506} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &868245380388059379 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6271697657141521623} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 1 + m_Size: {x: 6.23, y: 8.03} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!114 &3307941373517175782 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6271697657141521623} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} + m_Name: + m_EditorClassIdentifier: + startBeat: 0 + AnimPattern: + - beat: 0 + soundType: 4 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 0.5 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 1 + - beat: 1 + soundType: 3 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 1 + soundType: 0 + soundVolume: 0 + stroke: 2 + fudeAnim: 0 + - beat: 3.5 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 1 + - beat: 4 + soundType: 1 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 4.5 + soundType: 4 + soundVolume: 0.3 + stroke: 0 + fudeAnim: 1 + - beat: 5 + soundType: 0 + soundVolume: 0 + stroke: 1 + fudeAnim: 0 + - beat: 7 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 0 + scrollSpeed: {x: 0, y: 0, z: 0} + onGoing: 0 +--- !u!95 &8230393154136936128 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6271697657141521623} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: de75fac2650958246ba9488efce99f5e, type: 2} + m_CullingMode: 0 + m_UpdateMode: 2 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!210 &7044550432274675992 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6271697657141521623} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 +--- !u!1 &7069585792561126084 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6492451985666446390} + - component: {fileID: 311472290740884850} + m_Layer: 0 + m_Name: line01-1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6492451985666446390 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7069585792561126084} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.2, y: 0.3, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 514425391724833506} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &311472290740884850 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7069585792561126084} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 2 + m_Sprite: {fileID: 1178504388, guid: d4745e98e2ce2764aab4a5103bf0a015, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &7973077972034177412 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8243892058379501450} + - component: {fileID: 4985750215450341583} + m_Layer: 0 + m_Name: line01-2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8243892058379501450 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7973077972034177412} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.2, y: 0.3, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 514425391724833506} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &4985750215450341583 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7973077972034177412} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 2 + m_Sprite: {fileID: 229994197, guid: f53a4ec2735ed354da3b4cabab849c15, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_kokoro.prefab.meta b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_kokoro.prefab.meta new file mode 100644 index 000000000..c8171c0ff --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_kokoro.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 660d7014915a8d64098cad68dde7bc37 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_onore.prefab b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_onore.prefab new file mode 100644 index 000000000..c608cfe08 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_onore.prefab @@ -0,0 +1,459 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1929956963874144971 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4332938282159388112} + - component: {fileID: 6686230944188338687} + m_Layer: 0 + m_Name: line02-1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4332938282159388112 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1929956963874144971} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.2, y: 0.3, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6612228879800359495} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &6686230944188338687 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1929956963874144971} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 3 + m_Sprite: {fileID: 1625912491, guid: 4e19a9e61101a3440a89a24aadffea91, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &3690194260999955401 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2486545147553323141} + - component: {fileID: 597339366956276223} + - component: {fileID: 4829052144249283946} + - component: {fileID: 403426181633384893} + - component: {fileID: 1395557329018010413} + m_Layer: 0 + m_Name: paper_onore + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2486545147553323141 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3690194260999955401} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.1, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 6612228879800359495} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &597339366956276223 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3690194260999955401} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 1 + m_Size: {x: 6.23, y: 8.03} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!114 &4829052144249283946 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3690194260999955401} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} + m_Name: + m_EditorClassIdentifier: + startBeat: 0 + AnimPattern: + - beat: 0 + soundType: 1 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 1 + soundType: 4 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 1.5 + soundType: 4 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 2 + soundType: 1 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 3 + soundType: 2 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 4 + soundType: 3 + soundVolume: 1 + stroke: 2 + fudeAnim: 2 + - beat: 7 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 0 + scrollSpeed: {x: 0, y: 0, z: 0} + onGoing: 0 +--- !u!95 &403426181633384893 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3690194260999955401} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 45f20a81a09189347b0bc20639c519c2, type: 2} + m_CullingMode: 0 + m_UpdateMode: 2 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!210 &1395557329018010413 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3690194260999955401} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 +--- !u!1 &3696055483617531495 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6723754104318733022} + - component: {fileID: 3230724697757852036} + m_Layer: 0 + m_Name: line01-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6723754104318733022 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3696055483617531495} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.34, y: 0.78, z: 0} + m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6612228879800359495} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3230724697757852036 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3696055483617531495} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 2 + m_Sprite: {fileID: -1942423425, guid: 4e19a9e61101a3440a89a24aadffea91, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5506004162860994790 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6612228879800359495} + m_Layer: 0 + m_Name: character + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6612228879800359495 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5506004162860994790} + 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: 6723754104318733022} + - {fileID: 7427993594657996383} + - {fileID: 4332938282159388112} + m_Father: {fileID: 2486545147553323141} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6788957342353933968 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7427993594657996383} + - component: {fileID: 8349366646748240510} + m_Layer: 0 + m_Name: line02-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7427993594657996383 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6788957342353933968} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.4, y: -1, z: 0} + m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6612228879800359495} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &8349366646748240510 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6788957342353933968} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: -1252207459, guid: 4e19a9e61101a3440a89a24aadffea91, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_onore.prefab.meta b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_onore.prefab.meta new file mode 100644 index 000000000..7f8670e53 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_onore.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 839d559753a422649a93044314aaa6ae +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_re.prefab b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_re.prefab new file mode 100644 index 000000000..09ccf251e --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_re.prefab @@ -0,0 +1,364 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3046355258632768039 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3100622167889663218} + m_Layer: 0 + m_Name: character + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3100622167889663218 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3046355258632768039} + 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: 3106125279753686048} + - {fileID: 427457720276698889} + m_Father: {fileID: 6911587166899226730} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6050422544333354205 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3106125279753686048} + - component: {fileID: 1415109224077936299} + m_Layer: 0 + m_Name: line01-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3106125279753686048 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6050422544333354205} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.8, y: 0, z: 0} + m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3100622167889663218} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1415109224077936299 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6050422544333354205} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 322477732, guid: e406dc765cc8c294e9adbc852c372be7, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &6156687063713711112 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 427457720276698889} + - component: {fileID: 3158787212248057476} + m_Layer: 0 + m_Name: line01-1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &427457720276698889 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6156687063713711112} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.45, y: -0.36, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3100622167889663218} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3158787212248057476 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6156687063713711112} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 2 + m_Sprite: {fileID: 1965924717, guid: e406dc765cc8c294e9adbc852c372be7, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &8761030453000934461 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6911587166899226730} + - component: {fileID: 3741899165808687938} + - component: {fileID: 1717888285575482186} + - component: {fileID: 4711776178298167540} + - component: {fileID: 1014551856231082844} + m_Layer: 0 + m_Name: paper_re + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6911587166899226730 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8761030453000934461} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.1, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 3100622167889663218} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3741899165808687938 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8761030453000934461} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 1 + m_Size: {x: 6.23, y: 8.03} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!114 &1717888285575482186 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8761030453000934461} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} + m_Name: + m_EditorClassIdentifier: + startBeat: 0 + AnimPattern: + - beat: 0 + soundType: 5 + soundVolume: 1 + stroke: 0 + fudeAnim: 3 + - beat: 2 + soundType: 1 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 3 + soundType: 2 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 4 + soundType: 0 + soundVolume: 0 + stroke: 2 + fudeAnim: 0 + - beat: 7 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 0 + scrollSpeed: {x: 0, y: 0, z: 0} + onGoing: 0 +--- !u!95 &4711776178298167540 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8761030453000934461} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 444b7f482707cd84b8ec0448c8441b44, type: 2} + m_CullingMode: 0 + m_UpdateMode: 2 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!210 &1014551856231082844 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8761030453000934461} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_re.prefab.meta b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_re.prefab.meta new file mode 100644 index 000000000..87988cb73 --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_re.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9d789b8e6b933294fa7c4a51773a4e0b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_sun.prefab b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_sun.prefab new file mode 100644 index 000000000..19f4729cc --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_sun.prefab @@ -0,0 +1,544 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &213218189810991029 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1233153093129165247} + - component: {fileID: 6652596971475559218} + m_Layer: 0 + m_Name: line02-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1233153093129165247 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 213218189810991029} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.3, y: 0.2, z: 0} + m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 538606141939619844} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &6652596971475559218 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 213218189810991029} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 + m_Sprite: {fileID: 2114601721, guid: f53a4ec2735ed354da3b4cabab849c15, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &1179826684369158762 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 538606141939619844} + m_Layer: 0 + m_Name: character + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &538606141939619844 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1179826684369158762} + 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: 8498996985422152528} + - {fileID: 8080904252398917044} + - {fileID: 1233153093129165247} + - {fileID: 6925173787365289844} + m_Father: {fileID: 334632442351914775} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2926787018276112793 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8080904252398917044} + - component: {fileID: 3138638750739916561} + m_Layer: 0 + m_Name: line01-1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8080904252398917044 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2926787018276112793} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.2, y: 0.3, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 538606141939619844} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3138638750739916561 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2926787018276112793} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 3 + m_Sprite: {fileID: -959949763, guid: f53a4ec2735ed354da3b4cabab849c15, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &4087716027419490032 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6925173787365289844} + - component: {fileID: 3412858256172674181} + m_Layer: 0 + m_Name: line02-1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6925173787365289844 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4087716027419490032} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.2, y: 0.3, z: 0} + m_LocalScale: {x: 2.1, y: 2.1, z: 2.1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 538606141939619844} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3412858256172674181 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4087716027419490032} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 3 + m_Sprite: {fileID: 229994197, guid: f53a4ec2735ed354da3b4cabab849c15, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &5459074327126753857 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 334632442351914775} + - component: {fileID: 4088536920647938910} + - component: {fileID: 7148223312170001172} + - component: {fileID: 430347478735664906} + - component: {fileID: 1268332902158690953} + m_Layer: 0 + m_Name: paper_sun + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &334632442351914775 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5459074327126753857} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.1, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 538606141939619844} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &4088536920647938910 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5459074327126753857} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: 7520bbafac1572d41b838d46cecc2d82, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 1 + m_Size: {x: 6.23, y: 8.03} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!114 &7148223312170001172 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5459074327126753857} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b3fe95312644a34b8b68277bd044939, type: 3} + m_Name: + m_EditorClassIdentifier: + startBeat: 0 + AnimPattern: + - beat: 0 + soundType: 1 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 0.5 + soundType: 4 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 1 + soundType: 3 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 1.5 + soundType: 4 + soundVolume: 1 + stroke: 0 + fudeAnim: 2 + - beat: 2 + soundType: 0 + soundVolume: 0 + stroke: 2 + fudeAnim: 0 + - beat: 5 + soundType: 0 + soundVolume: 0 + stroke: 1 + fudeAnim: 1 + - beat: 7 + soundType: 0 + soundVolume: 0 + stroke: 0 + fudeAnim: 0 + scrollSpeed: {x: 0, y: 0, z: 0} + onGoing: 0 +--- !u!95 &430347478735664906 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5459074327126753857} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 7f4aea0b6c4c84647a22dce17cfbe800, type: 2} + m_CullingMode: 0 + m_UpdateMode: 2 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!210 &1268332902158690953 +SortingGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5459074327126753857} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 1 +--- !u!1 &5694912305586202464 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8498996985422152528} + - component: {fileID: 2069598240559287002} + m_Layer: 0 + m_Name: line01-0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8498996985422152528 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5694912305586202464} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.45, y: 0.7, z: 0} + m_LocalScale: {x: 2.2, y: 2.2, z: 2.2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 538606141939619844} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &2069598240559287002 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5694912305586202464} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 2 + m_Sprite: {fileID: 689517499, guid: f53a4ec2735ed354da3b4cabab849c15, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.63, y: 0.95} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 diff --git a/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_sun.prefab.meta b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_sun.prefab.meta new file mode 100644 index 000000000..a015a8afc --- /dev/null +++ b/Assets/Resources/Prefabs/Games/PowerCalligraphy/paper_sun.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4083a37fcad142b4398af1c6b7e8a7d4 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder.meta b/Assets/Resources/Sfx/games/airboarder.meta new file mode 100644 index 000000000..0e64685fa --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 01a5acb9ad88c79489d94e1b122735a4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/barely.wav b/Assets/Resources/Sfx/games/airboarder/barely.wav new file mode 100644 index 000000000..1d34fa2e7 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/barely.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/barely.wav.meta b/Assets/Resources/Sfx/games/airboarder/barely.wav.meta new file mode 100644 index 000000000..d251ff5c1 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/barely.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: f0b0a97d9998a8c47ae8b769bad807b4 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/barelyvox.wav b/Assets/Resources/Sfx/games/airboarder/barelyvox.wav new file mode 100644 index 000000000..58470d3fe Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/barelyvox.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/barelyvox.wav.meta b/Assets/Resources/Sfx/games/airboarder/barelyvox.wav.meta new file mode 100644 index 000000000..da5b28d9b --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/barelyvox.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 599bf11ddec940c4cbe7edca6e6fa3b3 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/crouch.wav b/Assets/Resources/Sfx/games/airboarder/crouch.wav new file mode 100644 index 000000000..67962bbdf Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/crouch.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/crouch.wav.meta b/Assets/Resources/Sfx/games/airboarder/crouch.wav.meta new file mode 100644 index 000000000..6c734baeb --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/crouch.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: c47d8cac04ba7bf47be3b1aa58c63c96 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/crouchCharge.wav b/Assets/Resources/Sfx/games/airboarder/crouchCharge.wav new file mode 100644 index 000000000..ba46f4b1b Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/crouchCharge.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/crouchCharge.wav.meta b/Assets/Resources/Sfx/games/airboarder/crouchCharge.wav.meta new file mode 100644 index 000000000..84393d719 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/crouchCharge.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: c73fe9e4419eb29498d846b6dbb1223e +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/crouchvox.wav b/Assets/Resources/Sfx/games/airboarder/crouchvox.wav new file mode 100644 index 000000000..150cdaf51 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/crouchvox.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/crouchvox.wav.meta b/Assets/Resources/Sfx/games/airboarder/crouchvox.wav.meta new file mode 100644 index 000000000..874e48ae5 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/crouchvox.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 5ad0738fac4249a4b9f562cc262f5c60 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/jump.wav b/Assets/Resources/Sfx/games/airboarder/jump.wav new file mode 100644 index 000000000..b748b8a84 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/jump.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/jump.wav.meta b/Assets/Resources/Sfx/games/airboarder/jump.wav.meta new file mode 100644 index 000000000..e09d0d02b --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/jump.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: c9c3c43cbc4904645a3b2fb82b4cc1b5 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/jumpvox.wav b/Assets/Resources/Sfx/games/airboarder/jumpvox.wav new file mode 100644 index 000000000..c29149295 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/jumpvox.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/jumpvox.wav.meta b/Assets/Resources/Sfx/games/airboarder/jumpvox.wav.meta new file mode 100644 index 000000000..0f2b8f1b2 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/jumpvox.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 53e0e326c8fd9c8469dbccdcd9a3b750 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss1.wav b/Assets/Resources/Sfx/games/airboarder/miss1.wav new file mode 100644 index 000000000..595cc3e16 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss1.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss1.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss1.wav.meta new file mode 100644 index 000000000..e0c8da1c2 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss1.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: f5cd0f17555c05e468f3d48b199ad927 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss10.wav b/Assets/Resources/Sfx/games/airboarder/miss10.wav new file mode 100644 index 000000000..d49146fd5 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss10.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss10.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss10.wav.meta new file mode 100644 index 000000000..78f4fbca1 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss10.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 6de9a6fa18e22ea4497766560b7d77e3 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss11.wav b/Assets/Resources/Sfx/games/airboarder/miss11.wav new file mode 100644 index 000000000..11ca604a6 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss11.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss11.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss11.wav.meta new file mode 100644 index 000000000..5d8700ceb --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss11.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: b9d4bd0fb59df2345a274c3c5be8317a +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss12.wav b/Assets/Resources/Sfx/games/airboarder/miss12.wav new file mode 100644 index 000000000..838ff698b Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss12.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss12.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss12.wav.meta new file mode 100644 index 000000000..148da0da3 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss12.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: e55eb6ca88be20943acbfa6260506b5d +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss13.wav b/Assets/Resources/Sfx/games/airboarder/miss13.wav new file mode 100644 index 000000000..2afe1bcfc Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss13.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss13.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss13.wav.meta new file mode 100644 index 000000000..6c92e85b0 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss13.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: e2d5b157696fe554d8bcb08dcf9bf974 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss14.wav b/Assets/Resources/Sfx/games/airboarder/miss14.wav new file mode 100644 index 000000000..ab5ccd175 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss14.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss14.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss14.wav.meta new file mode 100644 index 000000000..cfa41efb3 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss14.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 412aef536aacbcf43927a9dce5b3241d +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss15.wav b/Assets/Resources/Sfx/games/airboarder/miss15.wav new file mode 100644 index 000000000..c3a142ca0 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss15.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss15.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss15.wav.meta new file mode 100644 index 000000000..1f511597d --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss15.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 1c71351f2cea2934dba30eef51e1921a +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss2.wav b/Assets/Resources/Sfx/games/airboarder/miss2.wav new file mode 100644 index 000000000..a3b1ce2f1 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss2.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss2.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss2.wav.meta new file mode 100644 index 000000000..c9bb32c72 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss2.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 84f5299623800b64c87a8291c89c8f6f +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss3.wav b/Assets/Resources/Sfx/games/airboarder/miss3.wav new file mode 100644 index 000000000..883fd2307 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss3.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss3.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss3.wav.meta new file mode 100644 index 000000000..9df9763fd --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss3.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: e3a0e3ed7c4f1604798e74e3f0ac746b +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss4.wav b/Assets/Resources/Sfx/games/airboarder/miss4.wav new file mode 100644 index 000000000..9c2cb124b Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss4.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss4.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss4.wav.meta new file mode 100644 index 000000000..20fb0867b --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss4.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: cf4f00cde71beaf4e9cda355ee15104e +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss5.wav b/Assets/Resources/Sfx/games/airboarder/miss5.wav new file mode 100644 index 000000000..b411c2347 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss5.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss5.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss5.wav.meta new file mode 100644 index 000000000..b53d8573a --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss5.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 92e1fc814b5c5f94ea1619981ec846da +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss6.wav b/Assets/Resources/Sfx/games/airboarder/miss6.wav new file mode 100644 index 000000000..4642952a6 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss6.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss6.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss6.wav.meta new file mode 100644 index 000000000..147288d41 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss6.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 3ba9c993515f56046a3a8b4672a1b41a +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss7.wav b/Assets/Resources/Sfx/games/airboarder/miss7.wav new file mode 100644 index 000000000..05ae80be4 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss7.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss7.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss7.wav.meta new file mode 100644 index 000000000..2f5ea2e42 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss7.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: cf79bf389ac344546a5f942c8557f7de +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss8.wav b/Assets/Resources/Sfx/games/airboarder/miss8.wav new file mode 100644 index 000000000..2357d6d9d Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss8.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss8.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss8.wav.meta new file mode 100644 index 000000000..cf2bb09f9 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss8.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: b8965ef21a6ff4e46b18c2db173ee298 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/miss9.wav b/Assets/Resources/Sfx/games/airboarder/miss9.wav new file mode 100644 index 000000000..4daf7d381 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/miss9.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/miss9.wav.meta b/Assets/Resources/Sfx/games/airboarder/miss9.wav.meta new file mode 100644 index 000000000..1ba8d08da --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/miss9.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 71c49923cc9c92f44b7e8df8596a9064 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/ready.wav b/Assets/Resources/Sfx/games/airboarder/ready.wav new file mode 100644 index 000000000..90ea36f1f Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/ready.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/ready.wav.meta b/Assets/Resources/Sfx/games/airboarder/ready.wav.meta new file mode 100644 index 000000000..7ab56e0d8 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/ready.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: c6f7a516fd4367e419d9492c6b218c8a +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/start1.wav b/Assets/Resources/Sfx/games/airboarder/start1.wav new file mode 100644 index 000000000..76172fafc Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/start1.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/start1.wav.meta b/Assets/Resources/Sfx/games/airboarder/start1.wav.meta new file mode 100644 index 000000000..d161818a7 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/start1.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 1bb4e7022962568468529adbd238b5dd +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/start2.wav b/Assets/Resources/Sfx/games/airboarder/start2.wav new file mode 100644 index 000000000..a749ba2ec Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/start2.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/start2.wav.meta b/Assets/Resources/Sfx/games/airboarder/start2.wav.meta new file mode 100644 index 000000000..f078e6548 --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/start2.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: d0ddfe988b573bd438767ea835bf94a1 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/airboarder/start3.wav b/Assets/Resources/Sfx/games/airboarder/start3.wav new file mode 100644 index 000000000..7d556f157 Binary files /dev/null and b/Assets/Resources/Sfx/games/airboarder/start3.wav differ diff --git a/Assets/Resources/Sfx/games/airboarder/start3.wav.meta b/Assets/Resources/Sfx/games/airboarder/start3.wav.meta new file mode 100644 index 000000000..3559a5e6d --- /dev/null +++ b/Assets/Resources/Sfx/games/airboarder/start3.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: b6c7beb236efd7d41ad81d7c93ae81cb +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/freezeFrame.meta b/Assets/Resources/Sfx/games/freezeFrame.meta new file mode 100644 index 000000000..9ad7bb1de --- /dev/null +++ b/Assets/Resources/Sfx/games/freezeFrame.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e6b3a41e66f48d44490ac57bdee34b64 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/freezeFrame/beginningSignal1.ogg b/Assets/Resources/Sfx/games/freezeFrame/beginningSignal1.ogg new file mode 100644 index 000000000..ee9607ee1 Binary files /dev/null and b/Assets/Resources/Sfx/games/freezeFrame/beginningSignal1.ogg differ diff --git a/Assets/Resources/Sfx/games/freezeFrame/beginningSignal1.ogg.meta b/Assets/Resources/Sfx/games/freezeFrame/beginningSignal1.ogg.meta new file mode 100644 index 000000000..0d53b6290 --- /dev/null +++ b/Assets/Resources/Sfx/games/freezeFrame/beginningSignal1.ogg.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 219e1307a9985e947b076ded4d97e53d +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/freezeFrame/beginningSignal2.ogg b/Assets/Resources/Sfx/games/freezeFrame/beginningSignal2.ogg new file mode 100644 index 000000000..d453a69f4 Binary files /dev/null and b/Assets/Resources/Sfx/games/freezeFrame/beginningSignal2.ogg differ diff --git a/Assets/Resources/Sfx/games/freezeFrame/beginningSignal2.ogg.meta b/Assets/Resources/Sfx/games/freezeFrame/beginningSignal2.ogg.meta new file mode 100644 index 000000000..798d3f776 --- /dev/null +++ b/Assets/Resources/Sfx/games/freezeFrame/beginningSignal2.ogg.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 1d820ab72249d9241ad786194ae83859 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/freezeFrame/fastCarFar.ogg b/Assets/Resources/Sfx/games/freezeFrame/fastCarFar.ogg new file mode 100644 index 000000000..00568dca4 Binary files /dev/null and b/Assets/Resources/Sfx/games/freezeFrame/fastCarFar.ogg differ diff --git a/Assets/Resources/Sfx/games/freezeFrame/fastCarFar.ogg.meta b/Assets/Resources/Sfx/games/freezeFrame/fastCarFar.ogg.meta new file mode 100644 index 000000000..0e03b7b6a --- /dev/null +++ b/Assets/Resources/Sfx/games/freezeFrame/fastCarFar.ogg.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: b5c8291753ff9b642b43c2d54ff4f801 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/freezeFrame/fastCarNear.ogg b/Assets/Resources/Sfx/games/freezeFrame/fastCarNear.ogg new file mode 100644 index 000000000..83cc73566 Binary files /dev/null and b/Assets/Resources/Sfx/games/freezeFrame/fastCarNear.ogg differ diff --git a/Assets/Resources/Sfx/games/freezeFrame/fastCarNear.ogg.meta b/Assets/Resources/Sfx/games/freezeFrame/fastCarNear.ogg.meta new file mode 100644 index 000000000..94060111b --- /dev/null +++ b/Assets/Resources/Sfx/games/freezeFrame/fastCarNear.ogg.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 24648410b9892594092098ffb6b0cac4 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/freezeFrame/pictureShow.ogg b/Assets/Resources/Sfx/games/freezeFrame/pictureShow.ogg new file mode 100644 index 000000000..0d97e4ff2 Binary files /dev/null and b/Assets/Resources/Sfx/games/freezeFrame/pictureShow.ogg differ diff --git a/Assets/Resources/Sfx/games/freezeFrame/pictureShow.ogg.meta b/Assets/Resources/Sfx/games/freezeFrame/pictureShow.ogg.meta new file mode 100644 index 000000000..f125b996a --- /dev/null +++ b/Assets/Resources/Sfx/games/freezeFrame/pictureShow.ogg.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 0cf6af060e6ebe1429793eccca2df11a +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/freezeFrame/result_Hi.ogg b/Assets/Resources/Sfx/games/freezeFrame/result_Hi.ogg new file mode 100644 index 000000000..853d8d56c Binary files /dev/null and b/Assets/Resources/Sfx/games/freezeFrame/result_Hi.ogg differ diff --git a/Assets/Resources/Sfx/games/freezeFrame/result_Hi.ogg.meta b/Assets/Resources/Sfx/games/freezeFrame/result_Hi.ogg.meta new file mode 100644 index 000000000..38d6d4819 --- /dev/null +++ b/Assets/Resources/Sfx/games/freezeFrame/result_Hi.ogg.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 210765294199a764ab37ecd63ec08d94 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/freezeFrame/result_Ng.ogg b/Assets/Resources/Sfx/games/freezeFrame/result_Ng.ogg new file mode 100644 index 000000000..b4123ad23 Binary files /dev/null and b/Assets/Resources/Sfx/games/freezeFrame/result_Ng.ogg differ diff --git a/Assets/Resources/Sfx/games/freezeFrame/result_Ng.ogg.meta b/Assets/Resources/Sfx/games/freezeFrame/result_Ng.ogg.meta new file mode 100644 index 000000000..4761a5a4f --- /dev/null +++ b/Assets/Resources/Sfx/games/freezeFrame/result_Ng.ogg.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: abd758f80d9edcf4783789223c1f1bd7 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/freezeFrame/result_Ok.ogg b/Assets/Resources/Sfx/games/freezeFrame/result_Ok.ogg new file mode 100644 index 000000000..185b3d83c Binary files /dev/null and b/Assets/Resources/Sfx/games/freezeFrame/result_Ok.ogg differ diff --git a/Assets/Resources/Sfx/games/freezeFrame/result_Ok.ogg.meta b/Assets/Resources/Sfx/games/freezeFrame/result_Ok.ogg.meta new file mode 100644 index 000000000..827fb9785 --- /dev/null +++ b/Assets/Resources/Sfx/games/freezeFrame/result_Ok.ogg.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 7c4179656fb34984f8a9012a9a653464 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/freezeFrame/shutter.ogg b/Assets/Resources/Sfx/games/freezeFrame/shutter.ogg new file mode 100644 index 000000000..082614b64 Binary files /dev/null and b/Assets/Resources/Sfx/games/freezeFrame/shutter.ogg differ diff --git a/Assets/Resources/Sfx/games/freezeFrame/shutter.ogg.meta b/Assets/Resources/Sfx/games/freezeFrame/shutter.ogg.meta new file mode 100644 index 000000000..679e9abd0 --- /dev/null +++ b/Assets/Resources/Sfx/games/freezeFrame/shutter.ogg.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 7118dfcca609c8b41858ad749d0b4d8d +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/freezeFrame/slowCarFar.ogg b/Assets/Resources/Sfx/games/freezeFrame/slowCarFar.ogg new file mode 100644 index 000000000..888165aae Binary files /dev/null and b/Assets/Resources/Sfx/games/freezeFrame/slowCarFar.ogg differ diff --git a/Assets/Resources/Sfx/games/freezeFrame/slowCarFar.ogg.meta b/Assets/Resources/Sfx/games/freezeFrame/slowCarFar.ogg.meta new file mode 100644 index 000000000..2a69b2c59 --- /dev/null +++ b/Assets/Resources/Sfx/games/freezeFrame/slowCarFar.ogg.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 2998454fd5ef3cd43b3e1258e050ba85 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/sickBeats/1.wav b/Assets/Resources/Sfx/games/sickBeats/1.wav new file mode 100644 index 000000000..bcff0ff55 Binary files /dev/null and b/Assets/Resources/Sfx/games/sickBeats/1.wav differ diff --git a/Assets/Resources/Sfx/games/sickBeats/1.wav.meta b/Assets/Resources/Sfx/games/sickBeats/1.wav.meta new file mode 100644 index 000000000..045d0aa05 --- /dev/null +++ b/Assets/Resources/Sfx/games/sickBeats/1.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 72b4d7c4f5ee8e542bc0bb2ec55d8f78 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/sickBeats/appear.ogg b/Assets/Resources/Sfx/games/sickBeats/appear.ogg new file mode 100644 index 000000000..be330a1f2 Binary files /dev/null and b/Assets/Resources/Sfx/games/sickBeats/appear.ogg differ diff --git a/Assets/Resources/Sfx/games/sickBeats/appear.ogg.meta b/Assets/Resources/Sfx/games/sickBeats/appear.ogg.meta new file mode 100644 index 000000000..fe735e34d --- /dev/null +++ b/Assets/Resources/Sfx/games/sickBeats/appear.ogg.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: bfa4f3d0500937e41ac64e35d884a4da +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/sickBeats/resist.ogg b/Assets/Resources/Sfx/games/sickBeats/resist.ogg new file mode 100644 index 000000000..f607be3ca Binary files /dev/null and b/Assets/Resources/Sfx/games/sickBeats/resist.ogg differ diff --git a/Assets/Resources/Sfx/games/sickBeats/resist.ogg.meta b/Assets/Resources/Sfx/games/sickBeats/resist.ogg.meta new file mode 100644 index 000000000..317f22165 --- /dev/null +++ b/Assets/Resources/Sfx/games/sickBeats/resist.ogg.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 1a48e2c71ded3f946be69e80369f6b65 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/sickBeats/stab.ogg b/Assets/Resources/Sfx/games/sickBeats/stab.ogg new file mode 100644 index 000000000..e3179bb90 Binary files /dev/null and b/Assets/Resources/Sfx/games/sickBeats/stab.ogg differ diff --git a/Assets/Resources/Sfx/games/sickBeats/stab.ogg.meta b/Assets/Resources/Sfx/games/sickBeats/stab.ogg.meta new file mode 100644 index 000000000..3d5ae2f02 --- /dev/null +++ b/Assets/Resources/Sfx/games/sickBeats/stab.ogg.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 59b6b431730cc424582506ad90f9ad7b +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sfx/games/sickBeats/whoosh.ogg b/Assets/Resources/Sfx/games/sickBeats/whoosh.ogg new file mode 100644 index 000000000..e606c4a81 Binary files /dev/null and b/Assets/Resources/Sfx/games/sickBeats/whoosh.ogg differ diff --git a/Assets/Resources/Sfx/games/sickBeats/whoosh.ogg.meta b/Assets/Resources/Sfx/games/sickBeats/whoosh.ogg.meta new file mode 100644 index 000000000..3c5aa425c --- /dev/null +++ b/Assets/Resources/Sfx/games/sickBeats/whoosh.ogg.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: 013495df9c47e044ebcb00cb1a7c5453 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Editor/GameIcons/airboarder.png b/Assets/Resources/Sprites/Editor/GameIcons/airboarder.png new file mode 100644 index 000000000..80bca94f3 Binary files /dev/null and b/Assets/Resources/Sprites/Editor/GameIcons/airboarder.png differ diff --git a/Assets/Resources/Sprites/Editor/GameIcons/airboarder.png.meta b/Assets/Resources/Sprites/Editor/GameIcons/airboarder.png.meta new file mode 100644 index 000000000..7eb01f893 --- /dev/null +++ b/Assets/Resources/Sprites/Editor/GameIcons/airboarder.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 0eeb770d30dd9544787788342df0a1cf +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Editor/GameIcons/freezeFrame.png b/Assets/Resources/Sprites/Editor/GameIcons/freezeFrame.png new file mode 100644 index 000000000..b7f36efce Binary files /dev/null and b/Assets/Resources/Sprites/Editor/GameIcons/freezeFrame.png differ diff --git a/Assets/Resources/Sprites/Editor/GameIcons/freezeFrame.png.meta b/Assets/Resources/Sprites/Editor/GameIcons/freezeFrame.png.meta new file mode 100644 index 000000000..3b185e4f9 --- /dev/null +++ b/Assets/Resources/Sprites/Editor/GameIcons/freezeFrame.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 08bd62aa3bcfdb84cb334d75866e4c5a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 1 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 0 + mipMapFadeDistanceEnd: 0 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 8 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Editor/GameIcons/freezeFrame_mask.png b/Assets/Resources/Sprites/Editor/GameIcons/freezeFrame_mask.png new file mode 100644 index 000000000..6c3807f89 Binary files /dev/null and b/Assets/Resources/Sprites/Editor/GameIcons/freezeFrame_mask.png differ diff --git a/Assets/Resources/Sprites/Editor/GameIcons/freezeFrame_mask.png.meta b/Assets/Resources/Sprites/Editor/GameIcons/freezeFrame_mask.png.meta new file mode 100644 index 000000000..e42997f2a --- /dev/null +++ b/Assets/Resources/Sprites/Editor/GameIcons/freezeFrame_mask.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 2338112997db06e4c9907815d202fa2e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 1 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 0 + mipMapFadeDistanceEnd: 0 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 8 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane.meta b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane.meta new file mode 100644 index 000000000..bc4bc0bf1 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 47f2f6fd39e5f2b4c80773ca1f05a94e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/Appear.anim b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/Appear.anim new file mode 100644 index 000000000..9bfdf0735 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/Appear.anim @@ -0,0 +1,305 @@ +%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: Appear + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.r + path: DarkPlane + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.g + path: DarkPlane + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.b + path: DarkPlane + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0.4980392 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.4980392 + inSlope: 0.4980392 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.a + path: DarkPlane + classID: 212 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 2795646338 + attribute: 304273561 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2795646338 + attribute: 2526845255 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2795646338 + attribute: 4215373228 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2795646338 + attribute: 2334886179 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.r + path: DarkPlane + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.g + path: DarkPlane + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.b + path: DarkPlane + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0.4980392 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.4980392 + inSlope: 0.4980392 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.a + path: DarkPlane + classID: 212 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/Appear.anim.meta b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/Appear.anim.meta new file mode 100644 index 000000000..0a2cca023 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/Appear.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 73b80eabdece61545bb39267b90c4bb8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/DarkPlane.controller b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/DarkPlane.controller new file mode 100644 index 000000000..1ea0142d4 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/DarkPlane.controller @@ -0,0 +1,205 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1101 &-7624976565259091237 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -5973131122533613756} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.75 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &-7492000957066337073 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: StayOff + 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: 533cb3afa336ac04ba9a21588f443278, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &-7370737581948904927 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -7492000957066337073} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.75 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &-5973131122533613756 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: StayOn + 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: 0361a29060c749b428e9a4b3a5e9b67d, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-4116238907022208672 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: GoAway + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -7370737581948904927} + 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: 397433bfea768c346b018024ede0ede0, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-2276034766744673466 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Appear + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -7624976565259091237} + 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: 73b80eabdece61545bb39267b90c4bb8, 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: DarkPlane + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 7269792173266051337} + 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 &7269792173266051337 +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: -5973131122533613756} + m_Position: {x: 350, y: 20, z: 0} + - serializedVersion: 1 + m_State: {fileID: -4116238907022208672} + m_Position: {x: 520, y: 410, z: 0} + - serializedVersion: 1 + m_State: {fileID: -2276034766744673466} + m_Position: {x: 450, y: 160, z: 0} + - serializedVersion: 1 + m_State: {fileID: -7492000957066337073} + m_Position: {x: 350, 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: 60, y: 130, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -7492000957066337073} diff --git a/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/DarkPlane.controller.meta b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/DarkPlane.controller.meta new file mode 100644 index 000000000..3785b3f2b --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/DarkPlane.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a8f70253c40da5d4cbb584913af860f9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/GoAway.anim b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/GoAway.anim new file mode 100644 index 000000000..cbd6667cd --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/GoAway.anim @@ -0,0 +1,305 @@ +%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: GoAway + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.r + path: DarkPlane + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.g + path: DarkPlane + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.b + path: DarkPlane + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.49803922 + inSlope: 0 + outSlope: -0.49803922 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -0.49803922 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.a + path: DarkPlane + classID: 212 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 2795646338 + attribute: 304273561 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2795646338 + attribute: 2526845255 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2795646338 + attribute: 4215373228 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2795646338 + attribute: 2334886179 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.r + path: DarkPlane + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.g + path: DarkPlane + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.b + path: DarkPlane + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.49803922 + inSlope: 0 + outSlope: -0.49803922 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -0.49803922 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.a + path: DarkPlane + classID: 212 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/GoAway.anim.meta b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/GoAway.anim.meta new file mode 100644 index 000000000..21beeddca --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/GoAway.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 397433bfea768c346b018024ede0ede0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore08-end.anim b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/StayOff.anim similarity index 83% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore08-end.anim rename to Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/StayOff.anim index a0a37fdd2..29ffb03e7 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore08-end.anim +++ b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/StayOff.anim @@ -6,7 +6,7 @@ AnimationClip: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-onore08-end + m_Name: StayOff serializedVersion: 6 m_Legacy: 0 m_Compressed: 0 @@ -22,7 +22,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -32,8 +32,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: + attribute: m_Color.r + path: DarkPlane classID: 212 script: {fileID: 0} - curve: @@ -41,7 +41,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 10 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -51,8 +51,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-0 + attribute: m_Color.g + path: DarkPlane classID: 212 script: {fileID: 0} - curve: @@ -60,7 +60,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -70,8 +70,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line02-0 + attribute: m_Color.b + path: DarkPlane classID: 212 script: {fileID: 0} - curve: @@ -79,7 +79,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 11 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -89,8 +89,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line02-1 + attribute: m_Color.a + path: DarkPlane classID: 212 script: {fileID: 0} m_PPtrCurves: [] @@ -102,32 +102,32 @@ AnimationClip: m_ClipBindingConstant: genericBindings: - serializedVersion: 2 - path: 0 - attribute: 3762991556 + path: 2795646338 + attribute: 2526845255 script: {fileID: 0} typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3837248189 - attribute: 3762991556 + path: 2795646338 + attribute: 4215373228 script: {fileID: 0} typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3874585828 - attribute: 3762991556 + path: 2795646338 + attribute: 2334886179 script: {fileID: 0} typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 2448837746 - attribute: 3762991556 + path: 2795646338 + attribute: 304273561 script: {fileID: 0} typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 pptrCurveMapping: [] m_AnimationClipSettings: @@ -156,7 +156,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -166,8 +166,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: + attribute: m_Color.r + path: DarkPlane classID: 212 script: {fileID: 0} - curve: @@ -175,7 +175,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 10 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -185,8 +185,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-0 + attribute: m_Color.g + path: DarkPlane classID: 212 script: {fileID: 0} - curve: @@ -194,7 +194,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -204,8 +204,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line02-0 + attribute: m_Color.b + path: DarkPlane classID: 212 script: {fileID: 0} - curve: @@ -213,7 +213,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 11 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -223,8 +223,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line02-1 + attribute: m_Color.a + path: DarkPlane classID: 212 script: {fileID: 0} m_EulerEditorCurves: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/StayOff.anim.meta b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/StayOff.anim.meta new file mode 100644 index 000000000..6d87b3950 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/StayOff.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 533cb3afa336ac04ba9a21588f443278 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro09-end.anim b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/StayOn.anim similarity index 83% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro09-end.anim rename to Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/StayOn.anim index faa856226..111434f8c 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro09-end.anim +++ b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/StayOn.anim @@ -6,7 +6,7 @@ AnimationClip: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-kokoro09-end + m_Name: StayOn serializedVersion: 6 m_Legacy: 0 m_Compressed: 0 @@ -22,7 +22,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -32,8 +32,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: + attribute: m_Color.r + path: DarkPlane classID: 212 script: {fileID: 0} - curve: @@ -41,7 +41,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -51,8 +51,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-0 + attribute: m_Color.g + path: DarkPlane classID: 212 script: {fileID: 0} - curve: @@ -60,7 +60,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 10 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -70,8 +70,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-2 + attribute: m_Color.b + path: DarkPlane classID: 212 script: {fileID: 0} - curve: @@ -79,7 +79,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 10 + value: 0.49803922 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -89,8 +89,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-1 + attribute: m_Color.a + path: DarkPlane classID: 212 script: {fileID: 0} m_PPtrCurves: [] @@ -102,32 +102,32 @@ AnimationClip: m_ClipBindingConstant: genericBindings: - serializedVersion: 2 - path: 0 - attribute: 3762991556 + path: 2795646338 + attribute: 2526845255 script: {fileID: 0} typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3837248189 - attribute: 3762991556 + path: 2795646338 + attribute: 4215373228 script: {fileID: 0} typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 179938193 - attribute: 3762991556 + path: 2795646338 + attribute: 2334886179 script: {fileID: 0} typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 2477847083 - attribute: 3762991556 + path: 2795646338 + attribute: 304273561 script: {fileID: 0} typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 pptrCurveMapping: [] m_AnimationClipSettings: @@ -140,7 +140,7 @@ AnimationClip: m_Level: 0 m_CycleOffset: 0 m_HasAdditiveReferencePose: 0 - m_LoopTime: 0 + m_LoopTime: 1 m_LoopBlend: 0 m_LoopBlendOrientation: 0 m_LoopBlendPositionY: 0 @@ -156,7 +156,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -166,8 +166,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: + attribute: m_Color.r + path: DarkPlane classID: 212 script: {fileID: 0} - curve: @@ -175,7 +175,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -185,8 +185,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-0 + attribute: m_Color.g + path: DarkPlane classID: 212 script: {fileID: 0} - curve: @@ -194,7 +194,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 10 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -204,8 +204,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-2 + attribute: m_Color.b + path: DarkPlane classID: 212 script: {fileID: 0} - curve: @@ -213,7 +213,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 10 + value: 0.49803922 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -223,8 +223,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-1 + attribute: m_Color.a + path: DarkPlane classID: 212 script: {fileID: 0} m_EulerEditorCurves: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/StayOn.anim.meta b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/StayOn.anim.meta new file mode 100644 index 000000000..ef0f360bc --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/Animations/DarkPlane/StayOn.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0361a29060c749b428e9a4b3a5e9b67d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/Animations/Players/CPU.controller b/Assets/Resources/Sprites/Games/BonOdori/Animations/Players/CPU.controller index 14bff399f..98db2021d 100644 --- a/Assets/Resources/Sprites/Games/BonOdori/Animations/Players/CPU.controller +++ b/Assets/Resources/Sprites/Games/BonOdori/Animations/Players/CPU.controller @@ -20,13 +20,7 @@ AnimatorStateMachine: m_Position: {x: 240, y: 150, z: 0} - serializedVersion: 1 m_State: {fileID: -4219596054545477433} - m_Position: {x: 680, y: -50, z: 0} - - serializedVersion: 1 - m_State: {fileID: -4238985621454049373} - m_Position: {x: 470, y: 10, z: 0} - - serializedVersion: 1 - m_State: {fileID: 2169304462997523345} - m_Position: {x: 500.52338, y: 105.34751, z: 0} + m_Position: {x: 240, y: 220, z: 0} m_ChildStateMachines: [] m_AnyStateTransitions: [] m_EntryTransitions: [] @@ -37,55 +31,6 @@ AnimatorStateMachine: m_ExitPosition: {x: 800, y: 120, z: 0} m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} m_DefaultState: {fileID: 8528355832639613082} ---- !u!1101 &-6405582762865992079 -AnimatorStateTransition: - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: - m_Conditions: [] - m_DstStateMachine: {fileID: 0} - m_DstState: {fileID: 8528355832639613082} - m_Solo: 0 - m_Mute: 0 - m_IsExit: 0 - serializedVersion: 3 - m_TransitionDuration: 0 - m_TransitionOffset: 0 - m_ExitTime: 0 - m_HasExitTime: 1 - m_HasFixedDuration: 1 - m_InterruptionSource: 0 - m_OrderedInterruption: 1 - m_CanTransitionToSelf: 1 ---- !u!1102 &-4238985621454049373 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ClapFront - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: - - {fileID: 2818739288152048527} - 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: 139bb26fa0af1254f9bedfabef08546f, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &-4219596054545477433 AnimatorState: serializedVersion: 6 @@ -161,55 +106,6 @@ AnimatorController: m_IKPass: 0 m_SyncedLayerAffectsTiming: 0 m_Controller: {fileID: 9100000} ---- !u!1102 &2169304462997523345 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ClapSide - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: - - {fileID: -6405582762865992079} - 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: 5abfefe2ee945ff4aaafb3c195dae043, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1101 &2818739288152048527 -AnimatorStateTransition: - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: - m_Conditions: [] - m_DstStateMachine: {fileID: 0} - m_DstState: {fileID: 8528355832639613082} - m_Solo: 0 - m_Mute: 0 - m_IsExit: 0 - serializedVersion: 3 - m_TransitionDuration: 0 - m_TransitionOffset: 0 - m_ExitTime: 0 - m_HasExitTime: 1 - m_HasFixedDuration: 1 - m_InterruptionSource: 0 - m_OrderedInterruption: 1 - m_CanTransitionToSelf: 1 --- !u!1101 &3166095928943433521 AnimatorStateTransition: m_ObjectHideFlags: 1 diff --git a/Assets/Resources/Sprites/Games/BonOdori/Animations/Players/Player.controller b/Assets/Resources/Sprites/Games/BonOdori/Animations/Players/Player.controller index ff6e7c8b3..2408c8812 100644 --- a/Assets/Resources/Sprites/Games/BonOdori/Animations/Players/Player.controller +++ b/Assets/Resources/Sprites/Games/BonOdori/Animations/Players/Player.controller @@ -21,15 +21,6 @@ AnimatorStateMachine: - serializedVersion: 1 m_State: {fileID: -4219596054545477433} m_Position: {x: 240, y: 210, z: 0} - - serializedVersion: 1 - m_State: {fileID: 4278040201829360208} - m_Position: {x: 533.28235, y: 51.67433, z: 0} - - serializedVersion: 1 - m_State: {fileID: -6747312179888276335} - m_Position: {x: 540, y: 130, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7800730000528736191} - m_Position: {x: 535.8669, y: 197.97966, z: 0} m_ChildStateMachines: [] m_AnyStateTransitions: [] m_EntryTransitions: [] @@ -40,33 +31,6 @@ AnimatorStateMachine: m_ExitPosition: {x: 800, y: 120, z: 0} m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} m_DefaultState: {fileID: 8528355832639613082} ---- !u!1102 &-6747312179888276335 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ClapSide - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: - - {fileID: -3672280109124348767} - 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: 5abfefe2ee945ff4aaafb3c195dae043, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &-4219596054545477433 AnimatorState: serializedVersion: 6 @@ -93,50 +57,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1101 &-3672280109124348767 -AnimatorStateTransition: - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: - m_Conditions: [] - m_DstStateMachine: {fileID: 0} - m_DstState: {fileID: 8528355832639613082} - m_Solo: 0 - m_Mute: 0 - m_IsExit: 0 - serializedVersion: 3 - m_TransitionDuration: 0 - m_TransitionOffset: 0 - m_ExitTime: 0 - m_HasExitTime: 1 - m_HasFixedDuration: 1 - m_InterruptionSource: 0 - m_OrderedInterruption: 1 - m_CanTransitionToSelf: 1 ---- !u!1101 &-1569986400658222022 -AnimatorStateTransition: - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: - m_Conditions: [] - m_DstStateMachine: {fileID: 0} - m_DstState: {fileID: 8528355832639613082} - m_Solo: 0 - m_Mute: 0 - m_IsExit: 0 - serializedVersion: 3 - m_TransitionDuration: 0.0059790364 - m_TransitionOffset: 0 - m_ExitTime: 0 - m_HasExitTime: 1 - m_HasFixedDuration: 1 - m_InterruptionSource: 0 - m_OrderedInterruption: 1 - m_CanTransitionToSelf: 1 --- !u!1102 &-214786828639412855 AnimatorState: serializedVersion: 6 @@ -208,33 +128,6 @@ AnimatorStateTransition: m_InterruptionSource: 0 m_OrderedInterruption: 1 m_CanTransitionToSelf: 1 ---- !u!1102 &4278040201829360208 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ClapFront - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: - - {fileID: -1569986400658222022} - 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: 139bb26fa0af1254f9bedfabef08546f, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &7128133287679330588 AnimatorState: serializedVersion: 6 @@ -261,32 +154,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &7800730000528736191 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: NeutralClapSide - 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: 24097d08d8b066648ab3935ad11b40c3, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &8528355832639613082 AnimatorState: serializedVersion: 6 diff --git a/Assets/Resources/Sprites/Games/BonOdori/SelectionCrescimento_-_Rhythm_Heaven_GBA_-_The_Bon_Odori_CqU9DiamDAM_-_1047x706_-_0m41s.png b/Assets/Resources/Sprites/Games/BonOdori/SelectionCrescimento_-_Rhythm_Heaven_GBA_-_The_Bon_Odori_CqU9DiamDAM_-_1047x706_-_0m41s.png new file mode 100644 index 000000000..6e2818874 Binary files /dev/null and b/Assets/Resources/Sprites/Games/BonOdori/SelectionCrescimento_-_Rhythm_Heaven_GBA_-_The_Bon_Odori_CqU9DiamDAM_-_1047x706_-_0m41s.png differ diff --git a/Assets/Resources/Sprites/Games/BonOdori/SelectionCrescimento_-_Rhythm_Heaven_GBA_-_The_Bon_Odori_CqU9DiamDAM_-_1047x706_-_0m41s.png.meta b/Assets/Resources/Sprites/Games/BonOdori/SelectionCrescimento_-_Rhythm_Heaven_GBA_-_The_Bon_Odori_CqU9DiamDAM_-_1047x706_-_0m41s.png.meta new file mode 100644 index 000000000..eb8f840e0 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/SelectionCrescimento_-_Rhythm_Heaven_GBA_-_The_Bon_Odori_CqU9DiamDAM_-_1047x706_-_0m41s.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 47ae578037695f549a5afd13ba974281 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bon odori bgpng.png b/Assets/Resources/Sprites/Games/BonOdori/bon odori bgpng.png new file mode 100644 index 000000000..4643da3c8 Binary files /dev/null and b/Assets/Resources/Sprites/Games/BonOdori/bon odori bgpng.png differ diff --git a/Assets/Resources/Sprites/Games/BonOdori/bon odori bgpng.png.meta b/Assets/Resources/Sprites/Games/BonOdori/bon odori bgpng.png.meta new file mode 100644 index 000000000..d297bd110 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bon odori bgpng.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: b1416764537f9da43934f694dec4f9da +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU1.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU1.mat new file mode 100644 index 000000000..2640d42bc --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU1.mat @@ -0,0 +1,91 @@ +%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: bonOdoriArmsCPU1 + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 0, g: 0.8392157, b: 1, a: 1} + - _ColorBravo: {r: 0.9803922, g: 0.86274517, b: 0.8705883, a: 1} + - _ColorDelta: {r: 0.25882354, g: 0.41960785, b: 0.70980394, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU1.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU1.mat.meta new file mode 100644 index 000000000..26d05e50d --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 694b3e744e58b2442b4ede6f2ffe61d1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU2.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU2.mat new file mode 100644 index 000000000..91c344b4e --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU2.mat @@ -0,0 +1,91 @@ +%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: bonOdoriArmsCPU2 + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 1, g: 0.6784314, b: 0, a: 1} + - _ColorBravo: {r: 0.9803922, g: 0.86274517, b: 0.8705883, a: 1} + - _ColorDelta: {r: 0.80784315, g: 0.54901963, b: 0, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU2.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU2.mat.meta new file mode 100644 index 000000000..dd4b0e9c8 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU2.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e10c611faab584343bfd746f494757d8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU3.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU3.mat new file mode 100644 index 000000000..95b9292d0 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU3.mat @@ -0,0 +1,91 @@ +%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: bonOdoriArmsCPU3 + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 1, g: 0.9372549, b: 0, a: 1} + - _ColorBravo: {r: 0.9803922, g: 0.86274517, b: 0.8705883, a: 1} + - _ColorDelta: {r: 0.7411765, g: 0.70980394, b: 0, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU3.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU3.mat.meta new file mode 100644 index 000000000..b3446c619 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriArmsCPU3.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 29bed73ba09f13d478fb84d2a1b2287c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU1.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU1.mat new file mode 100644 index 000000000..792e7d980 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU1.mat @@ -0,0 +1,91 @@ +%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: bonOdoriCPU1 + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 0, g: 0.8392157, b: 1, a: 1} + - _ColorBravo: {r: 0.98039216, g: 0.8627451, b: 0.8705883, a: 1} + - _ColorDelta: {r: 1, g: 0.5176471, b: 1, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU1.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU1.mat.meta new file mode 100644 index 000000000..4b329914d --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 528cdd1bfda3eb84fbf479874fff4a08 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU2.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU2.mat new file mode 100644 index 000000000..464228ade --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU2.mat @@ -0,0 +1,91 @@ +%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: bonOdoriCPU2 + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 1, g: 0.6784314, b: 0, a: 1} + - _ColorBravo: {r: 0.98039216, g: 0.8627451, b: 0.8705883, a: 1} + - _ColorDelta: {r: 0.4509804, g: 0.3529412, b: 1, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU2.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU2.mat.meta new file mode 100644 index 000000000..eb621f2db --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU2.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7b3b1b4748bb6b64489f26117a9ec63f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU3.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU3.mat new file mode 100644 index 000000000..5cf95fb87 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU3.mat @@ -0,0 +1,91 @@ +%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: bonOdoriCPU3 + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 1, g: 0.9372549, b: 0, a: 1} + - _ColorBravo: {r: 0.98039216, g: 0.8627451, b: 0.8705883, a: 1} + - _ColorDelta: {r: 0.41960785, g: 0.70980394, b: 1, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU3.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU3.mat.meta new file mode 100644 index 000000000..d4dc2ca18 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriCPU3.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 31ded632b1c11844f8e24cfa259e166c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU1.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU1.mat new file mode 100644 index 000000000..1a3076f2c --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU1.mat @@ -0,0 +1,91 @@ +%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: bonOdoriFeetCPU1 + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 1, g: 0.5176471, b: 1, a: 1} + - _ColorBravo: {r: 0.9803922, g: 0.86274517, b: 0.8705883, a: 1} + - _ColorDelta: {r: 0, g: 0.8392157, b: 1, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU1.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU1.mat.meta new file mode 100644 index 000000000..3dee4e994 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d55e8d1a68fe0564ba271dbc9c7d128c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU2.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU2.mat new file mode 100644 index 000000000..67da431fb --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU2.mat @@ -0,0 +1,91 @@ +%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: bonOdoriFeetCPU2 + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 0.4509804, g: 0.3529412, b: 1, a: 1} + - _ColorBravo: {r: 0.9803922, g: 0.86274517, b: 0.8705883, a: 1} + - _ColorDelta: {r: 1, g: 0.6784314, b: 0, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU2.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU2.mat.meta new file mode 100644 index 000000000..ed287526f --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU2.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2a85ff0492831f347b9f535cb9c5f8d5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU3.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU3.mat new file mode 100644 index 000000000..a0f8380b5 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU3.mat @@ -0,0 +1,91 @@ +%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: bonOdoriFeetCPU3 + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 0.41960785, g: 0.70980394, b: 1, a: 1} + - _ColorBravo: {r: 0.9803922, g: 0.86274517, b: 0.8705883, a: 1} + - _ColorDelta: {r: 1, g: 0.9372549, b: 0, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU3.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU3.mat.meta new file mode 100644 index 000000000..065be3875 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFeetCPU3.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 430c52bde91e7a14290556b1408d313c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU1.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU1.mat new file mode 100644 index 000000000..a34ddc34b --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU1.mat @@ -0,0 +1,91 @@ +%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: bonOdoriFlowerCPU1 + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 1, g: 0.5176471, b: 1, a: 1} + - _ColorBravo: {r: 1, g: 0.5176471, b: 1, a: 1} + - _ColorDelta: {r: 0.98039216, g: 0.8627451, b: 0.87058824, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU1.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU1.mat.meta new file mode 100644 index 000000000..87ea142e4 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bda5b69e5ed01c24e865bfb60ef845d4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU2.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU2.mat new file mode 100644 index 000000000..e5d11c5de --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU2.mat @@ -0,0 +1,91 @@ +%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: bonOdoriFlowerCPU2 + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 0.4509804, g: 0.3529412, b: 1, a: 1} + - _ColorBravo: {r: 0.4509804, g: 0.3529412, b: 1, a: 1} + - _ColorDelta: {r: 0.98039216, g: 0.8627451, b: 0.87058824, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU2.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU2.mat.meta new file mode 100644 index 000000000..2ca71d5b8 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU2.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c8acac2b02dd6fe4e9f6b17af06b1032 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU3.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU3.mat new file mode 100644 index 000000000..16825fe6d --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU3.mat @@ -0,0 +1,91 @@ +%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: bonOdoriFlowerCPU3 + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 0.41960785, g: 0.70980394, b: 1, a: 1} + - _ColorBravo: {r: 0.41960785, g: 0.70980394, b: 1, a: 1} + - _ColorDelta: {r: 0.98039216, g: 0.8627451, b: 0.87058824, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU3.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU3.mat.meta new file mode 100644 index 000000000..28a91b8c0 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriFlowerCPU3.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 56cef913220404949a36fcb0e3829e6c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayer.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayer.mat new file mode 100644 index 000000000..a26b082b4 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayer.mat @@ -0,0 +1,91 @@ +%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: bonOdoriPlayer + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 1, g: 0.22352941, b: 0.22352941, a: 1} + - _ColorBravo: {r: 0.98039216, g: 0.8627451, b: 0.8705883, a: 1} + - _ColorDelta: {r: 1, g: 0.19215687, b: 0.41960785, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayer.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayer.mat.meta new file mode 100644 index 000000000..1e2255897 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayer.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb48cecb8dddddd4a9351918adc974c0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerArms.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerArms.mat new file mode 100644 index 000000000..91342ef32 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerArms.mat @@ -0,0 +1,91 @@ +%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: bonOdoriPlayerArms + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 1, g: 0.22352941, b: 0.22352941, a: 1} + - _ColorBravo: {r: 0.9803922, g: 0.86274517, b: 0.8705883, a: 1} + - _ColorDelta: {r: 0.3882353, g: 0.12941177, b: 0, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerArms.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerArms.mat.meta new file mode 100644 index 000000000..562a4bc0d --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerArms.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b0494cddfd02426439df908de076f101 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerFeet.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerFeet.mat new file mode 100644 index 000000000..ce7268a9d --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerFeet.mat @@ -0,0 +1,91 @@ +%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: bonOdoriPlayerFeet + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 1, g: 0.19215687, b: 0.41960785, a: 1} + - _ColorBravo: {r: 0.9803922, g: 0.86274517, b: 0.8705883, a: 1} + - _ColorDelta: {r: 1, g: 0.22352941, b: 0.22352941, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerFeet.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerFeet.mat.meta new file mode 100644 index 000000000..09fcd5cc2 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerFeet.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: caef6de8fb925954884716f9338b027b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerFlower.mat b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerFlower.mat new file mode 100644 index 000000000..3ed144122 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerFlower.mat @@ -0,0 +1,91 @@ +%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: bonOdoriPlayerFlower + m_Shader: {fileID: 4800000, guid: ff54fed5718ccc543808dec1f266d1c8, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _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: 0} + 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} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _ColorMask: 15 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UVSec: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 1 + m_Colors: + - _AddColor: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAlpha: {r: 1, g: 0.19215687, b: 0.41960785, a: 1} + - _ColorBravo: {r: 1, g: 0.19215687, b: 0.41960785, a: 1} + - _ColorDelta: {r: 0.98039216, g: 0.8627451, b: 0.87058824, a: 0.9843137} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerFlower.mat.meta b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerFlower.mat.meta new file mode 100644 index 000000000..302552ed9 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bonOdoriPlayerFlower.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b49af6e7de4f243428d0ad29c2c5d12d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bon_odori.png b/Assets/Resources/Sprites/Games/BonOdori/bon_odori.png new file mode 100644 index 000000000..275c32bb4 Binary files /dev/null and b/Assets/Resources/Sprites/Games/BonOdori/bon_odori.png differ diff --git a/Assets/Resources/Sprites/Games/BonOdori/bon_odori.png.meta b/Assets/Resources/Sprites/Games/BonOdori/bon_odori.png.meta new file mode 100644 index 000000000..cab04b036 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bon_odori.png.meta @@ -0,0 +1,630 @@ +fileFormatVersion: 2 +guid: 83018b040affeb34ba0f43f49c564e34 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: bon_odori_body_1 + rect: + serializedVersion: 2 + x: 11 + y: 215 + width: 36 + height: 86 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 61bb768987f70a1439aa4035c3978ff3 + internalID: 1318838821 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_head_player + rect: + serializedVersion: 2 + x: 194 + y: 154 + width: 84 + height: 44 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fef283023d1449047b4fd9836b9d43a5 + internalID: -1189096851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_hand_1 + rect: + serializedVersion: 2 + x: 192 + y: 302 + width: 44 + height: 57 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 54f780ae5a96eeb42ab34cb180dfad13 + internalID: 814594678 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_hand_2 + rect: + serializedVersion: 2 + x: 167 + y: 311 + width: 22 + height: 48 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0957fe8c992828549a436b5651c10603 + internalID: -983474055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_hand_3 + rect: + serializedVersion: 2 + x: 131 + y: 309 + width: 31 + height: 53 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: efa5e5ec2aaca8f4daeca188c6e270f1 + internalID: -996092183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_hand_4 + rect: + serializedVersion: 2 + x: 107 + y: 308 + width: 20 + height: 54 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0b7fc5f2a3c0af54cb1acfecd0902a25 + internalID: 753959915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_hand_5 + rect: + serializedVersion: 2 + x: 74 + y: 310 + width: 27 + height: 53 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1d2738db0ccc1014cb0ad2ab1cf14f08 + internalID: 538593280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_hand_6 + rect: + serializedVersion: 2 + x: 38 + y: 310 + width: 34 + height: 51 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 704c535c3f181c64e9b8fbe7811ea8dd + internalID: 1283505030 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_hand_7 + rect: + serializedVersion: 2 + x: 7 + y: 309 + width: 28 + height: 50 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 86db9aacc66edff4e9431ad565b54e69 + internalID: -1932425580 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_body_2 + rect: + serializedVersion: 2 + x: 57 + y: 221 + width: 33 + height: 81 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c083b42feb3cf004eab965d937db6a28 + internalID: 1324151927 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_0 + rect: + serializedVersion: 2 + x: 94 + y: 216 + width: 42 + height: 89 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 95784c52aa9594e4e928d0e2076088de + internalID: 1931037481 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_body_5 + rect: + serializedVersion: 2 + x: 138 + y: 219 + width: 38 + height: 83 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9f2c8508dee554745bf192716a94c482 + internalID: 712589279 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_1 + rect: + serializedVersion: 2 + x: 182 + y: 219 + width: 36 + height: 79 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 518fa79cafb5c4c41ae99d4a772233b7 + internalID: -1278074751 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_foot_1 + rect: + serializedVersion: 2 + x: 275 + y: 265 + width: 20 + height: 28 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 10b4e299ab982f944a10c8f1bb0b6c5e + internalID: -395337448 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_foot_2 + rect: + serializedVersion: 2 + x: 253 + y: 267 + width: 17 + height: 28 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 614cb2c2b0ca0124fa134fd0c5208955 + internalID: 2045781370 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_foot_3 + rect: + serializedVersion: 2 + x: 230 + y: 267 + width: 18 + height: 28 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2d890979555446f4582d5b5f54a03ec7 + internalID: -495488965 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_hand_ + rect: + serializedVersion: 2 + x: 307 + y: 275 + width: 22 + height: 21 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 42f37b2364201384f961e05a3faf331e + internalID: 2071723266 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_hand + rect: + serializedVersion: 2 + x: 350 + y: 249 + width: 20 + height: 25 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 02dd5679104563643a1942fcb59279e9 + internalID: 1538450157 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_face_1 + rect: + serializedVersion: 2 + x: 6 + y: 365 + width: 26 + height: 20 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 981195388be2a8f439e1b02892d0ebf8 + internalID: -36717029 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_2 + rect: + serializedVersion: 2 + x: 145 + y: 152 + width: 44 + height: 48 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e2d7bd7e76b9b5845b9becc986d1a009 + internalID: 629234624 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_3 + rect: + serializedVersion: 2 + x: 82 + y: 154 + width: 56 + height: 51 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a239c8ee6d27a9f4e94eb0b54e225093 + internalID: 616323414 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_4 + rect: + serializedVersion: 2 + x: 28 + y: 150 + width: 50 + height: 57 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 69317f0c0a631a44fa6759d4d8188b29 + internalID: -1823065352 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: bon_odori_glasses + rect: + serializedVersion: 2 + x: 237 + y: 361 + width: 31 + height: 23 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9580f92a948e0e046999f2a6db6dcd21 + internalID: 1995107967 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: + bon_odori_0: 1931037481 + bon_odori_1: -1278074751 + bon_odori_2: 629234624 + bon_odori_3: 616323414 + bon_odori_4: -1823065352 + bon_odori_body_1: 1318838821 + bon_odori_body_2: 1324151927 + bon_odori_body_5: 712589279 + bon_odori_face_1: -36717029 + bon_odori_foot_1: -1359953972 + bon_odori_foot_2: 2045781370 + bon_odori_foot_3: -495488965 + bon_odori_glasses: 1995107967 + bon_odori_hand: 1538450157 + bon_odori_hand_: 2071723266 + bon_odori_hand_1: 814594678 + bon_odori_hand_2: -983474055 + bon_odori_hand_3: -996092183 + bon_odori_hand_4: 753959915 + bon_odori_hand_5: 538593280 + bon_odori_hand_6: 1283505030 + bon_odori_hand_7: -1932425580 + bon_odori_head_player: -1189096851 + bon_odori_player_head_normal: 752825984 + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bop1.png b/Assets/Resources/Sprites/Games/BonOdori/bop1.png new file mode 100644 index 000000000..b20d388f6 Binary files /dev/null and b/Assets/Resources/Sprites/Games/BonOdori/bop1.png differ diff --git a/Assets/Resources/Sprites/Games/BonOdori/bop1.png.meta b/Assets/Resources/Sprites/Games/BonOdori/bop1.png.meta new file mode 100644 index 000000000..0cb5cd580 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bop1.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: e53a09bcb0668334d9f5390801ae1687 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bop2.png b/Assets/Resources/Sprites/Games/BonOdori/bop2.png new file mode 100644 index 000000000..46a2b01e7 Binary files /dev/null and b/Assets/Resources/Sprites/Games/BonOdori/bop2.png differ diff --git a/Assets/Resources/Sprites/Games/BonOdori/bop2.png.meta b/Assets/Resources/Sprites/Games/BonOdori/bop2.png.meta new file mode 100644 index 000000000..4d5568e37 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bop2.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 0c8f25f67749d064daa9fde2d090a03f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bop3.png b/Assets/Resources/Sprites/Games/BonOdori/bop3.png new file mode 100644 index 000000000..6a9314abf Binary files /dev/null and b/Assets/Resources/Sprites/Games/BonOdori/bop3.png differ diff --git a/Assets/Resources/Sprites/Games/BonOdori/bop3.png.meta b/Assets/Resources/Sprites/Games/BonOdori/bop3.png.meta new file mode 100644 index 000000000..9f035913e --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bop3.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 92c084488ac8ad9478f6e67c67194c9b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/bop4.png b/Assets/Resources/Sprites/Games/BonOdori/bop4.png new file mode 100644 index 000000000..409505e73 Binary files /dev/null and b/Assets/Resources/Sprites/Games/BonOdori/bop4.png differ diff --git a/Assets/Resources/Sprites/Games/BonOdori/bop4.png.meta b/Assets/Resources/Sprites/Games/BonOdori/bop4.png.meta new file mode 100644 index 000000000..01267e290 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/bop4.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 53304a1506d96d647a62af32fd3e819c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/BonOdori/mGBA_pdTXcDp25j.png b/Assets/Resources/Sprites/Games/BonOdori/mGBA_pdTXcDp25j.png new file mode 100644 index 000000000..0a6f1f585 Binary files /dev/null and b/Assets/Resources/Sprites/Games/BonOdori/mGBA_pdTXcDp25j.png differ diff --git a/Assets/Resources/Sprites/Games/BonOdori/mGBA_pdTXcDp25j.png.meta b/Assets/Resources/Sprites/Games/BonOdori/mGBA_pdTXcDp25j.png.meta new file mode 100644 index 000000000..d15ada566 --- /dev/null +++ b/Assets/Resources/Sprites/Games/BonOdori/mGBA_pdTXcDp25j.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: b75685bd10d372243ab93ce9086e8359 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/BirdAnim.controller b/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/BirdAnim.controller index 21472a0f6..3726c8436 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/BirdAnim.controller +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/BirdAnim.controller @@ -28,31 +28,6 @@ AnimatorStateMachine: m_ExitPosition: {x: 640, y: 180, z: 0} m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} m_DefaultState: {fileID: 320149015002627566} ---- !u!1101 &-57611587176777246 -AnimatorStateTransition: - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: - m_Conditions: - - m_ConditionMode: 2 - m_ConditionEvent: birdOnScreen - m_EventTreshold: 0 - m_DstStateMachine: {fileID: 0} - m_DstState: {fileID: 0} - m_Solo: 0 - m_Mute: 0 - m_IsExit: 1 - serializedVersion: 3 - m_TransitionDuration: 0.25 - m_TransitionOffset: 0 - m_ExitTime: 0.5833334 - m_HasExitTime: 1 - m_HasFixedDuration: 1 - m_InterruptionSource: 0 - m_OrderedInterruption: 1 - m_CanTransitionToSelf: 1 --- !u!91 &9100000 AnimatorController: m_ObjectHideFlags: 0 @@ -101,7 +76,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 3319f492700f97544b948589e4e54ca0, type: 2} + m_Motion: {fileID: 0} m_Tag: m_SpeedParameter: m_MirrorParameter: @@ -117,8 +92,7 @@ AnimatorState: m_Name: FlyOut m_Speed: 1 m_CycleOffset: 0 - m_Transitions: - - {fileID: -57611587176777246} + m_Transitions: [] m_StateMachineBehaviours: [] m_Position: {x: 50, y: 50, z: 0} m_IKOnFeet: 0 diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/BirdAnim.controller.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/BirdAnim.controller.meta index abbdbe0a6..009b0a09c 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/BirdAnim.controller.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/BirdAnim.controller.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 9100000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyIn.anim b/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyIn.anim index 21a3c4f68..52f711321 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyIn.anim +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyIn.anim @@ -54,8 +54,18 @@ AnimationClip: weightedMode: 0 inWeight: 0 outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Bird + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: - serializedVersion: 3 - time: 0.15 + time: 0 value: 1 inSlope: Infinity outSlope: Infinity @@ -67,35 +77,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_IsActive - path: Bird/Bird2 - classID: 1 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - - serializedVersion: 3 - time: 0.15 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_IsActive - path: Bird/Bird1 + path: CutEverythingSign classID: 1 script: {fileID: 0} m_PPtrCurves: [] @@ -114,14 +96,14 @@ AnimationClip: customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 341651793 + path: 8978736 attribute: 2086281974 script: {fileID: 0} typeID: 1 customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 2371117291 + path: 2588901114 attribute: 2086281974 script: {fileID: 0} typeID: 1 @@ -236,8 +218,18 @@ AnimationClip: weightedMode: 0 inWeight: 0 outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Bird + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: - serializedVersion: 3 - time: 0.15 + time: 0 value: 1 inSlope: Infinity outSlope: Infinity @@ -249,35 +241,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_IsActive - path: Bird/Bird2 - classID: 1 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - - serializedVersion: 3 - time: 0.15 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_IsActive - path: Bird/Bird1 + path: CutEverythingSign classID: 1 script: {fileID: 0} m_EulerEditorCurves: [] diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyIn.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyIn.anim.meta index 997497ca1..a28831a6f 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyIn.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyIn.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyOut.anim b/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyOut.anim index ca63aae29..098327045 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyOut.anim +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyOut.anim @@ -56,7 +56,7 @@ AnimationClip: outWeight: 0 - serializedVersion: 3 time: 0.6 - value: 1 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -67,7 +67,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_IsActive - path: Bird/Bird1 + path: Bird classID: 1 script: {fileID: 0} - curve: @@ -75,7 +75,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0 + value: 1 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -95,7 +95,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_IsActive - path: Bird/Bird2 + path: CutEverythingSign classID: 1 script: {fileID: 0} m_PPtrCurves: [] @@ -114,14 +114,14 @@ AnimationClip: customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 2371117291 + path: 8978736 attribute: 2086281974 script: {fileID: 0} typeID: 1 customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 341651793 + path: 2588901114 attribute: 2086281974 script: {fileID: 0} typeID: 1 @@ -247,7 +247,7 @@ AnimationClip: outWeight: 0 - serializedVersion: 3 time: 0.6 - value: 1 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -258,7 +258,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_IsActive - path: Bird/Bird1 + path: Bird classID: 1 script: {fileID: 0} - curve: @@ -266,7 +266,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0 + value: 1 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -286,7 +286,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_IsActive - path: Bird/Bird2 + path: CutEverythingSign classID: 1 script: {fileID: 0} m_EulerEditorCurves: [] diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyOut.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyOut.anim.meta index 3820a2a1b..230973ff5 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyOut.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/FlyOut.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/BarelyGlobal.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/BarelyGlobal.anim.meta index a28d740de..aa8ae57e1 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/BarelyGlobal.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/BarelyGlobal.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/BarelyLeft.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/BarelyLeft.anim.meta index 2b07dad96..f313d1f88 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/BarelyLeft.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/BarelyLeft.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/BarelyRight.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/BarelyRight.anim.meta index 73740ae94..a7acf716c 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/BarelyRight.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/BarelyRight.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Bop.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Bop.anim.meta index 32ab7457f..1d0eec4af 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Bop.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Bop.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/DogAnim.controller b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/DogAnim.controller index 6b3abe1a1..30b645fd8 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/DogAnim.controller +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/DogAnim.controller @@ -54,31 +54,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1101 &-8879658034113408578 -AnimatorStateTransition: - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: - m_Conditions: - - m_ConditionMode: 1 - m_ConditionEvent: needPrepare - m_EventTreshold: 0 - m_DstStateMachine: {fileID: 0} - m_DstState: {fileID: 5009988345090580314} - m_Solo: 0 - m_Mute: 0 - m_IsExit: 0 - serializedVersion: 3 - m_TransitionDuration: 0 - m_TransitionOffset: 0 - m_ExitTime: 1 - m_HasExitTime: 1 - m_HasFixedDuration: 0 - m_InterruptionSource: 0 - m_OrderedInterruption: 1 - m_CanTransitionToSelf: 1 --- !u!1102 &-7628548708072257747 AnimatorState: serializedVersion: 6 @@ -333,31 +308,6 @@ AnimatorController: m_IKPass: 0 m_SyncedLayerAffectsTiming: 0 m_Controller: {fileID: 9100000} ---- !u!1101 &634343083532807637 -AnimatorStateTransition: - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: - m_Conditions: - - m_ConditionMode: 2 - m_ConditionEvent: needPrepare - m_EventTreshold: 0 - m_DstStateMachine: {fileID: 0} - m_DstState: {fileID: 1628397019354410076} - m_Solo: 0 - m_Mute: 0 - m_IsExit: 0 - serializedVersion: 3 - m_TransitionDuration: 0 - m_TransitionOffset: 0 - m_ExitTime: 1 - m_HasExitTime: 1 - m_HasFixedDuration: 1 - m_InterruptionSource: 0 - m_OrderedInterruption: 1 - m_CanTransitionToSelf: 1 --- !u!1102 &1183219720229009387 AnimatorState: serializedVersion: 6 @@ -368,9 +318,7 @@ AnimatorState: m_Name: Prepare m_Speed: 1 m_CycleOffset: 0 - m_Transitions: - - {fileID: -8879658034113408578} - - {fileID: 634343083532807637} + m_Transitions: [] m_StateMachineBehaviours: [] m_Position: {x: 50, y: 50, z: 0} m_IKOnFeet: 0 @@ -563,9 +511,6 @@ AnimatorStateMachine: - serializedVersion: 1 m_State: {fileID: 4106059006902303284} m_Position: {x: 400, y: 90, z: 0} - - serializedVersion: 1 - m_State: {fileID: 5009988345090580314} - m_Position: {x: 620, y: -110, z: 0} m_ChildStateMachines: [] m_AnyStateTransitions: [] m_EntryTransitions: [] @@ -576,33 +521,6 @@ AnimatorStateMachine: m_ExitPosition: {x: 420, y: 210, z: 0} m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} m_DefaultState: {fileID: 1628397019354410076} ---- !u!1102 &5009988345090580314 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: PrepareIdle - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: - - {fileID: 7023587105086888360} - 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: f9b4fb8d229e1d840b1663408bebfd18, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1101 &5032805319851727948 AnimatorStateTransition: m_ObjectHideFlags: 1 @@ -669,31 +587,6 @@ AnimatorStateTransition: m_InterruptionSource: 0 m_OrderedInterruption: 1 m_CanTransitionToSelf: 1 ---- !u!1101 &7023587105086888360 -AnimatorStateTransition: - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: - m_Conditions: - - m_ConditionMode: 2 - m_ConditionEvent: needPrepare - m_EventTreshold: 0 - m_DstStateMachine: {fileID: 0} - m_DstState: {fileID: 1628397019354410076} - m_Solo: 0 - m_Mute: 0 - m_IsExit: 0 - serializedVersion: 3 - m_TransitionDuration: 0 - m_TransitionOffset: 0 - m_ExitTime: 1 - m_HasExitTime: 1 - m_HasFixedDuration: 1 - m_InterruptionSource: 0 - m_OrderedInterruption: 1 - m_CanTransitionToSelf: 1 --- !u!1102 &7232969264737895159 AnimatorState: serializedVersion: 6 @@ -701,11 +594,10 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: UnPrepare + m_Name: Unprepare m_Speed: 1 m_CycleOffset: 0 - m_Transitions: - - {fileID: 7451574809715408383} + m_Transitions: [] m_StateMachineBehaviours: [] m_Position: {x: 50, y: 50, z: 0} m_IKOnFeet: 0 @@ -721,28 +613,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1101 &7451574809715408383 -AnimatorStateTransition: - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: - m_Conditions: [] - m_DstStateMachine: {fileID: 0} - m_DstState: {fileID: 1628397019354410076} - m_Solo: 0 - m_Mute: 0 - m_IsExit: 0 - serializedVersion: 3 - m_TransitionDuration: 0 - m_TransitionOffset: 0 - m_ExitTime: 1 - m_HasExitTime: 1 - m_HasFixedDuration: 1 - m_InterruptionSource: 0 - m_OrderedInterruption: 1 - m_CanTransitionToSelf: 1 --- !u!1102 &8456159042725552206 AnimatorState: serializedVersion: 6 diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/DogAnim.controller.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/DogAnim.controller.meta index 73651b4c1..0fbe4ea84 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/DogAnim.controller.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/DogAnim.controller.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 9100000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Idle.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Idle.anim.meta index 1f2b56426..9c82a3f1b 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Idle.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Idle.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Prepare.anim b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Prepare.anim index a4b6e9062..cb8d47856 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Prepare.anim +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Prepare.anim @@ -450,7 +450,7 @@ AnimationClip: m_Level: 0 m_CycleOffset: 0 m_HasAdditiveReferencePose: 0 - m_LoopTime: 1 + m_LoopTime: 0 m_LoopBlend: 0 m_LoopBlendOrientation: 0 m_LoopBlendPositionY: 0 diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Prepare.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Prepare.anim.meta index 1a194f7a9..48323703c 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Prepare.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/Prepare.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/SliceBoth.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/SliceBoth.anim.meta index fc9bfc336..68558e80b 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/SliceBoth.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/SliceBoth.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 0 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/SliceLeft.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/SliceLeft.anim.meta index 31b5faf05..504eeca22 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/SliceLeft.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/SliceLeft.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 0 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/SliceRight.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/SliceRight.anim.meta index 080a72f19..f94d5c5ea 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/SliceRight.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/SliceRight.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 0 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/UnPrepare.anim b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/UnPrepare.anim index cee010030..ad1aceb8c 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/UnPrepare.anim +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/UnPrepare.anim @@ -492,7 +492,7 @@ AnimationClip: m_Level: 0 m_CycleOffset: 0 m_HasAdditiveReferencePose: 0 - m_LoopTime: 1 + m_LoopTime: 0 m_LoopBlend: 0 m_LoopBlendOrientation: 0 m_LoopBlendPositionY: 0 diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/UnPrepare.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/UnPrepare.anim.meta index 995c96199..e8afa9c3d 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/UnPrepare.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/UnPrepare.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/WhiffGlobal.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/WhiffGlobal.anim.meta index de358332e..4977fbd55 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/WhiffGlobal.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/WhiffGlobal.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/WhiffLeft.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/WhiffLeft.anim.meta index 3254ca4ca..ff841b0f5 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/WhiffLeft.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/WhiffLeft.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/WhiffRight.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/WhiffRight.anim.meta index 1eba1e4e3..69e71753d 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/WhiffRight.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/WhiffRight.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/Idle.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/Idle.anim.meta index c3a0a3a1e..7d6a96208 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/Idle.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/Idle.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/LeftHalfAnim.controller.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/LeftHalfAnim.controller.meta index 4167596fd..2bef73156 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/LeftHalfAnim.controller.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/LeftHalfAnim.controller.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 9100000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/LeftHalfFallLeft.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/LeftHalfFallLeft.anim.meta index abe410c1d..dd82eac4e 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/LeftHalfFallLeft.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/LeftHalfFallLeft.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/LeftHalfFallRight.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/LeftHalfFallRight.anim.meta index 892db1a80..931c8ca06 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/LeftHalfFallRight.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/LeftHalfFallRight.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 0 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/RightHalfAnim.controller.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/RightHalfAnim.controller.meta index ac48afa42..8495dae3d 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/RightHalfAnim.controller.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/RightHalfAnim.controller.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 9100000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/RightHalfFallLeft.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/RightHalfFallLeft.anim.meta index eb4e20e9e..967bae6eb 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/RightHalfFallLeft.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/RightHalfFallLeft.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/RightHalfFallRight.anim.meta b/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/RightHalfFallRight.anim.meta index 20624a75e..cf3d070ac 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/RightHalfFallRight.anim.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/Animation/Halves/RightHalfFallRight.anim.meta @@ -4,5 +4,5 @@ NativeFormatImporter: externalObjects: {} mainObjectFileID: 0 userData: - assetBundleName: + assetBundleName: ntrninja/common assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/DogNinja_OtherObjects.png.meta b/Assets/Resources/Sprites/Games/DogNinja/DogNinja_OtherObjects.png.meta index 4b6f86db9..06caa9aec 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/DogNinja_OtherObjects.png.meta +++ b/Assets/Resources/Sprites/Games/DogNinja/DogNinja_OtherObjects.png.meta @@ -689,7 +689,7 @@ TextureImporter: width: 110 height: 201 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -710,7 +710,7 @@ TextureImporter: width: 103 height: 198 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -731,7 +731,7 @@ TextureImporter: width: 78 height: 199 alignment: 0 - pivot: {x: 0, y: 0} + pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} outline: [] physicsShape: [] @@ -743,6 +743,27 @@ TextureImporter: indices: edges: [] weights: [] + - serializedVersion: 2 + name: oh it's the little guy. you found him + rect: + serializedVersion: 2 + x: 1143 + y: 1591 + width: 16 + height: 49 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4cd68dea3c30b1f48bcd6dd5ad0fffa5 + internalID: 1314131981 + vertices: [] + indices: + edges: [] + weights: [] outline: [] physicsShape: [] bones: [] @@ -763,6 +784,7 @@ TextureImporter: Ball_Full: 8158683621920566786 Ball_Left: -5925680740112638021 Ball_Right: -5567381644477528568 + DogNinja_OtherObjects_0: -1593653543 Idol_Full: 2196219148037962045 Idol_Left: -130797512336752496 Idol_Right: 8490305602720712907 @@ -783,6 +805,7 @@ TextureImporter: WildBreath_Full: 2053246660185171032 WildBreath_Left: -7594402133338608887 WildBreath_Right: 3508372842914876614 + oh it's the little guy. you found him: 1314131981 spritePackingTag: pSDRemoveMatte: 0 pSDShowRemoveMatteOption: 0 diff --git a/Assets/Resources/Sprites/Games/DoubleDate/DoubleDateCellanim.mat b/Assets/Resources/Sprites/Games/DoubleDate/DoubleDateCellanim.mat index 817dd5d1f..d9ea34793 100644 --- a/Assets/Resources/Sprites/Games/DoubleDate/DoubleDateCellanim.mat +++ b/Assets/Resources/Sprites/Games/DoubleDate/DoubleDateCellanim.mat @@ -83,6 +83,6 @@ Material: - _ZWrite: 1 m_Colors: - _AddColor: {r: 0, g: 0, b: 0, a: 1} - - _Color: {r: 0.9528302, g: 0.87130237, b: 0.7775454, a: 1} + - _Color: {r: 0.9529412, g: 0.87058824, b: 0.7764706, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame.meta b/Assets/Resources/Sprites/Games/FreezeFrame.meta new file mode 100644 index 000000000..791630232 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 069ce4192ca18a5409869a17620c80cf +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations.meta new file mode 100644 index 000000000..cabaef294 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 26df791e6dff084489a0aa41fe032840 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan.meta new file mode 100644 index 000000000..c2d89b01c --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f5de9aa9283f214a8f5462d7158d9c7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/PrepareIdle.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Bop.anim similarity index 71% rename from Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/PrepareIdle.anim rename to Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Bop.anim index 22cd4f106..1811949cb 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Dog/PrepareIdle.anim +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Bop.anim @@ -6,46 +6,37 @@ AnimationClip: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: PrepareIdle + m_Name: Bop serializedVersion: 6 m_Legacy: 0 m_Compressed: 0 m_UseHighQualityCurve: 1 m_RotationCurves: [] m_CompressedRotationCurves: [] - m_EulerCurves: - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: {x: 0, y: 0, z: 0} - inSlope: {x: Infinity, y: Infinity, z: Infinity} - outSlope: {x: Infinity, y: Infinity, z: Infinity} - tangentMode: 0 - weightedMode: 0 - inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - - serializedVersion: 3 - time: 20.166666 - value: {x: 0, y: 0, z: 0} - inSlope: {x: Infinity, y: Infinity, z: Infinity} - outSlope: {x: Infinity, y: Infinity, z: Infinity} - tangentMode: 0 - weightedMode: 0 - inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - path: DogBody/DogArmRight + m_EulerCurves: [] m_PositionCurves: - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: {x: 0, y: -1.12, z: 0} + value: {x: 0.055999756, y: -0.0059999973, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManBox + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.13500214, y: 0.094900005, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -53,8 +44,26 @@ AnimationClip: inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 - time: 20.166666 - value: {x: 0, y: -1.12, z: 0} + time: 0.05 + value: {x: 0.135, y: 0.1152, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: 0.135, y: 0.14502, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: 0.135, y: 0.1749, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -64,13 +73,13 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - path: + path: CameraManHead - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: {x: 0, y: -0.07, z: 0} + value: {x: 0.04019928, y: 0.104899995, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -78,8 +87,26 @@ AnimationClip: inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 - time: 20.166666 - value: {x: 0, y: -0.07, z: 0} + time: 0.05 + value: {x: 0.04, y: 0.125, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: 0.04, y: 0.145, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: 0.04, y: 0.155, z: 0} inSlope: {x: Infinity, y: Infinity, z: Infinity} outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 @@ -89,24 +116,42 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - path: DogBody + path: CameraManArm - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: {x: -9.18, y: -2.54, z: 20.748348} - inSlope: {x: Infinity, y: Infinity, z: 0} - outSlope: {x: Infinity, y: Infinity, z: 0} + value: {x: 0.2649002, y: -0.0348, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 weightedMode: 0 inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 - time: 20.166666 - value: {x: -9.18, y: -2.54, z: 20.748348} - inSlope: {x: Infinity, y: Infinity, z: 0} - outSlope: {x: Infinity, y: Infinity, z: 0} + time: 0.05 + value: {x: 0.2649002, y: -0.0154, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: 0.2649002, y: -0.0056, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: 0.2649002, y: 0.0046, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 weightedMode: 0 inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} @@ -114,24 +159,24 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - path: DogBody/DogArmLeft + path: CameraManTorso - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: {x: -1.84, y: -1.93, z: 20.748348} - inSlope: {x: Infinity, y: Infinity, z: 0} - outSlope: {x: Infinity, y: Infinity, z: 0} + value: {x: 0.15520096, y: -0.2755, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 weightedMode: 0 inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 - time: 20.166666 - value: {x: -1.84, y: -1.93, z: 20.748348} - inSlope: {x: Infinity, y: Infinity, z: 0} - outSlope: {x: Infinity, y: Infinity, z: 0} + time: 0.05 + value: {x: 0.168, y: -0.2755, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} tangentMode: 0 weightedMode: 0 inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} @@ -139,24 +184,15 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - path: DogBody/DogArmRight + path: CameraManLegs - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: {x: -5.5894957, y: -3.1524081, z: 20.748348} - inSlope: {x: Infinity, y: Infinity, z: 0} - outSlope: {x: Infinity, y: Infinity, z: 0} - tangentMode: 0 - weightedMode: 0 - inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - - serializedVersion: 3 - time: 20.166666 - value: {x: -5.5894957, y: -3.1524081, z: 20.748348} - inSlope: {x: Infinity, y: Infinity, z: 0} - outSlope: {x: Infinity, y: Infinity, z: 0} + value: {x: -32.14, y: -0.04, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} tangentMode: 0 weightedMode: 0 inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} @@ -164,57 +200,7 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - path: DogBody/DogTorso - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: {x: -5.8489957, y: -3.078408, z: 20.748348} - inSlope: {x: Infinity, y: Infinity, z: 0} - outSlope: {x: Infinity, y: Infinity, z: 0} - tangentMode: 0 - weightedMode: 0 - inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - - serializedVersion: 3 - time: 20.166666 - value: {x: -5.8489957, y: -3.078408, z: 20.748348} - inSlope: {x: Infinity, y: Infinity, z: 0} - outSlope: {x: Infinity, y: Infinity, z: 0} - tangentMode: 0 - weightedMode: 0 - inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - path: DogBody/Sword - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: {x: -5.568996, y: -1.39, z: 20.748348} - inSlope: {x: Infinity, y: Infinity, z: 0} - outSlope: {x: Infinity, y: Infinity, z: 0} - tangentMode: 0 - weightedMode: 0 - inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - - serializedVersion: 3 - time: 20.166666 - value: {x: -5.568996, y: -1.39, z: 20.748348} - inSlope: {x: Infinity, y: Infinity, z: 0} - outSlope: {x: Infinity, y: Infinity, z: 0} - tangentMode: 0 - weightedMode: 0 - inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - path: DogHead + path: CameraFlash m_ScaleCurves: [] m_FloatCurves: - curve: @@ -222,19 +208,38 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 2 - inSlope: -0 - outSlope: 0 - tangentMode: 69 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CameraFlash + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 weightedMode: 0 inWeight: 0 outWeight: 0 - serializedVersion: 3 - time: 20.166666 - value: 2 - inSlope: -0 - outSlope: 0 - tangentMode: 69 + time: 0.05 + value: 5 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 weightedMode: 0 inWeight: 0 outWeight: 0 @@ -242,29 +247,69 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_SortingOrder - path: DogBody/DogArmRight + path: CameraManLegs + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.05 + value: 4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManTorso classID: 212 script: {fileID: 0} m_PPtrCurves: - curve: - time: 0 - value: {fileID: -7602907453496852081, guid: 1c59b9cd0adef0941bc4bd4bde66a759, type: 3} - - time: 20.166666 - value: {fileID: -7602907453496852081, guid: 1c59b9cd0adef0941bc4bd4bde66a759, type: 3} + value: {fileID: 1536648942, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} attribute: m_Sprite - path: DogBody/DogArmRight + path: CameraFlash classID: 212 script: {fileID: 0} - curve: - time: 0 - value: {fileID: 7849497092207798707, guid: 1c59b9cd0adef0941bc4bd4bde66a759, type: 3} - - time: 20.166666 - value: {fileID: 7849497092207798707, guid: 1c59b9cd0adef0941bc4bd4bde66a759, type: 3} + value: {fileID: -1242169489, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} attribute: m_Sprite - path: DogBody/DogArmLeft + path: CameraManHead classID: 212 script: {fileID: 0} - m_SampleRate: 30 + - curve: + - time: 0 + value: {fileID: 514287739, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManArm + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: -2070367421, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.05 + value: {fileID: 1854203247, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManLegs + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 m_WrapMode: 0 m_Bounds: m_Center: {x: 0, y: 0, z: 0} @@ -272,98 +317,113 @@ AnimationClip: m_ClipBindingConstant: genericBindings: - serializedVersion: 2 - path: 0 + path: 1608736951 attribute: 1 script: {fileID: 0} typeID: 4 customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 2772886358 + path: 883770153 attribute: 1 script: {fileID: 0} typeID: 4 customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 2375568945 + path: 3474216473 attribute: 1 script: {fileID: 0} typeID: 4 customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 2794087405 + path: 2630329651 attribute: 1 script: {fileID: 0} typeID: 4 customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 1010313433 + path: 1850144319 attribute: 1 script: {fileID: 0} typeID: 4 customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 240240601 + path: 1063121799 attribute: 1 script: {fileID: 0} typeID: 4 customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3642564216 - attribute: 1 - script: {fileID: 0} - typeID: 4 - customType: 0 - isPPtrCurve: 0 - - serializedVersion: 2 - path: 2794087405 - attribute: 4 - script: {fileID: 0} - typeID: 4 - customType: 4 - isPPtrCurve: 0 - - serializedVersion: 2 - path: 2794087405 - attribute: 0 + path: 1063121799 + attribute: 3305885265 script: {fileID: 0} typeID: 212 - customType: 23 - isPPtrCurve: 1 + customType: 0 + isPPtrCurve: 0 - serializedVersion: 2 - path: 2375568945 - attribute: 0 - script: {fileID: 0} - typeID: 212 - customType: 23 - isPPtrCurve: 1 - - serializedVersion: 2 - path: 2794087405 + path: 1850144319 attribute: 3762991556 script: {fileID: 0} typeID: 212 customType: 26 isPPtrCurve: 0 + - serializedVersion: 2 + path: 2630329651 + attribute: 3762991556 + script: {fileID: 0} + typeID: 212 + customType: 26 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1063121799 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 883770153 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 3474216473 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 1850144319 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 pptrCurveMapping: - - {fileID: -7602907453496852081, guid: 1c59b9cd0adef0941bc4bd4bde66a759, type: 3} - - {fileID: -7602907453496852081, guid: 1c59b9cd0adef0941bc4bd4bde66a759, type: 3} - - {fileID: 7849497092207798707, guid: 1c59b9cd0adef0941bc4bd4bde66a759, type: 3} - - {fileID: 7849497092207798707, guid: 1c59b9cd0adef0941bc4bd4bde66a759, type: 3} + - {fileID: 1536648942, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -1242169489, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 514287739, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -2070367421, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 1854203247, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} m_AnimationClipSettings: serializedVersion: 2 m_AdditiveReferencePoseClip: {fileID: 0} m_AdditiveReferencePoseTime: 0 m_StartTime: 0 - m_StopTime: 20.199999 + m_StopTime: 0.15 m_OrientationOffsetY: 0 m_Level: 0 m_CycleOffset: 0 m_HasAdditiveReferencePose: 0 - m_LoopTime: 1 + m_LoopTime: 0 m_LoopBlend: 0 m_LoopBlendOrientation: 0 m_LoopBlendPositionY: 0 @@ -379,16 +439,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 20.166666 - value: 0 + value: 0.055999756 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -399,7 +450,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_LocalPosition.x - path: + path: CameraManBox classID: 4 script: {fileID: 0} - curve: @@ -407,16 +458,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -1.12 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 20.166666 - value: -1.12 + value: -0.0059999973 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -427,7 +469,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_LocalPosition.y - path: + path: CameraManBox classID: 4 script: {fileID: 0} - curve: @@ -442,20 +484,11 @@ AnimationClip: weightedMode: 0 inWeight: 0.33333334 outWeight: 0.33333334 - - serializedVersion: 3 - time: 20.166666 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_LocalPosition.z - path: + path: CameraManBox classID: 4 script: {fileID: 0} - curve: @@ -463,7 +496,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0 + value: 0.13500214 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -471,8 +504,26 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 20.166666 - value: 0 + time: 0.05 + value: 0.135 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.135 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.135 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -483,7 +534,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_LocalPosition.x - path: DogBody + path: CameraManHead classID: 4 script: {fileID: 0} - curve: @@ -491,7 +542,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -0.07 + value: 0.094900005 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -499,8 +550,26 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 20.166666 - value: -0.07 + time: 0.05 + value: 0.1152 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.14502 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.1749 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -511,7 +580,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_LocalPosition.y - path: DogBody + path: CameraManHead classID: 4 script: {fileID: 0} - curve: @@ -527,7 +596,25 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 20.166666 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 value: 0 inSlope: Infinity outSlope: Infinity @@ -539,7 +626,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_LocalPosition.z - path: DogBody + path: CameraManHead classID: 4 script: {fileID: 0} - curve: @@ -547,7 +634,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -9.18 + value: 0.04019928 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -555,8 +642,26 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 20.166666 - value: -9.18 + time: 0.05 + value: 0.04 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.04 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.04 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -567,7 +672,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_LocalPosition.x - path: DogBody/DogArmLeft + path: CameraManArm classID: 4 script: {fileID: 0} - curve: @@ -575,7 +680,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -2.54 + value: 0.104899995 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -583,8 +688,26 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 20.166666 - value: -2.54 + time: 0.05 + value: 0.125 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.145 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.155 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -595,7 +718,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_LocalPosition.y - path: DogBody/DogArmLeft + path: CameraManArm classID: 4 script: {fileID: 0} - curve: @@ -603,35 +726,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 20.748348 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 20.166666 - value: 20.748348 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalPosition.z - path: DogBody/DogArmLeft - classID: 4 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: -1.84 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -639,8 +734,72 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 20.166666 - value: -1.84 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2649002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.2649002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.2649002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.2649002 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -651,7 +810,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_LocalPosition.x - path: DogBody/DogArmRight + path: CameraManTorso classID: 4 script: {fileID: 0} - curve: @@ -659,7 +818,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -1.93 + value: -0.0348 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -667,8 +826,26 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 20.166666 - value: -1.93 + time: 0.05 + value: -0.0154 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.0056 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.0046 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -679,35 +856,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_LocalPosition.y - path: DogBody/DogArmRight - classID: 4 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 20.748348 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 20.166666 - value: 20.748348 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalPosition.z - path: DogBody/DogArmRight + path: CameraManTorso classID: 4 script: {fileID: 0} - curve: @@ -723,7 +872,166 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 20.166666 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15520096 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.168 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2755 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.2755 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -32.14 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraFlash + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraFlash + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 value: 0 inSlope: Infinity outSlope: Infinity @@ -734,8 +1042,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: localEulerAnglesRaw.x - path: DogBody/DogArmRight + attribute: m_LocalPosition.z + path: CameraFlash classID: 4 script: {fileID: 0} - curve: @@ -748,78 +1056,13 @@ AnimationClip: outSlope: Infinity tangentMode: 103 weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 20.166666 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: localEulerAnglesRaw.y - path: DogBody/DogArmRight - classID: 4 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 20.166666 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: localEulerAnglesRaw.z - path: DogBody/DogArmRight - classID: 4 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 2 - inSlope: -0 - outSlope: 0 - tangentMode: 69 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - - serializedVersion: 3 - time: 20.166666 - value: 2 - inSlope: -0 - outSlope: 0 - tangentMode: 69 - weightedMode: 0 inWeight: 0 outWeight: 0 m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: DogBody/DogArmRight + attribute: m_Enabled + path: CameraFlash classID: 212 script: {fileID: 0} - curve: @@ -827,284 +1070,58 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -5.5894957 + value: 4 inSlope: Infinity outSlope: Infinity tangentMode: 103 weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 + inWeight: 0 + outWeight: 0 - serializedVersion: 3 - time: 20.166666 - value: -5.5894957 + time: 0.05 + value: 5 inSlope: Infinity outSlope: Infinity tangentMode: 103 weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 + inWeight: 0 + outWeight: 0 m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_LocalPosition.x - path: DogBody/DogTorso - classID: 4 + attribute: m_SortingOrder + path: CameraManLegs + classID: 212 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: -3.1524081 + value: 5 inSlope: Infinity outSlope: Infinity tangentMode: 103 weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 + inWeight: 0 + outWeight: 0 - serializedVersion: 3 - time: 20.166666 - value: -3.1524081 + time: 0.05 + value: 4 inSlope: Infinity outSlope: Infinity tangentMode: 103 weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 + inWeight: 0 + outWeight: 0 m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_LocalPosition.y - path: DogBody/DogTorso - classID: 4 + attribute: m_SortingOrder + path: CameraManTorso + classID: 212 script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 20.748348 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 20.166666 - value: 20.748348 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalPosition.z - path: DogBody/DogTorso - classID: 4 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: -5.8489957 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 20.166666 - value: -5.8489957 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalPosition.x - path: DogBody/Sword - classID: 4 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: -3.078408 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 20.166666 - value: -3.078408 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalPosition.y - path: DogBody/Sword - classID: 4 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 20.748348 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 20.166666 - value: 20.748348 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalPosition.z - path: DogBody/Sword - classID: 4 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: -5.568996 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 20.166666 - value: -5.568996 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalPosition.x - path: DogHead - classID: 4 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: -1.39 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 20.166666 - value: -1.39 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalPosition.y - path: DogHead - classID: 4 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 20.748348 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 20.166666 - value: 20.748348 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalPosition.z - path: DogHead - classID: 4 - script: {fileID: 0} - m_EulerEditorCurves: - - curve: - serializedVersion: 2 - m_Curve: [] - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalEulerAngles.x - path: DogBody/DogArmRight - classID: 4 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: [] - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalEulerAngles.y - path: DogBody/DogArmRight - classID: 4 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: [] - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalEulerAngles.z - path: DogBody/DogArmRight - classID: 4 - script: {fileID: 0} - m_HasGenericRootTransform: 1 + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 m_HasMotionFloatCurves: 0 m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Bop.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Bop.anim.meta new file mode 100644 index 000000000..abee64da1 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Bop.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9de1637b51d1f4543979f3fc85ea150b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/CameraMan.controller b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/CameraMan.controller new file mode 100644 index 000000000..4092c9232 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/CameraMan.controller @@ -0,0 +1,217 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-7694057798106092070 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Bop + 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: 9de1637b51d1f4543979f3fc85ea150b, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-4940274647732770388 +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: -7694057798106092070} + m_Position: {x: 240, y: 170, z: 0} + - serializedVersion: 1 + m_State: {fileID: 3394376564344597582} + m_Position: {x: 140, y: 220, z: 0} + - serializedVersion: 1 + m_State: {fileID: 5671141340292174906} + m_Position: {x: -70, y: 270, z: 0} + - serializedVersion: 1 + m_State: {fileID: -3920408290231160871} + m_Position: {x: 350, y: 270, z: 0} + - serializedVersion: 1 + m_State: {fileID: 2820494646969238786} + m_Position: {x: 140, y: 270, z: 0} + - serializedVersion: 1 + m_State: {fileID: 4380657655853581801} + m_Position: {x: 30, y: 170, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 160, y: 90, z: 0} + m_EntryPosition: {x: 50, y: 130, z: 0} + m_ExitPosition: {x: 260, y: 130, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 4380657655853581801} +--- !u!1102 &-3920408290231160871 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cry + 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: 30a36dc6d71f56349a824951b30ac43b, 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: CameraMan + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -4940274647732770388} + 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 &2820494646969238786 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Oops + 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: d62d4d0730f452a4294f383cdbe2be2f, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &3394376564344597582 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Flash + 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: 6223bc2de26c3f747bd5a2535a93534a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &4380657655853581801 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle + 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: a29ecb658511e2e4797e400b01d6e428, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &5671141340292174906 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Happy + 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: 43bd25a7db7c00f4ebf59e5b69beb83e, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/CameraMan.controller.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/CameraMan.controller.meta new file mode 100644 index 000000000..655773b9a --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/CameraMan.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f99a0016bae01145b48ad10c0b4c989 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Cry.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Cry.anim new file mode 100644 index 000000000..ab7a13d26 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Cry.anim @@ -0,0 +1,697 @@ +%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: Cry + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.12493, y: 0.185, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: 0.12493, y: 0.19501, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.135, y: 0.205, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManHead + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.045, y: 0.115, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: 0.0551, y: 0.0849, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.0951, y: -0.0551, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.09514, y: -0.0649, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2649002, y: 0.001, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManTorso + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.165, y: -0.2755, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManLegs + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManLegs + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManTorso + classID: 212 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 378736356, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.3 + value: {fileID: 790909462, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManHead + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 1450439676, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.1 + value: {fileID: -1696152753, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.2 + value: {fileID: 2131247634, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManArm + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 1854203247, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManLegs + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: 883770153 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3474216473 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2630329651 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1850144319 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1850144319 + attribute: 3762991556 + script: {fileID: 0} + typeID: 212 + customType: 26 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2630329651 + attribute: 3762991556 + script: {fileID: 0} + typeID: 212 + customType: 26 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 883770153 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 3474216473 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 1850144319 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 378736356, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 790909462, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 1450439676, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -1696152753, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 2131247634, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 1854203247, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.3166667 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12493 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.12493 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.135 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.185 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.19501 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.205 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.045 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.0551 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0951 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.09514 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.115 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.0849 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0551 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0649 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2649002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.001 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.165 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2755 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManLegs + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManTorso + classID: 212 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Cry.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Cry.anim.meta new file mode 100644 index 000000000..4ef40e217 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Cry.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 30a36dc6d71f56349a824951b30ac43b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Flash.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Flash.anim new file mode 100644 index 000000000..2beac6ac2 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Flash.anim @@ -0,0 +1,1163 @@ +%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: Flash + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0842, y: 0.2655, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: -0.0837, y: 0.2726, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: -0.0848, y: 0.2726, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.11666667 + value: {x: -0.0859, y: 0.2746, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.18333334 + value: {x: -32.14, y: -0.04, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraFlash + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04019928, y: 0.104899995, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.18333334 + value: {x: 0.04, y: 0.155, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055999756, y: -0.0059999973, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.18333334 + value: {x: 0.055999756, y: -0.0059999973, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManBox + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.13500214, y: 0.094900005, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.18333334 + value: {x: 0.135, y: 0.1749, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManHead + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15520096, y: -0.2755, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.18333334 + value: {x: 0.15520096, y: -0.2755, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManLegs + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2649002, y: -0.0348, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.18333334 + value: {x: 0.2649002, y: 0.0046, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManTorso + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.083333336 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.18333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CameraFlash + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.18333334 + value: 4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManLegs + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.18333334 + value: 5 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManTorso + classID: 212 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 1536648942, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.083333336 + value: {fileID: -525950775, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.1 + value: {fileID: -352894957, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.11666667 + value: {fileID: 1829225764, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.18333334 + value: {fileID: 1536648942, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraFlash + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 514287739, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.18333334 + value: {fileID: 514287739, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManArm + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: -1242169489, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.18333334 + value: {fileID: -1242169489, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManHead + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: -2070367421, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.18333334 + value: {fileID: 1854203247, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManLegs + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: 1063121799 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3474216473 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1608736951 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 883770153 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1850144319 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2630329651 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1063121799 + attribute: 3305885265 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1850144319 + attribute: 3762991556 + script: {fileID: 0} + typeID: 212 + customType: 26 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2630329651 + attribute: 3762991556 + script: {fileID: 0} + typeID: 212 + customType: 26 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1063121799 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 3474216473 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 883770153 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 1850144319 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 1536648942, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -525950775, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -352894957, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 1829225764, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 1536648942, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 514287739, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 514287739, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -1242169489, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -1242169489, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -2070367421, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 1854203247, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.2 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0842 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: -0.0837 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.0848 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.11666667 + value: -0.0859 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -32.14 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraFlash + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2655 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0.2726 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.2726 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.11666667 + value: 0.2746 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -0.04 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraFlash + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.11666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraFlash + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.016666668 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.083333336 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.18333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CameraFlash + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04019928 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.04 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.104899995 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.155 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.055999756 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.055999756 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManBox + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0059999973 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -0.0059999973 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManBox + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManBox + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13500214 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.135 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.094900005 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.1749 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15520096 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.15520096 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2755 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: -0.2755 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.18333334 + value: 4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManLegs + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2649002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.2649002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0348 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0.0046 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.18333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.18333334 + value: 5 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManTorso + classID: 212 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Flash.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Flash.anim.meta new file mode 100644 index 000000000..6b37d4c7f --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Flash.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6223bc2de26c3f747bd5a2535a93534a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Happy.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Happy.anim new file mode 100644 index 000000000..6077f0436 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Happy.anim @@ -0,0 +1,871 @@ +%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: Happy + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.145, y: 0.1049, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: 0.145, y: 0.12507, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: 0.145, y: 0.13501, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: 0.145, y: 0.155, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManHead + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.09497, y: -0.1051, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: 0.09497, y: -0.085, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: 0.09497, y: -0.0749, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: 0.09497, y: -0.065, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15520096, y: -0.2755, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: 0.1678, y: -0.2755, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManLegs + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2649002, y: -0.0348, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: 0.2649002, y: -0.017, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: 0.2649002, y: -0.0066, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: 0.2649002, y: 0.0067, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManTorso + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManLegs + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManTorso + classID: 212 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: -1491722911, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManHead + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 2131247634, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManArm + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: -2070367421, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.05 + value: {fileID: 1854203247, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManLegs + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + m_WrapMode: 8 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 883770153 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3474216473 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1850144319 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2630329651 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1850144319 + attribute: 3762991556 + script: {fileID: 0} + typeID: 212 + customType: 26 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2630329651 + attribute: 3762991556 + script: {fileID: 0} + typeID: 212 + customType: 26 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 883770153 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 3474216473 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 1850144319 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: -1491722911, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 2131247634, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -2070367421, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 1854203247, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.15 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.145 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.145 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.145 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.145 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1049 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.12507 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.13501 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.155 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09497 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.09497 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.09497 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.09497 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1051 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.085 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.0749 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.065 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15520096 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.1678 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2755 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.2755 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2649002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.2649002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.2649002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.2649002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0348 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.017 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.0066 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.0067 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManLegs + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManTorso + classID: 212 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Happy.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Happy.anim.meta new file mode 100644 index 000000000..e40f8e026 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Happy.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 43bd25a7db7c00f4ebf59e5b69beb83e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Idle.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Idle.anim new file mode 100644 index 000000000..a8ee74116 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Idle.anim @@ -0,0 +1,728 @@ +%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: Idle + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -32.14, y: -0.04, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraFlash + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04, y: 0.155, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055999756, y: -0.0059999973, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManBox + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.135, y: 0.1749, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManHead + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.168, y: -0.2755, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManLegs + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2649002, y: 0.0046, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManTorso + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CameraFlash + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManLegs + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManTorso + classID: 212 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 1536648942, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraFlash + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 514287739, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManArm + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: -1242169489, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManHead + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 1854203247, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManLegs + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: 1063121799 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3474216473 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1608736951 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 883770153 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1850144319 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2630329651 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1063121799 + attribute: 3305885265 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1850144319 + attribute: 3762991556 + script: {fileID: 0} + typeID: 212 + customType: 26 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2630329651 + attribute: 3762991556 + script: {fileID: 0} + typeID: 212 + customType: 26 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1063121799 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 3474216473 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 883770153 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 1850144319 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 1536648942, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 514287739, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -1242169489, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 1854203247, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.016666668 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -32.14 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraFlash + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraFlash + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraFlash + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CameraFlash + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.155 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.055999756 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManBox + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0059999973 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManBox + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManBox + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.135 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1749 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.168 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2755 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManLegs + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2649002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0046 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManTorso + classID: 212 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/Idle.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Idle.anim.meta similarity index 79% rename from Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/Idle.anim.meta rename to Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Idle.anim.meta index 501e8ce5c..b7bac234d 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/Idle.anim.meta +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Idle.anim.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 3319f492700f97544b948589e4e54ca0 +guid: a29ecb658511e2e4797e400b01d6e428 NativeFormatImporter: externalObjects: {} mainObjectFileID: 7400000 diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Oops.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Oops.anim new file mode 100644 index 000000000..aa27a2b61 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Oops.anim @@ -0,0 +1,781 @@ +%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: Oops + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.225, y: 0.20501, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: 0.235, y: 0.19498, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: 0.235, y: 0.18499, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: 0.24497, y: 0.18499, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManHead + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.06, y: 0.115, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: 0.05, y: 0.1251, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: 0.05, y: 0.115, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: 0.05, y: 0.105, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2649002, y: 0.0046, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: 0.2649002, y: 0.0142, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: 0.2649002, y: -0.0052, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManTorso + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1679, y: -0.2755, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: CameraManLegs + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManLegs + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManTorso + classID: 212 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: -363496440, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManHead + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 1854203247, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: CameraManLegs + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: 883770153 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3474216473 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2630329651 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1850144319 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1850144319 + attribute: 3762991556 + script: {fileID: 0} + typeID: 212 + customType: 26 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2630329651 + attribute: 3762991556 + script: {fileID: 0} + typeID: 212 + customType: 26 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 883770153 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 1850144319 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: -363496440, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 1854203247, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.15 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.225 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.235 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.235 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.24497 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20501 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.19498 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.18499 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.18499 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.05 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.05 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.05 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.115 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.1251 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.115 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.105 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2649002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.2649002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.2649002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0046 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.0142 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.0052 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1679 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2755 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: CameraManLegs + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManLegs + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_SortingOrder + path: CameraManTorso + classID: 212 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Oops.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Oops.anim.meta new file mode 100644 index 000000000..cf46d217c --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/CameraMan/Oops.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d62d4d0730f452a4294f383cdbe2be2f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd.meta new file mode 100644 index 000000000..05b37ce7c --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 319b7dfdbaa53c54089b74249eeb05ba +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Crowd.controller b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Crowd.controller new file mode 100644 index 000000000..e06a245fd --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Crowd.controller @@ -0,0 +1,101 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1107 &-7763619594801466328 +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: 1822075571857402526} + m_Position: {x: 30, y: 160, z: 0} + - serializedVersion: 1 + m_State: {fileID: 4244296043157703073} + m_Position: {x: 30, 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: 1822075571857402526} +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Crowd + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -7763619594801466328} + 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 &1822075571857402526 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Hide + 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: 20906b4a3b876bf42bb73b13fa70df78, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &4244296043157703073 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Show + 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: 2625e5e995af544408b8cb8b2ab933e1, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Crowd.controller.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Crowd.controller.meta new file mode 100644 index 000000000..60bdfbd61 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Crowd.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 96457d000e5156540ae2c34a7abbcb00 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun08-end.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Hide.anim similarity index 82% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun08-end.anim rename to Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Hide.anim index bc63046e3..b5afd7ee6 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun08-end.anim +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Hide.anim @@ -6,7 +6,7 @@ AnimationClip: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-sun08-end + m_Name: Hide serializedVersion: 6 m_Legacy: 0 m_Compressed: 0 @@ -22,7 +22,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -32,8 +32,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: + attribute: m_Enabled + path: CrowdLeft1 classID: 212 script: {fileID: 0} - curve: @@ -41,7 +41,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 10 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -51,8 +51,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-0 + attribute: m_Enabled + path: CrowdLeft2 classID: 212 script: {fileID: 0} - curve: @@ -60,7 +60,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -70,8 +70,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line02-0 + attribute: m_Enabled + path: CrowdRight1 classID: 212 script: {fileID: 0} - curve: @@ -79,7 +79,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 11 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -89,8 +89,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line02-1 + attribute: m_Enabled + path: CrowdRight2 classID: 212 script: {fileID: 0} - curve: @@ -98,7 +98,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 11 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -108,8 +108,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-1 + attribute: m_Enabled + path: CrowdMiddle classID: 212 script: {fileID: 0} m_PPtrCurves: [] @@ -121,39 +121,39 @@ AnimationClip: m_ClipBindingConstant: genericBindings: - serializedVersion: 2 - path: 0 - attribute: 3762991556 + path: 1008703323 + attribute: 3305885265 script: {fileID: 0} typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3837248189 - attribute: 3762991556 + path: 2769733345 + attribute: 3305885265 script: {fileID: 0} typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3874585828 - attribute: 3762991556 + path: 2751164551 + attribute: 3305885265 script: {fileID: 0} typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 2448837746 - attribute: 3762991556 + path: 988946749 + attribute: 3305885265 script: {fileID: 0} typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 2477847083 - attribute: 3762991556 + path: 2764676087 + attribute: 3305885265 script: {fileID: 0} typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 pptrCurveMapping: [] m_AnimationClipSettings: @@ -166,7 +166,7 @@ AnimationClip: m_Level: 0 m_CycleOffset: 0 m_HasAdditiveReferencePose: 0 - m_LoopTime: 1 + m_LoopTime: 0 m_LoopBlend: 0 m_LoopBlendOrientation: 0 m_LoopBlendPositionY: 0 @@ -182,7 +182,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -192,8 +192,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: + attribute: m_Enabled + path: CrowdLeft1 classID: 212 script: {fileID: 0} - curve: @@ -201,7 +201,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 10 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -211,8 +211,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-0 + attribute: m_Enabled + path: CrowdLeft2 classID: 212 script: {fileID: 0} - curve: @@ -220,7 +220,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -230,8 +230,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line02-0 + attribute: m_Enabled + path: CrowdRight1 classID: 212 script: {fileID: 0} - curve: @@ -239,7 +239,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 11 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -249,8 +249,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line02-1 + attribute: m_Enabled + path: CrowdRight2 classID: 212 script: {fileID: 0} - curve: @@ -258,7 +258,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 11 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -268,8 +268,8 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-1 + attribute: m_Enabled + path: CrowdMiddle classID: 212 script: {fileID: 0} m_EulerEditorCurves: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Hide.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Hide.anim.meta new file mode 100644 index 000000000..9afe1d385 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Hide.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 20906b4a3b876bf42bb73b13fa70df78 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Show.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Show.anim new file mode 100644 index 000000000..7247a6d54 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Show.anim @@ -0,0 +1,278 @@ +%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: Show + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CrowdLeft1 + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CrowdLeft2 + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CrowdRight1 + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CrowdRight2 + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CrowdMiddle + classID: 212 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 1008703323 + attribute: 3305885265 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2769733345 + attribute: 3305885265 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2751164551 + attribute: 3305885265 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 988946749 + attribute: 3305885265 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2764676087 + attribute: 3305885265 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CrowdLeft1 + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CrowdLeft2 + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CrowdRight1 + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CrowdRight2 + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: CrowdMiddle + classID: 212 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Show.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Show.anim.meta new file mode 100644 index 000000000..a57647768 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Crowd/Show.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2625e5e995af544408b8cb8b2ab933e1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar.meta new file mode 100644 index 000000000..b7065f11c --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 434fe6752446ab84a839f346e0ddbe23 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/FarCar.controller b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/FarCar.controller new file mode 100644 index 000000000..dc4a0ebb6 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/FarCar.controller @@ -0,0 +1,219 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-8221386695005110171 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle 0 + 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: 4634912006d9f6b4eafb51fd00ed8b11, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-7529186643789100781 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Go + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 6000029820733007842} + m_Position: {x: 240, y: 160, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6609107675409446945} + m_Position: {x: 30, y: 160, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6957493699658601234} + m_Position: {x: 130, y: 110, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 150, y: 30, z: 0} + m_EntryPosition: {x: 150, y: 70, z: 0} + m_ExitPosition: {x: 150, y: 210, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 6957493699658601234} +--- !u!1107 &-6983572707965773299 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -1023210728335116989} + m_Position: {x: 240, y: 110, z: 0} + - serializedVersion: 1 + m_State: {fileID: -8221386695005110171} + m_Position: {x: -4511.369, y: -5657.8467, 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: -1023210728335116989} +--- !u!1102 &-1023210728335116989 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle + 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: 4634912006d9f6b4eafb51fd00ed8b11, 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: FarCar + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Idle + m_StateMachine: {fileID: -6983572707965773299} + 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} + - serializedVersion: 5 + m_Name: Go + m_StateMachine: {fileID: -7529186643789100781} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &6000029820733007842 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: FastCarGo + 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: 090290994bc62654f8624f6cbae7b378, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &6609107675409446945 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SlowCarGo + 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: 3e713c3021228954fabe6faefa75ac4c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &6957493699658601234 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Wait + 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: 3be56923f23ea7c458cdc52e111575bc, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/FarCar.controller.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/FarCar.controller.meta new file mode 100644 index 000000000..5f01dfd36 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/FarCar.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ad0434844caee2c408d7e8930c9455c9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/FastCarGo.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/FastCarGo.anim new file mode 100644 index 000000000..609326244 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/FastCarGo.anim @@ -0,0 +1,259 @@ +%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: FastCarGo + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: -10.078, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -5.039, y: 0, z: 0} + inSlope: {x: -10.078, y: -0, z: -0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: SlowCarFar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: FastCarFar + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 0 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1906871955 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1536957841 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.5 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: -10.078 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -5.039 + inSlope: -10.078 + outSlope: 0 + tangentMode: 5 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: 0 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 5 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: 0 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 5 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: SlowCarFar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: FastCarFar + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/FastCarGo.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/FastCarGo.anim.meta new file mode 100644 index 000000000..6768d4557 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/FastCarGo.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 090290994bc62654f8624f6cbae7b378 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/Idle.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/Idle.anim new file mode 100644 index 000000000..1697a291e --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/Idle.anim @@ -0,0 +1,724 @@ +%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: Idle + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0047, y: 0.0947, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.0047, y: 0.105, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.0047, y: 0.0947, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: SlowCarFar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0934, y: 0.0947, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.0934, y: 0.1049, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.0934, y: 0.0947, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: FastCarFar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.079, y: -0.0585, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.0811, y: -0.0699, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.079, y: -0.0585, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: FastCarFar/WheelFar01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1568, y: -0.0585, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.1587, y: -0.0699, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.1568, y: -0.0585, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: FastCarFar/WheelFar02 + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: -49849053, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.06666667 + value: {fileID: -988158864, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.13333334 + value: {fileID: -49849053, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: SlowCarFar + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: -1950327860, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.06666667 + value: {fileID: 1492055772, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.13333334 + value: {fileID: -1950327860, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: FastCarFar/WheelFar02 + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: -1950327860, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.06666667 + value: {fileID: 1492055772, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - time: 0.13333334 + value: {fileID: -1950327860, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: FastCarFar/WheelFar01 + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: 1906871955 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1536957841 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2680404930 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 113961592 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1906871955 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 113961592 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 2680404930 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: -49849053, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -988158864, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -49849053, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -1950327860, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 1492055772, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -1950327860, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -1950327860, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 1492055772, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -1950327860, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.15 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0047 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0047 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0047 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: SlowCarFar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0947 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.105 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0947 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: SlowCarFar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: SlowCarFar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0934 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0934 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0934 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: FastCarFar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0947 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1049 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0947 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: FastCarFar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: FastCarFar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.079 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0811 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.079 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: FastCarFar/WheelFar01 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0585 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0699 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0585 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: FastCarFar/WheelFar01 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: FastCarFar/WheelFar01 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1568 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.1587 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.1568 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: FastCarFar/WheelFar02 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0585 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0699 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0585 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: FastCarFar/WheelFar02 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: FastCarFar/WheelFar02 + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/Idle.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/Idle.anim.meta new file mode 100644 index 000000000..1f6682ae7 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/Idle.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4634912006d9f6b4eafb51fd00ed8b11 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/SlowCarGo.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/SlowCarGo.anim new file mode 100644 index 000000000..28c234854 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/SlowCarGo.anim @@ -0,0 +1,259 @@ +%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: SlowCarGo + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: -10.078, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -5.039, y: 0, z: 0} + inSlope: {x: -10.078, y: -0, z: -0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: FastCarFar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: SlowCarFar + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 0 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1536957841 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1906871955 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.5 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: -10.078 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -5.039 + inSlope: -10.078 + outSlope: 0 + tangentMode: 5 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: 0 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 5 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: 0 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 5 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: FastCarFar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: SlowCarFar + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/SlowCarGo.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/SlowCarGo.anim.meta new file mode 100644 index 000000000..55a8c4261 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/SlowCarGo.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3e713c3021228954fabe6faefa75ac4c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/Wait.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/Wait.anim new file mode 100644 index 000000000..38f052e5f --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/Wait.anim @@ -0,0 +1,143 @@ +%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: Wait + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: SlowCarFar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: FastCarFar + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 1906871955 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1536957841 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: SlowCarFar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: FastCarFar + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/Wait.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/Wait.anim.meta new file mode 100644 index 000000000..2ac10da36 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/FarCar/Wait.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3be56923f23ea7c458cdc52e111575bc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro.meta new file mode 100644 index 000000000..7816ed7f9 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5f3feb1e101faa94b803a8d3a65327e0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Enter.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Enter.anim new file mode 100644 index 000000000..7e2afd1a2 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Enter.anim @@ -0,0 +1,295 @@ +%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: Enter + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.01599884, y: -3.27, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: 0, y: 9.068, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0, z: 0} + outWeight: {x: 0, y: 0, z: 0} + - serializedVersion: 3 + time: 0.5 + value: {x: -0.01599884, y: 1.264, z: 0} + inSlope: {x: -0, y: 9.068, z: -0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + 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.01599884, y: 1.264, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: IntroLights + classID: 212 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 0 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 3305885265 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3116010496 + attribute: 3305885265 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.01599884 + inSlope: Infinity + outSlope: 0 + tangentMode: 71 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.5 + value: -0.01599884 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.01599884 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.27 + inSlope: Infinity + outSlope: 9.068 + tangentMode: 71 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.5 + value: 1.264 + inSlope: 9.068 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.264 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: 0 + tangentMode: 71 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: IntroLights + classID: 212 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Enter.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Enter.anim.meta new file mode 100644 index 000000000..6bf6be910 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Enter.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 477424422c680a24781d251ef8426b6d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Exit.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Exit.anim new file mode 100644 index 000000000..1e81744f5 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Exit.anim @@ -0,0 +1,295 @@ +%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: Exit + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.01599884, y: 1.264, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -0.01599884, y: 3.3, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: IntroLights + classID: 212 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 0 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 3305885265 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3116010496 + attribute: 3305885265 + script: {fileID: 0} + typeID: 212 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.5 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.01599884 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.01599884 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.264 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 3.3 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: IntroLights + classID: 212 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Exit.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Exit.anim.meta new file mode 100644 index 000000000..4afa82bb1 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Exit.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6bcbec292de5a12459e9cf63a51b47d8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Intro.controller b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Intro.controller new file mode 100644 index 000000000..4475bba17 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Intro.controller @@ -0,0 +1,277 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-8492772138251747787 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LightsOff + 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: 1430b2a2df2c8ab4eab2e00b76b4250d, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-7379632207104561682 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Light01 + 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: f21f6d9838fca444aa16346681c3aeb0, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-4679596912887143660 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Lights + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -8492772138251747787} + m_Position: {x: 30, y: 100, z: 0} + - serializedVersion: 1 + m_State: {fileID: -7379632207104561682} + m_Position: {x: 30, y: 150, z: 0} + - serializedVersion: 1 + m_State: {fileID: 7660370097418110429} + m_Position: {x: 30, y: 200, z: 0} + - serializedVersion: 1 + m_State: {fileID: -820595084212514064} + m_Position: {x: 30, y: 250, 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: 60, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -8492772138251747787} +--- !u!1102 &-4579698391219088240 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Wait + 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: d7abcec76186ed6439dd678d13da4d4f, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-4197730720010948914 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Exit + 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: 6bcbec292de5a12459e9cf63a51b47d8, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-820595084212514064 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Light03 + 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: 14ce86e14db17ff41ac4fd709c36d19b, 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: Intro + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Sign + m_StateMachine: {fileID: 6491547683958099978} + 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} + - serializedVersion: 5 + m_Name: Lights + m_StateMachine: {fileID: -4679596912887143660} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1107 &6491547683958099978 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Sign + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -4579698391219088240} + m_Position: {x: 30, y: 100, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6891384723135172494} + m_Position: {x: 30, y: 150, z: 0} + - serializedVersion: 1 + m_State: {fileID: -4197730720010948914} + m_Position: {x: 30, y: 200, 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: 60, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -4579698391219088240} +--- !u!1102 &6891384723135172494 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Enter + 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: 477424422c680a24781d251ef8426b6d, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &7660370097418110429 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Light02 + 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: a297ee585eef7054c800e1ff370198b6, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Intro.controller.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Intro.controller.meta new file mode 100644 index 000000000..1985333aa --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Intro.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9726e5407b6fc2e44ad0bd615f8adcf3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face00.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light01.anim similarity index 57% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face00.anim rename to Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light01.anim index c1adb4ce2..46aa0b4ec 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face00.anim +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light01.anim @@ -6,7 +6,7 @@ AnimationClip: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face00 + m_Name: Light01 serializedVersion: 6 m_Legacy: 0 m_Compressed: 0 @@ -16,27 +16,19 @@ AnimationClip: m_EulerCurves: [] m_PositionCurves: [] m_ScaleCurves: [] - m_FloatCurves: + m_FloatCurves: [] + m_PPtrCurves: - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: + - time: 0 + value: {fileID: -1278587421, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + - time: 0.033333335 + value: {fileID: 173899709, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + - time: 0.05 + value: {fileID: -1490388138, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + attribute: m_Sprite + path: IntroLights classID: 212 script: {fileID: 0} - m_PPtrCurves: [] m_SampleRate: 60 m_WrapMode: 0 m_Bounds: @@ -45,19 +37,22 @@ AnimationClip: m_ClipBindingConstant: genericBindings: - serializedVersion: 2 - path: 0 - attribute: 3762991556 + path: 3116010496 + attribute: 0 script: {fileID: 0} typeID: 212 - customType: 26 - isPPtrCurve: 0 - pptrCurveMapping: [] + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: -1278587421, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + - {fileID: 173899709, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + - {fileID: -1490388138, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} m_AnimationClipSettings: serializedVersion: 2 m_AdditiveReferencePoseClip: {fileID: 0} m_AdditiveReferencePoseTime: 0 m_StartTime: 0 - m_StopTime: 0 + m_StopTime: 0.06666667 m_OrientationOffsetY: 0 m_Level: 0 m_CycleOffset: 0 @@ -72,26 +67,7 @@ AnimationClip: m_KeepOriginalPositionXZ: 0 m_HeightFromFeet: 0 m_Mirror: 0 - m_EditorCurves: - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 - script: {fileID: 0} + m_EditorCurves: [] m_EulerEditorCurves: [] m_HasGenericRootTransform: 0 m_HasMotionFloatCurves: 0 diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light01.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light01.anim.meta new file mode 100644 index 000000000..62407fbd0 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light01.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f21f6d9838fca444aa16346681c3aeb0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light02.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light02.anim new file mode 100644 index 000000000..22a080d16 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light02.anim @@ -0,0 +1,74 @@ +%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: Light02 + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: -1965601484, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + - time: 0.033333335 + value: {fileID: -1760388311, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + - time: 0.05 + value: {fileID: 622206759, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + attribute: m_Sprite + path: IntroLights + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: 3116010496 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: -1965601484, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + - {fileID: -1760388311, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + - {fileID: 622206759, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.06666667 + 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/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light02.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light02.anim.meta new file mode 100644 index 000000000..b59f4de51 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light02.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a297ee585eef7054c800e1ff370198b6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light03.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light03.anim new file mode 100644 index 000000000..9ccdc56a6 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light03.anim @@ -0,0 +1,74 @@ +%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: Light03 + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 189580602, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + - time: 0.033333335 + value: {fileID: 57656780, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + - time: 0.05 + value: {fileID: -1501082486, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + attribute: m_Sprite + path: IntroLights + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: 3116010496 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 189580602, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + - {fileID: 57656780, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + - {fileID: -1501082486, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.06666667 + 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/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light03.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light03.anim.meta new file mode 100644 index 000000000..01b8a63f9 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Light03.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 14ce86e14db17ff41ac4fd709c36d19b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/LightsOff.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/LightsOff.anim new file mode 100644 index 000000000..bb29df672 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/LightsOff.anim @@ -0,0 +1,71 @@ +%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: LightsOff + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 656717597, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + - time: 1 + value: {fileID: 656717597, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + attribute: m_Sprite + path: IntroLights + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: 3116010496 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 656717597, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + - {fileID: 656717597, guid: 2439a9ab25bbde743b1c3ee0ecfb0912, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.0166667 + 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/Resources/Sprites/Games/FreezeFrame/Animations/Intro/LightsOff.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/LightsOff.anim.meta new file mode 100644 index 000000000..818c44dd5 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/LightsOff.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1430b2a2df2c8ab4eab2e00b76b4250d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara08-end.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Wait.anim similarity index 77% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara08-end.anim rename to Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Wait.anim index daf5f5e1c..4fc730d3b 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara08-end.anim +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Wait.anim @@ -6,7 +6,7 @@ AnimationClip: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-chikara08-end + m_Name: Wait serializedVersion: 6 m_Legacy: 0 m_Compressed: 0 @@ -14,7 +14,23 @@ AnimationClip: m_RotationCurves: [] m_CompressedRotationCurves: [] m_EulerCurves: [] - m_PositionCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.01599884, y: -3.27, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: m_ScaleCurves: [] m_FloatCurves: - curve: @@ -22,7 +38,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -32,67 +48,29 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder + attribute: m_Enabled + path: IntroLights + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled path: classID: 212 script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 10 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-0 - classID: 212 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 9 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line02-0 - classID: 212 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 11 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line02-1 - classID: 212 - script: {fileID: 0} m_PPtrCurves: [] m_SampleRate: 60 m_WrapMode: 0 @@ -103,31 +81,24 @@ AnimationClip: genericBindings: - serializedVersion: 2 path: 0 - attribute: 3762991556 + attribute: 1 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 4 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3837248189 - attribute: 3762991556 + path: 3116010496 + attribute: 3305885265 script: {fileID: 0} typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3874585828 - attribute: 3762991556 + path: 0 + attribute: 3305885265 script: {fileID: 0} typeID: 212 - customType: 26 - isPPtrCurve: 0 - - serializedVersion: 2 - path: 2448837746 - attribute: 3762991556 - script: {fileID: 0} - typeID: 212 - customType: 26 + customType: 0 isPPtrCurve: 0 pptrCurveMapping: [] m_AnimationClipSettings: @@ -156,7 +127,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8 + value: -0.01599884 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -166,68 +137,87 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.27 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled + path: IntroLights + classID: 212 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Enabled path: classID: 212 script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 10 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-0 - classID: 212 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 9 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line02-0 - classID: 212 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 11 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line02-1 - classID: 212 - script: {fileID: 0} m_EulerEditorCurves: [] - m_HasGenericRootTransform: 0 + m_HasGenericRootTransform: 1 m_HasMotionFloatCurves: 0 m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Wait.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Wait.anim.meta new file mode 100644 index 000000000..f4aa15965 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Intro/Wait.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d7abcec76186ed6439dd678d13da4d4f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar.meta new file mode 100644 index 000000000..4e6b9b548 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 06a3958944265a548b5025dd08c11778 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/FastCarGo.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/FastCarGo.anim new file mode 100644 index 000000000..0e9c3a04c --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/FastCarGo.anim @@ -0,0 +1,259 @@ +%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: FastCarGo + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: 16.534, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 8.267, y: 0, z: 0} + inSlope: {x: 16.534, y: -0, z: -0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: LongCar + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 0 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2916934307 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3618046469 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.5 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: 16.534 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 8.267 + inSlope: 16.534 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: 0 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: 0 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: LongCar + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/FastCarGo.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/FastCarGo.anim.meta new file mode 100644 index 000000000..392ad5b65 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/FastCarGo.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f53e6553fc669f14ba2823a533b73ab2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/Idle.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/Idle.anim new file mode 100644 index 000000000..52a7ac27c --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/Idle.anim @@ -0,0 +1,1693 @@ +%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: Idle + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -25} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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, y: 0, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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, y: 0, z: -25} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: SlowCar/Wheel1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -25} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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, y: 0, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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, y: 0, z: -25} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: SlowCar/Wheel2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -25} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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, y: 0, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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, y: 0, z: -25} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: LongCar/Wheel1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -25} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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, y: 0, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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, y: 0, z: -25} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: LongCar/Wheel2 + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0.455, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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, y: 0.505, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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, y: 0.455, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: SlowCar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.2339, y: -0.2996, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.2324, y: -0.35, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.2339, y: -0.2996, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: SlowCar/Wheel1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2254, y: -0.2996, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.227, y: -0.35, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.2254, y: -0.2996, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: SlowCar/Wheel2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0051, y: 0.5551, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.0051, y: 0.565, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.0051, y: 0.5551, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: LongCar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.6049, y: -0.39, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.5975, y: -0.4, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.6049, y: -0.39, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: LongCar/Wheel1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6071, y: -0.39, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.6052, y: -0.4, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.6071, y: -0.39, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: LongCar/Wheel2 + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 2916934307 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 417962073 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2178992611 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3618046469 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2690053289 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 962569491 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 417962073 + attribute: 4 + script: {fileID: 0} + typeID: 4 + customType: 4 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2178992611 + attribute: 4 + script: {fileID: 0} + typeID: 4 + customType: 4 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2690053289 + attribute: 4 + script: {fileID: 0} + typeID: 4 + customType: 4 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 962569491 + attribute: 4 + script: {fileID: 0} + typeID: 4 + customType: 4 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.13333334 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: SlowCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.455 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.505 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.455 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: SlowCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: SlowCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2339 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.2324 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.2339 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: SlowCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2996 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.35 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.2996 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: SlowCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: SlowCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.x + path: SlowCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.y + path: SlowCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -25 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -25 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.z + path: SlowCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2254 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.227 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.2254 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: SlowCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2996 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.35 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.2996 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: SlowCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: SlowCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.x + path: SlowCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.y + path: SlowCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -25 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -25 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.z + path: SlowCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0051 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0051 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0051 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: LongCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5551 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.565 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5551 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: LongCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: LongCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6049 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.5975 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.6049 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: LongCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.39 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.39 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: LongCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: LongCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.x + path: LongCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.y + path: LongCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -25 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -25 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.z + path: LongCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6071 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.6052 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6071 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: LongCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.39 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.39 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: LongCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: LongCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.x + path: LongCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.y + path: LongCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -25 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -25 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.z + path: LongCar/Wheel2 + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.z + path: LongCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.y + path: LongCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.x + path: LongCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.z + path: LongCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.y + path: LongCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.x + path: LongCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.z + path: SlowCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.y + path: SlowCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.x + path: SlowCar/Wheel1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.x + path: SlowCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.y + path: SlowCar/Wheel2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.z + path: SlowCar/Wheel2 + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/Idle.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/Idle.anim.meta new file mode 100644 index 000000000..7bdc9a072 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/Idle.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cb3b9af812cceee4f92f2e796efd1791 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/NearCar.controller b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/NearCar.controller new file mode 100644 index 000000000..a7b2039d5 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/NearCar.controller @@ -0,0 +1,190 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-6198476077091748123 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: FastCarGo + 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: f53e6553fc669f14ba2823a533b73ab2, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-2249055484385392528 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Wait + 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: a1f3d2019a228d943b8b269431bcf9cb, 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: NearCar + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Idle + m_StateMachine: {fileID: 4529028769186297209} + 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} + - serializedVersion: 5 + m_Name: Go + m_StateMachine: {fileID: 6556203558896840178} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &390450899047083730 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SlowCarGo + 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: 9d7e648e51ab9a54b92a0ef3d1276c22, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &4529028769186297209 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 5059629920359083729} + m_Position: {x: 30, y: 160, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 80, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 50, y: 210, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 5059629920359083729} +--- !u!1102 &5059629920359083729 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle + 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: cb3b9af812cceee4f92f2e796efd1791, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &6556203558896840178 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Go + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -2249055484385392528} + m_Position: {x: 30, y: 160, z: 0} + - serializedVersion: 1 + m_State: {fileID: -6198476077091748123} + m_Position: {x: -70, y: 210, z: 0} + - serializedVersion: 1 + m_State: {fileID: 390450899047083730} + m_Position: {x: 140, y: 210, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 80, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 50, y: 260, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -2249055484385392528} diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/NearCar.controller.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/NearCar.controller.meta new file mode 100644 index 000000000..a2be8f79f --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/NearCar.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f3016a51d39383040b47ad5039b9feba +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/SlowCarGo.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/SlowCarGo.anim new file mode 100644 index 000000000..ef5a02d07 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/SlowCarGo.anim @@ -0,0 +1,259 @@ +%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: SlowCarGo + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: 16.534, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 8.267, y: 0, z: 0} + inSlope: {x: 16.534, y: -0, z: -0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: LongCar + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 0 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2916934307 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3618046469 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.5 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: 16.534 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 8.267 + inSlope: 16.534 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: 0 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: 0 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: LongCar + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/SlowCarGo.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/SlowCarGo.anim.meta new file mode 100644 index 000000000..8d0fbb366 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/SlowCarGo.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9d7e648e51ab9a54b92a0ef3d1276c22 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma00.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/Wait.anim similarity index 62% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma00.anim rename to Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/Wait.anim index 419b4e1a2..ca27b38a6 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma00.anim +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/Wait.anim @@ -6,7 +6,7 @@ AnimationClip: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-comma00 + m_Name: Wait serializedVersion: 6 m_Legacy: 0 m_Compressed: 0 @@ -32,9 +32,28 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 + attribute: m_IsActive + path: SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: LongCar + classID: 1 script: {fileID: 0} m_PPtrCurves: [] m_SampleRate: 60 @@ -45,11 +64,18 @@ AnimationClip: m_ClipBindingConstant: genericBindings: - serializedVersion: 2 - path: 0 - attribute: 3762991556 + path: 2916934307 + attribute: 2086281974 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3618046469 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 isPPtrCurve: 0 pptrCurveMapping: [] m_AnimationClipSettings: @@ -88,9 +114,28 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 + attribute: m_IsActive + path: SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: LongCar + classID: 1 script: {fileID: 0} m_EulerEditorCurves: [] m_HasGenericRootTransform: 0 diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/Wait.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/Wait.anim.meta new file mode 100644 index 000000000..30c2e0721 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/NearCar/Wait.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a1f3d2019a228d943b8b269431bcf9cb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph.meta new file mode 100644 index 000000000..e223e7753 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dde292a974cc96946bc913c9e8685748 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Early.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Early.anim new file mode 100644 index 000000000..f8e993835 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Early.anim @@ -0,0 +1,483 @@ +%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: Cameo_Dude1_Left_Early + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.466, y: 0.275, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -1, y: 1, z: 1} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/17170028 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/879877505 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/118779030 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/1043812711 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3511573123 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.466 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.275 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Early.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Early.anim.meta new file mode 100644 index 000000000..f349d7226 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Early.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 777036f41198e1c47ad7dafef90be97a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Late.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Late.anim new file mode 100644 index 000000000..a42d1407e --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Late.anim @@ -0,0 +1,483 @@ +%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: Cameo_Dude1_Left_Late + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.134, y: 0.275, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -1, y: 1, z: 1} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/17170028 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/879877505 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/118779030 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/1043812711 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3511573123 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.134 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.275 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Late.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Late.anim.meta new file mode 100644 index 000000000..f97d8541b --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Late.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f1bd800b8aff8bb4dbd9cf16869a8659 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Perfect.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Perfect.anim new file mode 100644 index 000000000..216d24ade --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Perfect.anim @@ -0,0 +1,483 @@ +%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: Cameo_Dude1_Left_Perfect + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.073, y: 0.275, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -1, y: 1, z: 1} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/17170028 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/879877505 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/118779030 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/1043812711 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3511573123 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.073 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.275 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Perfect.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Perfect.anim.meta new file mode 100644 index 000000000..edc20b72c --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Left_Perfect.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 38e0b503d84b7d54295805ea053b423c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Early.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Early.anim new file mode 100644 index 000000000..b9e8d545c --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Early.anim @@ -0,0 +1,403 @@ +%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: Cameo_Dude1_Right_Early + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.448, y: 0.275, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/17170028 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/879877505 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/118779030 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/1043812711 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3511573123 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.448 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.275 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Early.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Early.anim.meta new file mode 100644 index 000000000..d555fde10 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Early.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 25671dd3436553f40897ade4d542e718 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Late.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Late.anim new file mode 100644 index 000000000..ffd29c1c7 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Late.anim @@ -0,0 +1,403 @@ +%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: Cameo_Dude1_Right_Late + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -1.152, y: 0.275, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/17170028 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/879877505 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/118779030 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/1043812711 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3511573123 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.152 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.275 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Late.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Late.anim.meta new file mode 100644 index 000000000..e98b8bdea --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Late.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6005ae5829c18d74d9b59dae706f18e3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Perfect.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Perfect.anim new file mode 100644 index 000000000..d6aa014a6 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Perfect.anim @@ -0,0 +1,323 @@ +%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: Cameo_Dude1_Right_Perfect + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/17170028 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/879877505 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/118779030 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/1043812711 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3511573123 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Perfect.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Perfect.anim.meta new file mode 100644 index 000000000..817b0e1ad --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude1_Right_Perfect.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 390c83fcdd86ef64582d21527e2e03c7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Early.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Early.anim new file mode 100644 index 000000000..a8cbc013b --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Early.anim @@ -0,0 +1,513 @@ +%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: Cameo_Dude2_Left_Early + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.466, y: 0.275, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -1, y: 1, z: 1} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 391481022, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Dude/DudeHead + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 2139379831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Dude/DudeTorso + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: Main/17170028 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/879877505 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/118779030 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/1043812711 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3511573123 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/2233913666 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: Main/1175885425 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 391481022, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 2139379831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.016666668 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.466 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.275 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Early.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Early.anim.meta new file mode 100644 index 000000000..3fed7590d --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Early.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6466609eecdbf6b4dab96e9ba2e25bdf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Late.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Late.anim new file mode 100644 index 000000000..f29276dbe --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Late.anim @@ -0,0 +1,513 @@ +%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: Cameo_Dude2_Left_Late + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.134, y: 0.275, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -1, y: 1, z: 1} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 391481022, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Dude/DudeHead + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 2139379831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Dude/DudeTorso + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: Main/17170028 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/879877505 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/118779030 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/1043812711 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3511573123 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/2233913666 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: Main/1175885425 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 391481022, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 2139379831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.016666668 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.134 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.275 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Late.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Late.anim.meta new file mode 100644 index 000000000..cfcdcaf6b --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Late.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 13150681841b6b242a026553966c681c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Perfect.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Perfect.anim new file mode 100644 index 000000000..fb0c3c3cc --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Perfect.anim @@ -0,0 +1,513 @@ +%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: Cameo_Dude2_Left_Perfect + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.073, y: 0.275, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -1, y: 1, z: 1} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 391481022, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Dude/DudeHead + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 2139379831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Dude/DudeTorso + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: Main/17170028 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/879877505 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/118779030 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/1043812711 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3511573123 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/2233913666 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: Main/1175885425 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 391481022, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 2139379831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.016666668 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.073 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.275 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Perfect.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Perfect.anim.meta new file mode 100644 index 000000000..fab5669ff --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Left_Perfect.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0273a24883f82b74f895de711305777a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Early.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Early.anim new file mode 100644 index 000000000..b11e500a4 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Early.anim @@ -0,0 +1,433 @@ +%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: Cameo_Dude2_Right_Early + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.448, y: 0.275, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 391481022, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Dude/DudeHead + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 2139379831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Dude/DudeTorso + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: Main/17170028 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/879877505 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/118779030 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/1043812711 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3511573123 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/2233913666 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: Main/1175885425 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 391481022, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 2139379831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.016666668 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.448 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.275 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Early.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Early.anim.meta new file mode 100644 index 000000000..6e3b2be4c --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Early.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f9f32b9ce57a11841942c6d7c8241920 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Late.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Late.anim new file mode 100644 index 000000000..cb9e926e4 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Late.anim @@ -0,0 +1,433 @@ +%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: Cameo_Dude2_Right_Late + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -1.152, y: 0.275, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Dude + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 391481022, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Dude/DudeHead + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 2139379831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Dude/DudeTorso + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: Main/17170028 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/879877505 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/118779030 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/1043812711 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3511573123 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/2233913666 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: Main/1175885425 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 391481022, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 2139379831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.016666668 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.152 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.275 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Dude + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Late.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Late.anim.meta new file mode 100644 index 000000000..84c19a07e --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Late.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 11848108917ed444991ede7eeff73c91 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Perfect.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Perfect.anim new file mode 100644 index 000000000..45be8ef51 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Perfect.anim @@ -0,0 +1,353 @@ +%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: Cameo_Dude2_Right_Perfect + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 391481022, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Dude/DudeHead + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 2139379831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Dude/DudeTorso + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: Main/17170028 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/879877505 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/118779030 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/1043812711 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3511573123 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/2233913666 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: Main/1175885425 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 391481022, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 2139379831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.016666668 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Perfect.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Perfect.anim.meta new file mode 100644 index 000000000..88d1eea9f --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Dude2_Right_Perfect.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 880c9b3e9bfbc814280992e3d223ea33 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Ghost.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Ghost.anim new file mode 100644 index 000000000..2ea96a497 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Ghost.anim @@ -0,0 +1,323 @@ +%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: Cameo_Ghost + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/17170028 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/879877505 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/118779030 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/1043812711 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3511573123 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Ghost.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Ghost.anim.meta new file mode 100644 index 000000000..34e222d5e --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Ghost.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 987f9e73eeeddab4fbbc1fcbed2ddef4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Early.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Early.anim new file mode 100644 index 000000000..6f790470d --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Early.anim @@ -0,0 +1,498 @@ +%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: Cameo_Girlfriend_Left_Early + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0098, y: 0, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Lady + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -1, y: 1, z: 1} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Lady + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: -1945301481, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Lady/LadyFace + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: Main/3416228192 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/17170028 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/879877505 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3416228192 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/118779030 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/1043812711 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3511573123 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/2854937050 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: -1945301481, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.016666668 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0098 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Early.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Early.anim.meta new file mode 100644 index 000000000..3bc89a211 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Early.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3601d54c6cdd6e046953e0fb232b52e8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Late.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Late.anim new file mode 100644 index 000000000..e2f94977b --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Late.anim @@ -0,0 +1,498 @@ +%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: Cameo_Girlfriend_Left_Late + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.1303, y: 0.0098, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Lady + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -1, y: 1, z: 1} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Lady + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: -1945301481, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Lady/LadyFace + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: Main/745124735 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/745124735 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3874737267 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3114149446 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/745124735 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/43635838 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3017321120 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/918055068 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/307502243 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: -1945301481, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.016666668 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.1303 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0098 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Late.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Late.anim.meta new file mode 100644 index 000000000..803a77430 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Late.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b8e3a903522e1d94997c6abcbff89c96 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Perfect.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Perfect.anim new file mode 100644 index 000000000..a52bf09e1 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Perfect.anim @@ -0,0 +1,483 @@ +%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: Cameo_Girlfriend_Left_Perfect + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0098, y: 0, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Lady + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -1, y: 1, z: 1} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Lady + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/745124735 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/745124735 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3874737267 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3114149446 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/745124735 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/43635838 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3017321120 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/918055068 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0098 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Perfect.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Perfect.anim.meta new file mode 100644 index 000000000..426589127 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Left_Perfect.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1903f46dea5b21341a08fc067f426a28 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Early.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Early.anim new file mode 100644 index 000000000..da760072b --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Early.anim @@ -0,0 +1,338 @@ +%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: Cameo_Girlfriend_Right_Early + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: -1945301481, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Lady/LadyFace + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: Main/43635838 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3114149446 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/918055068 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/745124735 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3017321120 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3874737267 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/307502243 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: -1945301481, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.016666668 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Early.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Early.anim.meta new file mode 100644 index 000000000..8b94c50bf --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Early.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c597b06eaf431a8429efbaffdc462bfc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Late.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Late.anim new file mode 100644 index 000000000..4da113866 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Late.anim @@ -0,0 +1,418 @@ +%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: Cameo_Girlfriend_Right_Late + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -1.14, y: 0.01, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Lady + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: -1945301481, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Main/Cameos/Lady/LadyFace + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: Main/745124735 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/43635838 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3114149446 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/918055068 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/745124735 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3017321120 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3874737267 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/307502243 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: -1945301481, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.016666668 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.14 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.01 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Lady + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Late.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Late.anim.meta new file mode 100644 index 000000000..c2dd37d32 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Late.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fb6a8841021d39d46be39d5cd5cdecf9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Perfect.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Perfect.anim new file mode 100644 index 000000000..d33534a41 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Perfect.anim @@ -0,0 +1,323 @@ +%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: Cameo_Girlfriend_Right_Perfect + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/43635838 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3114149446 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/918055068 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/745124735 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3017321120 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3874737267 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Perfect.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Perfect.anim.meta new file mode 100644 index 000000000..172e7a807 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Girlfriend_Right_Perfect.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a36063dc2af758441a1f6cbbd2e01a73 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Ninja.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Ninja.anim new file mode 100644 index 000000000..1d680b120 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Ninja.anim @@ -0,0 +1,323 @@ +%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: Cameo_Ninja + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/43635838 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3114149446 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/918055068 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/745124735 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3017321120 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3874737267 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Ninja.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Ninja.anim.meta new file mode 100644 index 000000000..9fb0e111d --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Ninja.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5194ebe1ec917134e8244fcf1018c584 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_None.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_None.anim new file mode 100644 index 000000000..c7cb307cd --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_None.anim @@ -0,0 +1,323 @@ +%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: Cameo_None + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/3874737267 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3017321120 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/745124735 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/918055068 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3114149446 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/43635838 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_None.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_None.anim.meta new file mode 100644 index 000000000..ecc7cc1e1 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_None.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0620ddb42d114f841baf0bf7da6f7614 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face22-end.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_PeaceFast.anim similarity index 63% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face22-end.anim rename to Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_PeaceFast.anim index 9e5059af7..8a3e8aefc 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face22-end.anim +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_PeaceFast.anim @@ -6,15 +6,47 @@ AnimationClip: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face22-end + m_Name: Cameo_PeaceFast serializedVersion: 6 m_Legacy: 0 m_Compressed: 0 m_UseHighQualityCurve: 1 m_RotationCurves: [] m_CompressedRotationCurves: [] - m_EulerCurves: [] - m_PositionCurves: [] + m_EulerCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -20.804424} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Peace + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0779, y: -0.1493, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Peace m_ScaleCurves: [] m_FloatCurves: - curve: @@ -22,7 +54,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -32,16 +64,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -51,16 +83,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-0 - classID: 212 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -70,16 +102,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line10-0 - classID: 212 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -89,16 +121,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line09-0 - classID: 212 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -108,16 +140,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line08-0 - classID: 212 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 1 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -127,123 +159,9 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line07-0 - classID: 212 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 9 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line06-0 - classID: 212 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 9 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line05-0 - classID: 212 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 9 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line04-0 - classID: 212 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 9 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line03-0 - classID: 212 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 9 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line02-0 - classID: 212 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 10 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line10-1 - classID: 212 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 script: {fileID: 0} m_PPtrCurves: [] m_SampleRate: 60 @@ -254,88 +172,60 @@ AnimationClip: m_ClipBindingConstant: genericBindings: - serializedVersion: 2 - path: 0 - attribute: 3762991556 + path: Main/3017321120 + attribute: 1 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 4 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3837248189 - attribute: 3762991556 + path: Main/3017321120 + attribute: 4 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 4 + customType: 4 isPPtrCurve: 0 - serializedVersion: 2 - path: 1573507055 - attribute: 3762991556 + path: Main/43635838 + attribute: 2086281974 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 1 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3936654085 - attribute: 3762991556 + path: Main/3114149446 + attribute: 2086281974 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 1 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3949394226 - attribute: 3762991556 + path: Main/918055068 + attribute: 2086281974 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 1 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3761946127 - attribute: 3762991556 + path: Main/745124735 + attribute: 2086281974 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 1 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3791180856 - attribute: 3762991556 + path: Main/3874737267 + attribute: 2086281974 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 1 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3820907105 - attribute: 3762991556 + path: Main/3017321120 + attribute: 2086281974 script: {fileID: 0} - typeID: 212 - customType: 26 - isPPtrCurve: 0 - - serializedVersion: 2 - path: 3799777366 - attribute: 3762991556 - script: {fileID: 0} - typeID: 212 - customType: 26 - isPPtrCurve: 0 - - serializedVersion: 2 - path: 3878885075 - attribute: 3762991556 - script: {fileID: 0} - typeID: 212 - customType: 26 - isPPtrCurve: 0 - - serializedVersion: 2 - path: 3874585828 - attribute: 3762991556 - script: {fileID: 0} - typeID: 212 - customType: 26 - isPPtrCurve: 0 - - serializedVersion: 2 - path: 718208889 - attribute: 3762991556 - script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 1 + customType: 0 isPPtrCurve: 0 pptrCurveMapping: [] m_AnimationClipSettings: @@ -364,7 +254,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -374,16 +264,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -393,16 +283,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-0 - classID: 212 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -412,16 +302,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line10-0 - classID: 212 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -431,16 +321,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line09-0 - classID: 212 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -450,16 +340,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line08-0 - classID: 212 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 1 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -469,16 +359,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line07-0 - classID: 212 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0.0779 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -488,16 +378,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line06-0 - classID: 212 + attribute: m_LocalPosition.x + path: Main/Cameos/Peace + classID: 4 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: -0.1493 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -507,16 +397,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line05-0 - classID: 212 + attribute: m_LocalPosition.y + path: Main/Cameos/Peace + classID: 4 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -526,16 +416,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line04-0 - classID: 212 + attribute: m_LocalPosition.z + path: Main/Cameos/Peace + classID: 4 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -545,16 +435,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line03-0 - classID: 212 + attribute: localEulerAnglesRaw.x + path: Main/Cameos/Peace + classID: 4 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -564,16 +454,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line02-0 - classID: 212 + attribute: localEulerAnglesRaw.y + path: Main/Cameos/Peace + classID: 4 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 10 + value: -20.804424 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -583,11 +473,41 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line10-1 - classID: 212 + attribute: localEulerAnglesRaw.z + path: Main/Cameos/Peace + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.x + path: Main/Cameos/Peace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.y + path: Main/Cameos/Peace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.z + path: Main/Cameos/Peace + classID: 4 script: {fileID: 0} - m_EulerEditorCurves: [] m_HasGenericRootTransform: 0 m_HasMotionFloatCurves: 0 m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_PeaceFast.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_PeaceFast.anim.meta new file mode 100644 index 000000000..5c7867cff --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_PeaceFast.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dfbb1b671c4bf1a4484fdae1d12f84a1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_PeaceSlow.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_PeaceSlow.anim new file mode 100644 index 000000000..0446067d5 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_PeaceSlow.anim @@ -0,0 +1,513 @@ +%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: Cameo_PeaceSlow + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: -59.666092} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Peace + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1884, y: -0.1577, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/Cameos/Peace + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/3017321120 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3017321120 + attribute: 4 + script: {fileID: 0} + typeID: 4 + customType: 4 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3874737267 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3114149446 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/745124735 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/43635838 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3017321120 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/918055068 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1884 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/Cameos/Peace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1577 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/Cameos/Peace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/Cameos/Peace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.x + path: Main/Cameos/Peace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.y + path: Main/Cameos/Peace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -59.666092 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAnglesRaw.z + path: Main/Cameos/Peace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.x + path: Main/Cameos/Peace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.y + path: Main/Cameos/Peace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalEulerAngles.z + path: Main/Cameos/Peace + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_PeaceSlow.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_PeaceSlow.anim.meta new file mode 100644 index 000000000..748de7586 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_PeaceSlow.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 34b9b5c9657f48d49b3bc222c8e04f9f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Rats.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Rats.anim new file mode 100644 index 000000000..6a0d19759 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Rats.anim @@ -0,0 +1,323 @@ +%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: Cameo_Rats + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/918055068 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/43635838 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3114149446 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/745124735 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3017321120 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3874737267 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Rats + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ninjas + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Ghost + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Lady + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Peace + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/Cameos/Dude + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Rats.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Rats.anim.meta new file mode 100644 index 000000000..f95ace8eb --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Cameo_Rats.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d8de496386ce2a34e9361d470bd2e8a5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Early.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Early.anim new file mode 100644 index 000000000..b98408b9c --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Early.anim @@ -0,0 +1,223 @@ +%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: FastCar_Early + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -1.281, y: -0.1727, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/FastCar + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/FastCar + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/2466355065 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/2916934307 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/2466355065 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/FastCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.281 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/FastCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1727 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/FastCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/FastCar + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Early.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Early.anim.meta new file mode 100644 index 000000000..b41e60161 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Early.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8599251da662adc47baf6427999b14cf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Late.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Late.anim new file mode 100644 index 000000000..ade5c69bb --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Late.anim @@ -0,0 +1,223 @@ +%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: FastCar_Late + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.256, y: -0.1727, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/FastCar + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/FastCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/SlowCar + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/3542840568 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3542840568 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/3992322338 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.256 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/FastCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1727 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/FastCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/FastCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/FastCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/SlowCar + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Late.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Late.anim.meta new file mode 100644 index 000000000..2bd85aca2 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Late.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 524b7fbc69a913241a87c1e99b51548d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Perfect.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Perfect.anim new file mode 100644 index 000000000..d7a28b3a2 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Perfect.anim @@ -0,0 +1,143 @@ +%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: FastCar_Perfect + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/FastCar + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/2916934307 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/2466355065 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/FastCar + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Perfect.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Perfect.anim.meta new file mode 100644 index 000000000..ce4a0ab4a --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/FastCar_Perfect.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8c21251edce7f5b4787b8f7a9fb2eda7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re00.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Hide.anim similarity index 90% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re00.anim rename to Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Hide.anim index 30425959d..580987315 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re00.anim +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Hide.anim @@ -6,7 +6,7 @@ AnimationClip: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-re00 + m_Name: Hide serializedVersion: 6 m_Legacy: 0 m_Compressed: 0 @@ -32,9 +32,9 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 + attribute: m_IsActive + path: Main + classID: 1 script: {fileID: 0} m_PPtrCurves: [] m_SampleRate: 60 @@ -45,11 +45,11 @@ AnimationClip: m_ClipBindingConstant: genericBindings: - serializedVersion: 2 - path: 0 - attribute: 3762991556 + path: 521822810 + attribute: 2086281974 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 1 + customType: 0 isPPtrCurve: 0 pptrCurveMapping: [] m_AnimationClipSettings: @@ -88,9 +88,9 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 + attribute: m_IsActive + path: Main + classID: 1 script: {fileID: 0} m_EulerEditorCurves: [] m_HasGenericRootTransform: 0 diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Hide.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Hide.anim.meta new file mode 100644 index 000000000..b34311c77 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Hide.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7a079b1fd6ed31345873265e04d5c3e2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/NoCar.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/NoCar.anim new file mode 100644 index 000000000..9dce637ea --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/NoCar.anim @@ -0,0 +1,143 @@ +%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: NoCar + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/FastCar + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/2916934307 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/2466355065 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/FastCar + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/NoCar.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/NoCar.anim.meta new file mode 100644 index 000000000..1f5ecc9ac --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/NoCar.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b915f1e87ffdc5b49870a301a9608b45 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Photograph.controller b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Photograph.controller new file mode 100644 index 000000000..4a6be16e9 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Photograph.controller @@ -0,0 +1,1062 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-8266953201363717242 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: FastCar_Perfect + 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: 8c21251edce7f5b4787b8f7a9fb2eda7, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-8055115649658983903 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Girlfriend_Right_Early + 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: c597b06eaf431a8429efbaffdc462bfc, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-7838375071814901148 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Dude2_Right_Perfect + 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: 880c9b3e9bfbc814280992e3d223ea33, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-7471347070191979190 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Dude1_Left_Perfect + 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: 38e0b503d84b7d54295805ea053b423c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-6711106781137393026 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Dude1_Right_Perfect + 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: 390c83fcdd86ef64582d21527e2e03c7, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-5271479607785960600 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Girlfriend_Left_Perfect + 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: 1903f46dea5b21341a08fc067f426a28, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-4977711034173994337 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Dude2_Left_Perfect + 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: 0273a24883f82b74f895de711305777a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-4828395407513924285 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SlowCar_Late + 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: 2fc139f28ee9eb5438aac3b1f2de50f0, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-4802111682009441860 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Hide + 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: 7a079b1fd6ed31345873265e04d5c3e2, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-4748114365400710391 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: FastCar_Early + 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: 8599251da662adc47baf6427999b14cf, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-2996485469751170853 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_None + 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: 0620ddb42d114f841baf0bf7da6f7614, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-2880949416984677954 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Dude2_Left_Late + 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: 13150681841b6b242a026553966c681c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-2813679201544999426 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Dude2_Left_Early + 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: 6466609eecdbf6b4dab96e9ba2e25bdf, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-2365819961839258333 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Dude1_Left_Late + 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: f1bd800b8aff8bb4dbd9cf16869a8659, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-2032763715629415095 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_PeaceSlow + 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: 34b9b5c9657f48d49b3bc222c8e04f9f, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-443891321005241909 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_PeaceFast + 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: dfbb1b671c4bf1a4484fdae1d12f84a1, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-133345440954136745 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Dude2_Right_Early + 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: f9f32b9ce57a11841942c6d7c8241920, 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: Photograph + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Car + m_StateMachine: {fileID: 3719327883120564395} + 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} + - serializedVersion: 5 + m_Name: Cameo + m_StateMachine: {fileID: 4997592197412277812} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: ShowHide + m_StateMachine: {fileID: 2671496232540653052} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &258637531003299300 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Girlfriend_Left_Early + 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: 3601d54c6cdd6e046953e0fb232b52e8, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &937211028999492337 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SlowCar_Perfect + 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: a91616ca6c0f33642885946aaf47d646, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1101473053570538468 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Dude2_Right_Late + 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: 11848108917ed444991ede7eeff73c91, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1881320622117444006 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Dude1_Right_Late + 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: 6005ae5829c18d74d9b59dae706f18e3, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &2671496232540653052 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: ShowHide + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 5422443035584484120} + m_Position: {x: 30, y: 210, z: 0} + - serializedVersion: 1 + m_State: {fileID: -4802111682009441860} + m_Position: {x: 30, y: 160, 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: 50, y: 260, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -4802111682009441860} +--- !u!1102 &2722309014770445180 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Ghost + 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: 987f9e73eeeddab4fbbc1fcbed2ddef4, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &2796132305401112266 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Dude1_Left_Early + 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: 777036f41198e1c47ad7dafef90be97a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &2898739633247706664 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Dude1_Right_Early + 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: 25671dd3436553f40897ade4d542e718, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &3392239154903187432 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SlowCar_Early + 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: 3ffed88d39f3c66419dcac7529635bdb, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &3719327883120564395 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Car + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 4439577784671164223} + m_Position: {x: 490, y: 230, z: 0} + - serializedVersion: 1 + m_State: {fileID: 937211028999492337} + m_Position: {x: 280, y: 180, z: 0} + - serializedVersion: 1 + m_State: {fileID: 3392239154903187432} + m_Position: {x: 70, y: 180, z: 0} + - serializedVersion: 1 + m_State: {fileID: -4828395407513924285} + m_Position: {x: 490, y: 180, z: 0} + - serializedVersion: 1 + m_State: {fileID: 5320058107931723041} + m_Position: {x: 280, y: 130, z: 0} + - serializedVersion: 1 + m_State: {fileID: -8266953201363717242} + m_Position: {x: 280, y: 230, z: 0} + - serializedVersion: 1 + m_State: {fileID: -4748114365400710391} + m_Position: {x: 70, y: 230, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 300, y: 90, z: 0} + m_EntryPosition: {x: 90, y: 140, z: 0} + m_ExitPosition: {x: 510, y: 140, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 5320058107931723041} +--- !u!1102 &4439577784671164223 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: FastCar_Late + 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: 524b7fbc69a913241a87c1e99b51548d, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &4878605649650963358 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Girlfriend_Right_Perfect + 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: a36063dc2af758441a1f6cbbd2e01a73, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &4997592197412277812 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 2796132305401112266} + m_Position: {x: 200, y: 200, z: 0} + - serializedVersion: 1 + m_State: {fileID: -2365819961839258333} + m_Position: {x: 620, y: 200, z: 0} + - serializedVersion: 1 + m_State: {fileID: -7471347070191979190} + m_Position: {x: 410, y: 200, z: 0} + - serializedVersion: 1 + m_State: {fileID: 2898739633247706664} + m_Position: {x: 200, y: 150, z: 0} + - serializedVersion: 1 + m_State: {fileID: 1881320622117444006} + m_Position: {x: 620, y: 150, z: 0} + - serializedVersion: 1 + m_State: {fileID: -6711106781137393026} + m_Position: {x: 410, y: 150, z: 0} + - serializedVersion: 1 + m_State: {fileID: -2813679201544999426} + m_Position: {x: 200, y: 300, z: 0} + - serializedVersion: 1 + m_State: {fileID: -2880949416984677954} + m_Position: {x: 620, y: 300, z: 0} + - serializedVersion: 1 + m_State: {fileID: -4977711034173994337} + m_Position: {x: 410, y: 300, z: 0} + - serializedVersion: 1 + m_State: {fileID: -133345440954136745} + m_Position: {x: 200, y: 250, z: 0} + - serializedVersion: 1 + m_State: {fileID: 1101473053570538468} + m_Position: {x: 620, y: 250, z: 0} + - serializedVersion: 1 + m_State: {fileID: -7838375071814901148} + m_Position: {x: 410, y: 250, z: 0} + - serializedVersion: 1 + m_State: {fileID: 2722309014770445180} + m_Position: {x: 410, y: -50, z: 0} + - serializedVersion: 1 + m_State: {fileID: 258637531003299300} + m_Position: {x: 200, y: 100, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6552354615940309504} + m_Position: {x: 620, y: 100, z: 0} + - serializedVersion: 1 + m_State: {fileID: -5271479607785960600} + m_Position: {x: 410, y: 100, z: 0} + - serializedVersion: 1 + m_State: {fileID: -8055115649658983903} + m_Position: {x: 200, y: 50, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6533085377993449370} + m_Position: {x: 620, y: 50, z: 0} + - serializedVersion: 1 + m_State: {fileID: 4878605649650963358} + m_Position: {x: 410, y: 50, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8854649544322544905} + m_Position: {x: 200, y: -50, z: 0} + - serializedVersion: 1 + m_State: {fileID: -2996485469751170853} + m_Position: {x: 410, y: -100, z: 0} + - serializedVersion: 1 + m_State: {fileID: -443891321005241909} + m_Position: {x: 510, y: 0, z: 0} + - serializedVersion: 1 + m_State: {fileID: -2032763715629415095} + m_Position: {x: 300, y: 0, z: 0} + - serializedVersion: 1 + m_State: {fileID: 5379938235940764540} + m_Position: {x: 620, y: -50, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 430, y: -180, z: 0} + m_EntryPosition: {x: 430, y: -140, z: 0} + m_ExitPosition: {x: 430, y: 350, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -2996485469751170853} +--- !u!1102 &5320058107931723041 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: NoCar + 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: b915f1e87ffdc5b49870a301a9608b45, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &5379938235940764540 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Rats + 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: d8de496386ce2a34e9361d470bd2e8a5, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &5422443035584484120 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Show + 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: 15a03ff91d515fa4aaae2b519429219b, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &6533085377993449370 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Girlfriend_Right_Late + 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: fb6a8841021d39d46be39d5cd5cdecf9, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &6552354615940309504 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Girlfriend_Left_Late + 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: b8e3a903522e1d94997c6abcbff89c96, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8854649544322544905 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Cameo_Ninja + 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: 5194ebe1ec917134e8244fcf1018c584, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Photograph.controller.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Photograph.controller.meta new file mode 100644 index 000000000..d3d0013f7 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Photograph.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cb8f66b88796da944bd20dfe69f106cc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun00.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Show.anim similarity index 88% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun00.anim rename to Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Show.anim index 6d312c566..dc7e83343 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun00.anim +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Show.anim @@ -6,7 +6,7 @@ AnimationClip: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-sun00 + m_Name: Show serializedVersion: 6 m_Legacy: 0 m_Compressed: 0 @@ -22,7 +22,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0 + value: 1 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -32,9 +32,9 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 + attribute: m_IsActive + path: Main + classID: 1 script: {fileID: 0} m_PPtrCurves: [] m_SampleRate: 60 @@ -45,11 +45,11 @@ AnimationClip: m_ClipBindingConstant: genericBindings: - serializedVersion: 2 - path: 0 - attribute: 3762991556 + path: 521822810 + attribute: 2086281974 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 1 + customType: 0 isPPtrCurve: 0 pptrCurveMapping: [] m_AnimationClipSettings: @@ -78,7 +78,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0 + value: 1 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -88,9 +88,9 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 + attribute: m_IsActive + path: Main + classID: 1 script: {fileID: 0} m_EulerEditorCurves: [] m_HasGenericRootTransform: 0 diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Show.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Show.anim.meta new file mode 100644 index 000000000..c56b6e344 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/Show.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 15a03ff91d515fa4aaae2b519429219b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Early.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Early.anim new file mode 100644 index 000000000..950f72aa6 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Early.anim @@ -0,0 +1,223 @@ +%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: SlowCar_Early + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.861, y: -0.161, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/SlowCar + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/FastCar + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/2916934307 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/2916934307 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/2466355065 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.861 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Main/SlowCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.161 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/SlowCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/SlowCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/FastCar + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Early.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Early.anim.meta new file mode 100644 index 000000000..8f772a937 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Early.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3ffed88d39f3c66419dcac7529635bdb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma03-end.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Late.anim similarity index 66% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma03-end.anim rename to Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Late.anim index b7057cd75..a807d3122 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma03-end.anim +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Late.anim @@ -6,7 +6,7 @@ AnimationClip: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-comma03-end + m_Name: SlowCar_Late serializedVersion: 6 m_Legacy: 0 m_Compressed: 0 @@ -14,7 +14,23 @@ AnimationClip: m_RotationCurves: [] m_CompressedRotationCurves: [] m_EulerCurves: [] - m_PositionCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.89, y: -0.161, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Main/SlowCar m_ScaleCurves: [] m_FloatCurves: - curve: @@ -22,7 +38,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -32,16 +48,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 + attribute: m_IsActive + path: Main/FastCar + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 1 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -51,28 +67,9 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-0 - classID: 212 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 10 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-1 - classID: 212 + attribute: m_IsActive + path: Main/SlowCar + classID: 1 script: {fileID: 0} m_PPtrCurves: [] m_SampleRate: 60 @@ -83,25 +80,25 @@ AnimationClip: m_ClipBindingConstant: genericBindings: - serializedVersion: 2 - path: 0 - attribute: 3762991556 + path: Main/2916934307 + attribute: 1 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 4 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3837248189 - attribute: 3762991556 + path: Main/2466355065 + attribute: 2086281974 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 1 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 2477847083 - attribute: 3762991556 + path: Main/2916934307 + attribute: 2086281974 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 1 + customType: 0 isPPtrCurve: 0 pptrCurveMapping: [] m_AnimationClipSettings: @@ -130,7 +127,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -140,16 +137,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 + attribute: m_IsActive + path: Main/FastCar + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 1 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -159,16 +156,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-0 - classID: 212 + attribute: m_IsActive + path: Main/SlowCar + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 10 + value: 0.89 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -178,9 +175,47 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-1 - classID: 212 + attribute: m_LocalPosition.x + path: Main/SlowCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.161 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Main/SlowCar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Main/SlowCar + classID: 4 script: {fileID: 0} m_EulerEditorCurves: [] m_HasGenericRootTransform: 0 diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Late.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Late.anim.meta new file mode 100644 index 000000000..5e24d2ac3 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Late.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2fc139f28ee9eb5438aac3b1f2de50f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Perfect.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Perfect.anim new file mode 100644 index 000000000..a2df9d1f2 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Perfect.anim @@ -0,0 +1,143 @@ +%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: SlowCar_Perfect + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/FastCar + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: Main/2916934307 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: Main/2466355065 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/SlowCar + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Main/FastCar + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Perfect.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Perfect.anim.meta new file mode 100644 index 000000000..56bca06dc --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Photograph/SlowCar_Perfect.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a91616ca6c0f33642885946aaf47d646 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result.meta new file mode 100644 index 000000000..14c2def1f --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a35113ce42cb1b34db5f438cd1691290 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Batsu.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Batsu.anim new file mode 100644 index 000000000..ed77ca01f --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Batsu.anim @@ -0,0 +1,323 @@ +%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: Batsu + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsDown + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsSide + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsUp + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Batsu + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Sankaku + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Maru + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 2735966062 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2624392416 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 909315156 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3041778619 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2499051719 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1965352971 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsDown + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsSide + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsUp + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Batsu + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Sankaku + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Maru + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Batsu.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Batsu.anim.meta new file mode 100644 index 000000000..81cd92f6a --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Batsu.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8890b7d68968ff148885d72ae2e14308 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Maru.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Maru.anim new file mode 100644 index 000000000..45248a5a2 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Maru.anim @@ -0,0 +1,323 @@ +%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: Maru + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsDown + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsSide + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Batsu + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsUp + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Sankaku + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Maru + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 2735966062 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2624392416 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3041778619 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 909315156 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2499051719 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1965352971 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsDown + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsSide + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Batsu + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsUp + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Sankaku + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Maru + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Maru.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Maru.anim.meta new file mode 100644 index 000000000..17da31c79 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Maru.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e837aad0f79c1fb4580a0ca9b7ede154 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/None.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/None.anim new file mode 100644 index 000000000..3b324d42b --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/None.anim @@ -0,0 +1,323 @@ +%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: None + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsUp + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsDown + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsSide + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Batsu + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Sankaku + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Maru + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 909315156 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2735966062 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2624392416 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3041778619 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2499051719 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1965352971 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsUp + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsDown + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsSide + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Batsu + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Sankaku + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Maru + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/None.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/None.anim.meta new file mode 100644 index 000000000..d58e48c2f --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/None.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f030b911912e1547bcad24f6390cb20 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Result.controller b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Result.controller new file mode 100644 index 000000000..628e3c41c --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Result.controller @@ -0,0 +1,246 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-6541162392566490476 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: ThumbsDown + 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: ac93daca66877fe47bbe40a62180421c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-5967171921612791427 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: ThumbsUp + 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: a73f982772034d54eb69c447b6846b4d, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-3349041404182314076 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: ThumbsSide + 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: 66c56cd3c3f5ca84fb1ba10879a4ed2b, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-1017183949513949545 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Sankaku + 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: debed0a4cc448d946aa1eb4b70e1526d, 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: Result + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 7145701007548227426} + 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 &1564264130775434883 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Maru + 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: e837aad0f79c1fb4580a0ca9b7ede154, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1996676648250849895 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: None + 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: 6f030b911912e1547bcad24f6390cb20, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &3780505493721041684 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Batsu + 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: 8890b7d68968ff148885d72ae2e14308, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &7145701007548227426 +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: 1996676648250849895} + m_Position: {x: 339.25235, y: 2.1167908, z: 0} + - serializedVersion: 1 + m_State: {fileID: 3780505493721041684} + m_Position: {x: 340, y: 50, z: 0} + - serializedVersion: 1 + m_State: {fileID: 1564264130775434883} + m_Position: {x: 130, y: 50, z: 0} + - serializedVersion: 1 + m_State: {fileID: -1017183949513949545} + m_Position: {x: 550, y: 50, z: 0} + - serializedVersion: 1 + m_State: {fileID: -6541162392566490476} + m_Position: {x: 340, y: 100, z: 0} + - serializedVersion: 1 + m_State: {fileID: -5967171921612791427} + m_Position: {x: 130, y: 100, z: 0} + - serializedVersion: 1 + m_State: {fileID: -3349041404182314076} + m_Position: {x: 550, y: 100, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 190, y: -40, z: 0} + m_EntryPosition: {x: 360, y: -40, z: 0} + m_ExitPosition: {x: 530, y: -40, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1996676648250849895} diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Result.controller.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Result.controller.meta new file mode 100644 index 000000000..87e059915 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Result.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e0f2568bfdac1194dbd4108bd8a0a494 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Sankaku.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Sankaku.anim new file mode 100644 index 000000000..6ff9275b7 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Sankaku.anim @@ -0,0 +1,323 @@ +%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: Sankaku + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsDown + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsSide + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Batsu + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsUp + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Sankaku + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Maru + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 2735966062 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2624392416 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3041778619 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 909315156 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2499051719 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1965352971 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsDown + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsSide + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Batsu + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsUp + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Sankaku + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Maru + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Sankaku.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Sankaku.anim.meta new file mode 100644 index 000000000..87156b993 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/Sankaku.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: debed0a4cc448d946aa1eb4b70e1526d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsDown.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsDown.anim new file mode 100644 index 000000000..70759e6a0 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsDown.anim @@ -0,0 +1,359 @@ +%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: ThumbsDown + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.13333334 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsDown + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsSide + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Batsu + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsUp + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Sankaku + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Maru + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 2735966062 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2624392416 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3041778619 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 909315156 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2499051719 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1965352971 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.13333334 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.13333334 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsDown + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsSide + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Batsu + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsUp + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Sankaku + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Maru + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsDown.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsDown.anim.meta new file mode 100644 index 000000000..46a963841 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsDown.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ac93daca66877fe47bbe40a62180421c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsSide.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsSide.anim new file mode 100644 index 000000000..9effd1a3b --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsSide.anim @@ -0,0 +1,359 @@ +%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: ThumbsSide + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsDown + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.13333334 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsSide + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Batsu + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsUp + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Sankaku + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Maru + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 2735966062 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2624392416 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3041778619 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 909315156 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2499051719 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1965352971 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.13333334 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsDown + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.13333334 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsSide + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Batsu + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsUp + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Sankaku + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Maru + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsSide.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsSide.anim.meta new file mode 100644 index 000000000..c1c0e7c05 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsSide.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 66c56cd3c3f5ca84fb1ba10879a4ed2b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsUp.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsUp.anim new file mode 100644 index 000000000..c2a509091 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsUp.anim @@ -0,0 +1,359 @@ +%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: ThumbsUp + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsDown + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsSide + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Batsu + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.13333334 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsUp + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Sankaku + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Maru + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 2735966062 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2624392416 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3041778619 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 909315156 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2499051719 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1965352971 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.13333334 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsDown + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsSide + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Batsu + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.06666667 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.13333334 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Thumbs/ThumbsUp + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Sankaku + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Symbols/Maru + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsUp.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsUp.anim.meta new file mode 100644 index 000000000..33b20a1d9 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Result/ThumbsUp.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a73f982772034d54eb69c447b6846b4d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter.meta new file mode 100644 index 000000000..6e273c9a1 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b3bdb47bccb37bc43a821c8a77830f20 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara00.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Hold.anim similarity index 63% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara00.anim rename to Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Hold.anim index 3ea4620a0..575e9a22e 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara00.anim +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Hold.anim @@ -6,7 +6,7 @@ AnimationClip: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-chikara00 + m_Name: Hold serializedVersion: 6 m_Legacy: 0 m_Compressed: 0 @@ -15,27 +15,24 @@ AnimationClip: m_CompressedRotationCurves: [] m_EulerCurves: [] m_PositionCurves: [] - m_ScaleCurves: [] - m_FloatCurves: + m_ScaleCurves: - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 + value: {x: 6, y: 6, z: 6} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 weightedMode: 0 - inWeight: 0 - outWeight: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 - script: {fileID: 0} + path: Mask + m_FloatCurves: [] m_PPtrCurves: [] m_SampleRate: 60 m_WrapMode: 0 @@ -45,11 +42,11 @@ AnimationClip: m_ClipBindingConstant: genericBindings: - serializedVersion: 2 - path: 0 - attribute: 3762991556 + path: 3747441678 + attribute: 3 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 4 + customType: 0 isPPtrCurve: 0 pptrCurveMapping: [] m_AnimationClipSettings: @@ -78,7 +75,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0 + value: 6 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -88,9 +85,47 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 + attribute: m_LocalScale.x + path: Mask + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: Mask + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: Mask + classID: 4 script: {fileID: 0} m_EulerEditorCurves: [] m_HasGenericRootTransform: 0 diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Hold.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Hold.anim.meta new file mode 100644 index 000000000..37c4631c9 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Hold.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e339f3a0998da504ba7db68225be53e2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Shut.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Shut.anim new file mode 100644 index 000000000..d337af1fa --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Shut.anim @@ -0,0 +1,313 @@ +%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: Shut + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: 1} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.6395, y: 0.6395, z: 1} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.083333336 + value: {x: 1.12, y: 1.12, z: 1} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: 2.24, y: 2.55, z: 1} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.11666667 + value: {x: 4.4, y: 2.55, z: 1} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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: 6, y: 6, z: 6} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0, z: 0} + outWeight: {x: 0, y: 0, z: 0} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Mask + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 3747441678 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.13333334 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.6395 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 1.12 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 2.24 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.11666667 + value: 4.4 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 6 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: Mask + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.6395 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 1.12 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 2.55 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.11666667 + value: 2.55 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 6 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: Mask + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.083333336 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.11666667 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 6 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: Mask + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Shut.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Shut.anim.meta new file mode 100644 index 000000000..611d8c7ad --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Shut.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 407e516b5eed2a34386d849f7aa517a6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Shutter.controller b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Shutter.controller new file mode 100644 index 000000000..ab249d714 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Shutter.controller @@ -0,0 +1,101 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-1431191531181273437 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Shut + 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: 407e516b5eed2a34386d849f7aa517a6, 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: Shutter + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 6118732391967309815} + 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 &2921760821086316599 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Hold + 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: e339f3a0998da504ba7db68225be53e2, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &6118732391967309815 +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: -1431191531181273437} + m_Position: {x: 250, y: 60, z: 0} + - serializedVersion: 1 + m_State: {fileID: 2921760821086316599} + m_Position: {x: 250, y: 110, 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: 2921760821086316599} diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Shutter.controller.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Shutter.controller.meta new file mode 100644 index 000000000..d91bfed87 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Shutter/Shutter.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0fe33399f7aef9e4081d9fbe91fa0dc1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker.meta new file mode 100644 index 000000000..674a3ed49 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5996a63ebbcc24f41ad1619a39e4d696 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Bop.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Bop.anim new file mode 100644 index 000000000..7d984e31c --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Bop.anim @@ -0,0 +1,1613 @@ +%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: Bop + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0403, y: -0.095, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: -0.0403, y: -0.02486, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: -0.0403, y: 0.055, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: -0.0403, y: 0.085, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.0403, y: 0.125, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.0403, y: 0.17506, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Girlfriend/LadyFace + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1553, y: -0.4602, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: -0.1553, y: -0.3999, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: -0.1553, y: -0.3296, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: -0.1553, y: -0.3098, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.1553, y: -0.2803, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.1553, y: -0.23987, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Girlfriend/LadyBosom + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1249, y: -1.27, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: -0.1249, y: -1.22, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: -0.1249, y: -1.15985, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: -0.1249, y: -1.14988, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.1249, y: -1.13992, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.1249, y: -1.1201, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Girlfriend/LadyWaist + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.05966, y: -1.11975, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: -0.05966, y: -1.05997, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: -0.05966, y: -0.9894, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: -0.05966, y: -0.9704, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.05966, y: -0.9402, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.05966, y: -0.9, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Girlfriend/LadyArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1, y: 0.3999, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: -0.1, y: 0.4696, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: -0.1, y: 0.5399, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: -0.1, y: 0.56, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.1, y: 0.59, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.1, y: 0.6301, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Dude/DudeHead + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.2603, y: -0.9002, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.05 + value: {x: -0.2603, y: -0.8499, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1 + value: {x: -0.2603, y: -0.79, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.15 + value: {x: -0.2603, y: -0.78, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + 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.2603, y: -0.77022, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.25 + value: {x: -0.2603, y: -0.75, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: Infinity, y: Infinity, z: Infinity} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Dude/DudeTorso + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 2308920095 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2669083335 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1147422269 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3221943754 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3013029107 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4198933654 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.25 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0403 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.0403 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.0403 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.0403 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0403 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.0403 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Girlfriend/LadyFace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.095 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.02486 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.055 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.085 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.125 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.17506 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Girlfriend/LadyFace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Girlfriend/LadyFace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1553 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.1553 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.1553 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.1553 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.1553 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.1553 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Girlfriend/LadyBosom + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.4602 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.3999 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.3296 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.3098 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.2803 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.23987 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Girlfriend/LadyBosom + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Girlfriend/LadyBosom + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1249 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.1249 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.1249 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.1249 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.1249 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.1249 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Girlfriend/LadyWaist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.27 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -1.22 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -1.15985 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -1.14988 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -1.13992 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -1.1201 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Girlfriend/LadyWaist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Girlfriend/LadyWaist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05966 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.05966 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.05966 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.05966 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.05966 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.05966 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Girlfriend/LadyArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.11975 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -1.05997 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.9894 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.9704 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.9402 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.9 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Girlfriend/LadyArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Girlfriend/LadyArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Dude/DudeHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3999 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0.4696 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.5399 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0.56 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.59 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0.6301 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Dude/DudeHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Dude/DudeHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2603 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.2603 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.2603 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.2603 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.2603 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.2603 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Dude/DudeTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9002 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: -0.8499 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.79 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: -0.78 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.77022 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: -0.75 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Dude/DudeTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.05 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.15 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.25 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Dude/DudeTorso + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Bop.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Bop.anim.meta new file mode 100644 index 000000000..0312138f0 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Bop.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9a79b7dc54f36f049ad9d8bf46b5b582 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re04-end.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Dude1.anim similarity index 66% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re04-end.anim rename to Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Dude1.anim index 97e3a1148..6609e118d 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re04-end.anim +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Dude1.anim @@ -6,7 +6,7 @@ AnimationClip: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-re04-end + m_Name: Dude1 serializedVersion: 6 m_Legacy: 0 m_Compressed: 0 @@ -22,7 +22,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8 + value: 1 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -32,16 +32,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 + attribute: m_IsActive + path: Dude + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -51,30 +51,25 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-0 + attribute: m_IsActive + path: Girlfriend + classID: 1 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 8396014, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Dude/DudeHead classID: 212 script: {fileID: 0} - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 10 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-1 + - time: 0 + value: {fileID: -1413667912, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Dude/DudeTorso classID: 212 script: {fileID: 0} - m_PPtrCurves: [] m_SampleRate: 60 m_WrapMode: 0 m_Bounds: @@ -83,33 +78,42 @@ AnimationClip: m_ClipBindingConstant: genericBindings: - serializedVersion: 2 - path: 0 - attribute: 3762991556 + path: 1531019705 + attribute: 2086281974 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 1 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 3837248189 - attribute: 3762991556 + path: 694419182 + attribute: 2086281974 script: {fileID: 0} - typeID: 212 - customType: 26 + typeID: 1 + customType: 0 isPPtrCurve: 0 - serializedVersion: 2 - path: 2477847083 - attribute: 3762991556 + path: 3013029107 + attribute: 0 script: {fileID: 0} typeID: 212 - customType: 26 - isPPtrCurve: 0 - pptrCurveMapping: [] + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 4198933654 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 8396014, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: -1413667912, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} m_AnimationClipSettings: serializedVersion: 2 m_AdditiveReferencePoseClip: {fileID: 0} m_AdditiveReferencePoseTime: 0 m_StartTime: 0 - m_StopTime: 0 + m_StopTime: 0.016666668 m_OrientationOffsetY: 0 m_Level: 0 m_CycleOffset: 0 @@ -130,7 +134,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8 + value: 1 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -140,16 +144,16 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 + attribute: m_IsActive + path: Dude + classID: 1 script: {fileID: 0} - curve: serializedVersion: 2 m_Curve: - serializedVersion: 3 time: 0 - value: 9 + value: 0 inSlope: Infinity outSlope: Infinity tangentMode: 103 @@ -159,28 +163,9 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-0 - classID: 212 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 10 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: character/line01-1 - classID: 212 + attribute: m_IsActive + path: Girlfriend + classID: 1 script: {fileID: 0} m_EulerEditorCurves: [] m_HasGenericRootTransform: 0 diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Dude1.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Dude1.anim.meta new file mode 100644 index 000000000..fc276e8bd --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Dude1.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ba9f38f38cceb174cb33b017c8d35306 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Dude2.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Dude2.anim new file mode 100644 index 000000000..18f9b0859 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Dude2.anim @@ -0,0 +1,173 @@ +%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: Dude2 + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Girlfriend + classID: 1 + script: {fileID: 0} + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 391481022, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Dude/DudeHead + classID: 212 + script: {fileID: 0} + - curve: + - time: 0 + value: {fileID: 2139379831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + attribute: m_Sprite + path: Dude/DudeTorso + classID: 212 + script: {fileID: 0} + m_SampleRate: 60 + 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: 1531019705 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 694419182 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3013029107 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + - serializedVersion: 2 + path: 4198933654 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 391481022, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + - {fileID: 2139379831, guid: 9326ee16356c9d24dafb2641e615c517, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.016666668 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Dude + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Girlfriend + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Dude2.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Dude2.anim.meta new file mode 100644 index 000000000..ffdd58ebf --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Dude2.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 00972feb143ff094f8e5b439e485e41c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/EnterLeft.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/EnterLeft.anim new file mode 100644 index 000000000..bc5250e4c --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/EnterLeft.anim @@ -0,0 +1,249 @@ +%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: EnterLeft + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -6.633, y: 0, z: 0} + inSlope: {x: Infinity, y: Infinity, z: Infinity} + outSlope: {x: 12.19, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -0.538, y: 0, z: 0} + inSlope: {x: 12.19, y: -0, z: -0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -1, y: 1, z: 1} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 0 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.5 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -6.633 + inSlope: Infinity + outSlope: 12.19 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.538 + inSlope: 12.19 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: 0 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: 0 + tangentMode: 71 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/EnterLeft.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/EnterLeft.anim.meta new file mode 100644 index 000000000..369c65fe2 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/EnterLeft.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 946c4c3a102ce0440b800aefcdb33bf8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/EnterRight.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/EnterRight.anim new file mode 100644 index 000000000..20d600a8c --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/EnterRight.anim @@ -0,0 +1,249 @@ +%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: EnterRight + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: 0} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: -12.112, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: -6.056, y: 0, z: 0} + inSlope: {x: -12.112, y: -0, z: -0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_ScaleCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1, y: 1, z: 1} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 0 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 3 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.5 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: -12.112 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -6.056 + inSlope: -12.112 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: -0 + outSlope: 0 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.x + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.y + path: + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalScale.z + path: + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 1 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/EnterRight.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/EnterRight.anim.meta new file mode 100644 index 000000000..a56edd517 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/EnterRight.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 06e4358a850c8f04e9c62ed389eed1f3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Girlfriend.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Girlfriend.anim new file mode 100644 index 000000000..e6fa3ab23 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Girlfriend.anim @@ -0,0 +1,143 @@ +%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: Girlfriend + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Girlfriend + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Dude + classID: 1 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 694419182 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1531019705 + attribute: 2086281974 + script: {fileID: 0} + typeID: 1 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Girlfriend + classID: 1 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_IsActive + path: Dude + classID: 1 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Girlfriend.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Girlfriend.anim.meta new file mode 100644 index 000000000..ef34d6374 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Girlfriend.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ef571941af0dc464d92bdad898287ca9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Idle.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Idle.anim new file mode 100644 index 000000000..d4d9b1172 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Idle.anim @@ -0,0 +1,533 @@ +%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: Idle + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1, y: 0.6301, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Dude/DudeHead + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.2603, y: -0.75, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Dude/DudeTorso + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.05966, y: -0.9, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Girlfriend/LadyArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1553, y: -0.23987, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Girlfriend/LadyBosom + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0403, y: 0.17506, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Girlfriend/LadyFace + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1249, y: -1.1201, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: Infinity, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Girlfriend/LadyWaist + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 60 + 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: 3013029107 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4198933654 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3221943754 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2669083335 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2308920095 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1147422269 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0 + 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: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Dude/DudeHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6301 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Dude/DudeHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Dude/DudeHead + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2603 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Dude/DudeTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.75 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Dude/DudeTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Dude/DudeTorso + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05966 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Girlfriend/LadyArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Girlfriend/LadyArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Girlfriend/LadyArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1553 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Girlfriend/LadyBosom + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23987 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Girlfriend/LadyBosom + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Girlfriend/LadyBosom + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0403 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Girlfriend/LadyFace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17506 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Girlfriend/LadyFace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Girlfriend/LadyFace + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1249 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Girlfriend/LadyWaist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.1201 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Girlfriend/LadyWaist + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: Infinity + outSlope: Infinity + tangentMode: 103 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Girlfriend/LadyWaist + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Idle.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Idle.anim.meta new file mode 100644 index 000000000..9b82d68c7 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Idle.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 30a09d6ad930d854a9bca26f9ad4a7a7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Stay.anim b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Stay.anim new file mode 100644 index 000000000..076221312 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Stay.anim @@ -0,0 +1,53 @@ +%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: Stay + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 60 + 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 + 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/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Stay.anim.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Stay.anim.meta new file mode 100644 index 000000000..074385942 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Stay.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 39e02ce1e77b5d14aa7610c755b8485b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Walker.controller b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Walker.controller new file mode 100644 index 000000000..cc2c01c1b --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Walker.controller @@ -0,0 +1,337 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1107 &-7968397644140462910 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Character + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -9128562790540173} + m_Position: {x: 250.73654, y: 120.9996, z: 0} + - serializedVersion: 1 + m_State: {fileID: 2391335969477961234} + m_Position: {x: 250, y: 170, z: 0} + - serializedVersion: 1 + m_State: {fileID: 3027760835864339403} + m_Position: {x: 250, y: 220, 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: -9128562790540173} +--- !u!1102 &-7127940400383127624 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: EnterLeft + 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: 946c4c3a102ce0440b800aefcdb33bf8, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-6741864445286895246 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Bop + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -664479802502797651} + m_Position: {x: 220, y: 110, z: 0} + - serializedVersion: 1 + m_State: {fileID: -514822072255214128} + m_Position: {x: 220, y: 160, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 10, y: 170, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -514822072255214128} +--- !u!1102 &-664479802502797651 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Bop + 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: 9a79b7dc54f36f049ad9d8bf46b5b582, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-514822072255214128 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle + 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: 30a09d6ad930d854a9bca26f9ad4a7a7, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-9128562790540173 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Dude1 + 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: ba9f38f38cceb174cb33b017c8d35306, 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: Walker + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Bop + m_StateMachine: {fileID: -6741864445286895246} + 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} + - serializedVersion: 5 + m_Name: Movement + m_StateMachine: {fileID: 8728571655522703669} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Character + m_StateMachine: {fileID: -7968397644140462910} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &2391335969477961234 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Dude2 + 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: 00972feb143ff094f8e5b439e485e41c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &3027760835864339403 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Girlfriend + 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: ef571941af0dc464d92bdad898287ca9, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &7500771304366677175 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Stay + 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: 39e02ce1e77b5d14aa7610c755b8485b, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8527936388589873392 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: EnterRight + 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: 06e4358a850c8f04e9c62ed389eed1f3, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &8728571655522703669 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Movement + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -7127940400383127624} + m_Position: {x: 240, y: 110, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8527936388589873392} + m_Position: {x: 240, y: 160, z: 0} + - serializedVersion: 1 + m_State: {fileID: 7500771304366677175} + m_Position: {x: 240, 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: 210, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 7500771304366677175} diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Walker.controller.meta b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Walker.controller.meta new file mode 100644 index 000000000..7f26c859e --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/Animations/Walker/Walker.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2cf5fed5be2cb114fa30e5984ed71fcb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_BG.png b/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_BG.png new file mode 100644 index 000000000..334cdc41e Binary files /dev/null and b/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_BG.png differ diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_BG.png.meta b/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_BG.png.meta new file mode 100644 index 000000000..cb41352de --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_BG.png.meta @@ -0,0 +1,497 @@ +fileFormatVersion: 2 +guid: 2439a9ab25bbde743b1c3ee0ecfb0912 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: freezeFrame_BG_Sky + rect: + serializedVersion: 2 + x: 1 + y: 912 + width: 447 + height: 111 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bd0847b070876cb46a10cbcb298b7876 + internalID: 34256148 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_BG_trackFar + rect: + serializedVersion: 2 + x: 1 + y: 872 + width: 447 + height: 39 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ec866e45f5ea62b4eb5722232bd9cf9a + internalID: 1911583261 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_BG_Grass + rect: + serializedVersion: 2 + x: 1 + y: 800 + width: 447 + height: 71 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c8b4a2aeba741a544a3f670c438724dc + internalID: 1165356311 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_BG_trackNear + rect: + serializedVersion: 2 + x: 449 + y: 904 + width: 446 + height: 119 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 02ab41a8c7d326e4f962b491f62d0a13 + internalID: 1080376568 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_cloudLarge + rect: + serializedVersion: 2 + x: 449 + y: 840 + width: 94 + height: 63 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4654b5d0beeacf14ca1895d07d45d458 + internalID: -1482192636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_cloudSmall + rect: + serializedVersion: 2 + x: 545 + y: 856 + width: 70 + height: 47 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f988cdb3151ffb04e9ac6d2327bc97c1 + internalID: -56352506 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_introSign + rect: + serializedVersion: 2 + x: 552 + y: 344 + width: 447 + height: 415 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 382c57a9a691128458726ab38c955dc0 + internalID: 321067060 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_introLights00 + rect: + serializedVersion: 2 + x: 24 + y: 312 + width: 175 + height: 111 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7ec1a22ff5bbfd34e8e73135fc319215 + internalID: 656717597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_introLights01 + rect: + serializedVersion: 2 + x: 24 + y: 648 + width: 175 + height: 111 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 44d3e99b03287de4ea9c9a6e1ffbd129 + internalID: -1278587421 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_introLights02 + rect: + serializedVersion: 2 + x: 24 + y: 536 + width: 175 + height: 111 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b317b7e37602c5c4db09a6e7cf824023 + internalID: 173899709 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_introLights03 + rect: + serializedVersion: 2 + x: 24 + y: 424 + width: 175 + height: 111 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 33f630271e25fe84dba43ee41326e185 + internalID: -1490388138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_introLights06 + rect: + serializedVersion: 2 + x: 200 + y: 424 + width: 175 + height: 111 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9a3d144d65d2d8445bc92bffd01b6852 + internalID: 622206759 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_introLights05 + rect: + serializedVersion: 2 + x: 200 + y: 536 + width: 175 + height: 111 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 97e6702f181252b4fa2aae526942364f + internalID: -1760388311 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_introLights04 + rect: + serializedVersion: 2 + x: 200 + y: 648 + width: 175 + height: 111 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6d7b064cee186d341909ec579d038923 + internalID: -1965601484 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_introLights07 + rect: + serializedVersion: 2 + x: 376 + y: 648 + width: 175 + height: 111 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 92d49da9f19d48a4fa14d216373fde1e + internalID: 189580602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_introLights08 + rect: + serializedVersion: 2 + x: 376 + y: 536 + width: 175 + height: 111 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 299a45bb57f47d04b981d759427e02f8 + internalID: 57656780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_introLights09 + rect: + serializedVersion: 2 + x: 376 + y: 424 + width: 175 + height: 111 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fe29288be8d4fad43935dc318148ab93 + internalID: -1501082486 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: + freezeFrame_BG_Grass: 1165356311 + freezeFrame_BG_Sky: 34256148 + freezeFrame_BG_trackFar: 1911583261 + freezeFrame_BG_trackNear: 1080376568 + freezeFrame_cloudLarge: -1482192636 + freezeFrame_cloudSmall: -56352506 + freezeFrame_introLights00: 656717597 + freezeFrame_introLights01: -1278587421 + freezeFrame_introLights02: 173899709 + freezeFrame_introLights03: -1490388138 + freezeFrame_introLights04: -1965601484 + freezeFrame_introLights05: -1760388311 + freezeFrame_introLights06: 622206759 + freezeFrame_introLights07: 189580602 + freezeFrame_introLights08: 57656780 + freezeFrame_introLights09: -1501082486 + freezeFrame_introSign: 321067060 + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: ntrfreezeframe/common + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_extra.png b/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_extra.png new file mode 100644 index 000000000..5bde700b9 Binary files /dev/null and b/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_extra.png differ diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_extra.png.meta b/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_extra.png.meta new file mode 100644 index 000000000..ce775b766 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_extra.png.meta @@ -0,0 +1,189 @@ +fileFormatVersion: 2 +guid: 85ac1aa20afc71449aeb86caa7cd43a3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: freezeFrame_thumbsSide + rect: + serializedVersion: 2 + x: 1 + y: 831 + width: 200 + height: 192 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 068324409a21dc74a9b73a79576d0b60 + internalID: -1837687530 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_thumbsUp + rect: + serializedVersion: 2 + x: 202 + y: 831 + width: 190 + height: 192 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5bea2ab5e814af948a21ea0d9b4b5452 + internalID: -447564954 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_thumbsDown + rect: + serializedVersion: 2 + x: 393 + y: 831 + width: 192 + height: 192 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 03b259d9fc20ce54d8154ac466982f3c + internalID: -121672256 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: + freezeFrame_thumbsDown: -121672256 + freezeFrame_thumbsSide: -1837687530 + freezeFrame_thumbsUp: -447564954 + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: ntrfreezeframe/common + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_other.png b/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_other.png new file mode 100644 index 000000000..15d5d9ff5 Binary files /dev/null and b/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_other.png differ diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_other.png.meta b/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_other.png.meta new file mode 100644 index 000000000..59f120bd1 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/CameraMan_other.png.meta @@ -0,0 +1,1381 @@ +fileFormatVersion: 2 +guid: 9326ee16356c9d24dafb2641e615c517 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: freezeFrame_overlay + rect: + serializedVersion: 2 + x: 1 + y: 312 + width: 493 + height: 271 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0c9f318ff67a2dc41842ea6b80383faa + internalID: -631038606 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_playerBox + rect: + serializedVersion: 2 + x: 552 + y: 776 + width: 111 + height: 111 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6d10fd0f99dbbcf488caadf91a9246f3 + internalID: -2109308074 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_playerTorso + rect: + serializedVersion: 2 + x: 353 + y: 888 + width: 47 + height: 71 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8ac84d7a15858dd499dcf0b71ca11da6 + internalID: 1482626733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_playerIdle + rect: + serializedVersion: 2 + x: 257 + y: 960 + width: 63 + height: 63 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c2b780279cc63324fa6209d69a61fb8d + internalID: -1242169489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_playerSad + rect: + serializedVersion: 2 + x: 193 + y: 960 + width: 63 + height: 63 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 50343572123aff74a8f1a1c94fb5c69a + internalID: 790909462 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_playerOops + rect: + serializedVersion: 2 + x: 129 + y: 960 + width: 63 + height: 63 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4780e5815a2f2134d9829cc881521851 + internalID: -363496440 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_playerHappy + rect: + serializedVersion: 2 + x: 65 + y: 960 + width: 63 + height: 63 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3551505e21a31dd48ae80df145c022ed + internalID: -1491722911 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_playerSquint + rect: + serializedVersion: 2 + x: 1 + y: 960 + width: 63 + height: 63 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 54c7974c11535754fae0358971e55f2b + internalID: 378736356 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_playerLegs01 + rect: + serializedVersion: 2 + x: 321 + y: 960 + width: 62 + height: 63 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f07b9b1ba05a92349bd932d3373df3e5 + internalID: 1854203247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_playerLegs02 + rect: + serializedVersion: 2 + x: 384 + y: 960 + width: 63 + height: 63 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f2b9c7c44eb3d3d4687e08fca7e58974 + internalID: -2070367421 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_cameraFlash01 + rect: + serializedVersion: 2 + x: 448 + y: 960 + width: 39 + height: 39 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a5978341ab4ff694face099151e2b5a3 + internalID: 1536648942 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_cameraFlash02 + rect: + serializedVersion: 2 + x: 488 + y: 960 + width: 47 + height: 47 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dbf92e4ffb4806748a4423d67c8c14b7 + internalID: -525950775 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_cameraFlash03 + rect: + serializedVersion: 2 + x: 536 + y: 960 + width: 55 + height: 55 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fa07cd7f6586dce4386c47a29139c230 + internalID: -352894957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_cameraFlash04 + rect: + serializedVersion: 2 + x: 592 + y: 960 + width: 63 + height: 63 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 53b2e2b81af2ccc48ad2ffe5cbd73d1a + internalID: 1829225764 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_shortCar + rect: + serializedVersion: 2 + x: 417 + y: 776 + width: 134 + height: 111 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6073bd242ed4c4e4bb746b1921177a70 + internalID: -299858999 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_longCar + rect: + serializedVersion: 2 + x: 1 + y: 776 + width: 415 + height: 111 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eb2712981fbb3fe4a96a28f06b02c2b1 + internalID: 2093622923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_photoBorder + rect: + serializedVersion: 2 + x: 496 + y: 129 + width: 223 + height: 174 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c7fa644bf0ee7d243993df794f536433 + internalID: 832552208 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_PhotoTrackEdge + rect: + serializedVersion: 2 + x: 496 + y: 81 + width: 223 + height: 46 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ba22de4802a7ef14e94bfc6a76a10dbb + internalID: -1029839650 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_photoTrack + rect: + serializedVersion: 2 + x: 720 + y: 73 + width: 62 + height: 110 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1c3f2b18c1bf5be4f866ff4539e30af1 + internalID: 1594896761 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_photoGrass + rect: + serializedVersion: 2 + x: 720 + y: 185 + width: 62 + height: 118 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cce9aab88f29e794ebf5efdbadb8d32b + internalID: -2068509640 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_peaceSign + rect: + serializedVersion: 2 + x: 736 + y: 593 + width: 71 + height: 62 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3a90b6877edf839468e4fbb94d36a94c + internalID: 1067254330 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_ladyFace + rect: + serializedVersion: 2 + x: 1 + y: 80 + width: 126 + height: 231 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fb9ca48ade273424aa128a9825e1e2a2 + internalID: 268902830 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_ladyLook + rect: + serializedVersion: 2 + x: 128 + y: 80 + width: 127 + height: 231 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7eaec358fe2c6c646b65628b652da606 + internalID: -249442660 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_ladyBlink + rect: + serializedVersion: 2 + x: 256 + y: 80 + width: 127 + height: 231 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6fae7aa5bb5151d4f808e32b1a26453f + internalID: -1945301481 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_ladyBosom + rect: + serializedVersion: 2 + x: 384 + y: 193 + width: 111 + height: 118 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d079dc1aef9a30747bca9a751d59c28d + internalID: 315876861 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_ladyWaist + rect: + serializedVersion: 2 + x: 384 + y: 33 + width: 111 + height: 158 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 049fa4e6d03e40f4a82713b24de3959c + internalID: 433216211 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_ladyArm + rect: + serializedVersion: 2 + x: 584 + y: 569 + width: 62 + height: 206 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 264f5c5c5e6d6354eb04156e92165453 + internalID: 1834455136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_coachHead01 + rect: + serializedVersion: 2 + x: 808 + y: 537 + width: 158 + height: 142 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1bf3055b041dd034eb848a8f5924337e + internalID: 8396014 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_coachHead02 + rect: + serializedVersion: 2 + x: 808 + y: 681 + width: 158 + height: 142 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 71e471e9a70dc894797ec36acbadeafb + internalID: 391481022 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_coachTorso01 + rect: + serializedVersion: 2 + x: 496 + y: 305 + width: 207 + height: 230 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 54815fbecdb96cb4aa71f82900ad79fa + internalID: 2139379831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_coachTorso02 + rect: + serializedVersion: 2 + x: 704 + y: 305 + width: 206 + height: 230 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 58a1d7fa17db63f45aa2864e9ecb06cd + internalID: -1413667912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_photoCameo_ghost + rect: + serializedVersion: 2 + x: 936 + y: 217 + width: 87 + height: 126 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 762643874cb881d42b7dfdee8300a5ff + internalID: -1782248971 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_photoCameo_rats + rect: + serializedVersion: 2 + x: 784 + y: 233 + width: 151 + height: 70 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 39ba0fcb43320334d8361f56414b2e24 + internalID: -1099585802 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_photoCameo_ninjaWhite + rect: + serializedVersion: 2 + x: 912 + y: 441 + width: 111 + height: 94 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 84c77a35dbf160e46b19bcf0055bcca7 + internalID: -314316757 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_photoCameo_ninjaBlack + rect: + serializedVersion: 2 + x: 912 + y: 345 + width: 111 + height: 94 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 262c6ba9d32764e45bc760d44457e558 + internalID: -2123024622 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_maru + rect: + serializedVersion: 2 + x: 201 + y: 584 + width: 190 + height: 191 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1ce0b66777e65fd47aa44328d5da81bd + internalID: -647017332 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_batsu + rect: + serializedVersion: 2 + x: 392 + y: 584 + width: 191 + height: 191 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e5ea6fe013ba7b34c8216fb33aef461b + internalID: 782137592 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_sankaku + rect: + serializedVersion: 2 + x: 1 + y: 584 + width: 199 + height: 191 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bcca318f76cfafe4bbe6ed198e6be2fe + internalID: 180920831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_overlayCrosshair + rect: + serializedVersion: 2 + x: 664 + y: 776 + width: 47 + height: 47 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 415b88e87fde81e469c7aa77470da3ee + internalID: -1979073095 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_billboard01 + rect: + serializedVersion: 2 + x: 664 + y: 824 + width: 151 + height: 135 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 92837e3c47ead7b4eabc2c449162003f + internalID: 811814910 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_billboard02 + rect: + serializedVersion: 2 + x: 816 + y: 824 + width: 151 + height: 135 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6e07017be98f75248892c7c9fcc87c00 + internalID: 233320279 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_wheel + rect: + serializedVersion: 2 + x: 401 + y: 888 + width: 54 + height: 55 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1c23549952eb10d4d905fefbcee66eb0 + internalID: 2042807485 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_longCarFar + rect: + serializedVersion: 2 + x: 536 + y: 888 + width: 95 + height: 47 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1fe83d7cdf43f9c46a7c017f9078b937 + internalID: 818276007 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_shortCarFar01 + rect: + serializedVersion: 2 + x: 456 + y: 888 + width: 39 + height: 47 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 78eab99d50e892a4c8bedf4b1e604724 + internalID: -49849053 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_shortCarFar02 + rect: + serializedVersion: 2 + x: 496 + y: 888 + width: 39 + height: 47 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c84b11a3cf008f14497fc2d641587c6b + internalID: -988158864 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_wheelFar01 + rect: + serializedVersion: 2 + x: 457 + y: 937 + width: 21 + height: 21 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 93bf0ec6b7b37034ba98638751a3d4a7 + internalID: 1492055772 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_wheelFar02 + rect: + serializedVersion: 2 + x: 481 + y: 937 + width: 21 + height: 21 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 58e605def8e53444bad8f2a6579b09a5 + internalID: -1950327860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_camera01 + rect: + serializedVersion: 2 + x: 0 + y: 888 + width: 88 + height: 71 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3ba1c86c58715314a8d479ddb9a05b99 + internalID: 514287739 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_camera02 + rect: + serializedVersion: 2 + x: 89 + y: 888 + width: 87 + height: 71 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bc34c92d49c19b249b6dd980292c0f69 + internalID: 1450439676 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_camera03 + rect: + serializedVersion: 2 + x: 177 + y: 888 + width: 87 + height: 71 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5592c1b8989ac5641a71a6f8ac9f45f2 + internalID: -1696152753 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_cameraDown + rect: + serializedVersion: 2 + x: 265 + y: 888 + width: 87 + height: 71 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 80431c23b711b6f48ad6ab9c1c615ec1 + internalID: 2131247634 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_crowd01 + rect: + serializedVersion: 2 + x: 656 + y: 960 + width: 207 + height: 63 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 54009ef80a0298449856935f514414aa + internalID: -1715518271 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_crowd02a + rect: + serializedVersion: 2 + x: 784 + y: 137 + width: 122 + height: 78 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 09f2bb0e132df244387ce7377100b663 + internalID: 2029395457 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_crowd02b + rect: + serializedVersion: 2 + x: 908 + y: 137 + width: 115 + height: 78 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6ca7203b718ab57448ffe6575849b294 + internalID: 195559496 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_crowd02c + rect: + serializedVersion: 2 + x: 784 + y: 57 + width: 122 + height: 78 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ea36998a9486b704eaf566adf9337e97 + internalID: 1911284742 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: freezeFrame_crowd02d + rect: + serializedVersion: 2 + x: 908 + y: 57 + width: 115 + height: 78 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 216a0c4a9a66e174785ca9f08072a1ae + internalID: -1284001560 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: CameraMan_shutterFill + rect: + serializedVersion: 2 + x: 874 + y: 994 + width: 19 + height: 19 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c6a5817a2dcf0244cac0a6cc6047568b + internalID: -974970060 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: + CameraMan_shutterFill: -974970060 + freezeFrame_PhotoTrackEdge: -1029839650 + freezeFrame_batsu: 782137592 + freezeFrame_billboard01: 811814910 + freezeFrame_billboard02: 233320279 + freezeFrame_camera01: 514287739 + freezeFrame_camera02: 1450439676 + freezeFrame_camera03: -1696152753 + freezeFrame_cameraDown: 2131247634 + freezeFrame_cameraFlash01: 1536648942 + freezeFrame_cameraFlash02: -525950775 + freezeFrame_cameraFlash03: -352894957 + freezeFrame_cameraFlash04: 1829225764 + freezeFrame_coachHead01: 8396014 + freezeFrame_coachHead02: 391481022 + freezeFrame_coachTorso01: 2139379831 + freezeFrame_coachTorso02: -1413667912 + freezeFrame_crowd01: -1715518271 + freezeFrame_crowd02a: 2029395457 + freezeFrame_crowd02b: 195559496 + freezeFrame_crowd02c: 1911284742 + freezeFrame_crowd02d: -1284001560 + freezeFrame_ladyArm: 1834455136 + freezeFrame_ladyBlink: -1945301481 + freezeFrame_ladyBosom: 315876861 + freezeFrame_ladyFace: 268902830 + freezeFrame_ladyLook: -249442660 + freezeFrame_ladyWaist: 433216211 + freezeFrame_longCar: 2093622923 + freezeFrame_longCarFar: 818276007 + freezeFrame_maru: -647017332 + freezeFrame_overlay: -631038606 + freezeFrame_overlayCrosshair: -1979073095 + freezeFrame_peaceSign: 1067254330 + freezeFrame_photoBorder: 832552208 + freezeFrame_photoCameo_ghost: -1782248971 + freezeFrame_photoCameo_ninjaBlack: -2123024622 + freezeFrame_photoCameo_ninjaWhite: -314316757 + freezeFrame_photoCameo_rats: -1099585802 + freezeFrame_photoGrass: -2068509640 + freezeFrame_photoTrack: 1594896761 + freezeFrame_photograph: 2026589508 + freezeFrame_playerBox: -2109308074 + freezeFrame_playerHappy: -1491722911 + freezeFrame_playerIdle: -1242169489 + freezeFrame_playerLegs01: 1854203247 + freezeFrame_playerLegs02: -2070367421 + freezeFrame_playerOops: -363496440 + freezeFrame_playerSad: 790909462 + freezeFrame_playerSquint: 378736356 + freezeFrame_playerTorso: 1482626733 + freezeFrame_sankaku: 180920831 + freezeFrame_shortCar: -299858999 + freezeFrame_shortCarFar01: -49849053 + freezeFrame_shortCarFar02: -988158864 + freezeFrame_thumbsDown: -282595921 + freezeFrame_thumbsSide: 850559141 + freezeFrame_thumbsUp: 1894570421 + freezeFrame_wheel: 2042807485 + freezeFrame_wheelFar01: 1492055772 + freezeFrame_wheelFar02: -1950327860 + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: ntrfreezeframe/common + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/CloudParticle.png b/Assets/Resources/Sprites/Games/FreezeFrame/CloudParticle.png new file mode 100644 index 000000000..ac328ac60 Binary files /dev/null and b/Assets/Resources/Sprites/Games/FreezeFrame/CloudParticle.png differ diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/CloudParticle.png.meta b/Assets/Resources/Sprites/Games/FreezeFrame/CloudParticle.png.meta new file mode 100644 index 000000000..8e4180651 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/CloudParticle.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: eb81210fabe521f498c8af08f7ffd498 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/CloudParticleMaterial.mat b/Assets/Resources/Sprites/Games/FreezeFrame/CloudParticleMaterial.mat new file mode 100644 index 000000000..3ae1ae9e8 --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/CloudParticleMaterial.mat @@ -0,0 +1,109 @@ +%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: CloudParticleMaterial + m_Shader: {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: [] + m_InvalidKeywords: + - _ALPHATEST_ON + - _COLOROVERLAY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _AlphaTex: + m_Texture: {fileID: 0} + 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: eb81210fabe521f498c8af08f7ffd498, 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} + m_Ints: [] + m_Floats: + - PixelSnap: 0 + - _BlendOp: 0 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorMode: 3 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 0 + - _EmissionEnabled: 0 + - _EnableExternalAlpha: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _LightingEnabled: 1 + - _Metallic: 0 + - _Mode: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorAddSubDiff: {r: -1, g: 1, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _Flip: {r: 1, g: 1, b: 1, a: 1} + - _RendererColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/FreezeFrame/CloudParticleMaterial.mat.meta b/Assets/Resources/Sprites/Games/FreezeFrame/CloudParticleMaterial.mat.meta new file mode 100644 index 000000000..f827c541b --- /dev/null +++ b/Assets/Resources/Sprites/Games/FreezeFrame/CloudParticleMaterial.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6debacd2e65d0d340acabb2727a92b7f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/NailCarpenter/Animations/carpenterHit.anim b/Assets/Resources/Sprites/Games/NailCarpenter/Animations/carpenterHit.anim index 44d41407a..c4b6e2ca5 100644 --- a/Assets/Resources/Sprites/Games/NailCarpenter/Animations/carpenterHit.anim +++ b/Assets/Resources/Sprites/Games/NailCarpenter/Animations/carpenterHit.anim @@ -20,15 +20,6 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: {x: 0, y: 3.36, z: 0} - inSlope: {x: 0, y: 0, z: 0} - outSlope: {x: 0, y: 0, z: 0} - tangentMode: 0 - weightedMode: 0 - inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - - serializedVersion: 3 - time: 0.05 value: {x: 0.1, y: 3.2, z: 0} inSlope: {x: 0, y: 0, z: 0} outSlope: {x: 0, y: 0, z: 0} @@ -37,7 +28,7 @@ AnimationClip: inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 - time: 0.25 + time: 0.2 value: {x: 0, y: 3.36, z: 0} inSlope: {x: 0, y: 0, z: 0} outSlope: {x: 0, y: 0, z: 0} @@ -54,15 +45,6 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: {x: 0, y: 1.1, z: 0} - inSlope: {x: 0, y: 0, z: 0} - outSlope: {x: 0, y: 0, z: 0} - tangentMode: 0 - weightedMode: 0 - inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - - serializedVersion: 3 - time: 0.05 value: {x: 0, y: 1.05, z: 0} inSlope: {x: 0, y: 0, z: 0} outSlope: {x: 0, y: 0, z: 0} @@ -71,7 +53,7 @@ AnimationClip: inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} - serializedVersion: 3 - time: 0.25 + time: 0.2 value: {x: 0, y: 1.1, z: 0} inSlope: {x: 0, y: 0, z: 0} outSlope: {x: 0, y: 0, z: 0} @@ -88,20 +70,14 @@ AnimationClip: m_PPtrCurves: - curve: - time: 0 - value: {fileID: -1543273638, guid: 99d6a57b351ee2046b9af317c31f4a05, type: 3} - - time: 0.016666668 - value: {fileID: 1352923740, guid: 99d6a57b351ee2046b9af317c31f4a05, type: 3} - - time: 0.033333335 - value: {fileID: 931314201, guid: 99d6a57b351ee2046b9af317c31f4a05, type: 3} - - time: 0.05 value: {fileID: -973307119, guid: 99d6a57b351ee2046b9af317c31f4a05, type: 3} - - time: 0.13333334 + - time: 0.083333336 value: {fileID: 931314201, guid: 99d6a57b351ee2046b9af317c31f4a05, type: 3} - - time: 0.16666667 + - time: 0.11666667 value: {fileID: 931314201, guid: 99d6a57b351ee2046b9af317c31f4a05, type: 3} - - time: 0.2 + - time: 0.15 value: {fileID: 1352923740, guid: 99d6a57b351ee2046b9af317c31f4a05, type: 3} - - time: 0.23333333 + - time: 0.18333334 value: {fileID: -1543273638, guid: 99d6a57b351ee2046b9af317c31f4a05, type: 3} attribute: m_Sprite path: Arm @@ -136,9 +112,6 @@ AnimationClip: customType: 23 isPPtrCurve: 1 pptrCurveMapping: - - {fileID: -1543273638, guid: 99d6a57b351ee2046b9af317c31f4a05, type: 3} - - {fileID: 1352923740, guid: 99d6a57b351ee2046b9af317c31f4a05, type: 3} - - {fileID: 931314201, guid: 99d6a57b351ee2046b9af317c31f4a05, type: 3} - {fileID: -973307119, guid: 99d6a57b351ee2046b9af317c31f4a05, type: 3} - {fileID: 931314201, guid: 99d6a57b351ee2046b9af317c31f4a05, type: 3} - {fileID: 931314201, guid: 99d6a57b351ee2046b9af317c31f4a05, type: 3} @@ -149,7 +122,7 @@ AnimationClip: m_AdditiveReferencePoseClip: {fileID: 0} m_AdditiveReferencePoseTime: 0 m_StartTime: 0 - m_StopTime: 0.25 + m_StopTime: 0.2 m_OrientationOffsetY: 0 m_Level: 0 m_CycleOffset: 0 @@ -170,15 +143,6 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 0.05 value: 0.1 inSlope: 0 outSlope: 0 @@ -187,7 +151,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 0.25 + time: 0.2 value: 0 inSlope: 0 outSlope: 0 @@ -207,15 +171,6 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 3.36 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 0.05 value: 3.2 inSlope: 0 outSlope: 0 @@ -224,7 +179,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 0.25 + time: 0.2 value: 3.36 inSlope: 0 outSlope: 0 @@ -244,53 +199,6 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalPosition.z - path: Head - classID: 4 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalPosition.x - path: Body - classID: 4 - script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 1.1 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 0.05 value: 1.05 inSlope: 0 outSlope: 0 @@ -299,7 +207,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 0.25 + time: 0.2 value: 1.1 inSlope: 0 outSlope: 0 @@ -314,25 +222,6 @@ AnimationClip: path: Body classID: 4 script: {fileID: 0} - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 136 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_LocalPosition.z - path: Body - classID: 4 - script: {fileID: 0} m_EulerEditorCurves: [] m_HasGenericRootTransform: 0 m_HasMotionFloatCurves: 0 diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/fudePos-chikara.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/fudePos-chikara.controller new file mode 100644 index 000000000..10b783235 --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/fudePos-chikara.controller @@ -0,0 +1,333 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-5542575270439367299 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 4 + 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: fcbca72c25e26a749ab645378a982251, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-5045694569336194735 +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: 4780194177807260741} + m_Position: {x: 180, y: 180, z: 0} + - serializedVersion: 1 + m_State: {fileID: 2287713247147900331} + m_Position: {x: 220, y: 240, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8922504338225610916} + m_Position: {x: 250, y: 310, z: 0} + - serializedVersion: 1 + m_State: {fileID: -1650211703734179367} + m_Position: {x: 330, y: 370, z: 0} + - serializedVersion: 1 + m_State: {fileID: -5542575270439367299} + m_Position: {x: 360, y: 440, z: 0} + - serializedVersion: 1 + m_State: {fileID: 5245885025326189028} + m_Position: {x: 400, y: 500, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6032152587410807120} + m_Position: {x: 430, y: 570, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8113865168917302246} + m_Position: {x: 470, y: 630, z: 0} + - serializedVersion: 1 + m_State: {fileID: -567491019117653859} + m_Position: {x: 500, y: 700, z: 0} + - serializedVersion: 1 + m_State: {fileID: 5569691216784704425} + m_Position: {x: 540, y: 760, 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: 4780194177807260741} +--- !u!1102 &-1650211703734179367 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 3 + 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: 374a9855b64023a4291a10eeea75a4e1, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-567491019117653859 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 7late + 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: 7caeb0d9d44c7114e9492c1554408b6f, 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: fudePos-chikara + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -5045694569336194735} + 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 &2287713247147900331 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 1 + 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: e74555bf541d15a44b93b8a8107fa9c9, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &4780194177807260741 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: fudePos-chikara00 + 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: ef5b218d28b40834d800859b3e935c9e, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &5245885025326189028 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 5 + 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: 18bf0ab5bdfbb2840bd85f27161a6b1d, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &5569691216784704425 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 7fast + 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: 43c74046861e2dd4d815181e3f5cfb9b, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &6032152587410807120 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 6 + 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: 0362e4864915d9240bd4a5e0d5a26eca, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8113865168917302246 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 7just + 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: 1e030ad50e569d34997096f4ca53d6f9, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8922504338225610916 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 2 + 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: bad93b824be01174abb8aba2525825f6, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/fudePos-chikara.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/fudePos-chikara.controller.meta new file mode 100644 index 000000000..fad074e3b --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/fudePos-chikara.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 77f6c2b1272b6a243bdf6503c85b10b0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-re.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara.controller similarity index 79% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-re.controller rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara.controller index f44d56b9f..ecfa21489 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-re.controller +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara.controller @@ -1,31 +1,5 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: ---- !u!1102 &-9028063261873104851 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-re03-just - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: a607b4b413b26c7468fd4bd0fbd12f9c, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &-6292010483678719761 AnimatorState: serializedVersion: 6 @@ -52,14 +26,14 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &-6284373825970273870 +--- !u!1102 &-6082145668641582841 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-re01 + m_Name: 3 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -72,7 +46,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 9144db3b374e1c34fb3e83b07ec18dd3, type: 2} + m_Motion: {fileID: 7400000, guid: 1fc22f4e58d8e5545b09bbe47ced104b, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: @@ -91,29 +65,29 @@ AnimatorStateMachine: m_State: {fileID: -6292010483678719761} m_Position: {x: 260, y: 20, z: 0} - serializedVersion: 1 - m_State: {fileID: 3351064918583297504} - m_Position: {x: 0, y: 200, z: 0} + m_State: {fileID: -1338064717336534372} + m_Position: {x: 40, y: 220, z: 0} - serializedVersion: 1 - m_State: {fileID: -6284373825970273870} - m_Position: {x: 30, y: 270, z: 0} + m_State: {fileID: -2696070812660855879} + m_Position: {x: 80, y: 280, z: 0} - serializedVersion: 1 - m_State: {fileID: -4515971188078934360} - m_Position: {x: 70, y: 330, z: 0} + m_State: {fileID: -6082145668641582841} + m_Position: {x: 110, y: 350, z: 0} - serializedVersion: 1 - m_State: {fileID: -9028063261873104851} - m_Position: {x: 100, y: 400, z: 0} + m_State: {fileID: -5145137798443632087} + m_Position: {x: 150, y: 410, z: 0} - serializedVersion: 1 - m_State: {fileID: 3061722880113446351} - m_Position: {x: 100, y: 460, z: 0} + m_State: {fileID: 4457002091163391653} + m_Position: {x: 180, y: 480, z: 0} - serializedVersion: 1 - m_State: {fileID: 4964938421491347055} - m_Position: {x: 100, y: 520, z: 0} + m_State: {fileID: -4025366535877007525} + m_Position: {x: 220, y: 540, z: 0} - serializedVersion: 1 - m_State: {fileID: 5375773717256993161} - m_Position: {x: 170, y: 580, z: 0} + m_State: {fileID: 6524240619068071304} + m_Position: {x: 250, y: 610, z: 0} - serializedVersion: 1 - m_State: {fileID: 7161411149177303054} - m_Position: {x: 260, y: 110, z: 0} + m_State: {fileID: 5184258778990741431} + m_Position: {x: 290, y: 670, z: 0} m_ChildStateMachines: [] m_AnyStateTransitions: [] m_EntryTransitions: [] @@ -124,14 +98,14 @@ AnimatorStateMachine: m_ExitPosition: {x: 140, y: -80, z: 0} m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} m_DefaultState: {fileID: -6292010483678719761} ---- !u!1102 &-4515971188078934360 +--- !u!1102 &-5145137798443632087 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-re02 + m_Name: 4 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -144,7 +118,85 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: c771ec5b07bc95645893f55f03514e0c, type: 2} + m_Motion: {fileID: 7400000, guid: 8f055be9839082741a2f3c748b1a5552, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-4025366535877007525 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 7just + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 0 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 561c2b020bb2a2b4ea4808bd7417a293, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-2696070812660855879 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 2 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 0 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 02827bfe774cf0947a3152ea2e5f9d4d, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-1338064717336534372 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 1 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 0 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: fd4738f85adecc24f8517264e4d10793, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: @@ -156,7 +208,7 @@ AnimatorController: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-re + m_Name: paper-chikara serializedVersion: 5 m_AnimatorParameters: [] m_AnimatorLayers: @@ -172,14 +224,14 @@ AnimatorController: m_IKPass: 0 m_SyncedLayerAffectsTiming: 0 m_Controller: {fileID: 9100000} ---- !u!1102 &3061722880113446351 +--- !u!1102 &4457002091163391653 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-re03-fast + m_Name: 6 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -192,20 +244,20 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: c7d9a7407d1292c4790e51ac5ef94728, type: 2} + m_Motion: {fileID: 7400000, guid: b10473bb292656245b3d19df5a2c4575, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &3351064918583297504 +--- !u!1102 &5184258778990741431 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-re00 + m_Name: 7late m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -218,20 +270,20 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 64d4cd8faa564ee48a66a0e5cefeeadb, type: 2} + m_Motion: {fileID: 7400000, guid: 17b65be8f427b6b478af1deb4dc2aa2b, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &4964938421491347055 +--- !u!1102 &6524240619068071304 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-re03-late + m_Name: 7fast m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -244,59 +296,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: b5ba81ada41ad4a46b713a83b405eaed, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &5375773717256993161 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-re04-end - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 5ceb755578e6b9c4c802f7d0bedee71f, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &7161411149177303054 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-init - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 263bdf3b21bad5e42ab125b4f2e29344, type: 2} + m_Motion: {fileID: 7400000, guid: acd8548c65311d3449dfb2141d20bf77, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-chikara.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara.controller.meta similarity index 100% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-chikara.controller.meta rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/chikara/paper-chikara.controller.meta diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/fudePos-comma.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/fudePos-comma.controller new file mode 100644 index 000000000..fd1a00e55 --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/fudePos-comma.controller @@ -0,0 +1,217 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-8570468295486733057 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 2miss + 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: 7b3e553f527ef1a4f99ad41575b62e6c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-8184168049185127996 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: fudePos-comma00 + 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: 624998c96b9febc45aff9a090457eebe, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-5045694569336194735 +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: 2918795362906277945} + m_Position: {x: 160, y: 260, z: 0} + - serializedVersion: 1 + m_State: {fileID: -8570468295486733057} + m_Position: {x: 210, y: 330, z: 0} + - serializedVersion: 1 + m_State: {fileID: 3260831569143889301} + m_Position: {x: 210, y: 400, z: 0} + - serializedVersion: 1 + m_State: {fileID: 5882042523823724615} + m_Position: {x: 210, y: 470, z: 0} + - serializedVersion: 1 + m_State: {fileID: -2898621561750013274} + m_Position: {x: 210, y: 540, z: 0} + - serializedVersion: 1 + m_State: {fileID: -8184168049185127996} + m_Position: {x: 130, y: 200, 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: -8184168049185127996} +--- !u!1102 &-2898621561750013274 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 2late + 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: 4d5fe318c2a004b459d10ffdc3611a40, 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: fudePos-comma + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -5045694569336194735} + 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 &2918795362906277945 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 1 + 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: 5706e79ef6586d841917d6e88cf05246, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &3260831569143889301 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 2fast + 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: 467cd8f7cb3c2a444a20fbc526ae08c8, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &5882042523823724615 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 2just + 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: cbb5f775c14b03847a7066618c24cdb1, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/fudePos-comma.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/fudePos-comma.controller.meta new file mode 100644 index 000000000..d189042cc --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/fudePos-comma.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 31a09d366e276e84b84b478ae82aa36f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma.controller new file mode 100644 index 000000000..ea786a238 --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma.controller @@ -0,0 +1,159 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-6292010483678719761 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: paper-none + 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: baccc40d1b647244b891b638501eacf7, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-5593357924424937150 +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: -6292010483678719761} + m_Position: {x: 260, y: 20, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8786292936139707480} + m_Position: {x: 160, y: 290, z: 0} + - serializedVersion: 1 + m_State: {fileID: 2652860380271456673} + m_Position: {x: 160, y: 350, z: 0} + - serializedVersion: 1 + m_State: {fileID: -2749694015844619861} + m_Position: {x: 160, y: 410, 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: 140, y: -80, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -6292010483678719761} +--- !u!1102 &-2749694015844619861 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 2late + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 0 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: e1344c1167b3c014f8cebe82db24014a, 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: paper-comma + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -5593357924424937150} + 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 &2652860380271456673 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 2fast + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 0 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: f3b81c15de2cc6a46bd24d85c18fc494, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8786292936139707480 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 2just + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 0 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 1040c77fbf4fc5a48aee49c4eb16ffa7, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-comma.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma.controller.meta similarity index 100% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-comma.controller.meta rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma.controller.meta diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma03-end.anim.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma03-end.anim.meta deleted file mode 100644 index ffe3a8ac2..000000000 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/comma/paper-comma03-end.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 04252305c0990a242a1082cc904b666e -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 7400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/fudePos-face.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/fudePos-face.controller new file mode 100644 index 000000000..28a1ef63c --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/fudePos-face.controller @@ -0,0 +1,739 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-9044908862180446885 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 21just + 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: 2ee1325df2331ee4bb72138f1e3fa828, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-8866764938207252913 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 10 + 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: a0c5765c78478944581b4d47592cc9ea, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-8283314949215002757 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 3 + 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: 2f59f20466bdcd547846d6c0766a90ce, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-6117014397033859757 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: fudePos-face00 + 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: 81161defccafb6b4cb11cf3d7362aba7, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-5652177210172646846 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 11 + 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: 2e4732639e673b04ba3d5236ac41280a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-5264476498642737898 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 14 + 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: 7a7f3829f3a28ba41972b63e3cb5eb5c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-5045694569336194735 +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: -6117014397033859757} + m_Position: {x: 140, y: 230, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8353509188919030637} + m_Position: {x: 140, y: 310, z: 0} + - serializedVersion: 1 + m_State: {fileID: 108073847451682053} + m_Position: {x: 140, y: 360, z: 0} + - serializedVersion: 1 + m_State: {fileID: -8283314949215002757} + m_Position: {x: 140, y: 410, z: 0} + - serializedVersion: 1 + m_State: {fileID: 5410900248127398616} + m_Position: {x: 140, y: 460, z: 0} + - serializedVersion: 1 + m_State: {fileID: 4611079531815405373} + m_Position: {x: 140, y: 510, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6591158783846214960} + m_Position: {x: 140, y: 560, z: 0} + - serializedVersion: 1 + m_State: {fileID: 2823797944274991996} + m_Position: {x: 140, y: 610, z: 0} + - serializedVersion: 1 + m_State: {fileID: 7437942790592284624} + m_Position: {x: 140, y: 660, z: 0} + - serializedVersion: 1 + m_State: {fileID: 4864342793764696706} + m_Position: {x: 140, y: 710, z: 0} + - serializedVersion: 1 + m_State: {fileID: -5652177210172646846} + m_Position: {x: 370, y: 310, z: 0} + - serializedVersion: 1 + m_State: {fileID: 7964123940561494418} + m_Position: {x: 370, y: 410, z: 0} + - serializedVersion: 1 + m_State: {fileID: -5264476498642737898} + m_Position: {x: 370, y: 460, z: 0} + - serializedVersion: 1 + m_State: {fileID: 4897313723434638611} + m_Position: {x: 370, y: 510, z: 0} + - serializedVersion: 1 + m_State: {fileID: -3982070528520397331} + m_Position: {x: 370, y: 560, z: 0} + - serializedVersion: 1 + m_State: {fileID: 7036343796381602848} + m_Position: {x: 370, y: 610, z: 0} + - serializedVersion: 1 + m_State: {fileID: 3554320142238368202} + m_Position: {x: 370, y: 660, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8020154116083598097} + m_Position: {x: 370, y: 710, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8853823750874060483} + m_Position: {x: 370, y: 760, z: 0} + - serializedVersion: 1 + m_State: {fileID: -9044908862180446885} + m_Position: {x: 600, y: 310, z: 0} + - serializedVersion: 1 + m_State: {fileID: -8866764938207252913} + m_Position: {x: 140, y: 760, z: 0} + - serializedVersion: 1 + m_State: {fileID: 91295148143126997} + m_Position: {x: 370, y: 360, z: 0} + - serializedVersion: 1 + m_State: {fileID: 7370799835463495085} + m_Position: {x: 600, y: 360, z: 0} + - serializedVersion: 1 + m_State: {fileID: -3864375151107292210} + m_Position: {x: 600, y: 410, 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: -6117014397033859757} +--- !u!1102 &-3982070528520397331 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 16 + 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: 6d9704e7e512052479482da96a2eb989, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-3864375151107292210 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 21late + 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: 1b465089417092349b8e2f7bed80c35c, 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: fudePos-face + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -5045694569336194735} + 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 &91295148143126997 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 12 + 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: e8eb23c023b117d4984ae54328609336, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &108073847451682053 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 2 + 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: 50ef62b3515bfc749bc72dbe73fb76c1, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &2823797944274991996 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 7 + 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: aad378381d4e52a4697803a498faeb06, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &3554320142238368202 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 18 + 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: 005cce2aac987b9428fd549d3f14504c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &4611079531815405373 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 5 + 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: 8d0e2e6f7724be34a9567f03549bf16e, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &4864342793764696706 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 9 + 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: 7e7f8de2da4bbc44784a0e1435d7aa00, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &4897313723434638611 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 15 + 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: 7c227d9597556384e80eaa6a5cc5cc5a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &5410900248127398616 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 4 + 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: b5accb4e566b7604099ff1e98e5b3fe5, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &6591158783846214960 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 6 + 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: 9c3f6eed342f6b34793076ee53f47a44, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &7036343796381602848 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 17 + 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: a761dabbad46f85408c436865f303756, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &7370799835463495085 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 21fast + 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: 94706ade92b7fd5449d292d2a439a628, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &7437942790592284624 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 8 + 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: 5bac4817c5f593d48bf815c912ddb29c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &7964123940561494418 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 13 + 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: 7ef8148a618e4f147b2b5cb770812616, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8020154116083598097 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 19 + 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: 62e8ae1fb9ae7bd4f99fd8dac80d164c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8353509188919030637 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 1 + 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: 3ac72efb68a8f134199c9db3c2ebf457, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8853823750874060483 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 20 + 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: c3cde4110c3c3d9429f9679f40471f2a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/fudePos-face.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/fudePos-face.controller.meta new file mode 100644 index 000000000..6fdaf442a --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/fudePos-face.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 39a2eabe4a7b21e4d81c4fe36c2a13a7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-face.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face.controller similarity index 85% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-face.controller rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face.controller index f2f3d157f..b1b5a7535 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-face.controller +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face.controller @@ -7,7 +7,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face05 + m_Name: 5 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -33,7 +33,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face02 + m_Name: 2 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -90,12 +90,6 @@ AnimatorStateMachine: - serializedVersion: 1 m_State: {fileID: -6292010483678719761} m_Position: {x: 260, y: 20, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7161411149177303054} - m_Position: {x: 260, y: 110, z: 0} - - serializedVersion: 1 - m_State: {fileID: 3451165278634013492} - m_Position: {x: 295, y: 175, z: 0} - serializedVersion: 1 m_State: {fileID: -458710183564115475} m_Position: {x: 330, y: 240, z: 0} @@ -147,15 +141,12 @@ AnimatorStateMachine: - serializedVersion: 1 m_State: {fileID: 493317685735488380} m_Position: {x: 890, y: 1280, z: 0} - - serializedVersion: 1 - m_State: {fileID: 2755722621842520282} - m_Position: {x: 925, y: 1345, z: 0} - serializedVersion: 1 m_State: {fileID: -2939514585784333615} - m_Position: {x: 960, y: 1410, z: 0} + m_Position: {x: 930, y: 1340, z: 0} - serializedVersion: 1 m_State: {fileID: 4554014245356472744} - m_Position: {x: 995, y: 1475, z: 0} + m_Position: {x: 970, y: 1400, z: 0} m_ChildStateMachines: [] m_AnyStateTransitions: [] m_EntryTransitions: [] @@ -173,7 +164,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face14 + m_Name: 14 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -199,7 +190,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face19 + m_Name: 19 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -225,7 +216,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face21-fast + m_Name: 21fast m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -251,7 +242,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face15 + m_Name: 15 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -277,7 +268,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face11 + m_Name: 11 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -303,7 +294,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face01 + m_Name: 1 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -351,7 +342,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face21-just + m_Name: 21just m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -377,7 +368,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face08 + m_Name: 8 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -396,32 +387,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &2755722621842520282 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-face22-end - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: c18c94aafaddeba4fa8b5aca0c927948, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &2815808817812892935 AnimatorState: serializedVersion: 6 @@ -429,7 +394,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face13 + m_Name: 13 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -448,32 +413,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &3451165278634013492 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-face00 - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 2c9288b1a703a7f459e3822284718893, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &4554014245356472744 AnimatorState: serializedVersion: 6 @@ -481,7 +420,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face21-late + m_Name: 21late m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -507,7 +446,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face04 + m_Name: 4 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -533,7 +472,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face18 + m_Name: 18 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -559,7 +498,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face16 + m_Name: 16 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -585,7 +524,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face17 + m_Name: 17 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -604,32 +543,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &7161411149177303054 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-init - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 263bdf3b21bad5e42ab125b4f2e29344, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &7452276027900826081 AnimatorState: serializedVersion: 6 @@ -637,7 +550,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face09 + m_Name: 9 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -663,7 +576,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face20 + m_Name: 20 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -689,7 +602,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face06 + m_Name: 6 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-face.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face.controller.meta similarity index 100% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-face.controller.meta rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face.controller.meta diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face00.anim.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face00.anim.meta deleted file mode 100644 index 99d0c7f20..000000000 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face00.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2c9288b1a703a7f459e3822284718893 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 7400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face22-end.anim.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face22-end.anim.meta deleted file mode 100644 index 46617f3e8..000000000 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face/paper-face22-end.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c18c94aafaddeba4fa8b5aca0c927948 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 7400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face_kr/fudePos-face_kr.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face_kr/fudePos-face_kr.controller new file mode 100644 index 000000000..eca1005ff --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face_kr/fudePos-face_kr.controller @@ -0,0 +1,739 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-7672223019517459350 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 5 + 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: c289842cde784fa419f3d6bf061d245b, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-7306158051742997111 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 1 + 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: 3ac72efb68a8f134199c9db3c2ebf457, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-5706156902944915542 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 11 + 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: 2e4732639e673b04ba3d5236ac41280a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-5605059981752272019 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 3 + 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: efb8561c54669af4499fe71e169e4fd4, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-5064703595986297986 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 21fast + 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: 94706ade92b7fd5449d292d2a439a628, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-5045694569336194735 +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: -2506907694492837861} + m_Position: {x: 620, y: 410, z: 0} + - serializedVersion: 1 + m_State: {fileID: -5064703595986297986} + m_Position: {x: 560, y: 340, z: 0} + - serializedVersion: 1 + m_State: {fileID: 9044379955851518190} + m_Position: {x: 280, y: 330, z: 0} + - serializedVersion: 1 + m_State: {fileID: 3623983970441685222} + m_Position: {x: 60, y: 730, z: 0} + - serializedVersion: 1 + m_State: {fileID: -4667180822260113795} + m_Position: {x: 500, y: 280, z: 0} + - serializedVersion: 1 + m_State: {fileID: 7169455522230573769} + m_Position: {x: 280, y: 730, z: 0} + - serializedVersion: 1 + m_State: {fileID: 5419953838704654279} + m_Position: {x: 280, y: 680, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8429443605319092250} + m_Position: {x: 280, y: 630, z: 0} + - serializedVersion: 1 + m_State: {fileID: 7398568137950400868} + m_Position: {x: 280, y: 580, z: 0} + - serializedVersion: 1 + m_State: {fileID: 373338801008644649} + m_Position: {x: 280, y: 530, z: 0} + - serializedVersion: 1 + m_State: {fileID: -74794006570555475} + m_Position: {x: 280, y: 480, z: 0} + - serializedVersion: 1 + m_State: {fileID: -204742945065024511} + m_Position: {x: 280, y: 430, z: 0} + - serializedVersion: 1 + m_State: {fileID: 4100282048838387496} + m_Position: {x: 280, y: 380, z: 0} + - serializedVersion: 1 + m_State: {fileID: -5706156902944915542} + m_Position: {x: 280, y: 280, z: 0} + - serializedVersion: 1 + m_State: {fileID: -4692019618389496674} + m_Position: {x: 60, y: 680, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8039212117276370209} + m_Position: {x: 60, y: 630, z: 0} + - serializedVersion: 1 + m_State: {fileID: 1495362257365149987} + m_Position: {x: 60, y: 580, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8665894080583645181} + m_Position: {x: 60, y: 530, z: 0} + - serializedVersion: 1 + m_State: {fileID: -7672223019517459350} + m_Position: {x: 60, y: 480, z: 0} + - serializedVersion: 1 + m_State: {fileID: -1228686356075902728} + m_Position: {x: 60, y: 430, z: 0} + - serializedVersion: 1 + m_State: {fileID: -5605059981752272019} + m_Position: {x: 60, y: 380, z: 0} + - serializedVersion: 1 + m_State: {fileID: -3088592069588979446} + m_Position: {x: 60, y: 330, z: 0} + - serializedVersion: 1 + m_State: {fileID: -7306158051742997111} + m_Position: {x: 60, y: 280, z: 0} + - serializedVersion: 1 + m_State: {fileID: 7212383675664821216} + m_Position: {x: 30, y: 220, 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: 7212383675664821216} +--- !u!1102 &-4692019618389496674 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 9 + 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: 7e7f8de2da4bbc44784a0e1435d7aa00, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-4667180822260113795 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 21just + 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: 2ee1325df2331ee4bb72138f1e3fa828, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-3088592069588979446 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 2 + 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: 50ef62b3515bfc749bc72dbe73fb76c1, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-2506907694492837861 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 21late + 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: 1b465089417092349b8e2f7bed80c35c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-1228686356075902728 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 4 + 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: 7168d4a8788b6ef4aab78138e3b869dd, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-204742945065024511 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 14 + 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: 7a7f3829f3a28ba41972b63e3cb5eb5c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-74794006570555475 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 15 + 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: 7c227d9597556384e80eaa6a5cc5cc5a, 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: fudePos-face_kr + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -5045694569336194735} + 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 &373338801008644649 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 16 + 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: 6d9704e7e512052479482da96a2eb989, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1495362257365149987 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 7 + 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: aad378381d4e52a4697803a498faeb06, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &3623983970441685222 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 10 + 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: a0c5765c78478944581b4d47592cc9ea, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &4100282048838387496 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 13 + 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: 7ef8148a618e4f147b2b5cb770812616, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &5419953838704654279 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 19 + 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: 62e8ae1fb9ae7bd4f99fd8dac80d164c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &7169455522230573769 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 20 + 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: c3cde4110c3c3d9429f9679f40471f2a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &7212383675664821216 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: fudePos-face_kr00 + 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: 81161defccafb6b4cb11cf3d7362aba7, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &7398568137950400868 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 17 + 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: a761dabbad46f85408c436865f303756, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8039212117276370209 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 8 + 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: 5bac4817c5f593d48bf815c912ddb29c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8429443605319092250 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 18 + 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: 005cce2aac987b9428fd549d3f14504c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8665894080583645181 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 6 + 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: 9c088e5e2dba2ee408a52773340d96c5, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &9044379955851518190 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 12 + 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: e8eb23c023b117d4984ae54328609336, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face_kr/fudePos-face_kr.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face_kr/fudePos-face_kr.controller.meta new file mode 100644 index 000000000..8ea074d4e --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face_kr/fudePos-face_kr.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f48491b79b5d9ee4ab15846353b187d3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-face_kr.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face_kr/paper-face_kr.controller similarity index 84% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-face_kr.controller rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face_kr/paper-face_kr.controller index de071d9a8..e65ce528c 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-face_kr.controller +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face_kr/paper-face_kr.controller @@ -7,7 +7,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr05 + m_Name: 5 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -33,7 +33,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr02 + m_Name: 2 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -90,12 +90,6 @@ AnimatorStateMachine: - serializedVersion: 1 m_State: {fileID: -6292010483678719761} m_Position: {x: 260, y: 20, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7161411149177303054} - m_Position: {x: 260, y: 110, z: 0} - - serializedVersion: 1 - m_State: {fileID: 3451165278634013492} - m_Position: {x: 295, y: 175, z: 0} - serializedVersion: 1 m_State: {fileID: -458710183564115475} m_Position: {x: 330, y: 240, z: 0} @@ -113,7 +107,7 @@ AnimatorStateMachine: m_Position: {x: 470, y: 500, z: 0} - serializedVersion: 1 m_State: {fileID: 1645530807830961639} - m_Position: {x: 505, y: 565, z: 0} + m_Position: {x: 500, y: 570, z: 0} - serializedVersion: 1 m_State: {fileID: 7452276027900826081} m_Position: {x: 540, y: 630, z: 0} @@ -147,15 +141,12 @@ AnimatorStateMachine: - serializedVersion: 1 m_State: {fileID: 493317685735488380} m_Position: {x: 890, y: 1280, z: 0} - - serializedVersion: 1 - m_State: {fileID: 2755722621842520282} - m_Position: {x: 925, y: 1345, z: 0} - serializedVersion: 1 m_State: {fileID: -2939514585784333615} - m_Position: {x: 960, y: 1410, z: 0} + m_Position: {x: 930, y: 1350, z: 0} - serializedVersion: 1 m_State: {fileID: 4554014245356472744} - m_Position: {x: 995, y: 1475, z: 0} + m_Position: {x: 960, y: 1410, z: 0} m_ChildStateMachines: [] m_AnyStateTransitions: [] m_EntryTransitions: [] @@ -173,7 +164,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr14 + m_Name: 14 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -199,7 +190,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr19 + m_Name: 19 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -225,7 +216,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr21-fast + m_Name: 21fast m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -251,7 +242,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr15 + m_Name: 15 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -277,7 +268,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr11 + m_Name: 11 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -303,7 +294,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr01 + m_Name: 1 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -351,7 +342,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr21-just + m_Name: 21just m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -377,7 +368,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr08 + m_Name: 8 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -396,32 +387,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &2755722621842520282 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr22-end - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: c18c94aafaddeba4fa8b5aca0c927948, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &2815808817812892935 AnimatorState: serializedVersion: 6 @@ -429,7 +394,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr13 + m_Name: 13 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -448,32 +413,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &3451165278634013492 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr00 - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 2c9288b1a703a7f459e3822284718893, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &4554014245356472744 AnimatorState: serializedVersion: 6 @@ -481,7 +420,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr21-late + m_Name: 21late m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -507,7 +446,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr04 + m_Name: 4 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -533,7 +472,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr18 + m_Name: 18 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -559,7 +498,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr16 + m_Name: 16 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -585,7 +524,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr17 + m_Name: 17 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -604,32 +543,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &7161411149177303054 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-init - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 263bdf3b21bad5e42ab125b4f2e29344, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &7452276027900826081 AnimatorState: serializedVersion: 6 @@ -637,7 +550,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr09 + m_Name: 9 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -663,7 +576,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr20 + m_Name: 20 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -689,7 +602,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-face_kr06 + m_Name: 6 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-face_kr.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face_kr/paper-face_kr.controller.meta similarity index 100% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-face_kr.controller.meta rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/face_kr/paper-face_kr.controller.meta diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/fudePos.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/fudePos.controller index 489e05e85..fc98a0a79 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/fudePos.controller +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/fudePos.controller @@ -1,655 +1,5 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: ---- !u!1102 &-9044908862180446885 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face21-just - 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: 2ee1325df2331ee4bb72138f1e3fa828, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-8896183735742043496 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-sun07-just - 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: 429d2a6cb7fadec498550c18af2512d3, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-8888069216872180850 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-kokoro04-fast - 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: 7f03bd3a43dabcb489ea3c37bb36efca, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-8866764938207252913 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face10 - 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: a0c5765c78478944581b4d47592cc9ea, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-8570468295486733057 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-comma02-miss - 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: 7b3e553f527ef1a4f99ad41575b62e6c, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-8520208218375142152 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-onore07-just - 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: 3d499144ca1ede1449f3cf34190c8167, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-8513016082158584728 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-sun07-miss - 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: b6048099cb864c345a874ad3de00e74a, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-8283314949215002757 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face03 - 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: 2f59f20466bdcd547846d6c0766a90ce, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-8184168049185127996 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-comma00 - 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: 624998c96b9febc45aff9a090457eebe, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-7695259267961688207 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-re02 - 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: 301c3f9ca6ecaae41b6ba59f2a05047f, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-7672223019517459350 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr05 - 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: c289842cde784fa419f3d6bf061d245b, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-7306158051742997111 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr01 - 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: 3ac72efb68a8f134199c9db3c2ebf457, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-7087169145560198026 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-onore06 - 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: b97d53241f77a2841bbc74a5c16b5964, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-6751519891441227894 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-sun07-fast - 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: 4c2af75136fdd11408f864a303f3ee85, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-6544540281406755334 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-re03-late - 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: 60c64cd901892f949a2785ff86140717, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-6117014397033859757 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face00 - 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: 81161defccafb6b4cb11cf3d7362aba7, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-5966176318705839067 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-kokoro00 - 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: ec518f8108e001943b7fd0b12fc652d5, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-5706156902944915542 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr11 - 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: 2e4732639e673b04ba3d5236ac41280a, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-5652177210172646846 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face11 - 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: 2e4732639e673b04ba3d5236ac41280a, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-5647289041751309347 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-sun05-just - 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: 9ea7dcfb51e17de48b1e4bfc823b0f18, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-5605059981752272019 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr03 - 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: efb8561c54669af4499fe71e169e4fd4, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-5542575270439367299 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-chikara04 - 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: fcbca72c25e26a749ab645378a982251, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-5264476498642737898 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face14 - 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: 7a7f3829f3a28ba41972b63e3cb5eb5c, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-5174973159894857534 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-kokoro08-late - 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: 2d76cff9a27034643a26cf7c64302fd6, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-5064703595986297986 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr21-fast - 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: 94706ade92b7fd5449d292d2a439a628, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1107 &-5045694569336194735 AnimatorStateMachine: serializedVersion: 6 @@ -661,331 +11,10 @@ AnimatorStateMachine: m_ChildStates: - serializedVersion: 1 m_State: {fileID: 688716125649721742} - m_Position: {x: 200, y: 0, z: 0} - - serializedVersion: 1 - m_State: {fileID: 2918795362906277945} - m_Position: {x: 370, y: 260, z: 0} - - serializedVersion: 1 - m_State: {fileID: -8570468295486733057} - m_Position: {x: 420, y: 330, z: 0} - - serializedVersion: 1 - m_State: {fileID: 3260831569143889301} - m_Position: {x: 420, y: 400, z: 0} - - serializedVersion: 1 - m_State: {fileID: 5882042523823724615} - m_Position: {x: 420, y: 470, z: 0} - - serializedVersion: 1 - m_State: {fileID: -2898621561750013274} - m_Position: {x: 420, y: 540, z: 0} - - serializedVersion: 1 - m_State: {fileID: -8184168049185127996} - m_Position: {x: 340, y: 200, z: 0} - - serializedVersion: 1 - m_State: {fileID: -3989720767082847083} - m_Position: {x: 0, y: 200, z: 0} - - serializedVersion: 1 - m_State: {fileID: 6893683294278431745} - m_Position: {x: 30, y: 270, z: 0} - - serializedVersion: 1 - m_State: {fileID: -7695259267961688207} - m_Position: {x: 70, y: 330, z: 0} - - serializedVersion: 1 - m_State: {fileID: 5989796956022979887} - m_Position: {x: 100, y: 400, z: 0} - - serializedVersion: 1 - m_State: {fileID: -1920335506474462021} - m_Position: {x: 110, y: 460, z: 0} - - serializedVersion: 1 - m_State: {fileID: -6544540281406755334} - m_Position: {x: 110, y: 530, z: 0} - - serializedVersion: 1 - m_State: {fileID: 4780194177807260741} - m_Position: {x: 670, y: 180, z: 0} - - serializedVersion: 1 - m_State: {fileID: 2287713247147900331} - m_Position: {x: 710, y: 240, z: 0} - - serializedVersion: 1 - m_State: {fileID: 8922504338225610916} - m_Position: {x: 740, y: 310, z: 0} - - serializedVersion: 1 - m_State: {fileID: -1650211703734179367} - m_Position: {x: 820, y: 370, z: 0} - - serializedVersion: 1 - m_State: {fileID: -5542575270439367299} - m_Position: {x: 850, y: 440, z: 0} - - serializedVersion: 1 - m_State: {fileID: 5245885025326189028} - m_Position: {x: 890, y: 500, z: 0} - - serializedVersion: 1 - m_State: {fileID: 6032152587410807120} - m_Position: {x: 920, y: 570, z: 0} - - serializedVersion: 1 - m_State: {fileID: 8113865168917302246} - m_Position: {x: 960, y: 630, z: 0} - - serializedVersion: 1 - m_State: {fileID: -567491019117653859} - m_Position: {x: 990, y: 700, z: 0} - - serializedVersion: 1 - m_State: {fileID: 5569691216784704425} - m_Position: {x: 1030, y: 760, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7943524146806299700} - m_Position: {x: 1190, y: 170, z: 0} - - serializedVersion: 1 - m_State: {fileID: -4587547179366429921} - m_Position: {x: 1230, y: 230, z: 0} - - serializedVersion: 1 - m_State: {fileID: 796567457761079693} - m_Position: {x: 1260, y: 300, z: 0} - - serializedVersion: 1 - m_State: {fileID: 9058553283062097933} - m_Position: {x: 1300, y: 360, z: 0} - - serializedVersion: 1 - m_State: {fileID: 2161959869525361364} - m_Position: {x: 1330, y: 430, z: 0} - - serializedVersion: 1 - m_State: {fileID: 4612764116989200539} - m_Position: {x: 1370, y: 490, z: 0} - - serializedVersion: 1 - m_State: {fileID: -7087169145560198026} - m_Position: {x: 1400, y: 560, z: 0} - - serializedVersion: 1 - m_State: {fileID: -8520208218375142152} - m_Position: {x: 1440, y: 620, z: 0} - - serializedVersion: 1 - m_State: {fileID: 4677035442694287310} - m_Position: {x: 1470, y: 690, z: 0} - - serializedVersion: 1 - m_State: {fileID: -1843095707777612858} - m_Position: {x: 1510, y: 750, z: 0} - - serializedVersion: 1 - m_State: {fileID: 6642123056298790608} - m_Position: {x: 1660, y: 170, z: 0} - - serializedVersion: 1 - m_State: {fileID: 5187415593737760393} - m_Position: {x: 1700, y: 230, z: 0} - - serializedVersion: 1 - m_State: {fileID: -4197393870582957797} - m_Position: {x: 1730, y: 300, z: 0} - - serializedVersion: 1 - m_State: {fileID: -4947469469024941547} - m_Position: {x: 1770, y: 360, z: 0} - - serializedVersion: 1 - m_State: {fileID: -944908181458574488} - m_Position: {x: 1800, y: 430, z: 0} - - serializedVersion: 1 - m_State: {fileID: -5647289041751309347} - m_Position: {x: 1840, y: 490, z: 0} - - serializedVersion: 1 - m_State: {fileID: 6951896023358866966} - m_Position: {x: 1880, y: 560, z: 0} - - serializedVersion: 1 - m_State: {fileID: -8896183735742043496} - m_Position: {x: 1910, y: 630, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7838987002804344183} - m_Position: {x: 1940, y: 700, z: 0} - - serializedVersion: 1 - m_State: {fileID: -167105185120364710} - m_Position: {x: 1980, y: 760, z: 0} - - serializedVersion: 1 - m_State: {fileID: -8513016082158584728} - m_Position: {x: 2020, y: 820, z: 0} - - serializedVersion: 1 - m_State: {fileID: 1346655857345384176} - m_Position: {x: 2050, y: 890, z: 0} - - serializedVersion: 1 - m_State: {fileID: 9069138188814420382} - m_Position: {x: 2080, y: 960, z: 0} - - serializedVersion: 1 - m_State: {fileID: -6751519891441227894} - m_Position: {x: 2120, y: 1020, z: 0} - - serializedVersion: 1 - m_State: {fileID: -5966176318705839067} - m_Position: {x: 2340, y: 170, z: 0} - - serializedVersion: 1 - m_State: {fileID: 8883035946165983086} - m_Position: {x: 2370, y: 240, z: 0} - - serializedVersion: 1 - m_State: {fileID: 8957637539848904288} - m_Position: {x: 2410, y: 310, z: 0} - - serializedVersion: 1 - m_State: {fileID: -2136779118283119794} - m_Position: {x: 2460, y: 380, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7645423230781282349} - m_Position: {x: 2490, y: 450, z: 0} - - serializedVersion: 1 - m_State: {fileID: 4609787087194337959} - m_Position: {x: 2530, y: 510, z: 0} - - serializedVersion: 1 - m_State: {fileID: 3962403133288345306} - m_Position: {x: 2560, y: 580, z: 0} - - serializedVersion: 1 - m_State: {fileID: -1486766126522821310} - m_Position: {x: 2600, y: 640, z: 0} - - serializedVersion: 1 - m_State: {fileID: 5081024327976056949} - m_Position: {x: 2630, y: 710, z: 0} - - serializedVersion: 1 - m_State: {fileID: -8888069216872180850} - m_Position: {x: 2660, y: 770, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7135275098362957453} - m_Position: {x: 2700, y: 840, z: 0} - - serializedVersion: 1 - m_State: {fileID: -344373030651575271} - m_Position: {x: 2740, y: 910, z: 0} - - serializedVersion: 1 - m_State: {fileID: -5174973159894857534} - m_Position: {x: 2770, y: 970, z: 0} - - serializedVersion: 1 - m_State: {fileID: -6117014397033859757} - m_Position: {x: 3070, y: 150, z: 0} - - serializedVersion: 1 - m_State: {fileID: 8353509188919030637} - m_Position: {x: 3080, y: 160, z: 0} - - serializedVersion: 1 - m_State: {fileID: 108073847451682053} - m_Position: {x: 3090, y: 170, z: 0} - - serializedVersion: 1 - m_State: {fileID: -8283314949215002757} - m_Position: {x: 3100, y: 180, z: 0} - - serializedVersion: 1 - m_State: {fileID: 5410900248127398616} - m_Position: {x: 3110, y: 190, z: 0} - - serializedVersion: 1 - m_State: {fileID: 4611079531815405373} - m_Position: {x: 3120, y: 200, z: 0} - - serializedVersion: 1 - m_State: {fileID: 6591158783846214960} - m_Position: {x: 3130, y: 210, z: 0} - - serializedVersion: 1 - m_State: {fileID: 2823797944274991996} - m_Position: {x: 3140, y: 220, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7437942790592284624} - m_Position: {x: 3150, y: 230, z: 0} - - serializedVersion: 1 - m_State: {fileID: 4864342793764696706} - m_Position: {x: 3160, y: 240, z: 0} - - serializedVersion: 1 - m_State: {fileID: -5652177210172646846} - m_Position: {x: 3250, y: 310, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7964123940561494418} - m_Position: {x: 3310, y: 360, z: 0} - - serializedVersion: 1 - m_State: {fileID: -5264476498642737898} - m_Position: {x: 3380, y: 410, z: 0} - - serializedVersion: 1 - m_State: {fileID: 4897313723434638611} - m_Position: {x: 3430, y: 460, z: 0} - - serializedVersion: 1 - m_State: {fileID: -3982070528520397331} - m_Position: {x: 3470, y: 510, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7036343796381602848} - m_Position: {x: 3520, y: 560, z: 0} - - serializedVersion: 1 - m_State: {fileID: 3554320142238368202} - m_Position: {x: 3560, y: 610, z: 0} - - serializedVersion: 1 - m_State: {fileID: 8020154116083598097} - m_Position: {x: 3600, y: 660, z: 0} - - serializedVersion: 1 - m_State: {fileID: 8853823750874060483} - m_Position: {x: 3640, y: 700, z: 0} - - serializedVersion: 1 - m_State: {fileID: -9044908862180446885} - m_Position: {x: 3660, y: 740, z: 0} - - serializedVersion: 1 - m_State: {fileID: -8866764938207252913} - m_Position: {x: 3700, y: 800, z: 0} - - serializedVersion: 1 - m_State: {fileID: 91295148143126997} - m_Position: {x: 3750, y: 870, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7370799835463495085} - m_Position: {x: 3780, y: 940, z: 0} - - serializedVersion: 1 - m_State: {fileID: -3864375151107292210} - m_Position: {x: 3820, y: 1000, z: 0} - - serializedVersion: 1 - m_State: {fileID: -2506907694492837861} - m_Position: {x: 5100, y: 990, z: 0} - - serializedVersion: 1 - m_State: {fileID: -5064703595986297986} - m_Position: {x: 5040, y: 920, z: 0} - - serializedVersion: 1 - m_State: {fileID: 9044379955851518190} - m_Position: {x: 4680, y: 420, z: 0} - - serializedVersion: 1 - m_State: {fileID: 3623983970441685222} - m_Position: {x: 4610, y: 330, z: 0} - - serializedVersion: 1 - m_State: {fileID: -4667180822260113795} - m_Position: {x: 4980, y: 860, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7169455522230573769} - m_Position: {x: 4960, y: 820, z: 0} - - serializedVersion: 1 - m_State: {fileID: 5419953838704654279} - m_Position: {x: 4920, y: 780, z: 0} - - serializedVersion: 1 - m_State: {fileID: 8429443605319092250} - m_Position: {x: 4880, y: 730, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7398568137950400868} - m_Position: {x: 4840, y: 680, z: 0} - - serializedVersion: 1 - m_State: {fileID: 373338801008644649} - m_Position: {x: 4790, y: 630, z: 0} - - serializedVersion: 1 - m_State: {fileID: -74794006570555475} - m_Position: {x: 4750, y: 580, z: 0} - - serializedVersion: 1 - m_State: {fileID: -204742945065024511} - m_Position: {x: 4700, y: 530, z: 0} - - serializedVersion: 1 - m_State: {fileID: 4100282048838387496} - m_Position: {x: 4670, y: 480, z: 0} - - serializedVersion: 1 - m_State: {fileID: -5706156902944915542} - m_Position: {x: 4600, y: 380, z: 0} - - serializedVersion: 1 - m_State: {fileID: -4692019618389496674} - m_Position: {x: 4540, y: 270, z: 0} - - serializedVersion: 1 - m_State: {fileID: 8039212117276370209} - m_Position: {x: 4470, y: 220, z: 0} - - serializedVersion: 1 - m_State: {fileID: 1495362257365149987} - m_Position: {x: 4430, y: 160, z: 0} - - serializedVersion: 1 - m_State: {fileID: 8665894080583645181} - m_Position: {x: 4430, y: 500, z: 0} - - serializedVersion: 1 - m_State: {fileID: -7672223019517459350} - m_Position: {x: 4370, y: 430, z: 0} - - serializedVersion: 1 - m_State: {fileID: -1228686356075902728} - m_Position: {x: 4330, y: 370, z: 0} - - serializedVersion: 1 - m_State: {fileID: -5605059981752272019} - m_Position: {x: 4300, y: 320, z: 0} - - serializedVersion: 1 - m_State: {fileID: -3088592069588979446} - m_Position: {x: 4250, y: 270, z: 0} - - serializedVersion: 1 - m_State: {fileID: -7306158051742997111} - m_Position: {x: 4200, y: 210, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7212383675664821216} - m_Position: {x: 4160, y: 160, z: 0} + m_Position: {x: 260, y: 10, z: 0} - serializedVersion: 1 m_State: {fileID: 7819119538450986384} - m_Position: {x: 4195, y: 225, z: 0} + m_Position: {x: 270, y: 110, z: 0} m_ChildStateMachines: [] m_AnyStateTransitions: [] m_EntryTransitions: [] @@ -996,604 +25,6 @@ AnimatorStateMachine: m_ExitPosition: {x: 800, y: 120, z: 0} m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} m_DefaultState: {fileID: 688716125649721742} ---- !u!1102 &-4947469469024941547 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-sun03 - 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: 13c2501f77b087642ad5513e92ae3a9d, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-4692019618389496674 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr09 - 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: 7e7f8de2da4bbc44784a0e1435d7aa00, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-4667180822260113795 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr21-just - 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: 2ee1325df2331ee4bb72138f1e3fa828, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-4587547179366429921 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-onore01 - 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: f0369b156b8efa8488867285b545207b, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-4197393870582957797 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-sun02 - 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: 9cb1585d4a4c7194eb6fa97ce40d6704, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-3989720767082847083 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-re00 - 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: 01e9ffc9da1e66643a456b63a3e305b5, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-3982070528520397331 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face16 - 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: 6d9704e7e512052479482da96a2eb989, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-3864375151107292210 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face21-late - 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: 1b465089417092349b8e2f7bed80c35c, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-3088592069588979446 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr02 - 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: 50ef62b3515bfc749bc72dbe73fb76c1, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-2898621561750013274 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-comma02-late - 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: 4d5fe318c2a004b459d10ffdc3611a40, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-2506907694492837861 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr21-late - 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: 1b465089417092349b8e2f7bed80c35c, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-2136779118283119794 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-kokoro03 - 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: e8f86f009bef7e84eb41012a2a16466a, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-1920335506474462021 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-re03-fast - 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: 0665d4095eb136e40a439b5f51260e14, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-1843095707777612858 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-onore07-late - 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: e7ee02656589d8748b6320fb0e231bf8, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-1650211703734179367 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-chikara03 - 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: 374a9855b64023a4291a10eeea75a4e1, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-1486766126522821310 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-kokoro07 - 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: c92fc28f19cf3b048a27af34005749f1, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-1228686356075902728 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr04 - 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: 7168d4a8788b6ef4aab78138e3b869dd, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-944908181458574488 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-sun04 - 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: e36b3e967b4cddf4f90c42957f26e746, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-567491019117653859 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-chikara07-late - 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: 7caeb0d9d44c7114e9492c1554408b6f, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-344373030651575271 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-kokoro08-fast - 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: 8cc21cf7c9b9e9c4ab41108e46f46406, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-204742945065024511 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr14 - 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: 7a7f3829f3a28ba41972b63e3cb5eb5c, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-167105185120364710 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-sun05-late - 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: 8f3e4fb4f31f64841bba836fbf8a9e15, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-74794006570555475 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr15 - 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: 7c227d9597556384e80eaa6a5cc5cc5a, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!91 &9100000 AnimatorController: m_ObjectHideFlags: 0 @@ -1616,84 +47,6 @@ AnimatorController: m_IKPass: 0 m_SyncedLayerAffectsTiming: 0 m_Controller: {fileID: 9100000} ---- !u!1102 &91295148143126997 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face12 - 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: e8eb23c023b117d4984ae54328609336, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &108073847451682053 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face02 - 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: 50ef62b3515bfc749bc72dbe73fb76c1, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &373338801008644649 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr16 - 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: 6d9704e7e512052479482da96a2eb989, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &688716125649721742 AnimatorState: serializedVersion: 6 @@ -1720,1046 +73,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &796567457761079693 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-onore02 - 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: 4b06b8a56739fd74cb1043483e4c37b3, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &1346655857345384176 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-sun07-miss - 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: 40456d994ac05ec4bbc66b72986100eb, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &1495362257365149987 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr07 - 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: aad378381d4e52a4697803a498faeb06, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &2161959869525361364 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-onore04 - 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: 391e6603d1030a74c9aaae9da6441ed6, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &2287713247147900331 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-chikara01 - 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: e74555bf541d15a44b93b8a8107fa9c9, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &2823797944274991996 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face07 - 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: aad378381d4e52a4697803a498faeb06, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &2918795362906277945 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-comma01 - 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: 5706e79ef6586d841917d6e88cf05246, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &3260831569143889301 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-comma02-fast - 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: 467cd8f7cb3c2a444a20fbc526ae08c8, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &3554320142238368202 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face18 - 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: 005cce2aac987b9428fd549d3f14504c, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &3623983970441685222 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr10 - 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: a0c5765c78478944581b4d47592cc9ea, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &3962403133288345306 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-kokoro06 - 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: ede213cda7195a647a448abd176f4f8b, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &4100282048838387496 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr13 - 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: 7ef8148a618e4f147b2b5cb770812616, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &4609787087194337959 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-kokoro05 - 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: f8da7b705f6e39a49b73e313d74f0e94, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &4611079531815405373 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face05 - 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: 8d0e2e6f7724be34a9567f03549bf16e, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &4612764116989200539 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-onore05 - 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: 43fa5bffa2233e945b59519a36fe3991, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &4677035442694287310 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-onore07-fast - 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: 276ccd9a9d1b10640bcda2d0391c654d, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &4780194177807260741 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-chikara00 - 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: ef5b218d28b40834d800859b3e935c9e, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &4864342793764696706 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face09 - 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: 7e7f8de2da4bbc44784a0e1435d7aa00, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &4897313723434638611 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face15 - 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: 7c227d9597556384e80eaa6a5cc5cc5a, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &5081024327976056949 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-kokoro08-just - 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: 32c0f2cd8cf42e34db7cddf94a4e9f0a, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &5187415593737760393 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-sun01 - 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: 35cc2c712796bd2479224bfb7de91e6c, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &5245885025326189028 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-chikara05 - 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: 18bf0ab5bdfbb2840bd85f27161a6b1d, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &5410900248127398616 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face04 - 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: b5accb4e566b7604099ff1e98e5b3fe5, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &5419953838704654279 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr19 - 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: 62e8ae1fb9ae7bd4f99fd8dac80d164c, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &5569691216784704425 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-chikara07-fast - 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: 43c74046861e2dd4d815181e3f5cfb9b, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &5882042523823724615 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-comma02-just - 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: cbb5f775c14b03847a7066618c24cdb1, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &5989796956022979887 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-re03-just - 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: 9e39db294b8d2ed42badc262d5646d28, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &6032152587410807120 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-chikara06 - 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: 0362e4864915d9240bd4a5e0d5a26eca, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &6591158783846214960 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face06 - 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: 9c3f6eed342f6b34793076ee53f47a44, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &6642123056298790608 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-sun00 - 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: 84f311f9eef0bb24793b1cc9bdb500ec, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &6893683294278431745 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-re01 - 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: 3eedbf04c3cea64499a492d792db4724, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &6951896023358866966 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-sun06 - 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: b1cce47a4b8dc13439e34dafbc48648a, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &7036343796381602848 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face17 - 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: a761dabbad46f85408c436865f303756, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &7135275098362957453 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-kokoro04-late - 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: ed85beda1e652334f84658a0c31a92df, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &7169455522230573769 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr20 - 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: c3cde4110c3c3d9429f9679f40471f2a, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &7212383675664821216 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr00 - 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: 81161defccafb6b4cb11cf3d7362aba7, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &7370799835463495085 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face21-fast - 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: 94706ade92b7fd5449d292d2a439a628, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &7398568137950400868 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr17 - 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: a761dabbad46f85408c436865f303756, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &7437942790592284624 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face08 - 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: 5bac4817c5f593d48bf815c912ddb29c, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &7645423230781282349 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-kokoro04-just - 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: 97b22d4255517e643bc1a0c029fd23bf, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &7819119538450986384 AnimatorState: serializedVersion: 6 @@ -2786,419 +99,3 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &7838987002804344183 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-sun05-fast - 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: ec4b28227c587314fac1b8d523c2ea5b, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &7943524146806299700 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-onore00 - 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: 963128fa34309fd4d99c75f7a1c802a2, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &7964123940561494418 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face13 - 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: 7ef8148a618e4f147b2b5cb770812616, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &8020154116083598097 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face19 - 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: 62e8ae1fb9ae7bd4f99fd8dac80d164c, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &8039212117276370209 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr08 - 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: 5bac4817c5f593d48bf815c912ddb29c, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &8113865168917302246 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-chikara07-just - 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: 1e030ad50e569d34997096f4ca53d6f9, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &8353509188919030637 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face01 - 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: 3ac72efb68a8f134199c9db3c2ebf457, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &8429443605319092250 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr18 - 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: 005cce2aac987b9428fd549d3f14504c, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &8665894080583645181 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr06 - 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: 9c088e5e2dba2ee408a52773340d96c5, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &8853823750874060483 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face20 - 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: c3cde4110c3c3d9429f9679f40471f2a, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &8883035946165983086 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-kokoro01 - 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: 670236abe1c6316489039267947f687f, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &8922504338225610916 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-chikara02 - 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: bad93b824be01174abb8aba2525825f6, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &8957637539848904288 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-kokoro02 - 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: 41362beb7703d164b9f059fb3557cde4, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &9044379955851518190 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-face_kr12 - 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: e8eb23c023b117d4984ae54328609336, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &9058553283062097933 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-onore03 - 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: 2e84e43fc887a634b8547c06a45bca9f, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &9069138188814420382 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: fudePos-sun07-late - 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: b6cf7d57f3035134cb3f8dd4a272eb4e, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/fudePos-kokoro.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/fudePos-kokoro.controller new file mode 100644 index 000000000..9df333438 --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/fudePos-kokoro.controller @@ -0,0 +1,420 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-8888069216872180850 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 4fast + 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: 7f03bd3a43dabcb489ea3c37bb36efca, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-5966176318705839067 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: fudePos-kokoro00 + 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: ec518f8108e001943b7fd0b12fc652d5, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-5174973159894857534 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 8late + 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: 2d76cff9a27034643a26cf7c64302fd6, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-5045694569336194735 +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: -5966176318705839067} + m_Position: {x: 120, y: 200, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8883035946165983086} + m_Position: {x: 150, y: 270, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8957637539848904288} + m_Position: {x: 190, y: 340, z: 0} + - serializedVersion: 1 + m_State: {fileID: -2136779118283119794} + m_Position: {x: 240, y: 410, z: 0} + - serializedVersion: 1 + m_State: {fileID: 7645423230781282349} + m_Position: {x: 270, y: 480, z: 0} + - serializedVersion: 1 + m_State: {fileID: 4609787087194337959} + m_Position: {x: 370, y: 680, z: 0} + - serializedVersion: 1 + m_State: {fileID: 3962403133288345306} + m_Position: {x: 400, y: 750, z: 0} + - serializedVersion: 1 + m_State: {fileID: -1486766126522821310} + m_Position: {x: 440, y: 810, z: 0} + - serializedVersion: 1 + m_State: {fileID: 5081024327976056949} + m_Position: {x: 470, y: 880, z: 0} + - serializedVersion: 1 + m_State: {fileID: -8888069216872180850} + m_Position: {x: 300, y: 540, z: 0} + - serializedVersion: 1 + m_State: {fileID: 7135275098362957453} + m_Position: {x: 340, y: 610, z: 0} + - serializedVersion: 1 + m_State: {fileID: -344373030651575271} + m_Position: {x: 520, y: 940, z: 0} + - serializedVersion: 1 + m_State: {fileID: -5174973159894857534} + m_Position: {x: 550, y: 1000, 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: -5966176318705839067} +--- !u!1102 &-2136779118283119794 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 3 + 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: e8f86f009bef7e84eb41012a2a16466a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-1486766126522821310 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 7 + 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: c92fc28f19cf3b048a27af34005749f1, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-344373030651575271 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 8fast + 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: 8cc21cf7c9b9e9c4ab41108e46f46406, 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: fudePos-kokoro + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -5045694569336194735} + 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 &3962403133288345306 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 6 + 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: ede213cda7195a647a448abd176f4f8b, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &4609787087194337959 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 5 + 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: f8da7b705f6e39a49b73e313d74f0e94, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &5081024327976056949 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 8just + 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: 32c0f2cd8cf42e34db7cddf94a4e9f0a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &7135275098362957453 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 4late + 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: ed85beda1e652334f84658a0c31a92df, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &7645423230781282349 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 4just + 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: 97b22d4255517e643bc1a0c029fd23bf, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8883035946165983086 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 1 + 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: 670236abe1c6316489039267947f687f, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8957637539848904288 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 2 + 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: 41362beb7703d164b9f059fb3557cde4, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/fudePos-kokoro.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/fudePos-kokoro.controller.meta new file mode 100644 index 000000000..6287aca10 --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/fudePos-kokoro.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5f177e11df69719468cd43da143c95f1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-kokoro.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro.controller similarity index 77% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-kokoro.controller rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro.controller index 24a650f1f..e4135328f 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-kokoro.controller +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro.controller @@ -7,7 +7,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-kokoro04-just + m_Name: 4just m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -59,7 +59,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-kokoro08-just + m_Name: 8just m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -90,24 +90,18 @@ AnimatorStateMachine: - serializedVersion: 1 m_State: {fileID: -6292010483678719761} m_Position: {x: 260, y: 20, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7161411149177303054} - m_Position: {x: 260, y: 110, z: 0} - - serializedVersion: 1 - m_State: {fileID: -1841722698560836030} - m_Position: {x: 60, y: 210, z: 0} - serializedVersion: 1 m_State: {fileID: 3575499845498937083} - m_Position: {x: 90, y: 270, z: 0} + m_Position: {x: 80, y: 220, z: 0} - serializedVersion: 1 m_State: {fileID: 6570159651370322496} - m_Position: {x: 130, y: 340, z: 0} + m_Position: {x: 120, y: 290, z: 0} - serializedVersion: 1 m_State: {fileID: 35157827454723669} - m_Position: {x: 160, y: 400, z: 0} + m_Position: {x: 150, y: 350, z: 0} - serializedVersion: 1 m_State: {fileID: -7792696717148893723} - m_Position: {x: 200, y: 470, z: 0} + m_Position: {x: 190, y: 420, z: 0} - serializedVersion: 1 m_State: {fileID: 4573349196033991098} m_Position: {x: 270, y: 600, z: 0} @@ -125,13 +119,10 @@ AnimatorStateMachine: m_Position: {x: 410, y: 860, z: 0} - serializedVersion: 1 m_State: {fileID: -5428519917814750288} - m_Position: {x: 450, y: 930, z: 0} + m_Position: {x: 190, y: 470, z: 0} - serializedVersion: 1 m_State: {fileID: -2873937293149752913} - m_Position: {x: 480, y: 990, z: 0} - - serializedVersion: 1 - m_State: {fileID: 6120678026701395819} - m_Position: {x: 520, y: 1060, z: 0} + m_Position: {x: 220, y: 530, z: 0} m_ChildStateMachines: [] m_AnyStateTransitions: [] m_EntryTransitions: [] @@ -149,7 +140,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-kokoro04-fast + m_Name: 4fast m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -175,7 +166,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-kokoro04-late + m_Name: 4late m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -201,7 +192,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-kokoro08-late + m_Name: 8late m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -227,7 +218,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-kokoro07 + m_Name: 7 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -246,32 +237,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &-1841722698560836030 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-kokoro00 - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 6ed0bd496237211409115510645ba3e9, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &-580463911079605729 AnimatorState: serializedVersion: 6 @@ -279,7 +244,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-kokoro08-fast + m_Name: 8fast m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -327,7 +292,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-kokoro03 + m_Name: 3 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -353,7 +318,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-kokoro01 + m_Name: 1 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -379,7 +344,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-kokoro06 + m_Name: 6 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -398,32 +363,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &6120678026701395819 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-kokoro09-end - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: c379e603503392547bb92841735f731d, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &6570159651370322496 AnimatorState: serializedVersion: 6 @@ -431,7 +370,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-kokoro02 + m_Name: 2 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -450,29 +389,3 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &7161411149177303054 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-init - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 263bdf3b21bad5e42ab125b4f2e29344, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-kokoro.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro.controller.meta similarity index 100% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-kokoro.controller.meta rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro.controller.meta diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro00.anim b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro00.anim deleted file mode 100644 index 58fd3191a..000000000 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro00.anim +++ /dev/null @@ -1,98 +0,0 @@ -%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: paper-kokoro00 - serializedVersion: 6 - m_Legacy: 0 - m_Compressed: 0 - m_UseHighQualityCurve: 1 - m_RotationCurves: [] - m_CompressedRotationCurves: [] - m_EulerCurves: [] - m_PositionCurves: [] - m_ScaleCurves: [] - m_FloatCurves: - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 - script: {fileID: 0} - m_PPtrCurves: [] - m_SampleRate: 60 - 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: 0 - attribute: 3762991556 - script: {fileID: 0} - typeID: 212 - customType: 26 - isPPtrCurve: 0 - pptrCurveMapping: [] - m_AnimationClipSettings: - serializedVersion: 2 - m_AdditiveReferencePoseClip: {fileID: 0} - m_AdditiveReferencePoseTime: 0 - m_StartTime: 0 - m_StopTime: 0 - 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: - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 - script: {fileID: 0} - m_EulerEditorCurves: [] - m_HasGenericRootTransform: 0 - m_HasMotionFloatCurves: 0 - m_Events: [] diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro00.anim.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro00.anim.meta deleted file mode 100644 index 9cb579912..000000000 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro00.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6ed0bd496237211409115510645ba3e9 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 7400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro09-end.anim.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro09-end.anim.meta deleted file mode 100644 index 65789d0b2..000000000 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/kokoro/paper-kokoro09-end.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c379e603503392547bb92841735f731d -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 7400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/fudePos-onore.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/fudePos-onore.controller new file mode 100644 index 000000000..9a4429ede --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/fudePos-onore.controller @@ -0,0 +1,333 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-8520208218375142152 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 7just + 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: 3d499144ca1ede1449f3cf34190c8167, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-7087169145560198026 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 6 + 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: b97d53241f77a2841bbc74a5c16b5964, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-5045694569336194735 +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: 7943524146806299700} + m_Position: {x: 130, y: 170, z: 0} + - serializedVersion: 1 + m_State: {fileID: -4587547179366429921} + m_Position: {x: 170, y: 230, z: 0} + - serializedVersion: 1 + m_State: {fileID: 796567457761079693} + m_Position: {x: 200, y: 300, z: 0} + - serializedVersion: 1 + m_State: {fileID: 9058553283062097933} + m_Position: {x: 240, y: 350, z: 0} + - serializedVersion: 1 + m_State: {fileID: 2161959869525361364} + m_Position: {x: 270, y: 430, z: 0} + - serializedVersion: 1 + m_State: {fileID: 4612764116989200539} + m_Position: {x: 310, y: 480, z: 0} + - serializedVersion: 1 + m_State: {fileID: -7087169145560198026} + m_Position: {x: 340, y: 560, z: 0} + - serializedVersion: 1 + m_State: {fileID: -8520208218375142152} + m_Position: {x: 380, y: 620, z: 0} + - serializedVersion: 1 + m_State: {fileID: 4677035442694287310} + m_Position: {x: 410, y: 680, z: 0} + - serializedVersion: 1 + m_State: {fileID: -1843095707777612858} + m_Position: {x: 450, y: 750, 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: 7943524146806299700} +--- !u!1102 &-4587547179366429921 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 1 + 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: f0369b156b8efa8488867285b545207b, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-1843095707777612858 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 7late + 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: e7ee02656589d8748b6320fb0e231bf8, 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: fudePos-onore + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -5045694569336194735} + 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 &796567457761079693 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 2 + 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: 4b06b8a56739fd74cb1043483e4c37b3, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &2161959869525361364 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 4 + 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: 391e6603d1030a74c9aaae9da6441ed6, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &4612764116989200539 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 5 + 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: 43fa5bffa2233e945b59519a36fe3991, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &4677035442694287310 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 7fast + 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: 276ccd9a9d1b10640bcda2d0391c654d, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &7943524146806299700 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: fudePos-onore00 + 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: 963128fa34309fd4d99c75f7a1c802a2, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &9058553283062097933 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 3 + 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: 2e84e43fc887a634b8547c06a45bca9f, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/fudePos-onore.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/fudePos-onore.controller.meta new file mode 100644 index 000000000..1c3068f19 --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/fudePos-onore.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: edb61733739b828439684aadcd488b50 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-onore.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore.controller similarity index 74% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-onore.controller rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore.controller index c390f80be..93720169e 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-onore.controller +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore.controller @@ -38,42 +38,33 @@ AnimatorStateMachine: - serializedVersion: 1 m_State: {fileID: -6292010483678719761} m_Position: {x: 260, y: 20, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7161411149177303054} - m_Position: {x: 260, y: 110, z: 0} - - serializedVersion: 1 - m_State: {fileID: 5213061958759105672} - m_Position: {x: 80, y: 230, z: 0} - serializedVersion: 1 m_State: {fileID: 1604726806472645522} - m_Position: {x: 120, y: 300, z: 0} + m_Position: {x: 40, y: 200, z: 0} - serializedVersion: 1 m_State: {fileID: 4519194387456081746} - m_Position: {x: 150, y: 360, z: 0} + m_Position: {x: 70, y: 260, z: 0} - serializedVersion: 1 m_State: {fileID: -2191360048423430383} - m_Position: {x: 190, y: 430, z: 0} + m_Position: {x: 110, y: 330, z: 0} - serializedVersion: 1 m_State: {fileID: 5921410343001610534} - m_Position: {x: 220, y: 490, z: 0} + m_Position: {x: 140, y: 390, z: 0} - serializedVersion: 1 m_State: {fileID: -5308305049909287897} - m_Position: {x: 260, y: 560, z: 0} + m_Position: {x: 180, y: 460, z: 0} - serializedVersion: 1 m_State: {fileID: 5380052526544433841} - m_Position: {x: 290, y: 620, z: 0} + m_Position: {x: 210, y: 510, z: 0} - serializedVersion: 1 m_State: {fileID: 5212988253847301090} - m_Position: {x: 330, y: 690, z: 0} + m_Position: {x: 250, y: 590, z: 0} - serializedVersion: 1 m_State: {fileID: -2605099808401051650} - m_Position: {x: 370, y: 760, z: 0} + m_Position: {x: 290, y: 660, z: 0} - serializedVersion: 1 m_State: {fileID: -3360401893032080706} - m_Position: {x: 400, y: 820, z: 0} - - serializedVersion: 1 - m_State: {fileID: 3382434179874440324} - m_Position: {x: 440, y: 890, z: 0} + m_Position: {x: 320, y: 720, z: 0} m_ChildStateMachines: [] m_AnyStateTransitions: [] m_EntryTransitions: [] @@ -91,7 +82,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-onore05 + m_Name: 5 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -117,7 +108,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-onore07-late + m_Name: 7late m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -143,7 +134,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-onore07-fast + m_Name: 7fast m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -169,7 +160,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-onore03 + m_Name: 3 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -217,7 +208,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-onore01 + m_Name: 1 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -236,32 +227,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &3382434179874440324 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-onore08-end - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 886c7ba892b78ad448124fe15710660d, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &4519194387456081746 AnimatorState: serializedVersion: 6 @@ -269,7 +234,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-onore02 + m_Name: 2 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -295,7 +260,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-onore07-just + m_Name: 7just m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -314,32 +279,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &5213061958759105672 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-onore00 - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 898b51c5264d76b499e9fd17a6eee52a, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &5380052526544433841 AnimatorState: serializedVersion: 6 @@ -347,7 +286,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-onore06 + m_Name: 6 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -373,7 +312,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-onore04 + m_Name: 4 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -392,29 +331,3 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &7161411149177303054 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-init - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 263bdf3b21bad5e42ab125b4f2e29344, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-onore.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore.controller.meta similarity index 100% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-onore.controller.meta rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore.controller.meta diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore00.anim b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore00.anim deleted file mode 100644 index eb6adaa43..000000000 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore00.anim +++ /dev/null @@ -1,98 +0,0 @@ -%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: paper-onore00 - serializedVersion: 6 - m_Legacy: 0 - m_Compressed: 0 - m_UseHighQualityCurve: 1 - m_RotationCurves: [] - m_CompressedRotationCurves: [] - m_EulerCurves: [] - m_PositionCurves: [] - m_ScaleCurves: [] - m_FloatCurves: - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 - script: {fileID: 0} - m_PPtrCurves: [] - m_SampleRate: 60 - 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: 0 - attribute: 3762991556 - script: {fileID: 0} - typeID: 212 - customType: 26 - isPPtrCurve: 0 - pptrCurveMapping: [] - m_AnimationClipSettings: - serializedVersion: 2 - m_AdditiveReferencePoseClip: {fileID: 0} - m_AdditiveReferencePoseTime: 0 - m_StartTime: 0 - m_StopTime: 0 - 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: - - curve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: Infinity - outSlope: Infinity - tangentMode: 103 - weightedMode: 0 - inWeight: 0 - outWeight: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - attribute: m_SortingOrder - path: - classID: 212 - script: {fileID: 0} - m_EulerEditorCurves: [] - m_HasGenericRootTransform: 0 - m_HasMotionFloatCurves: 0 - m_Events: [] diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore00.anim.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore00.anim.meta deleted file mode 100644 index 488fe7a81..000000000 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore00.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 898b51c5264d76b499e9fd17a6eee52a -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 7400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore08-end.anim.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore08-end.anim.meta deleted file mode 100644 index d95014f01..000000000 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/onore/paper-onore08-end.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 886c7ba892b78ad448124fe15710660d -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 7400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-end.anim.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-end.anim.meta index 7a9f8147d..27905d201 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-end.anim.meta +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-end.anim.meta @@ -2,7 +2,7 @@ fileFormatVersion: 2 guid: b99e0ba82b8584c47ad5003046e2774b NativeFormatImporter: externalObjects: {} - mainObjectFileID: 7400000 + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper.controller index 60c3a4861..b9c1ccb79 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper.controller +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper.controller @@ -39,11 +39,8 @@ AnimatorStateMachine: m_State: {fileID: -6292010483678719761} m_Position: {x: 260, y: 20, z: 0} - serializedVersion: 1 - m_State: {fileID: 7161411149177303054} - m_Position: {x: 260, y: 110, z: 0} - - serializedVersion: 1 - m_State: {fileID: -2045279926918801485} - m_Position: {x: 295, y: 175, z: 0} + m_State: {fileID: -611886781324814293} + m_Position: {x: 270, y: 120, z: 0} m_ChildStateMachines: [] m_AnyStateTransitions: [] m_EntryTransitions: [] @@ -54,7 +51,7 @@ AnimatorStateMachine: m_ExitPosition: {x: 140, y: -80, z: 0} m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} m_DefaultState: {fileID: -6292010483678719761} ---- !u!1102 &-2045279926918801485 +--- !u!1102 &-611886781324814293 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 @@ -68,7 +65,7 @@ AnimatorState: m_StateMachineBehaviours: [] m_Position: {x: 50, y: 50, z: 0} m_IKOnFeet: 0 - m_WriteDefaultValues: 0 + m_WriteDefaultValues: 1 m_Mirror: 0 m_SpeedParameterActive: 0 m_MirrorParameterActive: 0 @@ -102,29 +99,3 @@ AnimatorController: m_IKPass: 0 m_SyncedLayerAffectsTiming: 0 m_Controller: {fileID: 9100000} ---- !u!1102 &7161411149177303054 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-init - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 263bdf3b21bad5e42ab125b4f2e29344, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/fudePos-re.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/fudePos-re.controller new file mode 100644 index 000000000..be8f6baeb --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/fudePos-re.controller @@ -0,0 +1,217 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-7695259267961688207 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 2 + 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: 301c3f9ca6ecaae41b6ba59f2a05047f, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-6544540281406755334 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 3late + 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: 60c64cd901892f949a2785ff86140717, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-5045694569336194735 +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: -3989720767082847083} + m_Position: {x: 0, y: 200, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6893683294278431745} + m_Position: {x: 30, y: 270, z: 0} + - serializedVersion: 1 + m_State: {fileID: -7695259267961688207} + m_Position: {x: 70, y: 330, z: 0} + - serializedVersion: 1 + m_State: {fileID: 5989796956022979887} + m_Position: {x: 100, y: 400, z: 0} + - serializedVersion: 1 + m_State: {fileID: -1920335506474462021} + m_Position: {x: 110, y: 460, z: 0} + - serializedVersion: 1 + m_State: {fileID: -6544540281406755334} + m_Position: {x: 110, y: 530, 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: -3989720767082847083} +--- !u!1102 &-3989720767082847083 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: fudePos-re00 + 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: 01e9ffc9da1e66643a456b63a3e305b5, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-1920335506474462021 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 3fast + 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: 0665d4095eb136e40a439b5f51260e14, 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: fudePos-re + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -5045694569336194735} + 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 &5989796956022979887 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 3just + 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: 9e39db294b8d2ed42badc262d5646d28, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &6893683294278431745 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 1 + 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: 3eedbf04c3cea64499a492d792db4724, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/fudePos-re.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/fudePos-re.controller.meta new file mode 100644 index 000000000..17ef685f8 --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/fudePos-re.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e5975b53365f4844fa381834e7fedddb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-comma.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re.controller similarity index 71% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-comma.controller rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re.controller index 0dbfc558b..890451cc5 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-comma.controller +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re.controller @@ -1,5 +1,31 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-9028063261873104851 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 3just + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 0 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: a607b4b413b26c7468fd4bd0fbd12f9c, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: --- !u!1102 &-6292010483678719761 AnimatorState: serializedVersion: 6 @@ -26,6 +52,32 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: +--- !u!1102 &-6284373825970273870 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 1 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 0 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 9144db3b374e1c34fb3e83b07ec18dd3, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: --- !u!1107 &-5593357924424937150 AnimatorStateMachine: serializedVersion: 6 @@ -39,23 +91,20 @@ AnimatorStateMachine: m_State: {fileID: -6292010483678719761} m_Position: {x: 260, y: 20, z: 0} - serializedVersion: 1 - m_State: {fileID: 8786292936139707480} - m_Position: {x: 160, y: 290, z: 0} + m_State: {fileID: -6284373825970273870} + m_Position: {x: 30, y: 270, z: 0} - serializedVersion: 1 - m_State: {fileID: -2809595864687422053} - m_Position: {x: 130, y: 220, z: 0} + m_State: {fileID: -4515971188078934360} + m_Position: {x: 70, y: 330, z: 0} - serializedVersion: 1 - m_State: {fileID: 2652860380271456673} - m_Position: {x: 160, y: 350, z: 0} + m_State: {fileID: -9028063261873104851} + m_Position: {x: 100, y: 400, z: 0} - serializedVersion: 1 - m_State: {fileID: -2749694015844619861} - m_Position: {x: 160, y: 410, z: 0} + m_State: {fileID: 3061722880113446351} + m_Position: {x: 100, y: 460, z: 0} - serializedVersion: 1 - m_State: {fileID: 8108316008410973255} - m_Position: {x: 200, y: 470, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7161411149177303054} - m_Position: {x: 260, y: 110, z: 0} + m_State: {fileID: 4964938421491347055} + m_Position: {x: 100, y: 520, z: 0} m_ChildStateMachines: [] m_AnyStateTransitions: [] m_EntryTransitions: [] @@ -66,14 +115,14 @@ AnimatorStateMachine: m_ExitPosition: {x: 140, y: -80, z: 0} m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} m_DefaultState: {fileID: -6292010483678719761} ---- !u!1102 &-2809595864687422053 +--- !u!1102 &-4515971188078934360 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-comma00 + m_Name: 2 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -86,33 +135,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 212d01503e503b647929c89390d1cf56, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-2749694015844619861 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-comma02-late - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: e1344c1167b3c014f8cebe82db24014a, type: 2} + m_Motion: {fileID: 7400000, guid: c771ec5b07bc95645893f55f03514e0c, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: @@ -124,7 +147,7 @@ AnimatorController: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-comma + m_Name: paper-re serializedVersion: 5 m_AnimatorParameters: [] m_AnimatorLayers: @@ -140,14 +163,14 @@ AnimatorController: m_IKPass: 0 m_SyncedLayerAffectsTiming: 0 m_Controller: {fileID: 9100000} ---- !u!1102 &2652860380271456673 +--- !u!1102 &3061722880113446351 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-comma02-fast + m_Name: 3fast m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -160,20 +183,20 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: f3b81c15de2cc6a46bd24d85c18fc494, type: 2} + m_Motion: {fileID: 7400000, guid: c7d9a7407d1292c4790e51ac5ef94728, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &7161411149177303054 +--- !u!1102 &4964938421491347055 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-init + m_Name: 3late m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -186,59 +209,7 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 263bdf3b21bad5e42ab125b4f2e29344, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &8108316008410973255 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-comma03-end - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 04252305c0990a242a1082cc904b666e, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &8786292936139707480 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-comma02-just - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 1040c77fbf4fc5a48aee49c4eb16ffa7, type: 2} + m_Motion: {fileID: 7400000, guid: b5ba81ada41ad4a46b713a83b405eaed, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-re.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re.controller.meta similarity index 100% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-re.controller.meta rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re.controller.meta diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re00.anim.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re00.anim.meta deleted file mode 100644 index ebe759aca..000000000 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re00.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 64d4cd8faa564ee48a66a0e5cefeeadb -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 7400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re04-end.anim.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re04-end.anim.meta deleted file mode 100644 index cbb556f29..000000000 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/re/paper-re04-end.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5ceb755578e6b9c4c802f7d0bedee71f -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 7400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-chikara.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/fudePos-sun.controller similarity index 67% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-chikara.controller rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/fudePos-sun.controller index 357d10913..a72579584 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-chikara.controller +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/fudePos-sun.controller @@ -1,39 +1,13 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: ---- !u!1102 &-6789605440783501267 +--- !u!1102 &-8896183735742043496 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-chikara00 - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 6ac202c98d6465f4daad74aa3d74a0e2, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &-6292010483678719761 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-none + m_Name: 7just m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -46,39 +20,65 @@ AnimatorState: m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: baccc40d1b647244b891b638501eacf7, type: 2} + m_Motion: {fileID: 7400000, guid: 429d2a6cb7fadec498550c18af2512d3, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &-6082145668641582841 +--- !u!1102 &-6751519891441227894 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-chikara03 + m_Name: 7fast m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] m_StateMachineBehaviours: [] m_Position: {x: 50, y: 50, z: 0} m_IKOnFeet: 0 - m_WriteDefaultValues: 0 + m_WriteDefaultValues: 1 m_Mirror: 0 m_SpeedParameterActive: 0 m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 1fc22f4e58d8e5545b09bbe47ced104b, type: 2} + m_Motion: {fileID: 7400000, guid: 4c2af75136fdd11408f864a303f3ee85, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1107 &-5593357924424937150 +--- !u!1102 &-5647289041751309347 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 5just + 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: 9ea7dcfb51e17de48b1e4bfc823b0f18, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-5045694569336194735 AnimatorStateMachine: serializedVersion: 6 m_ObjectHideFlags: 1 @@ -88,41 +88,44 @@ AnimatorStateMachine: m_Name: Base Layer m_ChildStates: - serializedVersion: 1 - m_State: {fileID: -6292010483678719761} - m_Position: {x: 260, y: 20, z: 0} + m_State: {fileID: 6642123056298790608} + m_Position: {x: 120, y: 200, z: 0} - serializedVersion: 1 - m_State: {fileID: -6789605440783501267} - m_Position: {x: 80, y: 230, z: 0} + m_State: {fileID: 5187415593737760393} + m_Position: {x: 160, y: 260, z: 0} - serializedVersion: 1 - m_State: {fileID: 7161411149177303054} - m_Position: {x: 260, y: 110, z: 0} + m_State: {fileID: -4197393870582957797} + m_Position: {x: 190, y: 330, z: 0} - serializedVersion: 1 - m_State: {fileID: -1338064717336534372} - m_Position: {x: 70, y: 300, z: 0} + m_State: {fileID: -4947469469024941547} + m_Position: {x: 230, y: 390, z: 0} - serializedVersion: 1 - m_State: {fileID: -2696070812660855879} - m_Position: {x: 110, y: 360, z: 0} + m_State: {fileID: -944908181458574488} + m_Position: {x: 260, y: 460, z: 0} - serializedVersion: 1 - m_State: {fileID: -6082145668641582841} - m_Position: {x: 140, y: 430, z: 0} + m_State: {fileID: -5647289041751309347} + m_Position: {x: 300, y: 520, z: 0} - serializedVersion: 1 - m_State: {fileID: -5145137798443632087} - m_Position: {x: 180, y: 490, z: 0} + m_State: {fileID: 6951896023358866966} + m_Position: {x: 440, y: 730, z: 0} - serializedVersion: 1 - m_State: {fileID: 4457002091163391653} - m_Position: {x: 210, y: 560, z: 0} + m_State: {fileID: -8896183735742043496} + m_Position: {x: 450, y: 810, z: 0} - serializedVersion: 1 - m_State: {fileID: -4025366535877007525} - m_Position: {x: 250, y: 620, z: 0} + m_State: {fileID: 7838987002804344183} + m_Position: {x: 340, y: 580, z: 0} - serializedVersion: 1 - m_State: {fileID: 6524240619068071304} - m_Position: {x: 280, y: 690, z: 0} + m_State: {fileID: -167105185120364710} + m_Position: {x: 380, y: 660, z: 0} - serializedVersion: 1 - m_State: {fileID: 5184258778990741431} - m_Position: {x: 320, y: 750, z: 0} + m_State: {fileID: 1346655857345384176} + m_Position: {x: 510, y: 890, z: 0} - serializedVersion: 1 - m_State: {fileID: 2366465203002491144} - m_Position: {x: 360, y: 820, z: 0} + m_State: {fileID: 9069138188814420382} + m_Position: {x: 540, y: 960, z: 0} + - serializedVersion: 1 + m_State: {fileID: -6751519891441227894} + m_Position: {x: 580, y: 1020, z: 0} m_ChildStateMachines: [] m_AnyStateTransitions: [] m_EntryTransitions: [] @@ -130,108 +133,108 @@ AnimatorStateMachine: m_StateMachineBehaviours: [] m_AnyStatePosition: {x: 50, y: 20, z: 0} m_EntryPosition: {x: 50, y: 120, z: 0} - m_ExitPosition: {x: 140, y: -80, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} - m_DefaultState: {fileID: -6292010483678719761} ---- !u!1102 &-5145137798443632087 + m_DefaultState: {fileID: 6642123056298790608} +--- !u!1102 &-4947469469024941547 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-chikara04 + m_Name: 3 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] m_StateMachineBehaviours: [] m_Position: {x: 50, y: 50, z: 0} m_IKOnFeet: 0 - m_WriteDefaultValues: 0 + m_WriteDefaultValues: 1 m_Mirror: 0 m_SpeedParameterActive: 0 m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 8f055be9839082741a2f3c748b1a5552, type: 2} + m_Motion: {fileID: 7400000, guid: 13c2501f77b087642ad5513e92ae3a9d, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &-4025366535877007525 +--- !u!1102 &-4197393870582957797 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-chikara07-just + m_Name: 2 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] m_StateMachineBehaviours: [] m_Position: {x: 50, y: 50, z: 0} m_IKOnFeet: 0 - m_WriteDefaultValues: 0 + m_WriteDefaultValues: 1 m_Mirror: 0 m_SpeedParameterActive: 0 m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 561c2b020bb2a2b4ea4808bd7417a293, type: 2} + m_Motion: {fileID: 7400000, guid: 9cb1585d4a4c7194eb6fa97ce40d6704, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &-2696070812660855879 +--- !u!1102 &-944908181458574488 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-chikara02 + m_Name: 4 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] m_StateMachineBehaviours: [] m_Position: {x: 50, y: 50, z: 0} m_IKOnFeet: 0 - m_WriteDefaultValues: 0 + m_WriteDefaultValues: 1 m_Mirror: 0 m_SpeedParameterActive: 0 m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 02827bfe774cf0947a3152ea2e5f9d4d, type: 2} + m_Motion: {fileID: 7400000, guid: e36b3e967b4cddf4f90c42957f26e746, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &-1338064717336534372 +--- !u!1102 &-167105185120364710 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-chikara01 + m_Name: 5late m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] m_StateMachineBehaviours: [] m_Position: {x: 50, y: 50, z: 0} m_IKOnFeet: 0 - m_WriteDefaultValues: 0 + m_WriteDefaultValues: 1 m_Mirror: 0 m_SpeedParameterActive: 0 m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: fd4738f85adecc24f8517264e4d10793, type: 2} + m_Motion: {fileID: 7400000, guid: 8f3e4fb4f31f64841bba836fbf8a9e15, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: @@ -243,13 +246,13 @@ AnimatorController: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-chikara + m_Name: fudePos-sun serializedVersion: 5 m_AnimatorParameters: [] m_AnimatorLayers: - serializedVersion: 5 m_Name: Base Layer - m_StateMachine: {fileID: -5593357924424937150} + m_StateMachine: {fileID: -5045694569336194735} m_Mask: {fileID: 0} m_Motions: [] m_Behaviours: [] @@ -259,131 +262,157 @@ AnimatorController: m_IKPass: 0 m_SyncedLayerAffectsTiming: 0 m_Controller: {fileID: 9100000} ---- !u!1102 &2366465203002491144 +--- !u!1102 &1346655857345384176 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-chikara08-end + m_Name: 7miss m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] m_StateMachineBehaviours: [] m_Position: {x: 50, y: 50, z: 0} m_IKOnFeet: 0 - m_WriteDefaultValues: 0 + m_WriteDefaultValues: 1 m_Mirror: 0 m_SpeedParameterActive: 0 m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: b72ed06b4dcbc0e4aa6ef669923ba748, type: 2} + m_Motion: {fileID: 7400000, guid: 40456d994ac05ec4bbc66b72986100eb, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &4457002091163391653 +--- !u!1102 &5187415593737760393 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-chikara06 + m_Name: 1 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] m_StateMachineBehaviours: [] m_Position: {x: 50, y: 50, z: 0} m_IKOnFeet: 0 - m_WriteDefaultValues: 0 + m_WriteDefaultValues: 1 m_Mirror: 0 m_SpeedParameterActive: 0 m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: b10473bb292656245b3d19df5a2c4575, type: 2} + m_Motion: {fileID: 7400000, guid: 35cc2c712796bd2479224bfb7de91e6c, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &5184258778990741431 +--- !u!1102 &6642123056298790608 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-chikara07-late + m_Name: fudePos-sun00 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] m_StateMachineBehaviours: [] m_Position: {x: 50, y: 50, z: 0} m_IKOnFeet: 0 - m_WriteDefaultValues: 0 + m_WriteDefaultValues: 1 m_Mirror: 0 m_SpeedParameterActive: 0 m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 17b65be8f427b6b478af1deb4dc2aa2b, type: 2} + m_Motion: {fileID: 7400000, guid: 84f311f9eef0bb24793b1cc9bdb500ec, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &6524240619068071304 +--- !u!1102 &6951896023358866966 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-chikara07-fast + m_Name: 6 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] m_StateMachineBehaviours: [] m_Position: {x: 50, y: 50, z: 0} m_IKOnFeet: 0 - m_WriteDefaultValues: 0 + m_WriteDefaultValues: 1 m_Mirror: 0 m_SpeedParameterActive: 0 m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: acd8548c65311d3449dfb2141d20bf77, type: 2} + m_Motion: {fileID: 7400000, guid: b1cce47a4b8dc13439e34dafbc48648a, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &7161411149177303054 +--- !u!1102 &7838987002804344183 AnimatorState: serializedVersion: 6 m_ObjectHideFlags: 1 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-init + m_Name: 5fast m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] m_StateMachineBehaviours: [] m_Position: {x: 50, y: 50, z: 0} m_IKOnFeet: 0 - m_WriteDefaultValues: 0 + m_WriteDefaultValues: 1 m_Mirror: 0 m_SpeedParameterActive: 0 m_MirrorParameterActive: 0 m_CycleOffsetParameterActive: 0 m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 263bdf3b21bad5e42ab125b4f2e29344, type: 2} + m_Motion: {fileID: 7400000, guid: ec4b28227c587314fac1b8d523c2ea5b, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &9069138188814420382 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: 7late + 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: b6cf7d57f3035134cb3f8dd4a272eb4e, type: 2} m_Tag: m_SpeedParameter: m_MirrorParameter: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/fudePos-sun.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/fudePos-sun.controller.meta new file mode 100644 index 000000000..68129ac57 --- /dev/null +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/fudePos-sun.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a8399fce1f28f1f458c59af51b6d8984 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-sun.controller b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun.controller similarity index 78% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-sun.controller rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun.controller index 1578b242f..fbabf8b9b 100644 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-sun.controller +++ b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun.controller @@ -7,7 +7,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-sun05-fast + m_Name: 5fast m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -33,7 +33,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-sun02 + m_Name: 2 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -59,7 +59,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-sun03 + m_Name: 3 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -116,12 +116,6 @@ AnimatorStateMachine: - serializedVersion: 1 m_State: {fileID: -6292010483678719761} m_Position: {x: 260, y: 20, z: 0} - - serializedVersion: 1 - m_State: {fileID: 7161411149177303054} - m_Position: {x: 260, y: 110, z: 0} - - serializedVersion: 1 - m_State: {fileID: -2837910270091423116} - m_Position: {x: 100, y: 180, z: 0} - serializedVersion: 1 m_State: {fileID: 1494681751098402417} m_Position: {x: 130, y: 250, z: 0} @@ -152,9 +146,6 @@ AnimatorStateMachine: - serializedVersion: 1 m_State: {fileID: 7218454771849201675} m_Position: {x: 270, y: 630, z: 0} - - serializedVersion: 1 - m_State: {fileID: 6553601530860365235} - m_Position: {x: 330, y: 860, z: 0} m_ChildStateMachines: [] m_AnyStateTransitions: [] m_EntryTransitions: [] @@ -172,7 +163,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-sun07-just + m_Name: 7just m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -191,32 +182,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &-2837910270091423116 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-sun00 - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 9e0f78d8a35aafa44845368940070f72, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &-2190757771762297314 AnimatorState: serializedVersion: 6 @@ -224,7 +189,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-sun07-late + m_Name: 7late m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -250,7 +215,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-sun04 + m_Name: 4 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -298,7 +263,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-sun05-just + m_Name: 5just m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -324,7 +289,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-sun01 + m_Name: 1 m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -350,7 +315,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-sun07-fast + m_Name: 7fast m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] @@ -369,58 +334,6 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1102 &6553601530860365235 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-sun08-end - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: fb56de77d722be34493a3f287815412f, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: ---- !u!1102 &7161411149177303054 -AnimatorState: - serializedVersion: 6 - m_ObjectHideFlags: 1 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: paper-init - m_Speed: 1 - m_CycleOffset: 0 - m_Transitions: [] - m_StateMachineBehaviours: [] - m_Position: {x: 50, y: 50, z: 0} - m_IKOnFeet: 0 - m_WriteDefaultValues: 0 - m_Mirror: 0 - m_SpeedParameterActive: 0 - m_MirrorParameterActive: 0 - m_CycleOffsetParameterActive: 0 - m_TimeParameterActive: 0 - m_Motion: {fileID: 7400000, guid: 263bdf3b21bad5e42ab125b4f2e29344, type: 2} - m_Tag: - m_SpeedParameter: - m_MirrorParameter: - m_CycleOffsetParameter: - m_TimeParameter: --- !u!1102 &7218454771849201675 AnimatorState: serializedVersion: 6 @@ -428,7 +341,7 @@ AnimatorState: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: paper-sun05-late + m_Name: 5late m_Speed: 1 m_CycleOffset: 0 m_Transitions: [] diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-sun.controller.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun.controller.meta similarity index 100% rename from Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/paper-sun.controller.meta rename to Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun.controller.meta diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun00.anim.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun00.anim.meta deleted file mode 100644 index 01c31d925..000000000 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun00.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9e0f78d8a35aafa44845368940070f72 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 7400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun08-end.anim.meta b/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun08-end.anim.meta deleted file mode 100644 index 75af47835..000000000 --- a/Assets/Resources/Sprites/Games/PowerCalligraphy/Animations/sun/paper-sun08-end.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: fb56de77d722be34493a3f287815412f -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 7400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Resources/Sprites/Games/SeeSaw/SeeSaw.mat b/Assets/Resources/Sprites/Games/SeeSaw/SeeSaw.mat index bf05f2fb4..0b2c7525a 100644 --- a/Assets/Resources/Sprites/Games/SeeSaw/SeeSaw.mat +++ b/Assets/Resources/Sprites/Games/SeeSaw/SeeSaw.mat @@ -87,6 +87,6 @@ Material: - _Color: {r: 1, g: 1, b: 1, a: 1} - _ColorAlpha: {r: 1, g: 1, b: 1, a: 1} - _ColorBravo: {r: 1, g: 1, b: 1, a: 1} - - _ColorDelta: {r: 0.03921569, g: 0.0627451, b: 0.2352941, a: 1} + - _ColorDelta: {r: 0.039215688, g: 0.0627451, b: 0.23529412, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} m_BuildTextureStacks: [] diff --git a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/Idle.anim b/Assets/Resources/Sprites/Games/SickBeats/Animations/virus/virusCome.anim similarity index 73% rename from Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/Idle.anim rename to Assets/Resources/Sprites/Games/SickBeats/Animations/virus/virusCome.anim index 4d4382bb2..b53b3cf81 100644 --- a/Assets/Resources/Sprites/Games/DogNinja/Animation/Bird/Idle.anim +++ b/Assets/Resources/Sprites/Games/SickBeats/Animations/virus/virusCome.anim @@ -6,7 +6,7 @@ AnimationClip: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_Name: Idle + m_Name: virusCome serializedVersion: 6 m_Legacy: 0 m_Compressed: 0 @@ -20,8 +20,17 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: {x: 13.216, y: 8.8714, z: 0} - inSlope: {x: 0, y: 0, z: 0} + value: {x: 9, y: -2.6, z: 0} + inSlope: {x: Infinity, y: 0, z: 0} + outSlope: {x: -8.4, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5 + value: {x: 4.8, y: -2.6, z: 0} + inSlope: {x: -8.4, y: 0, z: 0} outSlope: {x: 0, y: 0, z: 0} tangentMode: 0 weightedMode: 0 @@ -30,7 +39,7 @@ AnimationClip: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - path: + path: sprite m_ScaleCurves: [] m_FloatCurves: [] m_PPtrCurves: [] @@ -42,7 +51,7 @@ AnimationClip: m_ClipBindingConstant: genericBindings: - serializedVersion: 2 - path: 0 + path: 891129758 attribute: 1 script: {fileID: 0} typeID: 4 @@ -54,7 +63,7 @@ AnimationClip: m_AdditiveReferencePoseClip: {fileID: 0} m_AdditiveReferencePoseTime: 0 m_StartTime: 0 - m_StopTime: 0 + m_StopTime: 0.5 m_OrientationOffsetY: 0 m_Level: 0 m_CycleOffset: 0 @@ -75,10 +84,19 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 13.216 - inSlope: 0 + value: 9 + inSlope: Infinity + outSlope: -8.4 + tangentMode: 69 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 4.8 + inSlope: -8.4 outSlope: 0 - tangentMode: 136 + tangentMode: 69 weightedMode: 0 inWeight: 0.33333334 outWeight: 0.33333334 @@ -86,7 +104,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_LocalPosition.x - path: + path: sprite classID: 4 script: {fileID: 0} - curve: @@ -94,10 +112,10 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 8.8714 - inSlope: 0 + value: -2.6 + inSlope: Infinity outSlope: 0 - tangentMode: 136 + tangentMode: 69 weightedMode: 0 inWeight: 0.33333334 outWeight: 0.33333334 @@ -105,7 +123,7 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_LocalPosition.y - path: + path: sprite classID: 4 script: {fileID: 0} - curve: @@ -114,9 +132,9 @@ AnimationClip: - serializedVersion: 3 time: 0 value: 0 - inSlope: 0 + inSlope: Infinity outSlope: 0 - tangentMode: 136 + tangentMode: 69 weightedMode: 0 inWeight: 0.33333334 outWeight: 0.33333334 @@ -124,10 +142,10 @@ AnimationClip: m_PostInfinity: 2 m_RotationOrder: 4 attribute: m_LocalPosition.z - path: + path: sprite classID: 4 script: {fileID: 0} m_EulerEditorCurves: [] - m_HasGenericRootTransform: 1 + m_HasGenericRootTransform: 0 m_HasMotionFloatCurves: 0 m_Events: [] diff --git a/Assets/Resources/Sprites/Games/SickBeats/Animations/virus/virusCome.anim.meta b/Assets/Resources/Sprites/Games/SickBeats/Animations/virus/virusCome.anim.meta new file mode 100644 index 000000000..ad9bd6cb0 --- /dev/null +++ b/Assets/Resources/Sprites/Games/SickBeats/Animations/virus/virusCome.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2eb5a723a841c4b4f8771b1ae206657d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Sprites/UI/Common/Opening/Animations/Idle.anim b/Assets/Resources/Sprites/UI/Common/Opening/Animations/Idle.anim index cf2ca73c3..46fbbebb8 100644 --- a/Assets/Resources/Sprites/UI/Common/Opening/Animations/Idle.anim +++ b/Assets/Resources/Sprites/UI/Common/Opening/Animations/Idle.anim @@ -310,7 +310,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 38.9 + value: 32 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -329,7 +329,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -134.1 + value: -130 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -348,7 +348,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -78.4 + value: -75 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -2338,7 +2338,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 38.9 + value: 32 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -2357,7 +2357,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -134.1 + value: -130 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -2376,7 +2376,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -78.4 + value: -75 inSlope: 0 outSlope: 0 tangentMode: 136 diff --git a/Assets/Resources/Sprites/UI/Common/Opening/Animations/LogoBop.anim b/Assets/Resources/Sprites/UI/Common/Opening/Animations/LogoBop.anim index 120ad9627..31c6356f1 100644 --- a/Assets/Resources/Sprites/UI/Common/Opening/Animations/LogoBop.anim +++ b/Assets/Resources/Sprites/UI/Common/Opening/Animations/LogoBop.anim @@ -22,7 +22,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -142 + value: -139.7 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -31,9 +31,9 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.13333334 - value: -135.7601 - inSlope: 25.714287 - outSlope: 25.714287 + value: -134 + inSlope: 20.78571 + outSlope: 20.78571 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -59,7 +59,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 41.1 + value: 38.4 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -68,9 +68,9 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.13333334 - value: 35.51921 - inSlope: -19.499998 - outSlope: -19.499998 + value: 34.5 + inSlope: -13.71429 + outSlope: -13.71429 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -392,7 +392,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -140.9 + value: -140.5 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -401,9 +401,9 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.13333334 - value: -143.84947 - inSlope: -10.285722 - outSlope: -10.285722 + value: -143.8 + inSlope: -11.142851 + outSlope: -11.142851 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -429,7 +429,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -80.3 + value: -79.4 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -438,9 +438,9 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.13333334 - value: -77.5904 - inSlope: 11.35715 - outSlope: 11.35715 + value: -77 + inSlope: 9.4285755 + outSlope: 9.4285755 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -1636,7 +1636,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -142 + value: -139.7 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -1645,9 +1645,9 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.13333334 - value: -135.7601 - inSlope: 25.714287 - outSlope: 25.714287 + value: -134 + inSlope: 20.78571 + outSlope: 20.78571 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -1673,7 +1673,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 41.1 + value: 38.4 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -1682,9 +1682,9 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.13333334 - value: 35.51921 - inSlope: -19.499998 - outSlope: -19.499998 + value: 34.5 + inSlope: -13.71429 + outSlope: -13.71429 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -2006,7 +2006,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -140.9 + value: -140.5 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -2015,9 +2015,9 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.13333334 - value: -143.84947 - inSlope: -10.285722 - outSlope: -10.285722 + value: -143.8 + inSlope: -11.142851 + outSlope: -11.142851 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -2043,7 +2043,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -80.3 + value: -79.4 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -2052,9 +2052,9 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.13333334 - value: -77.5904 - inSlope: 11.35715 - outSlope: 11.35715 + value: -77 + inSlope: 9.4285755 + outSlope: 9.4285755 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 diff --git a/Assets/Resources/Sprites/UI/Common/Opening/Animations/LogoBop2.anim b/Assets/Resources/Sprites/UI/Common/Opening/Animations/LogoBop2.anim index 8f3aa8898..13ea516d2 100644 --- a/Assets/Resources/Sprites/UI/Common/Opening/Animations/LogoBop2.anim +++ b/Assets/Resources/Sprites/UI/Common/Opening/Animations/LogoBop2.anim @@ -22,7 +22,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -126.3 + value: -123.4 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -31,9 +31,9 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.1 - value: -128.6239 - inSlope: -9.784851 - outSlope: -9.784851 + value: -126.2 + inSlope: -18.07057 + outSlope: -18.07057 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -41,8 +41,8 @@ AnimationClip: - serializedVersion: 3 time: 0.35 value: -129.7247 - inSlope: -3.0032625 - outSlope: -3.0032625 + inSlope: -3.0032623 + outSlope: -3.0032623 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -68,7 +68,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 36.6 + value: 35.5 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -77,9 +77,9 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.1 - value: 34.67729 - inSlope: -13.002821 - outSlope: -13.002821 + value: 34.3 + inSlope: -9.859968 + outSlope: -9.859968 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -87,8 +87,8 @@ AnimationClip: - serializedVersion: 3 time: 0.35 value: 32.04901 - inSlope: -0.5346679 - outSlope: -0.5346679 + inSlope: -0.5346681 + outSlope: -0.5346681 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -114,7 +114,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -147.6 + value: -155.3 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -123,18 +123,18 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.1 - value: -146.95068 - inSlope: 5.129002 - outSlope: 5.129002 + value: -152 + inSlope: 24.285715 + outSlope: 24.285715 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 time: 0.35 - value: -145.80486 - inSlope: 1.1439098 - outSlope: 1.1439098 + value: -146.8 + inSlope: 12.000066 + outSlope: 12.000066 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -160,7 +160,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -86.7 + value: -84.4 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -169,9 +169,9 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.1 - value: -83.86351 - inSlope: 30.977 - outSlope: 30.977 + value: -80.9 + inSlope: 24.405584 + outSlope: 24.405584 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -179,8 +179,8 @@ AnimationClip: - serializedVersion: 3 time: 0.35 value: -75.85805 - inSlope: 9.3605175 - outSlope: 9.3605175 + inSlope: 9.360518 + outSlope: 9.360518 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -1960,7 +1960,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -126.3 + value: -123.4 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -1969,9 +1969,9 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.1 - value: -128.6239 - inSlope: -9.784851 - outSlope: -9.784851 + value: -126.2 + inSlope: -18.07057 + outSlope: -18.07057 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -1979,8 +1979,8 @@ AnimationClip: - serializedVersion: 3 time: 0.35 value: -129.7247 - inSlope: -3.0032625 - outSlope: -3.0032625 + inSlope: -3.0032623 + outSlope: -3.0032623 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -2006,7 +2006,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: 36.6 + value: 35.5 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -2015,9 +2015,9 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.1 - value: 34.67729 - inSlope: -13.002821 - outSlope: -13.002821 + value: 34.3 + inSlope: -9.859968 + outSlope: -9.859968 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -2025,8 +2025,8 @@ AnimationClip: - serializedVersion: 3 time: 0.35 value: 32.04901 - inSlope: -0.5346679 - outSlope: -0.5346679 + inSlope: -0.5346681 + outSlope: -0.5346681 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -2052,7 +2052,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -147.6 + value: -155.3 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -2061,18 +2061,18 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.1 - value: -146.95068 - inSlope: 5.129002 - outSlope: 5.129002 + value: -152 + inSlope: 24.285715 + outSlope: 24.285715 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 time: 0.35 - value: -145.80486 - inSlope: 1.1439098 - outSlope: 1.1439098 + value: -146.8 + inSlope: 12.000066 + outSlope: 12.000066 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -2098,7 +2098,7 @@ AnimationClip: m_Curve: - serializedVersion: 3 time: 0 - value: -86.7 + value: -84.4 inSlope: 0 outSlope: 0 tangentMode: 136 @@ -2107,9 +2107,9 @@ AnimationClip: outWeight: 0.33333334 - serializedVersion: 3 time: 0.1 - value: -83.86351 - inSlope: 30.977 - outSlope: 30.977 + value: -80.9 + inSlope: 24.405584 + outSlope: 24.405584 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 @@ -2117,8 +2117,8 @@ AnimationClip: - serializedVersion: 3 time: 0.35 value: -75.85805 - inSlope: 9.3605175 - outSlope: 9.3605175 + inSlope: 9.360518 + outSlope: 9.360518 tangentMode: 136 weightedMode: 0 inWeight: 0.33333334 diff --git a/Assets/Screenshot (295).png b/Assets/Screenshot (295).png new file mode 100644 index 000000000..4a5779f88 Binary files /dev/null and b/Assets/Screenshot (295).png differ diff --git a/Assets/Screenshot (295).png.meta b/Assets/Screenshot (295).png.meta new file mode 100644 index 000000000..5f1642d98 --- /dev/null +++ b/Assets/Screenshot (295).png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 87126fc1ac37f1645b24edf0e9a42237 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/AppInfo.cs b/Assets/Scripts/AppInfo.cs index 40d8398a8..fe13228a6 100644 --- a/Assets/Scripts/AppInfo.cs +++ b/Assets/Scripts/AppInfo.cs @@ -1,8 +1,8 @@ using System; public static class AppInfo { - public const string Version = "1.0.5"; - public static readonly DateTime Date = new DateTime(2024, 02, 23, 20, 57, 14, 989, DateTimeKind.Utc); + public const string Version = "1.0.8"; + public static readonly DateTime Date = new DateTime(2024, 03, 11, 23, 05, 18, 869, DateTimeKind.Utc); } diff --git a/Assets/Scripts/Common/StickyCanvas.cs b/Assets/Scripts/Common/StickyCanvas.cs new file mode 100644 index 000000000..a2b0f29cd --- /dev/null +++ b/Assets/Scripts/Common/StickyCanvas.cs @@ -0,0 +1,44 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +namespace HeavenStudio.Common +{ + public class StickyCanvas : MonoBehaviour + { + /// + /// Attach to a GameObject to make the object follow the camera while also moving with the viewport. + /// Can be enabled or disabled. + /// May malfunction when rescaled. + /// + private Vector3 _OriginalPosition; + private Quaternion _OriginalRotation; + + [SerializeField] public bool Sticky = true; + [SerializeField] float CameraOffset = 10; + + // Start is called before the first frame update + void Start() + { + _OriginalPosition = transform.position; + _OriginalRotation = transform.rotation; + } + + void Update() + { + if (!Sticky) + { + transform.position = _OriginalPosition; + transform.rotation = _OriginalRotation; + return; + } + + if (Conductor.instance == null) return; + Transform target = GameCamera.instance.transform; + + Vector3 displacement = target.forward * CameraOffset; + transform.position = target.position + displacement; + transform.rotation = target.rotation; + } + } +} \ No newline at end of file diff --git a/Assets/Scripts/Common/StickyCanvas.cs.meta b/Assets/Scripts/Common/StickyCanvas.cs.meta new file mode 100644 index 000000000..099684307 --- /dev/null +++ b/Assets/Scripts/Common/StickyCanvas.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2430b0a2323860c41973e7787c3ba3f5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/GameManager.cs b/Assets/Scripts/GameManager.cs index 2ce1d7a65..1db820d34 100644 --- a/Assets/Scripts/GameManager.cs +++ b/Assets/Scripts/GameManager.cs @@ -1243,6 +1243,17 @@ namespace HeavenStudio return eventCaller.GetMinigame(name); } + public bool TryGetMinigame(out T mg) where T : Minigame + { + if (minigame is T tempMinigame) { + mg = tempMinigame; + return true; + } else { + mg = null; + return false; + } + } + Color colMain; public void SetCurrentGame(string game, bool useMinigameColor = true) { diff --git a/Assets/Scripts/Games/Airboarder.meta b/Assets/Scripts/Games/Airboarder.meta new file mode 100644 index 000000000..3af9354b5 --- /dev/null +++ b/Assets/Scripts/Games/Airboarder.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1a1361b84ea87df45b12947f6363f6e5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Games/Airboarder/Airboarder.cs b/Assets/Scripts/Games/Airboarder/Airboarder.cs new file mode 100644 index 000000000..58adebfdb --- /dev/null +++ b/Assets/Scripts/Games/Airboarder/Airboarder.cs @@ -0,0 +1,526 @@ +using System; +using System.Linq; +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +using HeavenStudio.Util; +using HeavenStudio.InputSystem; + +using Jukebox; + +namespace HeavenStudio.Games.Loaders +{ + using static Minigames; + /// Minigame loaders handle the setup of your minigame. + /// Here, you designate the game prefab, define entities, and mark what AssetBundle to load + + /// Names of minigame loaders follow a specific naming convention of `PlatformcodeNameLoader`, where: + /// `Platformcode` is a three-leter platform code with the minigame's origin + /// `Name` is a short internal name + /// `Loader` is the string "Loader" + + /// Platform codes are as follows: + /// Agb: Gameboy Advance ("Advance Gameboy") + /// Ntr: Nintendo DS ("Nitro") + /// Rvl: Nintendo Wii ("Revolution") + /// Ctr: Nintendo 3DS ("Centrair") + /// Mob: Mobile + /// Pco: PC / Other + + /// Fill in the loader class label, "*prefab name*", and "*Display Name*" with the relevant information + /// For help, feel free to reach out to us on our discord, in the #development channel. + public static class NtrAirboarderLoader + { + public static Minigame AddGame(EventCaller eventCaller) + { + return new Minigame("airboarder", "Airboarder", "fbd4f2", false, false, new List() + { + + new GameAction("bop", "Bop") + { + function = delegate {Airboarder.instance.BopToggle(eventCaller.currentEntity.beat, eventCaller.currentEntity.length, eventCaller.currentEntity["auto"], eventCaller.currentEntity["toggle"]);}, + defaultLength = 1f, + resizable = true, + parameters = new List() + { + new Param("toggle", true, "Bop", "Toggle if the airboarders should bop for the duration of this event."), + new Param("auto", false, "Autobop", "Toggle if the airboarders should bop automatically until another Bop event is reached."), + } + }, + + new GameAction("duck", "Duck") + { + function = delegate {Airboarder.instance.PrepareJump(eventCaller.currentEntity.beat, eventCaller.currentEntity["ready"]);}, + defaultLength = 4f, + resizable = false, + parameters = new List() + { + new Param("ready", true, "Play Ready Sound", "Toggle if the ready sound plays."), + } + }, + + new GameAction("crouch", "Charged Duck") + { + function = delegate {Airboarder.instance.PrepareJump(eventCaller.currentEntity.beat, eventCaller.currentEntity["ready"]);}, + defaultLength = 4f, + resizable = false, + parameters = new List() + { + new Param("ready", true, "Play Ready Sound", "Toggle if the ready sound plays."), + } + }, + + new GameAction("jump", "Jump") + { + function = delegate {Airboarder.instance.PrepareJump(eventCaller.currentEntity.beat, eventCaller.currentEntity["ready"]);}, + defaultLength = 4f, + resizable = false, + parameters = new List() + { + new Param("ready", false, "Play Ready Sound", "Toggle if the ready sound plays."), + } + }, + + new GameAction("forceCharge", "Force Charge") + { + function = delegate {Airboarder.instance.ForceCharge(); }, + defaultLength = 0.5f, + resizable = false, + }, + + + new GameAction("letsGo", "YEAAAAAH LET'S GO") + { + function = delegate {Airboarder.instance.YeahLetsGo(eventCaller.currentEntity.beat, eventCaller.currentEntity["sound"]);}, + defaultLength = 8f, + resizable = false, + parameters = new List() + { + new Param("sound", true, "Play Sound", "Toggle if the 'YEAAAAAH LET'S GO' voice clip plays."), + } + }, + + new GameAction("fade background", "Background Color") + { + function = delegate {Airboarder.instance.BackgroundColor(eventCaller.currentEntity.beat, eventCaller.currentEntity.length, eventCaller.currentEntity["colorStart"], eventCaller.currentEntity["colorEnd"], eventCaller.currentEntity["ease"]); }, + defaultLength = 4f, + resizable = true, + parameters = new List() + { + new Param("colorStart", Color.white, "Start Color", "Set the color at the start of the event."), + new Param("colorEnd", Airboarder.defaultBGColor, "End Color", "Set the color at the end of the event."), + new Param("ease", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing of the action.") + } + }, + + + new GameAction("camera", "Camera Controls") + { + function = delegate { + var e = eventCaller.currentEntity; + // var rotation = new Vector3(0, e["valA"], 0); + Airboarder.instance.ChangeCamera(eventCaller.currentEntity.beat, eventCaller.currentEntity["valA"], eventCaller.currentEntity["valB"], eventCaller.currentEntity.length, (Util.EasingFunction.Ease)eventCaller.currentEntity["type"], eventCaller.currentEntity["additive"]); + }, + defaultLength = 4, + resizable = true, + hidden = true, + parameters = new List() { + new Param("valA", new EntityTypes.Integer(-360, 360, 0), "Rotation", "Set the rotation of the camera around the pivot point."), + new Param("valB", new EntityTypes.Float(0.1f, 4f, 0.5f), "Zoom", "Set the camera's level of zoom."), + new Param("type", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing of the action."), + new Param("additive", true, "Additive Rotation", "Toggle if the above rotation should be added to the current angle instead of setting the target angle to travel to.") + } + }, + } + // , + // new List() {"ntr", "normal"}, + // "ntrAirboarder", "en", + // new List() { } + ); + } + } +} + + + +namespace HeavenStudio.Games +{ + /// This class handles the minigame logic. + /// Minigame inherits directly from MonoBehaviour, and adds Heaven Studio specific methods to override. + + using Scripts_Airboarder; + + public class Airboarder : Minigame + { + + + public static Airboarder instance; + + public static Color defaultBGColor = new Color(0.9921569f, 0.7686275f, 0.9921569f); + + public bool wantsCrouch; + [Header("Materials")] + [SerializeField] private Material bgMaterial; + [SerializeField] private Material[] floorMaterial; + + [Header("Camera")] + [SerializeField] Transform cameraPivot; + [SerializeField] Transform cameraPos; + [SerializeField] float cameraFOV; + + [Header("Objects")] + [SerializeField] Arch archBasic; + [SerializeField] Wall wallBasic; + [SerializeField] GameObject floor; + + [Header("Animators")] + [SerializeField] public Animator CPU1; + [SerializeField] public Animator CPU2; + [SerializeField] public Animator Player; + [SerializeField] public Animator Dog; + [SerializeField] public Animator Tail; + [SerializeField] public Animator Floor; + + bool goBop; + public bool cpu1CantBop = false; + public bool cpu2CantBop = false; + public bool playerCantBop = false; + + public double startBeat; + public double switchBeat; + + + double cameraRotateBeat = double.MaxValue; + double cameraRotateLength; + Util.EasingFunction.Ease cameraRotateEase; + float cameraRotateLast = 0, cameraScaleLast = 1; + float cameraRotateNext = 0, cameraScaleNext = 1; + + + public float startFloor; + + private void Awake() + { + instance = this; + SetupBopRegion("airboarder", "bop", "auto"); + wantsCrouch = false; + GameCamera.AdditionalPosition = cameraPos.position + (Quaternion.Euler(cameraPos.rotation.eulerAngles) * Vector3.forward * 10f); + GameCamera.AdditionalRotEuler = cameraPos.rotation.eulerAngles; + GameCamera.AdditionalFoV = cameraFOV; + + } + + public override void OnGameSwitch(double beat) + { + + List actions = new() + {}; + wantsCrouch = false; + + double switchBeat = beat; + double startBeat = double.MaxValue; + double endBeat = double.MaxValue; + + var entities = GameManager.instance.Beatmap.Entities; + //find when the next game switch/remix end happens + var nextGameSwitches = EventCaller.GetAllInGameManagerList("gameManager", new string[] { "switchGame" }).FindAll(x => x.beat > beat && x.datamodel != "gameManager/switchGame/airboarder"); + double nextGameSwitchBeat = double.MaxValue; + + //lists arch and wall events + List blockEvents = gameManager.Beatmap.Entities.FindAll(e => e.datamodel is "airboarder/duck" or "airboarder/crouch" or "airboarder/jump" && e.beat >= beat && e.beat < endBeat); + + foreach (var e in blockEvents) + { + switch (e.datamodel) { + case "airboarder/duck": + RequestArch(e.beat - 25, false); + break; + case "airboarder/crouch": + RequestArch(e.beat - 25, true); + break; + case "airboarder/jump": + RequestWall(e.beat - 25); + break; + } + } + PersistColor (beat); + } + + private void Start() + { + EntityPreCheck(Conductor.instance.songPositionInBeatsAsDouble); + bgMaterial.color = defaultBGColor; + } + + void EntityPreCheck(double beat) + { + cameraRotateBeat = double.MaxValue; + cameraRotateLength = 0; + cameraRotateEase = Util.EasingFunction.Ease.Linear; + cameraRotateLast = 0; cameraScaleLast = 1; + cameraRotateNext = 0; cameraScaleNext = 1; + + List prevEntities = GameManager.instance.Beatmap.Entities.FindAll(c => c.beat < beat && c.datamodel.Split(0) == "airboarder"); + RiqEntity lastGameSwitch = GameManager.instance.Beatmap.Entities.FindLast(c => c.beat <= beat && c.datamodel == "gameManager/switchGame/airboarder"); + + if (lastGameSwitch == null) return; + List cameraEntities = prevEntities.FindAll(c => c.beat >= lastGameSwitch.beat && c.datamodel == "airboarder/camera"); + + foreach (var entity in cameraEntities) + { + ChangeCamera(entity.beat, entity["valA"], entity["valB"], entity.length, (Util.EasingFunction.Ease)entity["type"], entity["additive"]); + } + + UpdateCamera(beat); + } + + public override void OnPlay(double beat) + { + EntityPreCheck(beat); + OnGameSwitch(beat); + } + + void UpdateCamera(double beat) + { + if (beat >= cameraRotateBeat) + { + Util.EasingFunction.Function func = Util.EasingFunction.GetEasingFunction(cameraRotateEase); + float rotProg = Conductor.instance.GetPositionFromBeat(cameraRotateBeat, cameraRotateLength, true); + rotProg = Mathf.Clamp01(rotProg); + float rot = func(cameraRotateLast, cameraRotateNext, rotProg); + cameraPivot.rotation = Quaternion.Euler(0, rot, 0); + cameraPivot.localScale = Vector3.one * func(cameraScaleLast, cameraScaleNext, rotProg); + } + + GameCamera.AdditionalPosition = cameraPos.position + (Quaternion.Euler(cameraPos.rotation.eulerAngles) * Vector3.forward * 10f); + GameCamera.AdditionalRotEuler = cameraPos.rotation.eulerAngles; + GameCamera.AdditionalFoV = cameraFOV; + } + + public void Update() + { + var cond = Conductor.instance; + var currentBeat = cond.songPositionInBeatsAsDouble; + BackgroundColorUpdate(); + + float normalizedBeat = Conductor.instance.GetPositionFromBeat(startBeat, 5f); + + Floor.Play("moving", 0, normalizedBeat); + Floor.speed = 0; + Dog.Play("run", 0, normalizedBeat*7.5f); + Dog.Play("wag",1,normalizedBeat*2.5f); + CPU1.Play("hover",0,normalizedBeat); + CPU2.Play("hover",0,normalizedBeat); + Player.Play("hover",0,normalizedBeat); + + + if (cond.isPlaying && !cond.isPaused){ + if (PlayerInput.GetIsAction(InputAction_BasicPress) && !IsExpectingInputNow(InputAction_BasicPress)){ + if (wantsCrouch) + { + Player.DoScaledAnimationAsync("charge",1f, 0, 1); + playerCantBop = true; + } + else + { + Player.DoScaledAnimationAsync("duck",1f, 0, 1); + SoundByte.PlayOneShotGame("airboarder/crouch"); + BeatAction.New(this, new() { + new(currentBeat, ()=>playerCantBop = true), + new(currentBeat+1.5f, ()=>playerCantBop = false)}); + } + } + if (PlayerInput.GetIsAction(InputAction_BasicRelease) && !IsExpectingInputNow(InputAction_BasicRelease)){ + if (wantsCrouch) + { + Player.DoScaledAnimationAsync("hold",1f, 0, 1); + playerCantBop = false; + } + } + + if (PlayerInput.GetIsAction(InputAction_FlickRelease) && !IsExpectingInputNow(InputAction_FlickRelease)) + { + if ( PlayerInput.CurrentControlStyle == InputController.ControlStyles.Touch) + { + Player.DoScaledAnimationAsync("jump",1f, 0, 1); + SoundByte.PlayOneShotGame("airboarder/jump"); + playerCantBop = false;} + } + } + + UpdateCamera(currentBeat); + + } + + private ColorEase bgColorEase = new(defaultBGColor); + + //call this in update + private void BackgroundColorUpdate() + { + bgMaterial.color = bgColorEase.GetColor(); + + } + public void BackgroundColor(double beat, float length, Color startColor, Color endColor, int ease) + { + bgColorEase = new(beat, length, startColor, endColor, ease); + } + + + private void PersistColor(double beat) + { + var allEventsBeforeBeat = EventCaller.GetAllInGameManagerList("airboarder", new string[] { "fade background" }).FindAll(x => x.beat < beat); + if (allEventsBeforeBeat.Count > 0) + { + allEventsBeforeBeat.Sort((x, y) => x.beat.CompareTo(y.beat)); //just in case + var lastEvent = allEventsBeforeBeat[^1]; + BackgroundColor(lastEvent.beat, lastEvent.length, lastEvent["colorStart"], lastEvent["colorEnd"], lastEvent["ease"]); + } + } + + public void ForceCharge() + { + CPU1.DoScaledAnimationAsync("charge", 1f, 0, 1); + CPU2.DoScaledAnimationAsync("charge", 1f, 0, 1); + Player.DoScaledAnimationAsync("charge", 1f, 0, 1); + cpu1CantBop = true; + cpu2CantBop = true; + playerCantBop = true; + wantsCrouch = true; + } + + public override void OnBeatPulse(double beat) + { + if (BeatIsInBopRegion(beat)) + { + Bop(); + } + + } + + public void PrepareJump(double beat, bool readySound) + { + if (readySound) + { + SoundByte.PlayOneShotGame("airboarder/ready"); + } + + } + + public void ChangeCamera(double beat, float rotation, float camZoom, double length, Util.EasingFunction.Ease ease, bool additive = true) + { + cameraRotateBeat = beat; + cameraRotateLength = length; + cameraRotateEase = ease; + cameraRotateLast = cameraRotateNext % 360f; + cameraScaleLast = cameraScaleNext; + cameraScaleNext = camZoom; + if (additive) + { + cameraRotateNext = cameraRotateLast + rotation; + } + else + { + cameraRotateNext = rotation; + } + } + + public void BopToggle(double beat, float length, bool boarders, bool autoBop) + { + + if (boarders) + { + List bops = new List(); + for (int i = 0; i < length; i++) + { + bops.Add(new BeatAction.Action(beat + i, delegate { Bop(); })); + } + BeatAction.New(instance, bops); + } + } + + public void Bop() + { + if (!playerCantBop){ + Player.DoScaledAnimationAsync("bop",0.5f, 0, 1); + } + if (!cpu1CantBop){ + CPU1.DoScaledAnimationAsync("bop",0.5f, 0, 1); + } + if (!cpu2CantBop){ + CPU2.DoScaledAnimationAsync("bop",0.5f, 0, 1); + } + } + + public void YeahLetsGo(double beat, bool voiceOn) + { + if(voiceOn) + { + BeatAction.New(instance, new List(){ + new BeatAction.Action(beat, delegate {SoundByte.PlayOneShotGame("airboarder/start1");}), + new BeatAction.Action(beat + 6.5, delegate {SoundByte.PlayOneShotGame("airboarder/start2");}), + new BeatAction.Action(beat + 7, delegate {SoundByte.PlayOneShotGame("airboarder/start3");}), + }); + } + BeatAction.New(instance, new List(){ + new BeatAction.Action(beat, delegate {CPU1.DoScaledAnimationAsync("letsgo", 1f, 0, 1);}), + new BeatAction.Action(beat, delegate {CPU2.DoScaledAnimationAsync("letsgo", 1f, 0, 1);}), + new BeatAction.Action(beat, delegate {Player.DoScaledAnimationAsync("letsgo", 1f, 0, 1);}) + } + + ); + } + + public void MissSound(double beat) + { + MultiSound.Play(new MultiSound.Sound[] + { + new MultiSound.Sound("airboarder/miss1", beat), + new MultiSound.Sound("airboarder/missvox", beat), + new MultiSound.Sound("airboarder/miss2", beat + 0.25f), + new MultiSound.Sound("airboarder/miss3", beat + 0.75f), + new MultiSound.Sound("airboarder/miss4", beat + 0.875f), + new MultiSound.Sound("airboarder/miss5", beat + 1f), + new MultiSound.Sound("airboarder/miss6", beat + 1.125f), + new MultiSound.Sound("airboarder/miss7", beat + 1.25f), + new MultiSound.Sound("airboarder/miss8", beat + 1.5f), + new MultiSound.Sound("airboarder/miss9", beat + 1.75f), + new MultiSound.Sound("airboarder/miss10", beat + 2f), + new MultiSound.Sound("airboarder/miss11", beat + 2.25f), + new MultiSound.Sound("airboarder/miss12", beat + 2.5f), + new MultiSound.Sound("airboarder/miss13", beat + 2.75f), + new MultiSound.Sound("airboarder/miss14", beat + 3f), + new MultiSound.Sound("airboarder/miss15", beat + 3.25f) + }); + } + + public void RequestArch(double beat, bool crouch) + { + Arch newArch = Instantiate(archBasic, transform); + newArch.appearBeat = beat; + newArch.gameObject.SetActive(true); + if (crouch) { + archBasic.CueCrouch(beat+25); + } else { + newArch.CueDuck(beat+25); + } + } + + public void RequestWall(double beat) + { + Wall newWall = Instantiate(wallBasic, transform); + newWall.appearBeat = beat; + newWall.gameObject.SetActive(true); + newWall.CueJump(beat+25); + } + + + + + + + + + + } +} \ No newline at end of file diff --git a/Assets/Scripts/Games/Airboarder/Airboarder.cs.meta b/Assets/Scripts/Games/Airboarder/Airboarder.cs.meta new file mode 100644 index 000000000..94e110ac2 --- /dev/null +++ b/Assets/Scripts/Games/Airboarder/Airboarder.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 5fc3cd787ab89a54aa7eec99799e86a0 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Games/Airboarder/Arch.cs b/Assets/Scripts/Games/Airboarder/Arch.cs new file mode 100644 index 000000000..ae3640cc3 --- /dev/null +++ b/Assets/Scripts/Games/Airboarder/Arch.cs @@ -0,0 +1,157 @@ +using System.Collections; +using System.Collections.Generic; +using HeavenStudio.Util; +using HeavenStudio.InputSystem; +using UnityEngine; + +namespace HeavenStudio.Games.Scripts_Airboarder +{ + public class Arch : MonoBehaviour + { + [Header("Components")] + [SerializeField] private GameObject archBasic; + [SerializeField] Animator anim; + + public Airboarder game; + + public double targetBeat; + public double appearBeat; + + public float normalizedStart; + + private bool isCrouch; + + private void Awake() + { + game = Airboarder.instance; + } + + public void CueDuck(double duckBeat) + { + game.ScheduleInput(duckBeat, 3f, Minigame.InputAction_BasicPress, DuckSuccess, DuckMiss, null); + BeatAction.New(game, new List() { + new BeatAction.Action(duckBeat, delegate { + game.wantsCrouch = false; + game.cpu1CantBop = true; + game.CPU1.DoScaledAnimationAsync("letsgo", 1f, 0, 1); + }), + new BeatAction.Action(duckBeat + 1, delegate { + game.cpu2CantBop = true; + game.CPU1.DoScaledAnimationAsync("duck", 1f, 0, 1); + game.CPU2.DoScaledAnimationAsync("letsgo", 1f, 0, 1); + SoundByte.PlayOneShotGame("airboarder/crouch"); + SoundByte.PlayOneShotGame("airboarder/crouchvox"); + }), + new BeatAction.Action(duckBeat + 2, delegate { + game.playerCantBop = true; + game.CPU2.DoScaledAnimationAsync("duck", 1f, 0, 1); + game.Player.DoScaledAnimationAsync("letsgo", 1f, 0, 1); + SoundByte.PlayOneShotGame("airboarder/crouch"); + SoundByte.PlayOneShotGame("airboarder/crouchvox"); + }), + new BeatAction.Action(duckBeat + 2.5, delegate { game.cpu1CantBop = false; } ), + new BeatAction.Action(duckBeat + 3.5, delegate { game.cpu2CantBop = false; } ), + new BeatAction.Action(duckBeat + 4.5, delegate { game.playerCantBop = false; }) + }); + } + + public void CueCrouch(double crouchBeat) + { + game.ScheduleInput(crouchBeat, 3f, Minigame.InputAction_BasicPress, CrouchSuccess, CrouchMiss, null); + BeatAction.New(game, new List() { + new BeatAction.Action(crouchBeat, delegate { + game.wantsCrouch = true; + game.cpu1CantBop = true; + game.CPU1.DoScaledAnimationAsync("letsgo", 1f, 0, 1); + }), + new BeatAction.Action(crouchBeat+1, delegate { + game.cpu2CantBop = true; + SoundByte.PlayOneShotGame("airboarder/crouch"); + SoundByte.PlayOneShotGame("airboarder/crouchCharge"); + SoundByte.PlayOneShotGame("airboarder/crouchvox"); + game.CPU1.DoScaledAnimationAsync("charge", 1f, 0, 1); + game.CPU2.DoScaledAnimationAsync("letsgo", 1f, 0, 1); + }), + new BeatAction.Action(crouchBeat + 2, delegate { + SoundByte.PlayOneShotGame("airboarder/crouch"); + game.playerCantBop = true; + game.CPU2.DoScaledAnimationAsync("charge", 1f, 0, 1); + game.Player.DoScaledAnimationAsync("letsgo", 1f, 0, 1); + SoundByte.PlayOneShotGame("airboarder/crouchCharge"); + SoundByte.PlayOneShotGame("airboarder/crouchvox"); + }) + }); + } + + void Update() + { + float normalizedStart = game.conductor.GetPositionFromBeat(appearBeat, 40f); + anim.DoNormalizedAnimation("move", normalizedStart, animLayer: 0); + if (normalizedStart > 1) Destroy(gameObject); + } + + public void DuckSuccess(PlayerActionEvent caller, float state) + { + game.Player.DoScaledAnimationAsync("duck", 1f, 0, animLayer:1); + double beat = caller.startBeat + caller.timer; + BeatAction.New(this, new() { + new(beat, () => game.playerCantBop = true), + new(beat + 1.5f, () => game.playerCantBop = false) + }); + + if (state is >= 1 or <= -1) + { + anim.DoScaledAnimationAsync("shake", 1f, 0f, animLayer: 1); + SoundByte.PlayOneShotGame("airboarder/barely"); + SoundByte.PlayOneShotGame("airboarder/barelyvox"); + } + else + { + SoundByte.PlayOneShotGame("airboarder/crouch"); + SoundByte.PlayOneShotGame("airboarder/crouchvox"); + } + } + + public void DuckMiss(PlayerActionEvent caller) + { + game.Player.DoScaledAnimationAsync("hit1",1.5f, 0, 1); + anim.DoScaledAnimationAsync("break", 1f, 0, animLayer:1); + double beat = caller.startBeat + caller.timer; + game.MissSound(beat); + BeatAction.New(this, new() { + new(beat, () => game.playerCantBop = true), + new(beat + 1.5f, () => game.playerCantBop = false) + }); + } + + public void CrouchSuccess(PlayerActionEvent caller, float state) + { + game.Player.DoScaledAnimationAsync("charge", 1f, 0, 1); + if (state is >= 1 or <= -1) + { + anim.DoScaledAnimationAsync("shake", 1f, 0, animLayer:1); + SoundByte.PlayOneShotGame("airboarder/barely"); + SoundByte.PlayOneShotGame("airboarder/barelyvox"); + } + else + { + SoundByte.PlayOneShotGame("airboarder/crouch"); + SoundByte.PlayOneShotGame("airboarder/crouchCharge"); + SoundByte.PlayOneShotGame("airboarder/crouchvox"); + } + game.playerCantBop = true; + } + + public void CrouchMiss(PlayerActionEvent caller) { + game.Player.DoScaledAnimationAsync("hit1", 1.5f, 0, 1); + anim.DoScaledAnimationAsync("break", 1f, 0, animLayer: 1); + double beat = caller.startBeat + caller.timer; + game.MissSound(beat); + BeatAction.New(this, new() { + new(beat, ()=>game.playerCantBop = true), + new(beat+1.5f, ()=>game.playerCantBop = false) + }); + } + } +} + diff --git a/Assets/Scripts/Games/Airboarder/Arch.cs.meta b/Assets/Scripts/Games/Airboarder/Arch.cs.meta new file mode 100644 index 000000000..7d0f6c1e6 --- /dev/null +++ b/Assets/Scripts/Games/Airboarder/Arch.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7418df1ca9a5218468aa02006816659f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Games/Airboarder/ScrollingFloor.cs b/Assets/Scripts/Games/Airboarder/ScrollingFloor.cs new file mode 100644 index 000000000..91062321f --- /dev/null +++ b/Assets/Scripts/Games/Airboarder/ScrollingFloor.cs @@ -0,0 +1,50 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using System; +using HeavenStudio.Util; +using HeavenStudio.InputSystem; + + + +namespace HeavenStudio.Games.Scripts_Airboarder +{ + + public class Scrollng_Floor : MonoBehaviour + { + public float scrollSpeedX; + public float scrollSpeedY; + private SkinnedMeshRenderer meshRenderer; + + public Airboarder game; + + + // Start is called before the first frame update + private void Awake() + { + game = Airboarder.instance; + meshRenderer = GetComponent(); + ScrollFloorTexture(Conductor.instance.songBpm); + + } + + + + // Update is called once per frame + void Update() + { + + + + } + + public void ScrollFloorTexture(float bpm) + { + float modifier = bpm/120; + meshRenderer.material.mainTextureOffset = new Vector2(modifier * scrollSpeedX, modifier * scrollSpeedY); + } + + + + } +} \ No newline at end of file diff --git a/Assets/Scripts/Games/Airboarder/ScrollingFloor.cs.meta b/Assets/Scripts/Games/Airboarder/ScrollingFloor.cs.meta new file mode 100644 index 000000000..5df359d2a --- /dev/null +++ b/Assets/Scripts/Games/Airboarder/ScrollingFloor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 801f20123d7ca1a4ebbf7aa1d9de53f8 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Games/Airboarder/Wall.cs b/Assets/Scripts/Games/Airboarder/Wall.cs new file mode 100644 index 000000000..b3038b87f --- /dev/null +++ b/Assets/Scripts/Games/Airboarder/Wall.cs @@ -0,0 +1,121 @@ +using System.Collections; +using System.Collections.Generic; +using HeavenStudio.Util; +using HeavenStudio.InputSystem; +using UnityEngine; + +namespace HeavenStudio.Games.Scripts_Airboarder +{ + + public class Wall : MonoBehaviour + { + public Airboarder game; + + public double targetBeat; + public double appearBeat; + + public float normalizedWall; + + public float cueStart; + + + + + [Header("Components")] + [SerializeField] Animator wallAnim; + + + + private bool isCrouch; + // Start is called before the first frame update + private void Awake() + { + game = Airboarder.instance; + + + } + + + + public void CueJump(double jumpBeat) + { + game.ScheduleInput(jumpBeat, 3f, Airboarder.InputAction_FlickRelease, JumpSuccess, JumphMiss, JumpEmpty); + + BeatAction.New(game, new List() { + + + new BeatAction.Action(jumpBeat+1, delegate + { + game.CPU1.DoScaledAnimationAsync("jump", 1f, 0, 1); + SoundByte.PlayOneShotGame("airboarder/jump"); + SoundByte.PlayOneShotGame("airboarder/jumpvox"); + }), + new BeatAction.Action(jumpBeat+2, delegate { + game.CPU2.DoScaledAnimationAsync("jump", 1f, 0, 1); + SoundByte.PlayOneShotGame("airboarder/jump"); + SoundByte.PlayOneShotGame("airboarder/jumpvox"); + }), + new BeatAction.Action(jumpBeat+2.5, delegate {game.cpu1CantBop = false;} ), + new BeatAction.Action(jumpBeat+3.5, delegate {game.cpu2CantBop = false;} ), + }); + + } + + + + + + + // Update is called once per frame + void Update() + { + var cond = Conductor.instance; + var currentBeat = cond.songPositionInBeatsAsDouble; + float normalizedWall = Conductor.instance.GetPositionFromBeat(appearBeat, 40f); + wallAnim.GetComponent().DoNormalizedAnimation("move", normalizedWall, 0); + if (normalizedWall > 1) Destroy(gameObject); + } + + public void JumpSuccess(PlayerActionEvent caller, float state) + { + game.Player.DoScaledAnimationAsync("jump", 1f, 0, 1); + if (state is >= 1 or <= -1) + { + wallAnim.DoScaledAnimationAsync("shake", 1f, 0, 1); + SoundByte.PlayOneShotGame("airboarder/barely"); + SoundByte.PlayOneShotGame("airboarder/barelyvox"); + } + else + { + SoundByte.PlayOneShotGame("airboarder/jump"); + SoundByte.PlayOneShotGame("airboarder/jumpvox"); + } + + double beat = caller.startBeat + caller.timer; + BeatAction.New(this, new() { + new(beat, ()=>game.playerCantBop = true), + new(beat+1.5f, ()=>game.playerCantBop = false)}); + game.wantsCrouch = false; + } + + public void JumphMiss(PlayerActionEvent caller){ + game.playerCantBop = true; + game.wantsCrouch = false; + game.Player.DoScaledAnimationAsync("hit2", 1f, 0, 1); + wallAnim.DoScaledAnimationAsync("break", 1f, 0, 1); + double beat = caller.startBeat + caller.timer; + game.MissSound(beat); + BeatAction.New(this, new() { + new(beat+1.5f, ()=>game.playerCantBop = false)}); + + } + + public void JumpEmpty(PlayerActionEvent caller){ + + } + + + + } +} + diff --git a/Assets/Scripts/Games/Airboarder/Wall.cs.meta b/Assets/Scripts/Games/Airboarder/Wall.cs.meta new file mode 100644 index 000000000..6981541e5 --- /dev/null +++ b/Assets/Scripts/Games/Airboarder/Wall.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 880c2da5c9a9de040b78025a28c90867 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Games/BonOdori/BonOdori.cs b/Assets/Scripts/Games/BonOdori/BonOdori.cs index ce10566a4..d16060406 100644 --- a/Assets/Scripts/Games/BonOdori/BonOdori.cs +++ b/Assets/Scripts/Games/BonOdori/BonOdori.cs @@ -445,8 +445,8 @@ namespace HeavenStudio.Games string clip = typeSpeak switch { 0 => "pan", - 1 => "pa_n", - 2 or _ => "pa", + 1 => "pa", + 2 or _ => "pa_n", }; var pitch = SoundByte.GetPitchFromSemiTones(semitone, true); SoundByte.PlayOneShotGame($"bonOdori/" + clip + (variation + 1), beat, pitch); @@ -463,8 +463,8 @@ namespace HeavenStudio.Games string clip = typeSpeak switch { 0 => "don", - 1 => "do_n", - 2 or _ => "do", + 1 => "do", + 2 or _ => "do_n", }; var pitch = SoundByte.GetPitchFromSemiTones(semitone, true); diff --git a/Assets/Scripts/Games/BuiltToScaleDS/BuiltToScaleDS.cs b/Assets/Scripts/Games/BuiltToScaleDS/BuiltToScaleDS.cs index fa502a5ab..09fcdd71b 100644 --- a/Assets/Scripts/Games/BuiltToScaleDS/BuiltToScaleDS.cs +++ b/Assets/Scripts/Games/BuiltToScaleDS/BuiltToScaleDS.cs @@ -97,16 +97,14 @@ namespace HeavenStudio.Games [SerializeField] private Material shooterMaterial; [SerializeField] private Material objectMaterial; [SerializeField] private Material gridPlaneMaterial; - private Material elevatorMaterial; - private Material[] gridMaterials; - private Material[] firstPatternLights; - private Material[] secondPatternLights; - private Material[] elevatorObjectMats; + [SerializeField] private Material elevatorMaterial; + [SerializeField] private Material beltMaterial; + [SerializeField] private Material[] firstPatternLights; + [SerializeField] private Material[] secondPatternLights; [Header("Properties")] [SerializeField] float beltSpeed = 1f; - private Material beltMaterial; private Material[] environmentMaterials; private Material[] elevatorMaterials; private float currentBeltOffset; @@ -132,52 +130,52 @@ namespace HeavenStudio.Games GameCamera.AdditionalRotEuler = camPos.eulerAngles; GameCamera.AdditionalFoV = cameraFoV; - environmentMaterials = environmentRenderer.materials; - elevatorMaterials = elevatorRenderer.materials; - beltMaterial = Instantiate(environmentMaterials[8]); - environmentMaterials[8] = beltMaterial; - elevatorObjectMats = new Material[] - { - Instantiate(elevatorMaterials[0]), - Instantiate(elevatorMaterials[1]), - Instantiate(elevatorMaterials[2]), - }; - elevatorMaterials[0] = elevatorObjectMats[0]; - elevatorMaterials[1] = elevatorObjectMats[1]; - elevatorMaterials[2] = elevatorObjectMats[2]; - elevatorMaterial = Instantiate(elevatorMaterials[3]); - elevatorMaterials[3] = elevatorMaterial; - gridMaterials = new Material[] - { - Instantiate(environmentMaterials[9]), - Instantiate(environmentMaterials[11]), - Instantiate(environmentMaterials[12]), - Instantiate(environmentMaterials[13]), - Instantiate(environmentMaterials[14]), - }; - environmentMaterials[9] = gridMaterials[0]; - environmentMaterials[11] = gridMaterials[1]; - environmentMaterials[12] = gridMaterials[2]; - environmentMaterials[13] = gridMaterials[3]; - environmentMaterials[14] = gridMaterials[4]; + // environmentMaterials = environmentRenderer.materials; + // elevatorMaterials = elevatorRenderer.materials; + // beltMaterial = Instantiate(environmentMaterials[8]); + // environmentMaterials[8] = beltMaterial; + // elevatorObjectMats = new Material[] + // { + // Instantiate(elevatorMaterials[0]), + // Instantiate(elevatorMaterials[1]), + // Instantiate(elevatorMaterials[2]), + // }; + // elevatorMaterials[0] = elevatorObjectMats[0]; + // elevatorMaterials[1] = elevatorObjectMats[1]; + // elevatorMaterials[2] = elevatorObjectMats[2]; + // elevatorMaterial = Instantiate(elevatorMaterials[3]); + // elevatorMaterials[3] = elevatorMaterial; + // gridMaterials = new Material[] + // { + // Instantiate(environmentMaterials[9]), + // Instantiate(environmentMaterials[11]), + // Instantiate(environmentMaterials[12]), + // Instantiate(environmentMaterials[13]), + // Instantiate(environmentMaterials[14]), + // }; + // environmentMaterials[9] = gridMaterials[0]; + // environmentMaterials[11] = gridMaterials[1]; + // environmentMaterials[12] = gridMaterials[2]; + // environmentMaterials[13] = gridMaterials[3]; + // environmentMaterials[14] = gridMaterials[4]; - firstPatternLights = new Material[] - { - Instantiate(environmentMaterials[1]), - Instantiate(environmentMaterials[2]), - Instantiate(environmentMaterials[4]), - }; - environmentMaterials[1] = firstPatternLights[0]; - environmentMaterials[2] = firstPatternLights[1]; - environmentMaterials[4] = firstPatternLights[2]; + // firstPatternLights = new Material[] + // { + // Instantiate(environmentMaterials[1]), + // Instantiate(environmentMaterials[2]), + // Instantiate(environmentMaterials[4]), + // }; + // environmentMaterials[1] = firstPatternLights[0]; + // environmentMaterials[2] = firstPatternLights[1]; + // environmentMaterials[4] = firstPatternLights[2]; - secondPatternLights = new Material[] - { - Instantiate(environmentMaterials[0]), - Instantiate(environmentMaterials[3]) - }; - environmentMaterials[0] = secondPatternLights[0]; - environmentMaterials[3] = secondPatternLights[1]; + // secondPatternLights = new Material[] + // { + // Instantiate(environmentMaterials[0]), + // Instantiate(environmentMaterials[3]) + // }; + // environmentMaterials[0] = secondPatternLights[0]; + // environmentMaterials[3] = secondPatternLights[1]; elevatorAnim.Play("MakeRod", 0, 1f); UpdateColors(); @@ -231,14 +229,6 @@ namespace HeavenStudio.Games beltMaterial.SetColor("_Color", currentEnvironmentColor); gridPlaneMaterial.SetColor("_Color", currentEnvironmentColor); elevatorMaterial.SetColor("_Color", currentEnvironmentColor); - foreach (var mat in gridMaterials) - { - mat.SetColor("_Color", currentEnvironmentColor); - } - foreach (var mat in elevatorObjectMats) - { - mat.SetColor("_Color", currentObjectColor); - } if (!lighting) { foreach (var mat in firstPatternLights) @@ -298,8 +288,8 @@ namespace HeavenStudio.Games currentBeltOffset = (currentBeltOffset + Time.deltaTime * -beltSpeed) % 1f; beltMaterial.mainTextureOffset = new Vector2(0f, currentBeltOffset); - environmentRenderer.materials = environmentMaterials; - elevatorRenderer.materials = elevatorMaterials; + // environmentRenderer.materials = environmentMaterials; + // elevatorRenderer.materials = elevatorMaterials; if (PlayerInput.PlayerHasControl() && PlayerInput.CurrentControlStyle is InputSystem.InputController.ControlStyles.Touch) { diff --git a/Assets/Scripts/Games/DogNinja/DogNinja.cs b/Assets/Scripts/Games/DogNinja/DogNinja.cs index 5bba68607..dc115d9d0 100644 --- a/Assets/Scripts/Games/DogNinja/DogNinja.cs +++ b/Assets/Scripts/Games/DogNinja/DogNinja.cs @@ -5,6 +5,7 @@ using System; using System.Collections.Generic; using UnityEngine; using TMPro; +using Jukebox; namespace HeavenStudio.Games.Loaders { @@ -13,11 +14,46 @@ namespace HeavenStudio.Games.Loaders { public static Minigame AddGame(EventCaller eventCaller) { + RiqEntity ObjectUpdater(string datamodel, RiqEntity e) + { + if (datamodel == "dogNinja/ThrowObject" && e.version == 0) + { + e["diffObjs"] = e["direction"] == 2 && e["typeL"] != e["typeR"]; + e["type"] = e["direction"] is 0 or 2 ? (int)e["typeL"] : e["typeR"]; + e.version = 1; + + return e; + } + return null; + } + // // Beatmap.Entities isn't available in a riqentity updater... + // RiqEntity BirdUpdater(string datamodel, RiqEntity e) + // { + // if (datamodel == "dogNinja/CutEverything" && e.version == 0) + // { + // RiqEntity nextBird = eventCaller.gameManager.Beatmap.Entities.Find(c => c.datamodel is "dogNinja/CutEverything" && c.beat > e.beat); + // if (nextBird != null) nextBird.datamodel = "dogNinja/DELETE THIS"; + // e.length = nextBird != null ? (float)(nextBird.beat - e.beat) : 4; + // e.version = 1; + + // return e; + // } + // return null; + // } + + RiqBeatmap.OnUpdateEntity += ObjectUpdater; + // RiqBeatmap.OnUpdateEntity += BirdUpdater; + return new Minigame("dogNinja", "Dog Ninja", "554899", false, false, new List() { new GameAction("Bop", "Bop") { - function = delegate { DogNinja.instance.Bop(eventCaller.currentEntity.beat, eventCaller.currentEntity.length, eventCaller.currentEntity["auto"], eventCaller.currentEntity["toggle"]); }, + function = delegate { + var e = eventCaller.currentEntity; + if (eventCaller.gameManager.minigameObj.TryGetComponent(out DogNinja instance)) { + instance.Bop(e.beat, e.length, e["auto"], e["toggle"]); + } + }, resizable = true, parameters = new List() { @@ -27,17 +63,28 @@ namespace HeavenStudio.Games.Loaders }, new GameAction("Prepare", "Prepare") { - function = delegate { DogNinja.instance.Prepare(eventCaller.currentEntity.beat); }, + function = delegate { + if (eventCaller.gameManager.minigameObj.TryGetComponent(out DogNinja instance)) { + instance.DoPrepare(); + } + }, defaultLength = 0.5f, }, new GameAction("ThrowObject", "Throw Object") { - function = delegate { var e = eventCaller.currentEntity; DogNinja.QueueObject(e.beat, e["direction"], e["typeL"], e["typeR"], e["shouldPrepare"], false); }, - inactiveFunction = delegate { var e = eventCaller.currentEntity; DogNinja.QueueObject(e.beat, e["direction"], e["typeL"], e["typeR"], e["shouldPrepare"], e["muteThrow"]); }, + preFunction = delegate { + var e = eventCaller.currentEntity; + DogNinja.QueueObject(e.beat, e["direction"], e["diffObjs"], e["type"], e["typeL"], e["typeR"], e["shouldPrepare"], e["muteThrow"], e); + }, defaultLength = 2, parameters = new List() { new Param("direction", DogNinja.ObjectDirection.Left, "Which Side", "Choose the side(s) the object(s) should be thrown from."), + new Param("diffObjs", false, "Different Objects", "Toggle if the sides should be different.", new() { + new((x, _) => (bool)x, "typeL", "typeR"), + new((x, _) => !(bool)x, "type"), + }), + new Param("type", DogNinja.ObjectType.Random, "Object", "Choose the object to be thrown."), new Param("typeL", DogNinja.ObjectType.Random, "Left Object", "Choose the object to be thrown from the left."), new Param("typeR", DogNinja.ObjectType.Random, "Right Object", "Choose the object to be thrown from the right."), new Param("shouldPrepare", true, "Prepare", "Toggle if Dog Ninja should automatically prepare for this cue."), @@ -46,57 +93,26 @@ namespace HeavenStudio.Games.Loaders }, new GameAction("CutEverything", "Mister Eagle's Sign") { - function = delegate { var e = eventCaller.currentEntity; DogNinja.instance.CutEverything(e.beat, e["toggle"], e["text"]); }, - defaultLength = 0.5f, + function = delegate { + var e = eventCaller.currentEntity; + if (eventCaller.gameManager.minigameObj.TryGetComponent(out DogNinja instance)) { + instance.CutEverything(e.beat, e.length, e["toggle"], e["text"]); + } + }, + defaultLength = 4f, + resizable = true, parameters = new List() { - new Param("toggle", true, "Play Sound", "Toggle if the sound effect should play for flying in and out."), + new Param("toggle", true, "Play Sound", "Toggle if the sound effect should play for flying in."), new Param("text", "Cut everything!", "Sign Text", "Set the text to be displayed on the sign.") } }, new GameAction("HereWeGo", "Here We Go!") { - function = delegate { DogNinja.instance.HereWeGo(eventCaller.currentEntity.beat); }, + preFunction = delegate { DogNinja.HereWeGo(eventCaller.currentEntity.beat); }, defaultLength = 2, - inactiveFunction = delegate { DogNinja.HereWeGoInactive(eventCaller.currentEntity.beat); }, preFunctionLength = 1, }, - - // these are still here for backwards-compatibility but are hidden in the editor - new GameAction("ThrowObjectLeft", "Throw Object Left") - { - function = delegate { var e = eventCaller.currentEntity; DogNinja.QueueObject(e.beat, 0, e["type"], 0, true, false);}, - defaultLength = 2, - hidden = true, - parameters = new List() - { - new Param("type", DogNinja.ObjectType.Random, "Object", "The object to be thrown"), - }, - inactiveFunction = delegate { var e = eventCaller.currentEntity; DogNinja.QueueObject(e.beat, 0, e["type"], 0, true, false);}, - }, - new GameAction("ThrowObjectRight", "Throw Object Right") - { - function = delegate { var e = eventCaller.currentEntity; DogNinja.QueueObject(e.beat, 1, 0, e["type"], true, false);}, - defaultLength = 2, - hidden = true, - parameters = new List() - { - new Param("type", DogNinja.ObjectType.Random, "Object", "The object to be thrown"), - }, - inactiveFunction = delegate { var e = eventCaller.currentEntity; DogNinja.QueueObject(e.beat, 1, 0, e["type"], true, false);}, - }, - new GameAction("ThrowObjectBoth", "Throw Object Both") - { - function = delegate { var e = eventCaller.currentEntity; DogNinja.QueueObject(e.beat, 2, e["typeL"], e["typeR"], true, false);}, - defaultLength = 2, - hidden = true, - parameters = new List() - { - new Param("typeL", DogNinja.ObjectType.Random, "Left Object", "The object on the left to be thrown"), - new Param("typeR", DogNinja.ObjectType.Random, "Right Object", "The object on the right to be thrown"), - }, - inactiveFunction = delegate { var e = eventCaller.currentEntity; DogNinja.QueueObject(e.beat, 2, e["typeL"], e["typeR"], true, false);}, - }, }, new List() { "ntr", "normal" }, "ntrninja", "en", @@ -108,18 +124,14 @@ namespace HeavenStudio.Games.Loaders namespace HeavenStudio.Games { + using Jukebox; using Scripts_DogNinja; public class DogNinja : Minigame { - static List queuedThrows = new List(); - struct QueuedThrow + private struct QueuedThrow { - public double beat; - public int direction; - public int typeL; - public int typeR; - public string sfxNumL; - public string sfxNumR; + public int[] types; + public string sfxNumL, sfxNumR; } [Header("Animators")] @@ -127,23 +139,15 @@ namespace HeavenStudio.Games public Animator BirdAnim; // bird flying in and out [Header("References")] - [SerializeField] GameObject ObjectBase; - [SerializeField] GameObject FullBird; + [SerializeField] ThrowObject ObjectBase; [SerializeField] SpriteRenderer WhichObject; - public SpriteRenderer WhichLeftHalf; - public SpriteRenderer WhichRightHalf; - [SerializeField] TMP_Text cutEverythingText; - - [Header("Curves")] - [SerializeField] BezierCurve3D CurveFromLeft; - [SerializeField] BezierCurve3D CurveFromRight; + [SerializeField] TMP_Text CutEverythingText; [SerializeField] Sprite[] ObjectTypes; - private bool birdOnScreen = false; - private const string sfxNum = "dogNinja/"; - - public static DogNinja instance; + private bool autoBop = true; + public bool queuePrepare; + public bool preparing; public enum ObjectDirection { @@ -152,7 +156,7 @@ namespace HeavenStudio.Games Both, } - public enum ObjectType + public enum ObjectType : int { Random, // random fruit Apple, // fruit @@ -195,199 +199,172 @@ namespace HeavenStudio.Games new("NtrNinjaTouchRelease", new int[] { IAEmptyCat, IAReleaseCat, IAEmptyCat }, IA_Empty, IA_TouchBasicRelease, IA_Empty); - private void Awake() + public override void OnLateBeatPulse(double beat) { - instance = this; - SetupBopRegion("dogNinja", "Bop", "auto"); - } - - void OnDestroy() - { - if (!Conductor.instance.isPlaying || Conductor.instance.isPaused) - { - if (queuedThrows.Count > 0) queuedThrows.Clear(); - } - foreach (var evt in scheduledInputs) - { - evt.Disable(); - } - } - - public override void OnBeatPulse(double beat) - { - if (BeatIsInBopRegion(beat) && DogAnim.IsAnimationNotPlaying() || DogAnim.IsPlayingAnimationNames("Idle")) { + if (autoBop && !preparing && !queuePrepare && (DogAnim.IsAnimationNotPlaying() || DogAnim.IsPlayingAnimationNames("Idle"))) { DogAnim.DoScaledAnimationAsync("Bop", 0.5f); } } + public override void OnPlay(double beat) + { + foreach (var e in gameManager.Beatmap.Entities.FindAll(e => e.datamodel is "dogNinja/ThrowObject" && beat > e.beat && beat < e.beat + 1)) + { + DogAnim.Play("Prepare", 0, 1); + preparing = true; + QueueObject(e.beat, e["direction"], e["diffObjs"], e["type"], e["typeL"], e["typeR"], e["shouldPrepare"], true, e); + } + } + + public override void OnGameSwitch(double beat) + { + foreach (var e in gameManager.Beatmap.Entities.FindAll(e => e.datamodel is "dogNinja/ThrowObject" && beat >= e.beat - 2 && beat < e.beat + 1)) + { + QueuedThrow t = e["throwData"]; + bool shouldPrepare = e["shouldPrepare"]; + if (beat > e.beat) { + shouldPrepare = false; + DogAnim.Play("Prepare", 0, 1); + preparing = true; + } + ThrowObject(e.beat, e["direction"], shouldPrepare, t.types, t.sfxNumL, t.sfxNumR); + } + } + private void Update() { - if (DogAnim.GetBool("needPrepare") && DogAnim.IsAnimationNotPlaying()) + // prepare queuing stuff + if (queuePrepare && !preparing && (DogAnim.IsAnimationNotPlaying() || DogAnim.IsPlayingAnimationNames("Bop"))) { DogAnim.DoScaledAnimationAsync("Prepare", 0.5f); - DogAnim.SetBool("needPrepare", true); + preparing = true; + queuePrepare = false; } + // controls stuff if (PlayerInput.GetIsAction(InputAction_TouchPress) && !GameManager.instance.autoplay) { - DogAnim.SetBool("needPrepare", true); + // queuePrepare = true; DogAnim.DoScaledAnimationAsync("Prepare", 0.5f); + preparing = true; } if (PlayerInput.GetIsAction(InputAction_TouchRelease) && (!IsExpectingInputNow(InputAction_Press)) && (!GameManager.instance.autoplay)) { - DogAnim.SetBool("needPrepare", false); - DogAnim.DoScaledAnimationAsync("Bop", 0.5f); + StopPrepare(); + DogAnim.DoScaledAnimationAsync("Unprepare", 0.5f); } if (PlayerInput.GetIsAction(InputAction_Press) && !IsExpectingInputNow(InputAction_Press)) { - System.Random rd = new System.Random(); - string slice; - int LorR = rd.Next(0, 2); - if (LorR < 1) - { - slice = "WhiffRight"; - } - else - { - slice = "WhiffLeft"; - } - + string slice = UnityEngine.Random.Range(0, 1f) < 0.5f ? "WhiffRight" : "WhiffLeft"; DogAnim.DoScaledAnimationAsync(slice, 0.5f); - SoundByte.PlayOneShotGame("dogNinja/whiff"); - DogAnim.SetBool("needPrepare", false); - } - if (queuedThrows.Count > 0) - { - foreach (var obj in queuedThrows) { ThrowObject(obj.beat, obj.direction, obj.typeL, obj.typeR, obj.sfxNumL, obj.sfxNumR); } - queuedThrows.Clear(); + SoundByte.PlayOneShotGame("dogNinja/whiff"); + StopPrepare(); } } public void Bop(double beat, float length, bool auto, bool bop) { + autoBop = auto; if (!bop) return; - List actions = new(); - for (int i = 0; i < length; i++) - { + List actions = new(); + for (int i = 0; i < length; i++) { actions.Add(new(beat + i, delegate { DogAnim.DoScaledAnimationAsync("Bop", 0.5f); })); } - if (actions.Count > 0) BeatAction.New(this, actions); } - public static void QueueObject(double beat, int direction, int typeL, int typeR, bool prepare, bool muteThrow) + public static void QueueObject(double beat, int direction, bool diffObjs, int type, int typeL, int typeR, bool prepare, bool muteThrow, RiqEntity e) { - int ObjSprite = 1; - if (typeL == 0 || typeR == 0) + int randomObj = 1; + int[] types = diffObjs ? new[] { typeL, typeR } : new[] { type, type }; + string[] sfxNums = new string[2]; + + for (int i = 0; i < 2; i++) { - // random object code. it makes a random number from 1-7 and sets that as the sprite - System.Random rd = new System.Random(); - ObjSprite = rd.Next(1, 7); + if (types[i] == 0 && (diffObjs || i == 0)) randomObj = UnityEngine.Random.Range((int)ObjectType.Apple, (int)ObjectType.Potato + 1); + if (types[i] == 0) types[i] = randomObj; + sfxNums[i] = "dogNinja/" + (types[i] < 7 ? "fruit" : Enum.GetName(typeof(ObjectType), types[i])); } - string sfxNumL = "dogNinja/"; - if (direction is 0 or 2) - { - sfxNumL += typeL < 7 ? "fruit" : Enum.GetName(typeof(ObjectType), typeL); - if (typeL == 0) typeL = ObjSprite; - if (!muteThrow) SoundByte.PlayOneShotGame(sfxNumL + "1", forcePlay: true); - } - - string sfxNumR = "dogNinja/"; - if (direction is 1 or 2) - { - sfxNumR += typeR < 7 ? "fruit" : Enum.GetName(typeof(ObjectType), typeR); - if (typeR == 0) typeR = ObjSprite; - if (!(direction == 2 && typeL == typeR) && !muteThrow) SoundByte.PlayOneShotGame(sfxNumR + "1", forcePlay: true); - } - - queuedThrows.Add(new QueuedThrow() - { - beat = beat, - direction = direction, - typeL = typeL, - typeR = typeR, - sfxNumL = sfxNumL, - sfxNumR = sfxNumR, - }); - - prepare = prepare && (PlayerInput.CurrentControlStyle != InputController.ControlStyles.Touch || GameManager.instance.autoplay); - if (prepare) DogNinja.instance.DogAnim.SetBool("needPrepare", true); - } - - public void ThrowObject(double beat, int direction, int typeL, int typeR, string sfxNumL, string sfxNumR) - { - // instantiate a game object and give it its variables - if (direction is 0 or 2) - { - WhichObject.sprite = ObjectTypes[typeL]; - ThrowObject ObjectL = Instantiate(ObjectBase, gameObject.transform).GetComponent(); - ObjectL.startBeat = beat; - ObjectL.curve = CurveFromLeft; - ObjectL.fromLeft = true; - ObjectL.direction = direction; - ObjectL.type = typeL; - ObjectL.sfxNum = sfxNumL; - if (direction == 2) ObjectL.shouldSfx = (typeL == typeR); - } - - if (direction is 1 or 2) - { - WhichObject.sprite = ObjectTypes[typeR]; - ThrowObject ObjectR = Instantiate(ObjectBase, gameObject.transform).GetComponent(); - ObjectR.startBeat = beat; - ObjectR.curve = CurveFromRight; - ObjectR.fromLeft = false; - ObjectR.direction = direction; - ObjectR.type = typeR; - ObjectR.sfxNum = sfxNumR; - if (direction == 2) ObjectR.shouldSfx = !(typeL == typeR); - } - } - - public void CutEverything(double beat, bool sound, string customText) - { - // plays one anim with sfx when it's not on screen, plays a different anim with no sfx when on screen. ez - if (!birdOnScreen) - { - FullBird.SetActive(true); - if (sound) - { - SoundByte.PlayOneShotGame(sfxNum + "bird_flap"); + if (!muteThrow) { + for (int i = 0; i < (direction == 2 && diffObjs ? 2 : 1); i++) { + SoundByte.PlayOneShotGame(sfxNums[i] + "1", beat, forcePlay: true); } - BirdAnim.Play("FlyIn", 0, 0); - birdOnScreen = true; - cutEverythingText.text = customText; } - else - { - BirdAnim.Play("FlyOut", 0, 0); - birdOnScreen = false; + + if (GameManager.instance.minigame is DogNinja instance) { + instance.ThrowObject(beat, direction, prepare, types, sfxNums[0], sfxNums[1]); + + } else { + var queuedThrow = new QueuedThrow() { + types = types, + sfxNumL = sfxNums[0], + sfxNumR = sfxNums[1], + }; + // funny static variable workaround :) + if (!e.dynamicData.TryAdd("throwData", queuedThrow)) { + e["throwData"] = queuedThrow; + } } } - public void Prepare(double beat) + public void ThrowObject(double beat, int direction, bool prepare, int[] types, string sfxNumL, string sfxNumR) + { + if (prepare) { + BeatAction.New(this, new() { + new(beat, () => queuePrepare = PlayerInput.CurrentControlStyle != InputController.ControlStyles.Touch || GameManager.instance.autoplay) + }); + } + for (int i = 0; i < (direction == 2 ? 2 : 1); i++) + { + bool l = direction is 2 ? i == 0 : direction == 0; + WhichObject.sprite = ObjectTypes[l ? types[0] : types[1]]; + ThrowObject obj = Instantiate(ObjectBase, transform); + obj.startBeat = beat; + obj.direction = direction; + obj.fromLeft = l; + obj.type = l ? types[0] : types[1]; + obj.sfxNum = l ? sfxNumL : sfxNumR; + if (direction == 2) obj.shouldSfx = l == (types[0] == types[1]); + } + } + + public void CutEverything(double beat, float length, bool sound, string customText) + { + if (sound) SoundByte.PlayOneShotGame("dogNinja/bird_flap"); + BirdAnim.DoScaledAnimationAsync("FlyIn", 0.5f); + CutEverythingText.text = customText; + + BeatAction.New(this, new() { + new(beat + length, () => BirdAnim.Play("FlyOut", 0, 0)) + }); + } + + public void StopPrepare() + { + preparing = false; + queuePrepare = false; + } + + public void DoPrepare() { if (PlayerInput.CurrentControlStyle == InputController.ControlStyles.Touch && PlayerInput.PlayerHasControl()) return; - if (!DogAnim.GetBool("needPrepare")) DogAnim.DoScaledAnimationAsync("Prepare", 0.5f); - DogAnim.SetBool("needPrepare", true); + DogAnim.DoScaledAnimationAsync("Prepare", 0.5f); + preparing = true; } - public void HereWeGo(double beat) + public static void HereWeGo(double beat) { - MultiSound.Play(new MultiSound.Sound[] { - new MultiSound.Sound(sfxNum+"here", beat), - new MultiSound.Sound(sfxNum+"we", beat + 0.5f), - new MultiSound.Sound(sfxNum+"go", beat + 1f) - }, forcePlay: true); - } - - public static void HereWeGoInactive(double beat) - { - DogNinja.instance.HereWeGo(beat); + // // sound sequence isn't working? + // PlaySoundSequence("dogNinja", "here_we_go", beat); + MultiSound.Play(new List() { + new("dogNinja/here", beat + 0), + new("dogNinja/we", beat + 0.5), + new("dogNinja/go", beat + 1), + }, forcePlay: true); } } } diff --git a/Assets/Scripts/Games/DogNinja/SpawnHalves.cs b/Assets/Scripts/Games/DogNinja/SpawnHalves.cs index 30c76e4cf..094086e9b 100644 --- a/Assets/Scripts/Games/DogNinja/SpawnHalves.cs +++ b/Assets/Scripts/Games/DogNinja/SpawnHalves.cs @@ -4,15 +4,14 @@ using System; using UnityEngine; using NaughtyBezierCurves; -using HeavenStudio.Util; namespace HeavenStudio.Games.Scripts_DogNinja { + // this code sucks but i don't wanna touch it. it works fine enough. sorry! public class SpawnHalves : MonoBehaviour { public double startBeat; public Vector3 objPos; - private Vector3 posModifier; public bool lefty; float bpmModifier; double songPos; @@ -23,27 +22,20 @@ namespace HeavenStudio.Games.Scripts_DogNinja [SerializeField] BezierCurve3D fallLeftCurve; [SerializeField] BezierCurve3D fallRightCurve; BezierCurve3D curve; - [SerializeField] Transform halvesParent; - - private DogNinja game; - - private void Awake() - { - game = DogNinja.instance; - bpmModifier = Conductor.instance.songBpm / 100; - songPos = Conductor.instance.songPositionInBeatsAsDouble; - } + public SpriteRenderer sr; private void Start() { + bpmModifier = Conductor.instance.songBpm / 100; + songPos = Conductor.instance.songPositionInBeatsAsDouble; curve = lefty ? fallRightCurve : fallLeftCurve; } private void Update() { - float flyPosHalves = (Conductor.instance.GetPositionFromBeat(songPos, 3f)*(Conductor.instance.GetPositionFromBeat(songPos, 2f)))+Conductor.instance.GetPositionFromBeat(songPos, 1f); - flyPosHalves = (flyPosHalves*0.2f)+0.35f; - transform.position = curve.GetPoint(flyPosHalves)+objPos; + float flyPosHalves = (Conductor.instance.GetPositionFromBeat(songPos, 3f) * Conductor.instance.GetPositionFromBeat(songPos, 2f)) + Conductor.instance.GetPositionFromBeat(songPos, 1f); + flyPosHalves = (flyPosHalves * 0.2f) + 0.35f; + transform.position = curve.GetPoint(flyPosHalves) + objPos; float rot = rotSpeed; rot *= lefty ? bpmModifier : -1 * bpmModifier; @@ -51,13 +43,8 @@ namespace HeavenStudio.Games.Scripts_DogNinja // clean-up logic if (flyPosHalves > 1f) { - GameObject.Destroy(gameObject); - }; - - if ((!Conductor.instance.isPlaying && !Conductor.instance.isPaused) - || GameManager.instance.currentGame != "dogNinja") { - GameObject.Destroy(gameObject); - }; + Destroy(gameObject); + } } } } diff --git a/Assets/Scripts/Games/DogNinja/ThrowObject.cs b/Assets/Scripts/Games/DogNinja/ThrowObject.cs index 8aaf1151e..69ef9ffb0 100644 --- a/Assets/Scripts/Games/DogNinja/ThrowObject.cs +++ b/Assets/Scripts/Games/DogNinja/ThrowObject.cs @@ -10,6 +10,8 @@ namespace HeavenStudio.Games.Scripts_DogNinja { public class ThrowObject : MonoBehaviour { + [SerializeField] DogNinja game; + public double startBeat; public int type; public bool fromLeft; @@ -26,120 +28,84 @@ namespace HeavenStudio.Games.Scripts_DogNinja [Header("References")] public BezierCurve3D curve; - [SerializeField] BezierCurve3D barelyCurve; + [SerializeField] BezierCurve3D LeftCurve; + [SerializeField] BezierCurve3D RightCurve; + private BezierCurve3D barelyCurve; [SerializeField] BezierCurve3D BarelyLeftCurve; [SerializeField] BezierCurve3D BarelyRightCurve; - [SerializeField] GameObject HalvesLeftBase; - [SerializeField] GameObject HalvesRightBase; - [SerializeField] Transform ObjectParent; + [SerializeField] SpawnHalves HalvesLeftBase; + [SerializeField] SpawnHalves HalvesRightBase; public Sprite[] objectLeftHalves; public Sprite[] objectRightHalves; - private DogNinja game; - - private void Awake() - { - game = DogNinja.instance; - DogAnim = game.DogAnim; - } - private void Start() { + DogAnim = game.DogAnim; + curve = fromLeft ? LeftCurve : RightCurve; barelyCurve = fromLeft ? BarelyRightCurve : BarelyLeftCurve; - - game.ScheduleInput(startBeat, 1f, DogNinja.InputAction_Press, Hit, Miss, Out); + + game.ScheduleInput(startBeat, 1f, DogNinja.InputAction_Press, Hit, Miss, null); } private void Update() { - float flyPos = Conductor.instance.GetPositionFromBeat(startBeat, 1f)+1.1f; - float flyPosBarely = Conductor.instance.GetPositionFromBeat(barelyTime, 1f)+1f; if (isActive) { + float flyPos = game.conductor.GetPositionFromBeat(startBeat, 1f)+1.1f; flyPos *= 0.31f; transform.position = curve.GetPoint(flyPos); objPos = curve.GetPoint(flyPos); // destroy object when it's off-screen if (flyPos > 1f) { - GameObject.Destroy(gameObject); + Destroy(gameObject); } } else { + float flyPosBarely = game.conductor.GetPositionFromBeat(barelyTime, 1f)+1f; flyPosBarely *= 0.3f; transform.position = barelyCurve.GetPoint(flyPosBarely) + objPos; float rot = fromLeft ? 200f : -200f; transform.rotation = Quaternion.Euler(0, 0, transform.rotation.eulerAngles.z + (rot * Time.deltaTime)); if (flyPosBarely > 1f) { - GameObject.Destroy(gameObject); + Destroy(gameObject); } } - - if ((!Conductor.instance.isPlaying && !Conductor.instance.isPaused) - || GameManager.instance.currentGame != "dogNinja") { - GameObject.Destroy(gameObject); - } - } - - private void SuccessSlice() - { - string slice = "Slice" + direction switch - { - 0 => "Left", - 1 => "Right", - _ => "Both", - }; - - DogAnim.DoScaledAnimationAsync(slice, 0.5f); - if (shouldSfx) SoundByte.PlayOneShotGame(sfxNum+"2"); - - game.WhichLeftHalf.sprite = objectLeftHalves[type-1]; - game.WhichRightHalf.sprite = objectRightHalves[type-1]; - - SpawnHalves LeftHalf = Instantiate(HalvesLeftBase, game.gameObject.transform).GetComponent(); - LeftHalf.startBeat = startBeat; - LeftHalf.lefty = fromLeft; - LeftHalf.objPos = objPos; - - SpawnHalves RightHalf = Instantiate(HalvesRightBase, game.gameObject.transform).GetComponent(); - RightHalf.startBeat = startBeat; - RightHalf.lefty = fromLeft; - RightHalf.objPos = objPos; - - GameObject.Destroy(gameObject); - } - - private void JustSlice() - { - isActive = false; - barelyTime = Conductor.instance.songPositionInBeatsAsDouble; - - string barely = "Barely" + direction switch - { - 0 => "Left", - 1 => "Right", - 2 => "Both", - _ => "Both", - }; - - DogAnim.DoScaledAnimationAsync(barely, 0.5f); - SoundByte.PlayOneShotGame("dogNinja/barely"); } private void Hit(PlayerActionEvent caller, float state) { - game.DogAnim.SetBool("needPrepare", false); - if (state >= 1f || state <= -1f) JustSlice(); - else SuccessSlice(); + game.StopPrepare(); + string dir = direction switch { + 0 => "Left", + 1 => "Right", + _ => "Both", + }; + if (state >= 1f || state <= -1f) { + isActive = false; + barelyTime = game.conductor.songPositionInBeatsAsDouble; + + DogAnim.DoScaledAnimationAsync("Barely" + dir, 0.5f); + if (shouldSfx) SoundByte.PlayOneShotGame("dogNinja/barely"); + } else { + DogAnim.DoScaledAnimationAsync("Slice" + dir, 0.5f); + if (shouldSfx) SoundByte.PlayOneShotGame(sfxNum + "2"); + + HalvesLeftBase.sr.sprite = objectLeftHalves[type - 1]; + HalvesRightBase.sr.sprite = objectRightHalves[type - 1]; + for (int i = 0; i < 2; i++) { + SpawnHalves half = Instantiate(i == 0 ? HalvesLeftBase : HalvesRightBase, game.transform); + half.startBeat = startBeat; + half.lefty = fromLeft; + half.objPos = objPos; + } + + Destroy(gameObject); + } } private void Miss(PlayerActionEvent caller) { - if (!DogAnim.GetBool("needPrepare")) return; - DogAnim.DoScaledAnimationAsync("UnPrepare", 0.5f); - DogAnim.SetBool("needPrepare", false); - } - - private void Out(PlayerActionEvent caller) - { - DogAnim.SetBool("needPrepare", false); + if (!game.preparing) return; + DogAnim.DoScaledAnimationAsync("Unprepare", 0.5f); + game.StopPrepare(); } } } diff --git a/Assets/Scripts/Games/FreezeFrame.meta b/Assets/Scripts/Games/FreezeFrame.meta new file mode 100644 index 000000000..e0b8b0e33 --- /dev/null +++ b/Assets/Scripts/Games/FreezeFrame.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 69ecb8f1748be654185bbb71304db8fa +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Games/FreezeFrame/FreezeFrame.cs b/Assets/Scripts/Games/FreezeFrame/FreezeFrame.cs new file mode 100644 index 000000000..ee9b9abcd --- /dev/null +++ b/Assets/Scripts/Games/FreezeFrame/FreezeFrame.cs @@ -0,0 +1,1400 @@ +using System; +using System.Linq; +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +using HeavenStudio.Util; +using HeavenStudio.InputSystem; + +using Jukebox; + +namespace HeavenStudio.Games.Loaders +{ + using static Minigames; + public static class NtrFreezeFrameLoader + { + public static Minigame AddGame(EventCaller eventCaller) + { + return new Minigame("freezeFrame", "Freeze Frame", "8b93b4", false, false, new List() + { + new GameAction("bop", "Bop") + { + function = delegate { var e = eventCaller.currentEntity; FreezeFrame.SetBopping(e.beat, e.length, e["bop"], e["autoBop"], e["blink"], e["autoBlink"]); }, + defaultLength = 1f, + resizable = true, + parameters = new List() + { + new Param("bop", false, "Bop", "Set the type of photo to use."), + new Param("autoBop", true, "Bop (Auto)", "Set the type of photo to use."), + new Param("blink", false, "Crosshair Blink", "Set the type of photo to use."), + new Param("autoBlink", true, "Crosshair Blink (Auto)", "Set the type of photo to use."), + } + }, + // cues + new GameAction("slowCar", "Slow Car") + { + function = delegate { var e = eventCaller.currentEntity; FreezeFrame.SlowCarCue(e.beat, e["variant"]); }, + defaultLength = 3f, + inactiveFunction = delegate { var e = eventCaller.currentEntity; if (!(bool)e["mute"]) FreezeFrame.SlowCarSFX(); }, + parameters = new List() + { + new Param("variant", FreezeFrame.PhotoType.Random, "Photo Variant", "Set the type of photo to use."), + new Param("mute", false, "Mute", "Mute the sound of the cue."), + new Param("autoShowPhotos", true, "Auto Show Photos", "Automagically show the photos after they're taken.", new List() + { + new Param.CollapseParam((x, _) => (bool)x, new string[] { "gradeType", "audience" }) + }), + new Param("gradeType", FreezeFrame.GradeType.Symbols, "Rating Type", "Choose whether to use the English or Japanese variant of the grading screen."), + new Param("audience", true, "Crowd Cheer", "Set whether or not the audience should cheer when the photos are shown."), + } + }, + new GameAction("fastCar", "Fast Car") + { + function = delegate { var e = eventCaller.currentEntity; FreezeFrame.FastCarCue(e.beat, e["variant"]); }, + defaultLength = 3f, + inactiveFunction = delegate { var e = eventCaller.currentEntity; if (!(bool)e["mute"]) FreezeFrame.FastCarSFX(); }, + parameters = new List() + { + new Param("variant", FreezeFrame.PhotoType.Random, "Photo Variant", "Set the type of photo to use."), + new Param("mute", false, "Mute", "Mute the sound of the cue."), + new Param("autoShowPhotos", true, "Auto Show Photos", "Automagically show the photos after they're taken.", new List() + { + new Param.CollapseParam((x, _) => (bool)x, new string[] { "gradeType", "audience" }) + }), + new Param("gradeType", FreezeFrame.GradeType.Symbols, "Rating Type", "Choose whether to use the English or Japanese variant of the grading screen."), + new Param("audience", true, "Crowd Cheer", "Set whether or not the audience should cheer when the photos are shown."), + } + }, + new GameAction("showPhotos", "Show Photos") + { + function = delegate { var e = eventCaller.currentEntity; FreezeFrame.ShowPhotos(e.beat, e.length, e["gradeType"], e["audience"], e["clearCache"]); }, + defaultLength = 1, + resizable = true, + parameters = new List() + { + new Param("gradeType", FreezeFrame.GradeType.Symbols, "Rating Type", "Choose whether to use the English or Japanese variant of the grading screen."), + new Param("audience", true, "Crowd Cheer", "Set whether or not the audience should cheer when the photos are shown."), + new Param("clearCache", true, "Clear Photos", "Clears the photo cache after the photos are shown."), + } + }, + new GameAction("clearPhotos", "Clear Photo Cache") + { + function = delegate { var e = eventCaller.currentEntity; FreezeFrame.ClearPhotos(); }, + inactiveFunction = delegate { var e = eventCaller.currentEntity; FreezeFrame.ClearPhotos(); }, + defaultLength = 0.5f, + parameters = new List() + { + } + }, + // distractions + new GameAction("spawnPerson", "Spawn Walker") + { + function = delegate { var e = eventCaller.currentEntity; FreezeFrame.SummonWalker(e); }, + defaultLength = 4f, + resizable = true, + parameters = new List() + { + new Param("personType", FreezeFrame.PersonType.Dude1, "Walker Type", "Choose the type of walker to spawn."), + new Param("direction", FreezeFrame.PersonDirection.Random, "Direction", "Choose the direction from which to spawn the walker."), + new Param("layer", new EntityTypes.Integer(-10, 10, 0), "Layer", "The layer on which this walker should spawn (higher numbers are shown in front)."), + } + }, + new GameAction("spawnCrowd", "Show/Hide Crowd") + { + function = delegate { var e = eventCaller.currentEntity; FreezeFrame.ToggleCrowd(e.beat, e["crowd"], e["customCrowd"], e["crowdFarLeft"], e["crowdLeft"], e["crowdRight"], e["crowdFarRight"], e["billboard"]); }, + defaultLength = 0.5f, + parameters = new List() + { + new Param("crowd", true, "Show Crowd", "Choose whether to spawn or despawn the crowd."), + new Param("customCrowd", false, "Custom Crowd", "Select to customize the crowd.", new List() + { + new Param.CollapseParam((x, _) => (bool)x, new string[] { "crowdFarLeft", "crowdLeft", "crowdRight", "crowdFarRight" }) + }), + new Param("crowdFarLeft" , FreezeFrame.CustomCrowdType.PinkDancers, "Far Left" , "Select the graphic to display on the far left."), + new Param("crowdLeft" , FreezeFrame.CustomCrowdType.YellowDancers, "Center Left" , "Select the graphic to display on the near left."), + new Param("crowdRight" , FreezeFrame.CustomCrowdType.TealDancers, "Center Right", "Select the graphic to display on the near right."), + new Param("crowdFarRight", FreezeFrame.CustomCrowdType.PinkDancers, "Far Right" , "Select the graphic to display on the far right."), + new Param("billboard", false, "Show Billboard", "Choose whether to show or hide the billboards."), + } + }, + new GameAction("introSign", "Intro Sign") + { + function = delegate { var e = eventCaller.currentEntity; FreezeFrame.DoIntroSign(e.beat, e.length, e["enter"], e["ease"]); }, + defaultLength = 4f, + resizable = true, + parameters = new List() + { + new Param("enter", true, "Enter", "Choose the sign should enter or exit."), + new Param("ease", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing of the action."), + } + }, + new GameAction("introLights", "Intro Lights") + { + function = delegate { var e = eventCaller.currentEntity; FreezeFrame.IntroLightsAnim(e.beat, e.length, e["lightsOn"]); FreezeFrame.IntroLightsSound(e.beat, e.length, e["lightsOn"]); }, + inactiveFunction = delegate { var e = eventCaller.currentEntity; FreezeFrame.IntroLightsSound(e.beat, e.length, e["lightsOn"]); }, + defaultLength = 1f, + resizable = true, + parameters = new List() + { + new Param("lightsOn", true, "Turn Lights On", "Choose whether to turn the lights on or off."), + } + }, + // settings + new GameAction("toggleOverlay", "Toggle Overlay") + { + function = delegate { var e = eventCaller.currentEntity; FreezeFrame.ToggleOverlay(e.beat, e["showOverlay"], e["showCameraMan"], e["followCamera"]); }, + defaultLength = 0.5f, + parameters = new List() + { + new Param("showOverlay", true, "Show Overlay", "Choose whether or not to show the camera overlay."), + new Param("showCameraMan", true, "Show T.J.", "Choose whether or not to show the box containing T.J. Snapper."), + new Param("followCamera", true, "Follow Camera", "Choose whether or not the overlay should follow the camera."), + } + }, + new GameAction("moveCameraMan", "Move T.J.") + { + function = delegate { var e = eventCaller.currentEntity; FreezeFrame.SetMoveCameraMan(e.beat, e.length, e["startPosX"], e["startPosY"], e["endPosX"], e["endPosY"], e["ease"]); }, + defaultLength = 1f, + resizable = true, + parameters = new List() + { + new Param("startPosX", new EntityTypes.Float(-5.0f, 5.0f, 0.0f), "Start X Position", "X position at which to start."), + new Param("startPosY", new EntityTypes.Float(-5.0f, 5.0f, 0.0f), "Start Y Position", "Y position at which to start."), + new Param("endPosX" , new EntityTypes.Float(-5.0f, 5.0f, 0.0f), "End X Position" , "X position at which to end."), + new Param("endPosY" , new EntityTypes.Float(-5.0f, 5.0f, 0.0f), "End Y Position" , "Y position at which to end."), + new Param("ease", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing of the action.", new List() + { + new Param.CollapseParam((x, _) => (Util.EasingFunction.Ease)x != Util.EasingFunction.Ease.Instant, new string[] { "startPosX", "startPosY" }) + }), + //new Param("flipX", false, "Flip", "Set whether or not to flip T.J. horizontally."), + } + }, + new GameAction("rotateCameraMan", "Rotate T.J.") + { + function = delegate { var e = eventCaller.currentEntity; FreezeFrame.SetRotateCameraMan(e.beat, e.length, e["startRot"], e["endRot"], e["ease"]); }, + defaultLength = 1f, + resizable = true, + parameters = new List() + { + new Param("startRot", new EntityTypes.Float(-360.0f, 360.0f, 0.0f), "Start Rotation", "Rotation degrees at which to start."), + new Param("endRot" , new EntityTypes.Float(-360.0f, 360.0f, 0.0f), "End Rotation" , "Rotation degrees position at which to end."), + new Param("ease", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing of the action.", new List() + { + new Param.CollapseParam((x, _) => (Util.EasingFunction.Ease)x != Util.EasingFunction.Ease.Instant, new string[] { "startRot" }) + }), + } + }, + new GameAction("scaleCameraMan", "Scale T.J.") + { + function = delegate { var e = eventCaller.currentEntity; FreezeFrame.SetScaleCameraMan(e.beat, e.length, e["startSizeX"], e["startSizeY"], e["endSizeX"], e["endSizeY"], e["ease"]); }, + defaultLength = 1f, + resizable = true, + parameters = new List() + { + new Param("startSizeX", new EntityTypes.Float(-5.0f, 5.0f, 1.0f), "Start Scale X", "Horizontal scale at which to start."), + new Param("startSizeY", new EntityTypes.Float(-5.0f, 5.0f, 1.0f), "Start Scale Y", "Vertical scale at which to start."), + new Param("endSizeX", new EntityTypes.Float(-5.0f, 5.0f, 1.0f), "End Scale X" , "Horizontal scale at which to end."), + new Param("endSizeY", new EntityTypes.Float(-5.0f, 5.0f, 1.0f), "End Scale Y" , "Vertical scale at which to end."), + new Param("ease", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing of the action.", new List() + { + new Param.CollapseParam((x, _) => (Util.EasingFunction.Ease)x != Util.EasingFunction.Ease.Instant, new string[] { "startSizeX", "startSizeY" }) + }), + } + }, + }, + new List() { "ntr", "normal" }, + "ntrcameraman", "en" + ); + } + } +} + +namespace HeavenStudio.Games +{ + using HeavenStudio.Common; + using Scripts_FreezeFrame; + using UnityEngine.Rendering; + + public class FreezeFrame : Minigame + { + /* + BIG LIST OF TODOS + - finish sounds + - wait for upscale + - make particles random sprites + + - REAL icon + */ + + public static FreezeFrame Instance + { + get + { + if (GameManager.instance.minigame is FreezeFrame instance) + return instance; + return null; + } + } + + [SerializeField] Animator CameraMan; + [SerializeField] Photograph[] Photographs; + [SerializeField] Photograph Photograph1; + [SerializeField] Photograph Photograph2; + [SerializeField] Photograph Photograph3; + [SerializeField] Animator Results; + + [SerializeField] Animator IntroSign; + + [SerializeField] GameObject Overlay; + [SerializeField] GameObject Crosshair; + [SerializeField] Animator Shutter; + [SerializeField] GameObject DimRect; + + [SerializeField] StickyCanvas StickyLayer; + + [SerializeField] Transform FarCarSpawn; + [SerializeField] GameObject FarCarPrefab; + + [SerializeField] Transform NearCarSpawn; + [SerializeField] GameObject NearCarPrefab; + + [SerializeField] Transform WalkerSpawn; + [SerializeField] GameObject WalkerPrefab; + + [SerializeField] Animator Crowd; + [SerializeField] SpriteRenderer CrowdFarLeft; + [SerializeField] SpriteRenderer CrowdLeft; + [SerializeField] SpriteRenderer CrowdRight; + [SerializeField] SpriteRenderer CrowdFarRight; + [SerializeField] Sprite[] CrowdSprites; + [SerializeField] GameObject Billboards; + + public bool DoAutoBop { get; set; } = true; + public bool DoAutoCrosshairBlink { get; set; } = true; + public bool ShowOverlay { get; set; } = true; + public bool ShowCameraMan { get; set; } = true; + public bool OverlayFollowCamera { get; set; } = true; + public bool ShowCrowd { get; set; } = false; + public bool ShowBillboard { get; set; } = false; + + public List Walkers { get; set; } = new(); + + public bool SignIsMoving { get; set; } = false; + public SignMoveArgs CurrentSignArgs { get; set; } + + public static Vector3 CameraManStartPos { get; private set; } + public bool CameraManMoving { get; set; } = false; + public CameraManMoveArgs CurrentCameraManMoveArgs; + public bool CameraManRotating { get; set; } = false; + public CameraManRotateArgs CurrentCameraManRotateArgs; + public bool CameraManScaling { get; set; } = false; + public CameraManScaleArgs CurrentCameraManScaleArgs; + + public static List PhotoList = new(); + public Dictionary EventArgs = new(); + public bool IsShowingPhotos { get; set; } = false; + + public List QueuedCars { get; set; } = new(); + + public static Dictionary WalkerDirections = new(); + + //protected static int? SuperSeed { get; set; } + + // UNITY BUILTIN METHODS + void Awake() + { + CameraManStartPos = CameraMan.transform.localPosition; + //if (SuperSeed is null) + // SuperSeed = new System.Random().Next(); + } + void Update() + { + if (PlayerInput.GetIsAction(InputAction_BasicPress) && !IsExpectingInputNow(InputAction_BasicPress) && !IsShowingPhotos) + { + CameraFlash(); + //ScoreMiss(); + } + + // sign + if (SignIsMoving) + { + float normalizedBeat = conductor.GetPositionFromBeat(CurrentSignArgs.StartTime, CurrentSignArgs.Length); + Util.EasingFunction.Function func = Util.EasingFunction.GetEasingFunction(CurrentSignArgs.Ease); + float newPos = func(0f, 1f, normalizedBeat); + IntroSign.DoNormalizedAnimation(CurrentSignArgs.AnimName, newPos, animLayer: 0); + if (normalizedBeat >= 1f) + SignIsMoving = false; + } + + // move TJ + if (CameraManMoving) + { + float normalizedBeat = conductor.GetPositionFromBeat(CurrentCameraManMoveArgs.StartBeat, CurrentCameraManMoveArgs.Length); + Util.EasingFunction.Function func = Util.EasingFunction.GetEasingFunction(CurrentCameraManMoveArgs.Ease); + float newPos = func(0f, 1f, normalizedBeat); + + Vector3 diff = CurrentCameraManMoveArgs.EndPos - CurrentCameraManMoveArgs.StartPos; + Vector3 diffPos = newPos * diff; + CameraMan.transform.localPosition = CurrentCameraManMoveArgs.StartPos + diffPos; + + if (normalizedBeat >= 1f) + { + CameraMan.transform.localPosition = CurrentCameraManMoveArgs.EndPos; + CameraManMoving = false; + } + } + if (CameraManRotating) + { + float normalizedBeat = conductor.GetPositionFromBeat(CurrentCameraManRotateArgs.StartBeat, CurrentCameraManRotateArgs.Length); + Util.EasingFunction.Function func = Util.EasingFunction.GetEasingFunction(CurrentCameraManRotateArgs.Ease); + float newPos = func(0f, 1f, normalizedBeat); + + float diff = CurrentCameraManRotateArgs.EndRot - CurrentCameraManRotateArgs.StartRot; + float diffPos = newPos * diff; + CameraMan.transform.localEulerAngles = new Vector3(0, 0, CurrentCameraManRotateArgs.StartRot + diffPos); + + if (normalizedBeat >= 1f) + { + CameraMan.transform.localEulerAngles = new Vector3(0, 0, CurrentCameraManRotateArgs.EndRot); + CameraManRotating = false; + } + } + if (CameraManScaling) + { + float normalizedBeat = conductor.GetPositionFromBeat(CurrentCameraManScaleArgs.StartBeat, CurrentCameraManScaleArgs.Length); + Util.EasingFunction.Function func = Util.EasingFunction.GetEasingFunction(CurrentCameraManScaleArgs.Ease); + float newPos = func(0f, 1f, normalizedBeat); + + Vector3 diff = CurrentCameraManScaleArgs.EndScale - CurrentCameraManScaleArgs.StartScale; + Vector3 diffPos = newPos * diff; + CameraMan.transform.localScale = CurrentCameraManScaleArgs.StartScale + diffPos; + + if (normalizedBeat >= 1f) + { + CameraMan.transform.localScale = CurrentCameraManScaleArgs.EndScale; + CameraManScaling = false; + } + } + + // boppers + if (Walkers.Count > 0) + { + Walkers.RemoveAll(w => w.Walker == null || w.Walker.gameObject == null); + foreach (WalkerArgs args in Walkers) + { + float normalizedBeat = conductor.GetPositionFromBeat(args.StartTime, args.Length); + args.Walker.DoNormalizedAnimation(args.AnimName, normalizedBeat, animLayer: 1); + if (normalizedBeat >= 1f) + Destroy(args.Walker.gameObject); + } + } + + // car animations + if (QueuedCars.Count > 0) + { + var beat = conductor.songPositionInBeats; + if (beat >= 0) + { + QueuedCars.RemoveAll(e => e.Beat < beat - 5); // could probably be smaller. 5 just to be safe + foreach (SpawnCarArgs args in QueuedCars.Where(e => e.Beat <= beat)) + { + SpawnCar(args); + } + QueuedCars.RemoveAll(e => e.Beat <= beat); + } + } + + if (!IsShowingPhotos) + Instance.Overlay.SetActive(ShowOverlay); + + Billboards.SetActive(ShowBillboard); + Instance.CameraMan.gameObject.SetActive(ShowCameraMan); + StickyLayer.Sticky = OverlayFollowCamera; + } + private void OnDestroy() + { + foreach (var evt in scheduledInputs) + { + evt.Disable(); + } + //if (PhotoList.Count > 0) PhotoList.Clear(); + } + + // MINIGAME METHODS + public override void OnBeatPulse(double beat) + { + if (BeatIsInBopRegion(beat)) + { + if (DoAutoBop && !IsShowingPhotos) + Bop(); + + if (DoAutoCrosshairBlink) + CrosshairBlink(); + } + } + public override void OnPlay(double beat) + { + if (PhotoList.Count > 0) PhotoList.Clear(); + CarbageCollection(); + OnGameSwitch(beat); + } + public override void OnGameSwitch(double beat) + { + Instance.Overlay.SetActive(ShowOverlay); + Instance.CameraMan.gameObject.SetActive(ShowCameraMan); + Instance.StickyLayer.Sticky = OverlayFollowCamera; + + // calculation + CalculateAutoShowPhotos(); + CalculateCarSpawns(); + PreRandomizeWalkers(); + + // setting local variables + RiqEntity e = GetLastEntityOfType(beat, "bop"); + if (e is not null) + { + DoAutoBop = e["autoBop"]; + DoAutoCrosshairBlink = e["autoBlink"]; + } + e = GetLastEntityOfType(beat, "toggleOverlay"); + if (e is not null) + { + ShowOverlay = e["showOverlay"]; + ShowCameraMan = e["showCameraMan"]; + OverlayFollowCamera = e["followCamera"]; + } + e = GetLastEntityOfType(beat, "spawnCrowd"); + if (e is not null) + { + ToggleCrowd(e.beat, e["crowd"], e["customCrowd"], e["crowdFarLeft"], e["crowdLeft"], e["crowdRight"], e["crowdFarRight"], e["billboard"]); + } + + // walkers + List eList = GetCurrentlyActiveEntities(beat, "spawnPerson"); + if (eList.Count > 0) + { + foreach (RiqEntity entity in eList) + { + SummonWalker(entity); + } + } + + // bop entities + eList = GetCurrentlyActiveEntities(beat, "bop"); + if (eList.Count > 0) + { + foreach (RiqEntity entity in eList) + { + SetBopping(entity.beat, entity.length, entity["bop"], entity["autoBop"], entity["blink"], entity["autoBlink"], beat); + } + } + + // Intro + e = GetLastEntityOfType(beat, "introSign"); + if (e is not null) + { + DoIntroSign(e.beat, e.length, e["enter"], e["ease"]); + } + e = GetLastEntityOfType(beat, "introLights"); + if (e is not null) + { + IntroLightsAnim(e.beat, e.length, e["lightsOn"]); + } + + // Camera Man Movement + e = GetLastEntityOfType(beat, "moveCameraMan"); + if (e is not null) + { + SetMoveCameraMan(e.beat, e.length, e["startPosX"], e["startPosY"], e["endPosX"], e["endPosY"], e["ease"]); + } + e = GetLastEntityOfType(beat, "rotateCameraMan"); + if (e is not null) + { + SetRotateCameraMan(e.beat, e.length, e["startRot"], e["endRot"], e["ease"]); + } + e = GetLastEntityOfType(beat, "scaleCameraMan"); + if (e is not null) + { + SetScaleCameraMan(e.beat, e.length, e["startSizeX"], e["startSizeY"], e["endSizeX"], e["endSizeY"], e["ease"]); + } + + // cues + eList = GetCurrentlyActiveEntities(beat, new string[] { "slowCar", "fastCar" }); + if (eList.Count > 0) + { + foreach (RiqEntity entity in eList) + { + if (beat > entity.beat + 2 || beat <= entity.beat) + continue; + + if (entity.datamodel == "freezeFrame/slowCar") + { + SlowCarCue(entity.beat, entity["variant"], true); + } + if (entity.datamodel == "freezeFrame/fastCar") + { + FastCarCue(entity.beat, entity["variant"], true); + } + } + } + //if (QueuedCues.Count > 0) + //{ + // QueuedCues.RemoveAll(e => e.beat < beat - 2); + // foreach (RiqEntity cue in QueuedCues) + // { + // if (cue.datamodel == "freezeFrame/slowCar") + // { + // SlowCarCue(cue.beat, cue["variant"], true); + // continue; + // } + // if (cue.datamodel == "freezeFrame/fastCar") + // { + // FastCarCue(cue.beat, cue["variant"], true); + // } + // } + //} + } + + // CUE FUNCTIONS + public static void SetBopping(double beat, float length, bool bop, bool autoBop, bool blink, bool autoBlink, double currentBeat = -1) + { + if (Instance == null) return; + + Instance.DoAutoBop = autoBop; + Instance.DoAutoCrosshairBlink = autoBlink; + + + if (bop || blink) + { + List actions = new List(); + for (int i = 0; i < length; i++) { + if (beat + i < currentBeat) + continue; + if (bop) + actions.Add(new(beat + i, delegate { Instance.Bop(); })); + if (blink) + actions.Add(new(beat + i, delegate { Instance.CrosshairBlink(); })); + } + BeatAction.New(Instance, actions); + } + } + public static void SlowCarCue(double beat, int photoType, bool mute = false) + { + if (!mute) SlowCarSFX(); + + if (Instance == null) return; + + Instance.EventArgs.Add( + Instance.ScheduleInput(beat, 2f, InputAction_BasicPress, Instance.PhotoSuccess, Instance.PhotoMiss, Instance.PhotoEmpty), + new PhotoArgs(CarType.SlowCar, (PhotoType)photoType, 0f) + ); + } + public static void SlowCarSFX() + { + SoundByte.PlayOneShotGame("freezeFrame/slowCarFar", forcePlay: true); + } + public static void FastCarCue(double beat, int photoType, bool mute = false) + { + if (!mute) FastCarSFX(); + + if (Instance == null) return; + + Instance.EventArgs.Add( + Instance.ScheduleInput(beat, 2f, InputAction_BasicPress, Instance.PhotoSuccess, Instance.PhotoMiss, Instance.PhotoEmpty), + new PhotoArgs(CarType.FastCar, (PhotoType)photoType, 0f) + ); + SoundByte.PlayOneShotGame("freezeFrame/fastCarNear", beat + 2); + } + public static void FastCarSFX() + { + SoundByte.PlayOneShotGame("freezeFrame/fastCarFar", forcePlay: true); + } + public static void ShowPhotos(double beat, float length, int gradeTypeI, bool audience, bool clearCache) + { + if (Instance == null) return; + + GradeType gradeType = (GradeType)gradeTypeI; + + if (PhotoList.Count <= 0) + return; + + SoundByte.PlayOneShotGame("freezeFrame/pictureShow"); + + // 2 = Hi + // 1 = OK + // 0 = Ng + int goodScore = 2; + foreach (PhotoArgs photo in PhotoList) + { + if (photo.State <= -2) + { + goodScore = 0; + break; + } + if (goodScore == 2 && photo.State != 0) + goodScore = 1; + } + + if (gradeType == GradeType.Symbols) + { + switch (goodScore) + { + case 0: + Instance.Results.DoScaledAnimationAsync("Batsu", 0.5f); + break; + + case 1: + Instance.Results.DoScaledAnimationAsync("Sankaku", 0.5f); + break; + + case 2: + default: + Instance.Results.DoScaledAnimationAsync("Maru", 0.5f); + break; + } + } + if (gradeType == GradeType.Thumbs) + { + switch (goodScore) + { + case 0: + Instance.Results.DoScaledAnimationAsync("ThumbsDown", 0.5f); + break; + + case 1: + Instance.Results.DoScaledAnimationAsync("ThumbsSide", 0.5f); + break; + + case 2: + default: + Instance.Results.DoScaledAnimationAsync("ThumbsUp", 0.5f); + break; + } + } + + for (int i = 0; i < PhotoList.Count && i < Instance.Photographs.Length; i++) + { + Instance.Photographs[i].ShowPhoto(PhotoList[i]); + } + + if (clearCache) + PhotoList.Clear(); + + Instance.Overlay.SetActive(false); + Instance.DimRect.SetActive(true); + Instance.IsShowingPhotos = true; + + // reactions sounds + switch (goodScore) + { + case 2: + Instance.CameraMan.DoScaledAnimationAsync("Happy", 0.5f); + SoundByte.PlayOneShotGame("freezeFrame/result_Hi"); + if (audience) + break; + break; + case 1: + Instance.CameraMan.DoScaledAnimationAsync("Oops", 0.5f); + SoundByte.PlayOneShotGame("freezeFrame/result_Ok"); + if (audience) + SoundByte.PlayOneShot("applause"); + break; + case 0: + Instance.CameraMan.DoScaledAnimationAsync("Cry", 0.5f); + SoundByte.PlayOneShotGame("freezeFrame/result_Ng"); + if (audience) + break; + break; + default: + break; + } + + BeatAction.New(Instance, new List() + { + new BeatAction.Action(beat + length, delegate { Instance.HidePhotos(beat + length); }) + }); + } + public static void ClearPhotos() + { + PhotoList.Clear(); + } + public static void SummonWalker(RiqEntity e/*double beat, double length, int walkerType, int direction, int layer = 0*/) + { + if (Instance == null) return; + + double beat = e.beat; + double length = e.length; + PersonType walkerType = (PersonType)e["personType"]; + PersonDirection direction = (PersonDirection)e["direction"]; + int layer = e["layer"]; + + GameObject walker = Instantiate(Instance.WalkerPrefab, Instance.WalkerSpawn.transform); + Animator animator = walker.GetComponent(); + walker.GetComponent().sortingOrder = layer; + + switch (walkerType) + { + case PersonType.Girlfriend: + animator.DoScaledAnimationAsync("Girlfriend", animLayer: 2); + break; + case PersonType.Dude2: + animator.DoScaledAnimationAsync("Dude2", animLayer: 2); + break; + case PersonType.Dude1: + default: + animator.DoScaledAnimationAsync("Dude1", animLayer: 2); + break; + } + + /*if (direction == (int)PersonDirection.Random) + { + int seed = BitConverter.ToInt32(BitConverter.GetBytes((float)beat)); + direction = new System.Random(seed).Next(1, 3); + }*/ + if (direction == PersonDirection.Random) + { + if (WalkerDirections.ContainsKey(e)) + direction = WalkerDirections[e]; + else + direction = PersonDirection.Right; + } + + if (direction == PersonDirection.Left) + Instance.Walkers.Add(new WalkerArgs(animator, beat, length, "EnterLeft")); + else + Instance.Walkers.Add(new WalkerArgs(animator, beat, length, "EnterRight")); + + double nextBeat = Math.Ceiling(beat); + List actions = new(); + for (double i = nextBeat; i < beat + length; i += 1) + { + actions.Add(new(i, delegate { animator.DoScaledAnimationAsync("Bop", timeScale: 0.5f, animLayer: 0); })); + } + BeatAction.New(Instance, actions); + } + public static void ToggleCrowd(double beat, bool showCrowd, bool customCrowd, int crowdFarLeft, int crowdLeft, int crowdRight, int crowdFarRight, bool billboard) + { + if (Instance == null) return; + + Instance.ShowCrowd = showCrowd; + if (Instance.ShowCrowd) + Instance.Crowd.DoScaledAnimationAsync("Show", 0.5f); + else + Instance.Crowd.DoScaledAnimationAsync("Hide", 0.5f); + + if (customCrowd) + { + Instance.CrowdFarLeft.sprite = Instance.CrowdSprites[crowdFarLeft]; + Instance.CrowdLeft.sprite = Instance.CrowdSprites[crowdLeft]; + Instance.CrowdRight.sprite = Instance.CrowdSprites[crowdRight]; + Instance.CrowdFarRight.sprite = Instance.CrowdSprites[crowdFarRight]; + } + else + { + Instance.CrowdFarLeft.sprite = Instance.CrowdSprites[2]; + Instance.CrowdLeft.sprite = Instance.CrowdSprites[1]; + Instance.CrowdRight.sprite = Instance.CrowdSprites[0]; + Instance.CrowdFarRight.sprite = Instance.CrowdSprites[2]; + } + + Instance.ShowBillboard = billboard; + } + public static void DoIntroSign(double beat, double length, bool enter, int easeIndex) + { + Util.EasingFunction.Ease ease = (Util.EasingFunction.Ease)easeIndex; + Instance.SignIsMoving = true; + if (enter) + Instance.CurrentSignArgs = new("Enter", beat, length, ease); + else + Instance.CurrentSignArgs = new("Exit", beat, length, ease); + } + public static void IntroLightsAnim(double beat, double length, bool lightsOn) + { + if (!lightsOn) + { + Instance.IntroSign.DoScaledAnimationAsync("LightsOff", timeScale: 0.5f, animLayer: 1); + return; + } + + Instance.IntroSign.DoScaledAnimationFromBeatAsync("Light01", startBeat: beat, timeScale: 0.5f, animLayer: 1); + BeatAction.New(Instance, new List + { + new(beat + length, delegate { Instance.IntroSign.DoScaledAnimationFromBeatAsync("Light02", startBeat: beat + length, timeScale: 0.5f, animLayer: 1); }), + new(beat + (length * 2), delegate { Instance.IntroSign.DoScaledAnimationFromBeatAsync("Light03", startBeat: beat + (length * 2), timeScale: 0.5f, animLayer: 1); }), + } + ); + } + public static void IntroLightsSound(double beat, double length, bool lightsOn) + { + if (!lightsOn) + return; + + SoundByte.PlayOneShotGame("freezeFrame/beginningSignal1", forcePlay: true); + MultiSound.Play(new MultiSound.Sound[] { + new MultiSound.Sound("freezeFrame/beginningSignal1", beat + length), + new MultiSound.Sound("freezeFrame/beginningSignal2", beat + (length * 2)), + }, forcePlay: true); + } + public static void ToggleOverlay(double beat, bool showOverlay, bool showCameraMan, bool followCamera) + { + Instance.ShowOverlay = showOverlay; + Instance.ShowCameraMan = showCameraMan; + Instance.OverlayFollowCamera = followCamera; + } + public static void SetMoveCameraMan(double beat, double length, float startX, float startY, float endX, float endY, int easeIndex) + { + Instance.CurrentCameraManMoveArgs = new( + beat, + length, + new Vector3(startX, startY, 0) + CameraManStartPos, + new Vector3(endX, endY, 0) + CameraManStartPos, + (Util.EasingFunction.Ease)easeIndex + ); + Instance.CameraManMoving = true; + } + public static void SetRotateCameraMan(double beat, double length, float startRot, float endRot, int easeIndex) + { + Instance.CurrentCameraManRotateArgs = new( + beat, + length, + startRot, + endRot, + (Util.EasingFunction.Ease)easeIndex + ); + Instance.CameraManRotating = true; + } + public static void SetScaleCameraMan(double beat, double length, float startX, float startY, float endX, float endY, int easeIndex) + { + Instance.CurrentCameraManScaleArgs = new( + beat, + length, + new Vector3(startX, startY, 1), + new Vector3(endX, endY, 1), + (Util.EasingFunction.Ease)easeIndex + ); + Instance.CameraManScaling = true; + } + + // PRE-FUNCTIONS + public void SpawnCar(SpawnCarArgs args) + { + if (args.Near) + { + if (NearCarSpawn == null) + { + UnityEngine.Debug.LogError($"Failed to spawn a car at beat {args.Beat}."); + return; + } + Animator car = Instantiate(NearCarPrefab, NearCarSpawn).GetComponent(); + car.DoScaledAnimationFromBeatAsync("Idle", startBeat: 0f, timeScale: 0.5f, animLayer: 0); + + if (args.Fast) + car.DoScaledAnimationFromBeatAsync("FastCarGo", startBeat: args.Beat, timeScale: 2.666666666666667f, animLayer: 1); + else + car.DoScaledAnimationFromBeatAsync("SlowCarGo", startBeat: args.Beat, timeScale: 1.5f, animLayer: 1); + + //BeatAction.New(Instance, new List() { new BeatAction.Action(args.Beat + 3, delegate { Destroy(car); }) }); + } + else + { + if (FarCarSpawn == null) + { + UnityEngine.Debug.LogError($"Failed to spawn a car at beat {args.Beat}."); + return; + } + Animator car = Instantiate(FarCarPrefab, FarCarSpawn).GetComponent(); + car.DoScaledAnimationFromBeatAsync("Idle", startBeat: 0f, timeScale: 0.5f, animLayer: 0); + + if (args.Fast) + car.DoScaledAnimationFromBeatAsync("FastCarGo", startBeat: args.Beat, timeScale: 0.5f, animLayer: 1); + else + car.DoScaledAnimationFromBeatAsync("SlowCarGo", startBeat: args.Beat, timeScale: 0.16666666666666666666666666666667f, animLayer: 1); + + //BeatAction.New(Instance, new List() { new BeatAction.Action(args.Beat + 8, delegate { Destroy(car); }) }); + } + } + /*public void SpawnSlowCarNear(double beat) + { + if (NearCarSpawn == null) return; + Animator nearCar = Instantiate(NearCarPrefab, NearCarSpawn).GetComponent(); + nearCar.DoScaledAnimationFromBeatAsync("Idle", startBeat: 0f, timeScale: 0.5f, animLayer: 0); + + double startBeat = beat + 2 - 0.16666666666666666666666666666667; + BeatAction.New(Instance, new List() + { + new BeatAction.Action(startBeat, delegate { nearCar.DoScaledAnimationFromBeatAsync("SlowCarGo", startBeat: startBeat, timeScale: 1.5f, animLayer: 1); }), + new BeatAction.Action(beat + 3, delegate { Destroy(nearCar); } ) + }); + } + public void SpawnSlowCarFar(double beat) + { + //if (beat < 0) return; + if (FarCarSpawn == null) return; + Animator farCar = Instantiate(FarCarPrefab, FarCarSpawn).GetComponent(); + farCar.DoScaledAnimationFromBeatAsync("Idle", startBeat: 0f, timeScale: 0.5f, animLayer: 0); + farCar.DoScaledAnimationFromBeatAsync("SlowCarGo", startBeat: beat, timeScale: 0.16666666666666666666666666666667f, animLayer: 1); + + BeatAction.New(Instance, new List() + { + new BeatAction.Action(beat + 7, delegate { Destroy(farCar); } ) + }); + } + public void SpawnFastCar(double beat) + { + if (FarCarSpawn != null) + { + UnityEngine.Debug.Log("farcar"); + Animator farCar = Instantiate(FarCarPrefab, FarCarSpawn).GetComponent(); + farCar.DoScaledAnimationFromBeatAsync("Idle", startBeat: 0f, timeScale: 0.5f, animLayer: 0); + + BeatAction.New(Instance, new List() + { + new BeatAction.Action(beat - 0.5, delegate { if (beat >= 0.5) farCar.DoScaledAnimationFromBeatAsync("FastCarGo", startBeat: beat - 0.5, timeScale: 0.5f, animLayer: 1); }), + new BeatAction.Action(beat + 3, delegate { Destroy(farCar); } ) + }); + } + if (NearCarSpawn != null) + { + UnityEngine.Debug.Log("fartcar"); + Animator nearCar = Instantiate(NearCarPrefab, NearCarSpawn).GetComponent(); + nearCar.DoScaledAnimationFromBeatAsync("Idle", startBeat: 0f, timeScale: 0.5f, animLayer: 0); + + BeatAction.New(Instance, new List() + { + new BeatAction.Action(beat + 2 - 0.09375, delegate { nearCar.DoScaledAnimationFromBeatAsync("FastCarGo", startBeat: beat - 0.09375, timeScale: 2.666666666666667f, animLayer: 1); }), + new BeatAction.Action(beat + 3, delegate { Destroy(nearCar); } ) + }); + } + }*/ + + // INPUT RESULTS + public void PhotoSuccess(PlayerActionEvent caller, float state) + { + PhotoArgs args; + bool hasArgs = EventArgs.TryGetValue(caller, out args); + EventArgs.Remove(caller); + + // passing the args for the photos + if (hasArgs) + { + if (state >= 1f) + { + args.State = 1; + } + else if (state <= -1f) + { + args.State = -1; + } + else + { + args.State = 0; + } + + PushPhoto(args); + } + CameraFlash(); + } + public void PhotoMiss(PlayerActionEvent caller) + { + PhotoArgs args; + bool hasArgs = EventArgs.TryGetValue(caller, out args); + EventArgs.Remove(caller); + + if (hasArgs) + { + args.State = -2; + PushPhoto(args); + } + } + public void PhotoEmpty(PlayerActionEvent caller) + { + + } + + // GENERAL METHODS + public void Bop() + { + CameraMan.DoScaledAnimationAsync("Bop", 0.5f); + } + public void CrosshairBlink() + { + Crosshair.SetActive(!Crosshair.activeSelf); + } + public void CameraFlash() + { + Shutter.DoScaledAnimationAsync("Shut", 0.5f); + CameraMan.DoScaledAnimationAsync("Flash", 0.5f); + SoundByte.PlayOneShotGame("freezeFrame/shutter"/*, pitch: (float)new System.Random().NextDouble() + 0.5f*/); + } + public void PushPhoto(PhotoArgs args) + { + //while (PhotoList.Count >= MAX_PHOTOS) + // PhotoList.RemoveAt(0); + if (args.PhotoType == PhotoType.Random) + { + if (UnityEngine.Random.Range(0, 8) >= 7) + { + switch (UnityEngine.Random.Range(0, 3)) + { + case 0: + args.PhotoType = PhotoType.Ninja; + break; + case 1: + args.PhotoType = PhotoType.Ghost; + break; + case 2: + args.PhotoType = PhotoType.Rats; + break; + default: + args.PhotoType = PhotoType.Default; + break; + } + } + else + args.PhotoType = PhotoType.Default; + } + + PhotoList.Add(args); + } + public void HidePhotos(double beat) + { + Overlay.SetActive(ShowOverlay); + DimRect.SetActive(false); + foreach (Photograph photo in Photographs) + photo.HideAll(); + Results.DoScaledAnimationAsync("None", 0.5f); + IsShowingPhotos = false; + if (beat % 1 == 0 && DoAutoBop) + CameraMan.DoScaledAnimationAsync("Bop", 0.5f); + else + CameraMan.DoScaledAnimationAsync("Idle", 0.5f); + } + /*public static void QueueCue(RiqEntity e) + { + if (e.datamodel == "freezeFrame/slowCar") + { + SoundByte.PlayOneShotGame("freezeFrame/smallCarZoom1a", forcePlay: true); + } + if (e.datamodel == "freezeFrame/fastCar") + { + SoundByte.PlayOneShotGame("freezeFrame/fastCarZoom", forcePlay: true); + } + QueuedCues.Add(e); + }*/ + public void CalculateAutoShowPhotos() + { + List allCars = EventCaller.GetAllInGameManagerList("freezeFrame", new string[] { "slowCar", "fastCar" }); + + List actions = new(); + List beats = new(); // so you don't double up + + foreach (RiqEntity entity in allCars.Where(car => (bool)car["autoShowPhotos"])) + { + double showBeat = 3f; + if (allCars.Any(car => car.beat == entity.beat - 1f)) + showBeat = 3.5f; + if (entity.datamodel == "freezeFrame/fastCar") + showBeat = 4f; + if (allCars.Any(car => car.beat == entity.beat - 2f)) + showBeat = 4.5f; + showBeat = entity.beat + showBeat; + + if (!allCars.Any(car => car.beat > entity.beat && car.beat <= showBeat)) + { + if (!beats.Any(b => showBeat >= b && showBeat < b + 2)) + { + beats.Add(showBeat); + actions.Add(new BeatAction.Action(showBeat, delegate { ShowPhotos(showBeat, 2, (int)entity["gradeType"], (bool)entity["audience"], false); })); + } + } + } + + if (actions.Count > 0) + { + BeatAction.New(Instance, actions); + } + } + public void CalculateCarSpawns() + { + List fastCars = EventCaller.GetAllInGameManagerList("freezeFrame", new string[] { "fastCar" }); + foreach (RiqEntity e in fastCars) + { + QueuedCars.Add(new SpawnCarArgs(e.beat - 0.5, true, false)); + QueuedCars.Add(new SpawnCarArgs(e.beat + 2 - 0.09375, true, true)); + } + + List slowCars = EventCaller.GetAllInGameManagerList("freezeFrame", new string[] { "slowCar" }); + foreach (RiqEntity e in slowCars) + { + QueuedCars.Add(new SpawnCarArgs(e.beat + 2 - 0.16666666666666666666666666666667, false, true)); + } + + List> clusters = new(); + + while (slowCars.Count > 0) + { + double minBeat = slowCars[0].beat; + double maxBeat = minBeat + 2; + + clusters.Add(slowCars.Where(car => car.beat >= minBeat && car.beat < maxBeat).Select(car => car.beat).ToList()); + slowCars.RemoveAll(car => car.beat >= minBeat && car.beat < maxBeat); + } + + foreach (List cluster in clusters) + { + double midBeat = cluster.Min() + ((cluster.Max() - cluster.Min()) / 2); + + foreach (double beat in cluster) + { + double diff = midBeat - beat; + double modifiedBeat = midBeat + (diff / 4); + + //BeatAction.New(Instance, new List(){ + // new BeatAction.Action(modifiedBeat - 4, delegate { SpawnSlowCarFar(modifiedBeat - 4); } ) + //}); + QueuedCars.Add(new SpawnCarArgs(modifiedBeat - 4, false, false)); + } + } + } + public void PreRandomizeWalkers() + { + IEnumerable walkers = EventCaller.GetAllInGameManagerList("freezeFrame", new string[] { "spawnPerson" }).Where(e => (PersonDirection)e["direction"] == PersonDirection.Random); + foreach (RiqEntity e in walkers) + { + if (!WalkerDirections.ContainsKey(e)) + { + float rand = UnityEngine.Random.Range(0.0f, 1.0f); + if (rand >= 0.5) + { + WalkerDirections.Add(e, PersonDirection.Left); + } + else + { + WalkerDirections.Add(e, PersonDirection.Right); + } + } + } + List keysToRemove = new(); + foreach (RiqEntity key in WalkerDirections.Keys) + { + if (!walkers.Contains(key)) + keysToRemove.Add(key); + } + foreach (RiqEntity key in keysToRemove) + { + WalkerDirections.Remove(key); + } + Debug.Log($"Walker Count: {WalkerDirections.Count}"); + } + public void CarbageCollection() + { + foreach (Transform child in FarCarSpawn) + { + Destroy(child.gameObject); + } + foreach (Transform child in NearCarSpawn) + { + Destroy(child.gameObject); + } + foreach (Transform child in WalkerSpawn) + { + Destroy(child.gameObject); + } + } + public RiqEntity GetLastEntityOfType(double beat, string datamodel) + { + foreach (RiqEntity e in EventCaller.GetAllInGameManagerList("freezeFrame", new string[] { datamodel }).OrderBy(e => -e.beat)) + { + if (e.beat < beat) + return e; + } + return null; + } + public List GetCurrentlyActiveEntities(double beat, string datamodel) + { + return GetCurrentlyActiveEntities(beat, new string[] { datamodel }); + } + public List GetCurrentlyActiveEntities(double beat, string[] datamodel) + { + List result = new(); + foreach (RiqEntity e in EventCaller.GetAllInGameManagerList("freezeFrame", datamodel)) + { + if (beat >= e.beat && beat <= e.beat + e.length) + result.Add(e); + if (e.beat > beat) + break; + } + return result; + } + /*protected static System.Random GetSeededRandom(float? mulch = null) // i just made this term up i have no idea if it has any basis in actual programming + { + if (SuperSeed is null) + SuperSeed = new System.Random().Next(); + + if (mulch is not null) + { + int seed = BitConverter.ToInt32(BitConverter.GetBytes(mulch.Value)); + return new System.Random(SuperSeed.Value * seed); + } + + return new System.Random(SuperSeed.Value); + }*/ + + // ENUMS + public enum CarType : int + { + SlowCar = 0, + FastCar = 1 + } + public enum PhotoType : int + { + Random = 0, + Default = 1, + Ninja = 2, + Ghost = 3, + Rats = 4, + PeaceSign = 5, + GirlfriendRight = 6, + GirlfriendLeft = 7, + Dude1Right = 8, + Dude1Left = 9, + Dude2Right = 10, + Dude2Left = 11, + } + public enum PersonType : int + { + Dude1 = 0, + Dude2 = 1, + Girlfriend = 2 + } + public enum PersonDirection : int + { + Random = 0, + Right = 1, + Left = 2 + } + public enum GradeType : int + { + Symbols = 0, + Thumbs = 1, + None = 2 + } + public enum CustomCrowdType : int + { + TealDancers = 0, + YellowDancers = 1, + PinkDancers = 2, + CyanDancers = 3, + } + + // STRUCTS + public struct PhotoArgs + { + public CarType Car; + public PhotoType PhotoType; + public float State; + + public PhotoArgs(CarType car, PhotoType photoType, float state) + { + Car = car; + PhotoType = photoType; + State = state; + } + } + public struct WalkerArgs + { + public Animator Walker; + public double StartTime; + public double Length; + public string AnimName; + + public WalkerArgs(Animator walker, double startTime, double length, string animName) + { + Walker = walker; + StartTime = startTime; + Length = length; + AnimName = animName; + } + } + public struct SignMoveArgs + { + public string AnimName; + public double StartTime; + public double Length; + public Util.EasingFunction.Ease Ease; + + public SignMoveArgs(string animName, double startTime, double length, Util.EasingFunction.Ease ease) + { + AnimName = animName; + StartTime = startTime; + Length = length; + Ease = ease; + } + } + public struct CameraManMoveArgs + { + public double StartBeat; + public double Length; + public Vector3 StartPos; + public Vector3 EndPos; + public Util.EasingFunction.Ease Ease; + + public CameraManMoveArgs(double startBeat, double length, Vector3 startPos, Vector3 endPos, Util.EasingFunction.Ease ease) + { + StartBeat = startBeat; + Length = length; + StartPos = startPos; + EndPos = endPos; + Ease = ease; + } + } + public struct CameraManRotateArgs + { + public double StartBeat; + public double Length; + public float StartRot; + public float EndRot; + public Util.EasingFunction.Ease Ease; + + public CameraManRotateArgs(double startBeat, double length, float startRot, float endRot, Util.EasingFunction.Ease ease) + { + StartBeat = startBeat; + Length = length; + StartRot = startRot; + EndRot = endRot; + Ease = ease; + } + } + public struct CameraManScaleArgs + { + public double StartBeat; + public double Length; + public Vector3 StartScale; + public Vector3 EndScale; + public Util.EasingFunction.Ease Ease; + + public CameraManScaleArgs(double startBeat, double length, Vector3 startScale, Vector3 endScale, Util.EasingFunction.Ease ease) + { + StartBeat = startBeat; + Length = length; + StartScale = startScale; + EndScale = endScale; + Ease = ease; + } + } + public struct SpawnCarArgs + { + public double Beat; + public bool Near; + public bool Fast; + + public SpawnCarArgs(double beat, bool fast, bool near) + { + Beat = beat; + Near = near; + Fast = fast; + } + } + } +} \ No newline at end of file diff --git a/Assets/Scripts/Games/FreezeFrame/FreezeFrame.cs.meta b/Assets/Scripts/Games/FreezeFrame/FreezeFrame.cs.meta new file mode 100644 index 000000000..6339b08a1 --- /dev/null +++ b/Assets/Scripts/Games/FreezeFrame/FreezeFrame.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 45e462f2ab1f95f479bd65404910cbb4 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Games/FreezeFrame/Photograph.cs b/Assets/Scripts/Games/FreezeFrame/Photograph.cs new file mode 100644 index 000000000..a034ef949 --- /dev/null +++ b/Assets/Scripts/Games/FreezeFrame/Photograph.cs @@ -0,0 +1,159 @@ +using System.Collections; +using System.Collections.Generic; +using System.Runtime.Serialization; +using HeavenStudio.Common; +using HeavenStudio.Games.Scripts_WizardsWaltz; +using UnityEngine; + +using HeavenStudio.Util; + +namespace HeavenStudio.Games.Scripts_FreezeFrame +{ + public class Photograph : MonoBehaviour + { + //[SerializeField] GameObject Cameos; + [SerializeField] Animator _Animator; + + // Start is called before the first frame update + void Start() + { + HideAll(); + //gameObject.SetActive(false); + } + public void ShowPhoto(FreezeFrame.PhotoArgs args) + { + SetPhoto(args); + _Animator.DoScaledAnimationAsync("Show", timeScale: 0.5f, animLayer: 2); + } + public void HideAll() + { + _Animator.DoScaledAnimationAsync("NoCar", timeScale: 0.5f, animLayer: 0); + _Animator.DoScaledAnimationAsync("Cameo_None", timeScale: 0.5f, animLayer: 1); + _Animator.DoScaledAnimationAsync("Hide", timeScale: 0.5f, animLayer: 2); + } + public void SetPhoto(FreezeFrame.PhotoArgs args) + { + HideAll(); + + // complete miss, empty pic + if (args.State <= -2) + { + _Animator.DoScaledAnimationAsync("NoCar", timeScale: 0.5f, animLayer: 0); + _Animator.DoScaledAnimationAsync("Cameo_None", timeScale: 0.5f, animLayer: 1); + return; + } + + switch (args.Car) + { + case FreezeFrame.CarType.SlowCar: + if (args.State > 0) + _Animator.DoScaledAnimationAsync("SlowCar_Late", timeScale: 0.5f, animLayer: 0); + else if (args.State < 0) + _Animator.DoScaledAnimationAsync("SlowCar_Early", timeScale: 0.5f, animLayer: 0); + else + _Animator.DoScaledAnimationAsync("SlowCar_Perfect", timeScale: 0.5f, animLayer: 0); + break; + case FreezeFrame.CarType.FastCar: + if (args.State > 0) + _Animator.DoScaledAnimationAsync("FastCar_Late", timeScale: 0.5f, animLayer: 0); + else if (args.State < 0) + _Animator.DoScaledAnimationAsync("FastCar_Early", timeScale: 0.5f, animLayer: 0); + else + _Animator.DoScaledAnimationAsync("FastCar_Perfect", timeScale: 0.5f, animLayer: 0); + break; + } + + switch(args.PhotoType) + { + case FreezeFrame.PhotoType.Default: + _Animator.DoScaledAnimationAsync("Cameo_None", timeScale: 0.5f, animLayer: 1); + return; + + case FreezeFrame.PhotoType.Ninja: + if (args.State == 0) + _Animator.DoScaledAnimationAsync("Cameo_Ninja", timeScale: 0.5f, animLayer: 1); + else + _Animator.DoScaledAnimationAsync("Cameo_None", timeScale: 0.5f, animLayer: 1); + return; + case FreezeFrame.PhotoType.Ghost: + if (args.State == 0) + _Animator.DoScaledAnimationAsync("Cameo_Ghost", timeScale: 0.5f, animLayer: 1); + else + _Animator.DoScaledAnimationAsync("Cameo_None", timeScale: 0.5f, animLayer: 1); + return; + case FreezeFrame.PhotoType.Rats: + if (args.State == 0) + _Animator.DoScaledAnimationAsync("Cameo_Rats", timeScale: 0.5f, animLayer: 1); + else + _Animator.DoScaledAnimationAsync("Cameo_None", timeScale: 0.5f, animLayer: 1); + return; + + case FreezeFrame.PhotoType.PeaceSign: + if (args.State == 0) + { + if (args.Car == FreezeFrame.CarType.SlowCar) + _Animator.DoScaledAnimationAsync("Cameo_PeaceSlow", timeScale: 0.5f, animLayer: 1); + else + _Animator.DoScaledAnimationAsync("Cameo_PeaceFast", timeScale: 0.5f, animLayer: 1); + } + else + _Animator.DoScaledAnimationAsync("Cameo_None", timeScale: 0.5f, animLayer: 1); + return; + + // i don't like using so many dang cases here with basically the same thing in each but it breaks with the other thing i tried + case FreezeFrame.PhotoType.GirlfriendRight: + if (args.State > 0) + _Animator.DoScaledAnimationAsync("Cameo_Girlfriend_Right_Late", timeScale: 0.5f, animLayer: 1); + else if (args.State < 0) + _Animator.DoScaledAnimationAsync("Cameo_Girlfriend_Right_Early", timeScale: 0.5f, animLayer: 1); + else + _Animator.DoScaledAnimationAsync("Cameo_Girlfriend_Right_Perfect", timeScale: 0.5f, animLayer: 1); + return; + case FreezeFrame.PhotoType.GirlfriendLeft: + if (args.State > 0) + _Animator.DoScaledAnimationAsync("Cameo_Girlfriend_Left_Late", timeScale: 0.5f, animLayer: 1); + else if (args.State < 0) + _Animator.DoScaledAnimationAsync("Cameo_Girlfriend_Left_Early", timeScale: 0.5f, animLayer: 1); + else + _Animator.DoScaledAnimationAsync("Cameo_Girlfriend_Left_Perfect", timeScale: 0.5f, animLayer: 1); + return; + case FreezeFrame.PhotoType.Dude1Right: + if (args.State > 0) + _Animator.DoScaledAnimationAsync("Cameo_Dude1_Right_Late", timeScale: 0.5f, animLayer: 1); + else if (args.State < 0) + _Animator.DoScaledAnimationAsync("Cameo_Dude1_Right_Early", timeScale: 0.5f, animLayer: 1); + else + _Animator.DoScaledAnimationAsync("Cameo_Dude1_Right_Perfect", timeScale: 0.5f, animLayer: 1); + return; + case FreezeFrame.PhotoType.Dude1Left: + if (args.State > 0) + _Animator.DoScaledAnimationAsync("Cameo_Dude1_Left_Late", timeScale: 0.5f, animLayer: 1); + else if (args.State < 0) + _Animator.DoScaledAnimationAsync("Cameo_Dude1_Left_Early", timeScale: 0.5f, animLayer: 1); + else + _Animator.DoScaledAnimationAsync("Cameo_Dude1_Left_Perfect", timeScale: 0.5f, animLayer: 1); + return; + case FreezeFrame.PhotoType.Dude2Right: + if (args.State > 0) + _Animator.DoScaledAnimationAsync("Cameo_Dude2_Right_Late", timeScale: 0.5f, animLayer: 1); + else if (args.State < 0) + _Animator.DoScaledAnimationAsync("Cameo_Dude2_Right_Early", timeScale: 0.5f, animLayer: 1); + else + _Animator.DoScaledAnimationAsync("Cameo_Dude2_Right_Perfect", timeScale: 0.5f, animLayer: 1); + break; + case FreezeFrame.PhotoType.Dude2Left: + if (args.State > 0) + _Animator.DoScaledAnimationAsync("Cameo_Dude2_Left_Late", timeScale: 0.5f, animLayer: 1); + else if (args.State < 0) + _Animator.DoScaledAnimationAsync("Cameo_Dude2_Left_Early", timeScale: 0.5f, animLayer: 1); + else + _Animator.DoScaledAnimationAsync("Cameo_Dude2_Left_Perfect", timeScale: 0.5f, animLayer: 1); + return; + + default: // should not ever happen but it could + _Animator.DoScaledAnimationAsync("Cameo_None", timeScale: 0.5f, animLayer: 1); + return; + } + } + } +} \ No newline at end of file diff --git a/Assets/Scripts/Games/FreezeFrame/Photograph.cs.meta b/Assets/Scripts/Games/FreezeFrame/Photograph.cs.meta new file mode 100644 index 000000000..1242a8c8f --- /dev/null +++ b/Assets/Scripts/Games/FreezeFrame/Photograph.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 6e32d9c0a4600404e87df2a5807e2d62 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Games/PowerCalligraphy/PowerCalligraphy.cs b/Assets/Scripts/Games/PowerCalligraphy/PowerCalligraphy.cs index a0beaab24..11e6bb659 100644 --- a/Assets/Scripts/Games/PowerCalligraphy/PowerCalligraphy.cs +++ b/Assets/Scripts/Games/PowerCalligraphy/PowerCalligraphy.cs @@ -20,74 +20,49 @@ namespace HeavenStudio.Games.Loaders { new GameAction("re", "Re (レ)") { - preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.re, e["prepare"]); }, + preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.re); }, function = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.Write(e.beat, (int)PowerCalligraphy.CharacterType.re); }, - parameters = new List() - { - new Param("prepare", false, "Force Prepare", "Toggle if the cue should be prepared."), - }, defaultLength = 8f, }, new GameAction("comma", "Comma (、)") { - preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.comma, e["prepare"]); }, + preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.comma); }, function = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.Write(e.beat, (int)PowerCalligraphy.CharacterType.comma); }, - parameters = new List() - { - new Param("prepare", false, "Force Prepare", "Toggle if the cue should be prepared."), - }, defaultLength = 8f, }, new GameAction("chikara", "Chikara (力)") { - preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.chikara, e["prepare"]); }, + preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.chikara); }, function = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.Write(e.beat, (int)PowerCalligraphy.CharacterType.chikara); }, - parameters = new List() - { - new Param("prepare", false, "Force Prepare", "Toggle if the cue should be prepared."), - }, defaultLength = 8f, }, new GameAction("onore", "Onore (己)") { - preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.onore, e["prepare"]); }, + preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.onore); }, function = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.Write(e.beat, (int)PowerCalligraphy.CharacterType.onore); }, - parameters = new List() - { - new Param("prepare", false, "Force Prepare", "Toggle if the cue should be prepared."), - }, defaultLength = 8f, }, new GameAction("sun", "Sun (寸)") { - preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.sun, e["prepare"]); }, + preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.sun); }, function = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.Write(e.beat, (int)PowerCalligraphy.CharacterType.sun); }, - parameters = new List() - { - new Param("prepare", false, "Force Prepare", "Toggle if the cue should be prepared."), - }, defaultLength = 8f, }, new GameAction("kokoro", "Kokoro (心)") { - preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.kokoro, e["prepare"]); }, + preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.kokoro); }, function = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.Write(e.beat, (int)PowerCalligraphy.CharacterType.kokoro); }, - parameters = new List() - { - new Param("prepare", false, "Force Prepare", "Toggle if the cue should be prepared."), - }, defaultLength = 8f, }, new GameAction("face", "Face (つるニハ○○ムし)") { preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, - e["korean"] ? (int)PowerCalligraphy.CharacterType.face_kr : (int)PowerCalligraphy.CharacterType.face, e["prepare"]); }, + e["korean"] ? (int)PowerCalligraphy.CharacterType.face_kr : (int)PowerCalligraphy.CharacterType.face); }, function = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.Write(e.beat, e["korean"] ? (int)PowerCalligraphy.CharacterType.face_kr : (int)PowerCalligraphy.CharacterType.face); }, parameters = new List() { new Param("korean", false, "Korean Version", "Change the character to Korean version. (つ3ニハ○○ムし)"), - new Param("prepare", false, "Force Prepare", "Toggle if the cue should be prepared."), }, defaultLength = 12f, }, @@ -119,14 +94,20 @@ namespace HeavenStudio.Games using Scripts_PowerCalligraphy; public class PowerCalligraphy : Minigame { + [Header("References")] [SerializeField] List basePapers = new List(); + [SerializeField] List fudePosCntls = new List(); public Transform paperHolder; - public Writing endPaper; + public Animator endPaper; + + public Animator fudePosAnim; + public Animator fudeAnim; + public static int queuedType; + + [Header("Variables")] public Vector3 scrollSpeed = new Vector3(); - public static Nullable queuedPaper = null; - public enum CharacterType { re, @@ -139,12 +120,8 @@ namespace HeavenStudio.Games face_kr, NONE, } - public struct QueuedPaper - { - public double beat; - public int type; - } + double gameStartBeat; public static PowerCalligraphy instance = null; // Start is called before the first frame update @@ -152,23 +129,36 @@ namespace HeavenStudio.Games { instance = this; } + public override void OnGameSwitch(double beat) + { + gameStartBeat = beat; + NextPrepare(beat); + } + public override void OnPlay(double beat) + { + OnGameSwitch(beat); + } Writing nowPaper; bool isPrepare = false; void Update() { var cond = Conductor.instance; - if (!cond.isPlaying || cond.isPaused) return; - - if (queuedPaper is not null) + if (!cond.isPlaying || cond.isPaused) { - Prepare(queuedPaper.Value.beat, queuedPaper.Value.type); - queuedPaper = null; + if (!cond.isPaused) queuedType = (int)CharacterType.NONE; + return; + } + + if (queuedType != (int)CharacterType.NONE) + { + Prepare(queuedType); + queuedType = (int)CharacterType.NONE; } if (PlayerInput.GetIsAction(InputAction_BasicPress) && !IsExpectingInputNow(InputAction_BasicPress)) { - if (nowPaper.onGoing && nowPaper.Stroke == 0) + if (nowPaper.onGoing && nowPaper.Stroke == 1) { nowPaper.ProcessInput("fast"); ScoreMiss(); @@ -176,7 +166,7 @@ namespace HeavenStudio.Games } if (PlayerInput.GetIsAction(InputAction_FlickPress) && !IsExpectingInputNow(InputAction_FlickPress)) { - if (nowPaper.onGoing && nowPaper.Stroke != 0) + if (nowPaper.onGoing && nowPaper.Stroke != 1) { nowPaper.ProcessInput("fast"); ScoreMiss(); @@ -184,43 +174,76 @@ namespace HeavenStudio.Games } } - private void SpawnPaper(double beat, int type) + private void SpawnPaper(int type) { nowPaper = Instantiate(basePapers[type], paperHolder).GetComponent(); - nowPaper.targetBeat = beat; nowPaper.scrollSpeed = scrollSpeed; nowPaper.gameObject.SetActive(true); nowPaper.Init(); + fudePosAnim.runtimeAnimatorController = fudePosCntls[type]; } public void Write(double beat, int type) { - if (!isPrepare) Prepare(beat, type); + Prepare(type); + nowPaper.startBeat = beat; nowPaper.Play(); isPrepare=false; + double nextBeat = beat + nowPaper.nextBeat; + BeatAction.New(instance, new List(){ + new BeatAction.Action(nextBeat, delegate{ NextPrepare(nextBeat);}) + }); } - public void QueuePaper(double beat, int type, bool prepare) + public void QueuePaper(double beat, int type) { - if (GameManager.instance.currentGame != "powerCalligraphy" || prepare) + if (GameManager.instance.currentGame != "powerCalligraphy") { - queuedPaper = new QueuedPaper() - { - beat = beat, - type = type, - }; + queuedType = type; } else if(Conductor.instance.songPositionInBeats < beat) { BeatAction.New(instance, new List(){ - new BeatAction.Action(beat-1, delegate{ Prepare(beat, type);}) + new BeatAction.Action(beat-1, delegate{ Prepare(type);}) }); } } - public void Prepare(double beat, int type) + public void Prepare(int type) { - SpawnPaper(beat, type); - isPrepare = true; + if (!isPrepare) + { + SpawnPaper(type); + isPrepare = true; + } + } + public void NextPrepare(double beat) // Prepare next paper + { + double endBeat = double.MaxValue; + var entities = gameManager.Beatmap.Entities; + + RiqEntity firstEnd = entities.Find(c => (c.datamodel.StartsWith("gameManager/switchGame") || c.datamodel.Equals("gameManager/end")) && c.beat > gameStartBeat); + endBeat = firstEnd?.beat ?? endBeat; + + RiqEntity nextPaper = entities.Find(v => + (v.datamodel is "powerCalligraphy/re" or "powerCalligraphy/comma" or "powerCalligraphy/chikara" or "powerCalligraphy/onore" or "powerCalligraphy/sun" or "powerCalligraphy/kokoro" or "powerCalligraphy/face") + && v.beat >= beat && v.beat < endBeat); + + if (nextPaper is not null) + { + int type = nextPaper.datamodel switch + { + "powerCalligraphy/re" => (int)CharacterType.re, + "powerCalligraphy/comma" => (int)CharacterType.comma, + "powerCalligraphy/chikara" => (int)CharacterType.chikara, + "powerCalligraphy/onore" => (int)CharacterType.onore, + "powerCalligraphy/sun" => (int)CharacterType.sun, + "powerCalligraphy/kokoro" => (int)CharacterType.kokoro, + "powerCalligraphy/face" => nextPaper["korean"] ? (int)PowerCalligraphy.CharacterType.face_kr : (int)PowerCalligraphy.CharacterType.face, + _ => throw new NotImplementedException() + }; + + Prepare(type); + } } public void ChangeScrollSpeed(float x, float y) @@ -231,7 +254,9 @@ namespace HeavenStudio.Games public void TheEnd() { - endPaper.TheEnd(); + fudePosAnim.runtimeAnimatorController = fudePosCntls[(int)CharacterType.NONE]; + fudePosAnim.Play("fudePos-end"); + endPaper.Play("paper-end"); } } } \ No newline at end of file diff --git a/Assets/Scripts/Games/PowerCalligraphy/Writing.cs b/Assets/Scripts/Games/PowerCalligraphy/Writing.cs index 62870daeb..42c57a292 100644 --- a/Assets/Scripts/Games/PowerCalligraphy/Writing.cs +++ b/Assets/Scripts/Games/PowerCalligraphy/Writing.cs @@ -2,7 +2,7 @@ using System; using System.Collections; using System.Collections.Generic; using UnityEngine; - +using UnityEngine.Rendering; using HeavenStudio.Util; @@ -10,368 +10,168 @@ namespace HeavenStudio.Games.Scripts_PowerCalligraphy { public class Writing : MonoBehaviour { - // Declaring the same enum in another class is not beautiful. - public enum CharacterType + [Serializable] + public struct PatternItem { - re, - comma, - chikara, - onore, - sun, - kokoro, - face, - face_kr, - NONE, + public double beat; + public SoundType soundType; + public float soundVolume; + public StrokeType stroke; + public FudeType fudeAnim; + } + + public enum SoundType { + None = 0, + brushTap, + brush1, + brush2, + brush3, + reShout, + comma1, + comma2, + comma3, } - public double targetBeat; - public CharacterType characterType; - public Animator paperAnim; - public Animator fudePosAnim; - public Animator fudeAnim; + public enum StrokeType { + None = 0, + TOME = 1, + HANE, + HARAI, + } + + public enum FudeType { + None = 0, + Release, + Tap, + Prepare, + } + + public double startBeat; + public double nextBeat; + [SerializeField] PatternItem[] AnimPattern; + + private Animator paperAnim; + private SortingGroup paperSort; public Vector3 scrollSpeed; Vector3 scrollRate => scrollSpeed / (Conductor.instance.pitchedSecPerBeat * 2f); public bool onGoing = false; bool isFinish = false; - int num; - enum StrokeType { - TOME = 0, - HANE, - HARAI, - } + int process_num; StrokeType stroke; public int Stroke { get { return (int)stroke; }} - Sound releaseSound = null; - private PowerCalligraphy game; public void Init() { game = PowerCalligraphy.instance; - Anim(0); + paperAnim = GetComponent(); + paperSort = GetComponent(); + nextBeat = AnimPattern[^1].beat; } public void Play() { - switch(characterType) + paperSort.sortingOrder++; + + var sounds = new List(); + var actions = new List(); + + int anim_num = 0; + foreach (var item in AnimPattern) { - case CharacterType.re: - MultiSound.Play(new MultiSound.Sound[] - { - new MultiSound.Sound("powerCalligraphy/reShout", targetBeat), - new MultiSound.Sound("powerCalligraphy/brushTap", targetBeat+2f), - new MultiSound.Sound("powerCalligraphy/brush1", targetBeat+3f), - }); - BeatAction.New(this, new List() - { - new BeatAction.Action(targetBeat, delegate { fudeAnim.DoScaledAnimationAsync("fude-prepare", 0.5f);}), - new BeatAction.Action(targetBeat+2f, delegate - { - fudeAnim.DoScaledAnimationAsync("fude-tap", 0.5f); - Anim(1); - }), - new BeatAction.Action(targetBeat+3f, delegate { Anim(2);}), - new BeatAction.Action(targetBeat+4f, delegate { Sweep(); stroke = StrokeType.HANE;}), - new BeatAction.Action(targetBeat+6.5f, delegate { Anim(4, "end");}), - new BeatAction.Action(targetBeat+7f, delegate { Finish();}), - }); - game.ScheduleInput(targetBeat+4f, 2f, PowerCalligraphy.InputAction_FlickPress, writeSuccess, writeMiss, Empty, CanSuccess); - break; + double itemBeat = startBeat + item.beat; + string sound = item.soundType switch { + SoundType.brushTap => "powerCalligraphy/brushTap", + SoundType.brush1 => "powerCalligraphy/brush1", + SoundType.brush2 => "powerCalligraphy/brush2", + SoundType.brush3 => "powerCalligraphy/brush3", + SoundType.reShout => "powerCalligraphy/reShout", + SoundType.comma1 => "powerCalligraphy/comma1", + SoundType.comma2 => "powerCalligraphy/comma2", + SoundType.comma3 => "powerCalligraphy/comma3", + _ => "" + }; + if (!string.IsNullOrEmpty(sound)) sounds.Add(new MultiSound.Sound(sound, itemBeat, volume:item.soundVolume)); - case CharacterType.comma: - MultiSound.Play(new MultiSound.Sound[] - { - new MultiSound.Sound("powerCalligraphy/comma1", targetBeat), - new MultiSound.Sound("powerCalligraphy/comma2", targetBeat+2f), - new MultiSound.Sound("powerCalligraphy/comma2", targetBeat+3f), - new MultiSound.Sound("powerCalligraphy/comma3", targetBeat+4f), - }); - BeatAction.New(this, new List() - { - new BeatAction.Action(targetBeat, delegate { fudeAnim.DoScaledAnimationAsync("fude-prepare", 0.5f);}), - new BeatAction.Action(targetBeat+2f, delegate { fudeAnim.DoScaledAnimationAsync("fude-prepare", 0.5f);}), - new BeatAction.Action(targetBeat+3f, delegate { fudeAnim.DoScaledAnimationAsync("fude-prepare", 0.5f);}), - new BeatAction.Action(targetBeat+4f, delegate { Anim(1);}), - new BeatAction.Action(targetBeat+5f, delegate { Halt(); stroke = StrokeType.TOME;}), - new BeatAction.Action(targetBeat+6.5f, delegate { Anim(3, "end");}), - new BeatAction.Action(targetBeat+7f, delegate { Finish();}), - }); - game.ScheduleInput(targetBeat+5f, 1f, PowerCalligraphy.InputAction_BasicPress, writeSuccess, writeMiss, Empty, CanSuccess); - break; + int current_anim_num; + switch (item.fudeAnim) + { + case FudeType.Release: + anim_num++; + current_anim_num = anim_num; + actions.Add(new BeatAction.Action(itemBeat, delegate { Anim(current_anim_num); game.fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f);})); + break; + case FudeType.Tap: + anim_num++; + current_anim_num = anim_num; + actions.Add(new BeatAction.Action(itemBeat, delegate { Anim(current_anim_num); game.fudeAnim.DoScaledAnimationAsync("fude-tap", 0.5f);})); + break; + case FudeType.Prepare: + actions.Add(new BeatAction.Action(itemBeat, delegate { game.fudeAnim.DoScaledAnimationAsync("fude-prepare", 0.5f);})); + break; + default: + break; + } - case CharacterType.chikara: - MultiSound.Play(new MultiSound.Sound[] - { - new MultiSound.Sound("powerCalligraphy/brushTap", targetBeat), - new MultiSound.Sound("powerCalligraphy/brush1", targetBeat+0.5f), - new MultiSound.Sound("powerCalligraphy/brush2", targetBeat+1f), - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat+2f), - new MultiSound.Sound("powerCalligraphy/brushTap", targetBeat+3f), - }); - BeatAction.New(this, new List() - { - new BeatAction.Action(targetBeat, delegate - { - fudeAnim.DoScaledAnimationAsync("fude-tap", 0.5f); - Anim(1); - }), - new BeatAction.Action(targetBeat+0.5f, delegate { Anim(2);}), - new BeatAction.Action(targetBeat+1f, delegate { Anim(3);}), - new BeatAction.Action(targetBeat+2f, delegate - { - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - Anim(4); - }), - new BeatAction.Action(targetBeat+2.5f, delegate { Anim(5);}), - new BeatAction.Action(targetBeat+3f, delegate { - fudeAnim.DoScaledAnimationAsync("fude-tap", 0.5f); - Anim(6); - }), - new BeatAction.Action(targetBeat+4f, delegate { Sweep(); stroke = StrokeType.HARAI;}), - new BeatAction.Action(targetBeat+6.5f, delegate { Anim(8, "end");}), - new BeatAction.Action(targetBeat+7f, delegate { Finish();}), - }); - game.ScheduleInput(targetBeat+4f, 2f, PowerCalligraphy.InputAction_FlickPress, writeSuccess, writeMiss, Empty, CanSuccess); - break; - - case CharacterType.onore: - MultiSound.Play(new MultiSound.Sound[] - { - new MultiSound.Sound("powerCalligraphy/brushTap", targetBeat), - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat+1f), - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat+1.5f), - new MultiSound.Sound("powerCalligraphy/brushTap", targetBeat+2f), - new MultiSound.Sound("powerCalligraphy/brush1", targetBeat+3f), - new MultiSound.Sound("powerCalligraphy/brush2", targetBeat+4f), - }); - BeatAction.New(this, new List() - { - new BeatAction.Action(targetBeat, delegate - { - fudeAnim.DoScaledAnimationAsync("fude-tap", 0.5f); - Anim(1); - }), - new BeatAction.Action(targetBeat+1f, delegate { Anim(2);}), - new BeatAction.Action(targetBeat+1.5f, delegate { Anim(3);}), - new BeatAction.Action(targetBeat+2f, delegate { Anim(4);}), - new BeatAction.Action(targetBeat+3f, delegate { Anim(5);}), - new BeatAction.Action(targetBeat+4f, delegate - { - Anim(6); - Sweep(); stroke = StrokeType.HANE; - }), - new BeatAction.Action(targetBeat+6.5f, delegate { Anim(8, "end");}), - new BeatAction.Action(targetBeat+7f, delegate { Finish();}), - }); - game.ScheduleInput(targetBeat+4f, 2f, PowerCalligraphy.InputAction_FlickPress, writeSuccess, writeMiss, Empty, CanSuccess); - break; - - case CharacterType.sun: - MultiSound.Play(new MultiSound.Sound[] - { - new MultiSound.Sound("powerCalligraphy/brushTap", targetBeat), - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat+0.5f), - new MultiSound.Sound("powerCalligraphy/brush2", targetBeat+1f), - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat+1.5f), - }); - BeatAction.New(this, new List() - { - new BeatAction.Action(targetBeat, delegate - { - fudeAnim.DoScaledAnimationAsync("fude-tap", 0.5f); - Anim(1); - }), - new BeatAction.Action(targetBeat+0.5f, delegate { Anim(2);}), - new BeatAction.Action(targetBeat+1f, delegate { Anim(3);}), - new BeatAction.Action(targetBeat+1.5f, delegate { Anim(4);}), - new BeatAction.Action(targetBeat+2f, delegate { Sweep(); stroke = StrokeType.HANE; num = 1;}), - new BeatAction.Action(targetBeat+5f, delegate - { - Anim(6); - Halt(); stroke = StrokeType.TOME; num = 2; - }), - new BeatAction.Action(targetBeat+6.5f, delegate { Anim(8, "end");}), - new BeatAction.Action(targetBeat+7f, delegate { Finish();}), - }); - game.ScheduleInput(targetBeat+2f, 2f, PowerCalligraphy.InputAction_FlickPress, writeSuccess, writeMiss, Empty, CanSuccess); - game.ScheduleInput(targetBeat+5f, 1f, PowerCalligraphy.InputAction_BasicPress, writeSuccess, writeMiss, Empty, CanSuccess); - break; - - case CharacterType.kokoro: - MultiSound.Play(new MultiSound.Sound[] - { - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat), - new MultiSound.Sound("powerCalligraphy/brush2", targetBeat+1f), - new MultiSound.Sound("powerCalligraphy/brushTap", targetBeat+4f), - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat+4.5f, volume:0.3f), // +Agb - }); - BeatAction.New(this, new List() - { - new BeatAction.Action(targetBeat, delegate - { - fudeAnim.DoScaledAnimationAsync("fude-tap", 0.5f); - Anim(1); - }), - new BeatAction.Action(targetBeat+0.5f, delegate - { - fudeAnim.DoScaledAnimationAsync("fude-tap", 0.5f); - Anim(2); - }), - new BeatAction.Action(targetBeat+1f, delegate - { - Anim(3); - Sweep(); stroke = StrokeType.HANE; num = 1; - }), - new BeatAction.Action(targetBeat+3.5f, delegate - { - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - Anim(5); - }), - new BeatAction.Action(targetBeat+4f, delegate - { - fudeAnim.DoScaledAnimationAsync("fude-tap", 0.5f); - Anim(6); - }), - new BeatAction.Action(targetBeat+4.5f, delegate - { - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - Anim(7); - }), - new BeatAction.Action(targetBeat+5f, delegate { Halt(); stroke = StrokeType.TOME; num = 2;}), - new BeatAction.Action(targetBeat+6.5f, delegate { Anim(9, "end");}), - new BeatAction.Action(targetBeat+7f, delegate { Finish();}), - }); - game.ScheduleInput(targetBeat+1f, 2f, PowerCalligraphy.InputAction_FlickPress, writeSuccess, writeMiss, Empty, CanSuccess); - game.ScheduleInput(targetBeat+5f, 1f, PowerCalligraphy.InputAction_BasicPress, writeSuccess, writeMiss, Empty, CanSuccess); - break; - - case CharacterType.face: - MultiSound.Play(new MultiSound.Sound[] - { - new MultiSound.Sound("powerCalligraphy/brush1", targetBeat), - new MultiSound.Sound("powerCalligraphy/brush2", targetBeat+1f), - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat+2f), - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat+2.5f), - new MultiSound.Sound("powerCalligraphy/brush1", targetBeat+3f), - new MultiSound.Sound("powerCalligraphy/brush1", targetBeat+4f), - new MultiSound.Sound("powerCalligraphy/brush1", targetBeat+4.5f), - new MultiSound.Sound("powerCalligraphy/brush2", targetBeat+5f), - new MultiSound.Sound("powerCalligraphy/brush2", targetBeat+5.5f), - new MultiSound.Sound("powerCalligraphy/brush1", targetBeat+6f), - new MultiSound.Sound("powerCalligraphy/brush1", targetBeat+6.5f), - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat+7f), - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat+7.25f), - new MultiSound.Sound("powerCalligraphy/brushTap", targetBeat+7.5f), - }); - BeatAction.New(this, new List() - { - new BeatAction.Action(targetBeat, delegate { Anim(1);}), - new BeatAction.Action(targetBeat+1f, delegate { Anim(2);}), - new BeatAction.Action(targetBeat+1.5f, delegate { Anim(3);}), - new BeatAction.Action(targetBeat+2f, delegate { Anim(4);}), - new BeatAction.Action(targetBeat+2.5f, delegate { Anim(5);}), - new BeatAction.Action(targetBeat+3f, delegate { Anim(6);}), - new BeatAction.Action(targetBeat+3.5f, delegate { Anim(7);}), - new BeatAction.Action(targetBeat+4f, delegate { Anim(8);}), - new BeatAction.Action(targetBeat+4.5f, delegate { Anim(9);}), - new BeatAction.Action(targetBeat+4.75f, delegate { Anim(10);}), - new BeatAction.Action(targetBeat+5f, delegate { Anim(11);}), - new BeatAction.Action(targetBeat+5.25f, delegate { Anim(12);}), - new BeatAction.Action(targetBeat+5.5f, delegate { Anim(13);}), - new BeatAction.Action(targetBeat+6f, delegate { Anim(14);}), - new BeatAction.Action(targetBeat+6.5f, delegate { Anim(15);}), - new BeatAction.Action(targetBeat+7f, delegate { Anim(16);}), - new BeatAction.Action(targetBeat+7.25f, delegate { Anim(17);}), - new BeatAction.Action(targetBeat+7.5f, delegate { Anim(18);}), - new BeatAction.Action(targetBeat+7.75f, delegate { Anim(19);}), - new BeatAction.Action(targetBeat+8f, delegate - { - Anim(20); - Sweep(); stroke = StrokeType.HARAI; - }), - new BeatAction.Action(targetBeat+10.5f, delegate { Anim(22, "end");}), - new BeatAction.Action(targetBeat+11f, delegate { Finish();}), - }); - game.ScheduleInput(targetBeat+8f, 2f, PowerCalligraphy.InputAction_FlickPress, writeSuccess, writeMiss, Empty, CanSuccess); - break; - - case CharacterType.face_kr: - MultiSound.Play(new MultiSound.Sound[] - { - new MultiSound.Sound("powerCalligraphy/brush1", targetBeat), - new MultiSound.Sound("powerCalligraphy/brush2", targetBeat+1f), - new MultiSound.Sound("powerCalligraphy/brushTap", targetBeat+2f), // korean - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat+2.5f), // korean - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat+3.25f), // korean - new MultiSound.Sound("powerCalligraphy/brush1", targetBeat+4f), - new MultiSound.Sound("powerCalligraphy/brush1", targetBeat+4.5f), - new MultiSound.Sound("powerCalligraphy/brush2", targetBeat+5f), - new MultiSound.Sound("powerCalligraphy/brush2", targetBeat+5.5f), - new MultiSound.Sound("powerCalligraphy/brush1", targetBeat+6f), - new MultiSound.Sound("powerCalligraphy/brush1", targetBeat+6.5f), - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat+7f), - new MultiSound.Sound("powerCalligraphy/brush3", targetBeat+7.25f), - new MultiSound.Sound("powerCalligraphy/brushTap", targetBeat+7.5f), - }); - BeatAction.New(this, new List() - { - new BeatAction.Action(targetBeat, delegate { Anim(1);}), - new BeatAction.Action(targetBeat+1f, delegate { Anim(2);}), - new BeatAction.Action(targetBeat+1.75f, delegate { Anim(3);}), - new BeatAction.Action(targetBeat+2f, delegate { Anim(4);}), - new BeatAction.Action(targetBeat+2.5f, delegate { Anim(5);}), - new BeatAction.Action(targetBeat+3.25f, delegate { Anim(6);}), - new BeatAction.Action(targetBeat+3.5f, delegate { Anim(7);}), - new BeatAction.Action(targetBeat+4f, delegate { Anim(8);}), - new BeatAction.Action(targetBeat+4.5f, delegate { Anim(9);}), - new BeatAction.Action(targetBeat+4.75f, delegate { Anim(10);}), - new BeatAction.Action(targetBeat+5f, delegate { Anim(11);}), - new BeatAction.Action(targetBeat+5.25f, delegate { Anim(12);}), - new BeatAction.Action(targetBeat+5.5f, delegate { Anim(13);}), - new BeatAction.Action(targetBeat+6f, delegate { Anim(14);}), - new BeatAction.Action(targetBeat+6.5f, delegate { Anim(15);}), - new BeatAction.Action(targetBeat+7f, delegate { Anim(16);}), - new BeatAction.Action(targetBeat+7.25f, delegate { Anim(17);}), - new BeatAction.Action(targetBeat+7.5f, delegate { Anim(18);}), - new BeatAction.Action(targetBeat+7.75f, delegate { Anim(19);}), - new BeatAction.Action(targetBeat+8f, delegate - { - Anim(20); - Sweep(); stroke = StrokeType.HARAI; - }), - new BeatAction.Action(targetBeat+10.5f, delegate { Anim(22, "end");}), - new BeatAction.Action(targetBeat+11f, delegate { Finish();}), - }); - game.ScheduleInput(targetBeat+8f, 2f, PowerCalligraphy.InputAction_FlickPress, writeSuccess, writeMiss, Empty, CanSuccess); - break; + int current_anim_num_1; + switch(item.stroke) + { + case StrokeType.TOME: + anim_num++; + current_anim_num_1 = anim_num; + actions.Add(new BeatAction.Action(itemBeat, delegate { + Halt(); stroke = StrokeType.TOME; process_num = current_anim_num_1;})); + actions.Add(new BeatAction.Action(itemBeat, delegate { onGoing = true;})); + game.ScheduleInput(itemBeat, 1f, PowerCalligraphy.InputAction_BasicPress, writeSuccess, writeMiss, Empty, CanSuccess); + break; + case StrokeType.HANE: + anim_num++; + current_anim_num_1 = anim_num; + actions.Add(new BeatAction.Action(itemBeat, delegate { + Sweep(); stroke = StrokeType.HANE; process_num = current_anim_num_1;})); + actions.Add(new BeatAction.Action(itemBeat+1, delegate { onGoing = true;})); + game.ScheduleInput(itemBeat, 2f, PowerCalligraphy.InputAction_FlickPress, writeSuccess, writeMiss, Empty, CanSuccess); + break; + case StrokeType.HARAI: + anim_num++; + current_anim_num_1 = anim_num; + actions.Add(new BeatAction.Action(itemBeat, delegate { + Sweep(); stroke = StrokeType.HARAI; process_num = current_anim_num_1;})); + actions.Add(new BeatAction.Action(itemBeat+1, delegate { onGoing = true;})); + game.ScheduleInput(itemBeat, 2f, PowerCalligraphy.InputAction_FlickPress, writeSuccess, writeMiss, Empty, CanSuccess); + break; + default: + break; + } } + actions.Add(new BeatAction.Action(startBeat + nextBeat, delegate { Finish();})); + + if (sounds.Count > 0) MultiSound.Play(sounds.ToArray()); + if (actions.Count > 0) BeatAction.New(game, actions); } // TOME private void Halt() { - onGoing = true; - fudeAnim.Play("fude-halt"); - releaseSound = SoundByte.PlayOneShotGame("powerCalligraphy/releaseB1", forcePlay: true); + game.fudeAnim.Play("fude-halt"); + SoundByte.PlayOneShotGame("powerCalligraphy/releaseB1"); } // HANE HARAI private void Sweep() { - onGoing = true; - fudeAnim.Play("fude-sweep"); - releaseSound = SoundByte.PlayOneShotGame("powerCalligraphy/releaseA1", forcePlay: true); + game.fudeAnim.Play("fude-sweep"); + SoundByte.PlayOneShotGame("powerCalligraphy/releaseA1", forcePlay: true); } private void Finish() { isFinish = true; - fudeAnim.Play("fude-none"); + game.fudeAnim.Play("fude-none"); paperAnim.enabled = false; } - private void writeSuccess(PlayerActionEvent caller, float state) { if (state >= 1f) @@ -398,90 +198,20 @@ namespace HeavenStudio.Games.Scripts_PowerCalligraphy public void ProcessInput(string input) { onGoing = false; - switch(characterType) - { - case CharacterType.re: - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - Anim(3, input); - break; - - case CharacterType.comma: - switch (input) { - case "just": - fudeAnim.DoScaledAnimationAsync("fude-tap", 0.5f); - break; - default: - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - break; - } - Anim(2, input); - break; + Anim(process_num, input); - case CharacterType.chikara: - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - Anim(7, input); - break; - - case CharacterType.onore: - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - Anim(7, input); - break; - - case CharacterType.sun: - if (num==1) { - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - Anim(5, input); - } else { - switch (input) { - case "just": - fudeAnim.DoScaledAnimationAsync("fude-tap", 0.5f); - break; - default: - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - break; - } - Anim(7, input); - } - break; - - case CharacterType.kokoro: - if (num==1) { - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - Anim(4, input); - } else { - switch (input) { - case "just": - fudeAnim.DoScaledAnimationAsync("fude-tap", 0.5f); - break; - default: - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - break; - } - Anim(8, input); - } - break; - - case CharacterType.face: - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - Anim(21, input); - break; - - case CharacterType.face_kr: - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - Anim(21, input); - break; - } - switch (input) { case "just": switch (stroke) { case StrokeType.TOME: + game.fudeAnim.DoScaledAnimationAsync("fude-tap", 0.5f); SoundByte.PlayOneShotGame("powerCalligraphy/releaseB2"); break; case StrokeType.HANE: case StrokeType.HARAI: + game.fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); SoundByte.PlayOneShotGame("powerCalligraphy/releaseA2"); break; } @@ -491,12 +221,15 @@ namespace HeavenStudio.Games.Scripts_PowerCalligraphy case "fast": switch (stroke) { // WIP case StrokeType.TOME: + game.fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); SoundByte.PlayOneShotGame("powerCalligraphy/8"); break; case StrokeType.HANE: + game.fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); SoundByte.PlayOneShotGame("powerCalligraphy/6"); break; case StrokeType.HARAI: + game.fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); SoundByte.PlayOneShotGame("powerCalligraphy/9"); break; } @@ -504,76 +237,32 @@ namespace HeavenStudio.Games.Scripts_PowerCalligraphy default: break; } - - // not work - if (input == "fast" && releaseSound is not null) - { - releaseSound.Stop(); - releaseSound = null; - } } public void Miss() { onGoing = false; SoundByte.PlayOneShotGame("powerCalligraphy/7"); // WIP - switch(characterType) - { - case CharacterType.re: - fudeAnim.DoScaledAnimationAsync("fude-sweep-end", 0.5f); - break; - - case CharacterType.comma: - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - fudePosAnim.DoScaledAnimationAsync("fudePos-comma02-miss", 0.5f); - break; + Anim(process_num, "miss"); - case CharacterType.chikara: - fudeAnim.DoScaledAnimationAsync("fude-sweep-end", 0.5f); + switch (stroke) { + case StrokeType.TOME: + game.fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); break; - - case CharacterType.onore: - fudeAnim.DoScaledAnimationAsync("fude-sweep-end", 0.5f); - break; - - case CharacterType.sun: - if (num==1) { - fudeAnim.DoScaledAnimationAsync("fude-sweep-end", 0.5f); - } else { - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - fudePosAnim.DoScaledAnimationAsync("fudePos-sun07-miss", 0.5f); - } - break; - - case CharacterType.kokoro: - if (num==1) { - fudeAnim.DoScaledAnimationAsync("fude-sweep-end", 0.5f); - } else { - fudeAnim.DoScaledAnimationAsync("fude-none", 0.5f); - fudePosAnim.DoScaledAnimationAsync("fudePos-kokoro08-miss", 0.5f); - } - break; - - case CharacterType.face: - fudeAnim.DoScaledAnimationAsync("fude-sweep-end", 0.5f); - break; - - case CharacterType.face_kr: - fudeAnim.DoScaledAnimationAsync("fude-sweep-end", 0.5f); + + case StrokeType.HANE: + case StrokeType.HARAI: + game.fudeAnim.DoScaledAnimationAsync("fude-sweep-end", 0.5f); break; } } private void Anim(int num, string str = "") { - string pattern = - characterType.ToString() - + num.ToString("D2") + ((str != "") ? "-" + str : str); + string pattern = num.ToString() + str; - fudePosAnim.DoScaledAnimationAsync("fudePos-" + pattern, 0.5f); - paperAnim.DoScaledAnimationAsync("paper-" + pattern, 0.5f); - - + game.fudePosAnim.DoScaledAnimationAsync(pattern, 0.5f); + paperAnim.DoScaledAnimationAsync(pattern, 0.5f); } private void Update() @@ -588,15 +277,9 @@ namespace HeavenStudio.Games.Scripts_PowerCalligraphy // Paper scroll. var paperPos = transform.localPosition; transform.localPosition = paperPos + (scrollRate * Time.deltaTime); - if (beat >= targetBeat + 24) Destroy(gameObject); + if (beat >= startBeat + 24) Destroy(gameObject); } } } - - public void TheEnd() - { - fudePosAnim.Play("fudePos-end"); - paperAnim.Play("paper-end"); - } } } \ No newline at end of file diff --git a/Assets/Scripts/LevelEditor/EventSelector/PropertyPrefabs/DropdownPropertyPrefab.cs b/Assets/Scripts/LevelEditor/EventSelector/PropertyPrefabs/DropdownPropertyPrefab.cs index 82d9fb70f..ae5b68f5c 100644 --- a/Assets/Scripts/LevelEditor/EventSelector/PropertyPrefabs/DropdownPropertyPrefab.cs +++ b/Assets/Scripts/LevelEditor/EventSelector/PropertyPrefabs/DropdownPropertyPrefab.cs @@ -19,6 +19,7 @@ namespace HeavenStudio.Editor public LeftClickTMP_Dropdown dropdown; public Scrollbar scrollbar; + public int[] values; private int _defaultValue; private bool openedDropdown = false; @@ -35,6 +36,14 @@ namespace HeavenStudio.Editor // entity[propertyName].ChangeValues(dropdownEntity.Values); _defaultValue = dropdownEntity.defaultValue; EntityTypes.DropdownObj dropdownObj = entity[propertyName]; + + int size = dropdownObj.Values.Count; + values = new int[size]; + + for (int i = 0; i < size; i++) { + values[i] = i; + } + selected = dropdownObj.value; dropdown.AddOptions(dropdownObj.Values); dropdown.onValueChanged.AddListener(newVal => dropdownObj.value = newVal); @@ -50,11 +59,11 @@ namespace HeavenStudio.Editor case Enum enumEntity: Type enumType = enumEntity.GetType(); _defaultValue = (int)type; - int[] keys = Enum.GetValues(enumType).Cast().ToArray(); - selected = Array.FindIndex(keys, val => val == (int)entity[propertyName]); + values = Enum.GetValues(enumType).Cast().ToArray(); + selected = Array.FindIndex(values, val => val == (int)entity[propertyName]); dropdown.AddOptions(Enum.GetNames(enumType).ToList()); - dropdown.onValueChanged.AddListener(val => entity[propertyName] = keys[val]); + dropdown.onValueChanged.AddListener(val => entity[propertyName] = values[val]); break; default: break; @@ -74,8 +83,8 @@ namespace HeavenStudio.Editor public override void SetCollapses(object type) { - dropdown.onValueChanged.AddListener(_ => UpdateCollapse(type)); - UpdateCollapse(type); + dropdown.onValueChanged.AddListener(_ => UpdateCollapse(values[dropdown.value])); + UpdateCollapse(values[dropdown.value]); } private void Update() diff --git a/Assets/Scripts/Minigames.cs b/Assets/Scripts/Minigames.cs index c2f74d7db..bda685143 100644 --- a/Assets/Scripts/Minigames.cs +++ b/Assets/Scripts/Minigames.cs @@ -1096,6 +1096,7 @@ namespace HeavenStudio }), } }, + new GameAction("colorGrading", "Color Grading") { resizable = true, @@ -1128,6 +1129,124 @@ namespace HeavenStudio }), } }, + + new GameAction("gaussBlur", "Gaussian Blur") + { + resizable = true, + parameters = new() + { + new("intenStart", new EntityTypes.Float(0f, 5f, 0f), "Start Intensity", "Set the intensity at the start of the event."), + new("intenEnd", new EntityTypes.Float(0f, 5f, 1f), "End Intensity", "Set the intensity at the end of the event."), + + new("ease", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing of the action.", new() + { + new((x, y) => (Util.EasingFunction.Ease)x != Util.EasingFunction.Ease.Linear, new string[] { "intenStart" }) + }), + } + }, + + new GameAction("retroTv", "Retro TV") + { + resizable = true, + parameters = new() + { + new("intenStart", new EntityTypes.Float(0f, 1f, 0f), "Start Distortion", "Set the distortion at the start of the event."), + new("intenEnd", new EntityTypes.Float(0f, 1f, 0.2f), "End Distortion", "Set the distortion at the end of the event."), + + new("rgbStart", new EntityTypes.Float(0f, 1f, 1f), "Start RGB Blend", "Set the RGB blend at the start of the event."), + new("rgbEnd", new EntityTypes.Float(0f, 1f, 1f), "End RGB Blend", "Set the RGB blend at the end of the event."), + + new("bottomStart", new EntityTypes.Float(0f, 1f, 0f), "Start Bottom Collapse", "Set the bottom collapse at the start of the event."), + new("bottomEnd", new EntityTypes.Float(0f, 1f, 0.02f), "End Bottom Collapse", "Set the bottom collapse at the end of the event."), + + new("noiseStart", new EntityTypes.Float(0f, 1f, 0f), "Start Noise", "Set the noise at the start of the event."), + new("noiseEnd", new EntityTypes.Float(0f, 1f, 0.3f), "End Noise", "Set the noise knee at the end of the event."), + + new("ease", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing of the action.", new() + { + new((x, y) => (Util.EasingFunction.Ease)x != Util.EasingFunction.Ease.Instant, new string[] { "intenStart", "rgbStart", "bottomStart", "noiseStart"}) + }), + } + }, + + new GameAction("scanJitter", "Scan Line Jitter") + { + resizable = true, + parameters = new() + { + new("intenStart", new EntityTypes.Float(0f, 1f, 0f), "Start Intensity", "Set the intensity at the start of the event."), + new("intenEnd", new EntityTypes.Float(0f, 1f, 0.1f), "End Intensity", "Set the intensity at the end of the event."), + + new("ease", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing of the action.", new() + { + new((x, y) => (Util.EasingFunction.Ease)x != Util.EasingFunction.Ease.Instant, new string[] { "intenStart" }) + }), + } + }, + + new GameAction("analogNoise", "Analog Noise") + { + resizable = true, + parameters = new() + { + new("intenStart", new EntityTypes.Float(0f, 1f, 0f), "Start Speed", "Set the speed at the start of the event."), + new("intenEnd", new EntityTypes.Float(0f, 1f, 0.5f), "End Speed", "Set the speed at the end of the event."), + + new("fadingStart", new EntityTypes.Float(0f, 1f, 0f), "Start Fading", "Set the fading at the start of the event."), + new("fadingEnd", new EntityTypes.Float(0f, 1f, 0.1f), "End Fading", "Set the fading at the end of the event."), + + new("thresholdStart", new EntityTypes.Float(0f, 1f, 0f), "Start Threshold", "Set the threshold at the start of the event."), + new("thresholdEnd", new EntityTypes.Float(0f, 1f, 0.8f), "End Threshold", "Set the threshold at the end of the event."), + + new("ease", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing of the action.", new() + { + new((x, y) => (Util.EasingFunction.Ease)x != Util.EasingFunction.Ease.Instant, new string[] { "intenStart", "fadingStart", "thresholdStart"}) + }), + } + }, + + new GameAction("screenJump", "Screen Jump") + { + resizable = true, + parameters = new() + { + new("intenStart", new EntityTypes.Float(0f, 1f, 0f), "Start Intensity", "Set the intensity at the start of the event."), + new("intenEnd", new EntityTypes.Float(0f, 1f, 0.01f), "End Intensity", "Set the intensity at the end of the event."), + + new("ease", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing of the action.", new() + { + new((x, y) => (Util.EasingFunction.Ease)x != Util.EasingFunction.Ease.Instant, new string[] { "intenStart" }) + }), + } + }, + + new GameAction("sobelNeon", "Neon") + { + resizable = true, + parameters = new() + { + new("intenStart", new EntityTypes.Float(0.1f, 1f, 0.1f), "Start Intensity", "Set the edge fade at the start of the event."), + new("intenEnd", new EntityTypes.Float(0.1f, 1f, 1f), "End Intensity", "Set the edge fade at the end of the event."), + + new("edgeWidthStart", new EntityTypes.Float(0.05f, 5f, 0.05f), "Start Edge Width", "Set the edge width at the start of the event."), + new("edgeWidthEnd", new EntityTypes.Float(0.05f, 5f, 2f), "End Edge Width", "Set the edge width at the end of the event."), + + new("bgFadeStart", new EntityTypes.Float(0f, 1f, 0f), "Start Background Presence", "Set the background presence at the start of the event."), + new("bgFadeEnd", new EntityTypes.Float(0f, 1f, 0f), "End Background Presence", "Set the background presence at the end of the event."), + + + new("brightnessStart", new EntityTypes.Float(0f, 2f, 0f), "Start Brightness", "Set the brightness at the start of the event."), + new("brightnessEnd", new EntityTypes.Float(0f, 2f, 1f), "End Brightness", "Set the brightness at the end of the event."), + + + new("ease", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing of the action.", new() + { + new((x, y) => (Util.EasingFunction.Ease)x != Util.EasingFunction.Ease.Instant, new string[] { "intenStart", "edgeWidthStart", "bgFadeStart", "brightnessStart" }) + }), + } + }, + + new GameAction("screenTiling", "Tile Screen") { resizable = true, @@ -1159,7 +1278,9 @@ namespace HeavenStudio new((x, y) => (Util.EasingFunction.Ease)x != Util.EasingFunction.Ease.Instant, new string[] { "xScrollStart", "yScrollStart" }) }), } - } + }, + + }), new Minigame("advanced", "Advanced", "", false, true, new List() diff --git a/Assets/Scripts/PostProcessingVFX.cs b/Assets/Scripts/PostProcessingVFX.cs index 09d75aad9..69a45e4b4 100644 --- a/Assets/Scripts/PostProcessingVFX.cs +++ b/Assets/Scripts/PostProcessingVFX.cs @@ -3,6 +3,7 @@ using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Rendering.PostProcessing; +using XPostProcessing; namespace HeavenStudio { @@ -17,10 +18,19 @@ namespace HeavenStudio private List _lensDs = new(); private List _grains = new(); private List _colorGradings = new(); - + private List _retroTvs = new(); + private List _scanJitters = new(); + private List _gaussBlurs = new(); + private List _analogNoises = new(); + private List _screenJumps = new(); + private List _sobelNeons = new(); private void Awake() { _volume = GetComponent(); + UpdateRetroTV(); + UpdateAnalogNoise(); + UpdateSobelNeons(); + } private void Start() @@ -36,6 +46,12 @@ namespace HeavenStudio _lensDs = EventCaller.GetAllInGameManagerList("vfx", new string[] { "lensD" }); _grains = EventCaller.GetAllInGameManagerList("vfx", new string[] { "grain" }); _colorGradings = EventCaller.GetAllInGameManagerList("vfx", new string[] { "colorGrading" }); + _retroTvs = EventCaller.GetAllInGameManagerList("vfx", new string[] { "retroTv" }); + _scanJitters = EventCaller.GetAllInGameManagerList("vfx", new string[] {"scanJitter"}); + _gaussBlurs = EventCaller.GetAllInGameManagerList("vfx", new string[] {"gaussBlur"}); + _analogNoises = EventCaller.GetAllInGameManagerList("vfx", new string[] {"analogNoise"}); + _screenJumps = EventCaller.GetAllInGameManagerList("vfx", new string[] {"screenJump"}); + _sobelNeons = EventCaller.GetAllInGameManagerList("vfx", new string[] {"sobelNeon"}); UpdateVignette(); UpdateChromaticAbberations(); @@ -43,6 +59,13 @@ namespace HeavenStudio UpdateLensDistortions(); UpdateGrain(); UpdateColorGrading(); + UpdateRetroTV(); + UpdateScanJitter(); + UpdateGaussBlur(); + UpdateAnalogNoise(); + UpdateScreenJumps(); + UpdateSobelNeons(); + } private void Update() @@ -53,6 +76,13 @@ namespace HeavenStudio UpdateLensDistortions(); UpdateGrain(); UpdateColorGrading(); + UpdateRetroTV(); + UpdateScanJitter(); + UpdateGaussBlur(); + UpdateAnalogNoise(); + UpdateScreenJumps(); + UpdateSobelNeons(); + } private void UpdateVignette() @@ -223,6 +253,145 @@ namespace HeavenStudio } } + private void UpdateRetroTV() + { + if (!_volume.profile.TryGetSettings(out var t)) return; + t.enabled.Override(false); + foreach (var e in _retroTvs) + { + float normalized = Conductor.instance.GetPositionFromBeat(e.beat, e.length); + if (normalized < 0) break; + + float clampNormal = Mathf.Clamp01(normalized); + var func = Util.EasingFunction.GetEasingFunction((Util.EasingFunction.Ease)e["ease"]); + + float newIntensity = func(e["intenStart"], e["intenEnd"], clampNormal); + t.enabled.Override(newIntensity != 0); + if (!t.enabled) continue; + t.distort.Override(newIntensity); + + float newRGBBlend = func(e["rgbStart"], e["rgbEnd"], clampNormal); + t.RGBBlend.Override(newRGBBlend); + + float newBottomCollapse = func(e["bottomStart"], e["bottomEnd"], clampNormal); + t.BottomCollapse.Override(newBottomCollapse); + + float newNoiseAmount = func(e["noiseStart"], e["noiseEnd"], clampNormal); + t.NoiseAmount.Override(newNoiseAmount); + } + } + + private void UpdateScanJitter() + { + if (!_volume.profile.TryGetSettings(out var j)) return; + j.enabled.Override(false); + foreach (var e in _scanJitters) + { + float normalized = Conductor.instance.GetPositionFromBeat(e.beat, e.length); + if (normalized < 0) break; + + float clampNormal = Mathf.Clamp01(normalized); + var func = Util.EasingFunction.GetEasingFunction((Util.EasingFunction.Ease)e["ease"]); + + float newIntensity = func(e["intenStart"], e["intenEnd"], clampNormal); + j.enabled.Override(newIntensity != 0); + if (!j.enabled) continue; + j.JitterIndensity.Override(newIntensity); + } + } + + private void UpdateGaussBlur() + { + if (!_volume.profile.TryGetSettings(out var g)) return; + g.enabled.Override(false); + foreach (var e in _gaussBlurs) + { + float normalized = Conductor.instance.GetPositionFromBeat(e.beat, e.length); + if (normalized < 0) break; + + float clampNormal = Mathf.Clamp01(normalized); + var func = Util.EasingFunction.GetEasingFunction((Util.EasingFunction.Ease)e["ease"]); + + float newIntensity = func(e["intenStart"], e["intenEnd"], clampNormal); + g.enabled.Override(newIntensity != 0); + if (!g.enabled) continue; + g.BlurRadius.Override(newIntensity); + } + } + + private void UpdateAnalogNoise() + { + if (!_volume.profile.TryGetSettings(out var n)) return; + n.enabled.Override(false); + foreach (var e in _analogNoises) + { + float normalized = Conductor.instance.GetPositionFromBeat(e.beat, e.length); + if (normalized < 0) break; + + float clampNormal = Mathf.Clamp01(normalized); + var func = Util.EasingFunction.GetEasingFunction((Util.EasingFunction.Ease)e["ease"]); + + float newIntensity = func(e["intenStart"], e["intenEnd"], clampNormal); + n.enabled.Override(newIntensity != 0); + if (!n.enabled) continue; + n.NoiseSpeed.Override(newIntensity); + + float newFading = func(e["fadingStart"], e["fadingEnd"], clampNormal); + n.NoiseFading.Override(newFading); + + float newThreshold = func(e["thresholdStart"], e["thresholdEnd"], clampNormal); + n.LuminanceJitterThreshold.Override(newThreshold); + } + } + + private void UpdateScreenJumps() + { + if (!_volume.profile.TryGetSettings(out var sj)) return; + sj.enabled.Override(false); + foreach (var e in _screenJumps) + { + float normalized = Conductor.instance.GetPositionFromBeat(e.beat, e.length); + if (normalized < 0) break; + + float clampNormal = Mathf.Clamp01(normalized); + var func = Util.EasingFunction.GetEasingFunction((Util.EasingFunction.Ease)e["ease"]); + + float newIntensity = func(e["intenStart"], e["intenEnd"], clampNormal); + sj.enabled.Override(newIntensity != 0); + if (!sj.enabled) continue; + sj.ScreenJumpIndensity.Override(newIntensity); + } + } + + private void UpdateSobelNeons() + { + if (!_volume.profile.TryGetSettings(out var sn)) return; + sn.enabled.Override(false); + foreach (var e in _sobelNeons) + { + float normalized = Conductor.instance.GetPositionFromBeat(e.beat, e.length); + if (normalized < 0) break; + + float clampNormal = Mathf.Clamp01(normalized); + var func = Util.EasingFunction.GetEasingFunction((Util.EasingFunction.Ease)e["ease"]); + + float newIntensity = func(e["intenStart"], e["intenEnd"], clampNormal); + sn.enabled.Override(newIntensity != 0.1); + if (!sn.enabled) continue; + sn.EdgeNeonFade.Override(newIntensity); + + float newEdgeWidth = func(e["edgeWidthStart"], e["edgeWidthEnd"], clampNormal); + sn.EdgeWidth.Override(newEdgeWidth); + + float newBgFade = func(e["bgFadeStart"], e["bgFadeEnd"], clampNormal); + sn.BackgroundFade.Override(newBgFade); + + float newBrightness = func(e["brightnessStart"], e["brightnessEnd"], clampNormal); + sn.Brigtness.Override(newBrightness); + } + + } + private Color ColorEase(Color start, Color end, float time, Util.EasingFunction.Function func) { float newR = func(start.r, end.r, time); diff --git a/Assets/Scripts/USG.g/LoadMinigames.Minigames.MinigameLoaderGenerator.g.cs b/Assets/Scripts/USG.g/LoadMinigames.Minigames.MinigameLoaderGenerator.g.cs index 2f2ee212a..e8907bb3f 100644 --- a/Assets/Scripts/USG.g/LoadMinigames.Minigames.MinigameLoaderGenerator.g.cs +++ b/Assets/Scripts/USG.g/LoadMinigames.Minigames.MinigameLoaderGenerator.g.cs @@ -13,6 +13,16 @@ namespace HeavenStudio Minigames.Minigame game; + game = NtrAirboarderLoader.AddGame(eventCaller); + if (game != null) + { + eventCaller.minigames.Add(game.name, game); + } + else + { + Debug.LogWarning("Game loader NtrAirboarderLoader failed!"); + } + game = RvlBadmintonLoader.AddGame(eventCaller); if (game != null) { @@ -92,6 +102,16 @@ namespace HeavenStudio { Debug.LogWarning("Game loader RvlBookLoader failed!"); } + + game = NtrFreezeFrameLoader.AddGame(eventCaller); + if (game != null) + { + eventCaller.minigames.Add(game.name, game); + } + else + { + Debug.LogWarning("Game loader NtrCameraManLoader failed!"); + } game = AgbClapLoader.AddGame(eventCaller); if (game != null) diff --git a/Assets/Shaders/OilPainting.meta b/Assets/Shaders/OilPainting.meta new file mode 100644 index 000000000..2d63a299b --- /dev/null +++ b/Assets/Shaders/OilPainting.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 46904ac8a616d4b418176835de20e8d9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Shaders/OilPainting/BuiltInSampleScripts.meta b/Assets/Shaders/OilPainting/BuiltInSampleScripts.meta new file mode 100644 index 000000000..ec125496a --- /dev/null +++ b/Assets/Shaders/OilPainting/BuiltInSampleScripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 736fda2f215269048bb5447cbbcc7c86 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Shaders/OilPainting/BuiltInSampleScripts/BackgroundManager.cs b/Assets/Shaders/OilPainting/BuiltInSampleScripts/BackgroundManager.cs new file mode 100644 index 000000000..aef1b9085 --- /dev/null +++ b/Assets/Shaders/OilPainting/BuiltInSampleScripts/BackgroundManager.cs @@ -0,0 +1,28 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; + +public class BackgroundManager : MonoBehaviour +{ + public ScreenCaptureManager screenCaptureManager; + public ImageEffectController imageEffectController; + public RawImage backgroundImage; + public void CaptureAndSetBackground() + { + Texture2D capturedScreen = screenCaptureManager.CaptureScreen(); + RenderTexture rt = RenderTexture.GetTemporary(capturedScreen.width, + capturedScreen.height); + Graphics.Blit(capturedScreen, rt, imageEffectController.effectMaterial); + Texture2D processedTexture = new Texture2D(capturedScreen.width, + capturedScreen.height, TextureFormat.RGB24, false); + RenderTexture.active = rt; + processedTexture.ReadPixels(new Rect(0, 0, capturedScreen.width, + capturedScreen.height), 0, 0); + processedTexture.Apply(); + RenderTexture.active = null; + backgroundImage.texture = processedTexture; + RenderTexture.ReleaseTemporary(rt); + } +} + diff --git a/Assets/Shaders/OilPainting/BuiltInSampleScripts/BackgroundManager.cs.meta b/Assets/Shaders/OilPainting/BuiltInSampleScripts/BackgroundManager.cs.meta new file mode 100644 index 000000000..edc85fc4c --- /dev/null +++ b/Assets/Shaders/OilPainting/BuiltInSampleScripts/BackgroundManager.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: a1dd29b02afef1245986a3dbd0977bfb +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Shaders/OilPainting/BuiltInSampleScripts/EffectSettingsUI.cs b/Assets/Shaders/OilPainting/BuiltInSampleScripts/EffectSettingsUI.cs new file mode 100644 index 000000000..33148a914 --- /dev/null +++ b/Assets/Shaders/OilPainting/BuiltInSampleScripts/EffectSettingsUI.cs @@ -0,0 +1,46 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; + +public class EffectSettingsUI : MonoBehaviour +{ + public ImageEffectController imageEffectController; + public BackgroundManager backgroundManager; + public Slider impastoSlider; + public Slider impastoSlider2; + public Slider blurSlider; + public Slider vignetteSlider; + public Slider vignetteSlider2; + public Button captureBtn; + private void Start() + { + impastoSlider.onValueChanged.AddListener(UpdateImpastoIntensity); + impastoSlider2.onValueChanged.AddListener(UpdateImpastoNormalIntensity); + vignetteSlider2.onValueChanged.AddListener(UpdateVignetteSmoothness); + blurSlider.onValueChanged.AddListener(UpdateBlurIntensity); + vignetteSlider.onValueChanged.AddListener(UpdateVignetteIntensity); + captureBtn.onClick.AddListener(() => backgroundManager.CaptureAndSetBackground()); + } + private void UpdateImpastoIntensity(float value) + { + imageEffectController.impastoIntensity = value; + } + private void UpdateImpastoNormalIntensity(float value) + { + imageEffectController.normalInfluence = value; + } + private void UpdateVignetteSmoothness(float value) + { + imageEffectController.vignetteSmoothness = value; + } + private void UpdateBlurIntensity(float value) + { + imageEffectController.blurIntensity = value; + } + private void UpdateVignetteIntensity(float value) + { + imageEffectController.vignetteIntensity = value; + } +} + diff --git a/Assets/Shaders/OilPainting/BuiltInSampleScripts/EffectSettingsUI.cs.meta b/Assets/Shaders/OilPainting/BuiltInSampleScripts/EffectSettingsUI.cs.meta new file mode 100644 index 000000000..3182a7e45 --- /dev/null +++ b/Assets/Shaders/OilPainting/BuiltInSampleScripts/EffectSettingsUI.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1b38bdbccb5df874aaa03fe2009647f2 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Shaders/OilPainting/BuiltInSampleScripts/ImageEffectController.cs b/Assets/Shaders/OilPainting/BuiltInSampleScripts/ImageEffectController.cs new file mode 100644 index 000000000..5ac10d6bb --- /dev/null +++ b/Assets/Shaders/OilPainting/BuiltInSampleScripts/ImageEffectController.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class ImageEffectController : MonoBehaviour +{ + public ScreenCaptureManager screenCaptureManager; + public Material effectMaterial; + public float impastoIntensity; + public float normalInfluence; + public float blurIntensity; + public float vignetteIntensity = 0.1357143f; + public float vignetteSmoothness = 0.3328571f; +#if UNITY_EDITOR + private void Awake() + { + Application.targetFrameRate = 60; + } +#endif + + private void OnRenderImage(RenderTexture source, RenderTexture destination) + { + effectMaterial.SetFloat("_Radius", impastoIntensity); + effectMaterial.SetFloat("_NormalWeight", normalInfluence); + effectMaterial.SetFloat("_BlurSize", blurIntensity); + effectMaterial.SetFloat("_VignetteIntensity", vignetteIntensity); + effectMaterial.SetFloat("_VignetteSmoothness", vignetteSmoothness); + Graphics.Blit(source, destination, effectMaterial); + } +} \ No newline at end of file diff --git a/Assets/Shaders/OilPainting/BuiltInSampleScripts/ImageEffectController.cs.meta b/Assets/Shaders/OilPainting/BuiltInSampleScripts/ImageEffectController.cs.meta new file mode 100644 index 000000000..6c9921867 --- /dev/null +++ b/Assets/Shaders/OilPainting/BuiltInSampleScripts/ImageEffectController.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 818e57f7710a6244195e20cf7a12f0d9 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Shaders/OilPainting/BuiltInSampleScripts/ScreenCaptureManager.cs b/Assets/Shaders/OilPainting/BuiltInSampleScripts/ScreenCaptureManager.cs new file mode 100644 index 000000000..16d5a5242 --- /dev/null +++ b/Assets/Shaders/OilPainting/BuiltInSampleScripts/ScreenCaptureManager.cs @@ -0,0 +1,23 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class ScreenCaptureManager : MonoBehaviour +{ + public Texture2D CaptureScreen() + { + RenderTexture rt = new RenderTexture(Screen.width, Screen.height, 24); + Camera.main.targetTexture = rt; + Camera.main.Render(); + Camera.main.targetTexture = null; + Texture2D screenShot = new Texture2D(Screen.width, Screen.height, + TextureFormat.RGB24, false); + RenderTexture.active = rt; + screenShot.ReadPixels(new Rect(0, 0, Screen.width, Screen.height), 0, 0); + screenShot.Apply(); + RenderTexture.active = null; + Destroy(rt); + return screenShot; + } +} + diff --git a/Assets/Shaders/OilPainting/BuiltInSampleScripts/ScreenCaptureManager.cs.meta b/Assets/Shaders/OilPainting/BuiltInSampleScripts/ScreenCaptureManager.cs.meta new file mode 100644 index 000000000..fc625b7bd --- /dev/null +++ b/Assets/Shaders/OilPainting/BuiltInSampleScripts/ScreenCaptureManager.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 05997ac2fa6a91345b94f9cff4ee83fe +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Shaders/OilPainting/LICENSE b/Assets/Shaders/OilPainting/LICENSE new file mode 100644 index 000000000..947468075 --- /dev/null +++ b/Assets/Shaders/OilPainting/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Vladislav Sobolev + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Assets/Shaders/OilPainting/LICENSE.meta b/Assets/Shaders/OilPainting/LICENSE.meta new file mode 100644 index 000000000..83e9340f8 --- /dev/null +++ b/Assets/Shaders/OilPainting/LICENSE.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b7763088423ea1d4fa1e66a9f8cde3d1 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Shaders/OilPainting/OilPainting.shader b/Assets/Shaders/OilPainting/OilPainting.shader new file mode 100644 index 000000000..9b2a5068c --- /dev/null +++ b/Assets/Shaders/OilPainting/OilPainting.shader @@ -0,0 +1,193 @@ +// Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)' + +Shader "Unlit/Oil Painting" +{ + Properties + { + _MainTex("Texture", 2D) = "white" {} + _NormalMap ("Normal Map", 2D) = "bump" {} + _NormalWeight ("Normal Weight", Range(0, 10)) = 0.5 + _Radius ("Radius", Range(0, 10)) = 0 + [KeywordEnum(Low, Medium, High)] _Samples ("Sample amount", Float) = 0 + _BlurSize("Blur Size", Range(0, 0.1)) = 0 + _StandardDeviation("Standard Deviation", Range(0, 0.1)) = 0.02 + _VignetteIntensity("Vignette Intensity", Range(0, 1)) = 0.5 + _VignetteSmoothness("Vignette Smoothness", Range(0, 1)) = 0.2 + } + SubShader + { + Blend SrcAlpha OneMinusSrcAlpha + Pass + { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #pragma target 3.0 + #include "UnityCG.cginc" + #define PI 3.14159265359 + #define E 2.71828182846 + #pragma multi_compile _SAMPLES_LOW _SAMPLES_MEDIUM _SAMPLES_HIGH + float _BlurSize; + float _StandardDeviation; + float _VignetteIntensity; + float _VignetteSmoothness; + float _NormalWeight; + #if _SAMPLES_LOW + #define SAMPLES 10 + #elif _SAMPLES_MEDIUM + #define SAMPLES 30 + #else + #define SAMPLES 100 + #endif + + struct v2f + { + float4 pos : SV_POSITION; + half2 uv : TEXCOORD0; + }; + + sampler2D _MainTex; + sampler2D _NormalMap; + float4 _MainTex_ST; + + + float vignette(float2 uv, float intensity, float smoothness) + { + float2 position = uv - 0.5; + float distance = length(position); + float vignette = smoothstep(smoothness, smoothness - intensity, distance); + return vignette; + } + + v2f vert(appdata_base v) + { + v2f o; + o.pos = UnityObjectToClipPos(v.vertex); + o.uv = TRANSFORM_TEX(v.texcoord, _MainTex); + return o; + } + + int _Radius; + float4 _MainTex_TexelSize; + + float4 frag(v2f i) : SV_Target + { + float3 normal = UnpackNormal(tex2D(_NormalMap, i.uv)); + half2 uv = i.uv; + float3 col; + float4 color = tex2D(_MainTex, uv); + + //kuwahara with normal influence + float3 mean[4] = { + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0} + }; + + float3 sigma[4] = { + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0} + }; + + float2 start[4] = {{-_Radius, -_Radius}, {-_Radius, 0}, {0, -_Radius}, {0, 0}}; + + float2 pos; + float normalInfluence; + for (int k = 0; k < 4; k++) + { + for (int i = 0; i <= _Radius; i++) + { + for (int j = 0; j <= _Radius; j++) + { + float2 kernelDirection = float2(i - 1, j - 1); + kernelDirection = normalize(kernelDirection); + normalInfluence = dot(normal, kernelDirection); + //float weightedVariance = variance + normalInfluence * _NormalWeight; + pos = float2(i, j) + start[k]; + col = tex2Dlod(_MainTex, float4( + uv + float2(pos.x * _MainTex_TexelSize.x, pos.y * _MainTex_TexelSize.y), + 0., 0.)).rgb; + mean[k] += col; + sigma[k] += col * col; + } + } + } + + float sigma2; + + float n = pow(_Radius + 1, 2); + float min = 1; + + for (int l = 0; l < 4; l++) + { + mean[l] /= n; + sigma[l] = abs(sigma[l] / n - mean[l] * mean[l]); + sigma2 = sigma[l].r + sigma[l].g + sigma[l].b; + + if (sigma2 < min + normalInfluence * _NormalWeight) + { + min = sigma2; + color.rgb = mean[l].rgb; + } + } + + // blur + + //failsafe so we can use turn off the blur by setting the deviation to 0 + if (_StandardDeviation != 0) + { + float invAspect = _ScreenParams.y / _ScreenParams.x; + float sum = SAMPLES; + float sum2 = SAMPLES; + float3 col2; + //iterate over blur samples + for (float index = 0; index < SAMPLES; index++) + { + //get the offset of the sample + float offset = (index / (SAMPLES - 1) - 0.5) * _BlurSize; + //get uv coordinate of sample + float2 uv = i.uv + float2(0, offset); + //calculate the result of the gaussian function + float stDevSquared = _StandardDeviation * _StandardDeviation; + float gauss = (1 / sqrt(2 * PI * stDevSquared)) * pow( + E, -((offset * offset) / (2 * stDevSquared))); + //add result to sum + sum += gauss; + //multiply color with influence from gaussian function and add it to sum color + col += tex2D(_MainTex, uv) * gauss; + } + //divide the sum of values by the amount of samples + color.rgb = lerp(color.rgb, col / sum, 0.5); + + for (float index = 0; index < SAMPLES; index++) + { + //get the offset of the sample + float offset = (index / (SAMPLES - 1) - 0.5) * _BlurSize * invAspect; + //get uv coordinate of sample + float2 uv = i.uv + float2(offset, 0); + //calculate the result of the gaussian function + float stDevSquared = _StandardDeviation * _StandardDeviation; + float gauss = (1 / sqrt(2 * PI * stDevSquared)) * pow( + E, -((offset * offset) / (2 * stDevSquared))); + //add result to sum + sum2 += gauss; + //multiply color with influence from gaussian function and add it to sum color + col2 += tex2D(_MainTex, uv) * gauss; + } + //divide the sum of values by the amount of samples + color.rgb = lerp(color.rgb , col2 / sum2, 0.5); + } + + + float vignetteEffect = vignette(i.uv, _VignetteIntensity, _VignetteSmoothness); + color.rgb = color.rgb * vignetteEffect; + + return color; + } + ENDCG + } + } +} \ No newline at end of file diff --git a/Assets/Shaders/OilPainting/OilPainting.shader.meta b/Assets/Shaders/OilPainting/OilPainting.shader.meta new file mode 100644 index 000000000..ac9f15d4f --- /dev/null +++ b/Assets/Shaders/OilPainting/OilPainting.shader.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 92fecb803ac20af4aab71465faad523f +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + preprocessorOverride: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Shaders/OilPainting/README.md b/Assets/Shaders/OilPainting/README.md new file mode 100644 index 000000000..c57c07635 --- /dev/null +++ b/Assets/Shaders/OilPainting/README.md @@ -0,0 +1,2 @@ +# OilPainting + Oil painting post processing unity shader for built in and URP diff --git a/Assets/Shaders/OilPainting/README.md.meta b/Assets/Shaders/OilPainting/README.md.meta new file mode 100644 index 000000000..f871e0270 --- /dev/null +++ b/Assets/Shaders/OilPainting/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3cc2a2e4309376448ba607644d18d916 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Shaders/OilPainting/Unlit_Oil Painting.mat b/Assets/Shaders/OilPainting/Unlit_Oil Painting.mat new file mode 100644 index 000000000..f1d8a4a76 --- /dev/null +++ b/Assets/Shaders/OilPainting/Unlit_Oil Painting.mat @@ -0,0 +1,44 @@ +%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: Unlit_Oil Painting + m_Shader: {fileID: 4800000, guid: 92fecb803ac20af4aab71465faad523f, type: 3} + m_ValidKeywords: + - _SAMPLES_HIGH + m_InvalidKeywords: + - GAUSS + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalMap: + m_Texture: {fileID: 2800000, guid: 023c8550f7a88674fb7be5f5e728fb63, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _BlurSize: 0.021428572 + - _Gauss: 1 + - _NormalWeight: 10 + - _Radius: 10 + - _Samples: 2 + - _StandardDeviation: 0.0323 + - _VignetteIntensity: 0.24285714 + - _VignetteSmoothness: 0.72571427 + m_Colors: [] + m_BuildTextureStacks: [] diff --git a/Assets/Shaders/OilPainting/Unlit_Oil Painting.mat.meta b/Assets/Shaders/OilPainting/Unlit_Oil Painting.mat.meta new file mode 100644 index 000000000..c87d7db46 --- /dev/null +++ b/Assets/Shaders/OilPainting/Unlit_Oil Painting.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b70e4fc141adae1499fe1f5678ad1315 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Shaders/OilPainting/everytexture.com-stock-paint-texture-00018-normal-2048.jpg b/Assets/Shaders/OilPainting/everytexture.com-stock-paint-texture-00018-normal-2048.jpg new file mode 100644 index 000000000..23bf32e00 Binary files /dev/null and b/Assets/Shaders/OilPainting/everytexture.com-stock-paint-texture-00018-normal-2048.jpg differ diff --git a/Assets/Shaders/OilPainting/everytexture.com-stock-paint-texture-00018-normal-2048.jpg.meta b/Assets/Shaders/OilPainting/everytexture.com-stock-paint-texture-00018-normal-2048.jpg.meta new file mode 100644 index 000000000..770fa6d42 --- /dev/null +++ b/Assets/Shaders/OilPainting/everytexture.com-stock-paint-texture-00018-normal-2048.jpg.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 023c8550f7a88674fb7be5f5e728fb63 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Shaders/StandardMapped.shader b/Assets/Shaders/StandardMapped.shader new file mode 100644 index 000000000..ec256b71e --- /dev/null +++ b/Assets/Shaders/StandardMapped.shader @@ -0,0 +1,53 @@ +Shader "Custom/StandardMapped" +{ + Properties + { + _Color ("Color", Color) = (1,1,1,1) + _MainTex ("Albedo (RGB)", 2D) = "white" {} + _Glossiness ("Smoothness", Range(0,1)) = 0.5 + _Metallic ("Metallic", Range(0,1)) = 0.0 + } + SubShader + { + Tags { "RenderType"="Opaque" } + LOD 200 + + CGPROGRAM + // Physically based Standard lighting model, and enable shadows on all light types + #pragma surface surf Standard fullforwardshadows + + // Use shader model 3.0 target, to get nicer looking lighting + #pragma target 3.0 + + sampler2D _MainTex; + + struct Input + { + float2 uv_MainTex; + }; + + half _Glossiness; + half _Metallic; + fixed4 _Color; + + // Add instancing support for this shader. You need to check 'Enable Instancing' on materials that use the shader. + // See https://docs.unity3d.com/Manual/GPUInstancing.html for more information about instancing. + // #pragma instancing_options assumeuniformscaling + UNITY_INSTANCING_BUFFER_START(Props) + // put more per-instance properties here + UNITY_INSTANCING_BUFFER_END(Props) + + void surf (Input IN, inout SurfaceOutputStandard o) + { + // Albedo comes from a texture tinted by color + fixed4 c = tex2D (_MainTex, IN.uv_MainTex) * _Color; + o.Albedo = c.rgb; + // Metallic and smoothness come from slider variables + o.Metallic = _Metallic; + o.Smoothness = _Glossiness; + o.Alpha = c.a; + } + ENDCG + } + FallBack "Diffuse" +} diff --git a/Assets/Shaders/StandardMapped.shader.meta b/Assets/Shaders/StandardMapped.shader.meta new file mode 100644 index 000000000..dd742f566 --- /dev/null +++ b/Assets/Shaders/StandardMapped.shader.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: fc134ad1a02fcd040949946dea95b304 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + preprocessorOverride: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Wall.cs b/Assets/Wall.cs new file mode 100644 index 000000000..0411ff552 --- /dev/null +++ b/Assets/Wall.cs @@ -0,0 +1,18 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class Wall : MonoBehaviour +{ + // Start is called before the first frame update + void Start() + { + + } + + // Update is called once per frame + void Update() + { + + } +} diff --git a/Assets/Wall.cs.meta b/Assets/Wall.cs.meta new file mode 100644 index 000000000..6074f2023 --- /dev/null +++ b/Assets/Wall.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 14ce7d02c21a31847b1e247a9aa4c13d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing.meta b/Assets/X-PostProcessing.meta new file mode 100644 index 000000000..0f48e0c95 --- /dev/null +++ b/Assets/X-PostProcessing.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8c90e5575e949ac4bad5aa996e48d18e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Editor.meta b/Assets/X-PostProcessing/Editor.meta new file mode 100644 index 000000000..e158928ca --- /dev/null +++ b/Assets/X-PostProcessing/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 132b2459e0d85954bb19c420721c4e82 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Editor/XPostProcessingEditorUtility.cs b/Assets/X-PostProcessing/Editor/XPostProcessingEditorUtility.cs new file mode 100644 index 000000000..62ceb93b0 --- /dev/null +++ b/Assets/X-PostProcessing/Editor/XPostProcessingEditorUtility.cs @@ -0,0 +1,70 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEditor; +using UnityEditor.Rendering.PostProcessing; +using UnityEngine; + +public class XPostProcessingEditorUtility : Editor +{ + + #region Collape Hierarchy相关工具函数 + + + public static void Collapse(GameObject go, bool collapse) + { + if (go == null || go.transform == null) + { + return; + } + // bail out immediately if the go doesn't have children + if (go.transform.childCount == 0) return; + // get a reference to the hierarchy window + var hierarchy = GetFocusedWindow("Hierarchy"); + // select our go + SelectObject(go); + // create a new key event (RightArrow for collapsing, LeftArrow for folding) + var key = new Event { keyCode = collapse ? KeyCode.RightArrow : KeyCode.LeftArrow, type = EventType.KeyDown }; + // finally, send the window the event + hierarchy.SendEvent(key); + } + + public static void SelectObject(Object obj) + { + Selection.activeObject = obj; + } + public static EditorWindow GetFocusedWindow(string window) + { + FocusOnWindow(window); + return EditorWindow.focusedWindow; + } + public static void FocusOnWindow(string window) + { + EditorApplication.ExecuteMenuItem("Window/" + window); + } + + #endregion + + + + + public static readonly string DISPLAY_TITLE_PREFIX = "X-" ; + + public static string GetEnumName(SerializedParameterOverride prop) + { + return " (" + prop.value.enumDisplayNames[prop.value.intValue] + ")"; + } + + public static string GetEnumNameEX(SerializedParameterOverride prop) + { + return ((prop.overrideState.boolValue) ? " (" + prop.value.enumDisplayNames[prop.value.intValue] + ")" : string.Empty); + } + + [MenuItem("Windows/OpenFrameDebugger %F")] + public static void OpenFrameDebugger() + { + EditorApplication.ExecuteMenuItem("Window/Frame Debugger"); + } + + + +} diff --git a/Assets/X-PostProcessing/Editor/XPostProcessingEditorUtility.cs.meta b/Assets/X-PostProcessing/Editor/XPostProcessingEditorUtility.cs.meta new file mode 100644 index 000000000..518151b4c --- /dev/null +++ b/Assets/X-PostProcessing/Editor/XPostProcessingEditorUtility.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ab4b523203ae7f94cbbf28a7029bcdda +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects.meta b/Assets/X-PostProcessing/Effects.meta new file mode 100644 index 000000000..47b12b328 --- /dev/null +++ b/Assets/X-PostProcessing/Effects.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 460d47eae60aad142a39f314b948b344 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/AuroraVignette.meta b/Assets/X-PostProcessing/Effects/AuroraVignette.meta new file mode 100644 index 000000000..0f213acdb --- /dev/null +++ b/Assets/X-PostProcessing/Effects/AuroraVignette.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a8f91fb3d4cd4364e9a5b53e585c9155 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/AuroraVignette/AuroraVignette.cs b/Assets/X-PostProcessing/Effects/AuroraVignette/AuroraVignette.cs new file mode 100644 index 000000000..1308c724e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/AuroraVignette/AuroraVignette.cs @@ -0,0 +1,103 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(AuroraVignetteRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Vignette/AuroraVignette")] + public class AuroraVignette : PostProcessEffectSettings + { + [Range(0.0f, 1.0f)] + public FloatParameter vignetteArea = new FloatParameter { value = 0.8f }; + + [Range(0.0f, 1.0f)] + public FloatParameter vignetteSmothness = new FloatParameter { value = 0.5f }; + + [Range(0.0f, 1.0f)] + public FloatParameter vignetteFading = new FloatParameter { value = 1f }; + + [Range(0.1f, 1f)] + public FloatParameter colorChange = new FloatParameter { value = 0.1f }; + + + [Range(0.0f, 2.0f)] + public FloatParameter colorFactorR = new FloatParameter { value = 1.0f }; + + [Range(0.0f, 2.0f)] + public FloatParameter colorFactorG = new FloatParameter { value = 1.0f }; + + [Range(0.0f, 2.0f)] + public FloatParameter colorFactorB = new FloatParameter { value = 1.0f }; + + [Range(-2.0f, 2.0f)] + public FloatParameter flowSpeed = new FloatParameter { value = 1.0f }; + + + + } + + public sealed class AuroraVignetteRenderer : PostProcessEffectRenderer + { + private Shader shader; + private float TimeX = 1.0f; + private const string PROFILER_TAG = "X-AuroraVignette"; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/AuroraVignette"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int vignetteArea = Shader.PropertyToID("_VignetteArea"); + internal static readonly int vignetteSmothness = Shader.PropertyToID("_VignetteSmothness"); + internal static readonly int colorChange = Shader.PropertyToID("_ColorChange"); + internal static readonly int colorFactor = Shader.PropertyToID("_ColorFactor"); + internal static readonly int TimeX = Shader.PropertyToID("_TimeX"); + internal static readonly int vignetteFading = Shader.PropertyToID("_Fading"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + TimeX += Time.deltaTime; + if (TimeX > 100) + { + TimeX = 0; + } + + sheet.properties.SetFloat(ShaderIDs.vignetteArea, settings.vignetteArea); + sheet.properties.SetFloat(ShaderIDs.vignetteSmothness, settings.vignetteSmothness); + sheet.properties.SetFloat(ShaderIDs.colorChange, settings.colorChange * 10f); + sheet.properties.SetVector(ShaderIDs.colorFactor, new Vector3(settings.colorFactorR, settings.colorFactorG, settings.colorFactorB)); + sheet.properties.SetFloat(ShaderIDs.TimeX, TimeX * settings.flowSpeed); + sheet.properties.SetFloat(ShaderIDs.vignetteFading, settings.vignetteFading); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/AuroraVignette/AuroraVignette.cs.meta b/Assets/X-PostProcessing/Effects/AuroraVignette/AuroraVignette.cs.meta new file mode 100644 index 000000000..6bad2da93 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/AuroraVignette/AuroraVignette.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 5af098a6abaa43e41a2a97a9351f5957 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/AuroraVignette/Editor.meta b/Assets/X-PostProcessing/Effects/AuroraVignette/Editor.meta new file mode 100644 index 000000000..f7725936c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/AuroraVignette/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2adfefa1549f2d747bd0ccbddad303b6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/AuroraVignette/Editor/AuroraVignetteEditor.cs b/Assets/X-PostProcessing/Effects/AuroraVignette/Editor/AuroraVignetteEditor.cs new file mode 100644 index 000000000..967abb788 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/AuroraVignette/Editor/AuroraVignetteEditor.cs @@ -0,0 +1,71 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(AuroraVignette))] + public sealed class AuroraVignetteEditor : PostProcessEffectEditor + { + + SerializedParameterOverride vignetteArea; + SerializedParameterOverride vignetteSmothness; + SerializedParameterOverride vignetteFading; + SerializedParameterOverride colorChange; + SerializedParameterOverride colorFactorR; + SerializedParameterOverride colorFactorG; + SerializedParameterOverride colorFactorB; + SerializedParameterOverride flowSpeed; + + + public override void OnEnable() + { + vignetteArea = FindParameterOverride(x => x.vignetteArea); + vignetteSmothness = FindParameterOverride(x => x.vignetteSmothness); + vignetteFading = FindParameterOverride(x => x.vignetteFading); + colorChange = FindParameterOverride(x => x.colorChange); + colorFactorR = FindParameterOverride(x => x.colorFactorR); + colorFactorG = FindParameterOverride(x => x.colorFactorG); + colorFactorB = FindParameterOverride(x => x.colorFactorB); + flowSpeed = FindParameterOverride(x => x.flowSpeed); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Vignette"); + PropertyField(vignetteFading); + PropertyField(vignetteArea); + PropertyField(vignetteSmothness); + + EditorUtilities.DrawHeaderLabel("Speed"); + PropertyField(flowSpeed); + + EditorUtilities.DrawHeaderLabel("Color Adjustment"); + PropertyField(colorChange); + PropertyField(colorFactorR); + PropertyField(colorFactorG); + PropertyField(colorFactorB); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/AuroraVignette/Editor/AuroraVignetteEditor.cs.meta b/Assets/X-PostProcessing/Effects/AuroraVignette/Editor/AuroraVignetteEditor.cs.meta new file mode 100644 index 000000000..59515a2ec --- /dev/null +++ b/Assets/X-PostProcessing/Effects/AuroraVignette/Editor/AuroraVignetteEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 97c9a4be14619274cbd2468d65e0b1d3 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/AuroraVignette/README.md b/Assets/X-PostProcessing/Effects/AuroraVignette/README.md new file mode 100644 index 000000000..35670ec08 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/AuroraVignette/README.md @@ -0,0 +1,16 @@ + +# AuroraVignette + +## Source Code List +- [Shader Code](Shader/AuroraVignette.shader) +- [C# Code](AuroraVignette.cs) +- [Editor Code](Editor/AuroraVignetteEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/AuroraVignette/AuroraVignetteProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/AuroraVignette/AuroraVignette.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/AuroraVignette/AuroraVignette.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/AuroraVignette/README.md.meta b/Assets/X-PostProcessing/Effects/AuroraVignette/README.md.meta new file mode 100644 index 000000000..27ba2f7e2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/AuroraVignette/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b1760853c4cb0f44688c7129e00140c3 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/AuroraVignette/Shader.meta b/Assets/X-PostProcessing/Effects/AuroraVignette/Shader.meta new file mode 100644 index 000000000..c2fc947f9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/AuroraVignette/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c4419eb66e407464397106198c0e714c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/AuroraVignette/Shader/AuroraVignette.shader b/Assets/X-PostProcessing/Effects/AuroraVignette/Shader/AuroraVignette.shader new file mode 100644 index 000000000..bf36f8fef --- /dev/null +++ b/Assets/X-PostProcessing/Effects/AuroraVignette/Shader/AuroraVignette.shader @@ -0,0 +1,62 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/AuroraVignette" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half _VignetteArea; + uniform half _VignetteSmothness; + uniform half _ColorChange; + uniform half4 _Color; + uniform half _TimeX; + uniform half3 _ColorFactor; + uniform half _Fading; + + half4 Frag(VaryingsDefault i): SV_Target + { + float2 uv = i.texcoord; + float2 uv0 = uv - float2(0.5 + 0.5 * sin(1.4 * 6.28 * uv.x + 2.8 * _TimeX), 0.5); + float3 wave = float3(0.5 * (cos(sqrt(dot(uv0, uv0)) * 5.6) + 1.0), cos(4.62 * dot(uv, uv) + _TimeX), cos(distance(uv, float2(1.6 * cos(_TimeX * 2.0), 1.0 * sin(_TimeX * 1.7))) * 1.3)); + half waveFactor = dot(wave, _ColorFactor) / _ColorChange; + half vignetteIndensity = 1.0 - smoothstep(_VignetteArea, _VignetteArea - 0.05 - _VignetteSmothness, length(float2(0.5, 0.5) - uv)); + half3 AuroraColor = half3 + ( + _ColorFactor.r * 0.5 * (sin(1.28 * waveFactor + _TimeX * 3.45) + 1.0), + _ColorFactor.g * 0.5 * (sin(1.28 * waveFactor + _TimeX * 3.15) + 1.0), + _ColorFactor.b * 0.4 * (sin(1.28 * waveFactor + _TimeX * 1.26) + 1.0) + ); + half3 finalColor = lerp(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv).rgb, AuroraColor, vignetteIndensity * _Fading); + return half4(finalColor, 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/AuroraVignette/Shader/AuroraVignette.shader.meta b/Assets/X-PostProcessing/Effects/AuroraVignette/Shader/AuroraVignette.shader.meta new file mode 100644 index 000000000..6cf0bc63f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/AuroraVignette/Shader/AuroraVignette.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7de134a73c0f46849a4590aa389fcab2 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/BokehBlur.meta b/Assets/X-PostProcessing/Effects/BokehBlur.meta new file mode 100644 index 000000000..c27b3af1a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BokehBlur.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8fbdcb05f0ba11245914dc13d01ef05d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/BokehBlur/BokehBlur.cs b/Assets/X-PostProcessing/Effects/BokehBlur/BokehBlur.cs new file mode 100644 index 000000000..dfe344ad8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BokehBlur/BokehBlur.cs @@ -0,0 +1,87 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(BokehBlurRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/BokehBlur")] + public class BokehBlur : PostProcessEffectSettings + { + [Range(0f, 3f)] + public FloatParameter BlurRadius = new FloatParameter { value = 1f }; + + [Range(8, 128)] + public IntParameter Iteration = new IntParameter { value = 32 }; + + [Range(1, 10)] + public FloatParameter RTDownScaling = new FloatParameter { value = 2 }; + + } + + public sealed class BokehBlurRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-BokehBlur"; + private Shader shader; + private Vector4 mGoldenRot = new Vector4(); + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/BokehBlur"); + + // Precompute rotations + float c = Mathf.Cos(2.39996323f); + float s = Mathf.Sin(2.39996323f); + mGoldenRot.Set(c, s, -s, c); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int GoldenRot = Shader.PropertyToID("_GoldenRot"); + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int BufferRT1 = Shader.PropertyToID("_BufferRT1"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + int RTWidth = (int)(context.screenWidth / settings.RTDownScaling); + int RTHeight = (int)(context.screenHeight / settings.RTDownScaling); + cmd.GetTemporaryRT(ShaderIDs.BufferRT1, RTWidth, RTHeight, 0, FilterMode.Bilinear); + + // downsample screen copy into smaller RT + context.command.BlitFullscreenTriangle(context.source, ShaderIDs.BufferRT1); + + sheet.properties.SetVector(ShaderIDs.GoldenRot, mGoldenRot); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(settings.Iteration, settings.BlurRadius, 1f / context.width, 1f / context.height)); + + cmd.BlitFullscreenTriangle(ShaderIDs.BufferRT1, context.destination, sheet, 0); + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT1); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/BokehBlur/BokehBlur.cs.meta b/Assets/X-PostProcessing/Effects/BokehBlur/BokehBlur.cs.meta new file mode 100644 index 000000000..cb2e5326c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BokehBlur/BokehBlur.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 84ae5393ade3f4847ab851805bcf1777 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/BokehBlur/Editor.meta b/Assets/X-PostProcessing/Effects/BokehBlur/Editor.meta new file mode 100644 index 000000000..c9cc7b32e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BokehBlur/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0c950f1c0d9478f44a4e2fa94c2a01e1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/BokehBlur/Editor/BokehBlurEditor.cs b/Assets/X-PostProcessing/Effects/BokehBlur/Editor/BokehBlurEditor.cs new file mode 100644 index 000000000..b67f37f47 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BokehBlur/Editor/BokehBlurEditor.cs @@ -0,0 +1,51 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(BokehBlur))] + public sealed class BokehBlurEditor : PostProcessEffectEditor + { + + SerializedParameterOverride BlurRadius; + SerializedParameterOverride Iteration; + SerializedParameterOverride RTDownScaling; + + + public override void OnEnable() + { + BlurRadius = FindParameterOverride(x => x.BlurRadius); + Iteration = FindParameterOverride(x => x.Iteration); + RTDownScaling = FindParameterOverride(x => x.RTDownScaling); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(BlurRadius); + PropertyField(Iteration); + PropertyField(RTDownScaling); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/BokehBlur/Editor/BokehBlurEditor.cs.meta b/Assets/X-PostProcessing/Effects/BokehBlur/Editor/BokehBlurEditor.cs.meta new file mode 100644 index 000000000..2b25c047d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BokehBlur/Editor/BokehBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 3863883dc6dbf9f43a8c8cfe23b33ba4 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/BokehBlur/README.md b/Assets/X-PostProcessing/Effects/BokehBlur/README.md new file mode 100644 index 000000000..fc7007768 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BokehBlur/README.md @@ -0,0 +1,15 @@ + +# Bokeh Blur + +## Source Code List +- [Shader Code](Shader/BokehBlur.shader) +- [C# Code](BokehBlur.cs) +- [Editor Code](Editor/BokehBlurEditor.cs) + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/BokehBlur/BokehBlurProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/BokehBlur/BokehBlur.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/BokehBlur/BokehBlur.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/BokehBlur/README.md.meta b/Assets/X-PostProcessing/Effects/BokehBlur/README.md.meta new file mode 100644 index 000000000..426c57286 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BokehBlur/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 574ee3dc98fb922468f659240a7f45fc +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/BokehBlur/Shader.meta b/Assets/X-PostProcessing/Effects/BokehBlur/Shader.meta new file mode 100644 index 000000000..7887971a6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BokehBlur/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e7b572c0a276b454a966f54b6343e8e9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/BokehBlur/Shader/BokehBlur.shader b/Assets/X-PostProcessing/Effects/BokehBlur/Shader/BokehBlur.shader new file mode 100644 index 000000000..bd86a1f75 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BokehBlur/Shader/BokehBlur.shader @@ -0,0 +1,71 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +// reference : https://www.shadertoy.com/view/4d2Xzw + +Shader "Hidden/X-PostProcessing/BokehBlur" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half4 _GoldenRot; + half4 _Params; + + #define _Iteration _Params.x + #define _Radius _Params.y + #define _PixelSize _Params.zw + + half4 BokehBlur(VaryingsDefault i) + { + half2x2 rot = half2x2(_GoldenRot); + half4 accumulator = 0.0; + half4 divisor = 0.0; + + half r = 1.0; + half2 angle = half2(0.0, _Radius); + + for (int j = 0; j < _Iteration; j++) + { + r += 1.0 / r; + angle = mul(rot, angle); + half4 bokeh = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(i.texcoord + _PixelSize * (r - 1.0) * angle)); + accumulator += bokeh * bokeh; + divisor += bokeh; + } + return accumulator / divisor; + } + + half4 Frag(VaryingsDefault i): SV_Target + { + return BokehBlur(i); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/BokehBlur/Shader/BokehBlur.shader.meta b/Assets/X-PostProcessing/Effects/BokehBlur/Shader/BokehBlur.shader.meta new file mode 100644 index 000000000..a73102968 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BokehBlur/Shader/BokehBlur.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9800d8b6c0e16c34d9b7b55758a26141 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/BoxBlur.meta b/Assets/X-PostProcessing/Effects/BoxBlur.meta new file mode 100644 index 000000000..8b00139df --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BoxBlur.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 65833bbdfbd307448a2c235bdac8fd33 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/BoxBlur/BoxBlur.cs b/Assets/X-PostProcessing/Effects/BoxBlur/BoxBlur.cs new file mode 100644 index 000000000..ebfb20d74 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BoxBlur/BoxBlur.cs @@ -0,0 +1,101 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(BoxBlurRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/BoxBlur")] + public class BoxBlur : PostProcessEffectSettings + { + [Range(0f, 5f)] + public FloatParameter BlurRadius = new FloatParameter { value = 3f }; + + [Range(1, 20)] + public IntParameter Iteration = new IntParameter { value = 6 }; + + [Range(1, 8)] + public FloatParameter RTDownScaling = new FloatParameter { value = 2 }; + } + + public sealed class BoxBlurRenderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-BoxBlur"; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/BoxBlur"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int BlurRadius = Shader.PropertyToID("_BlurOffset"); + internal static readonly int BufferRT1 = Shader.PropertyToID("_BufferRT1"); + internal static readonly int BufferRT2 = Shader.PropertyToID("_BufferRT2"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + + cmd.BeginSample(PROFILER_TAG); + + int RTWidth = (int) (context.screenWidth / settings.RTDownScaling); + int RTHeight = (int) (context.screenHeight / settings.RTDownScaling); + cmd.GetTemporaryRT(ShaderIDs.BufferRT1, RTWidth, RTHeight, 0, FilterMode.Bilinear); + cmd.GetTemporaryRT(ShaderIDs.BufferRT2, RTWidth, RTHeight, 0, FilterMode.Bilinear); + + // downsample screen copy into smaller RT + context.command.BlitFullscreenTriangle(context.source, ShaderIDs.BufferRT1); + + + for (int i = 0; i < settings.Iteration; i++) + { + if (settings.Iteration > 20) + { + return; + } + + Vector4 BlurRadius = new Vector4(settings.BlurRadius / (float)context.screenWidth, settings.BlurRadius / (float)context.screenHeight, 0, 0); + // RT1 -> RT2 + sheet.properties.SetVector(ShaderIDs.BlurRadius, BlurRadius); + context.command.BlitFullscreenTriangle(ShaderIDs.BufferRT1, ShaderIDs.BufferRT2, sheet, 0); + + // RT2 -> RT1 + sheet.properties.SetVector(ShaderIDs.BlurRadius, BlurRadius); + context.command.BlitFullscreenTriangle(ShaderIDs.BufferRT2, ShaderIDs.BufferRT1, sheet, 0); + } + + // Render blurred texture in blend pass + cmd.BlitFullscreenTriangle(ShaderIDs.BufferRT1, context.destination, sheet, 1); + + // release + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT1); + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT2); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/BoxBlur/BoxBlur.cs.meta b/Assets/X-PostProcessing/Effects/BoxBlur/BoxBlur.cs.meta new file mode 100644 index 000000000..ac44a01f2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BoxBlur/BoxBlur.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 0ad87ed76c4e75846a28e3a301084ed7 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/BoxBlur/Editor.meta b/Assets/X-PostProcessing/Effects/BoxBlur/Editor.meta new file mode 100644 index 000000000..e33e86329 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BoxBlur/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c2753ddd19315da46bc8ee29381bf046 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/BoxBlur/Editor/BoxBlurEditor.cs b/Assets/X-PostProcessing/Effects/BoxBlur/Editor/BoxBlurEditor.cs new file mode 100644 index 000000000..8040e828c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BoxBlur/Editor/BoxBlurEditor.cs @@ -0,0 +1,50 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(BoxBlur))] + public sealed class BoxBlurEditor : PostProcessEffectEditor + { + + SerializedParameterOverride BlurRadius; + SerializedParameterOverride Iteration; + SerializedParameterOverride RTDownScaling; + + public override void OnEnable() + { + BlurRadius = FindParameterOverride(x => x.BlurRadius); + Iteration = FindParameterOverride(x => x.Iteration); + RTDownScaling = FindParameterOverride(x => x.RTDownScaling); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(BlurRadius); + PropertyField(Iteration); + PropertyField(RTDownScaling); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/BoxBlur/Editor/BoxBlurEditor.cs.meta b/Assets/X-PostProcessing/Effects/BoxBlur/Editor/BoxBlurEditor.cs.meta new file mode 100644 index 000000000..fa011a77c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BoxBlur/Editor/BoxBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 92805384c671b88469299e1fecc6ec49 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/BoxBlur/README.md b/Assets/X-PostProcessing/Effects/BoxBlur/README.md new file mode 100644 index 000000000..abca52c3b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BoxBlur/README.md @@ -0,0 +1,16 @@ + +# Box Blur + +## Source Code List +- [Shader Code](Shader/BoxBlur.shader) +- [C# Code](BoxBlur.cs) +- [Editor Code](Editor/BoxBlurEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/BoxBlur/BoxBlurProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/BoxBlur/BoxBlur.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/BoxBlur/BoxBlur.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/BoxBlur/README.md.meta b/Assets/X-PostProcessing/Effects/BoxBlur/README.md.meta new file mode 100644 index 000000000..db08d01bc --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BoxBlur/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 07f92ac6ceb9f52428797c8d5e3763ab +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/BoxBlur/Shader.meta b/Assets/X-PostProcessing/Effects/BoxBlur/Shader.meta new file mode 100644 index 000000000..51bc94db0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BoxBlur/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e0ac6666a22b374cb3bf0370eaabe14 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/BoxBlur/Shader/BoxBlur.shader b/Assets/X-PostProcessing/Effects/BoxBlur/Shader/BoxBlur.shader new file mode 100644 index 000000000..3a5ac0769 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BoxBlur/Shader/BoxBlur.shader @@ -0,0 +1,74 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/BoxBlur" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half4 _BlurOffset; + + half4 BoxFilter_4Tap(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize) + { + float4 d = texelSize.xyxy * float4(-1.0, -1.0, 1.0, 1.0); + + half4 s = 0; + s = SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.xy) * 0.25h; // 1 MUL + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.zy) * 0.25h; // 1 MAD + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.xw) * 0.25h; // 1 MAD + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.zw) * 0.25h; // 1 MAD + + return s; + } + + + float4 FragBoxBlur(VaryingsDefault i): SV_Target + { + return BoxFilter_4Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, _BlurOffset.xy).rgba; + } + + float4 FragCombine(VaryingsDefault i): SV_Target + { + return SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragBoxBlur + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragCombine + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/BoxBlur/Shader/BoxBlur.shader.meta b/Assets/X-PostProcessing/Effects/BoxBlur/Shader/BoxBlur.shader.meta new file mode 100644 index 000000000..1617ce06f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/BoxBlur/Shader/BoxBlur.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8aa214df2a97e0849925b069cedda597 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass.meta new file mode 100644 index 000000000..70355f64c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a722036b2f742e34aba6d68f784066aa +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/ColorAdjustmentBleachBypass.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/ColorAdjustmentBleachBypass.cs new file mode 100644 index 000000000..6c0d1b8db --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/ColorAdjustmentBleachBypass.cs @@ -0,0 +1,64 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(ColorAdjustmentBleachBypassRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/ColorAdjustment/BleachBypass")] + public class ColorAdjustmentBleachBypass : PostProcessEffectSettings + { + + [Range(0.0f, 1.0f)] + public FloatParameter Indensity = new FloatParameter { value = 0.5f }; + + } + + public sealed class ColorAdjustmentBleachBypassRenderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-ColorAdjustmentBleachBypass"; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/ColorAdjustment/BleachBypass"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Indensity = Shader.PropertyToID("_Indensity"); + } + + public override void Render(PostProcessRenderContext context) + { + context.command.BeginSample(PROFILER_TAG); + PropertySheet sheet = context.propertySheets.Get(shader); + + + sheet.properties.SetFloat(ShaderIDs.Indensity, settings.Indensity); + + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + context.command.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/ColorAdjustmentBleachBypass.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/ColorAdjustmentBleachBypass.cs.meta new file mode 100644 index 000000000..fc4692977 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/ColorAdjustmentBleachBypass.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2638595d43b44334d88d398c2ff5a6ad +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Editor.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Editor.meta new file mode 100644 index 000000000..7342ac8ac --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b094988c3490b184d81f36b9a9c6f650 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Editor/ColorAdjustmentBleachBypassEditor.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Editor/ColorAdjustmentBleachBypassEditor.cs new file mode 100644 index 000000000..f2d6da9b1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Editor/ColorAdjustmentBleachBypassEditor.cs @@ -0,0 +1,45 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(ColorAdjustmentBleachBypass))] + public sealed class ColorAdjustmentBleachBypassEditor : PostProcessEffectEditor + { + + SerializedParameterOverride Indensity; + + + public override void OnEnable() + { + Indensity = FindParameterOverride(x => x.Indensity); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(Indensity); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Editor/ColorAdjustmentBleachBypassEditor.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Editor/ColorAdjustmentBleachBypassEditor.cs.meta new file mode 100644 index 000000000..78ae0acc2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Editor/ColorAdjustmentBleachBypassEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 88278f3ae9f415b4aa38c9097dafee28 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/README.md b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/README.md new file mode 100644 index 000000000..5e41c25fa --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/README.md @@ -0,0 +1,16 @@ + +# ColorAdjustmentBleachBypass + +## Source Code List +- [Shader Code](Shader/ColorAdjustmentBleachBypass.shader) +- [C# Code](ColorAdjustmentBleachBypass.cs) +- [Editor Code](Editor/ColorAdjustmentBleachBypassEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentBleachBypass/ColorAdjustmentBleachBypassProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentBleachBypass/ColorAdjustmentBleachBypass.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentBleachBypass/ColorAdjustmentBleachBypass.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/README.md.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/README.md.meta new file mode 100644 index 000000000..ff82af614 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b335087f30a281342936cc1b98c88907 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Shader.meta new file mode 100644 index 000000000..2d37af67e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d7038e813b5a0c74c81334e1824bced3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Shader/ColorAdjustmentBleachBypass.shader b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Shader/ColorAdjustmentBleachBypass.shader new file mode 100644 index 000000000..1a9717bd8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Shader/ColorAdjustmentBleachBypass.shader @@ -0,0 +1,58 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/ColorAdjustment/BleachBypass" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half _Indensity; + + half luminance(half3 color) + { + return dot(color, half3(0.222, 0.707, 0.071)); + } + + //reference : https://developer.download.nvidia.com/shaderlibrary/webpages/shader_library.html + half4 Frag(VaryingsDefault i): SV_Target + { + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + half lum = luminance(color.rgb); + half3 blend = half3(lum, lum, lum); + half L = min(1.0, max(0.0, 10.0 * (lum - 0.45))); + half3 result1 = 2.0 * color.rgb * blend; + half3 result2 = 1.0 - 2.0 * (1.0 - blend) * (1.0 - color.rgb); + half3 newColor = lerp(result1, result2, L); + + return lerp(color, half4(newColor, color.a), _Indensity); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Shader/ColorAdjustmentBleachBypass.shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Shader/ColorAdjustmentBleachBypass.shader.meta new file mode 100644 index 000000000..a4ab55454 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Shader/ColorAdjustmentBleachBypass.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bbafedd278d3c9d4fb9d0d5a83ee1ccd +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness.meta new file mode 100644 index 000000000..996a4871c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8188b11e914929748ae65b9d47a46aab +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/ColorAdjustmentBrightness.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/ColorAdjustmentBrightness.cs new file mode 100644 index 000000000..b6f3cc41a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/ColorAdjustmentBrightness.cs @@ -0,0 +1,62 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(ColorAdjustmentBrightnessRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/ColorAdjustment/Brightness")] + public class ColorAdjustmentBrightness : PostProcessEffectSettings + { + [Range(-0.9f ,1f)] + public FloatParameter brightness = new FloatParameter { value = 0f }; + } + + public sealed class ColorAdjustmentBrightnessRenderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-ColorAdjustmentBrightness"; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/ColorAdjustment/Brightness"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int brightness = Shader.PropertyToID("_Brightness"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetFloat(ShaderIDs.brightness, settings.brightness + 1f); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/ColorAdjustmentBrightness.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/ColorAdjustmentBrightness.cs.meta new file mode 100644 index 000000000..e8f356735 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/ColorAdjustmentBrightness.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ccd02f4c3282cc343bb7d404d538e601 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Editor.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Editor.meta new file mode 100644 index 000000000..0bc9593e1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 482859c18c1521e4eb64d886bde30472 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Editor/ColorAdjustmentBrightnessEditor.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Editor/ColorAdjustmentBrightnessEditor.cs new file mode 100644 index 000000000..d4b7d8514 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Editor/ColorAdjustmentBrightnessEditor.cs @@ -0,0 +1,45 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(ColorAdjustmentBrightness))] + public sealed class ColorAdjustmentBrightnessEditor : PostProcessEffectEditor + { + + SerializedParameterOverride brightness; + + + public override void OnEnable() + { + brightness = FindParameterOverride(x => x.brightness); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(brightness); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Editor/ColorAdjustmentBrightnessEditor.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Editor/ColorAdjustmentBrightnessEditor.cs.meta new file mode 100644 index 000000000..548bcc5b1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Editor/ColorAdjustmentBrightnessEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 020cd58b993afe444a5c0256e9fac0c2 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/README.md b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/README.md new file mode 100644 index 000000000..49a36b9eb --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/README.md @@ -0,0 +1,16 @@ + +# ColorAdjustmentBrightness + +## Source Code List +- [Shader Code](Shader/ColorAdjustmentBrightness.shader) +- [C# Code](ColorAdjustmentBrightness.cs) +- [Editor Code](Editor/ColorAdjustmentBrightnessEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentBrightness/ColorAdjustmentBrightnessProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentBrightness/ColorAdjustmentBrightness.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentBrightness/ColorAdjustmentBrightness.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/README.md.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/README.md.meta new file mode 100644 index 000000000..47318c9eb --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8ec6fed4122724a49a28933868454742 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Shader.meta new file mode 100644 index 000000000..cd192a8d0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1e75acac72dae804baa6d6b827bde3ab +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Shader/ColorAdjustmentBrightness.shader b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Shader/ColorAdjustmentBrightness.shader new file mode 100644 index 000000000..9d4a467c9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Shader/ColorAdjustmentBrightness.shader @@ -0,0 +1,41 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/ColorAdjustment/Brightness" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half _Brightness; + + + half4 Frag(VaryingsDefault i) : SV_Target + { + + half3 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord).rgb; + return half4(sceneColor * _Brightness, 1.0); + } + + ENDHLSL + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Shader/ColorAdjustmentBrightness.shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Shader/ColorAdjustmentBrightness.shader.meta new file mode 100644 index 000000000..9e3adb3f0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Shader/ColorAdjustmentBrightness.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 72af43b5091ce9848bd00bede713710a +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast.meta new file mode 100644 index 000000000..da7dfff16 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c5ea544ae25ed1646aa49d8b269196d0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/ColorAdjustmentContrast.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/ColorAdjustmentContrast.cs new file mode 100644 index 000000000..3fd534931 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/ColorAdjustmentContrast.cs @@ -0,0 +1,59 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(ColorAdjustmentContrastRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/ColorAdjustment/Contrast")] + public class ColorAdjustmentContrast : PostProcessEffectSettings + { + + [Range(-1.0f, 2.0f)] + public FloatParameter contrast = new FloatParameter { value = 0.2f }; + + } + + public sealed class ColorAdjustmentContrastRenderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-ColorAdjustmentContrast"; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/ColorAdjustment/Contrast"); + } + + public override void Release() + { + base.Release(); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetFloat("_Contrast", settings.contrast + 1); + + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/ColorAdjustmentContrast.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/ColorAdjustmentContrast.cs.meta new file mode 100644 index 000000000..d7c90e227 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/ColorAdjustmentContrast.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: a053027361353e04db3a200d1a0eb315 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Editor.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Editor.meta new file mode 100644 index 000000000..487ee599b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ba7a9f7f5e6cd3d41b90fa84db84ce05 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Editor/ColorAdjustmentContrastEditor.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Editor/ColorAdjustmentContrastEditor.cs new file mode 100644 index 000000000..5486bd2df --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Editor/ColorAdjustmentContrastEditor.cs @@ -0,0 +1,46 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(ColorAdjustmentContrast))] + public sealed class ColorAdjustmentContrastEditor : PostProcessEffectEditor + { + + SerializedParameterOverride contrast; + + + public override void OnEnable() + { + contrast = FindParameterOverride(x => x.contrast); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(contrast); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Editor/ColorAdjustmentContrastEditor.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Editor/ColorAdjustmentContrastEditor.cs.meta new file mode 100644 index 000000000..e7639211d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Editor/ColorAdjustmentContrastEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 705035905280deb4f85779897b91cc2a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/README.md b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/README.md new file mode 100644 index 000000000..dededfde5 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/README.md @@ -0,0 +1,16 @@ + +# ColorAdjustmentContrast + +## Source Code List +- [Shader Code](Shader/ColorAdjustmentContrast.shader) +- [C# Code](ColorAdjustmentContrast.cs) +- [Editor Code](Editor/ColorAdjustmentContrastEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentContrast/ColorAdjustmentContrastProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentContrast/ColorAdjustmentContrast.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentContrast/ColorAdjustmentContrast.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/README.md.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/README.md.meta new file mode 100644 index 000000000..be873dcf0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b04971144e3e1b64e990c00081da3571 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Shader.meta new file mode 100644 index 000000000..ab8161d5f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 278b4bee710370248b36817a27e2e372 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Shader/ColorAdjustmentContrast.shader b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Shader/ColorAdjustmentContrast.shader new file mode 100644 index 000000000..eaea9bb5b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Shader/ColorAdjustmentContrast.shader @@ -0,0 +1,53 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/ColorAdjustment/Contrast" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + uniform half _Contrast; + + + half3 ColorAdjustment_Contrast(half3 In, half Contrast) + { + half midpoint = 0.21763h;//pow(0.5, 2.2); + half3 Out = (In - midpoint) * Contrast + midpoint; + return Out; + } + + half4 Frag(VaryingsDefault i) : SV_Target + { + + half4 finalColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + finalColor.rgb = ColorAdjustment_Contrast(finalColor.rgb , _Contrast); + + return finalColor; + + } + + ENDHLSL + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Shader/ColorAdjustmentContrast.shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Shader/ColorAdjustmentContrast.shader.meta new file mode 100644 index 000000000..3a8f87371 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Shader/ColorAdjustmentContrast.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dcad391fdc4ec1c4ca95088ca579f19a +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2.meta new file mode 100644 index 000000000..55d9de7b2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 130768225b8332546abf36bbcc642352 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/ColorAdjustmentContrastV2.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/ColorAdjustmentContrastV2.cs new file mode 100644 index 000000000..c42cc344c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/ColorAdjustmentContrastV2.cs @@ -0,0 +1,68 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(ColorAdjustmentContrastV2Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/ColorAdjustment/ContrastV2")] + public class ColorAdjustmentContrastV2 : PostProcessEffectSettings + { + + [Range(-1.0f, 5.0f)] + public FloatParameter Contrast = new FloatParameter { value = 0.2f }; + + [Range(-1.0f, 1.0f)] + public FloatParameter ContrastFactorR = new FloatParameter { value = 0.0f }; + + [Range(-1.0f, 1.0f)] + public FloatParameter ContrastFactorG = new FloatParameter { value = 0.0f }; + + [Range(-1.0f, 1.0f)] + public FloatParameter ContrastFactorB = new FloatParameter { value = 0.0f }; + + } + + public sealed class ColorAdjustmentContrastV2Renderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-ColorAdjustmentContrastV2"; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/ColorAdjustment/ContrastV2"); + } + + public override void Release() + { + base.Release(); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetFloat("_Contrast", settings.Contrast + 1); + sheet.properties.SetVector("_ContrastFactorRGB", new Vector3(settings.ContrastFactorR, settings.ContrastFactorG , settings.ContrastFactorB)); + + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/ColorAdjustmentContrastV2.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/ColorAdjustmentContrastV2.cs.meta new file mode 100644 index 000000000..42e7aff2a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/ColorAdjustmentContrastV2.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 104ed5ad0e6ca124fab5c8515b49855d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Editor.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Editor.meta new file mode 100644 index 000000000..4f1c19109 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bbf32e87d53725849b516b33b324f922 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Editor/ColorAdjustmentContrastV2Editor.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Editor/ColorAdjustmentContrastV2Editor.cs new file mode 100644 index 000000000..4e3db176f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Editor/ColorAdjustmentContrastV2Editor.cs @@ -0,0 +1,60 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(ColorAdjustmentContrastV2))] + public sealed class ColorAdjustmentContrastV2Editor : PostProcessEffectEditor + { + + SerializedParameterOverride Contrast; + SerializedParameterOverride ContrastFactorR; + SerializedParameterOverride ContrastFactorG; + SerializedParameterOverride ContrastFactorB; + + + public override void OnEnable() + { + + Contrast = FindParameterOverride(x => x.Contrast); + ContrastFactorR = FindParameterOverride(x => x.ContrastFactorR); + ContrastFactorG = FindParameterOverride(x => x.ContrastFactorG); + ContrastFactorB = FindParameterOverride(x => x.ContrastFactorB); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(Contrast); + + EditorUtilities.DrawHeaderLabel("RGB Channel"); + + PropertyField(ContrastFactorR); + PropertyField(ContrastFactorG); + PropertyField(ContrastFactorB); + + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Editor/ColorAdjustmentContrastV2Editor.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Editor/ColorAdjustmentContrastV2Editor.cs.meta new file mode 100644 index 000000000..5b1f57140 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Editor/ColorAdjustmentContrastV2Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: aee52c2d6a502e0469af691adaee766f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/README.md b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/README.md new file mode 100644 index 000000000..14390abe8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/README.md @@ -0,0 +1,16 @@ + +# ColorAdjustmentContrastV2 + +## Source Code List +- [Shader Code](Shader/ColorAdjustmentContrastV2.shader) +- [C# Code](ColorAdjustmentContrastV2.cs) +- [Editor Code](Editor/ColorAdjustmentContrastV2Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentContrastV2/ColorAdjustmentContrastV2Property.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentContrastV2/ColorAdjustmentContrastV2.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentContrastV2/ColorAdjustmentContrastV2.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/README.md.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/README.md.meta new file mode 100644 index 000000000..a4455f49d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c3cc72efd61563a45b743bfe2742edf1 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Shader.meta new file mode 100644 index 000000000..b36a7765d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d70343f88a6557f4894708cc80d76797 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Shader/ColorAdjustmentContrastV2.shader b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Shader/ColorAdjustmentContrastV2.shader new file mode 100644 index 000000000..7214cdecd --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Shader/ColorAdjustmentContrastV2.shader @@ -0,0 +1,51 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/ColorAdjustment/ContrastV2" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + uniform half _Contrast; + uniform half3 _ContrastFactorRGB; + + half3 ColorAdjustment_Contrast_V2(float3 In, half3 ContrastFactor, float Contrast) + { + half3 Out = (In - ContrastFactor) * Contrast + ContrastFactor; + return Out; + } + + half4 Frag(VaryingsDefault i) : SV_Target + { + + half4 finalColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + finalColor.rgb = ColorAdjustment_Contrast_V2(finalColor.rgb , _ContrastFactorRGB,_Contrast); + + return finalColor; + } + + ENDHLSL + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Shader/ColorAdjustmentContrastV2.shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Shader/ColorAdjustmentContrastV2.shader.meta new file mode 100644 index 000000000..eacc28be3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Shader/ColorAdjustmentContrastV2.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4927ffb2887aa1f4f903af98e6c634e2 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3.meta new file mode 100644 index 000000000..e5b8866fb --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9900223ed74486748be34917b69043ab +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/ColorAdjustmentContrastV3.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/ColorAdjustmentContrastV3.cs new file mode 100644 index 000000000..548d19ac7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/ColorAdjustmentContrastV3.cs @@ -0,0 +1,61 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(ColorAdjustmentContrastV3Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/ColorAdjustment/ContrastV3")] + public class ColorAdjustmentContrastV3 : PostProcessEffectSettings + { + + + [DisplayName("Contrast Wheel"),ColorWheel(ColorWheelAttribute.Mode.Contrast)] + public Vector4Parameter contrast = new Vector4Parameter { value = new Vector4(1f, 1f, 1f, -0.1f) }; + } + + public sealed class ColorAdjustmentContrastV3Renderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-ColorAdjustmentContrastV3"; + + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/ColorAdjustment/ContrastV3"); + } + + public override void Release() + { + base.Release(); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + + sheet.properties.SetVector("_Contrast", settings.contrast); + + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/ColorAdjustmentContrastV3.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/ColorAdjustmentContrastV3.cs.meta new file mode 100644 index 000000000..ae0c6008b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/ColorAdjustmentContrastV3.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e5d3b86966fb6624497fe2c2495da9a3 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Editor.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Editor.meta new file mode 100644 index 000000000..39c273ffd --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 06bd6cdd028cdec4aa6bb7e4037d12e3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Editor/ColorAdjustmentContrastV3Editor.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Editor/ColorAdjustmentContrastV3Editor.cs new file mode 100644 index 000000000..47f7a0ff1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Editor/ColorAdjustmentContrastV3Editor.cs @@ -0,0 +1,50 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(ColorAdjustmentContrastV3))] + public sealed class ColorAdjustmentContrastV3Editor : PostProcessEffectEditor + { + + SerializedParameterOverride contrast; + + + public override void OnEnable() + { + contrast = FindParameterOverride(x => x.contrast); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + using (new EditorGUILayout.HorizontalScope()) + { + //GUILayout.Space(100f); + PropertyField(contrast); + GUILayout.Space(100f); + } + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Editor/ColorAdjustmentContrastV3Editor.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Editor/ColorAdjustmentContrastV3Editor.cs.meta new file mode 100644 index 000000000..902403ace --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Editor/ColorAdjustmentContrastV3Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2667bce5bcaac074899d5c8b7e0720ce +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/README.md b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/README.md new file mode 100644 index 000000000..361a71bbf --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/README.md @@ -0,0 +1,16 @@ + +# ColorAdjustmentContrastV3 + +## Source Code List +- [Shader Code](Shader/ColorAdjustmentContrastV3.shader) +- [C# Code](ColorAdjustmentContrastV3.cs) +- [Editor Code](Editor/ColorAdjustmentContrastV3Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentContrastV3/ColorAdjustmentContrastV3Property.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentContrastV3/ColorAdjustmentContrastV3.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentContrastV3/ColorAdjustmentContrastV3.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/README.md.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/README.md.meta new file mode 100644 index 000000000..f254a244e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b5d25855fa2984c4ab6ec023bd87703b +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Shader.meta new file mode 100644 index 000000000..1b71d9f50 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b48a79b95216a647b6f97775177eb98 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Shader/ColorAdjustmentContrastV3.shader b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Shader/ColorAdjustmentContrastV3.shader new file mode 100644 index 000000000..f916b7f45 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Shader/ColorAdjustmentContrastV3.shader @@ -0,0 +1,49 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/ColorAdjustment/ContrastV3" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + uniform half4 _Contrast; + + half3 ColorAdjustment_Contrast_V3(float3 In, half3 ContrastFactor, float Contrast) + { + half3 Out = (In - ContrastFactor) * Contrast + ContrastFactor; + return Out; + } + + half4 Frag(VaryingsDefault i) : SV_Target + { + + half4 finalColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + finalColor.rgb = ColorAdjustment_Contrast_V3(finalColor.rgb , half3(_Contrast.x, _Contrast.y, _Contrast.z),1- (_Contrast.w )); + return finalColor; + } + + ENDHLSL + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Shader/ColorAdjustmentContrastV3.shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Shader/ColorAdjustmentContrastV3.shader.meta new file mode 100644 index 000000000..50654d98e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Shader/ColorAdjustmentContrastV3.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c066218fdb9bbdc4aa87233e51731ed4 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentHue.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue.meta new file mode 100644 index 000000000..7eb5b5c5c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e75cf712d693331479a21b7364750771 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/ColorAdjustmentHue.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/ColorAdjustmentHue.cs new file mode 100644 index 000000000..858650ba7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/ColorAdjustmentHue.cs @@ -0,0 +1,59 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(ColorAdjustmentHueRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/ColorAdjustment/Hue")] + public class ColorAdjustmentHue : PostProcessEffectSettings + { + + [Range(-180.0f, 180.0f)] + public FloatParameter HueDegree = new FloatParameter { value = 20f }; + } + + public sealed class ColorAdjustmentHueRenderer : PostProcessEffectRenderer + { + private Shader shader; + + private const string PROFILER_TAG = "X-ColorAdjustmentHue"; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/ColorAdjustment/Hue"); + } + + public override void Release() + { + base.Release(); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetFloat("_HueDegree", settings.HueDegree); + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/ColorAdjustmentHue.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/ColorAdjustmentHue.cs.meta new file mode 100644 index 000000000..bad9d7561 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/ColorAdjustmentHue.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 323a24a5eeee79d4a8bc92be48fd79bc +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Editor.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Editor.meta new file mode 100644 index 000000000..e7c9c8524 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b7b6dbf9b22a3704ea99d049ea2d46ce +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Editor/ColorAdjustmentHueEditor.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Editor/ColorAdjustmentHueEditor.cs new file mode 100644 index 000000000..9b8912701 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Editor/ColorAdjustmentHueEditor.cs @@ -0,0 +1,45 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(ColorAdjustmentHue))] + public sealed class ColorAdjustmentHueEditor : PostProcessEffectEditor + { + + SerializedParameterOverride HueDegree; + + + public override void OnEnable() + { + HueDegree = FindParameterOverride(x => x.HueDegree); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(HueDegree); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Editor/ColorAdjustmentHueEditor.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Editor/ColorAdjustmentHueEditor.cs.meta new file mode 100644 index 000000000..c306b57c5 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Editor/ColorAdjustmentHueEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d96de24c28de9b64abe757c040133f4a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/README.md b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/README.md new file mode 100644 index 000000000..da1066c97 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/README.md @@ -0,0 +1,16 @@ + +# ColorAdjustmentHue + +## Source Code List +- [Shader Code](Shader/ColorAdjustmentHue.shader) +- [C# Code](ColorAdjustmentHue.cs) +- [Editor Code](Editor/ColorAdjustmentHueEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentHue/ColorAdjustmentHueProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentHue/ColorAdjustmentHue.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentHue/ColorAdjustmentHue.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/README.md.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/README.md.meta new file mode 100644 index 000000000..cc2edeba3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d2b4c42a398b8514d9255bd19a9d5ca0 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Shader.meta new file mode 100644 index 000000000..6237578df --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b290ca852a9b1044e855ada67a94cb95 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Shader/ColorAdjustmentHue.shader b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Shader/ColorAdjustmentHue.shader new file mode 100644 index 000000000..87b0adc73 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Shader/ColorAdjustmentHue.shader @@ -0,0 +1,74 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/ColorAdjustment/Hue" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + + uniform half _HueDegree; + + + half3 Hue_Degree(float3 In, float Offset) + { + float4 K = float4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); + float4 P = lerp(float4(In.bg, K.wz), float4(In.gb, K.xy), step(In.b, In.g)); + float4 Q = lerp(float4(P.xyw, In.r), float4(In.r, P.yzx), step(P.x, In.r)); + float D = Q.x - min(Q.w, Q.y); + float E = 1e-10; + float3 hsv = float3(abs(Q.z + (Q.w - Q.y) / (6.0 * D + E)), D / (Q.x + E), Q.x); + + float hue = hsv.x + Offset / 360; + hsv.x = (hue < 0) + ? hue + 1 + : (hue > 1) + ? hue - 1 + : hue; + + float4 K2 = float4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); + float3 P2 = abs(frac(hsv.xxx + K2.xyz) * 6.0 - K2.www); + half3 Out = hsv.z * lerp(K2.xxx, saturate(P2 - K2.xxx), hsv.y); + + return Out; + } + + + + + half4 Frag(VaryingsDefault i) : SV_Target + { + + //half3 col = 0.5 + 0.5 * cos(_Time.y + i.texcoord.xyx + float3(0, 2, 4)); + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + //half3 finalColor = lerp(sceneColor.rgb, col, _Float1 *0.1); + + return half4(Hue_Degree(sceneColor, _HueDegree), 1.0); + } + + ENDHLSL + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Shader/ColorAdjustmentHue.shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Shader/ColorAdjustmentHue.shader.meta new file mode 100644 index 000000000..36f1087cc --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Shader/ColorAdjustmentHue.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cd123a4d4b19bc44387f5cd7a964b09b +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter.meta new file mode 100644 index 000000000..64e786b70 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c53f9c30b8594940b51a504243d5eb4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/ColorAdjustmentLensFilter.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/ColorAdjustmentLensFilter.cs new file mode 100644 index 000000000..ddf43affe --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/ColorAdjustmentLensFilter.cs @@ -0,0 +1,67 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(ColorAdjustmentLensFilterRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/ColorAdjustment/LensFilter")] + public class ColorAdjustmentLensFilter : PostProcessEffectSettings + { + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter LensColor = new ColorParameter { value = new Color(1.0f, 1.0f, 0.1f, 1) }; + + [Range(0.0f, 1.0f)] + public FloatParameter Indensity = new FloatParameter { value = 0.5f }; + } + + public sealed class ColorAdjustmentLensFilterRenderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-ColorAdjustmentLensFilter"; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/ColorAdjustment/LensFilter"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int LensColor = Shader.PropertyToID("_LensColor"); + internal static readonly int Indensity = Shader.PropertyToID("_Indensity"); + } + + public override void Render(PostProcessRenderContext context) + { + context.command.BeginSample(PROFILER_TAG); + PropertySheet sheet = context.propertySheets.Get(shader); + + sheet.properties.SetFloat(ShaderIDs.Indensity, settings.Indensity); + sheet.properties.SetColor(ShaderIDs.LensColor, settings.LensColor); + + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + context.command.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/ColorAdjustmentLensFilter.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/ColorAdjustmentLensFilter.cs.meta new file mode 100644 index 000000000..86b5a170e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/ColorAdjustmentLensFilter.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: efb9c856103a46543a82133472d02472 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Editor.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Editor.meta new file mode 100644 index 000000000..7147b8f19 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b4940611dccabb04bae4af41f9951202 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Editor/ColorAdjustmentLensFilterEditor.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Editor/ColorAdjustmentLensFilterEditor.cs new file mode 100644 index 000000000..0d612c88f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Editor/ColorAdjustmentLensFilterEditor.cs @@ -0,0 +1,49 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(ColorAdjustmentLensFilter))] + public sealed class ColorAdjustmentLensFilterEditor : PostProcessEffectEditor + { + + SerializedParameterOverride LensColor; + SerializedParameterOverride Indensity; + + + public override void OnEnable() + { + LensColor = FindParameterOverride(x => x.LensColor); + Indensity = FindParameterOverride(x => x.Indensity); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(LensColor); + PropertyField(Indensity); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Editor/ColorAdjustmentLensFilterEditor.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Editor/ColorAdjustmentLensFilterEditor.cs.meta new file mode 100644 index 000000000..80c250f4b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Editor/ColorAdjustmentLensFilterEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7e4bbd8ebf5c3d4479818144ad7fabdb +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/README.md b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/README.md new file mode 100644 index 000000000..bd2858f6a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/README.md @@ -0,0 +1,16 @@ + +# ColorAdjustmentLensFilter + +## Source Code List +- [Shader Code](Shader/ColorAdjustmentLensFilter.shader) +- [C# Code](ColorAdjustmentLensFilter.cs) +- [Editor Code](Editor/ColorAdjustmentLensFilterEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentLensFilter/ColorAdjustmentLensFilterProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentLensFilter/ColorAdjustmentLensFilter.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentLensFilter/ColorAdjustmentLensFilter.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/README.md.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/README.md.meta new file mode 100644 index 000000000..05fdf5cbd --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1445ff22b1601684493a9b64b34e9513 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Shader.meta new file mode 100644 index 000000000..2c00ca9b5 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c31040d30fa01004696194f332f942f9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Shader/ColorAdjustmentLensFilter.shader b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Shader/ColorAdjustmentLensFilter.shader new file mode 100644 index 000000000..756c8eb60 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Shader/ColorAdjustmentLensFilter.shader @@ -0,0 +1,63 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/ColorAdjustment/LensFilter" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half _Indensity; + uniform half4 _LensColor; + + half luminance(half3 color) + { + return dot(color, half3(0.222, 0.707, 0.071)); + } + + half4 Frag(VaryingsDefault i): SV_Target + { + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + half lum = luminance(sceneColor.rgb); + + // Interpolate with half4(0.0, 0.0, 0.0, 0.0) based on luminance + half4 filterColor = lerp(half4(0.0, 0.0, 0.0, 0.0), _LensColor, saturate(lum * 2.0)); + + // Interpolate withhalf4(1.0, 1.0, 1.0, 1.0) based on luminance + filterColor = lerp(filterColor, half4(1.0, 1.0, 1.0, 1.0), saturate(lum - 0.5) * 2.0); + + filterColor = lerp(sceneColor, filterColor, saturate(lum * _Indensity)); + + return half4(filterColor.rgb, sceneColor.a); + } + + ENDHLSL + + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Shader/ColorAdjustmentLensFilter.shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Shader/ColorAdjustmentLensFilter.shader.meta new file mode 100644 index 000000000..f4db7b1db --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Shader/ColorAdjustmentLensFilter.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2fd843077c088384a8683b1d6132efb4 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation.meta new file mode 100644 index 000000000..9fa52ec0c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e959f698c1e84864da0772aec7c58cfd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/ColorAdjustmentSaturation.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/ColorAdjustmentSaturation.cs new file mode 100644 index 000000000..b5295e48a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/ColorAdjustmentSaturation.cs @@ -0,0 +1,59 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(ColorAdjustmentSaturationRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/ColorAdjustment/Saturation")] + public class ColorAdjustmentSaturation : PostProcessEffectSettings + { + + [Range(0.0f, 2.0f)] + public FloatParameter saturation = new FloatParameter { value = 1f }; + + } + + public sealed class ColorAdjustmentSaturationRenderer : PostProcessEffectRenderer + { + private Shader shader; + + private const string PROFILER_TAG = "X-ColorAdjustmentSaturation"; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/ColorAdjustment/Saturation"); + } + + public override void Release() + { + base.Release(); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetFloat("_Saturation", settings.saturation); + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/ColorAdjustmentSaturation.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/ColorAdjustmentSaturation.cs.meta new file mode 100644 index 000000000..4e708d8c2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/ColorAdjustmentSaturation.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9b5ed3169e7d36b4cadb5c5feaf040ff +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Editor.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Editor.meta new file mode 100644 index 000000000..364f3659d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 10fe08a7a4d14fc4fb506e3feb963023 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Editor/ColorAdjustmentSaturationEditor.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Editor/ColorAdjustmentSaturationEditor.cs new file mode 100644 index 000000000..8d925ad81 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Editor/ColorAdjustmentSaturationEditor.cs @@ -0,0 +1,46 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(ColorAdjustmentSaturation))] + public sealed class ColorAdjustmentSaturationEditor : PostProcessEffectEditor + { + + SerializedParameterOverride saturation; + + + + public override void OnEnable() + { + saturation = FindParameterOverride(x => x.saturation); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(saturation); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Editor/ColorAdjustmentSaturationEditor.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Editor/ColorAdjustmentSaturationEditor.cs.meta new file mode 100644 index 000000000..a4d5b1ce7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Editor/ColorAdjustmentSaturationEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 89360992b9d293b4bb4b7b26f5df495a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/README.md b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/README.md new file mode 100644 index 000000000..dfb2effd3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/README.md @@ -0,0 +1,16 @@ + +# ColorAdjustmentSaturation + +## Source Code List +- [Shader Code](Shader/ColorAdjustmentSaturation.shader) +- [C# Code](ColorAdjustmentSaturation.cs) +- [Editor Code](Editor/ColorAdjustmentSaturationEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentSaturation/ColorAdjustmentSaturationProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentSaturation/ColorAdjustmentSaturation.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentSaturation/ColorAdjustmentSaturation.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/README.md.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/README.md.meta new file mode 100644 index 000000000..c1e7ad99f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4867b2d8644d3d141b476e4b027b8aec +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Shader.meta new file mode 100644 index 000000000..224685c9b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ce3444e08b2298449e79b7cf7329d22 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Shader/ColorAdjustmentSaturation.shader b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Shader/ColorAdjustmentSaturation.shader new file mode 100644 index 000000000..b830f5730 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Shader/ColorAdjustmentSaturation.shader @@ -0,0 +1,51 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/ColorAdjustment/Saturation" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + uniform half _Saturation; + + half3 Saturation(half3 In, half Saturation) + { + half luma = dot(In, half3(0.2126729, 0.7151522, 0.0721750)); + half3 Out = luma.xxx + Saturation.xxx * (In - luma.xxx); + return Out; + } + + half4 Frag(VaryingsDefault i) : SV_Target + { + + half3 col = 0.5 + 0.5 * cos(_Time.y + i.texcoord.xyx + half3(0, 2, 4)); + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + return half4(Saturation(sceneColor.rgb, _Saturation), 1.0); + } + + ENDHLSL + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Shader/ColorAdjustmentSaturation.shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Shader/ColorAdjustmentSaturation.shader.meta new file mode 100644 index 000000000..cc41f052a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Shader/ColorAdjustmentSaturation.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e88e1de64bb4c02499a002994ede4c5f +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor.meta new file mode 100644 index 000000000..ac626d7db --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f2d20470a8abec243aadeac6e0031e97 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/ColorAdjustmentTechnicolor.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/ColorAdjustmentTechnicolor.cs new file mode 100644 index 000000000..35371fc8f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/ColorAdjustmentTechnicolor.cs @@ -0,0 +1,81 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(ColorAdjustmentTechnicolorRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/ColorAdjustment/Technicolor")] + public class ColorAdjustmentTechnicolor : PostProcessEffectSettings + { + + [Range(0.0f, 8.0f)] + public FloatParameter exposure = new FloatParameter { value = 4.0f }; + + [Range(0.0f, 1.0f)] + public FloatParameter colorBalanceR = new FloatParameter { value = 0.2f }; + + [Range(0.0f, 1.0f)] + public FloatParameter colorBalanceG = new FloatParameter { value = 0.2f }; + + [Range(0.0f, 1.0f)] + public FloatParameter colorBalanceB = new FloatParameter { value = 0.2f }; + + [Range(0.0f, 1.0f)] + public FloatParameter indensity = new FloatParameter { value = 0.5f }; + + } + + public sealed class ColorAdjustmentTechnicolorRenderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-ColorAdjustmentTechnicolor"; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/ColorAdjustment/Technicolor"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int exposure = Shader.PropertyToID("_Exposure"); + internal static readonly int colorBalance = Shader.PropertyToID("_ColorBalance"); + internal static readonly int indensity = Shader.PropertyToID("_Indensity"); + } + + public override void Render(PostProcessRenderContext context) + { + context.command.BeginSample(PROFILER_TAG); + PropertySheet sheet = context.propertySheets.Get(shader); + + + sheet.properties.SetFloat(ShaderIDs.exposure, 8f- settings.exposure); + sheet.properties.SetVector(ShaderIDs.colorBalance, Vector3.one - new Vector3(settings.colorBalanceR, settings.colorBalanceG, settings.colorBalanceB)); + sheet.properties.SetFloat(ShaderIDs.indensity, settings.indensity); + + + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + context.command.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/ColorAdjustmentTechnicolor.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/ColorAdjustmentTechnicolor.cs.meta new file mode 100644 index 000000000..98a1fc2b1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/ColorAdjustmentTechnicolor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d95eb445bcce3174c9cbe04cd4300d2d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Editor.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Editor.meta new file mode 100644 index 000000000..ed0f85c0b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 88fcb5098859f6c4a83ea093fd356bda +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Editor/ColorAdjustmentTechnicolorEditor.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Editor/ColorAdjustmentTechnicolorEditor.cs new file mode 100644 index 000000000..bfe81c2cf --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Editor/ColorAdjustmentTechnicolorEditor.cs @@ -0,0 +1,60 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(ColorAdjustmentTechnicolor))] + public sealed class ColorAdjustmentTechnicolorEditor : PostProcessEffectEditor + { + + SerializedParameterOverride exposure; + SerializedParameterOverride colorBalanceR; + SerializedParameterOverride colorBalanceG; + SerializedParameterOverride colorBalanceB; + SerializedParameterOverride indensity; + + + public override void OnEnable() + { + exposure = FindParameterOverride(x => x.exposure); + colorBalanceR = FindParameterOverride(x => x.colorBalanceR); + colorBalanceG = FindParameterOverride(x => x.colorBalanceG); + colorBalanceB = FindParameterOverride(x => x.colorBalanceB); + indensity = FindParameterOverride(x => x.indensity); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(exposure); + PropertyField(indensity); + EditorUtilities.DrawHeaderLabel("Color Balance"); + PropertyField(colorBalanceR); + PropertyField(colorBalanceG); + PropertyField(colorBalanceB); + + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Editor/ColorAdjustmentTechnicolorEditor.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Editor/ColorAdjustmentTechnicolorEditor.cs.meta new file mode 100644 index 000000000..a87b156f5 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Editor/ColorAdjustmentTechnicolorEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: a279eb70fcf0aee42956e7b9b0a8d2a3 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/README.md b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/README.md new file mode 100644 index 000000000..8f55ecf96 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/README.md @@ -0,0 +1,16 @@ + +# ColorAdjustmentTechnicolor + +## Source Code List +- [Shader Code](Shader/ColorAdjustmentTechnicolor.shader) +- [C# Code](ColorAdjustmentTechnicolor.cs) +- [Editor Code](Editor/ColorAdjustmentTechnicolorEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentTechnicolor/ColorAdjustmentTechnicolorProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentTechnicolor/ColorAdjustmentTechnicolor.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentTechnicolor/ColorAdjustmentTechnicolor.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/README.md.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/README.md.meta new file mode 100644 index 000000000..240919c05 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 911dfa0e951d7ab458dacacfda3b763f +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Shader.meta new file mode 100644 index 000000000..d5ceacb23 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 780d2073fbe298647b714310468538d7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Shader/ColorAdjustmentTechnicolor.shader b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Shader/ColorAdjustmentTechnicolor.shader new file mode 100644 index 000000000..b330d5347 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Shader/ColorAdjustmentTechnicolor.shader @@ -0,0 +1,72 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/ColorAdjustment/Technicolor" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + half _Exposure; + half3 _ColorBalance; + half _Indensity; + + + // reference : https://github.com/crosire/reshade-shaders/blob/master/Shaders/Technicolor.fx + half4 Frag(VaryingsDefault i): SV_Target + { + const half3 cyanfilter = float3(0.0, 1.30, 1.0); + const half3 magentafilter = float3(1.0, 0.0, 1.05); + const half3 yellowfilter = float3(1.6, 1.6, 0.05); + const half2 redorangefilter = float2(1.05, 0.620); // RG_ + const half2 greenfilter = float2(0.30, 1.0); // RG_ + const half2 magentafilter2 = magentafilter.rb; // R_B + + + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + half3 balance = 1.0 / (_ColorBalance.rgb * _Exposure); + + half negative_mul_r = dot(redorangefilter, color.rg * balance.rr); + half negative_mul_g = dot(greenfilter, color.rg * balance.gg); + half negative_mul_b = dot(magentafilter2, color.rb * balance.bb); + + half3 output_r = negative_mul_r.rrr + cyanfilter; + half3 output_g = negative_mul_g .rrr + magentafilter; + half3 output_b = negative_mul_b.rrr + yellowfilter; + + half3 result = output_r * output_g * output_b; + return half4(lerp(color.rgb, result.rgb, _Indensity), 1.0); + + } + + ENDHLSL + + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Shader/ColorAdjustmentTechnicolor.shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Shader/ColorAdjustmentTechnicolor.shader.meta new file mode 100644 index 000000000..ddb27bd01 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Shader/ColorAdjustmentTechnicolor.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dd1a75133e88ed345932f8ad8fa815e9 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTint.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint.meta new file mode 100644 index 000000000..60943ddb3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 548cc646fd45c63408e7ef01c32c6090 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/ColorAdjustmentTint.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/ColorAdjustmentTint.cs new file mode 100644 index 000000000..592608e75 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/ColorAdjustmentTint.cs @@ -0,0 +1,61 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(ColorAdjustmentTintRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/ColorAdjustment/Tint")] + public class ColorAdjustmentTint : PostProcessEffectSettings + { + + [Range(0.0f, 1.0f)] + public FloatParameter indensity = new FloatParameter { value = 0.1f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter colorTint = new ColorParameter { value = new Color(0.9f, 1.0f, 0.0f, 1) }; + } + + public sealed class ColorAdjustmentTintRenderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-ColorAdjustmentTint"; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/ColorAdjustment/Tint"); + } + + public override void Release() + { + base.Release(); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetColor("_ColorTint", settings.colorTint); + sheet.properties.SetFloat("_Indensity", settings.indensity); + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/ColorAdjustmentTint.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/ColorAdjustmentTint.cs.meta new file mode 100644 index 000000000..dd302b6c8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/ColorAdjustmentTint.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1a4bf4ee979e22245b6f52e341d976bb +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Editor.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Editor.meta new file mode 100644 index 000000000..d78ef4c94 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 58add7011dd5da443aa667bf87362a94 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Editor/ColorAdjustmentTintEditor.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Editor/ColorAdjustmentTintEditor.cs new file mode 100644 index 000000000..ec2727f93 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Editor/ColorAdjustmentTintEditor.cs @@ -0,0 +1,48 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(ColorAdjustmentTint))] + public sealed class ColorAdjustmentTintEditor : PostProcessEffectEditor + { + + SerializedParameterOverride indensity; + SerializedParameterOverride colorTint; + + + public override void OnEnable() + { + indensity = FindParameterOverride(x => x.indensity); + colorTint = FindParameterOverride(x => x.colorTint); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(indensity); + PropertyField(colorTint); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Editor/ColorAdjustmentTintEditor.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Editor/ColorAdjustmentTintEditor.cs.meta new file mode 100644 index 000000000..4f1b417cc --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Editor/ColorAdjustmentTintEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 90c9485511d18364fba1fbc8715c49f8 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/README.md b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/README.md new file mode 100644 index 000000000..9167d61cc --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/README.md @@ -0,0 +1,16 @@ + +# ColorAdjustmentTint + +## Source Code List +- [Shader Code](Shader/ColorAdjustmentTint.shader) +- [C# Code](ColorAdjustmentTint.cs) +- [Editor Code](Editor/ColorAdjustmentTintEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentTint/ColorAdjustmentTintProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentTint/ColorAdjustmentTint.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentTint/ColorAdjustmentTint.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/README.md.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/README.md.meta new file mode 100644 index 000000000..55f5e4cda --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a643fd2047d3e9b4ca87c243f9309669 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Shader.meta new file mode 100644 index 000000000..b896ee194 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 719b6b1983544b04a943158f5c28eb25 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Shader/ColorAdjustmentTint.shader b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Shader/ColorAdjustmentTint.shader new file mode 100644 index 000000000..2dab7f289 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Shader/ColorAdjustmentTint.shader @@ -0,0 +1,50 @@ + + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/ColorAdjustment/Tint" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half _Indensity; + uniform half4 _ColorTint; + + half4 Frag(VaryingsDefault i): SV_Target + { + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + half3 finalColor = lerp(sceneColor.rgb, sceneColor.rgb * _ColorTint.rgb, _Indensity); + + return half4(finalColor, 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Shader/ColorAdjustmentTint.shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Shader/ColorAdjustmentTint.shader.meta new file mode 100644 index 000000000..696794078 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Shader/ColorAdjustmentTint.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7459eee18da8b344ba6df8bcad02276c +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance.meta new file mode 100644 index 000000000..375c9bea1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 487fbcf00b30be44e8d3db8d9ec26365 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/ColorAdjustmentWhiteBalance.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/ColorAdjustmentWhiteBalance.cs new file mode 100644 index 000000000..0895cb743 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/ColorAdjustmentWhiteBalance.cs @@ -0,0 +1,68 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(ColorAdjustmentWhiteBalanceRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/ColorAdjustment/WhiteBalance")] + public class ColorAdjustmentWhiteBalance : PostProcessEffectSettings + { + + /// + /// custom color temperature. + /// + [Range(-1f, 1f)] + public FloatParameter temperature = new FloatParameter { value = 0f }; + + /// + /// for a green or magenta tint. + /// + [Range(-1f, 1f)] + public FloatParameter tint = new FloatParameter { value = 0f }; + + } + + public sealed class ColorAdjustmentWhiteBalanceRenderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-ColorAdjustmentWhiteBalance"; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/ColorAdjustment/WhiteBalance"); + } + + public override void Release() + { + base.Release(); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetFloat("_Temperature", settings.temperature); + sheet.properties.SetFloat("_Tint", settings.tint); + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/ColorAdjustmentWhiteBalance.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/ColorAdjustmentWhiteBalance.cs.meta new file mode 100644 index 000000000..092211a7d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/ColorAdjustmentWhiteBalance.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: f771e798c3582df458ffed78248242ce +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Editor.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Editor.meta new file mode 100644 index 000000000..69a63d136 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9ea046fd6017289448296d1cf539465a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Editor/ColorAdjustmentWhiteBalanceEditor.cs b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Editor/ColorAdjustmentWhiteBalanceEditor.cs new file mode 100644 index 000000000..1b42138e8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Editor/ColorAdjustmentWhiteBalanceEditor.cs @@ -0,0 +1,50 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(ColorAdjustmentWhiteBalance))] + public sealed class ColorAdjustmentWhiteBalanceEditor : PostProcessEffectEditor + { + + + + SerializedParameterOverride temperature; + SerializedParameterOverride tint; + + + public override void OnEnable() + { + temperature = FindParameterOverride(x => x.temperature); + tint = FindParameterOverride(x => x.tint); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(temperature); + PropertyField(tint); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Editor/ColorAdjustmentWhiteBalanceEditor.cs.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Editor/ColorAdjustmentWhiteBalanceEditor.cs.meta new file mode 100644 index 000000000..695b75e6b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Editor/ColorAdjustmentWhiteBalanceEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 3363db9801d911e46906d150566945b7 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/README.md b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/README.md new file mode 100644 index 000000000..d5f1b1915 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/README.md @@ -0,0 +1,16 @@ + +# ColorAdjustmentWhiteBalance + +## Source Code List +- [Shader Code](Shader/ColorAdjustmentWhiteBalance.shader) +- [C# Code](ColorAdjustmentWhiteBalance.cs) +- [Editor Code](Editor/ColorAdjustmentWhiteBalanceEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentWhiteBalance/ColorAdjustmentWhiteBalanceProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentWhiteBalance/ColorAdjustmentWhiteBalance.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorAdjustmentWhiteBalance/ColorAdjustmentWhiteBalance.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/README.md.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/README.md.meta new file mode 100644 index 000000000..671328760 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 432c447480049144ebfc38b8f52f03ee +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Shader.meta new file mode 100644 index 000000000..d93795960 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f4ebf69c5b54c4a42ba1f0942b4f10d4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Shader/ColorAdjustmentWhiteBalance.shader b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Shader/ColorAdjustmentWhiteBalance.shader new file mode 100644 index 000000000..caee0f874 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Shader/ColorAdjustmentWhiteBalance.shader @@ -0,0 +1,93 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/ColorAdjustment/WhiteBalance" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + + uniform half _Temperature; + uniform half _Tint; + + + float3 WhiteBalance(float3 In, float Temperature, float Tint) + { + // Range ~[-1.67;1.67] works best + float t1 = Temperature * 10 / 6; + float t2 = Tint * 10 / 6; + + // Get the CIE xy chromaticity of the reference white point. + // Note: 0.31271 = x value on the D65 white point + float x = 0.31271 - t1 * (t1 < 0 ? 0.1 : 0.05); + float standardIlluminantY = 2.87 * x - 3 * x * x - 0.27509507; + float y = standardIlluminantY + t2 * 0.05; + + // Calculate the coefficients in the LMS space. + float3 w1 = float3(0.949237, 1.03542, 1.08728); // D65 white point + + // CIExyToLMS + float Y = 1; + float X = Y * x / y; + float Z = Y * (1 - x - y) / y; + float L = 0.7328 * X + 0.4296 * Y - 0.1624 * Z; + float M = -0.7036 * X + 1.6975 * Y + 0.0061 * Z; + float S = 0.0030 * X + 0.0136 * Y + 0.9834 * Z; + float3 w2 = float3(L, M, S); + + float3 balance = float3(w1.x / w2.x, w1.y / w2.y, w1.z / w2.z); + + float3x3 LIN_2_LMS_MAT = { + 3.90405e-1, 5.49941e-1, 8.92632e-3, + 7.08416e-2, 9.63172e-1, 1.35775e-3, + 2.31082e-2, 1.28021e-1, 9.36245e-1 + }; + + float3x3 LMS_2_LIN_MAT = { + 2.85847e+0, -1.62879e+0, -2.48910e-2, + -2.10182e-1, 1.15820e+0, 3.24281e-4, + -4.18120e-2, -1.18169e-1, 1.06867e+0 + }; + + float3 lms = mul(LIN_2_LMS_MAT, In); + lms *= balance; + float3 Out = mul(LMS_2_LIN_MAT, lms); + return Out; + } + + + half4 Frag(VaryingsDefault i) : SV_Target + { + + half3 col = 0.5 + 0.5 * cos(_Time.y + i.texcoord.xyx + float3(0, 2, 4)); + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + half3 finalColor = WhiteBalance(sceneColor.rgb, _Temperature, _Tint); + return half4(finalColor, 1.0); + } + + ENDHLSL + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Shader/ColorAdjustmentWhiteBalance.shader.meta b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Shader/ColorAdjustmentWhiteBalance.shader.meta new file mode 100644 index 000000000..bf0c083a4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Shader/ColorAdjustmentWhiteBalance.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b578f15267ec4314faed156d65fc41a7 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorReplace.meta b/Assets/X-PostProcessing/Effects/ColorReplace.meta new file mode 100644 index 000000000..977362cdc --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplace.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3eb65558e06c57d4a9623d8228ad1b7e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorReplace/ColorReplace.cs b/Assets/X-PostProcessing/Effects/ColorReplace/ColorReplace.cs new file mode 100644 index 000000000..d2852c52e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplace/ColorReplace.cs @@ -0,0 +1,70 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(ColorReplaceRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/ColorAdjustment/ColorReplace")] + public class ColorReplace : PostProcessEffectSettings + { + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter FromColor = new ColorParameter { value = new Color(0.8f, 0.0f, 0.0f, 1) }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter ToColor = new ColorParameter { value = new Color(0.0f, 0.8f, 0.0f, 1) }; + + [Range(0.0f, 1.0f)] + public FloatParameter Range = new FloatParameter { value = 0.2f }; + + [Range(0.0f, 1.0f)] + public FloatParameter Fuzziness = new FloatParameter { value = 0.5f }; + + } + + public sealed class ColorReplaceRenderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-ColorReplace"; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/ColorReplace"); + } + + public override void Release() + { + base.Release(); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetColor("_FromColor", settings.FromColor); + sheet.properties.SetColor("_ToColor", settings.ToColor); + sheet.properties.SetFloat("_Range", settings.Range); + sheet.properties.SetFloat("_Fuzziness", settings.Fuzziness); + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorReplace/ColorReplace.cs.meta b/Assets/X-PostProcessing/Effects/ColorReplace/ColorReplace.cs.meta new file mode 100644 index 000000000..7c4a72a07 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplace/ColorReplace.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 0e84cf76f41f4f7459de554628a5a26b +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorReplace/Editor.meta b/Assets/X-PostProcessing/Effects/ColorReplace/Editor.meta new file mode 100644 index 000000000..4a6f8cdbb --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplace/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c8a1bcf1c30c63d4b8b10a54368ed6fe +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorReplace/Editor/ColorReplaceEditor.cs b/Assets/X-PostProcessing/Effects/ColorReplace/Editor/ColorReplaceEditor.cs new file mode 100644 index 000000000..2348e6d4c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplace/Editor/ColorReplaceEditor.cs @@ -0,0 +1,57 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(ColorReplace))] + public sealed class ColorReplaceEditor : PostProcessEffectEditor + { + + SerializedParameterOverride FromColor; + SerializedParameterOverride ToColor; + SerializedParameterOverride Range; + SerializedParameterOverride Fuzziness; + + + public override void OnEnable() + { + FromColor = FindParameterOverride(x => x.FromColor); + ToColor = FindParameterOverride(x => x.ToColor); + Range = FindParameterOverride(x => x.Range); + Fuzziness = FindParameterOverride(x => x.Fuzziness); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("From-To Color"); + PropertyField(FromColor); + PropertyField(ToColor); + + EditorUtilities.DrawHeaderLabel("Color Precision"); + PropertyField(Range); + PropertyField(Fuzziness); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorReplace/Editor/ColorReplaceEditor.cs.meta b/Assets/X-PostProcessing/Effects/ColorReplace/Editor/ColorReplaceEditor.cs.meta new file mode 100644 index 000000000..bbe86a454 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplace/Editor/ColorReplaceEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b7437b54099c02c49985ed9ce3d68bb1 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorReplace/README.md b/Assets/X-PostProcessing/Effects/ColorReplace/README.md new file mode 100644 index 000000000..f7a57bf1b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplace/README.md @@ -0,0 +1,16 @@ + +# ColorReplace + +## Source Code List +- [Shader Code](Shader/ColorReplace.shader) +- [C# Code](ColorReplace.cs) +- [Editor Code](Editor/ColorReplaceEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorReplace/ColorReplaceProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorReplace/ColorReplace.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorReplace/ColorReplace.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/ColorReplace/README.md.meta b/Assets/X-PostProcessing/Effects/ColorReplace/README.md.meta new file mode 100644 index 000000000..594e56b65 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplace/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 58629502ed73910429469f4b0f0112bd +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorReplace/Shader.meta b/Assets/X-PostProcessing/Effects/ColorReplace/Shader.meta new file mode 100644 index 000000000..b1da3f107 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplace/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 626f40453ce247e44bdd4b5bced185d8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorReplace/Shader/ColorReplace.shader b/Assets/X-PostProcessing/Effects/ColorReplace/Shader/ColorReplace.shader new file mode 100644 index 000000000..ea1c51f0f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplace/Shader/ColorReplace.shader @@ -0,0 +1,54 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/ColorReplace" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half4 _FromColor; + uniform half4 _ToColor; + uniform half _Range; + uniform half _Fuzziness; + + half3 ColorReplace(half3 In, half3 From, half3 To, half Range, half Fuzziness) + { + half Distance = distance(From, In); + half3 Out = lerp(To, In, saturate((Distance - Range) / max(Fuzziness, 0.1))); + return Out; + } + + + half4 Frag(VaryingsDefault i) : SV_Target + { + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + half3 finalColor = ColorReplace(sceneColor.rgb, _FromColor.rgb , _ToColor.rgb , _Range, _Fuzziness); + + return half4(finalColor, 1.0); + } + + ENDHLSL + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorReplace/Shader/ColorReplace.shader.meta b/Assets/X-PostProcessing/Effects/ColorReplace/Shader/ColorReplace.shader.meta new file mode 100644 index 000000000..4ed4c405f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplace/Shader/ColorReplace.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 52ec611d145649549be039b5a656b4c8 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorReplaceV2.meta b/Assets/X-PostProcessing/Effects/ColorReplaceV2.meta new file mode 100644 index 000000000..a967a6d68 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplaceV2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2ae135b9d50a7ac459052d47c8626ee7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorReplaceV2/ColorReplaceV2.cs b/Assets/X-PostProcessing/Effects/ColorReplaceV2/ColorReplaceV2.cs new file mode 100644 index 000000000..10942a084 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplaceV2/ColorReplaceV2.cs @@ -0,0 +1,94 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(ColorReplaceV2Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/ColorAdjustment/ColorReplaceV2")] + public class ColorReplaceV2 : PostProcessEffectSettings + { + + + public GradientParameter FromGradientColor = new GradientParameter { value = null }; + + public GradientParameter ToGradientColor = new GradientParameter { value = null }; + + + [Range(0.0f, 100.0f)] + public FloatParameter gridentSpeed = new FloatParameter { value = 0.5f }; + + [Range(0.0f, 1.0f)] + public FloatParameter Range = new FloatParameter { value = 0.2f }; + + [Range(0.0f, 1.0f)] + public FloatParameter Fuzziness = new FloatParameter { value = 0.5f }; + } + + public sealed class ColorReplaceV2Renderer : PostProcessEffectRenderer + { + private Shader shader; + private float TimeX = 1.0f; + private const string PROFILER_TAG = "X-ColorReplaceV2"; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/ColorReplaceV2"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int FromColor = Shader.PropertyToID("_FromColor"); + internal static readonly int ToColor = Shader.PropertyToID("_ToColor"); + internal static readonly int Range = Shader.PropertyToID("_Range"); + internal static readonly int Fuzziness = Shader.PropertyToID("_Fuzziness"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + TimeX += (Time.deltaTime * settings.gridentSpeed); + if (TimeX > 100) + { + TimeX = 0; + } + if (settings.FromGradientColor.value != null) + { + sheet.properties.SetColor(ShaderIDs.FromColor, settings.FromGradientColor.value.Evaluate(TimeX * 0.01f)); + } + + if (settings.ToGradientColor.value != null) + { + sheet.properties.SetColor(ShaderIDs.ToColor, settings.ToGradientColor.value.Evaluate(TimeX * 0.01f)); + } + + sheet.properties.SetFloat(ShaderIDs.Range, settings.Range); + sheet.properties.SetFloat(ShaderIDs.Fuzziness, settings.Fuzziness); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorReplaceV2/ColorReplaceV2.cs.meta b/Assets/X-PostProcessing/Effects/ColorReplaceV2/ColorReplaceV2.cs.meta new file mode 100644 index 000000000..c72ddf20e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplaceV2/ColorReplaceV2.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e1b513c82ad9e224db6ba48112ec5d48 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorReplaceV2/Editor.meta b/Assets/X-PostProcessing/Effects/ColorReplaceV2/Editor.meta new file mode 100644 index 000000000..162ac3d51 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplaceV2/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 17df0c432414ccf4aa3218a946a69d77 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorReplaceV2/Editor/ColorReplaceV2Editor.cs b/Assets/X-PostProcessing/Effects/ColorReplaceV2/Editor/ColorReplaceV2Editor.cs new file mode 100644 index 000000000..b86173dd1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplaceV2/Editor/ColorReplaceV2Editor.cs @@ -0,0 +1,59 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(ColorReplaceV2))] + public sealed class ColorReplaceV2Editor : PostProcessEffectEditor + { + SerializedParameterOverride FromGradientColor; + SerializedParameterOverride ToGradientColor; + SerializedParameterOverride gridentSpeed; + SerializedParameterOverride Range; + SerializedParameterOverride Fuzziness; + + + public override void OnEnable() + { + FromGradientColor = FindParameterOverride(x => x.FromGradientColor); + ToGradientColor = FindParameterOverride(x => x.ToGradientColor); + gridentSpeed = FindParameterOverride(x => x.gridentSpeed); + Range = FindParameterOverride(x => x.Range); + Fuzziness = FindParameterOverride(x => x.Fuzziness); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("From-To Color"); + PropertyField(FromGradientColor); + PropertyField(ToGradientColor); + PropertyField(gridentSpeed); + + EditorUtilities.DrawHeaderLabel("Color Precision"); + PropertyField(Range); + PropertyField(Fuzziness); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/ColorReplaceV2/Editor/ColorReplaceV2Editor.cs.meta b/Assets/X-PostProcessing/Effects/ColorReplaceV2/Editor/ColorReplaceV2Editor.cs.meta new file mode 100644 index 000000000..11957958c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplaceV2/Editor/ColorReplaceV2Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 8ea63d307d77b1a43876b56431cfa97c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorReplaceV2/README.md b/Assets/X-PostProcessing/Effects/ColorReplaceV2/README.md new file mode 100644 index 000000000..ce473f4fd --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplaceV2/README.md @@ -0,0 +1,16 @@ + +# ColorReplaceV2 + +## Source Code List +- [Shader Code](Shader/ColorReplaceV2.shader) +- [C# Code](ColorReplaceV2.cs) +- [Editor Code](Editor/ColorReplaceV2Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorReplaceV2/ColorReplaceV2Property.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorReplaceV2/ColorReplaceV2.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ColorAdjustment/ColorReplaceV2/ColorReplaceV2.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/ColorReplaceV2/README.md.meta b/Assets/X-PostProcessing/Effects/ColorReplaceV2/README.md.meta new file mode 100644 index 000000000..b249c5740 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplaceV2/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4112d3fbea5939047aa70274408d8f42 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorReplaceV2/Shader.meta b/Assets/X-PostProcessing/Effects/ColorReplaceV2/Shader.meta new file mode 100644 index 000000000..0793bae39 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplaceV2/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 163003945f18ea549b977ef4e178045a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/ColorReplaceV2/Shader/ColorReplaceV2.shader b/Assets/X-PostProcessing/Effects/ColorReplaceV2/Shader/ColorReplaceV2.shader new file mode 100644 index 000000000..5aa7d8cdf --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplaceV2/Shader/ColorReplaceV2.shader @@ -0,0 +1,61 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/ColorReplaceV2" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half4 _FromColor; + uniform half4 _ToColor; + uniform half _Range; + uniform half _Fuzziness; + + half3 ColorReplace(half3 In, half3 From, half3 To, half Range, half Fuzziness) + { + half Distance = distance(From, In); + half3 Out = lerp(To, In, saturate((Distance - Range) / max(Fuzziness, 0.1))); + return Out; + } + + + half4 Frag(VaryingsDefault i) : SV_Target + { + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + half3 finalColor = ColorReplace(sceneColor.rgb, _FromColor.rgb , _ToColor.rgb , _Range, _Fuzziness); + + return half4(finalColor, 1.0); + } + + ENDHLSL + + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/ColorReplaceV2/Shader/ColorReplaceV2.shader.meta b/Assets/X-PostProcessing/Effects/ColorReplaceV2/Shader/ColorReplaceV2.shader.meta new file mode 100644 index 000000000..dba749595 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/ColorReplaceV2/Shader/ColorReplaceV2.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 40c698a9f5661574eb8fef9b70315bf3 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DirectionalBlur.meta b/Assets/X-PostProcessing/Effects/DirectionalBlur.meta new file mode 100644 index 000000000..0a2aac564 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DirectionalBlur.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: be1b8f657a7298f41af9467addb57e55 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DirectionalBlur/DirectionalBlur.cs b/Assets/X-PostProcessing/Effects/DirectionalBlur/DirectionalBlur.cs new file mode 100644 index 000000000..e650c4121 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DirectionalBlur/DirectionalBlur.cs @@ -0,0 +1,98 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(DirectionalBlurRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/DirectionalBlur")] + public class DirectionalBlur : PostProcessEffectSettings + { + + [Range(0.0f, 5.0f)] + public FloatParameter BlurRadius = new FloatParameter { value = 1f }; + + [Range(1, 30)] + public IntParameter Iteration = new IntParameter { value = 12 }; + + [Range(0.0f, 6.0f)] + public FloatParameter Angle = new FloatParameter { value = 0.5f }; + + [Range(1.0f, 10.0f)] + public FloatParameter RTDownScaling = new FloatParameter { value = 1.0f }; + + } + + public sealed class DirectionalBlurRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-DirectionalBlur"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/DirectionalBlur"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int BufferRT = Shader.PropertyToID("_BufferRT"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + + if (settings.RTDownScaling > 1) + { + int RTWidth = (int)(context.screenWidth / settings.RTDownScaling); + int RTHeight = (int)(context.screenHeight / settings.RTDownScaling); + cmd.GetTemporaryRT(ShaderIDs.BufferRT, RTWidth, RTHeight, 0, FilterMode.Bilinear); + // downsample screen copy into smaller RT + context.command.BlitFullscreenTriangle(context.source, ShaderIDs.BufferRT); + } + + float sinVal = (Mathf.Sin(settings.Angle) * settings.BlurRadius * 0.05f) / settings.Iteration; + float cosVal = (Mathf.Cos(settings.Angle) * settings.BlurRadius * 0.05f) / settings.Iteration; + sheet.properties.SetVector(ShaderIDs.Params, new Vector3(settings.Iteration, sinVal, cosVal)); + + if (settings.RTDownScaling > 1) + { + cmd.BlitFullscreenTriangle(ShaderIDs.BufferRT, context.destination, sheet, 0); + } + else + { + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + } + + + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/DirectionalBlur/DirectionalBlur.cs.meta b/Assets/X-PostProcessing/Effects/DirectionalBlur/DirectionalBlur.cs.meta new file mode 100644 index 000000000..35ab53305 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DirectionalBlur/DirectionalBlur.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 13b499c0ad495f64b96022d11dce284a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DirectionalBlur/Editor.meta b/Assets/X-PostProcessing/Effects/DirectionalBlur/Editor.meta new file mode 100644 index 000000000..9b9131018 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DirectionalBlur/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0b5c47af6317cc84c8a7db51cda5fc9f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DirectionalBlur/Editor/DirectionalBlurEditor.cs b/Assets/X-PostProcessing/Effects/DirectionalBlur/Editor/DirectionalBlurEditor.cs new file mode 100644 index 000000000..95413b358 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DirectionalBlur/Editor/DirectionalBlurEditor.cs @@ -0,0 +1,54 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(DirectionalBlur))] + public sealed class DirectionalBlurEditor : PostProcessEffectEditor + { + + SerializedParameterOverride BlurRadius; + SerializedParameterOverride Iteration; + SerializedParameterOverride Angle; + SerializedParameterOverride RTDownScaling; + + + public override void OnEnable() + { + BlurRadius = FindParameterOverride(x => x.BlurRadius); + Iteration = FindParameterOverride(x => x.Iteration); + Angle = FindParameterOverride(x => x.Angle); + RTDownScaling = FindParameterOverride(x => x.RTDownScaling); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(BlurRadius); + PropertyField(Iteration); + PropertyField(Angle); + PropertyField(RTDownScaling); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/DirectionalBlur/Editor/DirectionalBlurEditor.cs.meta b/Assets/X-PostProcessing/Effects/DirectionalBlur/Editor/DirectionalBlurEditor.cs.meta new file mode 100644 index 000000000..b1e1e98c1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DirectionalBlur/Editor/DirectionalBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 61a609feeacd234418699cc0df079c7c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DirectionalBlur/README.md b/Assets/X-PostProcessing/Effects/DirectionalBlur/README.md new file mode 100644 index 000000000..118a3d760 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DirectionalBlur/README.md @@ -0,0 +1,18 @@ + +# Directional Blur + +## Source Code List +- [Shader Code](Shader/DirectionalBlur.shader) +- [C# Code](DirectionalBlur.cs) +- [Editor Code](Editor/DirectionalBlurEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DirectionalBlur/DirectionalBlurProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DirectionalBlur/DirectionalBlur.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DirectionalBlur/DirectionalBlur-1.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DirectionalBlur/DirectionalBlur-2.gif) diff --git a/Assets/X-PostProcessing/Effects/DirectionalBlur/README.md.meta b/Assets/X-PostProcessing/Effects/DirectionalBlur/README.md.meta new file mode 100644 index 000000000..355c20d4f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DirectionalBlur/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d999739f9969606409ceaeb5ba062fae +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DirectionalBlur/Shader.meta b/Assets/X-PostProcessing/Effects/DirectionalBlur/Shader.meta new file mode 100644 index 000000000..5eb56937d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DirectionalBlur/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f4983fcdd46cc4844b516d420734a32a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DirectionalBlur/Shader/DirectionalBlur.shader b/Assets/X-PostProcessing/Effects/DirectionalBlur/Shader/DirectionalBlur.shader new file mode 100644 index 000000000..c1795f2a3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DirectionalBlur/Shader/DirectionalBlur.shader @@ -0,0 +1,61 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/DirectionalBlur" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half3 _Params; + + #define _Iteration _Params.x + #define _Direction _Params.yz + + half4 DirectionalBlur(VaryingsDefault i) + { + half4 color = half4(0.0, 0.0, 0.0, 0.0); + + for (int k = -_Iteration; k < _Iteration; k++) + { + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - _Direction * k); + } + half4 finalColor = color / (_Iteration * 2.0); + + return finalColor; + } + + half4 Frag(VaryingsDefault i): SV_Target + { + return DirectionalBlur(i); + } + + ENDHLSL + + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/DirectionalBlur/Shader/DirectionalBlur.shader.meta b/Assets/X-PostProcessing/Effects/DirectionalBlur/Shader/DirectionalBlur.shader.meta new file mode 100644 index 000000000..181f5ee89 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DirectionalBlur/Shader/DirectionalBlur.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f17140f396318f044b32aa86a3d283a6 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualBoxBlur.meta b/Assets/X-PostProcessing/Effects/DualBoxBlur.meta new file mode 100644 index 000000000..c1e308266 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualBoxBlur.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bbab6c25950200640a9cafc7b2c6e911 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualBoxBlur/DualBoxBlur.cs b/Assets/X-PostProcessing/Effects/DualBoxBlur/DualBoxBlur.cs new file mode 100644 index 000000000..2e00bc724 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualBoxBlur/DualBoxBlur.cs @@ -0,0 +1,137 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(DualBoxBlurRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/DualBoxBlur")] + public class DualBoxBlur : PostProcessEffectSettings + { + + [Range(0.0f, 15.0f)] + public FloatParameter BlurRadius = new FloatParameter { value = 5.0f }; + + [Range(1.0f, 8.0f)] + public IntParameter Iteration = new IntParameter { value = 4 }; + + [Range(1, 10)] + public FloatParameter RTDownScaling = new FloatParameter { value = 2 }; + } + + public sealed class DualBoxBlurRenderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-DualBoxBlur"; + + + // [down,up] + Level[] m_Pyramid; + const int k_MaxPyramidSize = 16; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/DualBoxBlur"); + + m_Pyramid = new Level[k_MaxPyramidSize]; + + for (int i = 0; i < k_MaxPyramidSize; i++) + { + m_Pyramid[i] = new Level + { + down = Shader.PropertyToID("_BlurMipDown" + i), + up = Shader.PropertyToID("_BlurMipUp" + i) + }; + } + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int BlurOffset = Shader.PropertyToID("_BlurOffset"); + internal static readonly int BufferRT1 = Shader.PropertyToID("_BufferRT1"); + internal static readonly int BufferRT2 = Shader.PropertyToID("_BufferRT2"); + } + + + struct Level + { + internal int down; + internal int up; + } + + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + + cmd.BeginSample(PROFILER_TAG); + + int tw = (int)(context.screenWidth / settings.RTDownScaling); + int th = (int)(context.screenHeight / settings.RTDownScaling); + + Vector4 BlurOffset = new Vector4(settings.BlurRadius / (float)context.screenWidth, settings.BlurRadius / (float)context.screenHeight, 0, 0); + sheet.properties.SetVector(ShaderIDs.BlurOffset, BlurOffset); + // Downsample + RenderTargetIdentifier lastDown = context.source; + for (int i = 0; i < settings.Iteration; i++) + { + int mipDown = m_Pyramid[i].down; + int mipUp = m_Pyramid[i].up; + context.GetScreenSpaceTemporaryRT(cmd, mipDown, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw, th); + context.GetScreenSpaceTemporaryRT(cmd, mipUp, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw, th); + cmd.BlitFullscreenTriangle(lastDown, mipDown, sheet, 0); + + lastDown = mipDown; + tw = Mathf.Max(tw / 2, 1); + th = Mathf.Max(th / 2, 1); + } + + // Upsample + int lastUp = m_Pyramid[settings.Iteration - 1].down; + for (int i = settings.Iteration - 2; i >= 0; i--) + { + int mipUp = m_Pyramid[i].up; + cmd.BlitFullscreenTriangle(lastUp, mipUp, sheet, 0); + lastUp = mipUp; + } + + + // Render blurred texture in blend pass + cmd.BlitFullscreenTriangle(lastUp, context.destination, sheet, 1); + + // Cleanup + for (int i = 0; i < settings.Iteration; i++) + { + if (m_Pyramid[i].down != lastUp) + cmd.ReleaseTemporaryRT(m_Pyramid[i].down); + if (m_Pyramid[i].up != lastUp) + cmd.ReleaseTemporaryRT(m_Pyramid[i].up); + } + + + cmd.EndSample(PROFILER_TAG); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/DualBoxBlur/DualBoxBlur.cs.meta b/Assets/X-PostProcessing/Effects/DualBoxBlur/DualBoxBlur.cs.meta new file mode 100644 index 000000000..14397044a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualBoxBlur/DualBoxBlur.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2bf005b482b98af43a87fe0829922e70 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualBoxBlur/Editor.meta b/Assets/X-PostProcessing/Effects/DualBoxBlur/Editor.meta new file mode 100644 index 000000000..3bbcca37f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualBoxBlur/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2d388c340d2243a4bb5873644cf4927d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualBoxBlur/Editor/DualBoxBlurEditor.cs b/Assets/X-PostProcessing/Effects/DualBoxBlur/Editor/DualBoxBlurEditor.cs new file mode 100644 index 000000000..7ea495548 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualBoxBlur/Editor/DualBoxBlurEditor.cs @@ -0,0 +1,51 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(DualBoxBlur))] + public sealed class DualBoxBlurEditor : PostProcessEffectEditor + { + + SerializedParameterOverride BlurRadius; + SerializedParameterOverride Iteration; + SerializedParameterOverride RTDownScaling; + + + public override void OnEnable() + { + BlurRadius = FindParameterOverride(x => x.BlurRadius); + Iteration = FindParameterOverride(x => x.Iteration); + RTDownScaling = FindParameterOverride(x => x.RTDownScaling); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(BlurRadius); + PropertyField(Iteration); + PropertyField(RTDownScaling); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/DualBoxBlur/Editor/DualBoxBlurEditor.cs.meta b/Assets/X-PostProcessing/Effects/DualBoxBlur/Editor/DualBoxBlurEditor.cs.meta new file mode 100644 index 000000000..7f46fe63b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualBoxBlur/Editor/DualBoxBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: cd758fb3d13a34847ac8a120cc516cf8 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualBoxBlur/README.md b/Assets/X-PostProcessing/Effects/DualBoxBlur/README.md new file mode 100644 index 000000000..17f5ace08 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualBoxBlur/README.md @@ -0,0 +1,16 @@ + +# Dual Box Blur + +## Source Code List +- [Shader Code](Shader/DualBoxBlur.shader) +- [C# Code](DualBoxBlur.cs) +- [Editor Code](Editor/DualBoxBlurEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DualBoxBlur/DualBoxBlurProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DualBoxBlur/DualBoxBlur.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DualBoxBlur/DualBoxBlur.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/DualBoxBlur/README.md.meta b/Assets/X-PostProcessing/Effects/DualBoxBlur/README.md.meta new file mode 100644 index 000000000..398dbc97a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualBoxBlur/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d489e1f531e67f7469f444e8c655b765 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualBoxBlur/Shader.meta b/Assets/X-PostProcessing/Effects/DualBoxBlur/Shader.meta new file mode 100644 index 000000000..b882c0daa --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualBoxBlur/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 08a6f8dd8492bc0449801308610811d3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualBoxBlur/Shader/DualBoxBlur.shader b/Assets/X-PostProcessing/Effects/DualBoxBlur/Shader/DualBoxBlur.shader new file mode 100644 index 000000000..4be91b6ec --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualBoxBlur/Shader/DualBoxBlur.shader @@ -0,0 +1,72 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/DualBoxBlur" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half4 _BlurOffset; + + half4 BoxFilter_4Tap(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize) + { + float4 d = texelSize.xyxy * float4(-1.0, -1.0, 1.0, 1.0); + + half4 s = 0; + s = SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.xy) * 0.25h; // 1 MUL + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.zy) * 0.25h; // 1 MAD + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.xw) * 0.25h; // 1 MAD + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.zw) * 0.25h; // 1 MAD + + return s; + } + + + float4 FragBoxBlur(VaryingsDefault i): SV_Target + { + return BoxFilter_4Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, _BlurOffset.xy).rgba; + } + + float4 FragCombine(VaryingsDefault i): SV_Target + { + return SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragBoxBlur + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragCombine + + ENDHLSL + + } + } +} diff --git a/Assets/X-PostProcessing/Effects/DualBoxBlur/Shader/DualBoxBlur.shader.meta b/Assets/X-PostProcessing/Effects/DualBoxBlur/Shader/DualBoxBlur.shader.meta new file mode 100644 index 000000000..0f14bba28 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualBoxBlur/Shader/DualBoxBlur.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 62bec766fb9f11f428d8a5e2e11a61eb +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualGaussianBlur.meta b/Assets/X-PostProcessing/Effects/DualGaussianBlur.meta new file mode 100644 index 000000000..2e1c0fea8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualGaussianBlur.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: de5c44f6095a15b49991e4d9b1989213 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualGaussianBlur/DualGaussianBlur.cs b/Assets/X-PostProcessing/Effects/DualGaussianBlur/DualGaussianBlur.cs new file mode 100644 index 000000000..ae3b5e562 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualGaussianBlur/DualGaussianBlur.cs @@ -0,0 +1,166 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(DualGaussianBlurRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/DualGaussianBlur")] + public class DualGaussianBlur : PostProcessEffectSettings + { + + [Range(0.0f, 15.0f)] + public FloatParameter BlurRadius = new FloatParameter { value = 5.0f }; + + [Range(1.0f, 8.0f)] + public IntParameter Iteration = new IntParameter { value = 4 }; + + [Range(1, 10)] + public FloatParameter RTDownScaling = new FloatParameter { value = 2 }; + } + + public sealed class DualGaussianBlurRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-DualGaussianBlur"; + private Shader shader; + + // [down,up] + Level[] m_Pyramid; + const int k_MaxPyramidSize = 16; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/DualGaussianBlur"); + + m_Pyramid = new Level[k_MaxPyramidSize]; + + for (int i = 0; i < k_MaxPyramidSize; i++) + { + m_Pyramid[i] = new Level + { + down_vertical = Shader.PropertyToID("_BlurMipDownV" + i), + down_horizontal = Shader.PropertyToID("_BlurMipDownH" + i), + up_vertical = Shader.PropertyToID("_BlurMipUpV" + i), + up_horizontal = Shader.PropertyToID("_BlurMipUpH" + i), + + }; + } + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int BlurOffset = Shader.PropertyToID("_BlurOffset"); + internal static readonly int BufferRT1 = Shader.PropertyToID("_BufferRT1"); + internal static readonly int BufferRT2 = Shader.PropertyToID("_BufferRT2"); + } + + + struct Level + { + internal int down_vertical; + internal int down_horizontal; + internal int up_horizontal; + internal int up_vertical; + } + + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + + int tw = (int)(context.screenWidth / settings.RTDownScaling); + int th = (int)(context.screenHeight / settings.RTDownScaling); + + Vector4 BlurOffset = new Vector4(settings.BlurRadius / (float)context.screenWidth, settings.BlurRadius / (float)context.screenHeight, 0, 0); + sheet.properties.SetVector(ShaderIDs.BlurOffset, BlurOffset); + // Downsample + RenderTargetIdentifier lastDown = context.source; + for (int i = 0; i < settings.Iteration; i++) + { + int mipDownV = m_Pyramid[i].down_vertical; + int mipDowH = m_Pyramid[i].down_horizontal; + int mipUpV = m_Pyramid[i].up_vertical; + int mipUpH = m_Pyramid[i].up_horizontal; + + context.GetScreenSpaceTemporaryRT(cmd, mipDownV, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw, th); + context.GetScreenSpaceTemporaryRT(cmd, mipDowH, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw, th); + context.GetScreenSpaceTemporaryRT(cmd, mipUpV, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw, th); + context.GetScreenSpaceTemporaryRT(cmd, mipUpH, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw, th); + + // horizontal blur + sheet.properties.SetVector(ShaderIDs.BlurOffset, new Vector4(settings.BlurRadius / context.screenWidth, 0, 0, 0)); + context.command.BlitFullscreenTriangle(lastDown, mipDowH, sheet, 0); + + // vertical blur + sheet.properties.SetVector(ShaderIDs.BlurOffset, new Vector4(0, settings.BlurRadius / context.screenHeight, 0, 0)); + context.command.BlitFullscreenTriangle(mipDowH, mipDownV, sheet, 0); + + lastDown = mipDownV; + tw = Mathf.Max(tw / 2, 1); + th = Mathf.Max(th / 2, 1); + } + + // Upsample + int lastUp = m_Pyramid[settings.Iteration - 1].down_vertical; + for (int i = settings.Iteration - 2; i >= 0; i--) + { + + int mipUpV = m_Pyramid[i].up_vertical; + int mipUpH = m_Pyramid[i].up_horizontal; + + // horizontal blur + sheet.properties.SetVector(ShaderIDs.BlurOffset, new Vector4(settings.BlurRadius / context.screenWidth, 0, 0, 0)); + context.command.BlitFullscreenTriangle(lastUp, mipUpH, sheet, 0); + + // vertical blur + sheet.properties.SetVector(ShaderIDs.BlurOffset, new Vector4(0, settings.BlurRadius / context.screenHeight, 0, 0)); + context.command.BlitFullscreenTriangle(mipUpH, mipUpV, sheet, 0); + + lastUp = mipUpV; + } + + + // Render blurred texture in blend pass + cmd.BlitFullscreenTriangle(lastUp, context.destination, sheet, 1); + + // Cleanup + for (int i = 0; i < settings.Iteration; i++) + { + if (m_Pyramid[i].down_vertical != lastUp) + cmd.ReleaseTemporaryRT(m_Pyramid[i].down_vertical); + if (m_Pyramid[i].down_horizontal != lastUp) + cmd.ReleaseTemporaryRT(m_Pyramid[i].down_horizontal); + if (m_Pyramid[i].up_horizontal != lastUp) + cmd.ReleaseTemporaryRT(m_Pyramid[i].up_horizontal); + if (m_Pyramid[i].up_vertical != lastUp) + cmd.ReleaseTemporaryRT(m_Pyramid[i].up_vertical); + } + + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/DualGaussianBlur/DualGaussianBlur.cs.meta b/Assets/X-PostProcessing/Effects/DualGaussianBlur/DualGaussianBlur.cs.meta new file mode 100644 index 000000000..fb9c8faa6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualGaussianBlur/DualGaussianBlur.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 078dd948866cdbc45847016fec126b10 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualGaussianBlur/Editor.meta b/Assets/X-PostProcessing/Effects/DualGaussianBlur/Editor.meta new file mode 100644 index 000000000..fe68c045f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualGaussianBlur/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9ec2bace935b92e49962a6effe509596 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualGaussianBlur/Editor/DualGaussianBlurEditor.cs b/Assets/X-PostProcessing/Effects/DualGaussianBlur/Editor/DualGaussianBlurEditor.cs new file mode 100644 index 000000000..84b5fe8e9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualGaussianBlur/Editor/DualGaussianBlurEditor.cs @@ -0,0 +1,49 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(DualGaussianBlur))] + public sealed class DualGaussianBlurEditor : PostProcessEffectEditor + { + + SerializedParameterOverride BlurRadius; + SerializedParameterOverride Iteration; + SerializedParameterOverride RTDownScaling; + + public override void OnEnable() + { + BlurRadius = FindParameterOverride(x => x.BlurRadius); + Iteration = FindParameterOverride(x => x.Iteration); + RTDownScaling = FindParameterOverride(x => x.RTDownScaling); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(BlurRadius); + PropertyField(Iteration); + PropertyField(RTDownScaling); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/DualGaussianBlur/Editor/DualGaussianBlurEditor.cs.meta b/Assets/X-PostProcessing/Effects/DualGaussianBlur/Editor/DualGaussianBlurEditor.cs.meta new file mode 100644 index 000000000..913190eab --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualGaussianBlur/Editor/DualGaussianBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e30d10625ce46764e9cf0999ebd71500 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualGaussianBlur/README.md b/Assets/X-PostProcessing/Effects/DualGaussianBlur/README.md new file mode 100644 index 000000000..14a8d82c5 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualGaussianBlur/README.md @@ -0,0 +1,16 @@ + +# Dual Gaussian Blur + +## Source Code List +- [Shader Code](Shader/DualGaussianBlur.shader) +- [C# Code](DualGaussianBlur.cs) +- [Editor Code](Editor/DualGaussianBlurEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DualGaussianBlur/DualGaussianBlurProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DualGaussianBlur/DualGaussianBlur.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DualGaussianBlur/DualGaussianBlur.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/DualGaussianBlur/README.md.meta b/Assets/X-PostProcessing/Effects/DualGaussianBlur/README.md.meta new file mode 100644 index 000000000..795f6915f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualGaussianBlur/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: be4b9c53970bb9147894e1f72b079bd5 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualGaussianBlur/Shader.meta b/Assets/X-PostProcessing/Effects/DualGaussianBlur/Shader.meta new file mode 100644 index 000000000..d157cc7b4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualGaussianBlur/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d58b12754ed050c45bc559890c94c19f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualGaussianBlur/Shader/DualGaussianBlur.shader b/Assets/X-PostProcessing/Effects/DualGaussianBlur/Shader/DualGaussianBlur.shader new file mode 100644 index 000000000..708b5fdac --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualGaussianBlur/Shader/DualGaussianBlur.shader @@ -0,0 +1,102 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/DualGaussianBlur" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half4 _BlurOffset; + + struct v2f + { + float4 pos: POSITION; + float2 uv: TEXCOORD0; + + float4 uv01: TEXCOORD1; + float4 uv23: TEXCOORD2; + float4 uv45: TEXCOORD3; + }; + + v2f VertGaussianBlur(AttributesDefault v) + { + v2f o; + o.pos = float4(v.vertex.xy, 0, 1); + + o.uv.xy = TransformTriangleVertexToUV(o.pos.xy); + + #if UNITY_UV_STARTS_AT_TOP + o.uv = o.uv * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + //UNITY_SINGLE_PASS_STEREO + o.uv = TransformStereoScreenSpaceTex(o.uv, 1.0); + + o.uv01 = o.uv.xyxy + _BlurOffset.xyxy * float4(1, 1, -1, -1); + o.uv23 = o.uv.xyxy + _BlurOffset.xyxy * float4(1, 1, -1, -1) * 2.0; + o.uv45 = o.uv.xyxy + _BlurOffset.xyxy * float4(1, 1, -1, -1) * 6.0; + + return o; + } + + float4 FragGaussianBlur(v2f i): SV_Target + { + half4 color = float4(0, 0, 0, 0); + + color += 0.40 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv); + color += 0.15 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv01.xy); + color += 0.15 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv01.zw); + color += 0.10 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv23.xy); + color += 0.10 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv23.zw); + color += 0.05 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv45.xy); + color += 0.05 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv45.zw); + + return color; + } + + + float4 FragCombine(VaryingsDefault i): SV_Target + { + return SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + } + + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertGaussianBlur + #pragma fragment FragGaussianBlur + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragCombine + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/DualGaussianBlur/Shader/DualGaussianBlur.shader.meta b/Assets/X-PostProcessing/Effects/DualGaussianBlur/Shader/DualGaussianBlur.shader.meta new file mode 100644 index 000000000..3de00b43b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualGaussianBlur/Shader/DualGaussianBlur.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 81884ca36274a004b987ac7b461f8896 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualKawaseBlur.meta b/Assets/X-PostProcessing/Effects/DualKawaseBlur.meta new file mode 100644 index 000000000..5c427af8f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualKawaseBlur.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: abdab93f171c0e34daed89a5d1bf530f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualKawaseBlur/DualKawaseBlur.cs b/Assets/X-PostProcessing/Effects/DualKawaseBlur/DualKawaseBlur.cs new file mode 100644 index 000000000..fdcf8c7fa --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualKawaseBlur/DualKawaseBlur.cs @@ -0,0 +1,137 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(DualKawaseBlurRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/DualKawaseBlur")] + public class DualKawaseBlur : PostProcessEffectSettings + { + + [Range(0.0f, 15.0f)] + public FloatParameter BlurRadius = new FloatParameter { value = 5.0f }; + + [Range(1.0f, 10.0f)] + public IntParameter Iteration = new IntParameter { value = 4 }; + + [Range(1, 10)] + public FloatParameter RTDownScaling = new FloatParameter { value = 2 }; + } + + public sealed class DualKawaseBlurRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-DualKawaseBlur"; + private Shader shader; + + // [down,up] + Level[] m_Pyramid; + const int k_MaxPyramidSize = 16; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/DualKawaseBlur"); + + m_Pyramid = new Level[k_MaxPyramidSize]; + + for (int i = 0; i < k_MaxPyramidSize; i++) + { + m_Pyramid[i] = new Level + { + down = Shader.PropertyToID("_BlurMipDown" + i), + up = Shader.PropertyToID("_BlurMipUp" + i) + }; + } + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + + internal static readonly int BlurOffset = Shader.PropertyToID("_Offset"); + internal static readonly int BufferRT1 = Shader.PropertyToID("_BufferRT1"); + internal static readonly int BufferRT2 = Shader.PropertyToID("_BufferRT2"); + } + + + struct Level + { + internal int down; + internal int up; + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + + int tw = (int)(context.screenWidth / settings.RTDownScaling); + int th = (int)(context.screenHeight / settings.RTDownScaling); + + sheet.properties.SetFloat(ShaderIDs.BlurOffset, settings.BlurRadius); + + + // Downsample + RenderTargetIdentifier lastDown = context.source; + for (int i = 0; i < settings.Iteration; i++) + { + int mipDown = m_Pyramid[i].down; + int mipUp = m_Pyramid[i].up; + context.GetScreenSpaceTemporaryRT(cmd, mipDown, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw, th); + context.GetScreenSpaceTemporaryRT(cmd, mipUp, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw, th); + cmd.BlitFullscreenTriangle(lastDown, mipDown, sheet, 0); + + lastDown = mipDown; + tw = Mathf.Max(tw / 2, 1); + th = Mathf.Max(th / 2, 1); + } + + // Upsample + int lastUp = m_Pyramid[settings.Iteration - 1].down; + for (int i = settings.Iteration - 2; i >= 0; i--) + { + int mipUp = m_Pyramid[i].up; + + cmd.BlitFullscreenTriangle(lastUp, mipUp, sheet, 1); + lastUp = mipUp; + } + + + // Render blurred texture in blend pass + cmd.BlitFullscreenTriangle(lastUp, context.destination, sheet, 1); + + // Cleanup + for (int i = 0; i < settings.Iteration; i++) + { + if (m_Pyramid[i].down != lastUp) + cmd.ReleaseTemporaryRT(m_Pyramid[i].down); + if (m_Pyramid[i].up != lastUp) + cmd.ReleaseTemporaryRT(m_Pyramid[i].up); + } + + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/DualKawaseBlur/DualKawaseBlur.cs.meta b/Assets/X-PostProcessing/Effects/DualKawaseBlur/DualKawaseBlur.cs.meta new file mode 100644 index 000000000..c3f272148 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualKawaseBlur/DualKawaseBlur.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: cdb8901486ed154489954ac45ed02d02 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualKawaseBlur/Editor.meta b/Assets/X-PostProcessing/Effects/DualKawaseBlur/Editor.meta new file mode 100644 index 000000000..a51747ed3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualKawaseBlur/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9a6c8da29cd24aa42880e314d61b769c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualKawaseBlur/Editor/DualKawaseBlurEditor.cs b/Assets/X-PostProcessing/Effects/DualKawaseBlur/Editor/DualKawaseBlurEditor.cs new file mode 100644 index 000000000..677c26c3a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualKawaseBlur/Editor/DualKawaseBlurEditor.cs @@ -0,0 +1,52 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(DualKawaseBlur))] + public sealed class DualKawaseBlurEditor : PostProcessEffectEditor + { + + SerializedParameterOverride BlurRadius; + SerializedParameterOverride Iteration; + SerializedParameterOverride RTDownScaling; + + + public override void OnEnable() + { + BlurRadius = FindParameterOverride(x => x.BlurRadius); + Iteration = FindParameterOverride(x => x.Iteration); + RTDownScaling = FindParameterOverride(x => x.RTDownScaling); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(BlurRadius); + PropertyField(Iteration); + PropertyField(RTDownScaling); + } + + + } +} + diff --git a/Assets/X-PostProcessing/Effects/DualKawaseBlur/Editor/DualKawaseBlurEditor.cs.meta b/Assets/X-PostProcessing/Effects/DualKawaseBlur/Editor/DualKawaseBlurEditor.cs.meta new file mode 100644 index 000000000..9d6e307cd --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualKawaseBlur/Editor/DualKawaseBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: cced5a375979eba4286d110ad72f47fc +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualKawaseBlur/README.md b/Assets/X-PostProcessing/Effects/DualKawaseBlur/README.md new file mode 100644 index 000000000..7e45d9b1d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualKawaseBlur/README.md @@ -0,0 +1,16 @@ + +# Dual Kawase Blur + +## Source Code List +- [Shader Code](Shader/DualKawaseBlur.shader) +- [C# Code](DualKawaseBlur.cs) +- [Editor Code](Editor/DualKawaseBlurEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DualKawaseBlur/DualKawaseBlurProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DualKawaseBlur/DualKawaseBlur.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DualKawaseBlur/DualKawaseBlur.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/DualKawaseBlur/README.md.meta b/Assets/X-PostProcessing/Effects/DualKawaseBlur/README.md.meta new file mode 100644 index 000000000..46b1ebcdd --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualKawaseBlur/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: df4092ec40782fa4ab06af8716d949a7 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualKawaseBlur/Shader.meta b/Assets/X-PostProcessing/Effects/DualKawaseBlur/Shader.meta new file mode 100644 index 000000000..c6d06f0a4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualKawaseBlur/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7c83ccc1f3fa109468cfc2bff5a6c7f4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualKawaseBlur/Shader/DualKawaseBlur.shader b/Assets/X-PostProcessing/Effects/DualKawaseBlur/Shader/DualKawaseBlur.shader new file mode 100644 index 000000000..388da65d4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualKawaseBlur/Shader/DualKawaseBlur.shader @@ -0,0 +1,147 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/DualKawaseBlur" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform float4 _MainTex_ST; + uniform half _Offset; + + + struct v2f_DownSample + { + float4 vertex: SV_POSITION; + float2 texcoord: TEXCOORD0; + float2 uv: TEXCOORD1; + float4 uv01: TEXCOORD2; + float4 uv23: TEXCOORD3; + }; + + + struct v2f_UpSample + { + float4 vertex: SV_POSITION; + float2 texcoord: TEXCOORD0; + float4 uv01: TEXCOORD1; + float4 uv23: TEXCOORD2; + float4 uv45: TEXCOORD3; + float4 uv67: TEXCOORD4; + }; + + + v2f_DownSample Vert_DownSample(AttributesDefault v) + { + v2f_DownSample o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + float2 uv = TRANSFORM_TEX(o.texcoord, _MainTex); + + _MainTex_TexelSize *= 0.5; + o.uv = uv; + o.uv01.xy = uv - _MainTex_TexelSize * float2(1 + _Offset, 1 + _Offset);//top right + o.uv01.zw = uv + _MainTex_TexelSize * float2(1 + _Offset, 1 + _Offset);//bottom left + o.uv23.xy = uv - float2(_MainTex_TexelSize.x, -_MainTex_TexelSize.y) * float2(1 + _Offset, 1 + _Offset);//top left + o.uv23.zw = uv + float2(_MainTex_TexelSize.x, -_MainTex_TexelSize.y) * float2(1 + _Offset, 1 + _Offset);//bottom right + + return o; + } + + half4 Frag_DownSample(v2f_DownSample i): SV_Target + { + half4 sum = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv) * 4; + sum += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv01.xy); + sum += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv01.zw); + sum += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv23.xy); + sum += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv23.zw); + + return sum * 0.125; + } + + + v2f_UpSample Vert_UpSample(AttributesDefault v) + { + v2f_UpSample o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + float2 uv = TRANSFORM_TEX(o.texcoord, _MainTex); + + _MainTex_TexelSize *= 0.5; + _Offset = float2(1 + _Offset, 1 + _Offset); + + o.uv01.xy = uv + float2(-_MainTex_TexelSize.x * 2, 0) * _Offset; + o.uv01.zw = uv + float2(-_MainTex_TexelSize.x, _MainTex_TexelSize.y) * _Offset; + o.uv23.xy = uv + float2(0, _MainTex_TexelSize.y * 2) * _Offset; + o.uv23.zw = uv + _MainTex_TexelSize * _Offset; + o.uv45.xy = uv + float2(_MainTex_TexelSize.x * 2, 0) * _Offset; + o.uv45.zw = uv + float2(_MainTex_TexelSize.x, -_MainTex_TexelSize.y) * _Offset; + o.uv67.xy = uv + float2(0, -_MainTex_TexelSize.y * 2) * _Offset; + o.uv67.zw = uv - _MainTex_TexelSize * _Offset; + + return o; + } + + half4 Frag_UpSample(v2f_UpSample i): SV_Target + { + half4 sum = 0; + sum += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv01.xy); + sum += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv01.zw) * 2; + sum += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv23.xy); + sum += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv23.zw) * 2; + sum += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv45.xy); + sum += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv45.zw) * 2; + sum += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv67.xy); + sum += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv67.zw) * 2; + + return sum * 0.0833; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex Vert_DownSample + #pragma fragment Frag_DownSample + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex Vert_UpSample + #pragma fragment Frag_UpSample + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/DualKawaseBlur/Shader/DualKawaseBlur.shader.meta b/Assets/X-PostProcessing/Effects/DualKawaseBlur/Shader/DualKawaseBlur.shader.meta new file mode 100644 index 000000000..4ebb4445c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualKawaseBlur/Shader/DualKawaseBlur.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: df1bc5f7812c2f34a888048481602b57 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualTentBlur.meta b/Assets/X-PostProcessing/Effects/DualTentBlur.meta new file mode 100644 index 000000000..bdaf4b20c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualTentBlur.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3923d54b280ee644e994d434e46b8fad +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualTentBlur/DualTentBlur.cs b/Assets/X-PostProcessing/Effects/DualTentBlur/DualTentBlur.cs new file mode 100644 index 000000000..be4314ead --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualTentBlur/DualTentBlur.cs @@ -0,0 +1,132 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(DualTentBlurRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/DualTentBlur")] + public class DualTentBlur : PostProcessEffectSettings + { + + [Range(0.0f, 15.0f)] + public FloatParameter BlurRadius = new FloatParameter { value = 5.0f }; + + [Range(1.0f, 8.0f)] + public IntParameter Iteration = new IntParameter { value = 4 }; + + [Range(1, 10)] + public FloatParameter RTDownScaling = new FloatParameter { value = 2 }; + } + + public sealed class DualTentBlurRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-DualTentBlur"; + private Shader shader; + + // [down,up] + Level[] m_Pyramid; + const int k_MaxPyramidSize = 16; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/DualTentBlur"); + + m_Pyramid = new Level[k_MaxPyramidSize]; + + for (int i = 0; i < k_MaxPyramidSize; i++) + { + m_Pyramid[i] = new Level + { + down = Shader.PropertyToID("_BlurMipDown" + i), + up = Shader.PropertyToID("_BlurMipUp" + i) + }; + } + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int BlurOffset = Shader.PropertyToID("_BlurOffset"); + internal static readonly int BufferRT1 = Shader.PropertyToID("_BufferRT1"); + internal static readonly int BufferRT2 = Shader.PropertyToID("_BufferRT2"); + } + + struct Level + { + internal int down; + internal int up; + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + int tw = (int)(context.screenWidth / settings.RTDownScaling); + int th = (int)(context.screenHeight / settings.RTDownScaling); + + Vector4 BlurOffset = new Vector4(settings.BlurRadius / (float)context.screenWidth, settings.BlurRadius / (float)context.screenHeight, 0, 0); + sheet.properties.SetVector(ShaderIDs.BlurOffset, BlurOffset); + // Downsample + RenderTargetIdentifier lastDown = context.source; + for (int i = 0; i < settings.Iteration; i++) + { + int mipDown = m_Pyramid[i].down; + int mipUp = m_Pyramid[i].up; + context.GetScreenSpaceTemporaryRT(cmd, mipDown, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw, th); + context.GetScreenSpaceTemporaryRT(cmd, mipUp, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw, th); + cmd.BlitFullscreenTriangle(lastDown, mipDown, sheet, 0); + + lastDown = mipDown; + tw = Mathf.Max(tw / 2, 1); + th = Mathf.Max(th / 2, 1); + } + + // Upsample + int lastUp = m_Pyramid[settings.Iteration - 1].down; + for (int i = settings.Iteration - 2; i >= 0; i--) + { + int mipUp = m_Pyramid[i].up; + cmd.BlitFullscreenTriangle(lastUp, mipUp, sheet, 0); + lastUp = mipUp; + } + + + // Render blurred texture in blend pass + cmd.BlitFullscreenTriangle(lastUp, context.destination, sheet, 1); + + // Cleanup + for (int i = 0; i < settings.Iteration; i++) + { + if (m_Pyramid[i].down != lastUp) + cmd.ReleaseTemporaryRT(m_Pyramid[i].down); + if (m_Pyramid[i].up != lastUp) + cmd.ReleaseTemporaryRT(m_Pyramid[i].up); + } + + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/DualTentBlur/DualTentBlur.cs.meta b/Assets/X-PostProcessing/Effects/DualTentBlur/DualTentBlur.cs.meta new file mode 100644 index 000000000..9ebde2bcc --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualTentBlur/DualTentBlur.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: bdf4265fe7bedca49b8bd2f386b8b7f2 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualTentBlur/Editor.meta b/Assets/X-PostProcessing/Effects/DualTentBlur/Editor.meta new file mode 100644 index 000000000..9098753fb --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualTentBlur/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bf12dd0198a56e34c8f89bcf2339cddb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualTentBlur/Editor/DualTentBlurEditor.cs b/Assets/X-PostProcessing/Effects/DualTentBlur/Editor/DualTentBlurEditor.cs new file mode 100644 index 000000000..b8f51d306 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualTentBlur/Editor/DualTentBlurEditor.cs @@ -0,0 +1,50 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(DualTentBlur))] + public sealed class DualTentBlurEditor : PostProcessEffectEditor + { + + SerializedParameterOverride BlurRadius; + SerializedParameterOverride Iteration; + SerializedParameterOverride RTDownScaling; + + public override void OnEnable() + { + BlurRadius = FindParameterOverride(x => x.BlurRadius); + Iteration = FindParameterOverride(x => x.Iteration); + RTDownScaling = FindParameterOverride(x => x.RTDownScaling); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(BlurRadius); + PropertyField(Iteration); + PropertyField(RTDownScaling); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/DualTentBlur/Editor/DualTentBlurEditor.cs.meta b/Assets/X-PostProcessing/Effects/DualTentBlur/Editor/DualTentBlurEditor.cs.meta new file mode 100644 index 000000000..8f441f66e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualTentBlur/Editor/DualTentBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 6667893e8ee195b429eeb0b5e3af0de2 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualTentBlur/README.md b/Assets/X-PostProcessing/Effects/DualTentBlur/README.md new file mode 100644 index 000000000..409754c56 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualTentBlur/README.md @@ -0,0 +1,16 @@ + +# Dual Tent Blur + +## Source Code List +- [Shader Code](Shader/DualTentBlur.shader) +- [C# Code](DualTentBlur.cs) +- [Editor Code](Editor/DualTentBlurEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DualTentBlur/DualTentBlurProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DualTentBlur/DualTentBlur.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/DualTentBlur/DualTentBlur.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/DualTentBlur/README.md.meta b/Assets/X-PostProcessing/Effects/DualTentBlur/README.md.meta new file mode 100644 index 000000000..7d43bca79 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualTentBlur/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: cc94477ea075b4e4882d47abf464201c +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualTentBlur/Shader.meta b/Assets/X-PostProcessing/Effects/DualTentBlur/Shader.meta new file mode 100644 index 000000000..aac4721db --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualTentBlur/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bfc271bb8ee38d04f8393cfd6b51aa2c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/DualTentBlur/Shader/DualTentBlur.shader b/Assets/X-PostProcessing/Effects/DualTentBlur/Shader/DualTentBlur.shader new file mode 100644 index 000000000..aa280a630 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualTentBlur/Shader/DualTentBlur.shader @@ -0,0 +1,81 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/DualTentBlur" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half4 _BlurOffset; + + // 9-tap tent filter + half4 TentFilter_9Tap(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize) + { + float4 d = texelSize.xyxy * float4(1.0, 1.0, -1.0, 0.0); + + half4 s; + s = SAMPLE_TEXTURE2D(tex, samplerTex, uv - d.xy); + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv - d.wy) * 2.0; // 1 MAD + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv - d.zy); // 1 MAD + + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.zw) * 2.0; // 1 MAD + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv) * 4.0; // 1 MAD + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.xw) * 2.0; // 1 MAD + + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.zy); + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.wy) * 2.0; // 1 MAD + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.xy); + + return s * (1.0 / 16.0); + } + + float4 FragTentBlur(VaryingsDefault i): SV_Target + { + return TentFilter_9Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, _BlurOffset.xy).rgba; + } + + float4 FragCombine(VaryingsDefault i): SV_Target + { + return SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragTentBlur + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragCombine + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/DualTentBlur/Shader/DualTentBlur.shader.meta b/Assets/X-PostProcessing/Effects/DualTentBlur/Shader/DualTentBlur.shader.meta new file mode 100644 index 000000000..049594451 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/DualTentBlur/Shader/DualTentBlur.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1f24dc1f4f530c44abd12d5e2a4a5c79 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts.meta new file mode 100644 index 000000000..f9080ca37 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4f63baee9ccbe024983a22cdd60c8b7c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/EdgeDetectionRoberts.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/EdgeDetectionRoberts.cs new file mode 100644 index 000000000..cb9942a4b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/EdgeDetectionRoberts.cs @@ -0,0 +1,79 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(EdgeDetectionRobertsRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/EdgeDetection/EdgeDetectionRoberts")] + public class EdgeDetectionRoberts : PostProcessEffectSettings + { + + [Range(0.05f, 5.0f)] + public FloatParameter edgeWidth = new FloatParameter { value = 0.3f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter edgeColor = new ColorParameter { value = new Color(0.0f, 0.0f, 0.0f, 1) }; + + [Range(0.0f, 1.0f)] + public FloatParameter backgroundFade = new FloatParameter { value = 1f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter backgroundColor = new ColorParameter { value = new Color(1.0f, 1.0f, 1.0f, 1) }; + } + + public sealed class EdgeDetectionRobertsRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-EdgeDetectionRoberts"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/EdgeDetectionRoberts"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int EdgeColor = Shader.PropertyToID("_EdgeColor"); + internal static readonly int BackgroundColor = Shader.PropertyToID("_BackgroundColor"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + + sheet.properties.SetVector(ShaderIDs.Params, new Vector2(settings.edgeWidth, settings.backgroundFade)); + sheet.properties.SetColor(ShaderIDs.EdgeColor, settings.edgeColor); + sheet.properties.SetColor(ShaderIDs.BackgroundColor, settings.backgroundColor); + + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/EdgeDetectionRoberts.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/EdgeDetectionRoberts.cs.meta new file mode 100644 index 000000000..c168cc214 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/EdgeDetectionRoberts.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2f2bae125e8b72241b38b94373f3c521 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Editor.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Editor.meta new file mode 100644 index 000000000..43b92ea3e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7f7f79c17cb05354299a5212692cbf40 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Editor/EdgeDetectionRobertsEditor.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Editor/EdgeDetectionRobertsEditor.cs new file mode 100644 index 000000000..9979cbdfe --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Editor/EdgeDetectionRobertsEditor.cs @@ -0,0 +1,57 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(EdgeDetectionRoberts))] + public sealed class EdgeDetectionRobertsEditor : PostProcessEffectEditor + { + + SerializedParameterOverride edgeWidth; + SerializedParameterOverride backgroundFade; + SerializedParameterOverride edgeColor; + SerializedParameterOverride backgroundColor; + + + public override void OnEnable() + { + edgeWidth = FindParameterOverride(x => x.edgeWidth); + backgroundFade = FindParameterOverride(x => x.backgroundFade); + edgeColor = FindParameterOverride(x => x.edgeColor); + backgroundColor = FindParameterOverride(x => x.backgroundColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Edge Property"); + PropertyField(edgeWidth); + PropertyField(edgeColor, new GUIContent("Edge Color")); + EditorUtilities.DrawHeaderLabel("Background Property"); + PropertyField(backgroundFade); + PropertyField(backgroundColor); + + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Editor/EdgeDetectionRobertsEditor.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Editor/EdgeDetectionRobertsEditor.cs.meta new file mode 100644 index 000000000..9f53f2582 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Editor/EdgeDetectionRobertsEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 3c23eb17650b5a04fbfa22af4d124dc3 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/README.md b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/README.md new file mode 100644 index 000000000..a5f03b312 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/README.md @@ -0,0 +1,20 @@ + +# Edge Detection Roberts + +## Source Code List +- [Shader Code](Shader/EdgeDetectionRoberts.shader) +- [C# Code](EdgeDetectionRoberts.cs) +- [Editor Code](Editor/EdgeDetectionRobertsEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionRoberts/EdgeDetectionRobertsProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionRoberts/EdgeDetectionRoberts1.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionRoberts/EdgeDetectionRoberts2.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionRoberts/EdgeDetectionRoberts1.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionRoberts/EdgeDetectionRoberts2.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/README.md.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/README.md.meta new file mode 100644 index 000000000..3d9fd1a64 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2e91a5e8cb0e98e47bfc1ae0f66565aa +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Shader.meta new file mode 100644 index 000000000..49823184f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fd37fad31c0692144ae95dbf78f1a7c1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Shader/EdgeDetectionRoberts.shader b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Shader/EdgeDetectionRoberts.shader new file mode 100644 index 000000000..fdb0cfeb8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Shader/EdgeDetectionRoberts.shader @@ -0,0 +1,210 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/EdgeDetectionRoberts" +{ + + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + half2 _Params; + half4 _EdgeColor; + half4 _BackgroundColor; + + #define _EdgeWidth _Params.x + #define _BackgroundFade _Params.y + + + float intensity(in float4 color) + { + return sqrt((color.x * color.x) + (color.y * color.y) + (color.z * color.z)); + } + + float sobel(float stepx, float stepy, float2 center) + { + // get samples around pixel + float topLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, stepy))); + float bottomLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, -stepy))); + float topRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, stepy))); + float bottomRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, -stepy))); + + // Roberts Operator + //X = -1 0 Y = 0 -1 + // 0 1 1 0 + + // Gx = sum(kernelX[i][j]*image[i][j]) + float Gx = -1.0 * topLeft + 1.0 * bottomRight; + + // Gy = sum(kernelY[i][j]*image[i][j]); + float Gy = -1.0 * topRight + 1.0 * bottomLeft; + + + float sobelGradient = sqrt((Gx * Gx) + (Gy * Gy)); + return sobelGradient; + } + + + + half4 Frag(VaryingsDefault i): SV_Target + { + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + float sobelGradient = sobel(_EdgeWidth / _ScreenParams.x, _EdgeWidth / _ScreenParams.y, i.texcoord); + + half4 backgroundColor = lerp(sceneColor, _BackgroundColor, _BackgroundFade); + + float3 edgeColor = lerp(backgroundColor.rgb, _EdgeColor.rgb, sobelGradient); + + return float4(edgeColor, 1); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } + + + + + + + + + + + + + + + + + + + + //HLSLINCLUDE + // + //#include "../../../Shaders/StdLib.hlsl" + //#include "../../../Shaders/XPostProcessing.hlsl" + // + // + // + //half _Float1; + //half _Float2; + //half _Float3; + //half4 _Color1; + // + + //struct v2f + //{ + // float2 uvRoberts[5] : TEXCOORD0; + + // float4 vertex : SV_POSITION; + //}; + + + //v2f vert_Roberts(appdata v) + //{ + // v2f o; + // o.vertex = UnityObjectToClipPos(v.vertex); + // o.uvRoberts[0] = v.uv + float2(-1, -1) * _MainTex_TexelSize * _SampleRange; + // o.uvRoberts[1] = v.uv + float2(1, -1) * _MainTex_TexelSize * _SampleRange; + // o.uvRoberts[2] = v.uv + float2(-1, 1) * _MainTex_TexelSize * _SampleRange; + // o.uvRoberts[3] = v.uv + float2(1, 1) * _MainTex_TexelSize * _SampleRange; + // o.uvRoberts[4] = v.uv; + // return o; + //} + + //float Roberts(v2f i) + //{ + // const float Gx[4] = + // { + // -1, 0, + // 0, 1 + // }; + + // const float Gy[4] = + // { + // 0, -1, + // 1, 0 + // }; + + // float edgex, edgey; + // for (int j = 0; j < 4; j++) + // { + // fixed4 col = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uvRoberts[j]); + // float lum = Luminance(col.rgb); + + // edgex += lum * Gx[j]; + // edgey += lum * Gy[j]; + // } + // return 1 - abs(edgex) - abs(edgey); + //} + + //fixed4 frag_Roberts(v2f i) : SV_Target + //{ + // fixed4 col = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uvRoberts[4]); + // float g = Roberts(i); + // g = pow(g, _EdgePower); + // col.rgb = lerp(_EdgeColor, _NonEdgeColor, g); + + // return col; + //} + + + ////half4 Frag(VaryingsDefault i): SV_Target + ////{ + //// + //// half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + //// half3 col = 0.5 + 0.5 * cos(_Time.y + i.texcoord.xyx + float3(0, 2, 4)); + //// + //// half3 finalColor = lerp(sceneColor.rgb, col, _Float1 * 0.1); + //// + //// return half4(finalColor, 1.0); + ////} + //// + //ENDHLSL + // + + //SubShader + //{ + // Cull Off ZWrite Off ZTest Always + // + // Pass + // { + // HLSLPROGRAM + // + // #pragma vertex vert_Roberts + // #pragma fragment frag_Roberts + // + // ENDHLSL + // + // } + //} + } + + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Shader/EdgeDetectionRoberts.shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Shader/EdgeDetectionRoberts.shader.meta new file mode 100644 index 000000000..b0734da00 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Shader/EdgeDetectionRoberts.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a5e8504f7bef17d4fa9f7af959b51afb +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon.meta new file mode 100644 index 000000000..744d8971d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bbd464fdaa6428c429225cc0121b9a3b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/EdgeDetectionRobertsNeon.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/EdgeDetectionRobertsNeon.cs new file mode 100644 index 000000000..9359dc1e9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/EdgeDetectionRobertsNeon.cs @@ -0,0 +1,76 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(EdgeDetectionRobertsNeonRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/EdgeDetection/EdgeDetectionRobertsNeon")] + public class EdgeDetectionRobertsNeon : PostProcessEffectSettings + { + + [Range(0.05f, 5.0f)] + public FloatParameter EdgeWidth = new FloatParameter { value = 1f }; + + [Range(0.0f, 1.0f)] + public FloatParameter BackgroundFade = new FloatParameter { value = 1f }; + + [Range(0.2f, 2.0f)] + public FloatParameter Brigtness = new FloatParameter { value = 1f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter BackgroundColor = new ColorParameter { value = new Color(0.0f, 0.0f, 0.0f, 1) }; + } + + public sealed class EdgeDetectionRobertsNeonRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-EdgeDetectionRobertsNeon"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/EdgeDetectionRobertsNeon"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int BackgroundColor = Shader.PropertyToID("_BackgroundColor"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector3(settings.EdgeWidth, settings.Brigtness, settings.BackgroundFade)); + sheet.properties.SetColor(ShaderIDs.BackgroundColor, settings.BackgroundColor); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/EdgeDetectionRobertsNeon.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/EdgeDetectionRobertsNeon.cs.meta new file mode 100644 index 000000000..d64b0efc0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/EdgeDetectionRobertsNeon.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 4f28a4ba68df41f489a36a1e97ec64f9 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Editor.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Editor.meta new file mode 100644 index 000000000..b90f26b50 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: faf7fd857b06b47428fe8e394b6f8d1e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Editor/EdgeDetectionRobertsNeonEditor.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Editor/EdgeDetectionRobertsNeonEditor.cs new file mode 100644 index 000000000..eb0deb1f1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Editor/EdgeDetectionRobertsNeonEditor.cs @@ -0,0 +1,59 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(EdgeDetectionRobertsNeon))] + public sealed class EdgeDetectionRobertsNeonEditor : PostProcessEffectEditor + { + + SerializedParameterOverride EdgeWidth; + SerializedParameterOverride Brigtness; + SerializedParameterOverride BackgroundFade; + SerializedParameterOverride BackgroundColor; + + public override void OnEnable() + { + EdgeWidth = FindParameterOverride(x => x.EdgeWidth); + Brigtness = FindParameterOverride(x => x.Brigtness); + BackgroundFade = FindParameterOverride(x => x.BackgroundFade); + BackgroundColor = FindParameterOverride(x => x.BackgroundColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Edge Property"); + PropertyField(EdgeWidth); + + EditorUtilities.DrawHeaderLabel("Background Property"); + PropertyField(BackgroundFade); + PropertyField(BackgroundColor); + + EditorUtilities.DrawHeaderLabel("Brigtness"); + PropertyField(Brigtness); + + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Editor/EdgeDetectionRobertsNeonEditor.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Editor/EdgeDetectionRobertsNeonEditor.cs.meta new file mode 100644 index 000000000..6a757eef4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Editor/EdgeDetectionRobertsNeonEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 3a7236d484cd3ef4382f0d954479c0a3 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/README.md b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/README.md new file mode 100644 index 000000000..7bbd0b369 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/README.md @@ -0,0 +1,17 @@ + +# Edge Detection Roberts Neon + +## Source Code List +- [Shader Code](Shader/EdgeDetectionRobertsNeon.shader) +- [C# Code](EdgeDetectionRobertsNeon.cs) +- [Editor Code](Editor/EdgeDetectionRobertsNeonEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionRobertsNeon/EdgeDetectionRobertsNeonProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionRobertsNeon/EdgeDetectionRobertsNeon.jpg) + + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionRobertsNeon/EdgeDetectionRobertsNeon.gif) diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/README.md.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/README.md.meta new file mode 100644 index 000000000..d3cf7e029 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d1c0cf02685e9b14bb8faff51c549ada +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Shader.meta new file mode 100644 index 000000000..91014ab8f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a480d9d6d5185a947880e04241337aba +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Shader/EdgeDetectionRobertsNeon.shader b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Shader/EdgeDetectionRobertsNeon.shader new file mode 100644 index 000000000..5ba79da4e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Shader/EdgeDetectionRobertsNeon.shader @@ -0,0 +1,95 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/EdgeDetectionRobertsNeon" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + half4 _Params; + half4 _BackgroundColor; + + #define _EdgeWidth _Params.x + #define _Brigtness _Params.y + #define _BackgroundFade _Params.z + + + + float intensity(in float4 color) + { + return sqrt((color.x * color.x) + (color.y * color.y) + (color.z * color.z)); + } + + float sobel(float stepx, float stepy, float2 center) + { + // get samples around pixel + float topLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, stepy))); + float bottomLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, -stepy))); + float topRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, stepy))); + float bottomRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, -stepy))); + + // Roberts Operator + //X = -1 0 Y = 0 -1 + // 0 1 1 0 + + // Gx = sum(kernelX[i][j]*image[i][j]) + float Gx = -1.0 * topLeft + 1.0 * bottomRight; + + // Gy = sum(kernelY[i][j]*image[i][j]); + float Gy = -1.0 * topRight + 1.0 * bottomLeft; + + + float sobelGradient = sqrt((Gx * Gx) + (Gy * Gy)); + return sobelGradient; + } + + + + half4 Frag(VaryingsDefault i) : SV_Target + { + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + float sobelGradient = sobel(_EdgeWidth / _ScreenParams.x, _EdgeWidth / _ScreenParams.y , i.texcoord); + + //BackgroundFading + half4 backgroundColor = lerp(sceneColor, _BackgroundColor, _BackgroundFade); + + //Edge Opacity + float3 edgeColor = lerp(backgroundColor.rgb, sceneColor.rgb, sobelGradient); + + return float4(edgeColor * _Brigtness, 1); + + } + + ENDHLSL + + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Shader/EdgeDetectionRobertsNeon.shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Shader/EdgeDetectionRobertsNeon.shader.meta new file mode 100644 index 000000000..d5f6b53b6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Shader/EdgeDetectionRobertsNeon.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6a5d5269f77f7f145bbb707f3d6d8cc5 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2.meta new file mode 100644 index 000000000..7ca61eff4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9898160e12d249d408ad10bcddbefac6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/EdgeDetectionRobertsNeonV2.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/EdgeDetectionRobertsNeonV2.cs new file mode 100644 index 000000000..a400d99b6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/EdgeDetectionRobertsNeonV2.cs @@ -0,0 +1,78 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(EdgeDetectionRobertsNeonV2Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/EdgeDetection/EdgeDetectionRobertsNeonV2")] + public class EdgeDetectionRobertsNeonV2 : PostProcessEffectSettings + { + [Range(0.05f, 5.0f)] + public FloatParameter EdgeWidth = new FloatParameter { value = 1f }; + + [Range(0.1f, 1.0f)] + public FloatParameter EdgeNeonFade = new FloatParameter { value = 1f }; + + [Range(0.0f, 1.0f)] + public FloatParameter BackgroundFade = new FloatParameter { value = 0f }; + + [Range(0.2f, 2.0f)] + public FloatParameter Brigtness = new FloatParameter { value = 1f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter BackgroundColor = new ColorParameter { value = new Color(0.0f, 0.0f, 0.0f, 1.0f) }; + } + + public sealed class EdgeDetectionRobertsNeonV2Renderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-EdgeDetectionRobertsNeonV2"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/EdgeDetectionRobertsNeonV2"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int BackgroundColor = Shader.PropertyToID("_BackgroundColor"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(settings.EdgeWidth, settings.EdgeNeonFade, settings.Brigtness, settings.BackgroundFade)); + sheet.properties.SetColor(ShaderIDs.BackgroundColor, settings.BackgroundColor); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/EdgeDetectionRobertsNeonV2.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/EdgeDetectionRobertsNeonV2.cs.meta new file mode 100644 index 000000000..28548959e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/EdgeDetectionRobertsNeonV2.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: fc726aec1b9e74b4497f36ba436761d8 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Editor.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Editor.meta new file mode 100644 index 000000000..b62a6825a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8a2549a1b84c3b245925d84556be899c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Editor/EdgeDetectionRobertsNeonV2Editor.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Editor/EdgeDetectionRobertsNeonV2Editor.cs new file mode 100644 index 000000000..d28fc9010 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Editor/EdgeDetectionRobertsNeonV2Editor.cs @@ -0,0 +1,61 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(EdgeDetectionRobertsNeonV2))] + public sealed class EdgeDetectionRobertsNeonV2Editor : PostProcessEffectEditor + { + + SerializedParameterOverride EdgeWidth; + SerializedParameterOverride EdgeNeonFade; + SerializedParameterOverride Brigtness; + SerializedParameterOverride BackgroundFade; + SerializedParameterOverride BackgroundColor; + + public override void OnEnable() + { + EdgeWidth = FindParameterOverride(x => x.EdgeWidth); + EdgeNeonFade = FindParameterOverride(x => x.EdgeNeonFade); + Brigtness = FindParameterOverride(x => x.Brigtness); + BackgroundFade = FindParameterOverride(x => x.BackgroundFade); + BackgroundColor = FindParameterOverride(x => x.BackgroundColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Edge Property"); + PropertyField(EdgeWidth); + PropertyField(EdgeNeonFade); + + EditorUtilities.DrawHeaderLabel("Background Property( For Edge Neon Fade <1 )"); + PropertyField(BackgroundFade); + PropertyField(BackgroundColor); + + EditorUtilities.DrawHeaderLabel("Edge Property"); + PropertyField(Brigtness); + + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Editor/EdgeDetectionRobertsNeonV2Editor.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Editor/EdgeDetectionRobertsNeonV2Editor.cs.meta new file mode 100644 index 000000000..78e87e274 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Editor/EdgeDetectionRobertsNeonV2Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ceb3cd2ad2e76684499fa76ade51c5e4 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/README.md b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/README.md new file mode 100644 index 000000000..4045c61e1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/README.md @@ -0,0 +1,17 @@ + +# Edge Detection Roberts Neon V2 + +## Source Code List +- [Shader Code](Shader/EdgeDetectionRobertsNeonV2.shader) +- [C# Code](EdgeDetectionRobertsNeonV2.cs) +- [Editor Code](Editor/EdgeDetectionRobertsNeonV2Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionRobertsNeonV2/EdgeDetectionRobertsNeonV2Property.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionRobertsNeonV2/EdgeDetectionRobertsNeonV2.jpg) + + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionRobertsNeonV2/EdgeDetectionRobertsNeonV2.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/README.md.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/README.md.meta new file mode 100644 index 000000000..85ae19f7b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 858e352abdea1bc4e826be07cc475887 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Shader.meta new file mode 100644 index 000000000..14c98d25f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4462cb0422d578d4cb4b981cbf736f27 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Shader/EdgeDetectionRobertsNeonV2.shader b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Shader/EdgeDetectionRobertsNeonV2.shader new file mode 100644 index 000000000..0bf15c200 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Shader/EdgeDetectionRobertsNeonV2.shader @@ -0,0 +1,87 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/EdgeDetectionRobertsNeonV2" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + half4 _Params; + half4 _BackgroundColor; + + #define _EdgeWidth _Params.x + #define _EdgeNeonFade _Params.y + #define _Brigtness _Params.z + #define _BackgroundFade _Params.w + + + float3 sobel(float stepx, float stepy, float2 center) + { + // get samples around pixel + float3 topLeft = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, stepy)).rgb; + float3 bottomLeft = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, -stepy)).rgb; + float3 topRight = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, stepy)).rgb; + float3 bottomRight = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, -stepy)).rgb; + + // Roberts Operator + //X = -1 0 Y = 0 -1 + // 0 1 1 0 + + // Gx = sum(kernelX[i][j]*image[i][j]) + float3 Gx = -1.0 * topLeft + 1.0 * bottomRight; + + // Gy = sum(kernelY[i][j]*image[i][j]); + float3 Gy = -1.0 * topRight + 1.0 * bottomLeft; + + + float3 sobelGradient = sqrt((Gx * Gx) + (Gy * Gy)); + return sobelGradient; + } + + + half4 Frag(VaryingsDefault i): SV_Target + { + + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + float3 sobelGradient = sobel(_EdgeWidth / _ScreenParams.x, _EdgeWidth / _ScreenParams.y, i.texcoord); + + half3 backgroundColor = lerp(_BackgroundColor.rgb, sceneColor.rgb, _BackgroundFade); + + //Edge Opacity + float3 edgeColor = lerp(backgroundColor.rgb, sobelGradient.rgb, _EdgeNeonFade); + + return float4(edgeColor * _Brigtness, 1); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Shader/EdgeDetectionRobertsNeonV2.shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Shader/EdgeDetectionRobertsNeonV2.shader.meta new file mode 100644 index 000000000..5a2708543 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Shader/EdgeDetectionRobertsNeonV2.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6808ec2892f65624cb11c847e877ca0b +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharr.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr.meta new file mode 100644 index 000000000..3852653f2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7acf5e6616ee46649a47b755bc673651 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/EdgeDetectionScharr.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/EdgeDetectionScharr.cs new file mode 100644 index 000000000..ab828b41e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/EdgeDetectionScharr.cs @@ -0,0 +1,78 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(EdgeDetectionScharrRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/EdgeDetection/EdgeDetectionScharr")] + public class EdgeDetectionScharr : PostProcessEffectSettings + { + + [Range(0.05f, 5.0f)] + public FloatParameter edgeWidth = new FloatParameter { value = 0.3f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter edgeColor = new ColorParameter { value = new Color(0.0f, 0.0f, 0.0f, 1) }; + + [Range(0.0f, 1.0f)] + public FloatParameter backgroundFade = new FloatParameter { value = 1f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter backgroundColor = new ColorParameter { value = new Color(1.0f, 1.0f, 1.0f, 1) }; + } + + public sealed class EdgeDetectionScharrRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-EdgeDetectionScharr"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/EdgeDetectionScharr"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int EdgeColor = Shader.PropertyToID("_EdgeColor"); + internal static readonly int BackgroundColor = Shader.PropertyToID("_BackgroundColor"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector2(settings.edgeWidth, settings.backgroundFade)); + sheet.properties.SetColor(ShaderIDs.EdgeColor, settings.edgeColor); + sheet.properties.SetColor(ShaderIDs.BackgroundColor, settings.backgroundColor); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/EdgeDetectionScharr.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/EdgeDetectionScharr.cs.meta new file mode 100644 index 000000000..a35ca0972 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/EdgeDetectionScharr.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 429cea4139dc31045991cc87717ec0b7 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Editor.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Editor.meta new file mode 100644 index 000000000..848930fb4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b28aafa91c09bb45be1fdd9ab82147f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Editor/EdgeDetectionScharrEditor.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Editor/EdgeDetectionScharrEditor.cs new file mode 100644 index 000000000..9d38702d3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Editor/EdgeDetectionScharrEditor.cs @@ -0,0 +1,58 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(EdgeDetectionScharr))] + public sealed class EdgeDetectionScharrEditor : PostProcessEffectEditor + { + + + SerializedParameterOverride edgeWidth; + SerializedParameterOverride backgroundFade; + SerializedParameterOverride edgeColor; + SerializedParameterOverride backgroundColor; + + + public override void OnEnable() + { + edgeWidth = FindParameterOverride(x => x.edgeWidth); + backgroundFade = FindParameterOverride(x => x.backgroundFade); + edgeColor = FindParameterOverride(x => x.edgeColor); + backgroundColor = FindParameterOverride(x => x.backgroundColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Edge Property"); + PropertyField(edgeWidth); + PropertyField(edgeColor, new GUIContent("Edge Color")); + EditorUtilities.DrawHeaderLabel("Background Property"); + PropertyField(backgroundFade); + PropertyField(backgroundColor); + + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Editor/EdgeDetectionScharrEditor.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Editor/EdgeDetectionScharrEditor.cs.meta new file mode 100644 index 000000000..9b6a2a7e1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Editor/EdgeDetectionScharrEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 531492c49c21bae4c9cb9c4388ce9352 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/README.md b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/README.md new file mode 100644 index 000000000..943ad6813 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/README.md @@ -0,0 +1,20 @@ + +# Edge Detection Scharr + +## Source Code List +- [Shader Code](Shader/EdgeDetectionScharr.shader) +- [C# Code](EdgeDetectionScharr.cs) +- [Editor Code](Editor/EdgeDetectionScharrEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionScharr/EdgeDetectionScharrProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionScharr/EdgeDetectionScharr1.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionScharr/EdgeDetectionScharr2.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionScharr/EdgeDetectionScharr1.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionScharr/EdgeDetectionScharr2.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/README.md.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/README.md.meta new file mode 100644 index 000000000..42421e4e8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 02c0a845af146594a8775e270c6ebce6 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Shader.meta new file mode 100644 index 000000000..65b5f8ea1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d8dd7a1a865c5ab4aa3e152265746ca6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Shader/EdgeDetectionScharr.shader b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Shader/EdgeDetectionScharr.shader new file mode 100644 index 000000000..6ffce4982 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Shader/EdgeDetectionScharr.shader @@ -0,0 +1,98 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/EdgeDetectionScharr" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + half2 _Params; + half4 _EdgeColor; + half4 _BackgroundColor; + + #define _EdgeWidth _Params.x + #define _BackgroundFade _Params.y + + + float intensity(in float4 color) + { + return sqrt((color.x * color.x) + (color.y * color.y) + (color.z * color.z)); + } + + float scharr(float stepx, float stepy, float2 center) + { + // get samples around pixel + float topLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, stepy))); + float midLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, 0))); + float bottomLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, -stepy))); + float midTop = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(0, stepy))); + float midBottom = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(0, -stepy))); + float topRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, stepy))); + float midRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, 0))); + float bottomRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, -stepy))); + + // scharr masks ( http://en.wikipedia.org/wiki/Sobel_operator#Alternative_operators) + // 3 0 -3 3 10 3 + // X = 10 0 -10 Y = 0 0 0 + // 3 0 -3 -3 -10 -3 + + // Gx = sum(kernelX[i][j]*image[i][j]); + float Gx = 3.0* topLeft + 10.0 * midLeft + 3.0 * bottomLeft -3.0* topRight - 10.0 * midRight - 3.0* bottomRight; + // Gy = sum(kernelY[i][j]*image[i][j]); + float Gy = 3.0 * topLeft + 10.0 * midTop + 3.0 * topRight -3.0* bottomLeft - 10.0 * midBottom -3.0* bottomRight; + + float scharrGradient = sqrt((Gx * Gx) + (Gy * Gy)); + return scharrGradient; + } + + + + half4 Frag(VaryingsDefault i) : SV_Target + { + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + float scharrGradient = scharr(_EdgeWidth / _ScreenParams.x, _EdgeWidth / _ScreenParams.y , i.texcoord); + + //return sceneColor * scharrGradient; + //BackgroundFading + sceneColor = lerp(sceneColor, _BackgroundColor, _BackgroundFade); + + //Edge Opacity + float3 edgeColor = lerp(sceneColor.rgb, _EdgeColor.rgb, scharrGradient); + + return float4(edgeColor, 1); + + } + + ENDHLSL + + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Shader/EdgeDetectionScharr.shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Shader/EdgeDetectionScharr.shader.meta new file mode 100644 index 000000000..79689b58a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Shader/EdgeDetectionScharr.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c4feb65ad6bee994c8a288a4151b1039 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon.meta new file mode 100644 index 000000000..f23834453 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 81dfb9ae3483ae246be83ea78246e000 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/EdgeDetectionScharrNeon.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/EdgeDetectionScharrNeon.cs new file mode 100644 index 000000000..5b8f3006f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/EdgeDetectionScharrNeon.cs @@ -0,0 +1,75 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(EdgeDetectionScharrNeonRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/EdgeDetection/EdgeDetectionScharrNeon")] + public class EdgeDetectionScharrNeon : PostProcessEffectSettings + { + [Range(0.05f, 5.0f)] + public FloatParameter EdgeWidth = new FloatParameter { value = 1f }; + + [Range(0.0f, 1.0f)] + public FloatParameter BackgroundFade = new FloatParameter { value = 1f }; + + [Range(0.2f, 2.0f)] + public FloatParameter Brigtness = new FloatParameter { value = 1f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter BackgroundColor = new ColorParameter { value = new Color(0.0f, 0.0f, 0.0f, 1.0f) }; + } + + public sealed class EdgeDetectionScharrNeonRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-EdgeDetectionScharrNeon"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/EdgeDetectionScharrNeon"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int BackgroundColor = Shader.PropertyToID("_BackgroundColor"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector3(settings.EdgeWidth, settings.Brigtness, settings.BackgroundFade)); + sheet.properties.SetColor(ShaderIDs.BackgroundColor, settings.BackgroundColor); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/EdgeDetectionScharrNeon.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/EdgeDetectionScharrNeon.cs.meta new file mode 100644 index 000000000..0654d3e66 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/EdgeDetectionScharrNeon.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 002da35f1bafacb498a4f9a7e955d871 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Editor.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Editor.meta new file mode 100644 index 000000000..8c419dd13 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7e275608d1778724487001ad6ea4f27e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Editor/EdgeDetectionScharrNeonEditor.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Editor/EdgeDetectionScharrNeonEditor.cs new file mode 100644 index 000000000..ce5ce2af3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Editor/EdgeDetectionScharrNeonEditor.cs @@ -0,0 +1,60 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(EdgeDetectionScharrNeon))] + public sealed class EdgeDetectionScharrNeonEditor : PostProcessEffectEditor + { + + SerializedParameterOverride EdgeWidth; + SerializedParameterOverride Brigtness; + SerializedParameterOverride BackgroundFade; + SerializedParameterOverride BackgroundColor; + + public override void OnEnable() + { + EdgeWidth = FindParameterOverride(x => x.EdgeWidth); + Brigtness = FindParameterOverride(x => x.Brigtness); + BackgroundFade = FindParameterOverride(x => x.BackgroundFade); + BackgroundColor = FindParameterOverride(x => x.BackgroundColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Edge Property"); + PropertyField(EdgeWidth); + + EditorUtilities.DrawHeaderLabel("Background Property"); + PropertyField(BackgroundFade); + PropertyField(BackgroundColor); + + EditorUtilities.DrawHeaderLabel("Brigtness"); + PropertyField(Brigtness); + + } + + + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Editor/EdgeDetectionScharrNeonEditor.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Editor/EdgeDetectionScharrNeonEditor.cs.meta new file mode 100644 index 000000000..03d2659d4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Editor/EdgeDetectionScharrNeonEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 4ac46c57d95c3dd44bdf8287762717f0 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/README.md b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/README.md new file mode 100644 index 000000000..c91f01274 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/README.md @@ -0,0 +1,17 @@ + +# EdgeDetectionScharrNeon + +## Source Code List +- [Shader Code](Shader/EdgeDetectionScharrNeon.shader) +- [C# Code](EdgeDetectionScharrNeon.cs) +- [Editor Code](Editor/EdgeDetectionScharrNeonEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionScharrNeon/EdgeDetectionScharrNeonProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionScharrNeon/EdgeDetectionScharrNeon.jpg) + + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionScharrNeon/EdgeDetectionScharrNeon.gif) diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/README.md.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/README.md.meta new file mode 100644 index 000000000..fb2d388fa --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4036f4e689d7bd04ba1cf276fa0199e6 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Shader.meta new file mode 100644 index 000000000..966796148 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a1d4313b902ba84dbaa110f8562a765 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Shader/EdgeDetectionScharrNeon.shader b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Shader/EdgeDetectionScharrNeon.shader new file mode 100644 index 000000000..d319db472 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Shader/EdgeDetectionScharrNeon.shader @@ -0,0 +1,97 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/EdgeDetectionScharrNeon" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + half4 _Params; + half4 _BackgroundColor; + + #define _EdgeWidth _Params.x + #define _Brigtness _Params.y + #define _BackgroundFade _Params.z + + + float intensity(in float4 color) + { + return sqrt((color.x * color.x) + (color.y * color.y) + (color.z * color.z)); + } + + float scharr(float stepx, float stepy, float2 center) + { + // get samples around pixel + float topLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, stepy))); + float midLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, 0))); + float bottomLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, -stepy))); + float midTop = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(0, stepy))); + float midBottom = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(0, -stepy))); + float topRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, stepy))); + float midRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, 0))); + float bottomRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, -stepy))); + + // scharr masks ( http://en.wikipedia.org/wiki/Sobel_operator#Alternative_operators) + // 3 0 -3 3 10 3 + // X = 10 0 -10 Y = 0 0 0 + // 3 0 -3 -3 -10 -3 + + // Gx = sum(kernelX[i][j]*image[i][j]); + float Gx = 3.0 * topLeft + 10.0 * midLeft + 3.0 * bottomLeft - 3.0 * topRight - 10.0 * midRight - 3.0 * bottomRight; + // Gy = sum(kernelY[i][j]*image[i][j]); + float Gy = 3.0 * topLeft + 10.0 * midTop + 3.0 * topRight - 3.0 * bottomLeft - 10.0 * midBottom - 3.0 * bottomRight; + + float scharrGradient = sqrt((Gx * Gx) + (Gy * Gy)); + return scharrGradient; + } + + + + half4 Frag(VaryingsDefault i) : SV_Target + { + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + float scharrGradient = scharr(_EdgeWidth / _ScreenParams.x, _EdgeWidth / _ScreenParams.y , i.texcoord); + + //BackgroundFading + half4 backgroundColor = lerp(sceneColor, _BackgroundColor, _BackgroundFade); + + //Edge Opacity + float3 edgeColor = lerp(backgroundColor.rgb, sceneColor.rgb, scharrGradient); + + return float4(edgeColor * _Brigtness, 1); + + } + + ENDHLSL + + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Shader/EdgeDetectionScharrNeon.shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Shader/EdgeDetectionScharrNeon.shader.meta new file mode 100644 index 000000000..7f715dda0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Shader/EdgeDetectionScharrNeon.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0e3bbc6f303acc045b917f42310f52da +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2.meta new file mode 100644 index 000000000..166851631 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e008d514a6a08664e8d8216dda1e503d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/EdgeDetectionScharrNeonV2.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/EdgeDetectionScharrNeonV2.cs new file mode 100644 index 000000000..21faa7c85 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/EdgeDetectionScharrNeonV2.cs @@ -0,0 +1,77 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(EdgeDetectionScharrNeonV2Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/EdgeDetection/EdgeDetectionScharrNeonV2")] + public class EdgeDetectionScharrNeonV2 : PostProcessEffectSettings + { + [Range(0.05f, 5.0f)] + public FloatParameter EdgeWidth = new FloatParameter { value = 1f }; + + [Range(0.1f, 1.0f)] + public FloatParameter EdgeNeonFade = new FloatParameter { value = 1f }; + + [Range(0.0f, 1.0f)] + public FloatParameter BackgroundFade = new FloatParameter { value = 0f }; + + [Range(0.2f, 2.0f)] + public FloatParameter Brigtness = new FloatParameter { value = 1f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter BackgroundColor = new ColorParameter { value = new Color(0.0f, 0.0f, 0.0f, 1.0f) }; + } + + public sealed class EdgeDetectionScharrNeonV2Renderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-EdgeDetectionScharrNeonV2"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/EdgeDetectionScharrNeonV2"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int BackgroundColor = Shader.PropertyToID("_BackgroundColor"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(settings.EdgeWidth, settings.EdgeNeonFade, settings.Brigtness, settings.BackgroundFade)); + sheet.properties.SetColor(ShaderIDs.BackgroundColor, settings.BackgroundColor); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/EdgeDetectionScharrNeonV2.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/EdgeDetectionScharrNeonV2.cs.meta new file mode 100644 index 000000000..05abdb2df --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/EdgeDetectionScharrNeonV2.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 97b9164b45b8da14983ece4a6836bc65 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Editor.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Editor.meta new file mode 100644 index 000000000..b535e8f94 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a5c99f77b82d71d41add499733e73022 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Editor/EdgeDetectionScharrNeonV2Editor.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Editor/EdgeDetectionScharrNeonV2Editor.cs new file mode 100644 index 000000000..7ebc25892 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Editor/EdgeDetectionScharrNeonV2Editor.cs @@ -0,0 +1,61 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(EdgeDetectionScharrNeonV2))] + public sealed class EdgeDetectionScharrNeonV2Editor : PostProcessEffectEditor + { + + SerializedParameterOverride EdgeWidth; + SerializedParameterOverride EdgeNeonFade; + SerializedParameterOverride Brigtness; + SerializedParameterOverride BackgroundFade; + SerializedParameterOverride BackgroundColor; + + public override void OnEnable() + { + EdgeWidth = FindParameterOverride(x => x.EdgeWidth); + EdgeNeonFade = FindParameterOverride(x => x.EdgeNeonFade); + Brigtness = FindParameterOverride(x => x.Brigtness); + BackgroundFade = FindParameterOverride(x => x.BackgroundFade); + BackgroundColor = FindParameterOverride(x => x.BackgroundColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Edge Property"); + PropertyField(EdgeWidth); + PropertyField(EdgeNeonFade); + + EditorUtilities.DrawHeaderLabel("Background Property( For Edge Neon Fade <1 )"); + PropertyField(BackgroundFade); + PropertyField(BackgroundColor); + + EditorUtilities.DrawHeaderLabel("Edge Property"); + PropertyField(Brigtness); + + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Editor/EdgeDetectionScharrNeonV2Editor.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Editor/EdgeDetectionScharrNeonV2Editor.cs.meta new file mode 100644 index 000000000..82086396f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Editor/EdgeDetectionScharrNeonV2Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 00c7d98c5ad7798498e3d5bb16a2758c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/README.md b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/README.md new file mode 100644 index 000000000..cd89a79fc --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/README.md @@ -0,0 +1,17 @@ + +# Edge Detection Scharr Neon V2 + +## Source Code List +- [Shader Code](Shader/EdgeDetectionScharrNeonV2.shader) +- [C# Code](EdgeDetectionScharrNeonV2.cs) +- [Editor Code](Editor/EdgeDetectionScharrNeonV2Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionScharrNeonV2/EdgeDetectionScharrNeonV2Property.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionScharrNeonV2/EdgeDetectionScharrNeonV2.jpg) + + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionScharrNeonV2/EdgeDetectionScharrNeonV2.gif) diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/README.md.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/README.md.meta new file mode 100644 index 000000000..ae95345b9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a480346b1ef061f498bc8de796759271 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Shader.meta new file mode 100644 index 000000000..1a0bd9edb --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: be4a1475885bf9f40a712f94842a006c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Shader/EdgeDetectionScharrNeonV2.shader b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Shader/EdgeDetectionScharrNeonV2.shader new file mode 100644 index 000000000..399900276 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Shader/EdgeDetectionScharrNeonV2.shader @@ -0,0 +1,88 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/EdgeDetectionScharrNeonV2" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half4 _Params; + half4 _BackgroundColor; + + #define _EdgeWidth _Params.x + #define _EdgeNeonFade _Params.y + #define _Brigtness _Params.z + #define _BackgroundFade _Params.w + + + float3 scharr(float stepx, float stepy, float2 center) + { + // get samples around pixel + float3 topLeft = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, stepy)).rgb; + float3 midLeft = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, 0)).rgb; + float3 bottomLeft = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, -stepy)).rgb; + float3 midTop = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(0, stepy)).rgb; + float3 midBottom = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(0, -stepy)).rgb; + float3 topRight = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, stepy)).rgb; + float3 midRight = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, 0)).rgb; + float3 bottomRight = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, -stepy)).rgb; + + + // scharr masks ( http://en.wikipedia.org/wiki/Sobel_operator#Alternative_operators) + // 3 0 -3 3 10 3 + // X = 10 0 -10 Y = 0 0 0 + // 3 0 -3 -3 -10 -3 + + // Gx = sum(kernelX[i][j]*image[i][j]); + float3 Gx = 3.0 * topLeft + 10.0 * midLeft + 3.0 * bottomLeft - 3.0 * topRight - 10.0 * midRight - 3.0 * bottomRight; + // Gy = sum(kernelY[i][j]*image[i][j]); + float3 Gy = 3.0 * topLeft + 10.0 * midTop + 3.0 * topRight - 3.0 * bottomLeft - 10.0 * midBottom - 3.0 * bottomRight; + + float3 scharrGradient = sqrt((Gx * Gx) + (Gy * Gy)).rgb; + return scharrGradient; + } + + + + half4 Frag(VaryingsDefault i): SV_Target + { + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + float3 scharrGradient = scharr(_EdgeWidth / _ScreenParams.x, _EdgeWidth / _ScreenParams.y, i.texcoord); + + half3 backgroundColor = lerp(_BackgroundColor.rgb, sceneColor.rgb, _BackgroundFade); + + float3 edgeColor = lerp(backgroundColor.rgb, scharrGradient.rgb, _EdgeNeonFade); + + return float4(edgeColor * _Brigtness, 1); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Shader/EdgeDetectionScharrNeonV2.shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Shader/EdgeDetectionScharrNeonV2.shader.meta new file mode 100644 index 000000000..ac7ab40ca --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Shader/EdgeDetectionScharrNeonV2.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d2f754b5f4df0b042b66aac36fd2a8c6 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobel.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel.meta new file mode 100644 index 000000000..13307168e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 31da48c5400a8c74997c998f7bf0404e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/EdgeDetectionSobel.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/EdgeDetectionSobel.cs new file mode 100644 index 000000000..d5ef16218 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/EdgeDetectionSobel.cs @@ -0,0 +1,78 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(EdgeDetectionSobelRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/EdgeDetection/EdgeDetectionSobel")] + public class EdgeDetectionSobel : PostProcessEffectSettings + { + + [Range(0.05f, 5.0f)] + public FloatParameter edgeWidth = new FloatParameter { value = 0.3f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter edgeColor = new ColorParameter { value = new Color(0.0f, 0.0f, 0.0f, 1) }; + + [Range(0.0f, 1.0f)] + public FloatParameter backgroundFade = new FloatParameter { value = 1f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter backgroundColor = new ColorParameter { value = new Color(1.0f, 1.0f, 1.0f, 1) }; + } + + public sealed class EdgeDetectionSobelRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-EdgeDetectionSobel"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/EdgeDetectionSobel"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int EdgeColor = Shader.PropertyToID("_EdgeColor"); + internal static readonly int BackgroundColor = Shader.PropertyToID("_BackgroundColor"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector2(settings.edgeWidth, settings.backgroundFade)); + sheet.properties.SetColor(ShaderIDs.EdgeColor, settings.edgeColor); + sheet.properties.SetColor(ShaderIDs.BackgroundColor, settings.backgroundColor); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/EdgeDetectionSobel.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/EdgeDetectionSobel.cs.meta new file mode 100644 index 000000000..73a0b5615 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/EdgeDetectionSobel.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 86f11867526af01438f100677cd3633d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Editor.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Editor.meta new file mode 100644 index 000000000..46320a997 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1ed69829fb23d5e418cdfd5a4f48f528 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Editor/EdgeDetectionSobelEditor.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Editor/EdgeDetectionSobelEditor.cs new file mode 100644 index 000000000..7f83c9540 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Editor/EdgeDetectionSobelEditor.cs @@ -0,0 +1,57 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(EdgeDetectionSobel))] + public sealed class EdgeDetectionSobelEditor : PostProcessEffectEditor + { + + SerializedParameterOverride edgeWidth; + SerializedParameterOverride backgroundFade; + SerializedParameterOverride edgeColor; + SerializedParameterOverride backgroundColor; + + + public override void OnEnable() + { + edgeWidth = FindParameterOverride(x => x.edgeWidth); + backgroundFade = FindParameterOverride(x => x.backgroundFade); + edgeColor = FindParameterOverride(x => x.edgeColor); + backgroundColor = FindParameterOverride(x => x.backgroundColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Edge Property"); + PropertyField(edgeWidth); + PropertyField(edgeColor,new GUIContent("Edge Color")); + EditorUtilities.DrawHeaderLabel("Background Property"); + PropertyField(backgroundFade); + PropertyField(backgroundColor); + + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Editor/EdgeDetectionSobelEditor.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Editor/EdgeDetectionSobelEditor.cs.meta new file mode 100644 index 000000000..562f94697 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Editor/EdgeDetectionSobelEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: f66931180a1810c40b4e06089498fd20 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/README.md b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/README.md new file mode 100644 index 000000000..6b9327203 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/README.md @@ -0,0 +1,20 @@ + +# Edge Detection Sobel + +## Source Code List +- [Shader Code](Shader/EdgeDetectionSobel.shader) +- [C# Code](EdgeDetectionSobel.cs) +- [Editor Code](Editor/EdgeDetectionSobelEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionSobel/EdgeDetectionSobelProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionSobel/EdgeDetectionSobel1.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionSobel/EdgeDetectionSobel2.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionSobel/EdgeDetectionSobel1.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionSobel/EdgeDetectionSobel2.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/README.md.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/README.md.meta new file mode 100644 index 000000000..433ce1b58 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9f6cbbf87a3f3004d88842023184f0a1 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Shader.meta new file mode 100644 index 000000000..387e5db32 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1e4ae8fccb71bb14ab0a71004d938998 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Shader/EdgeDetectionSobel.shader b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Shader/EdgeDetectionSobel.shader new file mode 100644 index 000000000..2dbaaf8aa --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Shader/EdgeDetectionSobel.shader @@ -0,0 +1,95 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- +// reference: https://www.shadertoy.com/view/Xdf3Rf +// https://en.wikipedia.org/wiki/Sobel_operator + +Shader "Hidden/X-PostProcessing/EdgeDetectionSobel" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + half2 _Params; + half4 _EdgeColor; + half4 _BackgroundColor; + + #define _EdgeWidth _Params.x + #define _BackgroundFade _Params.y + + + float intensity(in float4 color) + { + return sqrt((color.x * color.x) + (color.y * color.y) + (color.z * color.z)); + } + + float sobel(float stepx, float stepy, float2 center) + { + // get samples around pixel + float topLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, stepy))); + float midLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, 0))); + float bottomLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, -stepy))); + float midTop = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(0, stepy))); + float midBottom = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(0, -stepy))); + float topRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, stepy))); + float midRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, 0))); + float bottomRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, -stepy))); + + // Sobel masks (see http://en.wikipedia.org/wiki/Sobel_operator) + // 1 0 -1 -1 -2 -1 + // X = 2 0 -2 Y = 0 0 0 + // 1 0 -1 1 2 1 + + // Gx = sum(kernelX[i][j]*image[i][j]) + float Gx = topLeft + 2.0 * midLeft + bottomLeft - topRight - 2.0 * midRight - bottomRight; + // Gy = sum(kernelY[i][j]*image[i][j]); + float Gy = -topLeft - 2.0 * midTop - topRight + bottomLeft + 2.0 * midBottom + bottomRight; + float sobelGradient = sqrt((Gx * Gx) + (Gy * Gy)); + return sobelGradient; + } + + + + half4 Frag(VaryingsDefault i): SV_Target + { + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + float sobelGradient= sobel(_EdgeWidth /_ScreenParams.x, _EdgeWidth /_ScreenParams.y , i.texcoord); + + half4 backgroundColor = lerp(sceneColor, _BackgroundColor, _BackgroundFade); + + float3 edgeColor = lerp(backgroundColor.rgb, _EdgeColor.rgb, sobelGradient); + + return float4(edgeColor, 1); + + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Shader/EdgeDetectionSobel.shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Shader/EdgeDetectionSobel.shader.meta new file mode 100644 index 000000000..20418fb97 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Shader/EdgeDetectionSobel.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9baa77a78785b1f4d9760258a6227eb1 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon.meta new file mode 100644 index 000000000..7a126a71f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9c0828f5d8916fa439379a36a18744f6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/EdgeDetectionSobelNeon.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/EdgeDetectionSobelNeon.cs new file mode 100644 index 000000000..ea1bca1ff --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/EdgeDetectionSobelNeon.cs @@ -0,0 +1,75 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(EdgeDetectionSobelNeonRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/EdgeDetection/EdgeDetectionSobelNeon")] + public class EdgeDetectionSobelNeon : PostProcessEffectSettings + { + [Range(0.05f, 5.0f)] + public FloatParameter EdgeWidth = new FloatParameter { value = 1f }; + + [Range(0.0f, 1.0f)] + public FloatParameter BackgroundFade = new FloatParameter { value = 1f }; + + [Range(0.2f, 2.0f)] + public FloatParameter Brigtness = new FloatParameter { value = 1f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter BackgroundColor = new ColorParameter { value = new Color(0.0f, 0.0f, 0.0f, 1.0f) }; + } + + public sealed class EdgeDetectionSobelNeonRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-EdgeDetectionSobelNeon"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/EdgeDetectionSobelNeon"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int BackgroundColor = Shader.PropertyToID("_BackgroundColor"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector3(settings.EdgeWidth, settings.Brigtness, settings.BackgroundFade)); + sheet.properties.SetColor(ShaderIDs.BackgroundColor, settings.BackgroundColor); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/EdgeDetectionSobelNeon.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/EdgeDetectionSobelNeon.cs.meta new file mode 100644 index 000000000..a24176d6f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/EdgeDetectionSobelNeon.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c632c6b870c3ab44daa5a6a8161b9e00 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Editor.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Editor.meta new file mode 100644 index 000000000..0105e9eb8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ea4309477fbd6c840a99139f73c599f0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Editor/EdgeDetectionSobelNeonEditor.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Editor/EdgeDetectionSobelNeonEditor.cs new file mode 100644 index 000000000..e619aa814 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Editor/EdgeDetectionSobelNeonEditor.cs @@ -0,0 +1,61 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(EdgeDetectionSobelNeon))] + public sealed class EdgeDetectionSobelNeonEditor : PostProcessEffectEditor + { + + + SerializedParameterOverride EdgeWidth; + SerializedParameterOverride Brigtness; + SerializedParameterOverride BackgroundFade; + SerializedParameterOverride BackgroundColor; + + public override void OnEnable() + { + EdgeWidth = FindParameterOverride(x => x.EdgeWidth); + Brigtness = FindParameterOverride(x => x.Brigtness); + BackgroundFade = FindParameterOverride(x => x.BackgroundFade); + BackgroundColor = FindParameterOverride(x => x.BackgroundColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Edge Property"); + PropertyField(EdgeWidth); + + EditorUtilities.DrawHeaderLabel("Background Property"); + PropertyField(BackgroundFade); + PropertyField(BackgroundColor); + + EditorUtilities.DrawHeaderLabel("Brigtness"); + PropertyField(Brigtness); + + } + + + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Editor/EdgeDetectionSobelNeonEditor.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Editor/EdgeDetectionSobelNeonEditor.cs.meta new file mode 100644 index 000000000..2a174701b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Editor/EdgeDetectionSobelNeonEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1c0ee6e8a7907424ba00f4e6f2772b5a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/README.md b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/README.md new file mode 100644 index 000000000..44dd2e21d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/README.md @@ -0,0 +1,17 @@ + +# EdgeDetectionSobelNeon + +## Source Code List +- [Shader Code](Shader/EdgeDetectionSobelNeon.shader) +- [C# Code](EdgeDetectionSobelNeon.cs) +- [Editor Code](Editor/EdgeDetectionSobelNeonEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionSobelNeon/EdgeDetectionSobelNeonProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionSobelNeon/EdgeDetectionSobelNeon.jpg) + + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionSobelNeon/EdgeDetectionSobelNeon.gif) diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/README.md.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/README.md.meta new file mode 100644 index 000000000..7921bbcf9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7db3864f288845844b3ef7f0d90b488e +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Shader.meta new file mode 100644 index 000000000..21dccbad3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1343bd06c26a9304f925dea31ecc437e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Shader/EdgeDetectionSobelNeon.shader b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Shader/EdgeDetectionSobelNeon.shader new file mode 100644 index 000000000..3b7c92243 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Shader/EdgeDetectionSobelNeon.shader @@ -0,0 +1,96 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/EdgeDetectionSobelNeon" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + half4 _Params; + half4 _BackgroundColor; + + #define _EdgeWidth _Params.x + #define _Brigtness _Params.y + #define _BackgroundFade _Params.z + + + float intensity(in float4 color) + { + return sqrt((color.x * color.x) + (color.y * color.y) + (color.z * color.z)); + } + + float sobel(float stepx, float stepy, float2 center) + { + // get samples around pixel + float topLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, stepy))); + float midLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, 0))); + float bottomLeft = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, -stepy))); + float midTop = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(0, stepy))); + float midBottom = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(0, -stepy))); + float topRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, stepy))); + float midRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, 0))); + float bottomRight = intensity(SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, -stepy))); + + // Sobel masks (see http://en.wikipedia.org/wiki/Sobel_operator) + // 1 0 -1 -1 -2 -1 + // X = 2 0 -2 Y = 0 0 0 + // 1 0 -1 1 2 1 + + // Gx = sum(kernelX[i][j]*image[i][j]) + float Gx = topLeft + 2.0 * midLeft + bottomLeft - topRight - 2.0 * midRight - bottomRight; + // Gy = sum(kernelY[i][j]*image[i][j]); + float Gy = -topLeft - 2.0 * midTop - topRight + bottomLeft + 2.0 * midBottom + bottomRight; + float sobelGradient = sqrt((Gx * Gx) + (Gy * Gy)); + return sobelGradient; + } + + + + half4 Frag(VaryingsDefault i) : SV_Target + { + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + float sobelGradient = sobel(_EdgeWidth / _ScreenParams.x, _EdgeWidth / _ScreenParams.y , i.texcoord); + + //BackgroundFading + half4 backgroundColor = lerp(sceneColor, _BackgroundColor, _BackgroundFade); + + //Edge Opacity + float3 edgeColor = lerp(backgroundColor.rgb, sceneColor.rgb, sobelGradient); + + return float4(edgeColor* _Brigtness, 1); + + } + + ENDHLSL + + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Shader/EdgeDetectionSobelNeon.shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Shader/EdgeDetectionSobelNeon.shader.meta new file mode 100644 index 000000000..0eb8ede42 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Shader/EdgeDetectionSobelNeon.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 50e6479c568f8f443b0618e7ada659d5 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2.meta new file mode 100644 index 000000000..5f73aac11 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: faa9c47fd467e304eb704c00ceec3233 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/EdgeDetectionSobelNeonV2.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/EdgeDetectionSobelNeonV2.cs new file mode 100644 index 000000000..328d32c86 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/EdgeDetectionSobelNeonV2.cs @@ -0,0 +1,78 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(EdgeDetectionSobelNeonV2Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/EdgeDetection/EdgeDetectionSobelNeonV2")] + public class EdgeDetectionSobelNeonV2 : PostProcessEffectSettings + { + [Range(0.05f, 5.0f)] + public FloatParameter EdgeWidth = new FloatParameter { value = 1f }; + + [Range(0.1f, 1.0f)] + public FloatParameter EdgeNeonFade = new FloatParameter { value = 1f }; + + [Range(0.0f, 1.0f)] + public FloatParameter BackgroundFade = new FloatParameter { value = 0f }; + + [Range(0.2f, 2.0f)] + public FloatParameter Brigtness = new FloatParameter { value = 1f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter BackgroundColor = new ColorParameter { value = new Color(0.0f, 0.0f, 0.0f, 1.0f) }; + } + + public sealed class EdgeDetectionSobelNeonV2Renderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-EdgeDetectionSobelNeonV2"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/EdgeDetectionSobelNeonV2"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int BackgroundColor = Shader.PropertyToID("_BackgroundColor"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(settings.EdgeWidth, settings.EdgeNeonFade, settings.Brigtness, settings.BackgroundFade)); + sheet.properties.SetColor(ShaderIDs.BackgroundColor, settings.BackgroundColor); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/EdgeDetectionSobelNeonV2.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/EdgeDetectionSobelNeonV2.cs.meta new file mode 100644 index 000000000..fad21eba7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/EdgeDetectionSobelNeonV2.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: efbb636e5cc391347869277957d9c319 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Editor.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Editor.meta new file mode 100644 index 000000000..8998c0887 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bc5eceeb5da297b4e9e1b884af5cb493 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Editor/EdgeDetectionSobelNeonV2Editor.cs b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Editor/EdgeDetectionSobelNeonV2Editor.cs new file mode 100644 index 000000000..2bfa3f4f3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Editor/EdgeDetectionSobelNeonV2Editor.cs @@ -0,0 +1,62 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(EdgeDetectionSobelNeonV2))] + public sealed class EdgeDetectionSobelNeonV2Editor : PostProcessEffectEditor + { + + SerializedParameterOverride EdgeWidth; + SerializedParameterOverride EdgeNeonFade; + SerializedParameterOverride Brigtness; + SerializedParameterOverride BackgroundFade; + SerializedParameterOverride BackgroundColor; + + public override void OnEnable() + { + EdgeWidth = FindParameterOverride(x => x.EdgeWidth); + EdgeNeonFade = FindParameterOverride(x => x.EdgeNeonFade); + Brigtness = FindParameterOverride(x => x.Brigtness); + BackgroundFade = FindParameterOverride(x => x.BackgroundFade); + BackgroundColor = FindParameterOverride(x => x.BackgroundColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Edge Property"); + PropertyField(EdgeWidth); + PropertyField(EdgeNeonFade); + + + EditorUtilities.DrawHeaderLabel("Background Property( For Edge Neon Fade <1 )"); + PropertyField(BackgroundFade); + PropertyField(BackgroundColor); + + EditorUtilities.DrawHeaderLabel("Edge Property"); + PropertyField(Brigtness); + + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Editor/EdgeDetectionSobelNeonV2Editor.cs.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Editor/EdgeDetectionSobelNeonV2Editor.cs.meta new file mode 100644 index 000000000..ff7d62da3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Editor/EdgeDetectionSobelNeonV2Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ce1cb6b1f506c5341b20235976dceae5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/README.md b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/README.md new file mode 100644 index 000000000..1b135f309 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/README.md @@ -0,0 +1,18 @@ + +# EdgeDetectionSobelNeonV2 + +## Source Code List +- [Shader Code](Shader/EdgeDetectionSobelNeonV2.shader) +- [C# Code](EdgeDetectionSobelNeonV2.cs) +- [Editor Code](Editor/EdgeDetectionSobelNeonV2Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionSobelNeonV2/EdgeDetectionSobelNeonV2Property.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionSobelNeonV2/EdgeDetectionSobelNeonV2.jpg) + + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/EdgeDetection/EdgeDetectionSobelNeonV2/EdgeDetectionSobelNeonV2.gif) + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/README.md.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/README.md.meta new file mode 100644 index 000000000..8272557ba --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5728ae5348a413f4a9854a174a64ec14 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Shader.meta new file mode 100644 index 000000000..1e930d8e6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 063613e3c9953ca468c7d36f2cfaea05 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Shader/EdgeDetectionSobelNeonV2.shader b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Shader/EdgeDetectionSobelNeonV2.shader new file mode 100644 index 000000000..ce5c8dc35 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Shader/EdgeDetectionSobelNeonV2.shader @@ -0,0 +1,93 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/EdgeDetectionSobelNeonV2" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half4 _Params; + half4 _BackgroundColor; + + #define _EdgeWidth _Params.x + #define _EdgeNeonFade _Params.y + #define _Brigtness _Params.z + #define _BackgroundFade _Params.w + + + float intensity(in float4 color) + { + return sqrt((color.x * color.x) + (color.y * color.y) + (color.z * color.z)); + } + + float3 sobel(float stepx, float stepy, float2 center) + { + // get samples around pixel + float3 topLeft = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, stepy)).rgb; + float3 midLeft = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, 0)).rgb; + float3 bottomLeft = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(-stepx, -stepy)).rgb; + float3 midTop = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(0, stepy)).rgb; + float3 midBottom = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(0, -stepy)).rgb; + float3 topRight = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, stepy)).rgb; + float3 midRight = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, 0)).rgb; + float3 bottomRight = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, center + float2(stepx, -stepy)).rgb; + + // Sobel masks (see http://en.wikipedia.org/wiki/Sobel_operator) + // 1 0 -1 -1 -2 -1 + // X = 2 0 -2 Y = 0 0 0 + // 1 0 -1 1 2 1 + + // Gx = sum(kernelX[i][j]*image[i][j]) + float3 Gx = topLeft + 2.0 * midLeft + bottomLeft - topRight - 2.0 * midRight - bottomRight; + // Gy = sum(kernelY[i][j]*image[i][j]); + float3 Gy = -topLeft - 2.0 * midTop - topRight + bottomLeft + 2.0 * midBottom + bottomRight; + float3 sobelGradient = sqrt((Gx * Gx) + (Gy * Gy)); + return sobelGradient; + } + + + + half4 Frag(VaryingsDefault i) : SV_Target + { + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + float3 sobelGradient = sobel(_EdgeWidth / _ScreenParams.x, _EdgeWidth / _ScreenParams.y , i.texcoord); + + half3 backgroundColor = lerp(_BackgroundColor.rgb, sceneColor.rgb, _BackgroundFade); + + float3 edgeColor = lerp(backgroundColor.rgb, sobelGradient.rgb, _EdgeNeonFade); + + return float4(edgeColor * _Brigtness, 1); + + } + + ENDHLSL + + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Shader/EdgeDetectionSobelNeonV2.shader.meta b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Shader/EdgeDetectionSobelNeonV2.shader.meta new file mode 100644 index 000000000..051861c52 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Shader/EdgeDetectionSobelNeonV2.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 12a023182120c1c468339f082d0c7bad +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GaussianBlur.meta b/Assets/X-PostProcessing/Effects/GaussianBlur.meta new file mode 100644 index 000000000..85a99bcf1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GaussianBlur.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9281904b0cde1c94bacde83b537267dd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GaussianBlur/Editor.meta b/Assets/X-PostProcessing/Effects/GaussianBlur/Editor.meta new file mode 100644 index 000000000..f942c1f3e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GaussianBlur/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ca15f25ca80bde14098338a8203e2e72 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GaussianBlur/Editor/GaussianBlurEditor.cs b/Assets/X-PostProcessing/Effects/GaussianBlur/Editor/GaussianBlurEditor.cs new file mode 100644 index 000000000..0ff900d95 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GaussianBlur/Editor/GaussianBlurEditor.cs @@ -0,0 +1,51 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GaussianBlur))] + public sealed class GaussianBlurEditor : PostProcessEffectEditor + { + + SerializedParameterOverride BlurRadius; + SerializedParameterOverride Iteration; + SerializedParameterOverride RTDownScaling; + + + public override void OnEnable() + { + BlurRadius = FindParameterOverride(x => x.BlurRadius); + Iteration = FindParameterOverride(x => x.Iteration); + RTDownScaling = FindParameterOverride(x => x.RTDownScaling); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(BlurRadius); + PropertyField(Iteration); + PropertyField(RTDownScaling); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GaussianBlur/Editor/GaussianBlurEditor.cs.meta b/Assets/X-PostProcessing/Effects/GaussianBlur/Editor/GaussianBlurEditor.cs.meta new file mode 100644 index 000000000..81f30407e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GaussianBlur/Editor/GaussianBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 6b159a1518c6da843a48d31874c8a78a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GaussianBlur/GaussianBlur.cs b/Assets/X-PostProcessing/Effects/GaussianBlur/GaussianBlur.cs new file mode 100644 index 000000000..79fd4308a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GaussianBlur/GaussianBlur.cs @@ -0,0 +1,98 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(GaussianBlurRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/GaussianBlur")] + public class GaussianBlur : PostProcessEffectSettings + { + + [Range(0f, 5f)] + public FloatParameter BlurRadius = new FloatParameter { value = 3f }; + + [Range(1, 15)] + public IntParameter Iteration = new IntParameter { value = 6 }; + + [Range(1, 8)] + public FloatParameter RTDownScaling = new FloatParameter { value = 2f }; + } + + public sealed class GaussianBlurRenderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-GaussianBlur"; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/GaussianBlur"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + + internal static readonly int BlurRadius = Shader.PropertyToID("_BlurOffset"); + internal static readonly int BufferRT1 = Shader.PropertyToID("_BufferRT1"); + internal static readonly int BufferRT2 = Shader.PropertyToID("_BufferRT2"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + + cmd.BeginSample(PROFILER_TAG); + + int RTWidth = (int)(context.screenWidth / settings.RTDownScaling); + int RTHeight = (int)(context.screenHeight / settings.RTDownScaling); + cmd.GetTemporaryRT(ShaderIDs.BufferRT1, RTWidth, RTHeight, 0, FilterMode.Bilinear); + cmd.GetTemporaryRT(ShaderIDs.BufferRT2, RTWidth, RTHeight, 0, FilterMode.Bilinear); + + // downsample screen copy into smaller RT + context.command.BlitFullscreenTriangle(context.source, ShaderIDs.BufferRT1); + + + for (int i = 0; i < settings.Iteration; i++) + { + // horizontal blur + sheet.properties.SetVector(ShaderIDs.BlurRadius, new Vector4(settings.BlurRadius / context.screenWidth, 0, 0, 0)); + context.command.BlitFullscreenTriangle(ShaderIDs.BufferRT1, ShaderIDs.BufferRT2, sheet, 0); + + // vertical blur + sheet.properties.SetVector(ShaderIDs.BlurRadius, new Vector4(0, settings.BlurRadius / context.screenHeight, 0, 0)); + context.command.BlitFullscreenTriangle(ShaderIDs.BufferRT2, ShaderIDs.BufferRT1, sheet, 0); + } + + // Render blurred texture in blend pass + cmd.BlitFullscreenTriangle(ShaderIDs.BufferRT1, context.destination, sheet, 1); + + // release + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT1); + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT2); + + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GaussianBlur/GaussianBlur.cs.meta b/Assets/X-PostProcessing/Effects/GaussianBlur/GaussianBlur.cs.meta new file mode 100644 index 000000000..2cb249992 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GaussianBlur/GaussianBlur.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 824ef16946450f94186364308f3d1eaf +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GaussianBlur/README.md b/Assets/X-PostProcessing/Effects/GaussianBlur/README.md new file mode 100644 index 000000000..9b29af71c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GaussianBlur/README.md @@ -0,0 +1,16 @@ + +# Gaussian Blur + +## Source Code List +- [Shader Code](Shader/GaussianBlur.shader) +- [C# Code](GaussianBlur.cs) +- [Editor Code](Editor/GaussianBlurEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/GaussianBlur/GaussianBlurProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/GaussianBlur/GaussianBlur.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/GaussianBlur/GaussianBlur.gif) diff --git a/Assets/X-PostProcessing/Effects/GaussianBlur/README.md.meta b/Assets/X-PostProcessing/Effects/GaussianBlur/README.md.meta new file mode 100644 index 000000000..dbd92758f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GaussianBlur/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9ebda7e3a0bcd7c4b8c77597c386d337 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GaussianBlur/Shader.meta b/Assets/X-PostProcessing/Effects/GaussianBlur/Shader.meta new file mode 100644 index 000000000..1978649de --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GaussianBlur/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0db1f80be22037d48b08fe55d254fd6e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GaussianBlur/Shader/GaussianBlur.shader b/Assets/X-PostProcessing/Effects/GaussianBlur/Shader/GaussianBlur.shader new file mode 100644 index 000000000..35cb2bf85 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GaussianBlur/Shader/GaussianBlur.shader @@ -0,0 +1,100 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/GaussianBlur" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half4 _BlurOffset; + + struct v2f + { + float4 pos: POSITION; + float2 uv: TEXCOORD0; + float4 uv01: TEXCOORD1; + float4 uv23: TEXCOORD2; + float4 uv45: TEXCOORD3; + }; + + v2f VertGaussianBlur(AttributesDefault v) + { + v2f o; + o.pos = float4(v.vertex.xy, 0, 1); + + o.uv.xy = TransformTriangleVertexToUV(o.pos.xy); + + #if UNITY_UV_STARTS_AT_TOP + o.uv = o.uv * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + o.uv = TransformStereoScreenSpaceTex(o.uv, 1.0); + + o.uv01 = o.uv.xyxy + _BlurOffset.xyxy * float4(1, 1, -1, -1); + o.uv23 = o.uv.xyxy + _BlurOffset.xyxy * float4(1, 1, -1, -1) * 2.0; + o.uv45 = o.uv.xyxy + _BlurOffset.xyxy * float4(1, 1, -1, -1) * 6.0; + + return o; + } + + float4 FragGaussianBlur(v2f i): SV_Target + { + half4 color = float4(0, 0, 0, 0); + + color += 0.40 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv); + color += 0.15 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv01.xy); + color += 0.15 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv01.zw); + color += 0.10 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv23.xy); + color += 0.10 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv23.zw); + color += 0.05 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv45.xy); + color += 0.05 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv45.zw); + + return color; + } + + + float4 FragCombine(VaryingsDefault i): SV_Target + { + return SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + } + + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertGaussianBlur + #pragma fragment FragGaussianBlur + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragCombine + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GaussianBlur/Shader/GaussianBlur.shader.meta b/Assets/X-PostProcessing/Effects/GaussianBlur/Shader/GaussianBlur.shader.meta new file mode 100644 index 000000000..357489f29 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GaussianBlur/Shader/GaussianBlur.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3b0680d06d5673e438e41b4af0775d1e +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchAnalogNoise.meta b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise.meta new file mode 100644 index 000000000..b711f11b1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 222239416aa63dc41b9ef35f7c5f1ba8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Editor.meta new file mode 100644 index 000000000..22718ee57 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fdb86813f07c4ee4d8f1d5d64fad69b1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Editor/GlitchAnalogNoiseEditor.cs b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Editor/GlitchAnalogNoiseEditor.cs new file mode 100644 index 000000000..2a29f43d8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Editor/GlitchAnalogNoiseEditor.cs @@ -0,0 +1,52 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchAnalogNoise))] + public sealed class GlitchAnalogNoiseEditor : PostProcessEffectEditor + { + + SerializedParameterOverride NoiseSpeed; + SerializedParameterOverride NoiseFading; + SerializedParameterOverride LuminanceJitterThreshold; + + + public override void OnEnable() + { + NoiseSpeed = FindParameterOverride(x => x.NoiseSpeed); + NoiseFading = FindParameterOverride(x => x.NoiseFading); + LuminanceJitterThreshold = FindParameterOverride(x => x.LuminanceJitterThreshold); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(NoiseSpeed); + PropertyField(NoiseFading); + PropertyField(LuminanceJitterThreshold); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Editor/GlitchAnalogNoiseEditor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Editor/GlitchAnalogNoiseEditor.cs.meta new file mode 100644 index 000000000..281b1b119 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Editor/GlitchAnalogNoiseEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 8ecb03fef57c331449d5a7ac904bb842 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/GlitchAnalogNoise.cs b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/GlitchAnalogNoise.cs new file mode 100644 index 000000000..09e3068a8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/GlitchAnalogNoise.cs @@ -0,0 +1,79 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(GlitchAnalogNoiseRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/AnalogNoise")] + public class GlitchAnalogNoise : PostProcessEffectSettings + { + + [Range(0.0f, 1.0f)] + public FloatParameter NoiseSpeed = new FloatParameter { value = 0.5f }; + + [Range(0.0f, 1.0f)] + public FloatParameter NoiseFading = new FloatParameter { value = 0.5f }; + + [Range(0.0f, 1.0f)] + public FloatParameter LuminanceJitterThreshold = new FloatParameter { value = 0.8f }; + + } + + public sealed class GlitchAnalogNoiseRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-GlitchAnalogNoise"; + private Shader shader; + private float TimeX = 1.0f; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/AnalogNoise"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + TimeX += Time.deltaTime; + if (TimeX > 100) + { + TimeX = 0; + } + + + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(settings.NoiseSpeed, settings.NoiseFading, settings.LuminanceJitterThreshold, TimeX)); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/GlitchAnalogNoise.cs.meta b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/GlitchAnalogNoise.cs.meta new file mode 100644 index 000000000..d33ed5b43 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/GlitchAnalogNoise.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 292a5d75bad86324881ba9dbb87cb997 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/README.md b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/README.md new file mode 100644 index 000000000..9bff5acc5 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/README.md @@ -0,0 +1,17 @@ + +# GlitchAnalogNoise + +## Source Code List +- [Shader Code](Shader/GlitchAnalogNoise.shader) +- [C# Code](GlitchAnalogNoise.cs) +- [Editor Code](Editor/GlitchAnalogNoiseEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchAnalogNoise/GlitchAnalogNoise.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchAnalogNoise/GlitchAnalogNoise1.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchAnalogNoise/GlitchAnalogNoise.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/README.md.meta new file mode 100644 index 000000000..5b450a753 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: dbe7dc3e631deb340b13ebc90c6c7288 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Shader.meta new file mode 100644 index 000000000..80c196d0f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4920d9c8b6c601b439f2ccb85a0bc893 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Shader/GlitchAnalogNoise.shader b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Shader/GlitchAnalogNoise.shader new file mode 100644 index 000000000..9f970e18c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Shader/GlitchAnalogNoise.shader @@ -0,0 +1,78 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/AnalogNoise" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + uniform half4 _Params; + #define _Speed _Params.x + #define _Fading _Params.y + #define _LuminanceJitterThreshold _Params.z + #define _TimeX _Params.w + + + //uniform half _Fading; + //uniform half _TimeX; + //uniform half _LuminanceJitterThreshold; + + float randomNoise(float2 c) + { + return frac(sin(dot(c.xy, float2(12.9898, 78.233))) * 43758.5453); + } + + half4 Frag(VaryingsDefault i): SV_Target + { + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + half4 noiseColor = sceneColor; + + half luminance = dot(noiseColor.rgb, fixed3(0.22, 0.707, 0.071)); + if (randomNoise(float2(_TimeX * _Speed, _TimeX * _Speed)) > _LuminanceJitterThreshold) + { + noiseColor = float4(luminance, luminance, luminance, luminance); + } + + float noiseX = randomNoise(_TimeX * _Speed + i.texcoord / float2(-213, 5.53)); + float noiseY = randomNoise(_TimeX * _Speed - i.texcoord / float2(213, -5.53)); + float noiseZ = randomNoise(_TimeX * _Speed + i.texcoord / float2(213, 5.53)); + + noiseColor.rgb += 0.25 * float3(noiseX,noiseY,noiseZ) - 0.125; + + noiseColor = lerp(sceneColor, noiseColor, _Fading); + + return noiseColor; + } + + ENDHLSL + + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Shader/GlitchAnalogNoise.shader.meta b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Shader/GlitchAnalogNoise.shader.meta new file mode 100644 index 000000000..dee2a22e1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Shader/GlitchAnalogNoise.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 970b4207e98f9cd49a3b7dd771a02c23 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchDigitalStripe.meta b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe.meta new file mode 100644 index 000000000..796f12e3e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c029d66d59a4a9b4aabe8463edda59aa +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Editor.meta new file mode 100644 index 000000000..275c44db8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb432df036e3c1449904366e718482fc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Editor/GlitchDigitalStripeEditor.cs b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Editor/GlitchDigitalStripeEditor.cs new file mode 100644 index 000000000..3b3eedcf7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Editor/GlitchDigitalStripeEditor.cs @@ -0,0 +1,78 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchDigitalStripe))] + public sealed class GlitchDigitalStripeEditor : PostProcessEffectEditor + { + + SerializedParameterOverride intensity; + SerializedParameterOverride frequncy; + SerializedParameterOverride stripeLength; + SerializedParameterOverride noiseTextureWidth; + SerializedParameterOverride noiseTextureHeight; + SerializedParameterOverride needStripColorAdjust; + SerializedParameterOverride StripColorAdjustIndensity; + SerializedParameterOverride StripColorAdjustColor; + + + + + public override void OnEnable() + { + intensity = FindParameterOverride(x => x.intensity); + frequncy = FindParameterOverride(x => x.frequncy); + stripeLength = FindParameterOverride(x => x.stripeLength); + noiseTextureHeight = FindParameterOverride(x => x.noiseTextureHeight); + noiseTextureWidth = FindParameterOverride(x => x.noiseTextureWidth); + needStripColorAdjust = FindParameterOverride(x => x.needStripColorAdjust); + StripColorAdjustIndensity = FindParameterOverride(x => x.StripColorAdjustIndensity); + StripColorAdjustColor = FindParameterOverride(x => x.StripColorAdjustColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(intensity); + PropertyField(frequncy); + + + EditorUtilities.DrawHeaderLabel("Stripe Generate"); + PropertyField(stripeLength); + + EditorUtilities.DrawHeaderLabel("Noise Texture Size"); + PropertyField(noiseTextureWidth); + PropertyField(noiseTextureHeight); + + EditorUtilities.DrawHeaderLabel("Strip Color Adjust"); + PropertyField(needStripColorAdjust); + PropertyField(StripColorAdjustIndensity); + PropertyField(StripColorAdjustColor); + + + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Editor/GlitchDigitalStripeEditor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Editor/GlitchDigitalStripeEditor.cs.meta new file mode 100644 index 000000000..d23a01fe1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Editor/GlitchDigitalStripeEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: f70e60fef271f8a4b912a0f952d34fa9 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/GlitchDigitalStripe.cs b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/GlitchDigitalStripe.cs new file mode 100644 index 000000000..fcee9370e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/GlitchDigitalStripe.cs @@ -0,0 +1,151 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +//reference : https://github.com/keijiro/KinoGlitch + +using System; +using System.IO; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [Serializable] + [PostProcess(typeof(GlitchDigitalStripeRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/DigitalStripe")] + public class GlitchDigitalStripe : PostProcessEffectSettings + { + + [Range(0.0f, 1.0f)] + public FloatParameter intensity = new FloatParameter { value = 0.25f }; + + [Range(1, 10)] + public IntParameter frequncy = new IntParameter { value = 3 }; + + [Range(0f, 0.99f)] + public FloatParameter stripeLength = new FloatParameter { value = 0.89f }; + + [Range(8, 256)] + public IntParameter noiseTextureWidth = new IntParameter { value = 20 }; + + [Range(8, 256)] + public IntParameter noiseTextureHeight = new IntParameter { value = 20 }; + + public BoolParameter needStripColorAdjust = new BoolParameter { value = false }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter StripColorAdjustColor = new ColorParameter { value = new Color(0.1f, 0.1f, 0.1f) }; + + [Range(0, 10)] + public FloatParameter StripColorAdjustIndensity = new FloatParameter { value = 2f }; + + } + + public sealed class GlitchDigitalStripeRenderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-GlitchDigitalStripe"; + private Shader shader; + Texture2D _noiseTexture; + RenderTexture _trashFrame1; + RenderTexture _trashFrame2; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/DigitalStripe"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int indensity = Shader.PropertyToID("_Indensity"); + internal static readonly int noiseTex = Shader.PropertyToID("_NoiseTex"); + internal static readonly int StripColorAdjustColor = Shader.PropertyToID("_StripColorAdjustColor"); + internal static readonly int StripColorAdjustIndensity = Shader.PropertyToID("_StripColorAdjustIndensity"); + } + + + + void UpdateNoiseTexture(int frame, int noiseTextureWidth, int noiseTextureHeight, float stripLength) + { + int frameCount = Time.frameCount; + if (frameCount % frame != 0) + { + return; + } + + _noiseTexture = new Texture2D(noiseTextureWidth, noiseTextureHeight, TextureFormat.ARGB32, false); + _noiseTexture.wrapMode = TextureWrapMode.Clamp; + _noiseTexture.filterMode = FilterMode.Point; + + _trashFrame1 = new RenderTexture(Screen.width, Screen.height, 0); + _trashFrame2 = new RenderTexture(Screen.width, Screen.height, 0); + _trashFrame1.hideFlags = HideFlags.DontSave; + _trashFrame2.hideFlags = HideFlags.DontSave; + + Color32 color = XPostProcessingUtility.RandomColor(); + + for (int y = 0; y < _noiseTexture.height; y++) + { + for (int x = 0; x < _noiseTexture.width; x++) + { + //随机值若大于给定strip随机阈值,重新随机颜色 + if (UnityEngine.Random.value > stripLength) + { + color = XPostProcessingUtility.RandomColor(); + } + //设置贴图像素值 + _noiseTexture.SetPixel(x, y, color); + } + } + + _noiseTexture.Apply(); + + var bytes = _noiseTexture.EncodeToPNG(); + } + + + + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + UpdateNoiseTexture(settings.frequncy, settings.noiseTextureWidth,settings.noiseTextureHeight, settings.stripeLength); + + sheet.properties.SetFloat(ShaderIDs.indensity, settings.intensity); + + if (_noiseTexture != null) + { + sheet.properties.SetTexture(ShaderIDs.noiseTex, _noiseTexture); + } + + if (settings.needStripColorAdjust == true) + { + sheet.EnableKeyword("NEED_TRASH_FRAME"); + sheet.properties.SetColor(ShaderIDs.StripColorAdjustColor, settings.StripColorAdjustColor); + sheet.properties.SetFloat(ShaderIDs.StripColorAdjustIndensity, settings.StripColorAdjustIndensity); + } + else + { + sheet.DisableKeyword("NEED_TRASH_FRAME"); + } + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/GlitchDigitalStripe.cs.meta b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/GlitchDigitalStripe.cs.meta new file mode 100644 index 000000000..daa233dea --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/GlitchDigitalStripe.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b63d2b442ad53ae42b8343f3a6602000 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/README.md b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/README.md new file mode 100644 index 000000000..99782975e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/README.md @@ -0,0 +1,19 @@ + +# GlitchDigitalStripe + +## Source Code List +- [Shader Code](Shader/GlitchDigitalStripe.shader) +- [C# Code](GlitchDigitalStripe.cs) +- [Editor Code](Editor/GlitchDigitalStripeEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchDigitalStripe/GlitchDigitalStripe.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchDigitalStripe/GlitchDigitalStripe1.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchDigitalStripe/DigitalStripeGlitch2.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchDigitalStripe/GlitchDigitalStripe.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/README.md.meta new file mode 100644 index 000000000..6d1fd93a6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f74c3328bbd27624080f1bf812e57100 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Shader.meta new file mode 100644 index 000000000..42262e3ce --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8c4294135ae080841be53df7ad399a8c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Shader/GlitchDigitalStripe.shader b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Shader/GlitchDigitalStripe.shader new file mode 100644 index 000000000..658470e70 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Shader/GlitchDigitalStripe.shader @@ -0,0 +1,70 @@ + + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +//reference : https://github.com/keijiro/KinoGlitch + +Shader "Hidden/X-PostProcessing/Glitch/DigitalStripe" +{ + HLSLINCLUDE + + #include "../../../Shaders/XPostProcessing.hlsl" + + #pragma shader_feature NEED_TRASH_FRAME + + TEXTURE2D_SAMPLER2D(_NoiseTex, sampler_NoiseTex); + + uniform half _Indensity; + uniform half4 _StripColorAdjustColor; + uniform half _StripColorAdjustIndensity; + + + half4 Frag(VaryingsDefault i): SV_Target + { + // 基础数据准备 + half4 stripNoise = SAMPLE_TEXTURE2D(_NoiseTex, sampler_NoiseTex, i.texcoord); + half threshold = 1.001 - _Indensity * 1.001; + + // uv偏移 + half uvShift = step(threshold, pow(abs(stripNoise.x), 3)); + float2 uv = frac(i.texcoord + stripNoise.yz * uvShift); + half4 source = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv); + +#ifndef NEED_TRASH_FRAME + return source; +#endif + + // 基于废弃帧插值 + half stripIndensity = step(threshold, pow(abs(stripNoise.w), 3)) * _StripColorAdjustIndensity; + half3 color = lerp(source, _StripColorAdjustColor, stripIndensity).rgb; + return float4(color, source.a); + } + + ENDHLSL + + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Shader/GlitchDigitalStripe.shader.meta b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Shader/GlitchDigitalStripe.shader.meta new file mode 100644 index 000000000..2f080669d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Shader/GlitchDigitalStripe.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c0fe849c32d182f4fa20a6ab085a5d53 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlock.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlock.meta new file mode 100644 index 000000000..16ab2c0bc --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlock.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e8c4505c6e6d7334c877f5ed4605e7e8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlock/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlock/Editor.meta new file mode 100644 index 000000000..173d13700 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlock/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4896f57762c3a9f439fe1832ae200426 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlock/Editor/GlitchImageBlockEditor.cs b/Assets/X-PostProcessing/Effects/GlitchImageBlock/Editor/GlitchImageBlockEditor.cs new file mode 100644 index 000000000..9043fbd0c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlock/Editor/GlitchImageBlockEditor.cs @@ -0,0 +1,92 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchImageBlock))] + public sealed class GlitchImageBlockEditor : PostProcessEffectEditor + { + + + SerializedParameterOverride Fade; + SerializedParameterOverride Speed; + SerializedParameterOverride Amount; + SerializedParameterOverride BlockLayer1_U; + SerializedParameterOverride BlockLayer1_V; + SerializedParameterOverride BlockLayer2_U; + SerializedParameterOverride BlockLayer2_V; + SerializedParameterOverride BlockLayer1_Indensity; + SerializedParameterOverride BlockLayer2_Indensity; + SerializedParameterOverride RGBSplitIndensity; + SerializedParameterOverride BlockVisualizeDebug; + + + + //[Range(0.0f, 50.0f)] + //public FloatParameter BlockLayer1_Indensity = new FloatParameter { value = 8f }; + + //[Range(0.0f, 50.0f)] + //public FloatParameter BlockLayer2_Indensity = new FloatParameter { value = 4f }; + + public override void OnEnable() + { + Fade = FindParameterOverride(x => x.Fade); + Speed = FindParameterOverride(x => x.Speed); + Amount = FindParameterOverride(x => x.Amount); + BlockLayer1_U = FindParameterOverride(x => x.BlockLayer1_U); + BlockLayer1_V = FindParameterOverride(x => x.BlockLayer1_V); + BlockLayer2_U = FindParameterOverride(x => x.BlockLayer2_U); + BlockLayer2_V = FindParameterOverride(x => x.BlockLayer2_V); + BlockLayer1_Indensity = FindParameterOverride(x => x.BlockLayer1_Indensity); + BlockLayer2_Indensity = FindParameterOverride(x => x.BlockLayer2_Indensity); + RGBSplitIndensity = FindParameterOverride(x => x.RGBSplitIndensity); + BlockVisualizeDebug = FindParameterOverride(x => x.BlockVisualizeDebug); + + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(Fade); + PropertyField(Speed); + PropertyField(Amount); + EditorUtilities.DrawHeaderLabel("Block Noise Size"); + PropertyField(BlockLayer1_U); + PropertyField(BlockLayer1_V); + + EditorGUILayout.Space(); + PropertyField(BlockLayer2_U); + PropertyField(BlockLayer2_V); + EditorUtilities.DrawHeaderLabel("Block Indensity"); + PropertyField(BlockLayer1_Indensity); + PropertyField(BlockLayer2_Indensity); + PropertyField(RGBSplitIndensity); + + + EditorUtilities.DrawHeaderLabel("Block Visualize Debug"); + PropertyField(BlockVisualizeDebug); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlock/Editor/GlitchImageBlockEditor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlock/Editor/GlitchImageBlockEditor.cs.meta new file mode 100644 index 000000000..4bac19ebf --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlock/Editor/GlitchImageBlockEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e3a28515d63341f4cb38c94a23baa806 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlock/GlitchImageBlock.cs b/Assets/X-PostProcessing/Effects/GlitchImageBlock/GlitchImageBlock.cs new file mode 100644 index 000000000..a968b73b6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlock/GlitchImageBlock.cs @@ -0,0 +1,116 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(GlitchImageBlockRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/ImageBlock")] + public class GlitchImageBlock : PostProcessEffectSettings + { + + [Range(0.0f, 1.0f)] + public FloatParameter Fade = new FloatParameter { value = 1f }; + + [Range(0.0f, 1.0f)] + public FloatParameter Speed = new FloatParameter { value = 0.5f }; + + [Range(0.0f, 10.0f)] + public FloatParameter Amount = new FloatParameter { value = 1f }; + + [Range(0.0f, 50.0f)] + public FloatParameter BlockLayer1_U = new FloatParameter { value = 9f }; + + [Range(0.0f, 50.0f)] + public FloatParameter BlockLayer1_V = new FloatParameter { value = 9f }; + + [Range(0.0f, 50.0f)] + public FloatParameter BlockLayer2_U = new FloatParameter { value = 5f }; + + [Range(0.0f, 50.0f)] + public FloatParameter BlockLayer2_V = new FloatParameter { value = 5f }; + + [Range(0.0f, 50.0f)] + public FloatParameter BlockLayer1_Indensity = new FloatParameter { value = 8f }; + + [Range(0.0f, 50.0f)] + public FloatParameter BlockLayer2_Indensity = new FloatParameter { value = 4f }; + + [Range(0.0f, 50.0f)] + public FloatParameter RGBSplitIndensity = new FloatParameter { value = 0.5f }; + + + public BoolParameter BlockVisualizeDebug = new BoolParameter { value = false }; +} + + public sealed class GlitchImageBlockRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-GlitchImageBlock"; + private Shader shader; + private float TimeX = 1.0f; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/ImageBlock"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int Params2 = Shader.PropertyToID("_Params2"); + internal static readonly int Params3 = Shader.PropertyToID("_Params3"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + TimeX += Time.deltaTime; + if (TimeX > 100) + { + TimeX = 0; + } + + sheet.properties.SetVector(ShaderIDs.Params, new Vector3(TimeX * settings.Speed, settings.Amount, settings.Fade)); + sheet.properties.SetVector(ShaderIDs.Params2, new Vector4(settings.BlockLayer1_U, settings.BlockLayer1_V, settings.BlockLayer2_U, settings.BlockLayer2_V)); + sheet.properties.SetVector(ShaderIDs.Params3, new Vector3(settings.RGBSplitIndensity, settings.BlockLayer1_Indensity, settings.BlockLayer2_Indensity)); + + if (settings.BlockVisualizeDebug) + { + //debug + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 1); + } + else + { + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + } + + + + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlock/GlitchImageBlock.cs.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlock/GlitchImageBlock.cs.meta new file mode 100644 index 000000000..3d8e38c4f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlock/GlitchImageBlock.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 943c09b621e7d8e489394b2b0b0dc2c2 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlock/README.md b/Assets/X-PostProcessing/Effects/GlitchImageBlock/README.md new file mode 100644 index 000000000..f4cea2ea4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlock/README.md @@ -0,0 +1,17 @@ + +# GlitchImageBlock + +## Source Code List +- [Shader Code](Shader/GlitchImageBlock.shader) +- [C# Code](GlitchImageBlock.cs) +- [Editor Code](Editor/GlitchImageBlockEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchImageBlock/GlitchImageBlock.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchImageBlock/GlitchImageBlock-2.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchImageBlock/GlitchImageBlock.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlock/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlock/README.md.meta new file mode 100644 index 000000000..c5d95bcba --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlock/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 36ffdc7a49bf6344983a91644c2acf38 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlock/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlock/Shader.meta new file mode 100644 index 000000000..8dfc22efe --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlock/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 17663423a0a267948b36fc78ef3466ea +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlock/Shader/GlitchImageBlock.shader b/Assets/X-PostProcessing/Effects/GlitchImageBlock/Shader/GlitchImageBlock.shader new file mode 100644 index 000000000..699db8ba5 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlock/Shader/GlitchImageBlock.shader @@ -0,0 +1,118 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/ImageBlock" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + uniform half3 _Params; + uniform half4 _Params2; + uniform half3 _Params3; + + #define _TimeX _Params.x + #define _Offset _Params.y + #define _Fade _Params.z + + #define _BlockLayer1_U _Params2.w + #define _BlockLayer1_V _Params2.x + #define _BlockLayer2_U _Params2.y + #define _BlockLayer2_V _Params2.z + + #define _RGBSplit_Indensity _Params3.x + #define _BlockLayer1_Indensity _Params3.y + #define _BlockLayer2_Indensity _Params3.z + + + float randomNoise(float2 seed) + { + return frac(sin(dot(seed * floor(_TimeX * 30.0), float2(127.1, 311.7))) * 43758.5453123); + } + + float randomNoise(float seed) + { + return randomNoise(float2(seed, 1.0)); + } + + float4 Frag(VaryingsDefault i): SV_Target + { + float2 uv = i.texcoord.xy; + + //求解第一层blockLayer + float2 blockLayer1 = floor(uv * float2(_BlockLayer1_U, _BlockLayer1_V)); + float2 blockLayer2 = floor(uv * float2(_BlockLayer2_U, _BlockLayer2_V)); + + //return float4(blockLayer1, blockLayer2); + + float lineNoise1 = pow(randomNoise(blockLayer1), _BlockLayer1_Indensity); + float lineNoise2 = pow(randomNoise(blockLayer2), _BlockLayer2_Indensity); + float RGBSplitNoise = pow(randomNoise(5.1379), 7.1) * _RGBSplit_Indensity; + float lineNoise = lineNoise1 * lineNoise2 * _Offset - RGBSplitNoise; + + float4 colorR = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv); + float4 colorG = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv + float2(lineNoise * 0.05 * randomNoise(7.0), 0)); + float4 colorB = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv - float2(lineNoise * 0.05 * randomNoise(23.0), 0)); + + float4 result = float4(float3(colorR.x, colorG.y, colorB.z), colorR.a + colorG.a + colorB.a); + result = lerp(colorR, result, _Fade); + + return result; + } + + + float4 Frag_Debug(VaryingsDefault i): SV_Target + { + float2 uv = i.texcoord.xy; + + float2 blockLayer1 = floor(uv * float2(_BlockLayer1_U, _BlockLayer1_V)); + float2 blockLayer2 = floor(uv * float2(_BlockLayer2_U, _BlockLayer2_V)); + + float lineNoise1 = pow(randomNoise(blockLayer1), _BlockLayer1_Indensity); + float lineNoise2 = pow(randomNoise(blockLayer2), _BlockLayer2_Indensity); + float RGBSplitNoise = pow(randomNoise(5.1379), 7.1) * _RGBSplit_Indensity; + float lineNoise = lineNoise1 * lineNoise2 * _Offset - RGBSplitNoise; + + return float4(lineNoise, lineNoise, lineNoise, 1); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Debug + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlock/Shader/GlitchImageBlock.shader.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlock/Shader/GlitchImageBlock.shader.meta new file mode 100644 index 000000000..131504369 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlock/Shader/GlitchImageBlock.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dbaf1986db2e3db46a001805b0e2d40f +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV2.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2.meta new file mode 100644 index 000000000..c0c9f7806 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a18f3bbbdbf178f4d9aa077c42ba08c6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Editor.meta new file mode 100644 index 000000000..b71238f8d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6c86126edf3a903438d09f6a32dbc7cd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Editor/GlitchImageBlockV2Editor.cs b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Editor/GlitchImageBlockV2Editor.cs new file mode 100644 index 000000000..7b2b63b61 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Editor/GlitchImageBlockV2Editor.cs @@ -0,0 +1,72 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchImageBlockV2))] + public sealed class GlitchImageBlockV2Editor : PostProcessEffectEditor + { + + + SerializedParameterOverride Fade; + SerializedParameterOverride Speed; + SerializedParameterOverride Amount; + SerializedParameterOverride BlockLayer1_U; + SerializedParameterOverride BlockLayer1_V; + SerializedParameterOverride BlockLayer1_Indensity; + SerializedParameterOverride RGBSplitIndensity; + SerializedParameterOverride BlockVisualizeDebug; + + + public override void OnEnable() + { + Fade = FindParameterOverride(x => x.Fade); + Speed = FindParameterOverride(x => x.Speed); + Amount = FindParameterOverride(x => x.Amount); + BlockLayer1_U = FindParameterOverride(x => x.BlockLayer1_U); + BlockLayer1_V = FindParameterOverride(x => x.BlockLayer1_V); + BlockLayer1_Indensity = FindParameterOverride(x => x.BlockLayer1_Indensity); + RGBSplitIndensity = FindParameterOverride(x => x.RGBSplitIndensity); + BlockVisualizeDebug = FindParameterOverride(x => x.BlockVisualizeDebug); + + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(Fade); + PropertyField(Speed); + PropertyField(Amount); + EditorUtilities.DrawHeaderLabel("Block Noise Size"); + PropertyField(BlockLayer1_U); + PropertyField(BlockLayer1_V); + EditorUtilities.DrawHeaderLabel("Block Indensity"); + PropertyField(BlockLayer1_Indensity); + PropertyField(RGBSplitIndensity); + EditorUtilities.DrawHeaderLabel("Block Visualize Debug"); + PropertyField(BlockVisualizeDebug); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Editor/GlitchImageBlockV2Editor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Editor/GlitchImageBlockV2Editor.cs.meta new file mode 100644 index 000000000..98f1854f6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Editor/GlitchImageBlockV2Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 42586718201acaa47b8a83dceb61e604 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/GlitchImageBlockV2.cs b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/GlitchImageBlockV2.cs new file mode 100644 index 000000000..a4ced98a1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/GlitchImageBlockV2.cs @@ -0,0 +1,116 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(GlitchImageBlockV2Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/ImageBlockV2")] + public class GlitchImageBlockV2 : PostProcessEffectSettings + { + + [Range(0.0f, 1.0f)] + public FloatParameter Fade = new FloatParameter { value = 1f }; + + [Range(0.0f, 1.0f)] + public FloatParameter Speed = new FloatParameter { value = 0.5f }; + + [Range(0.0f, 10.0f)] + public FloatParameter Amount = new FloatParameter { value = 1f }; + + [Range(0.0f, 50.0f)] + public FloatParameter BlockLayer1_U = new FloatParameter { value = 2f }; + + [Range(0.0f, 50.0f)] + public FloatParameter BlockLayer1_V = new FloatParameter { value = 16f }; + + + [Range(0.0f, 50.0f)] + public FloatParameter BlockLayer1_Indensity = new FloatParameter { value = 8f }; + + [Range(0.0f, 50.0f)] + public FloatParameter RGBSplitIndensity = new FloatParameter { value = 2f }; + + public BoolParameter BlockVisualizeDebug = new BoolParameter { value = false }; + } + + public sealed class GlitchImageBlockV2Renderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-GlitchImageBlockV2"; + private Shader shader; + private float TimeX = 1.0f; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/ImageBlockV2"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int Params2 = Shader.PropertyToID("_Params2"); +} + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + + TimeX += Time.deltaTime; + if (TimeX > 100) + { + TimeX = 0; + } + + + sheet.properties.SetVector(ShaderIDs.Params, new Vector3(TimeX * settings.Speed, settings.Amount, settings.Fade)); + sheet.properties.SetVector(ShaderIDs.Params2, new Vector4(settings.BlockLayer1_U, settings.BlockLayer1_V, settings.BlockLayer1_Indensity, settings.RGBSplitIndensity)); + + sheet.properties.SetFloat("_TimeX", TimeX * settings.Speed); + sheet.properties.SetFloat("_Offset", settings.Amount); + sheet.properties.SetFloat("_Fade", settings.Fade); + + sheet.properties.SetFloat("_BlockLayer1_U", settings.BlockLayer1_U); + sheet.properties.SetFloat("_BlockLayer1_V", settings.BlockLayer1_V); + sheet.properties.SetFloat("_BlockLayer1_Indensity", settings.BlockLayer1_Indensity); + sheet.properties.SetFloat("_RGBSplit_Indensity", settings.RGBSplitIndensity); + + + if (settings.BlockVisualizeDebug) + { + //debug + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 1); + } + else + { + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + } + + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/GlitchImageBlockV2.cs.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/GlitchImageBlockV2.cs.meta new file mode 100644 index 000000000..882e3144d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/GlitchImageBlockV2.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2263e6ecd318999478fee0f26de0895c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/README.md b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/README.md new file mode 100644 index 000000000..613e32271 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/README.md @@ -0,0 +1,15 @@ + +# GlitchImageBlockV2 + +## Source Code List +- [Shader Code](Shader/GlitchImageBlockV2.shader) +- [C# Code](GlitchImageBlockV2.cs) +- [Editor Code](Editor/GlitchImageBlockV2Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchImageBlockV2/GlitchImageBlockV2.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchImageBlockV2/GlitchImageBlockV2.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/README.md.meta new file mode 100644 index 000000000..e073907ee --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 97ddddc9b38c4bd48839ef8e81482b16 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Shader.meta new file mode 100644 index 000000000..e38b73ae6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f2381a4389d17a3439d7f8f99b8f6bf1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Shader/GlitchImageBlockV2.shader b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Shader/GlitchImageBlockV2.shader new file mode 100644 index 000000000..6449b11c8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Shader/GlitchImageBlockV2.shader @@ -0,0 +1,101 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/ImageBlockV2" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + uniform half3 _Params; + uniform half4 _Params2; + + #define _TimeX _Params.x + #define _Offset _Params.y + #define _Fade _Params.z + #define _BlockLayer1_U _Params2.x + #define _BlockLayer1_V _Params2.y + #define _BlockLayer1_Indensity _Params2.z + #define _RGBSplit_Indensity _Params2.w + + + float randomNoise(float2 seed) + { + return frac(sin(dot(seed * floor(_TimeX * 30.0), float2(127.1, 311.7))) * 43758.5453123); + } + + float randomNoise(float seed) + { + return randomNoise(float2(seed, 1.0)); + } + + float4 Frag(VaryingsDefault i): SV_Target + { + float2 uv = i.texcoord.xy; + + float2 blockLayer1 = floor(uv * float2(_BlockLayer1_U, _BlockLayer1_V)); + + float lineNoise = pow(randomNoise(blockLayer1), _BlockLayer1_Indensity) * _Offset - pow(randomNoise(5.1379), 7.1) * _RGBSplit_Indensity; + + float4 colorR = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv); + float4 colorG = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv + float2(lineNoise * 0.05 * randomNoise(5.0), 0)); + float4 colorB = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv - float2(lineNoise * 0.05 * randomNoise(31.0), 0)); + + float4 result = float4(float3(colorR.r, colorG.g, colorB.b), colorR.a + colorG.a + colorB.a); + result = lerp(colorR, result, _Fade); + + return result; + } + + + float4 Frag_Debug(VaryingsDefault i): SV_Target + { + float2 uv = i.texcoord.xy; + + float2 blockLayer1 = floor(uv * float2(_BlockLayer1_U, _BlockLayer1_V)); + + float lineNoise = pow(randomNoise(blockLayer1), _BlockLayer1_Indensity) * _Offset; + + return float4(lineNoise, lineNoise, lineNoise, 1); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Debug + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Shader/GlitchImageBlockV2.shader.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Shader/GlitchImageBlockV2.shader.meta new file mode 100644 index 000000000..1a1db1600 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Shader/GlitchImageBlockV2.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: df4ee131460b39440b639403867c8c3f +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV3.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3.meta new file mode 100644 index 000000000..573b37071 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a020845264d90924db9476a751944814 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Editor.meta new file mode 100644 index 000000000..dcfb5b5f1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fa3ac206c46f9ac4eb710444d4bc9dfc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Editor/GlitchImageBlockV3Editor.cs b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Editor/GlitchImageBlockV3Editor.cs new file mode 100644 index 000000000..0237894cb --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Editor/GlitchImageBlockV3Editor.cs @@ -0,0 +1,49 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchImageBlockV3))] + public sealed class GlitchImageBlockV3Editor : PostProcessEffectEditor + { + + SerializedParameterOverride Speed; + SerializedParameterOverride BlockSize; + + + public override void OnEnable() + { + Speed = FindParameterOverride(x => x.Speed); + BlockSize = FindParameterOverride(x => x.BlockSize); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(Speed); + PropertyField(BlockSize); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Editor/GlitchImageBlockV3Editor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Editor/GlitchImageBlockV3Editor.cs.meta new file mode 100644 index 000000000..b83813f36 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Editor/GlitchImageBlockV3Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: cb0c091dd7691964fb6cd1cb218e13c6 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/GlitchImageBlockV3.cs b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/GlitchImageBlockV3.cs new file mode 100644 index 000000000..097fc6b46 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/GlitchImageBlockV3.cs @@ -0,0 +1,68 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(GlitchImageBlockV3Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/ImageBlockV3")] + public class GlitchImageBlockV3 : PostProcessEffectSettings + { + + [Range(0.0f, 50.0f)] + public FloatParameter Speed = new FloatParameter { value = 10f }; + + [Range(0.0f, 50.0f)] + public FloatParameter BlockSize = new FloatParameter { value = 8f }; + + } + + public sealed class GlitchImageBlockV3Renderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-GlitchImageBlockV3"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/ImageBlockV3"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector2(settings.Speed, settings.BlockSize)); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/GlitchImageBlockV3.cs.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/GlitchImageBlockV3.cs.meta new file mode 100644 index 000000000..3a8f37415 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/GlitchImageBlockV3.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c9acc76ac9d8d4e4a8d7294a5bd00c85 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/README.md b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/README.md new file mode 100644 index 000000000..53a2f7e88 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/README.md @@ -0,0 +1,15 @@ + +# GlitchImageBlockV3 + +## Source Code List +- [Shader Code](Shader/GlitchImageBlockV3.shader) +- [C# Code](GlitchImageBlockV3.cs) +- [Editor Code](Editor/GlitchImageBlockV3Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchImageBlockV3/GlitchImageBlockV3.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchImageBlockV3/GlitchImageBlockV3.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/README.md.meta new file mode 100644 index 000000000..809eaad94 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 26c1dc0cf60d52049937f08ace70249e +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Shader.meta new file mode 100644 index 000000000..19e24fe98 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5fa71682a7d47b745a538fdbba90d05c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Shader/GlitchImageBlockV3.shader b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Shader/GlitchImageBlockV3.shader new file mode 100644 index 000000000..7eab45554 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Shader/GlitchImageBlockV3.shader @@ -0,0 +1,66 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/ImageBlockV3" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half3 _Params; + + #define _Speed _Params.x + #define _BlockSize _Params.y + + inline float randomNoise(float2 seed) + { + return frac(sin(dot(seed * floor(_Time.y * _Speed), float2(17.13, 3.71))) * 43758.5453123); + } + + inline float randomNoise(float seed) + { + return rand(float2(seed, 1.0)); + } + + half4 Frag(VaryingsDefault i) : SV_Target + { + + float2 block = randomNoise(floor(i.texcoord * _BlockSize)); + float displaceNoise = pow(block.x, 8.0) * pow(block.x, 3.0); + + half ColorR = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord).r; + half ColorG = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + float2(displaceNoise * 0.05 * randomNoise(7.0), 0.0)).g; + half ColorB = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - float2(displaceNoise * 0.05 * randomNoise(13.0), 0.0)).b; + + return half4(ColorR, ColorG, ColorB, 1.0); + + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Shader/GlitchImageBlockV3.shader.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Shader/GlitchImageBlockV3.shader.meta new file mode 100644 index 000000000..812ca60a8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Shader/GlitchImageBlockV3.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1123c475f6cef32418a95e7ce980818a +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV4.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4.meta new file mode 100644 index 000000000..be331deeb --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 477cacaffd8cf2649a4e056d198c45ac +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Editor.meta new file mode 100644 index 000000000..c3eddb436 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 91e87b99d1d156243a58249d5c72f2e8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Editor/GlitchImageBlockV4Editor.cs b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Editor/GlitchImageBlockV4Editor.cs new file mode 100644 index 000000000..0476255c6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Editor/GlitchImageBlockV4Editor.cs @@ -0,0 +1,58 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchImageBlockV4))] + public sealed class GlitchImageBlockV4Editor : PostProcessEffectEditor + { + + SerializedParameterOverride Speed; + SerializedParameterOverride BlockSize; + SerializedParameterOverride MaxRGBSplitX; + SerializedParameterOverride MaxRGBSplitY; + + + + public override void OnEnable() + { + Speed = FindParameterOverride(x => x.Speed); + BlockSize = FindParameterOverride(x => x.BlockSize); + MaxRGBSplitX = FindParameterOverride(x => x.MaxRGBSplitX); + MaxRGBSplitY = FindParameterOverride(x => x.MaxRGBSplitY); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(Speed); + PropertyField(BlockSize); + + EditorUtilities.DrawHeaderLabel("RGB Split"); + PropertyField(MaxRGBSplitX); + PropertyField(MaxRGBSplitY); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Editor/GlitchImageBlockV4Editor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Editor/GlitchImageBlockV4Editor.cs.meta new file mode 100644 index 000000000..02c64a1b9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Editor/GlitchImageBlockV4Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 4f56ce9e77be3e648996b7894a6b8aab +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/GlitchImageBlockV4.cs b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/GlitchImageBlockV4.cs new file mode 100644 index 000000000..9d893e5b6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/GlitchImageBlockV4.cs @@ -0,0 +1,75 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(GlitchImageBlockV4Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/ImageBlockV4")] + public class GlitchImageBlockV4 : PostProcessEffectSettings + { + [Range(0f, 50f)] + public FloatParameter Speed = new FloatParameter { value = 10f }; + + [Range(0f, 50f)] + public FloatParameter BlockSize = new FloatParameter { value = 8f }; + + [Range(0f, 25f)] + public FloatParameter MaxRGBSplitX = new FloatParameter { value = 1f }; + + [Range(0f, 25f)] + public FloatParameter MaxRGBSplitY = new FloatParameter { value = 1f }; + } + + public sealed class GlitchImageBlockV4Renderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-GlitchImageBlockV4"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/ImageBlockV4"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int Params2 = Shader.PropertyToID("_Params2"); +} + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(settings.Speed, settings.BlockSize, settings.MaxRGBSplitX, settings.MaxRGBSplitY)); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/GlitchImageBlockV4.cs.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/GlitchImageBlockV4.cs.meta new file mode 100644 index 000000000..a9cc8cf2f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/GlitchImageBlockV4.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 4ec8e4c840c12a84f9cbb49d82780b09 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/README.md b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/README.md new file mode 100644 index 000000000..86448db85 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/README.md @@ -0,0 +1,15 @@ + +# GlitchImageBlockV4 + +## Source Code List +- [Shader Code](Shader/GlitchImageBlockV4.shader) +- [C# Code](GlitchImageBlockV4.cs) +- [Editor Code](Editor/GlitchImageBlockV4Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchImageBlockV4/GlitchImageBlockV4.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchImageBlockV4/GlitchImageBlockV4.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/README.md.meta new file mode 100644 index 000000000..3b8d3f687 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 67633245a2c267c4ba96ad73a06ca028 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Shader.meta new file mode 100644 index 000000000..6b9a98fcf --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ee161cd9d91cb134489c4a1211aaf7b0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Shader/GlitchImageBlockV4.shader b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Shader/GlitchImageBlockV4.shader new file mode 100644 index 000000000..4ab25cdb3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Shader/GlitchImageBlockV4.shader @@ -0,0 +1,72 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/ImageBlockV4" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half4 _Params; + #define _Speed _Params.x + #define _BlockSize _Params.y + #define _MaxRGBSplitX _Params.z + #define _MaxRGBSplitY _Params.w + + + inline float randomNoise(float2 seed) + { + return frac(sin(dot(seed * floor(_Time.y * _Speed), float2(17.13, 3.71))) * 43758.5453123); + } + + inline float randomNoise(float seed) + { + return randomNoise(float2(seed, 1.0)); + } + + half4 Frag(VaryingsDefault i) : SV_Target + { + half2 block = randomNoise(floor(i.texcoord * _BlockSize)); + + float displaceNoise = pow(block.x, 8.0) * pow(block.x, 3.0); + float splitRGBNoise = pow(randomNoise(7.2341), 17.0); + float offsetX = displaceNoise - splitRGBNoise * _MaxRGBSplitX; + float offsetY = displaceNoise - splitRGBNoise * _MaxRGBSplitY; + + float noiseX = 0.05 * randomNoise(13.0); + float noiseY = 0.05 * randomNoise(7.0); + float2 offset = float2(offsetX * noiseX, offsetY* noiseY); + + half4 colorR = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + half4 colorG = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + offset); + half4 colorB = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - offset); + + return half4(colorR.r , colorG.g, colorB.z, (colorR.a + colorG.a + colorB.a)); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Shader/GlitchImageBlockV4.shader.meta b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Shader/GlitchImageBlockV4.shader.meta new file mode 100644 index 000000000..80b511580 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Shader/GlitchImageBlockV4.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d90b34efa60fe034ca1e1c43af1013d7 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchLineBlock.meta b/Assets/X-PostProcessing/Effects/GlitchLineBlock.meta new file mode 100644 index 000000000..f165c6aa4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchLineBlock.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: be5409520f154074d95d04f90d72927c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchLineBlock/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchLineBlock/Editor.meta new file mode 100644 index 000000000..47e0e2d8f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchLineBlock/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 74ca834756ab1ba478ff0698b4ad4b85 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchLineBlock/Editor/GlitchLineBlockEditor.cs b/Assets/X-PostProcessing/Effects/GlitchLineBlock/Editor/GlitchLineBlockEditor.cs new file mode 100644 index 000000000..834319e72 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchLineBlock/Editor/GlitchLineBlockEditor.cs @@ -0,0 +1,74 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchLineBlock))] + public sealed class GlitchLineBlockEditor : PostProcessEffectEditor + { + SerializedParameterOverride blockDirection; + SerializedParameterOverride intervalType; + SerializedParameterOverride frequency; + SerializedParameterOverride Amount; + SerializedParameterOverride LinesWidth; + SerializedParameterOverride Speed; + SerializedParameterOverride Offset; + SerializedParameterOverride Alpha; + + + public override void OnEnable() + { + blockDirection = FindParameterOverride(x => x.blockDirection); + intervalType = FindParameterOverride(x => x.intervalType); + frequency = FindParameterOverride(x => x.frequency); + Amount = FindParameterOverride(x => x.Amount); + LinesWidth = FindParameterOverride(x => x.LinesWidth); + Speed = FindParameterOverride(x => x.Speed); + Offset = FindParameterOverride(x => x.Offset); + Alpha = FindParameterOverride(x => x.Alpha); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Block Direction"); + PropertyField(blockDirection); + + EditorUtilities.DrawHeaderLabel("Interval Frequency"); + PropertyField(intervalType); + + if (intervalType.value.enumValueIndex != (int)IntervalType.Infinite) + { + PropertyField(frequency); + } + + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(Amount); + PropertyField(LinesWidth); + PropertyField(Speed); + PropertyField(Offset); + PropertyField(Alpha); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchLineBlock/Editor/GlitchLineBlockEditor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchLineBlock/Editor/GlitchLineBlockEditor.cs.meta new file mode 100644 index 000000000..28f4ed793 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchLineBlock/Editor/GlitchLineBlockEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b2826544cb5809a44aab0df13efda888 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchLineBlock/GlitchLineBlock.cs b/Assets/X-PostProcessing/Effects/GlitchLineBlock/GlitchLineBlock.cs new file mode 100644 index 000000000..23923def1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchLineBlock/GlitchLineBlock.cs @@ -0,0 +1,126 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + [Serializable] + public sealed class IntervalTypeParameter : ParameterOverride { }; + + [Serializable] + [PostProcess(typeof(GlitchLineBlockRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/LineBlock")] + public class GlitchLineBlock : PostProcessEffectSettings + { + + public DirectionParameter blockDirection = new DirectionParameter { value = Direction.Horizontal }; + + public IntervalTypeParameter intervalType = new IntervalTypeParameter { value = IntervalType.Random }; + + [Range(0f, 25f)] + public FloatParameter frequency = new FloatParameter { value = 1f }; + + [Range(0f, 1f)] + public FloatParameter Amount = new FloatParameter { value = 0.5f }; + + [Range(0.1f, 10f)] + public FloatParameter LinesWidth = new FloatParameter { value = 1f }; + + [Range(0f, 1f)] + public FloatParameter Speed = new FloatParameter { value = 0.8f }; + + [Range(0f, 13f)] + public FloatParameter Offset = new FloatParameter { value = 1f }; + + [Range(0f, 1f)] + public FloatParameter Alpha = new FloatParameter { value = 1f }; + + } + + public sealed class GlitchLineBlockRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-GlitchLineBlock"; + private Shader shader; + private float TimeX = 1.0f; + private float randomFrequency; + private int frameCount = 0; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/LineBlock"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int Params2 = Shader.PropertyToID("_Params2"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + UpdateFrequency(sheet); + + TimeX += Time.deltaTime; + if (TimeX > 100) + { + TimeX = 0; + } + + sheet.properties.SetVector(ShaderIDs.Params, new Vector3( + settings.intervalType.value == IntervalType.Random ? randomFrequency : settings.frequency, + TimeX * settings.Speed * 0.2f , settings.Amount)); + + sheet.properties.SetVector(ShaderIDs.Params2, new Vector3(settings.Offset, 1 / settings.LinesWidth, settings.Alpha)); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.blockDirection.value); + cmd.EndSample(PROFILER_TAG); + } + + void UpdateFrequency(PropertySheet sheet) + { + if (settings.intervalType.value == IntervalType.Random) + { + if (frameCount > settings.frequency) + { + + frameCount = 0; + randomFrequency = UnityEngine.Random.Range(0, settings.frequency); + } + frameCount++; + } + + if (settings.intervalType.value == IntervalType.Infinite) + { + sheet.EnableKeyword("USING_FREQUENCY_INFINITE"); + } + else + { + sheet.DisableKeyword("USING_FREQUENCY_INFINITE"); + } + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchLineBlock/GlitchLineBlock.cs.meta b/Assets/X-PostProcessing/Effects/GlitchLineBlock/GlitchLineBlock.cs.meta new file mode 100644 index 000000000..0348fdaa6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchLineBlock/GlitchLineBlock.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c1b4be796ebe4f841a791ce91720f612 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchLineBlock/README.md b/Assets/X-PostProcessing/Effects/GlitchLineBlock/README.md new file mode 100644 index 000000000..171747eb4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchLineBlock/README.md @@ -0,0 +1,19 @@ + +# GlitchLineBlock + +## Source Code List +- [Shader Code](Shader/GlitchLineBlock.shader) +- [C# Code](GlitchLineBlock.cs) +- [Editor Code](Editor/GlitchLineBlockEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchLineBlock/GlitchLineBlock.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchLineBlock/GlitchLineBlock-2.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchLineBlock/GlitchLineBlock-3.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchLineBlock/GlitchLineBlock.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchLineBlock/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchLineBlock/README.md.meta new file mode 100644 index 000000000..fc08b156e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchLineBlock/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 0e25fe862bed87c43a8e86a8e7e9a941 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchLineBlock/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchLineBlock/Shader.meta new file mode 100644 index 000000000..41ba57137 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchLineBlock/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 92a6d42f54d01d44f9c3d4d4b4d4dce2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchLineBlock/Shader/GlitchLineBlock.shader b/Assets/X-PostProcessing/Effects/GlitchLineBlock/Shader/GlitchLineBlock.shader new file mode 100644 index 000000000..48fef038c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchLineBlock/Shader/GlitchLineBlock.shader @@ -0,0 +1,185 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/LineBlock" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + #pragma shader_feature USING_FREQUENCY_INFINITE + + uniform half4 _Params; + uniform half4 _Params2; + + #define _Frequency _Params.x + #define _TimeX _Params.y + #define _Amount _Params.z + #define _Offset _Params2.x + #define _LinesWidth _Params2.y + #define _Alpha _Params2.z + + float randomNoise(float2 c) + { + return frac(sin(dot(c.xy, float2(12.9898, 78.233))) * 43758.5453); + } + + float trunc(float x, float num_levels) + { + return floor(x * num_levels) / num_levels; + } + + float2 trunc(float2 x, float2 num_levels) + { + return floor(x * num_levels) / num_levels; + } + + float3 rgb2yuv(float3 rgb) + { + float3 yuv; + yuv.x = dot(rgb, float3(0.299, 0.587, 0.114)); + yuv.y = dot(rgb, float3(-0.14713, -0.28886, 0.436)); + yuv.z = dot(rgb, float3(0.615, -0.51499, -0.10001)); + return yuv; + } + + float3 yuv2rgb(float3 yuv) + { + float3 rgb; + rgb.r = yuv.x + yuv.z * 1.13983; + rgb.g = yuv.x + dot(float2(-0.39465, -0.58060), yuv.yz); + rgb.b = yuv.x + yuv.y * 2.03211; + return rgb; + } + + + float4 Frag_Horizontal(VaryingsDefault i): SV_Target + { + float2 uv = i.texcoord; + + half strength = 0; + #if USING_FREQUENCY_INFINITE + strength = 10; + #else + strength = 0.5 + 0.5 * cos(_TimeX * _Frequency); + #endif + + _TimeX *= strength; + + // [1] 生成随机强度梯度线条 + float truncTime = trunc(_TimeX, 4.0); + float uv_trunc = randomNoise(trunc(uv.yy, float2(8, 8)) + 100.0 * truncTime); + float uv_randomTrunc = 6.0 * trunc(_TimeX, 24.0 * uv_trunc); + + // [2] 生成随机非均匀宽度线条 + float blockLine_random = 0.5 * randomNoise(trunc(uv.yy + uv_randomTrunc, float2(8 * _LinesWidth, 8 * _LinesWidth))); + blockLine_random += 0.5 * randomNoise(trunc(uv.yy + uv_randomTrunc, float2(7, 7))); + blockLine_random = blockLine_random * 2.0 - 1.0; + blockLine_random = sign(blockLine_random) * saturate((abs(blockLine_random) - _Amount) / (0.4)); + blockLine_random = lerp(0, blockLine_random, _Offset); + + + // [3] 生成源色调的blockLine Glitch + float2 uv_blockLine = uv; + uv_blockLine = saturate(uv_blockLine + float2(0.1 * blockLine_random, 0)); + float4 blockLineColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, abs(uv_blockLine)); + + // [4] 将RGB转到YUV空间,并做色调偏移 + // RGB -> YUV + float3 blockLineColor_yuv = rgb2yuv(blockLineColor.rgb); + // adjust Chrominance | 色度 + blockLineColor_yuv.y /= 1.0 - 3.0 * abs(blockLine_random) * saturate(0.5 - blockLine_random); + // adjust Chroma | 浓度 + blockLineColor_yuv.z += 0.125 * blockLine_random * saturate(blockLine_random - 0.5); + float3 blockLineColor_rgb = yuv2rgb(blockLineColor_yuv); + + + // [5] 与源场景图进行混合 + float4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + return lerp(sceneColor, float4(blockLineColor_rgb, blockLineColor.a), _Alpha); + } + + float4 Frag_Vertical(VaryingsDefault i): SV_Target + { + float2 uv = i.texcoord; + + half strength = 0; + #if USING_FREQUENCY_INFINITE + strength = 10; + #else + strength = 0.5 + 0.5 * cos(_TimeX * _Frequency); + #endif + + _TimeX *= strength; + + // [1] 生成随机均匀宽度线条 + float truncTime = trunc(_TimeX, 4.0); + float uv_trunc = randomNoise(trunc(uv.xx, float2(8, 8)) + 100.0 * truncTime); + float uv_randomTrunc = 6.0 * trunc(_TimeX, 24.0 * uv_trunc); + + // [2] 生成随机非均匀宽度线条 | Generate Random inhomogeneous Block Line + float blockLine_random = 0.5 * randomNoise(trunc(uv.xx + uv_randomTrunc, float2(8 * _LinesWidth, 8 * _LinesWidth))); + blockLine_random += 0.5 * randomNoise(trunc(uv.xx + uv_randomTrunc, float2(7, 7))); + blockLine_random = blockLine_random * 2.0 - 1.0; + blockLine_random = sign(blockLine_random) * saturate((abs(blockLine_random) - _Amount) / (0.4)); + blockLine_random = lerp(0, blockLine_random, _Offset); + + // [3] 生成源色调的blockLine Glitch + float2 uv_blockLine = uv; + uv_blockLine = saturate(uv_blockLine + float2(0, 0.1 * blockLine_random)); + float4 blockLineColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, abs(uv_blockLine)); + + // [4] 将RGB转到YUV空间,并做色调偏移 + // RGB -> YUV + float3 blockLineColor_yuv = rgb2yuv(blockLineColor.rgb); + // adjust Chrominance | 色度 + blockLineColor_yuv.y /= 1.0 - 3.0 * abs(blockLine_random) * saturate(0.5 - blockLine_random); + // adjust Chroma | 浓度 + blockLineColor_yuv.z += 0.125 * blockLine_random * saturate(blockLine_random - 0.5); + float3 blockLineColor_rgb = yuv2rgb(blockLineColor_yuv); + + // [5] 与源场景图进行混合 + float4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + return lerp(sceneColor, float4(blockLineColor_rgb, blockLineColor.a), _Alpha); + } + + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Horizontal + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Vertical + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchLineBlock/Shader/GlitchLineBlock.shader.meta b/Assets/X-PostProcessing/Effects/GlitchLineBlock/Shader/GlitchLineBlock.shader.meta new file mode 100644 index 000000000..87efd0d0d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchLineBlock/Shader/GlitchLineBlock.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c56b2bb17417b604e8da933958ebf31b +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplit.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplit.meta new file mode 100644 index 000000000..98dceb0e2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplit.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c49ebce4d4def504887d2c7287afc5ba +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Editor.meta new file mode 100644 index 000000000..850e6896a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1df89a4175f998548bc0889f7fd8c6d5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Editor/GlitchRGBSplitEditor.cs b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Editor/GlitchRGBSplitEditor.cs new file mode 100644 index 000000000..26e9eab09 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Editor/GlitchRGBSplitEditor.cs @@ -0,0 +1,68 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchRGBSplit))] + public sealed class GlitchRGBSplitEditor : PostProcessEffectEditor + { + + SerializedParameterOverride SplitDirection; + SerializedParameterOverride Fading; + SerializedParameterOverride Amount; + SerializedParameterOverride Speed; + SerializedParameterOverride AmountR; + SerializedParameterOverride AmountB; + SerializedParameterOverride CenterFading; + + + public override void OnEnable() + { + SplitDirection = FindParameterOverride(x => x.SplitDirection); + Fading = FindParameterOverride(x => x.Fading); + Amount = FindParameterOverride(x => x.Amount); + Speed = FindParameterOverride(x => x.Speed); + AmountR = FindParameterOverride(x => x.AmountR); + AmountB = FindParameterOverride(x => x.AmountB); + CenterFading = FindParameterOverride(x => x.CenterFading); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Split Direction"); + PropertyField(SplitDirection); + + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(Amount); + PropertyField(Speed); + PropertyField(Fading); + PropertyField(CenterFading); + + EditorUtilities.DrawHeaderLabel("RGB Channel Amount"); + PropertyField(AmountR); + PropertyField(AmountB); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Editor/GlitchRGBSplitEditor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Editor/GlitchRGBSplitEditor.cs.meta new file mode 100644 index 000000000..9d84af5f0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Editor/GlitchRGBSplitEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 31db0512619009048b1ced5553fcb7de +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplit/GlitchRGBSplit.cs b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/GlitchRGBSplit.cs new file mode 100644 index 000000000..d4c078952 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/GlitchRGBSplit.cs @@ -0,0 +1,95 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + [Serializable] + public sealed class GlitchRGBSplitDirectionParameter : ParameterOverride { } + + [Serializable] + [PostProcess(typeof(GlitchRGBSplitRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/RGBSplit")] + public class GlitchRGBSplit : PostProcessEffectSettings + { + public GlitchRGBSplitDirectionParameter SplitDirection = new GlitchRGBSplitDirectionParameter { value = DirectionEX.Horizontal }; + + [Range(0.0f, 1.0f)] + public FloatParameter Fading = new FloatParameter { value = 1f }; + + [Range(0.0f, 5.0f)] + public FloatParameter Amount = new FloatParameter { value = 1f }; + + [Range(0.0f, 10.0f)] + public FloatParameter Speed = new FloatParameter { value = 1f }; + + [Range(0.0f, 1.0f)] + public FloatParameter CenterFading = new FloatParameter { value = 1f }; + + [Range(0.0f, 5.0f)] + public FloatParameter AmountR = new FloatParameter { value = 1f }; + + [Range(0.0f, 5.0f)] + public FloatParameter AmountB = new FloatParameter { value = 1f }; + + } + + public sealed class GlitchRGBSplitRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-GlitchRGBSplit"; + private Shader shader; + private float TimeX = 1.0f; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/RGBSplit"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int Params2 = Shader.PropertyToID("_Params2"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + TimeX += Time.deltaTime; + if (TimeX > 100) + { + TimeX = 0; + } + + + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(settings.Fading, settings.Amount, settings.Speed, settings.CenterFading)); + sheet.properties.SetVector(ShaderIDs.Params2, new Vector3(TimeX, settings.AmountR, settings.AmountB)); + + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.SplitDirection.value); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplit/GlitchRGBSplit.cs.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/GlitchRGBSplit.cs.meta new file mode 100644 index 000000000..b7ce19c17 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/GlitchRGBSplit.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2454d8719de212d4095611b98a288e0a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplit/README.md b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/README.md new file mode 100644 index 000000000..523bf57a6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/README.md @@ -0,0 +1,17 @@ + +# GlitchRGBSplit + +## Source Code List +- [Shader Code](Shader/GlitchRGBSplit.shader) +- [C# Code](GlitchRGBSplit.cs) +- [Editor Code](Editor/GlitchRGBSplitEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplit/GlitchRGBSplit.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplit/GlitchRGBSplit.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplit/GlitchRGBSplit-1.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplit/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/README.md.meta new file mode 100644 index 000000000..718f69d2d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a97a86c90d8f41f40b4053ef9b71813e +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Shader.meta new file mode 100644 index 000000000..2b340df6e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 20084c46dc05acc4cbcaddc5727d5199 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Shader/GlitchRGBSplit.shader b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Shader/GlitchRGBSplit.shader new file mode 100644 index 000000000..8532c99ae --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Shader/GlitchRGBSplit.shader @@ -0,0 +1,148 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/RGBSplit" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + uniform half4 _Params; + uniform half3 _Params2; + + #define _Fading _Params.x + #define _Amount _Params.y + #define _Speed _Params.z + #define _CenterFading _Params.w + #define _TimeX _Params2.x + #define _AmountR _Params2.y + #define _AmountB _Params2.z + + half4 Frag_Horizontal(VaryingsDefault i): SV_Target + { + + float2 uv = i.texcoord.xy; + half time = _TimeX * 6 * _Speed; + half splitAmount = (1.0 + sin(time)) * 0.5; + splitAmount *= 1.0 + sin(time * 2) * 0.5; + splitAmount = pow(splitAmount, 3.0); + splitAmount *= 0.05; + float distance = length(uv - float2(0.5, 0.5)); + splitAmount *= _Fading * _Amount; + splitAmount *= lerp(1, distance, _CenterFading); + + half3 colorR = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(uv.x + splitAmount * _AmountR, uv.y)).rgb; + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv); + half3 colorB = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(uv.x - splitAmount * _AmountB, uv.y)).rgb; + + half3 splitColor = half3(colorR.r, sceneColor.g, colorB.b); + half3 finalColor = lerp(sceneColor.rgb, splitColor, _Fading); + + return half4(finalColor, 1.0); + + } + + half4 Frag_Vertical(VaryingsDefault i) : SV_Target + { + + float2 uv = i.texcoord.xy; + half time = _TimeX * 6 * _Speed; + half splitAmount = (1.0 + sin(time)) * 0.5; + splitAmount *= 1.0 + sin(time * 2) * 0.5; + splitAmount = pow(splitAmount, 3.0); + splitAmount *= 0.05; + float distance = length(uv - float2(0.5, 0.5)); + splitAmount *= _Fading * _Amount; + splitAmount *= _Fading * _Amount; + + half3 colorR = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(uv.x , uv.y + splitAmount * _AmountR)).rgb; + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv); + half3 colorB = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(uv.x, uv.y - splitAmount * _AmountB)).rgb; + + half3 splitColor = half3(colorR.r, sceneColor.g, colorB.b); + half3 finalColor = lerp(sceneColor.rgb, splitColor, _Fading); + + return half4(finalColor, 1.0); + + } + + half4 Frag_Horizontal_Vertical(VaryingsDefault i) : SV_Target + { + + float2 uv = i.texcoord.xy; + half time = _TimeX * 6 * _Speed; + half splitAmount = (1.0 + sin(time)) * 0.5; + splitAmount *= 1.0 + sin(time * 2) * 0.5; + splitAmount = pow(splitAmount, 3.0); + splitAmount *= 0.05; + float distance = length(uv - float2(0.5, 0.5)); + splitAmount *= _Fading * _Amount; + splitAmount *= _Fading * _Amount; + + float splitAmountR = splitAmount * _AmountR; + float splitAmountB = splitAmount * _AmountB; + + half3 colorR = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(uv.x + splitAmountR, uv.y + splitAmountR)).rgb; + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv); + half3 colorB = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(uv.x - splitAmountB, uv.y - splitAmountB)).rgb; + + half3 splitColor = half3(colorR.r, sceneColor.g, colorB.b); + half3 finalColor = lerp(sceneColor.rgb, splitColor, _Fading); + + return half4(finalColor, 1.0); + + } + + + ENDHLSL + + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Horizontal + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Vertical + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Horizontal_Vertical + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Shader/GlitchRGBSplit.shader.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Shader/GlitchRGBSplit.shader.meta new file mode 100644 index 000000000..6c308575a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplit/Shader/GlitchRGBSplit.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c4f11d361f9ff474e9dae943e23b19f2 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2.meta new file mode 100644 index 000000000..b4a76f2d7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eed911b660cfef047919ac5f48a173b7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Editor.meta new file mode 100644 index 000000000..d61a67464 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3add0b65c3d5f2843a5353891bb28d42 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Editor/GlitchRGBSplitV2Editor.cs b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Editor/GlitchRGBSplitV2Editor.cs new file mode 100644 index 000000000..b01373c2f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Editor/GlitchRGBSplitV2Editor.cs @@ -0,0 +1,57 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchRGBSplitV2))] + public sealed class GlitchRGBSplitV2Editor : PostProcessEffectEditor + { + SerializedParameterOverride SplitDirection; + SerializedParameterOverride Amount; + SerializedParameterOverride Amplitude; + SerializedParameterOverride Speed; + + + public override void OnEnable() + { + Amount = FindParameterOverride(x => x.Amount); + SplitDirection = FindParameterOverride(x => x.SplitDirection); + Amplitude = FindParameterOverride(x => x.Amplitude); + Speed = FindParameterOverride(x => x.Speed); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Split Direction"); + PropertyField(SplitDirection); + + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(Amount); + PropertyField(Amplitude); + PropertyField(Speed); + + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Editor/GlitchRGBSplitV2Editor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Editor/GlitchRGBSplitV2Editor.cs.meta new file mode 100644 index 000000000..d1f9b530a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Editor/GlitchRGBSplitV2Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 49738173328c8f541a40e234213d2483 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/GlitchRGBSplitV2.cs b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/GlitchRGBSplitV2.cs new file mode 100644 index 000000000..d7b18d276 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/GlitchRGBSplitV2.cs @@ -0,0 +1,81 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + + [Serializable] + [PostProcess(typeof(GlitchRGBSplitV2Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/RGBSplitV2")] + public class GlitchRGBSplitV2 : PostProcessEffectSettings + { + public GlitchRGBSplitDirectionParameter SplitDirection = new GlitchRGBSplitDirectionParameter { value = DirectionEX.Horizontal }; + + [Range(0.0f, 1.0f)] + public FloatParameter Amount = new FloatParameter { value = 0.5f }; + + [Range(1.0f, 6.0f)] + public FloatParameter Amplitude = new FloatParameter { value = 3.0f }; + + [Range(0.0f, 2.0f)] + public FloatParameter Speed = new FloatParameter { value = 1f }; + + } + + public sealed class GlitchRGBSplitV2Renderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-GlitchRGBSplitV2"; + private Shader shader; + private float TimeX = 1.0f; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/RGBSplitV2"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + TimeX += Time.deltaTime; + if (TimeX > 100) + { + TimeX = 0; + } + + sheet.properties.SetVector(ShaderIDs.Params, new Vector3(TimeX * settings.Speed, settings.Amount, settings.Amplitude )); + + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.SplitDirection.value); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/GlitchRGBSplitV2.cs.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/GlitchRGBSplitV2.cs.meta new file mode 100644 index 000000000..c88db8561 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/GlitchRGBSplitV2.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c43c449d260f2ae4ab6bf0023581726e +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/README.md b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/README.md new file mode 100644 index 000000000..1c6c43439 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/README.md @@ -0,0 +1,17 @@ + +# GlitchRGBSplitV2 + +## Source Code List +- [Shader Code](Shader/GlitchRGBSplitV2.shader) +- [C# Code](GlitchRGBSplitV2.cs) +- [Editor Code](Editor/GlitchRGBSplitV2Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplitV2/GlitchRGBSplitV2.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplitV2/GlitchRGBSplitV2-1.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplitV2/GlitchRGBSplitV2.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/README.md.meta new file mode 100644 index 000000000..85a181fb2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 993cd8506877ba64ba0fd99a8d9afe6e +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Shader.meta new file mode 100644 index 000000000..3af025908 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a1cfbf10c6834194e9aff8906d37f30a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Shader/GlitchRGBSplitV2.shader b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Shader/GlitchRGBSplitV2.shader new file mode 100644 index 000000000..f5e9517f8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Shader/GlitchRGBSplitV2.shader @@ -0,0 +1,123 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/RGBSplitV2" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half3 _Params; + + #define _TimeX _Params.x + #define _Amount _Params.y + #define _Amplitude _Params.z + + + half4 Frag_Horizontal(VaryingsDefault i): SV_Target + { + float splitAmout = (1.0 + sin(_TimeX * 6.0)) * 0.5; + splitAmout *= 1.0 + sin(_TimeX * 16.0) * 0.5; + splitAmout *= 1.0 + sin(_TimeX * 19.0) * 0.5; + splitAmout *= 1.0 + sin(_TimeX * 27.0) * 0.5; + splitAmout = pow(splitAmout, _Amplitude); + splitAmout *= (0.05 * _Amount); + + half3 finalColor; + finalColor.r = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, fixed2(i.texcoord.x + splitAmout, i.texcoord.y)).r; + finalColor.g = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord).g; + finalColor.b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, fixed2(i.texcoord.x - splitAmout, i.texcoord.y)).b; + + finalColor *= (1.0 - splitAmout * 0.5); + + return half4(finalColor, 1.0); + } + + half4 Frag_Vertical(VaryingsDefault i): SV_Target + { + float splitAmout = (1.0 + sin(_TimeX * 6.0)) * 0.5; + splitAmout *= 1.0 + sin(_TimeX * 16.0) * 0.5; + splitAmout *= 1.0 + sin(_TimeX * 19.0) * 0.5; + splitAmout *= 1.0 + sin(_TimeX * 27.0) * 0.5; + splitAmout = pow(splitAmout, _Amplitude); + splitAmout *= (0.05 * _Amount); + + half3 finalColor; + finalColor.r = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, fixed2(i.texcoord.x , i.texcoord.y +splitAmout)).r; + finalColor.g = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord).g; + finalColor.b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, fixed2(i.texcoord.x, i.texcoord.y - splitAmout)).b; + + finalColor *= (1.0 - splitAmout * 0.5); + + return half4(finalColor, 1.0); + } + + half4 Frag_Vertical_Horizontal(VaryingsDefault i) : SV_Target + { + float splitAmout = (1.0 + sin(_TimeX * 6.0)) * 0.5; + splitAmout *= 1.0 + sin(_TimeX * 16.0) * 0.5; + splitAmout *= 1.0 + sin(_TimeX * 19.0) * 0.5; + splitAmout *= 1.0 + sin(_TimeX * 27.0) * 0.5; + splitAmout = pow(splitAmout, _Amplitude); + splitAmout *= (0.05 * _Amount); + + half3 finalColor; + finalColor.r = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, fixed2(i.texcoord.x+splitAmout, i.texcoord.y + splitAmout)).r; + finalColor.g = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord).g; + finalColor.b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, fixed2(i.texcoord.x - splitAmout, i.texcoord.y + splitAmout)).b; + + finalColor *= (1.0 - splitAmout * 0.5); + + return half4(finalColor, 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Horizontal + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Vertical + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Vertical_Horizontal + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Shader/GlitchRGBSplitV2.shader.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Shader/GlitchRGBSplitV2.shader.meta new file mode 100644 index 000000000..432ee1eac --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Shader/GlitchRGBSplitV2.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6972fcd385182cb428f8ce05b3e13299 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3.meta new file mode 100644 index 000000000..ec721fc4c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 654ff46888067634ebfb666fb2c0ea88 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Editor.meta new file mode 100644 index 000000000..07571a63b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ddb3405cc2accfa42bb51acd8b4b38c3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Editor/GlitchRGBSplitV3Editor.cs b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Editor/GlitchRGBSplitV3Editor.cs new file mode 100644 index 000000000..8970392e4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Editor/GlitchRGBSplitV3Editor.cs @@ -0,0 +1,67 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchRGBSplitV3))] + public sealed class GlitchRGBSplitV3Editor : PostProcessEffectEditor + { + + SerializedParameterOverride SplitDirection; + SerializedParameterOverride intervalType; + SerializedParameterOverride Frequency; + SerializedParameterOverride Amount; + SerializedParameterOverride Speed; + + + public override void OnEnable() + { + SplitDirection = FindParameterOverride(x => x.SplitDirection); + intervalType = FindParameterOverride(x => x.intervalType); + Frequency = FindParameterOverride(x => x.Frequency); + Amount = FindParameterOverride(x => x.Amount); + Speed = FindParameterOverride(x => x.Speed); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + + EditorUtilities.DrawHeaderLabel("split Direction"); + PropertyField(SplitDirection); + + EditorUtilities.DrawHeaderLabel("Interval Frequency"); + PropertyField(intervalType); + if (intervalType.value.enumValueIndex != (int)IntervalType.Infinite) + { + PropertyField(Frequency); + } + + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(Amount); + PropertyField(Speed); + + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Editor/GlitchRGBSplitV3Editor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Editor/GlitchRGBSplitV3Editor.cs.meta new file mode 100644 index 000000000..a8475032c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Editor/GlitchRGBSplitV3Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 678a646a249e8f4458d72584171cfe23 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/GlitchRGBSplitV3.cs b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/GlitchRGBSplitV3.cs new file mode 100644 index 000000000..2555af061 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/GlitchRGBSplitV3.cs @@ -0,0 +1,106 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + public sealed class DirectionEXParameter : ParameterOverride { } + [Serializable] + [PostProcess(typeof(GlitchRGBSplitV3Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/RGBSplitV3")] + public class GlitchRGBSplitV3 : PostProcessEffectSettings + { + public DirectionEXParameter SplitDirection = new DirectionEXParameter { value = DirectionEX.Horizontal }; + + public IntervalTypeParameter intervalType = new IntervalTypeParameter { value = IntervalType.Random }; + + [Range(0.1f, 25f)] + public FloatParameter Frequency = new FloatParameter { value = 3f }; + + + [Range(0f, 200f)] + public FloatParameter Amount = new FloatParameter { value = 30f }; + + [Range(0f, 15f)] + public FloatParameter Speed = new FloatParameter { value = 20f }; + } + + public sealed class GlitchRGBSplitV3Renderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-GlitchRGBSplitV3"; + private Shader shader; + private float randomFrequency; + private int frameCount = 0; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/RGBSplitV3"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + + UpdateFrequency(sheet); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector3(settings.intervalType.value == IntervalType.Random ? randomFrequency : settings.Frequency + , settings.Amount, settings.Speed)); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.SplitDirection.value); + cmd.EndSample(PROFILER_TAG); + } + + + void UpdateFrequency(PropertySheet sheet) + { + if (settings.intervalType.value == IntervalType.Random) + { + if (frameCount > settings.Frequency) + { + + frameCount = 0; + randomFrequency = UnityEngine.Random.Range(0, settings.Frequency); + } + frameCount++; + } + + if (settings.intervalType.value == IntervalType.Infinite) + { + sheet.EnableKeyword("USING_Frequency_INFINITE"); + } + else + { + sheet.DisableKeyword("USING_Frequency_INFINITE"); + } + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/GlitchRGBSplitV3.cs.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/GlitchRGBSplitV3.cs.meta new file mode 100644 index 000000000..676732be9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/GlitchRGBSplitV3.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c09d3e32bcc8eaa44b4f64de81d15ed3 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/README.md b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/README.md new file mode 100644 index 000000000..e6483e6f5 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/README.md @@ -0,0 +1,17 @@ + +# GlitchRGBSplitV3 + +## Source Code List +- [Shader Code](Shader/GlitchRGBSplitV3.shader) +- [C# Code](GlitchRGBSplitV3.cs) +- [Editor Code](Editor/GlitchRGBSplitV3Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplitV3/GlitchRGBSplitV3.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplitV3/GlitchRGBSplitV3-2.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplitV3/GlitchRGBSplitV3.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/README.md.meta new file mode 100644 index 000000000..b9ea8f36b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: de6132695222f52409cc41600546093b +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Shader.meta new file mode 100644 index 000000000..7867fe3d6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a53361aa5fe8e464fbd8b1b3a2ffaef3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Shader/GlitchRGBSplitV3.shader b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Shader/GlitchRGBSplitV3.shader new file mode 100644 index 000000000..c036d43fe --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Shader/GlitchRGBSplitV3.shader @@ -0,0 +1,154 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/RGBSplitV3" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + #pragma shader_feature USING_Frequency_INFINITE + + half3 _Params; + #define _Frequency _Params.x + #define _Amount _Params.y + #define _Speed _Params.z + + + float4 RGBSplit_Horizontal(float2 uv, float Amount, float time) + { + Amount *= 0.001; + float3 splitAmountX = float3(uv.x, uv.x, uv.x); + splitAmountX.r += sin(time * 0.2) * Amount; + splitAmountX.g += sin(time * 0.1) * Amount; + half4 splitColor = half4(0.0, 0.0, 0.0, 0.0); + splitColor.r = (SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(splitAmountX.r, uv.y)).rgb).x; + splitColor.g = (SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(splitAmountX.g, uv.y)).rgb).y; + splitColor.b = (SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(splitAmountX.b, uv.y)).rgb).z; + splitColor.a = 1; + return splitColor; + } + + float4 RGBSplit_Vertical(float2 uv, float Amount, float time) + { + Amount *= 0.001; + float3 splitAmountY = float3(uv.y, uv.y, uv.y); + splitAmountY.r += sin(time * 0.2) * Amount; + splitAmountY.g += sin(time * 0.1) * Amount; + half4 splitColor = half4(0.0, 0.0, 0.0, 0.0); + splitColor.r = (SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(uv.x, splitAmountY.r)).rgb).x; + splitColor.g = (SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(uv.x, splitAmountY.g)).rgb).y; + splitColor.b = (SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(uv.x, splitAmountY.b)).rgb).z; + splitColor.a = 1; + return splitColor; + } + + float4 RGBSplit_Horizontal_Vertical(float2 uv, float Amount, float time) + { + Amount *= 0.001; + //float3 splitAmount = float3(uv.y, uv.y, uv.y); + float splitAmountR= sin(time * 0.2) * Amount; + float splitAmountG= sin(time * 0.1) * Amount; + half4 splitColor = half4(0.0, 0.0, 0.0, 0.0); + splitColor.r = (SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(uv.x + splitAmountR,uv.y +splitAmountR)).rgb).x; + splitColor.g = (SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(uv.x , uv.y)).rgb).y; + splitColor.b = (SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(uv.x + splitAmountG, uv.y + splitAmountG)).rgb).z; + splitColor.a = 1; + return splitColor; + } + + + float4 Frag_Horizontal(VaryingsDefault i): SV_Target + { + half strength = 0; + #if USING_Frequency_INFINITE + strength = 1; + #else + strength = 0.5 + 0.5 *cos(_Time.y * _Frequency); + #endif + half3 color = RGBSplit_Horizontal(i.texcoord.xy, _Amount * strength, _Time.y * _Speed).rgb; + + return half4(color, 1); + } + + float4 Frag_Vertical(VaryingsDefault i): SV_Target + { + + half strength = 0; + #if USING_Frequency_INFINITE + strength = 1; + #else + strength = 0.5 + 0.5 *cos(_Time.y * _Frequency); + #endif + half3 color = RGBSplit_Vertical(i.texcoord.xy, _Amount * strength, _Time.y * _Speed).rgb; + + return half4(color, 1); + + } + + float4 Frag_Horizontal_Vertical(VaryingsDefault i) : SV_Target + { + + half strength = 0; + #if USING_Frequency_INFINITE + strength = 1; + #else + strength = 0.5 + 0.5 *cos(_Time.y * _Frequency); + #endif + half3 color = RGBSplit_Horizontal_Vertical(i.texcoord.xy, _Amount * strength, _Time.y * _Speed).rgb; + + return half4(color, 1); + + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Horizontal + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Vertical + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Horizontal_Vertical + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Shader/GlitchRGBSplitV3.shader.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Shader/GlitchRGBSplitV3.shader.meta new file mode 100644 index 000000000..9de2e74f4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Shader/GlitchRGBSplitV3.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 14b9c4fe8ceed5c4bbdcbbaffe934f3e +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4.meta new file mode 100644 index 000000000..d21be1f6b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79e42a3e1c745f34490d732b265d7237 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Editor.meta new file mode 100644 index 000000000..81c96c058 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 57b73f905717d1944ae12f22c4bf2574 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Editor/GlitchRGBSplitV4Editor.cs b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Editor/GlitchRGBSplitV4Editor.cs new file mode 100644 index 000000000..ac9ad4722 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Editor/GlitchRGBSplitV4Editor.cs @@ -0,0 +1,52 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchRGBSplitV4))] + public sealed class GlitchRGBSplitV4Editor : PostProcessEffectEditor + { + SerializedParameterOverride splitDirection; + SerializedParameterOverride indensity; + SerializedParameterOverride speed; + + + public override void OnEnable() + { + splitDirection = FindParameterOverride(x => x.splitDirection); + indensity = FindParameterOverride(x => x.indensity); + speed = FindParameterOverride(x => x.speed); + + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Split Direction"); + PropertyField(splitDirection); + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(indensity); + PropertyField(speed); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Editor/GlitchRGBSplitV4Editor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Editor/GlitchRGBSplitV4Editor.cs.meta new file mode 100644 index 000000000..0e5d19652 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Editor/GlitchRGBSplitV4Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: f7c3cfaffff4bd348b8dd6bb52f855d7 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/GlitchRGBSplitV4.cs b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/GlitchRGBSplitV4.cs new file mode 100644 index 000000000..3f1bed5dd --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/GlitchRGBSplitV4.cs @@ -0,0 +1,80 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + + [Serializable] + [PostProcess(typeof(GlitchRGBSplitV4Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/RGBSplitV4")] + public class GlitchRGBSplitV4 : PostProcessEffectSettings + { + + public GlitchRGBSplitDirectionParameter splitDirection = new GlitchRGBSplitDirectionParameter { value = DirectionEX.Horizontal }; + + [Range(-1.0f, 1.0f)] + public FloatParameter indensity = new FloatParameter { value = 0.5f }; + + [Range(0.0f, 100.0f)] + public FloatParameter speed = new FloatParameter { value = 10.0f }; + + } + + public sealed class GlitchRGBSplitV4Renderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-GlitchRGBSplitV4"; + private Shader shader; + private float randomFrequency; + private float TimeX = 1.0f; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/RGBSplitV4"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + TimeX += Time.deltaTime; + if (TimeX > 100) + { + TimeX = 0; + } + + + sheet.properties.SetVector(ShaderIDs.Params, new Vector2(settings.indensity * 0.1f, Mathf.Floor(TimeX * settings.speed))); + + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.splitDirection.value); + cmd.EndSample(PROFILER_TAG); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/GlitchRGBSplitV4.cs.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/GlitchRGBSplitV4.cs.meta new file mode 100644 index 000000000..d8d6413a2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/GlitchRGBSplitV4.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 0d0a9d798787c2946a11f9117f197196 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/README.md b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/README.md new file mode 100644 index 000000000..d8263d31b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/README.md @@ -0,0 +1,17 @@ + +# GlitchRGBSplitV4 + +## Source Code List +- [Shader Code](Shader/GlitchRGBSplitV4.shader) +- [C# Code](GlitchRGBSplitV4.cs) +- [Editor Code](Editor/GlitchRGBSplitV4Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplitV4/GlitchRGBSplitV4.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplitV4/GlitchRGBSplitV4-2.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplitV4/GlitchRGBSplitV4.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/README.md.meta new file mode 100644 index 000000000..b0ec6602d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f35dd290ab25a4741aed947fec02554a +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Shader.meta new file mode 100644 index 000000000..7ffb74efc --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2464704f7ce906746a04ac744ee3d1b4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Shader/GlitchRGBSplitV4.shader b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Shader/GlitchRGBSplitV4.shader new file mode 100644 index 000000000..9910e328c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Shader/GlitchRGBSplitV4.shader @@ -0,0 +1,106 @@ + + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/RGBSplitV4" +{ + HLSLINCLUDE + + #include "../../../Shaders/XPostProcessing.hlsl" + + + + uniform half2 _Params; + + #define _Indensity _Params.x + #define _TimeX _Params.y + + float randomNoise(float x, float y) + { + return frac(sin(dot(float2(x, y), float2(12.9898, 78.233))) * 43758.5453); + } + + half4 Frag_Horizontal(VaryingsDefault i) : SV_Target + { + float splitAmount = _Indensity * randomNoise(_TimeX, 2); + + half4 ColorR = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(i.texcoord.x + splitAmount, i.texcoord.y)); + half4 ColorG = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + half4 ColorB = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(i.texcoord.x - splitAmount, i.texcoord.y)); + + return half4(ColorR.r, ColorG.g, ColorB.b, 1); + } + + half4 Frag_Vertical(VaryingsDefault i) : SV_Target + { + + float splitAmount = _Indensity * randomNoise(_TimeX, 2); + + half4 ColorR = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + half4 ColorG = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(i.texcoord.x, i.texcoord.y + splitAmount)); + half4 ColorB = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(i.texcoord.x, i.texcoord.y - splitAmount)); + + return half4(ColorR.r, ColorG.g, ColorB.b, 1); + } + + half4 Frag_Horizontal_Vertical(VaryingsDefault i) : SV_Target + { + + float splitAmount = _Indensity * randomNoise(_TimeX, 2); + + half4 ColorR = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + half4 ColorG = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(i.texcoord.x + splitAmount, i.texcoord.y + splitAmount)); + half4 ColorB = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(i.texcoord.x - splitAmount, i.texcoord.y - splitAmount)); + + return half4(ColorR.r, ColorG.g, ColorB.b, 1); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Horizontal + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Vertical + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Horizontal_Vertical + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Shader/GlitchRGBSplitV4.shader.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Shader/GlitchRGBSplitV4.shader.meta new file mode 100644 index 000000000..6ac6d78dd --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Shader/GlitchRGBSplitV4.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fc619b27bade60c43afd6998c42c3c8e +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5.meta new file mode 100644 index 000000000..574a4682c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f178c01485e87d43abf103a4c6385f2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Editor.meta new file mode 100644 index 000000000..cab3d0ad8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d3b2522f9f3261042b90039857ee1909 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Editor/GlitchRGBSplitV5Editor.cs b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Editor/GlitchRGBSplitV5Editor.cs new file mode 100644 index 000000000..4856fe626 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Editor/GlitchRGBSplitV5Editor.cs @@ -0,0 +1,49 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchRGBSplitV5))] + public sealed class GlitchRGBSplitV5Editor : PostProcessEffectEditor + { + + SerializedParameterOverride Amplitude; + SerializedParameterOverride Speed; + + + public override void OnEnable() + { + Amplitude = FindParameterOverride(x => x.Amplitude); + Speed = FindParameterOverride(x => x.Speed); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(Amplitude); + PropertyField(Speed); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Editor/GlitchRGBSplitV5Editor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Editor/GlitchRGBSplitV5Editor.cs.meta new file mode 100644 index 000000000..5d926e909 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Editor/GlitchRGBSplitV5Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b2e255fe0a994c84b8971c48d19acd69 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/GlitchRGBSplitV5.cs b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/GlitchRGBSplitV5.cs new file mode 100644 index 000000000..4f1ee5489 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/GlitchRGBSplitV5.cs @@ -0,0 +1,77 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(GlitchRGBSplitV5Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/RGBSplitV5")] + public class GlitchRGBSplitV5 : PostProcessEffectSettings + { + + [Range(0.0f, 5.0f)] + public FloatParameter Amplitude = new FloatParameter { value = 3f }; + + [Range(0.0f, 1.0f)] + public FloatParameter Speed = new FloatParameter { value = 0.1f }; + + } + + public sealed class GlitchRGBSplitV5Renderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-GlitchRGBSplitV5"; + private Shader shader; + private Texture2D NoiseTex; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/RGBSplitV5"); + NoiseTex = Resources.Load("X-Noise256") as Texture2D; + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int NoiseTex = Shader.PropertyToID("_NoiseTex"); + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + + sheet.properties.SetVector(ShaderIDs.Params, new Vector2(settings.Amplitude, settings.Speed)); + if (NoiseTex != null) + { + sheet.properties.SetTexture(ShaderIDs.NoiseTex, NoiseTex); + } + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/GlitchRGBSplitV5.cs.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/GlitchRGBSplitV5.cs.meta new file mode 100644 index 000000000..949778e04 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/GlitchRGBSplitV5.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e9ef3f5264488414c87b632cd2509b40 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/README.md b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/README.md new file mode 100644 index 000000000..a5ff9c8b7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/README.md @@ -0,0 +1,17 @@ + +# GlitchRGBSplitV5 + +## Source Code List +- [Shader Code](Shader/GlitchRGBSplitV5.shader) +- [C# Code](GlitchRGBSplitV5.cs) +- [Editor Code](Editor/GlitchRGBSplitV5Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplitV5/GlitchRGBSplitV5.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplitV5/GlitchRGBSplitV5-2.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchRGBSplitV5/GlitchRGBSplitV5.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/README.md.meta new file mode 100644 index 000000000..c04095acc --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e05d13143c2bafa46baaf2e3c7acc598 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Shader.meta new file mode 100644 index 000000000..25535605c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f35d20eb88d4cff4a9bc7cb84988f593 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Shader/GlitchRGBSplitV5.shader b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Shader/GlitchRGBSplitV5.shader new file mode 100644 index 000000000..b222b88ef --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Shader/GlitchRGBSplitV5.shader @@ -0,0 +1,70 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/RGBSplitV5" +{ + HLSLINCLUDE + + #include "../../../Shaders/XPostProcessing.hlsl" + + + TEXTURE2D_SAMPLER2D(_NoiseTex, sampler_NoiseTex); + + uniform half2 _Params; + #define _Amplitude _Params.x + #define _Speed _Params.y + + + inline float4 Pow4(float4 v, float p) + { + return float4(pow(v.x, p), pow(v.y, p), pow(v.z, p), v.w); + } + + inline float4 Noise(float2 p) + { + return SAMPLE_TEXTURE2D(_NoiseTex, sampler_NoiseTex, p); + } + + half4 Frag(VaryingsDefault i): SV_Target + { + float4 splitAmount = Pow4(Noise(float2(_Speed * _Time.y, 2.0 * _Speed * _Time.y / 25.0)), 8.0) * float4(_Amplitude, _Amplitude, _Amplitude, 1.0); + + splitAmount *= 2.0 * splitAmount.w - 1.0; + + half colorR = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, (i.texcoord.xy + float2(splitAmount.x, -splitAmount.y))).r; + half colorG = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, (i.texcoord.xy + float2(splitAmount.y, -splitAmount.z))).g; + half colorB = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, (i.texcoord.xy + float2(splitAmount.z, -splitAmount.x))).b; + + half3 finalColor = half3(colorR, colorG, colorB); + return half4(finalColor,1); + + } + + ENDHLSL + + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Shader/GlitchRGBSplitV5.shader.meta b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Shader/GlitchRGBSplitV5.shader.meta new file mode 100644 index 000000000..720dee35f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Shader/GlitchRGBSplitV5.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ec29beb5e4727fe499df642d9702c960 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScanLineJitter.meta b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter.meta new file mode 100644 index 000000000..3e3fe0bed --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 56b001821ed4798449bcbc59f94be24c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Editor.meta new file mode 100644 index 000000000..aa6b90c39 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 29499fae3e315cd409cc3c9aa4c33401 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Editor/GlitchScanLineJitterEditor.cs b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Editor/GlitchScanLineJitterEditor.cs new file mode 100644 index 000000000..5a6c1eefc --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Editor/GlitchScanLineJitterEditor.cs @@ -0,0 +1,56 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchScanLineJitter))] + public sealed class GlitchScanLineJitterEditor : PostProcessEffectEditor + { + + SerializedParameterOverride JitterDirection; + SerializedParameterOverride JitterIndensity; + SerializedParameterOverride intervalType; + SerializedParameterOverride frequency; + + public override void OnEnable() + { + JitterDirection = FindParameterOverride(x => x.JitterDirection); + JitterIndensity = FindParameterOverride(x => x.JitterIndensity); + intervalType = FindParameterOverride(x => x.intervalType); + frequency = FindParameterOverride(x => x.frequency); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Jitter Direction"); + PropertyField(JitterDirection); + EditorUtilities.DrawHeaderLabel("Interval Frequency"); + PropertyField(intervalType); + PropertyField(frequency); + EditorUtilities.DrawHeaderLabel("Jitter Property"); + PropertyField(JitterIndensity); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Editor/GlitchScanLineJitterEditor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Editor/GlitchScanLineJitterEditor.cs.meta new file mode 100644 index 000000000..8dd9dcc55 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Editor/GlitchScanLineJitterEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 71ebef5cf15b6e34a8ac6bf872edb64c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/GlitchScanLineJitter.cs b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/GlitchScanLineJitter.cs new file mode 100644 index 000000000..a910f46aa --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/GlitchScanLineJitter.cs @@ -0,0 +1,101 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + public sealed class DirectionParameter : ParameterOverride { } + + [Serializable] + [PostProcess(typeof(GlitchScanLineJitterRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/ScanLineJitter")] + public class GlitchScanLineJitter : PostProcessEffectSettings + { + + public DirectionParameter JitterDirection = new DirectionParameter { value = Direction.Horizontal }; + + public IntervalTypeParameter intervalType = new IntervalTypeParameter { value = IntervalType.Random }; + + [Range(0f, 25f)] + public FloatParameter frequency = new FloatParameter { value = 1f }; + + + [Range(0.0f, 1.0f)] + public FloatParameter JitterIndensity = new FloatParameter { value = 0.1f }; + + } + + public sealed class GlitchScanLineJitterRenderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-GlitchScanLineJitter"; + private Shader shader; + private float randomFrequency; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/ScanLineJitter"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int JitterIndensity = Shader.PropertyToID("_ScanLineJitter"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + UpdateFrequency(sheet); + + float displacement = 0.005f + Mathf.Pow(settings.JitterIndensity, 3) * 0.1f; + float threshold = Mathf.Clamp01(1.0f - settings.JitterIndensity * 1.2f); + + //sheet.properties.SetVector(ShaderIDs.Params, new Vector3(settings.amount, settings.speed, ); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector3(displacement, threshold, settings.intervalType.value == IntervalType.Random ? randomFrequency : settings.frequency)); + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.JitterDirection.value); + cmd.EndSample(PROFILER_TAG); + } + + + void UpdateFrequency(PropertySheet sheet) + { + if (settings.intervalType.value == IntervalType.Random) + { + randomFrequency = UnityEngine.Random.Range(0, settings.frequency); + } + + if (settings.intervalType.value == IntervalType.Infinite) + { + sheet.EnableKeyword("USING_FREQUENCY_INFINITE"); + } + else + { + sheet.DisableKeyword("USING_FREQUENCY_INFINITE"); + } + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/GlitchScanLineJitter.cs.meta b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/GlitchScanLineJitter.cs.meta new file mode 100644 index 000000000..a49eacc6c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/GlitchScanLineJitter.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 29f414c45c95c4c4fab1fba6f7db9a44 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/README.md b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/README.md new file mode 100644 index 000000000..c935e06f9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/README.md @@ -0,0 +1,18 @@ + +# GlitchScanLineJitter + +## Source Code List +- [Shader Code](Shader/GlitchScanLineJitter.shader) +- [C# Code](GlitchScanLineJitter.cs) +- [Editor Code](Editor/GlitchScanLineJitterEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchScanLineJitter/GlitchScanLineJitter.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchScanLineJitter/GlitchScanLineJitter.gif) + + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchScanLineJitter/GlitchScanLineJitter-2.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/README.md.meta new file mode 100644 index 000000000..653fa96b2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 80b10ff4622ed0743a9d83e239a4e27b +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Shader.meta new file mode 100644 index 000000000..ea9232380 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f4dc2f5731d75242983e84a76139633 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Shader/GlitchScanLineJitter.shader b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Shader/GlitchScanLineJitter.shader new file mode 100644 index 000000000..e508fa85e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Shader/GlitchScanLineJitter.shader @@ -0,0 +1,99 @@ + + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/ScanLineJitter" +{ + HLSLINCLUDE + + #include "../../../Shaders/XPostProcessing.hlsl" + + #pragma shader_feature USING_FREQUENCY_INFINITE + + uniform half3 _Params; + #define _Amount _Params.x + #define _Threshold _Params.y + #define _Frequency _Params.z + + + + + float randomNoise(float x, float y) + { + return frac(sin(dot(float2(x, y), float2(12.9898, 78.233))) * 43758.5453); + } + + + half4 Frag_Horizontal(VaryingsDefault i): SV_Target + { + half strength = 0; + #if USING_FREQUENCY_INFINITE + strength = 1; + #else + strength = 0.5 + 0.5 * cos(_Time.y * _Frequency); + #endif + + + float jitter = randomNoise(i.texcoord.y, _Time.x) * 2 - 1; + jitter *= step(_Threshold, abs(jitter)) * _Amount * strength; + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, frac(i.texcoord + float2(jitter, 0))); + + return sceneColor; + } + + half4 Frag_Vertical(VaryingsDefault i): SV_Target + { + half strength = 0; + #if USING_FREQUENCY_INFINITE + strength = 1; + #else + strength = 0.5 + 0.5 * cos(_Time.y * _Frequency); + #endif + + float jitter = randomNoise(i.texcoord.x, _Time.x) * 2 - 1; + jitter *= step(_Threshold, abs(jitter)) * _Amount * strength; + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, frac(i.texcoord + float2(0, jitter))); + + return sceneColor; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Horizontal + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Vertical + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Shader/GlitchScanLineJitter.shader.meta b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Shader/GlitchScanLineJitter.shader.meta new file mode 100644 index 000000000..f094d36de --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Shader/GlitchScanLineJitter.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 39df4d97db7425a48b5273e099477a66 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenJump.meta b/Assets/X-PostProcessing/Effects/GlitchScreenJump.meta new file mode 100644 index 000000000..1f1924ccf --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenJump.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7bb013d662849c64e8381103cf4f7bc1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenJump/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchScreenJump/Editor.meta new file mode 100644 index 000000000..5ac8ec3cd --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenJump/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d4b9c3314393073438ebeda100d107b5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenJump/Editor/GlitchScreenJumpEditor.cs b/Assets/X-PostProcessing/Effects/GlitchScreenJump/Editor/GlitchScreenJumpEditor.cs new file mode 100644 index 000000000..725634e93 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenJump/Editor/GlitchScreenJumpEditor.cs @@ -0,0 +1,48 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchScreenJump))] + public sealed class GlitchScreenJumpEditor : PostProcessEffectEditor + { + + SerializedParameterOverride ScreenJumpDirection; + SerializedParameterOverride ScreenJumpIndensity; + + + public override void OnEnable() + { + ScreenJumpDirection = FindParameterOverride(x => x.ScreenJumpDirection); + ScreenJumpIndensity = FindParameterOverride(x => x.ScreenJumpIndensity); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(ScreenJumpDirection); + PropertyField(ScreenJumpIndensity); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenJump/Editor/GlitchScreenJumpEditor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchScreenJump/Editor/GlitchScreenJumpEditor.cs.meta new file mode 100644 index 000000000..b91697446 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenJump/Editor/GlitchScreenJumpEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: f70205e5e284de241a91ed41ebbff3c5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenJump/GlitchScreenJump.cs b/Assets/X-PostProcessing/Effects/GlitchScreenJump/GlitchScreenJump.cs new file mode 100644 index 000000000..ca6e958c1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenJump/GlitchScreenJump.cs @@ -0,0 +1,68 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + [Serializable] + public sealed class GlitchScreenJumpDirectionParameter : ParameterOverride { } + + [Serializable] + [PostProcess(typeof(GlitchScreenJumpRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/ScreenJump", false)] + public class GlitchScreenJump : PostProcessEffectSettings + { + public GlitchScreenJumpDirectionParameter ScreenJumpDirection = new GlitchScreenJumpDirectionParameter { value = Direction.Vertical }; + + [Range(0.0f, 1.0f)] + public FloatParameter ScreenJumpIndensity= new FloatParameter { value = 0.35f }; + + + } + + public sealed class GlitchScreenJumpRenderer : PostProcessEffectRenderer + { + private Shader shader; + + float ScreenJumpTime; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/ScreenJump"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + PropertySheet sheet = context.propertySheets.Get(shader); + + ScreenJumpTime += Time.deltaTime * settings.ScreenJumpIndensity * 9.8f; + + Vector2 ScreenJumpVector = new Vector2(settings.ScreenJumpIndensity, ScreenJumpTime); + + sheet.properties.SetVector(ShaderIDs.Params, ScreenJumpVector); + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.ScreenJumpDirection.value); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenJump/GlitchScreenJump.cs.meta b/Assets/X-PostProcessing/Effects/GlitchScreenJump/GlitchScreenJump.cs.meta new file mode 100644 index 000000000..2be417c09 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenJump/GlitchScreenJump.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2116fb4751a1a3046a3bae7177ecc731 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenJump/README.md b/Assets/X-PostProcessing/Effects/GlitchScreenJump/README.md new file mode 100644 index 000000000..ff2819f7f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenJump/README.md @@ -0,0 +1,19 @@ + +# GlitchScreenJump + +## Source Code List +- [Shader Code](Shader/GlitchScreenJump.shader) +- [C# Code](GlitchScreenJump.cs) +- [Editor Code](Editor/GlitchScreenJumpEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchScreenJump/GlitchScreenJump.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchScreenJump/GlitchScreenJump-1.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchScreenJump/GlitchScreenJump-2.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchScreenJump/GlitchScreenJump.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenJump/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchScreenJump/README.md.meta new file mode 100644 index 000000000..a4f50dad9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenJump/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4cd866748c212c3488fffd46c8cfab27 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenJump/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchScreenJump/Shader.meta new file mode 100644 index 000000000..25c2718c1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenJump/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3aa348dbef64ba641ba81df10b0c3d33 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenJump/Shader/GlitchScreenJump.shader b/Assets/X-PostProcessing/Effects/GlitchScreenJump/Shader/GlitchScreenJump.shader new file mode 100644 index 000000000..da77d3567 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenJump/Shader/GlitchScreenJump.shader @@ -0,0 +1,67 @@ + + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/ScreenJump" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half2 _Params; // x: indensity , y : time + #define _JumpIndensity _Params.x + #define _JumpTime _Params.y + + half4 Frag_Horizontal(VaryingsDefault i): SV_Target + { + float jump = lerp(i.texcoord.x, frac(i.texcoord.x + _JumpTime), _JumpIndensity); + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, frac(float2(jump, i.texcoord.y))); + return sceneColor; + } + + half4 Frag_Vertical(VaryingsDefault i): SV_Target + { + float jump = lerp(i.texcoord.y, frac(i.texcoord.y + _JumpTime), _JumpIndensity); + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, frac(float2(i.texcoord.x, jump))); + return sceneColor; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Horizontal + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Vertical + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenJump/Shader/GlitchScreenJump.shader.meta b/Assets/X-PostProcessing/Effects/GlitchScreenJump/Shader/GlitchScreenJump.shader.meta new file mode 100644 index 000000000..f854dc4a6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenJump/Shader/GlitchScreenJump.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5d20ddbcdba6cbc499aef6869b23b9f9 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenShake.meta b/Assets/X-PostProcessing/Effects/GlitchScreenShake.meta new file mode 100644 index 000000000..45120ae51 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenShake.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bbb31158a8732e14880d4dc8690ad3a3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenShake/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchScreenShake/Editor.meta new file mode 100644 index 000000000..6150d5d5a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenShake/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 53d267350d3c5c147adb7d17f3e2ab71 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenShake/Editor/GlitchScreenShakeEditor.cs b/Assets/X-PostProcessing/Effects/GlitchScreenShake/Editor/GlitchScreenShakeEditor.cs new file mode 100644 index 000000000..216378810 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenShake/Editor/GlitchScreenShakeEditor.cs @@ -0,0 +1,48 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchScreenShake))] + public sealed class GlitchScreenShakeEditor : PostProcessEffectEditor + { + + SerializedParameterOverride ScreenShakeDirection; + SerializedParameterOverride ScreenShakeIndensity; + + + public override void OnEnable() + { + ScreenShakeDirection = FindParameterOverride(x => x.ScreenShakeDirection); + ScreenShakeIndensity = FindParameterOverride(x => x.ScreenShakeIndensity); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(ScreenShakeDirection); + PropertyField(ScreenShakeIndensity); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenShake/Editor/GlitchScreenShakeEditor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchScreenShake/Editor/GlitchScreenShakeEditor.cs.meta new file mode 100644 index 000000000..cd0d87c5c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenShake/Editor/GlitchScreenShakeEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 5a03266d409455a42896fe7585bf1630 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenShake/GlitchScreenShake.cs b/Assets/X-PostProcessing/Effects/GlitchScreenShake/GlitchScreenShake.cs new file mode 100644 index 000000000..feb7b0b35 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenShake/GlitchScreenShake.cs @@ -0,0 +1,60 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + [Serializable] + public sealed class GlitchScreenShakeDirectionParameter : ParameterOverride { } + + [Serializable] + [PostProcess(typeof(GlitchScreenShakeRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/ScreenShake")] + public class GlitchScreenShake : PostProcessEffectSettings + { + public GlitchScreenShakeDirectionParameter ScreenShakeDirection = new GlitchScreenShakeDirectionParameter { value = Direction.Horizontal }; + + [Range(0.0f, 1.0f)] + public FloatParameter ScreenShakeIndensity = new FloatParameter { value = 0.5f }; + } + + public sealed class GlitchScreenShakeRenderer : PostProcessEffectRenderer + { + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/ScreenShake"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int ScreenShakeIndensity = Shader.PropertyToID("_ScreenShake"); + } + + public override void Render(PostProcessRenderContext context) + { + PropertySheet sheet = context.propertySheets.Get(shader); + + sheet.properties.SetFloat(ShaderIDs.ScreenShakeIndensity, settings.ScreenShakeIndensity * 0.25f); + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.ScreenShakeDirection.value); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenShake/GlitchScreenShake.cs.meta b/Assets/X-PostProcessing/Effects/GlitchScreenShake/GlitchScreenShake.cs.meta new file mode 100644 index 000000000..11b1acb7b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenShake/GlitchScreenShake.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 123fa084c891c3641894d7fdb6b461ad +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenShake/README.md b/Assets/X-PostProcessing/Effects/GlitchScreenShake/README.md new file mode 100644 index 000000000..0c1b8801d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenShake/README.md @@ -0,0 +1,19 @@ + +# GlitchScreenShake + +## Source Code List +- [Shader Code](Shader/GlitchScreenShake.shader) +- [C# Code](GlitchScreenShake.cs) +- [Editor Code](Editor/GlitchScreenShakeEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchScreenShake/GlitchScreenShake.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchScreenShake/GlitchScreenShake-1.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchScreenShake/GlitchScreenShake-2.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchScreenShake/GlitchScreenShake.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenShake/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchScreenShake/README.md.meta new file mode 100644 index 000000000..3dbfcf2c6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenShake/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bfc8da7f7a5e08b4f9230c3494aa22de +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenShake/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchScreenShake/Shader.meta new file mode 100644 index 000000000..7f7d1a448 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenShake/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 66b6af034a26dde4aac67310bfdce3bc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenShake/Shader/GlitchScreenShake.shader b/Assets/X-PostProcessing/Effects/GlitchScreenShake/Shader/GlitchScreenShake.shader new file mode 100644 index 000000000..cfe52f4ee --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenShake/Shader/GlitchScreenShake.shader @@ -0,0 +1,77 @@ + + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/ScreenShake" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half _ScreenShake; + + + float randomNoise(float x, float y) + { + return frac(sin(dot(float2(x, y), float2(127.1, 311.7))) * 43758.5453); + } + + + half4 Frag_Horizontal(VaryingsDefault i): SV_Target + { + float shake = (randomNoise(_Time.x, 2) - 0.5) * _ScreenShake; + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, frac(float2(i.texcoord.x + shake, i.texcoord.y))); + + return sceneColor; + } + + half4 Frag_Vertical(VaryingsDefault i): SV_Target + { + + float shake = (randomNoise(_Time.x, 2) - 0.5) * _ScreenShake; + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, frac(float2(i.texcoord.x, i.texcoord.y + shake))); + + return sceneColor; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Horizontal + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Vertical + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchScreenShake/Shader/GlitchScreenShake.shader.meta b/Assets/X-PostProcessing/Effects/GlitchScreenShake/Shader/GlitchScreenShake.shader.meta new file mode 100644 index 000000000..0b283be6b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchScreenShake/Shader/GlitchScreenShake.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 97b10aaa5b0db094da3089877e97b62f +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchTileJitter.meta b/Assets/X-PostProcessing/Effects/GlitchTileJitter.meta new file mode 100644 index 000000000..2ea321917 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchTileJitter.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d0853328ff4c6c9418030567eef23075 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchTileJitter/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchTileJitter/Editor.meta new file mode 100644 index 000000000..c07c35d25 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchTileJitter/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 26bc7f19edee99d46ab6e3e4a8cb1bfa +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchTileJitter/Editor/GlitchTileJitterEditor.cs b/Assets/X-PostProcessing/Effects/GlitchTileJitter/Editor/GlitchTileJitterEditor.cs new file mode 100644 index 000000000..92cd5b9f6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchTileJitter/Editor/GlitchTileJitterEditor.cs @@ -0,0 +1,72 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchTileJitter))] + public sealed class GlitchTileJitterEditor : PostProcessEffectEditor + { + + SerializedParameterOverride jitterDirection; + SerializedParameterOverride intervalType; + SerializedParameterOverride frequency; + SerializedParameterOverride splittingDirection; + SerializedParameterOverride splittingNumber; + SerializedParameterOverride amount; + SerializedParameterOverride speed; + + public override void OnEnable() + { + + jitterDirection = FindParameterOverride(x => x.jitterDirection); + intervalType = FindParameterOverride(x => x.intervalType); + frequency = FindParameterOverride(x => x.frequency); + splittingNumber = FindParameterOverride(x => x.splittingNumber); + splittingDirection = FindParameterOverride(x => x.splittingDirection); + amount = FindParameterOverride(x => x.amount); + speed = FindParameterOverride(x => x.speed); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Splitting Property"); + PropertyField(splittingDirection); + PropertyField(splittingNumber); + + EditorUtilities.DrawHeaderLabel("Interval Frequency"); + PropertyField(intervalType); + if (intervalType.value.enumValueIndex != (int)IntervalType.Infinite) + { + PropertyField(frequency); + } + + EditorUtilities.DrawHeaderLabel("Jitter Property"); + PropertyField(jitterDirection); + PropertyField(amount); + PropertyField(speed); + + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchTileJitter/Editor/GlitchTileJitterEditor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchTileJitter/Editor/GlitchTileJitterEditor.cs.meta new file mode 100644 index 000000000..4495b30d0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchTileJitter/Editor/GlitchTileJitterEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 4a886ec2591827042a92ef7c79d81da8 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchTileJitter/GlitchTileJitter.cs b/Assets/X-PostProcessing/Effects/GlitchTileJitter/GlitchTileJitter.cs new file mode 100644 index 000000000..fd6df9420 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchTileJitter/GlitchTileJitter.cs @@ -0,0 +1,111 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(GlitchTileJitterRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/TileJitter")] + public class GlitchTileJitter : PostProcessEffectSettings + { + + public DirectionParameter jitterDirection = new DirectionParameter { value = Direction.Horizontal }; + + public IntervalTypeParameter intervalType = new IntervalTypeParameter { value = IntervalType.Random }; + + [Range(0f, 25f)] + public FloatParameter frequency = new FloatParameter { value = 1f }; + + public DirectionParameter splittingDirection = new DirectionParameter { value = Direction.Vertical }; + + [Range(0f, 50f)] + public FloatParameter splittingNumber = new FloatParameter { value = 5f }; + + [Range(0f, 100f)] + public FloatParameter amount = new FloatParameter { value = 10f }; + + [Range(0f, 1f)] + public FloatParameter speed = new FloatParameter { value = 0.35f }; + } + + public sealed class GlitchTileJitterRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-GlitchTileJitter"; + private Shader shader; + private float randomFrequency; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/TileJitter"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + UpdateFrequency(sheet); + + if (settings.jitterDirection.value == Direction.Horizontal) + { + sheet.EnableKeyword("JITTER_DIRECTION_HORIZONTAL"); + } + else + { + sheet.DisableKeyword("JITTER_DIRECTION_HORIZONTAL"); + } + + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(settings.splittingNumber, settings.amount, settings.speed * 100f, + settings.intervalType.value == IntervalType.Random ? randomFrequency : settings.frequency)); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, settings.splittingDirection.value == Direction.Horizontal ? 0 : 1); + cmd.EndSample(PROFILER_TAG); + } + + + void UpdateFrequency(PropertySheet sheet) + { + if (settings.intervalType.value == IntervalType.Random) + { + randomFrequency = UnityEngine.Random.Range(0, settings.frequency); + } + + if (settings.intervalType.value == IntervalType.Infinite) + { + sheet.EnableKeyword("USING_FREQUENCY_INFINITE"); + } + else + { + sheet.DisableKeyword("USING_FREQUENCY_INFINITE"); + } + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchTileJitter/GlitchTileJitter.cs.meta b/Assets/X-PostProcessing/Effects/GlitchTileJitter/GlitchTileJitter.cs.meta new file mode 100644 index 000000000..ae85b50b2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchTileJitter/GlitchTileJitter.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b051772227976074286eb77ae478e460 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchTileJitter/README.md b/Assets/X-PostProcessing/Effects/GlitchTileJitter/README.md new file mode 100644 index 000000000..df976f759 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchTileJitter/README.md @@ -0,0 +1,23 @@ + +# GlitchTileJitter + +## Source Code List +- [Shader Code](Shader/GlitchTileJitter.shader) +- [C# Code](GlitchTileJitter.cs) +- [Editor Code](Editor/GlitchTileJitterEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchTileJitter/GlitchTileJitter.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchTileJitter/GlitchTileJitter-1.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchTileJitter/GlitchTileJitter-2.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchTileJitter/GlitchTileJitter-3.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchTileJitter/GlitchTileJitter-4.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchTileJitter/GlitchTileJitter.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchTileJitter/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchTileJitter/README.md.meta new file mode 100644 index 000000000..55b76bbff --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchTileJitter/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6456b609535b7314aad02b011cda7c4a +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchTileJitter/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchTileJitter/Shader.meta new file mode 100644 index 000000000..e8794b66e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchTileJitter/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9cf0fe55a14bfc84a991dc80010b1180 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchTileJitter/Shader/GlitchTileJitter.shader b/Assets/X-PostProcessing/Effects/GlitchTileJitter/Shader/GlitchTileJitter.shader new file mode 100644 index 000000000..69527f722 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchTileJitter/Shader/GlitchTileJitter.shader @@ -0,0 +1,118 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/TileJitter" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + #pragma shader_feature JITTER_DIRECTION_HORIZONTAL + #pragma shader_feature USING_FREQUENCY_INFINITE + + + uniform half4 _Params; + + #define _SplittingNumber _Params.x + #define _JitterAmount _Params.y + #define _JitterSpeed _Params.z + #define _Frequency _Params.w + + + float randomNoise(float2 c) + { + return frac(sin(dot(c.xy, float2(12.9898, 78.233))) * 43758.5453); + } + + float4 Frag_Vertical(VaryingsDefault i): SV_Target + { + float2 uv = i.texcoord.xy; + half strength = 1.0; + half pixelSizeX = 1.0 / _ScreenParams.x; + + // --------------------------------Prepare Jitter UV-------------------------------- + #if USING_FREQUENCY_INFINITE + strength = 1; + #else + strength = 0.5 + 0.5 *cos(_Time.y * _Frequency); + #endif + + if (fmod(uv.x * _SplittingNumber, 2) < 1.0) + { + #if JITTER_DIRECTION_HORIZONTAL + uv.x += pixelSizeX * cos(_Time.y * _JitterSpeed) * _JitterAmount * strength; + #else + uv.y += pixelSizeX * cos(_Time.y * _JitterSpeed) * _JitterAmount * strength; + #endif + } + + // -------------------------------Final Sample------------------------------ + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv); + return sceneColor; + } + + float4 Frag_Horizontal(VaryingsDefault i): SV_Target + { + float2 uv = i.texcoord.xy; + half strength = 1.0; + half pixelSizeX = 1.0 / _ScreenParams.x; + + // --------------------------------Prepare Jitter UV-------------------------------- + #if USING_FREQUENCY_INFINITE + strength = 1; + #else + strength = 0.5 + 0.5 * cos(_Time.y * _Frequency); + #endif + if(fmod(uv.y * _SplittingNumber, 2) < 1.0) + { + #if JITTER_DIRECTION_HORIZONTAL + uv.x += pixelSizeX * cos(_Time.y * _JitterSpeed) * _JitterAmount * strength; + #else + uv.y += pixelSizeX * cos(_Time.y * _JitterSpeed) * _JitterAmount * strength; + #endif + } + + // -------------------------------Final Sample------------------------------ + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv); + return sceneColor; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Horizontal + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Vertical + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchTileJitter/Shader/GlitchTileJitter.shader.meta b/Assets/X-PostProcessing/Effects/GlitchTileJitter/Shader/GlitchTileJitter.shader.meta new file mode 100644 index 000000000..ddf5d450c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchTileJitter/Shader/GlitchTileJitter.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ec4930f48d49c714e9564c7ab8bbdafd +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchWaveJitter.meta b/Assets/X-PostProcessing/Effects/GlitchWaveJitter.meta new file mode 100644 index 000000000..96ee58c8d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchWaveJitter.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a2d8244333bbe5e4ebcabca1ae310a06 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Editor.meta b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Editor.meta new file mode 100644 index 000000000..7a885862c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7278af6254ae46543be71a02d1c74fca +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Editor/GlitchWaveJitterEditor.cs b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Editor/GlitchWaveJitterEditor.cs new file mode 100644 index 000000000..c58670d1e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Editor/GlitchWaveJitterEditor.cs @@ -0,0 +1,80 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GlitchWaveJitter))] + public sealed class GlitchWaveJitterEditor : PostProcessEffectEditor + { + + SerializedParameterOverride jitterDirection; + SerializedParameterOverride intervalType; + SerializedParameterOverride frequency; + SerializedParameterOverride RGBSplit; + SerializedParameterOverride speed; + SerializedParameterOverride amount; + SerializedParameterOverride customResolution; + SerializedParameterOverride resolution; + + + public override void OnEnable() + { + jitterDirection = FindParameterOverride(x => x.jitterDirection); + intervalType = FindParameterOverride(x => x.intervalType); + frequency = FindParameterOverride(x => x.frequency); + RGBSplit = FindParameterOverride(x => x.RGBSplit); + speed = FindParameterOverride(x => x.speed); + amount = FindParameterOverride(x => x.amount); + customResolution = FindParameterOverride(x => x.customResolution); + resolution = FindParameterOverride(x => x.resolution); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + + EditorUtilities.DrawHeaderLabel("Jitter Direction"); + PropertyField(jitterDirection); + + EditorUtilities.DrawHeaderLabel("Interval Frequency"); + PropertyField(intervalType); + + if (intervalType.value.enumValueIndex != (int)IntervalType.Infinite) + { + PropertyField(frequency); + } + + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(RGBSplit); + PropertyField(speed); + PropertyField(amount); + + EditorUtilities.DrawHeaderLabel("Custom Jitter Resolution"); + PropertyField(customResolution); + PropertyField(resolution); + + + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Editor/GlitchWaveJitterEditor.cs.meta b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Editor/GlitchWaveJitterEditor.cs.meta new file mode 100644 index 000000000..1390cc5e2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Editor/GlitchWaveJitterEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 761468cf43b9a3b4a928aa67400fc8ac +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchWaveJitter/GlitchWaveJitter.cs b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/GlitchWaveJitter.cs new file mode 100644 index 000000000..0ed43a1b9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/GlitchWaveJitter.cs @@ -0,0 +1,108 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(GlitchWaveJitterRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/WaveJitter")] + public class GlitchWaveJitter : PostProcessEffectSettings + { + + public DirectionParameter jitterDirection = new DirectionParameter { value = Direction.Horizontal }; + + public IntervalTypeParameter intervalType = new IntervalTypeParameter { value = IntervalType.Random }; + + [Range(0f, 50f)] + public FloatParameter frequency = new FloatParameter { value = 5f }; + + [Range(0f, 50f)] + public FloatParameter RGBSplit = new FloatParameter { value = 20f }; + + [Range(0f, 1f)] + public FloatParameter speed = new FloatParameter { value = 0.25f }; + + [Range(0f, 2f)] + public FloatParameter amount = new FloatParameter { value = 1f }; + + public BoolParameter customResolution = new BoolParameter { value = false }; + + public Vector2Parameter resolution = new Vector2Parameter { value = new Vector2(640f, 480f) }; + } + + public sealed class GlitchWaveJitterRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-GlitchWaveJitter"; + private Shader shader; + private float randomFrequency; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/Glitch/WaveJitter"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int Resolution = Shader.PropertyToID("_Resolution"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + UpdateFrequency(sheet); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(settings.intervalType.value == IntervalType.Random ? randomFrequency : settings.frequency + , settings.RGBSplit, settings.speed, settings.amount)); + sheet.properties.SetVector(ShaderIDs.Resolution, settings.customResolution ? settings.resolution : new Vector2(Screen.width, Screen.height)); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.jitterDirection.value); + cmd.EndSample(PROFILER_TAG); + } + + + void UpdateFrequency(PropertySheet sheet) + { + if (settings.intervalType.value == IntervalType.Random) + { + randomFrequency = UnityEngine.Random.Range(0, settings.frequency); + } + + if (settings.intervalType.value == IntervalType.Infinite) + { + sheet.EnableKeyword("USING_FREQUENCY_INFINITE"); + } + else + { + sheet.DisableKeyword("USING_FREQUENCY_INFINITE"); + } + } + + + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GlitchWaveJitter/GlitchWaveJitter.cs.meta b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/GlitchWaveJitter.cs.meta new file mode 100644 index 000000000..911f387ff --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/GlitchWaveJitter.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 437ed09078437c940ba8a7c1c241cbfc +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchWaveJitter/README.md b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/README.md new file mode 100644 index 000000000..f7a8ed258 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/README.md @@ -0,0 +1,19 @@ + +# GlitchWaveJitter + +## Source Code List +- [Shader Code](Shader/GlitchWaveJitter.shader) +- [C# Code](GlitchWaveJitter.cs) +- [Editor Code](Editor/GlitchWaveJitterEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchWaveJitter/GlitchWaveJitter.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchWaveJitter/GlitchWaveJitter-2.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchWaveJitter/GlitchWaveJitter-3.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Glitch/GlitchWaveJitter/GlitchWaveJitter.gif) diff --git a/Assets/X-PostProcessing/Effects/GlitchWaveJitter/README.md.meta b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/README.md.meta new file mode 100644 index 000000000..f88871893 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: dad715cd6cfd63b43863b4e9f7c5a411 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Shader.meta b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Shader.meta new file mode 100644 index 000000000..05a60adc3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 121934a5cdb58ed4194e89d676e834f0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Shader/GlitchWaveJitter.shader b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Shader/GlitchWaveJitter.shader new file mode 100644 index 000000000..43b61d360 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Shader/GlitchWaveJitter.shader @@ -0,0 +1,109 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/Glitch/WaveJitter" +{ + HLSLINCLUDE + + #include "../../../Shaders/XPostProcessing.hlsl" + #include "../../../Shaders/XNoiseLibrary.hlsl" + + #pragma shader_feature USING_FREQUENCY_INFINITE + + uniform half4 _Params; + half2 _Resolution; + + #define _Frequency _Params.x + #define _RGBSplit _Params.y + #define _Speed _Params.z + #define _Amount _Params.w + + + float4 Frag_Horizontal(VaryingsDefault i): SV_Target + { + half strength = 0.0; + #if USING_FREQUENCY_INFINITE + strength = 1; + #else + strength = 0.5 + 0.5 *cos(_Time.y * _Frequency); + #endif + + // Prepare UV + float uv_y = i.texcoord.y * _Resolution.y; + float noise_wave_1 = snoise(float2(uv_y * 0.01, _Time.y * _Speed * 20)) * (strength * _Amount * 32.0); + float noise_wave_2 = snoise(float2(uv_y * 0.02, _Time.y * _Speed * 10)) * (strength * _Amount * 4.0); + float noise_wave_x = noise_wave_1 * noise_wave_2 / _Resolution.x; + float uv_x = i.texcoord.x + noise_wave_x; + + float rgbSplit_uv_x = (_RGBSplit * 50 + (20.0 * strength + 1.0)) * noise_wave_x / _Resolution.x; + + // Sample RGB Color- + half4 colorG = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(uv_x, i.texcoord.y)); + half4 colorRB = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(uv_x + rgbSplit_uv_x, i.texcoord.y)); + + return half4(colorRB.r, colorG.g, colorRB.b, colorRB.a + colorG.a); + } + + float4 Frag_Vertical(VaryingsDefault i) : SV_Target + { + half strength = 0.0; + #if USING_FREQUENCY_INFINITE + strength = 1; + #else + strength = 0.5 + 0.5 * cos(_Time.y * _Frequency); + #endif + + // Prepare UV + float uv_x = i.texcoord.x * _Resolution.x; + float noise_wave_1 = snoise(float2(uv_x * 0.01, _Time.y * _Speed * 20)) * (strength * _Amount * 32.0); + float noise_wave_2 = snoise(float2(uv_x * 0.02, _Time.y * _Speed * 10)) * (strength * _Amount * 4.0); + float noise_wave_y = noise_wave_1 * noise_wave_2 / _Resolution.x; + float uv_y = i.texcoord.y + noise_wave_y; + + float rgbSplit_uv_y = (_RGBSplit * 50 + (20.0 * strength + 1.0)) * noise_wave_y / _Resolution.y; + + // Sample RGB Color + half4 colorG = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(i.texcoord.x, uv_y)); + half4 colorRB = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(i.texcoord.x, uv_y + rgbSplit_uv_y)); + + return half4(colorRB.r, colorG.g, colorRB.b, colorRB.a + colorG.a); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Horizontal + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_Vertical + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Shader/GlitchWaveJitter.shader.meta b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Shader/GlitchWaveJitter.shader.meta new file mode 100644 index 000000000..e24034ced --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GlitchWaveJitter/Shader/GlitchWaveJitter.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 90f6ed23485fdc84a876a48d3ac9dc57 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GrainyBlur.meta b/Assets/X-PostProcessing/Effects/GrainyBlur.meta new file mode 100644 index 000000000..50b79d3a3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GrainyBlur.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 916caff2cb1b2f744b403efe229914e8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GrainyBlur/Editor.meta b/Assets/X-PostProcessing/Effects/GrainyBlur/Editor.meta new file mode 100644 index 000000000..3c0b02fd3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GrainyBlur/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4701f9b1019a4a74386780f52784d926 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GrainyBlur/Editor/GrainyBlurEditor.cs b/Assets/X-PostProcessing/Effects/GrainyBlur/Editor/GrainyBlurEditor.cs new file mode 100644 index 000000000..5d5ebd07c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GrainyBlur/Editor/GrainyBlurEditor.cs @@ -0,0 +1,51 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(GrainyBlur))] + public sealed class GrainyBlurEditor : PostProcessEffectEditor + { + + SerializedParameterOverride BlurRadius; + SerializedParameterOverride Iteration; + SerializedParameterOverride RTDownScaling; + + + public override void OnEnable() + { + BlurRadius = FindParameterOverride(x => x.BlurRadius); + Iteration = FindParameterOverride(x => x.Iteration); + RTDownScaling = FindParameterOverride(x => x.RTDownScaling); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(BlurRadius); + PropertyField(Iteration); + PropertyField(RTDownScaling); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/GrainyBlur/Editor/GrainyBlurEditor.cs.meta b/Assets/X-PostProcessing/Effects/GrainyBlur/Editor/GrainyBlurEditor.cs.meta new file mode 100644 index 000000000..324ab21a8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GrainyBlur/Editor/GrainyBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d842428233057cf4f8435fb83b5e2ee3 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GrainyBlur/GrainyBlur.cs b/Assets/X-PostProcessing/Effects/GrainyBlur/GrainyBlur.cs new file mode 100644 index 000000000..e0aa4a029 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GrainyBlur/GrainyBlur.cs @@ -0,0 +1,88 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(GrainyBlurRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/GrainyBlur")] + public class GrainyBlur : PostProcessEffectSettings + { + + [Range(0.0f, 50.0f)] + public FloatParameter BlurRadius = new FloatParameter { value = 5.0f }; + + [Range(1, 8)] + public IntParameter Iteration = new IntParameter { value = 4 }; + + [Range(1, 10)] + public FloatParameter RTDownScaling = new FloatParameter { value = 1 }; + } + + public sealed class GrainyBlurRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-GrainyBlur"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/GrainyBlur"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int BufferRT = Shader.PropertyToID("_BufferRT"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + + cmd.BeginSample(PROFILER_TAG); + + if (settings.RTDownScaling > 1) + { + int RTWidth = (int)(context.screenWidth / settings.RTDownScaling); + int RTHeight = (int)(context.screenHeight / settings.RTDownScaling); + cmd.GetTemporaryRT(ShaderIDs.BufferRT, RTWidth, RTHeight, 0, FilterMode.Bilinear); + // downsample screen copy into smaller RT + context.command.BlitFullscreenTriangle(context.source, ShaderIDs.BufferRT); + } + + sheet.properties.SetVector(ShaderIDs.Params, new Vector2(settings.BlurRadius / context.height, settings.Iteration)); + + if (settings.RTDownScaling > 1) + { + cmd.BlitFullscreenTriangle(ShaderIDs.BufferRT, context.destination, sheet, 0); + } + else + { + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + } + + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT); + cmd.EndSample(PROFILER_TAG); + } + + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/GrainyBlur/GrainyBlur.cs.meta b/Assets/X-PostProcessing/Effects/GrainyBlur/GrainyBlur.cs.meta new file mode 100644 index 000000000..a5e3f6ef7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GrainyBlur/GrainyBlur.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 172b63b63bfdad04dbe149542c33a495 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GrainyBlur/README.md b/Assets/X-PostProcessing/Effects/GrainyBlur/README.md new file mode 100644 index 000000000..55e3fdc05 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GrainyBlur/README.md @@ -0,0 +1,16 @@ + +# Grainy Blur + +## Source Code List +- [Shader Code](Shader/GrainyBlur.shader) +- [C# Code](GrainyBlur.cs) +- [Editor Code](Editor/GrainyBlurEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/GrainyBlur/GrainyBlurProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/GrainyBlur/GrainyBlur.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/GrainyBlur/GrainyBlur.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/GrainyBlur/README.md.meta b/Assets/X-PostProcessing/Effects/GrainyBlur/README.md.meta new file mode 100644 index 000000000..5d0274956 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GrainyBlur/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 686239f4d5235574d9646dae7b5af651 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GrainyBlur/Shader.meta b/Assets/X-PostProcessing/Effects/GrainyBlur/Shader.meta new file mode 100644 index 000000000..4e0a83645 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GrainyBlur/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2ce358db33e83ad468cd68146f16fb7d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/GrainyBlur/Shader/GrainyBlur.shader b/Assets/X-PostProcessing/Effects/GrainyBlur/Shader/GrainyBlur.shader new file mode 100644 index 000000000..b3ea11192 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GrainyBlur/Shader/GrainyBlur.shader @@ -0,0 +1,72 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/GrainyBlur" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half2 _Params; + half _MainTex_ST; + + #define _BlurRadius _Params.x + #define _Iteration _Params.y + + + float Rand(float2 n) + { + return sin(dot(n, half2(1233.224, 1743.335))); + } + + half4 GrainyBlur(VaryingsDefault i) + { + half2 randomOffset = float2(0.0, 0.0); + half4 finalColor = half4(0.0, 0.0, 0.0, 0.0); + float random = Rand(i.texcoord); + + for (int k = 0; k < int(_Iteration); k ++) + { + random = frac(43758.5453 * random + 0.61432);; + randomOffset.x = (random - 0.5) * 2.0; + random = frac(43758.5453 * random + 0.61432); + randomOffset.y = (random - 0.5) * 2.0; + + finalColor += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, half2(i.texcoord + randomOffset * _BlurRadius)); + } + return finalColor / _Iteration; + } + + half4 Frag(VaryingsDefault i): SV_Target + { + return GrainyBlur(i); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/GrainyBlur/Shader/GrainyBlur.shader.meta b/Assets/X-PostProcessing/Effects/GrainyBlur/Shader/GrainyBlur.shader.meta new file mode 100644 index 000000000..92b62ebac --- /dev/null +++ b/Assets/X-PostProcessing/Effects/GrainyBlur/Shader/GrainyBlur.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ddb77bd8cf7841c41b5104969f71ff8b +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/IrisBlur.meta b/Assets/X-PostProcessing/Effects/IrisBlur.meta new file mode 100644 index 000000000..c7b007595 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlur.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c78c1ac533429f441bcf9d3a4c8c3ea2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/IrisBlur/Editor.meta b/Assets/X-PostProcessing/Effects/IrisBlur/Editor.meta new file mode 100644 index 000000000..29ab18ae4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlur/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b7431864dcaeb79498767dbcff54b4ee +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/IrisBlur/Editor/IrisBlurEditor.cs b/Assets/X-PostProcessing/Effects/IrisBlur/Editor/IrisBlurEditor.cs new file mode 100644 index 000000000..39f6f6dd2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlur/Editor/IrisBlurEditor.cs @@ -0,0 +1,56 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(IrisBlur))] + public sealed class IrisBlurEditor : PostProcessEffectEditor + { + + SerializedParameterOverride QualityLevel; + SerializedParameterOverride AreaSize; + SerializedParameterOverride BlurRadius; + SerializedParameterOverride Iteration; + SerializedParameterOverride RTDownScaling; + + public override void OnEnable() + { + QualityLevel = FindParameterOverride(x => x.QualityLevel); + AreaSize = FindParameterOverride(x => x.AreaSize); + BlurRadius = FindParameterOverride(x => x.BlurRadius); + Iteration = FindParameterOverride(x => x.Iteration); + RTDownScaling = FindParameterOverride(x => x.RTDownScaling); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(QualityLevel); + PropertyField(AreaSize); + PropertyField(BlurRadius); + PropertyField(Iteration); + PropertyField(RTDownScaling); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/IrisBlur/Editor/IrisBlurEditor.cs.meta b/Assets/X-PostProcessing/Effects/IrisBlur/Editor/IrisBlurEditor.cs.meta new file mode 100644 index 000000000..0408918cb --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlur/Editor/IrisBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2d1c0fde13a736d4ea203bcb850da633 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/IrisBlur/IrisBlur.cs b/Assets/X-PostProcessing/Effects/IrisBlur/IrisBlur.cs new file mode 100644 index 000000000..37168417e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlur/IrisBlur.cs @@ -0,0 +1,158 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + public enum IrisBlurQualityLevel + { + High_Quality = 0, + Normal_Quality = 1, + } + + [Serializable] + public sealed class IrisBlurQualityLevelParameter : ParameterOverride { } + + [Serializable] + [PostProcess(typeof(IrisBlurRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/IrisBlur/IrisBlurV1")] + public class IrisBlur : PostProcessEffectSettings + { + public IrisBlurQualityLevelParameter QualityLevel = new IrisBlurQualityLevelParameter { value = IrisBlurQualityLevel.High_Quality }; + + [Range(0.0f, 1.0f)] + public FloatParameter AreaSize = new FloatParameter { value = 0.5f }; + + [Range(0.0f, 1.0f)] + public FloatParameter BlurRadius = new FloatParameter { value = 1.0f }; + + [Range(1,8)] + public IntParameter Iteration = new IntParameter { value = 2 }; + + [Range(1, 2)] + public FloatParameter RTDownScaling = new FloatParameter { value = 1.0f }; + } + + public sealed class IrisBlurRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-IrisBlur"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/IrisBlur"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int BlurredTex = Shader.PropertyToID("_BlurredTex"); + internal static readonly int BufferRT1 = Shader.PropertyToID("_BufferRT1"); + internal static readonly int BufferRT2 = Shader.PropertyToID("_BufferRT2"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + if (settings.Iteration ==1) + { + HandleOneBlitBlur(context, cmd, sheet); + } + else + { + HandleMultipleIterationBlur(context, cmd, sheet, settings.Iteration); + } + + cmd.EndSample(PROFILER_TAG); + } + + void HandleOneBlitBlur(PostProcessRenderContext context, CommandBuffer cmd, PropertySheet sheet) + { + if (context == null || cmd == null || sheet == null) + { + return; + } + + // Get RT + int RTWidth = (int)(context.screenWidth / settings.RTDownScaling); + int RTHeight = (int)(context.screenHeight / settings.RTDownScaling); + cmd.GetTemporaryRT(ShaderIDs.BufferRT1, RTWidth, RTHeight, 0, FilterMode.Bilinear); + + // Set Property + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(settings.AreaSize, settings.BlurRadius)); + + // Do Blit + context.command.BlitFullscreenTriangle(context.source, ShaderIDs.BufferRT1, sheet, (int)settings.QualityLevel.value); + + // Final Blit + cmd.SetGlobalTexture(ShaderIDs.BlurredTex, ShaderIDs.BufferRT1); + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 2); + + // Release + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT1); + } + + + void HandleMultipleIterationBlur(PostProcessRenderContext context, CommandBuffer cmd, PropertySheet sheet, int Iteration) + { + if (context == null || cmd == null || sheet == null) + { + return; + } + + // Get RT + int RTWidth = (int)(context.screenWidth / settings.RTDownScaling); + int RTHeight = (int)(context.screenHeight / settings.RTDownScaling); + cmd.GetTemporaryRT(ShaderIDs.BufferRT1, RTWidth, RTHeight, 0, FilterMode.Bilinear); + cmd.GetTemporaryRT(ShaderIDs.BufferRT2, RTWidth, RTHeight, 0, FilterMode.Bilinear); + + // Set Property + sheet.properties.SetVector(ShaderIDs.Params,new Vector2(settings.AreaSize, settings.BlurRadius)); + + RenderTargetIdentifier finalBlurID = ShaderIDs.BufferRT1; + RenderTargetIdentifier firstID = context.source; + RenderTargetIdentifier secondID = ShaderIDs.BufferRT1; + for (int i = 0; i < Iteration; i++) + { + // Do Blit + context.command.BlitFullscreenTriangle(firstID, secondID, sheet, (int)settings.QualityLevel.value); + + finalBlurID = secondID; + firstID = secondID; + secondID = (secondID == ShaderIDs.BufferRT1) ? ShaderIDs.BufferRT2 : ShaderIDs.BufferRT1; + } + + // Final Blit + cmd.SetGlobalTexture(ShaderIDs.BlurredTex, finalBlurID); + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 2); + + // Release + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT1); + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT2); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/IrisBlur/IrisBlur.cs.meta b/Assets/X-PostProcessing/Effects/IrisBlur/IrisBlur.cs.meta new file mode 100644 index 000000000..ab3dd6e3e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlur/IrisBlur.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 28d1f2b869b5fb34fb422a9774832bf6 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/IrisBlur/README.md b/Assets/X-PostProcessing/Effects/IrisBlur/README.md new file mode 100644 index 000000000..313b17725 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlur/README.md @@ -0,0 +1,15 @@ +# Iris Blur + +## Source Code List +- [Shader Code](Shader/IrisBlur.shader) +- [C# Code](IrisBlur.cs) +- [Editor Code](Editor/IrisBlurEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/IrisBlur/IrisBlurProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/IrisBlur/IrisBlur.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/IrisBlur/IrisBlur.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/IrisBlur/README.md.meta b/Assets/X-PostProcessing/Effects/IrisBlur/README.md.meta new file mode 100644 index 000000000..de0c525c9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlur/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 56196ad4f49958e488f6e88c8e524a86 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/IrisBlur/Shader.meta b/Assets/X-PostProcessing/Effects/IrisBlur/Shader.meta new file mode 100644 index 000000000..54d98f03e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlur/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7fe775c5c0612374b92b5f59ddd19c9e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/IrisBlur/Shader/IrisBlur.shader b/Assets/X-PostProcessing/Effects/IrisBlur/Shader/IrisBlur.shader new file mode 100644 index 000000000..4ece061ec --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlur/Shader/IrisBlur.shader @@ -0,0 +1,183 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +//reference :https://docs.unity3d.com/550/Documentation/Manual/script-TiltShiftHdr.html + +Shader "Hidden/X-PostProcessing/IrisBlur" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + TEXTURE2D_SAMPLER2D(_BlurredTex, sampler_BlurredTex); + + float4 _BlurredTex_TexelSize; + half2 _Params; + + #define _BluSize _Params.x + #define _BlurRadius _Params.y + + + static const int DiscKernelSampleNum_LQ = 12; + static const float2 DiscKernel_LQ[DiscKernelSampleNum_LQ] = + { + float2(-0.326212, -0.40581), + float2(-0.840144, -0.07358), + float2(-0.695914, 0.457137), + float2(-0.203345, 0.620716), + float2(0.96234, -0.194983), + float2(0.473434, -0.480026), + float2(0.519456, 0.767022), + float2(0.185461, -0.893124), + float2(0.507431, 0.064425), + float2(0.89642, 0.412458), + float2(-0.32194, -0.932615), + float2(-0.791559, -0.59771) + }; + + static const int DiscKernelSampleNum_HQ = 28; + static const float3 DiscKernel_HQ[DiscKernelSampleNum_HQ] = + { + float3(0.62463, 0.54337, 0.82790), + float3(-0.13414, -0.94488, 0.95435), + float3(0.38772, -0.43475, 0.58253), + float3(0.12126, -0.19282, 0.22778), + float3(-0.20388, 0.11133, 0.23230), + float3(0.83114, -0.29218, 0.88100), + float3(0.10759, -0.57839, 0.58831), + float3(0.28285, 0.79036, 0.83945), + float3(-0.36622, 0.39516, 0.53876), + float3(0.75591, 0.21916, 0.78704), + float3(-0.52610, 0.02386, 0.52664), + float3(-0.88216, -0.24471, 0.91547), + float3(-0.48888, -0.29330, 0.57011), + float3(0.44014, -0.08558, 0.44838), + float3(0.21179, 0.51373, 0.55567), + float3(0.05483, 0.95701, 0.95858), + float3(-0.59001, -0.70509, 0.91938), + float3(-0.80065, 0.24631, 0.83768), + float3(-0.19424, -0.18402, 0.26757), + float3(-0.43667, 0.76751, 0.88304), + float3(0.21666, 0.11602, 0.24577), + float3(0.15696, -0.85600, 0.87027), + float3(-0.75821, 0.58363, 0.95682), + float3(0.99284, -0.02904, 0.99327), + float3(-0.22234, -0.57907, 0.62029), + float3(0.55052, -0.66984, 0.86704), + float3(0.46431, 0.28115, 0.54280), + float3(-0.07214, 0.60554, 0.60982), + }; + + + float IrisMask(float2 uv) + { + float2 center = uv * 2 - 1; + return dot(center, center) * (_BluSize * 0.001); + } + + float4 FragIrisLQ(VaryingsDefault i): SV_Target + { + float4 screenColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + float3 sum = screenColor.rgb; + + float mask = IrisMask(i.texcoord.xy); + + float4 poissonScale = (_BlurRadius * 30) * mask; + + for (int l = 0; l < DiscKernelSampleNum_LQ; l ++) + { + float2 sampleUV = i.texcoord.xy + DiscKernel_LQ[l].xy * poissonScale.xy; + float3 sample0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, sampleUV.xy).rgb; + float3 sample1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, sampleUV.xy).rgb; + + sum += sample0 + sample1; + } + + return float4(sum.rgb / (1.0 + 2.0 * DiscKernelSampleNum_LQ), mask); + } + + float4 FragIrisHQ(VaryingsDefault i): SV_Target + { + float4 screenColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + float3 sum = screenColor.rgb; + + float mask = IrisMask(i.texcoord.xy); + + float4 poissonScale = (_BlurRadius * 30) * mask; + + for (int l = 0; l < DiscKernelSampleNum_HQ; l ++) + { + float2 sampleUV = i.texcoord.xy + DiscKernel_HQ[l].xy * poissonScale.xy; + float3 sample0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, sampleUV.xy).rgb; + float3 sample1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, sampleUV.xy).rgb; + + sum += sample0 + sample1; + } + + return float4(sum.rgb / (1.0 + 2.0 * DiscKernelSampleNum_HQ), mask); + } + + float4 FragBlend(VaryingsDefault i): SV_Target + { + float4 screenColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + float4 blurredColor = SAMPLE_TEXTURE2D(_BlurredTex, sampler_BlurredTex, i.texcoord); + + float3 result = lerp(blurredColor.rgb, screenColor.rgb, saturate(blurredColor.a)); + + return float4(result.rgb, screenColor.a); + } + + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + //Pass 0 - Iris Blur High Quality + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragIrisHQ + + ENDHLSL + + } + + //Pass 1 - Iris Blur Low Quality + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragIrisLQ + + ENDHLSL + + } + + //Pass 2 - Blend + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragBlend + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/IrisBlur/Shader/IrisBlur.shader.meta b/Assets/X-PostProcessing/Effects/IrisBlur/Shader/IrisBlur.shader.meta new file mode 100644 index 000000000..8f316143e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlur/Shader/IrisBlur.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b65e66274f5ed784abb0a1fede226fab +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/IrisBlurV2.meta b/Assets/X-PostProcessing/Effects/IrisBlurV2.meta new file mode 100644 index 000000000..58f981922 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlurV2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c98de5f680885ae4aa282da6a358ed11 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/IrisBlurV2/Editor.meta b/Assets/X-PostProcessing/Effects/IrisBlurV2/Editor.meta new file mode 100644 index 000000000..d66944b2c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlurV2/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cb167be4afee1ad45849e333fd0d7b65 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/IrisBlurV2/Editor/IrisBlurV2Editor.cs b/Assets/X-PostProcessing/Effects/IrisBlurV2/Editor/IrisBlurV2Editor.cs new file mode 100644 index 000000000..ff9d8e23e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlurV2/Editor/IrisBlurV2Editor.cs @@ -0,0 +1,65 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(IrisBlurV2))] + public sealed class IrisBlurV2Editor : PostProcessEffectEditor + { + + SerializedParameterOverride centerOffsetX; + SerializedParameterOverride centerOffsetY; + SerializedParameterOverride AreaSize; + SerializedParameterOverride Iteration; + SerializedParameterOverride BlurRadius; + SerializedParameterOverride showPreview; + + + public override void OnEnable() + { + showPreview = FindParameterOverride(x => x.showPreview); + centerOffsetX = FindParameterOverride(x => x.centerOffsetX); + centerOffsetY = FindParameterOverride(x => x.centerOffsetY); + AreaSize = FindParameterOverride(x => x.AreaSize); + Iteration = FindParameterOverride(x => x.Iteration); + BlurRadius = FindParameterOverride(x => x.BlurRadius); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Blur Property"); + PropertyField(BlurRadius); + PropertyField(Iteration); + + EditorUtilities.DrawHeaderLabel("Area Property"); + PropertyField(AreaSize); + PropertyField(centerOffsetX); + PropertyField(centerOffsetY); + + EditorUtilities.DrawHeaderLabel("Debug"); + PropertyField(showPreview); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/IrisBlurV2/Editor/IrisBlurV2Editor.cs.meta b/Assets/X-PostProcessing/Effects/IrisBlurV2/Editor/IrisBlurV2Editor.cs.meta new file mode 100644 index 000000000..7504ec556 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlurV2/Editor/IrisBlurV2Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: de347b80e10fa5c4c8913b90c6b3182d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/IrisBlurV2/IrisBlurV2.cs b/Assets/X-PostProcessing/Effects/IrisBlurV2/IrisBlurV2.cs new file mode 100644 index 000000000..86df19598 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlurV2/IrisBlurV2.cs @@ -0,0 +1,88 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(IrisBlurV2Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/IrisBlur/IrisBlurV2")] + public class IrisBlurV2 : PostProcessEffectSettings + { + + [Range(0f, 3f)] + public FloatParameter BlurRadius = new FloatParameter { value = 1f }; + + [Range(8, 128)] + public IntParameter Iteration = new IntParameter { value = 60 }; + + [Range(-1f, 1f)] + public FloatParameter centerOffsetX = new FloatParameter { value = 0f }; + + [Range(-1f, 1f)] + public FloatParameter centerOffsetY = new FloatParameter { value = 0f }; + + [Range(0f, 50f)] + public FloatParameter AreaSize = new FloatParameter { value = 8f }; + + public BoolParameter showPreview = new BoolParameter { value = false }; + + } + + public sealed class IrisBlurV2Renderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-IrisBlurV2"; + private Shader shader; + private Vector4 mGoldenRot = new Vector4(); + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/IrisBlurV2"); + + // Precompute rotations + float c = Mathf.Cos(2.39996323f); + float s = Mathf.Sin(2.39996323f); + mGoldenRot.Set(c, s, -s, c); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int GoldenRot = Shader.PropertyToID("_GoldenRot"); + internal static readonly int Gradient = Shader.PropertyToID("_Gradient"); + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.GoldenRot, mGoldenRot); + sheet.properties.SetVector(ShaderIDs.Gradient, new Vector3(settings.centerOffsetX, settings.centerOffsetY, settings.AreaSize * 0.1f)); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(settings.Iteration, settings.BlurRadius, 1f / context.width, 1f / context.height)); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, settings.showPreview ? 1 : 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/IrisBlurV2/IrisBlurV2.cs.meta b/Assets/X-PostProcessing/Effects/IrisBlurV2/IrisBlurV2.cs.meta new file mode 100644 index 000000000..2c0e23f59 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlurV2/IrisBlurV2.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 8b3bbc5404f2acf4a9963784dd2159af +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/IrisBlurV2/README.md b/Assets/X-PostProcessing/Effects/IrisBlurV2/README.md new file mode 100644 index 000000000..87202a018 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlurV2/README.md @@ -0,0 +1,18 @@ + +# Iris Blur V2 + +## Source Code List +- [Shader Code](Shader/IrisBlurV2.shader) +- [C# Code](IrisBlurV2.cs) +- [Editor Code](Editor/IrisBlurV2Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/IrisBlurV2/IrisBlurV2Property.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/IrisBlurV2/IrisBlurV2.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/IrisBlurV2/IrisBlurV2-1.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/IrisBlurV2/IrisBlurV2-1.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/IrisBlurV2/README.md.meta b/Assets/X-PostProcessing/Effects/IrisBlurV2/README.md.meta new file mode 100644 index 000000000..601e2e490 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlurV2/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1b75baf9ca4850f4b995ceb86eebbc7e +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/IrisBlurV2/Shader.meta b/Assets/X-PostProcessing/Effects/IrisBlurV2/Shader.meta new file mode 100644 index 000000000..f988d29b7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlurV2/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c06de418ed3387842835e62b231639e4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/IrisBlurV2/Shader/IrisBlurV2.shader b/Assets/X-PostProcessing/Effects/IrisBlurV2/Shader/IrisBlurV2.shader new file mode 100644 index 000000000..9ef918f13 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlurV2/Shader/IrisBlurV2.shader @@ -0,0 +1,101 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +// reference : https://www.shadertoy.com/view/4d2Xzw + +Shader "Hidden/X-PostProcessing/IrisBlurV2" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + half3 _Gradient; + half4 _GoldenRot; + half4 _Params; + + #define _Offset _Gradient.xy + #define _AreaSize _Gradient.z + #define _Iteration _Params.x + #define _Radius _Params.y + #define _PixelSize _Params.zw + + + float IrisMask(float2 uv) + { + float2 center = uv * 2.0 - 1.0 + _Offset; // [0,1] -> [-1,1] + return dot(center, center) * _AreaSize; + } + + half4 FragPreview(VaryingsDefault i): SV_Target + { + return IrisMask(i.texcoord); + } + + half4 IrisBlur(VaryingsDefault i) + { + half2x2 rot = half2x2(_GoldenRot); + half4 accumulator = 0.0; + half4 divisor = 0.0; + + half r = 1.0; + half2 angle = half2(0.0, _Radius * saturate(IrisMask(i.texcoord))); + + for (int j = 0; j < _Iteration; j ++) + { + r += 1.0 / r; + angle = mul(rot, angle); + half4 bokeh = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(i.texcoord + _PixelSize * (r - 1.0) * angle)); + accumulator += bokeh * bokeh; + divisor += bokeh; + } + return accumulator / divisor; + } + + + half4 Frag(VaryingsDefault i): SV_Target + { + return IrisBlur(i); + } + + + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // Pass 0 - IrisBlur + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + + // Pass 1 - Preview + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragPreview + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/IrisBlurV2/Shader/IrisBlurV2.shader.meta b/Assets/X-PostProcessing/Effects/IrisBlurV2/Shader/IrisBlurV2.shader.meta new file mode 100644 index 000000000..cbddd1aa8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/IrisBlurV2/Shader/IrisBlurV2.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb135929960fc10489137e1562cdcb5c +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/KawaseBlur.meta b/Assets/X-PostProcessing/Effects/KawaseBlur.meta new file mode 100644 index 000000000..79edcba78 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/KawaseBlur.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7e0c6fe4d65eb7949aa1b7d9987fc933 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/KawaseBlur/Editor.meta b/Assets/X-PostProcessing/Effects/KawaseBlur/Editor.meta new file mode 100644 index 000000000..c53cf659c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/KawaseBlur/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 384007f753feabe4ca02c57268e13e20 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/KawaseBlur/Editor/KawaseBlurEditor.cs b/Assets/X-PostProcessing/Effects/KawaseBlur/Editor/KawaseBlurEditor.cs new file mode 100644 index 000000000..c9a1572a7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/KawaseBlur/Editor/KawaseBlurEditor.cs @@ -0,0 +1,51 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(KawaseBlur))] + public sealed class KawaseBlurEditor : PostProcessEffectEditor + { + SerializedParameterOverride BlurRadius; + SerializedParameterOverride Iteration; + SerializedParameterOverride RTDownScaling; + + + public override void OnEnable() + { + BlurRadius = FindParameterOverride(x => x.BlurRadius); + Iteration = FindParameterOverride(x => x.Iteration); + RTDownScaling = FindParameterOverride(x => x.RTDownScaling); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(BlurRadius); + PropertyField(Iteration); + PropertyField(RTDownScaling); + + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/KawaseBlur/Editor/KawaseBlurEditor.cs.meta b/Assets/X-PostProcessing/Effects/KawaseBlur/Editor/KawaseBlurEditor.cs.meta new file mode 100644 index 000000000..f17426852 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/KawaseBlur/Editor/KawaseBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 5e7d17b682c783d4ca5be5eddc63b8b2 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/KawaseBlur/KawaseBlur.cs b/Assets/X-PostProcessing/Effects/KawaseBlur/KawaseBlur.cs new file mode 100644 index 000000000..c4281dd46 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/KawaseBlur/KawaseBlur.cs @@ -0,0 +1,99 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(KawaseBlurRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/KawaseBlur")] + public class KawaseBlur : PostProcessEffectSettings + { + + [Range(0.0f, 5.0f)] + public FloatParameter BlurRadius = new FloatParameter { value = 0.5f }; + + [Range(1, 10)] + public IntParameter Iteration = new IntParameter { value = 6 }; + + [Range(1, 8)] + public FloatParameter RTDownScaling = new FloatParameter { value = 2 }; + + } + + public sealed class KawaseBlurRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-KawaseBlur"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/KawaseBlur"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int BlurRadius = Shader.PropertyToID("_Offset"); + + internal static readonly int BufferRT1 = Shader.PropertyToID("_BufferRT1"); + internal static readonly int BufferRT2 = Shader.PropertyToID("_BufferRT2"); + } + + + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + + int RTWidth = (int)(context.screenWidth / settings.RTDownScaling); + int RTHeight = (int)(context.screenHeight / settings.RTDownScaling); + cmd.GetTemporaryRT(ShaderIDs.BufferRT1, RTWidth, RTHeight, 0, FilterMode.Bilinear); + cmd.GetTemporaryRT(ShaderIDs.BufferRT2, RTWidth, RTHeight, 0, FilterMode.Bilinear); + + // downsample screen copy into smaller RT + context.command.BlitFullscreenTriangle(context.source, ShaderIDs.BufferRT1); + + + bool needSwitch = true; + for (int i = 0; i < settings.Iteration; i++) + { + sheet.properties.SetFloat(ShaderIDs.BlurRadius, i / settings.RTDownScaling + settings.BlurRadius); + context.command.BlitFullscreenTriangle(needSwitch ? ShaderIDs.BufferRT1 : ShaderIDs.BufferRT2, needSwitch ? ShaderIDs.BufferRT2 : ShaderIDs.BufferRT1, sheet, 0); + needSwitch = !needSwitch; + } + + + sheet.properties.SetFloat(ShaderIDs.BlurRadius, settings.Iteration / settings.RTDownScaling + settings.BlurRadius); + cmd.BlitFullscreenTriangle(needSwitch ? ShaderIDs.BufferRT1 : ShaderIDs.BufferRT2, context.destination, sheet, 0); + + // release + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT1); + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT2); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/KawaseBlur/KawaseBlur.cs.meta b/Assets/X-PostProcessing/Effects/KawaseBlur/KawaseBlur.cs.meta new file mode 100644 index 000000000..4a2b410eb --- /dev/null +++ b/Assets/X-PostProcessing/Effects/KawaseBlur/KawaseBlur.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9c7f2d10840ecbc439518593ab7683c2 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/KawaseBlur/README.md b/Assets/X-PostProcessing/Effects/KawaseBlur/README.md new file mode 100644 index 000000000..81a4dd14d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/KawaseBlur/README.md @@ -0,0 +1,16 @@ + +# Kawase Blur + +## Source Code List +- [Shader Code](Shader/KawaseBlur.shader) +- [C# Code](KawaseBlur.cs) +- [Editor Code](Editor/KawaseBlurEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/KawaseBlur/KawaseBlurProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/KawaseBlur/KawaseBlur.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/KawaseBlur/KawaseBlur.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/KawaseBlur/README.md.meta b/Assets/X-PostProcessing/Effects/KawaseBlur/README.md.meta new file mode 100644 index 000000000..62195cc74 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/KawaseBlur/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c7a76c93bdb6efa4eb07280a35c825a7 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/KawaseBlur/Shader.meta b/Assets/X-PostProcessing/Effects/KawaseBlur/Shader.meta new file mode 100644 index 000000000..4f8063abf --- /dev/null +++ b/Assets/X-PostProcessing/Effects/KawaseBlur/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f835c61189ae7584687117da35ef131c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/KawaseBlur/Shader/KawaseBlur.shader b/Assets/X-PostProcessing/Effects/KawaseBlur/Shader/KawaseBlur.shader new file mode 100644 index 000000000..f1651f6ff --- /dev/null +++ b/Assets/X-PostProcessing/Effects/KawaseBlur/Shader/KawaseBlur.shader @@ -0,0 +1,57 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/KawaseBlur" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half _Offset; + + + half4 KawaseBlur(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize, half pixelOffset) + { + half4 o = 0; + o += SAMPLE_TEXTURE2D(tex, samplerTex, uv + float2(pixelOffset +0.5, pixelOffset +0.5) * texelSize); + o += SAMPLE_TEXTURE2D(tex, samplerTex, uv + float2(-pixelOffset -0.5, pixelOffset +0.5) * texelSize); + o += SAMPLE_TEXTURE2D(tex, samplerTex, uv + float2(-pixelOffset -0.5, -pixelOffset -0.5) * texelSize); + o += SAMPLE_TEXTURE2D(tex, samplerTex, uv + float2(pixelOffset +0.5, -pixelOffset -0.5) * texelSize); + return o * 0.25; + } + + + half4 Frag(VaryingsDefault i): SV_Target + { + return KawaseBlur(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord.xy, _MainTex_TexelSize.xy, _Offset); + } + + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/KawaseBlur/Shader/KawaseBlur.shader.meta b/Assets/X-PostProcessing/Effects/KawaseBlur/Shader/KawaseBlur.shader.meta new file mode 100644 index 000000000..18e880385 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/KawaseBlur/Shader/KawaseBlur.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dffb1cb344557b642a54c6329431555c +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeCircle.meta b/Assets/X-PostProcessing/Effects/PixelizeCircle.meta new file mode 100644 index 000000000..0de75805d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeCircle.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 298527a2f52f3204cb19f89631e116a4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeCircle/Editor.meta b/Assets/X-PostProcessing/Effects/PixelizeCircle/Editor.meta new file mode 100644 index 000000000..fb2767d03 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeCircle/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 81216249fdfa80f4e8b5a5cd1ac7a050 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeCircle/Editor/PixelizeCircleEditor.cs b/Assets/X-PostProcessing/Effects/PixelizeCircle/Editor/PixelizeCircleEditor.cs new file mode 100644 index 000000000..ebd22a04a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeCircle/Editor/PixelizeCircleEditor.cs @@ -0,0 +1,57 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(PixelizeCircle))] + public sealed class PixelizeCircleEditor : PostProcessEffectEditor + { + + SerializedParameterOverride pixelSize; + SerializedParameterOverride circleRadius; + SerializedParameterOverride pixelIntervalX; + SerializedParameterOverride pixelIntervalY; + SerializedParameterOverride BackgroundColor; + + public override void OnEnable() + { + pixelSize = FindParameterOverride(x => x.pixelSize); + circleRadius = FindParameterOverride(x => x.circleRadius); + pixelIntervalX = FindParameterOverride(x => x.pixelIntervalX); + pixelIntervalY = FindParameterOverride(x => x.pixelIntervalY); + BackgroundColor = FindParameterOverride(x => x.BackgroundColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(pixelSize); + PropertyField(circleRadius); + PropertyField(BackgroundColor); + + EditorUtilities.DrawHeaderLabel("Pixel Interval"); + PropertyField(pixelIntervalX); + PropertyField(pixelIntervalY); + } + + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeCircle/Editor/PixelizeCircleEditor.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeCircle/Editor/PixelizeCircleEditor.cs.meta new file mode 100644 index 000000000..fbff3344a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeCircle/Editor/PixelizeCircleEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9e2aacc7cdca0ce4e84311f44051f692 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeCircle/PixelizeCircle.cs b/Assets/X-PostProcessing/Effects/PixelizeCircle/PixelizeCircle.cs new file mode 100644 index 000000000..0cc7c2e18 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeCircle/PixelizeCircle.cs @@ -0,0 +1,76 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(PixelizeCircleRenderer), PostProcessEvent.BeforeStack, "X-PostProcessing/Pixelize/PixelizeCircle")] + public class PixelizeCircle : PostProcessEffectSettings + { + + [Range(0.01f, 1.0f)] + public FloatParameter pixelSize = new FloatParameter { value = 0.8f }; + [Range(0.01f, 1.0f)] + public FloatParameter circleRadius = new FloatParameter { value = 0.45f }; + [Range(0.2f, 5.0f), Tooltip("Pixel interval X")] + public FloatParameter pixelIntervalX = new FloatParameter { value = 1f }; + [Range(0.2f, 5.0f), Tooltip("Pixel interval Y")] + public FloatParameter pixelIntervalY = new FloatParameter { value = 1f }; + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter BackgroundColor = new ColorParameter { value = new Color(0.0f, 0.0f, 0.0f) }; + + } + + public sealed class PixelizeCircleRenderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-PixelizeCircle"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/PixelizeCircle"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int Params2 = Shader.PropertyToID("_Params2"); + internal static readonly int BackgroundColor = Shader.PropertyToID("_BackgroundColor"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + float size = (1.01f - settings.pixelSize) * 300f; + Vector4 parameters = new Vector4(size, ((context.screenWidth * 2 / context.screenHeight) * size / Mathf.Sqrt(3f)), settings.circleRadius, 0f); + + sheet.properties.SetVector(ShaderIDs.Params, parameters); + sheet.properties.SetVector(ShaderIDs.Params2, new Vector2(settings.pixelIntervalX, settings.pixelIntervalY)); + sheet.properties.SetColor(ShaderIDs.BackgroundColor, settings.BackgroundColor); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeCircle/PixelizeCircle.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeCircle/PixelizeCircle.cs.meta new file mode 100644 index 000000000..c65a23eee --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeCircle/PixelizeCircle.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2c41764e784e0e241b81d2a327bcca17 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeCircle/README.md b/Assets/X-PostProcessing/Effects/PixelizeCircle/README.md new file mode 100644 index 000000000..75b8f4fac --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeCircle/README.md @@ -0,0 +1,16 @@ + +# Pixelize Circle + +## Source Code List +- [Shader Code](Shader/PixelizeCircle.shader) +- [C# Code](PixelizeCircle.cs) +- [Editor Code](Editor/PixelizeCircleEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeCircle/PixelizeCircleProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeCircle/PixelizeCircle.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeCircle/PixelizeCircle.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeCircle/README.md.meta b/Assets/X-PostProcessing/Effects/PixelizeCircle/README.md.meta new file mode 100644 index 000000000..f8777768e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeCircle/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9d062af13e053a440ad7b27efcd600e7 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeCircle/Shader.meta b/Assets/X-PostProcessing/Effects/PixelizeCircle/Shader.meta new file mode 100644 index 000000000..b5872a8ba --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeCircle/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b00e75c973863bf488b2103f4dfb88ab +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeCircle/Shader/PixelizeCircle.shader b/Assets/X-PostProcessing/Effects/PixelizeCircle/Shader/PixelizeCircle.shader new file mode 100644 index 000000000..a89aacc21 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeCircle/Shader/PixelizeCircle.shader @@ -0,0 +1,75 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/PixelizeCircle" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + + half4 _Params; + half2 _Params2; + half4 _BackgroundColor; + + #define _PixelIntervalX _Params2.x + #define _PixelIntervalY _Params2.y + + + float4 CirclePixelize(float2 uv) + { + float pixelScale = 1.0 / _Params.x; + + float ratio = _ScreenParams.y / _ScreenParams.x; + uv.x = uv.x / ratio; + + //x和y坐标分别除以缩放系数,在用floor向下取整,再乘以缩放系数,得到分段UV + float2 coord = half2(_PixelIntervalX * floor(uv.x / (pixelScale * _PixelIntervalX)), (_PixelIntervalY)* floor(uv.y / (pixelScale * _PixelIntervalY))); + + //求解圆心坐标 + float2 circleCenter = coord * pixelScale + pixelScale * 0.5; + + //计算当前uv值隔圆心的距离,并乘以缩放系数 + float dist = length(uv - circleCenter) * _Params.x; + //圆心坐标乘以缩放系数 + circleCenter.x *= ratio; + + //采样 + float4 screenColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, circleCenter); + + //对于距离大于半径的像素,替换为背景色 + if (dist > _Params.z) screenColor = _BackgroundColor; + + return screenColor; + } + + + + float4 Frag(VaryingsDefault i): SV_Target + { + + return CirclePixelize(i.texcoord); + } + + ENDHLSL + + } + } +} diff --git a/Assets/X-PostProcessing/Effects/PixelizeCircle/Shader/PixelizeCircle.shader.meta b/Assets/X-PostProcessing/Effects/PixelizeCircle/Shader/PixelizeCircle.shader.meta new file mode 100644 index 000000000..e607cfe0e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeCircle/Shader/PixelizeCircle.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6ee664b3c0ceb0e4eb4bf4e0d84145ef +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeDiamond.meta b/Assets/X-PostProcessing/Effects/PixelizeDiamond.meta new file mode 100644 index 000000000..a1a8a7d8e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeDiamond.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7c6dc35c08bb6b84caf9401280acdf1c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeDiamond/Editor.meta b/Assets/X-PostProcessing/Effects/PixelizeDiamond/Editor.meta new file mode 100644 index 000000000..6ef7797a2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeDiamond/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c152c3b30f2b59949a25e4ed7fcb245e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeDiamond/Editor/PixelizeDiamondEditor.cs b/Assets/X-PostProcessing/Effects/PixelizeDiamond/Editor/PixelizeDiamondEditor.cs new file mode 100644 index 000000000..19593d6fe --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeDiamond/Editor/PixelizeDiamondEditor.cs @@ -0,0 +1,43 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(PixelizeDiamond))] + public sealed class PixelizeDiamondEditor : PostProcessEffectEditor + { + + SerializedParameterOverride pixelSize; + + + public override void OnEnable() + { + pixelSize = FindParameterOverride(x => x.pixelSize); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(pixelSize); + } + + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeDiamond/Editor/PixelizeDiamondEditor.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeDiamond/Editor/PixelizeDiamondEditor.cs.meta new file mode 100644 index 000000000..9fee2bacf --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeDiamond/Editor/PixelizeDiamondEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9bc4a094a2185c544bfafe89f5556293 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeDiamond/PixelizeDiamond.cs b/Assets/X-PostProcessing/Effects/PixelizeDiamond/PixelizeDiamond.cs new file mode 100644 index 000000000..edd5dd475 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeDiamond/PixelizeDiamond.cs @@ -0,0 +1,61 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(PixelizeDiamondRenderer), PostProcessEvent.BeforeStack, "X-PostProcessing/Pixelize/PixelizeDiamond")] + public class PixelizeDiamond : PostProcessEffectSettings + { + + [Range(0.01f, 1.0f)] + public FloatParameter pixelSize = new FloatParameter { value = 0.2f }; + + } + + public sealed class PixelizeDiamondRenderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-PixelizeDiamond"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/PixelizeDiamond"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int PixelSize = Shader.PropertyToID("_PixelSize"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetFloat(ShaderIDs.PixelSize, settings.pixelSize); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeDiamond/PixelizeDiamond.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeDiamond/PixelizeDiamond.cs.meta new file mode 100644 index 000000000..ef7e9fd6b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeDiamond/PixelizeDiamond.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 4955bbbf16fdcd7478664ab91ba45501 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeDiamond/README.md b/Assets/X-PostProcessing/Effects/PixelizeDiamond/README.md new file mode 100644 index 000000000..d45919359 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeDiamond/README.md @@ -0,0 +1,16 @@ + +# Pixelize Diamond + +## Source Code List +- [Shader Code](Shader/PixelizeDiamond.shader) +- [C# Code](PixelizeDiamond.cs) +- [Editor Code](Editor/PixelizeDiamondEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeDiamond/PixelizeDiamondProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeDiamond/PixelizeDiamond.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeDiamond/PixelizeDiamond.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeDiamond/README.md.meta b/Assets/X-PostProcessing/Effects/PixelizeDiamond/README.md.meta new file mode 100644 index 000000000..c48d4e4f1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeDiamond/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d0a2179acc8f42943bc20e9d1bd1e95c +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeDiamond/Shader.meta b/Assets/X-PostProcessing/Effects/PixelizeDiamond/Shader.meta new file mode 100644 index 000000000..59d1d91a0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeDiamond/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 70e4f25febe689e42bd9043da866f5e1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeDiamond/Shader/PixelizeDiamond.shader b/Assets/X-PostProcessing/Effects/PixelizeDiamond/Shader/PixelizeDiamond.shader new file mode 100644 index 000000000..a93d50d70 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeDiamond/Shader/PixelizeDiamond.shader @@ -0,0 +1,68 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/PixelizeDiamond" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + + float _PixelSize; + + + float2 DiamondPixelizeUV(float2 uv) + { + half2 pixelSize = 10 / _PixelSize; + + half2 coord = uv * pixelSize; + + //计算当前Diamond的朝向 + int direction = int(dot(frac(coord), half2(1, 1)) >= 1.0) + 2 * int(dot(frac(coord), half2(1, -1)) >= 0.0); + + //进行向下取整 + coord = floor(coord); + + //处理Diamond的四个方向 + if (direction == 0) coord += half2(0, 0.5); + if(direction == 1) coord += half2(0.5, 1); + if(direction == 2) coord += half2(0.5, 0); + if(direction == 3) coord += half2(1, 0.5); + + //最终缩放uv + coord /= pixelSize; + + return coord; + } + + + + float4 Frag(VaryingsDefault i): SV_Target + { + float2 uv = DiamondPixelizeUV(i.texcoord); + + return SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv); + } + + ENDHLSL + + } + } +} diff --git a/Assets/X-PostProcessing/Effects/PixelizeDiamond/Shader/PixelizeDiamond.shader.meta b/Assets/X-PostProcessing/Effects/PixelizeDiamond/Shader/PixelizeDiamond.shader.meta new file mode 100644 index 000000000..f58d4f0f3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeDiamond/Shader/PixelizeDiamond.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2d39d378f84f6e84ea6bf673958a4d8e +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagon.meta b/Assets/X-PostProcessing/Effects/PixelizeHexagon.meta new file mode 100644 index 000000000..42371224a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagon.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: baf125f52dcc80d49b18261b84fb8925 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagon/Editor.meta b/Assets/X-PostProcessing/Effects/PixelizeHexagon/Editor.meta new file mode 100644 index 000000000..ecfc28830 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagon/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ef04f6e4512c404409ae0fa6f04fe336 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagon/Editor/PixelizeHexagonEditor.cs b/Assets/X-PostProcessing/Effects/PixelizeHexagon/Editor/PixelizeHexagonEditor.cs new file mode 100644 index 000000000..a3314eedd --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagon/Editor/PixelizeHexagonEditor.cs @@ -0,0 +1,61 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(PixelizeHexagon))] + public sealed class PixelizeHexagonEditor : PostProcessEffectEditor + { + + SerializedParameterOverride pixelSize; + SerializedParameterOverride useAutoScreenRatio; + SerializedParameterOverride pixelRatio; + SerializedParameterOverride pixelScaleX; + SerializedParameterOverride pixelScaleY; + + + public override void OnEnable() + { + pixelSize = FindParameterOverride(x => x.pixelSize); + useAutoScreenRatio = FindParameterOverride(x => x.useAutoScreenRatio); + pixelRatio = FindParameterOverride(x => x.pixelRatio); + pixelScaleX = FindParameterOverride(x => x.pixelScaleX); + pixelScaleY = FindParameterOverride(x => x.pixelScaleY); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(pixelSize); + PropertyField(useAutoScreenRatio); + if (useAutoScreenRatio.value.boolValue == false) + { + PropertyField(pixelRatio); + } + + EditorUtilities.DrawHeaderLabel("Pixel Scale"); + PropertyField(pixelScaleX); + PropertyField(pixelScaleY); + + } + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagon/Editor/PixelizeHexagonEditor.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeHexagon/Editor/PixelizeHexagonEditor.cs.meta new file mode 100644 index 000000000..d75dce244 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagon/Editor/PixelizeHexagonEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: a291b1f4900314549945700bc336a226 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagon/PixelizeHexagon.cs b/Assets/X-PostProcessing/Effects/PixelizeHexagon/PixelizeHexagon.cs new file mode 100644 index 000000000..130c4a424 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagon/PixelizeHexagon.cs @@ -0,0 +1,94 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(PixelizeHexagonRenderer), PostProcessEvent.BeforeStack, "X-PostProcessing/Pixelize/PixelizeHexagon")] + public class PixelizeHexagon : PostProcessEffectSettings + { + + [Range(0.01f, 1.0f)] + public FloatParameter pixelSize = new FloatParameter { value = 0.05f }; + + [Range(0.01f, 5.0f)] + public FloatParameter gridWidth = new FloatParameter { value = 1.0f }; + + + public BoolParameter useAutoScreenRatio = new BoolParameter { value = false }; + + [Range(0.2f, 5.0f)] + public FloatParameter pixelRatio = new FloatParameter { value = 1f }; + + [Range(0.2f, 5.0f), Tooltip("像素缩放X")] + public FloatParameter pixelScaleX = new FloatParameter { value = 1f }; + + [Range(0.2f, 5.0f), Tooltip("像素缩放Y")] + public FloatParameter pixelScaleY = new FloatParameter { value = 1f }; + + } + + public sealed class PixelizeHexagonRenderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-PixelizeHexagon"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/PixelizeHexagon"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + float size = settings.pixelSize * 0.2f; + sheet.properties.SetFloat("_PixelSize", size); + float ratio = settings.pixelRatio; + if (settings.useAutoScreenRatio) + { + ratio = (float)(context.width / (float)context.height); + if (ratio == 0) + { + ratio = 1f; + } + } + + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(size, ratio, settings.pixelScaleX, settings.pixelScaleY)); + + + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + + } + + + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagon/PixelizeHexagon.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeHexagon/PixelizeHexagon.cs.meta new file mode 100644 index 000000000..b22f6da07 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagon/PixelizeHexagon.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 6563b9b9059173a4c827a1ec5284646f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagon/README.md b/Assets/X-PostProcessing/Effects/PixelizeHexagon/README.md new file mode 100644 index 000000000..d324eb5fa --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagon/README.md @@ -0,0 +1,16 @@ + +# Pixelize Hexagon + +## Source Code List +- [Shader Code](Shader/PixelizeHexagon.shader) +- [C# Code](PixelizeHexagon.cs) +- [Editor Code](Editor/PixelizeHexagonEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeHexagon/PixelizeHexagonProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeHexagon/PixelizeHexagon.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeHexagon/PixelizeHexagon.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagon/README.md.meta b/Assets/X-PostProcessing/Effects/PixelizeHexagon/README.md.meta new file mode 100644 index 000000000..6c6c7a172 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagon/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1f217d01f34a991439d5419bfde1d6c9 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagon/Shader.meta b/Assets/X-PostProcessing/Effects/PixelizeHexagon/Shader.meta new file mode 100644 index 000000000..be929087d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagon/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fd059144f13c88c489054bc3e92bf4e0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagon/Shader/PixelizeHexagon.shader b/Assets/X-PostProcessing/Effects/PixelizeHexagon/Shader/PixelizeHexagon.shader new file mode 100644 index 000000000..7e1c65717 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagon/Shader/PixelizeHexagon.shader @@ -0,0 +1,158 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +//reference : +// 1. https://www.shadertoy.com/view/ls23Dc +// 2. http://coding-experiments.blogspot.nl/2010/06/pixelation.html + +Shader "Hidden/X-PostProcessing/PixelizeHexagon" +{ + + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + half4 _Params; + #define _PixelSize _Params.x + #define _PixelRatio _Params.y + #define _PixelScaleX _Params.z + #define _PixelScaleY _Params.w + + + float HexDist(float2 a, float2 b) + { + float2 p = abs(b - a); + float s = 0.5; + float c = 0.8660254; + + float diagDist = s * p.x + c * p.y; + return max(diagDist, p.x) / c; + } + + float2 NearestHex(float s, float2 st) + { + float h = 0.5 * s; + float r = 0.8660254 * s; + float b = s + 2.0 * h; + float a = 2.0 * r; + float m = h / r; + + float2 sect = st / float2(2.0 * r, h + s); + float2 sectPxl = fmod(st, float2(2.0 * r, h + s)); + + float aSection = fmod(floor(sect.y), 2.0); + + float2 coord = floor(sect); + if (aSection > 0.0) + { + if(sectPxl.y < (h - sectPxl.x * m)) + { + coord -= 1.0; + } + else if(sectPxl.y < (-h + sectPxl.x * m)) + { + coord.y -= 1.0; + } + } + else + { + if(sectPxl.x > r) + { + if(sectPxl.y < (2.0 * h - sectPxl.x * m)) + { + coord.y -= 1.0; + } + } + else + { + if(sectPxl.y < (sectPxl.x * m)) + { + coord.y -= 1.0; + } + else + { + coord.x -= 1.0; + } + } + } + + float xoff = fmod(coord.y, 2.0) * r; + return float2(coord.x * 2.0 * r - xoff, coord.y * (h + s)) + float2(r * 2.0, s); + } + + + float4 FragHex(VaryingsDefault i): SV_Target + { + float2 ratio = float2(_PixelRatio * _PixelScaleX, _PixelScaleY); + float2 nearest = NearestHex(_PixelSize, i.texcoord * ratio); + float4 finalColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, nearest / ratio); + return finalColor; + } + + + + float2 HexPixelizeUV(float2 hexIndex) + { + int i = hexIndex.x; + int j = hexIndex.y; + float2 r; + r.x = i * _Params.x; + r.y = j * _Params.y + (i % 2.0) * _Params.y / 2.0; + return r; + } + + //Solve index + float2 HexIndex(float2 uv, float size) + { + float2 r; + + int it = int(floor(uv.x / size)); + float yts = uv.y - float(it % 2.0) * _Params.y / 2.0; + int jt = int(floor((1.0 / _Params.y) * yts)); + float xt = uv.x - it * size; + float yt = yts - jt * _Params.y; + int deltaj = (yt > _Params.y / 2.0) ? 1 : 0; + float fcond = size * (2.0 / 3.0) * abs(0.5 - yt / _Params.y); + + if (xt > fcond) + { + r.x = it; + r.y = jt; + } + else + { + r.x = it - 1; + r.y = jt - (r.x % 2) + deltaj; + } + + return r; + } + + + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragHex + + ENDHLSL + + } + } +} diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagon/Shader/PixelizeHexagon.shader.meta b/Assets/X-PostProcessing/Effects/PixelizeHexagon/Shader/PixelizeHexagon.shader.meta new file mode 100644 index 000000000..9d88469b3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagon/Shader/PixelizeHexagon.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 37db12b6dec3e8049b8a0f5e86c9bf83 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid.meta b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid.meta new file mode 100644 index 000000000..713e1fdee --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8b3f599f24df95044bce5266911c95c6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Editor.meta b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Editor.meta new file mode 100644 index 000000000..a7655fbff --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2360a902648b9a14b85a54db256230c9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Editor/PixelizeHexagonGridEditor.cs b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Editor/PixelizeHexagonGridEditor.cs new file mode 100644 index 000000000..b8f9e3c72 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Editor/PixelizeHexagonGridEditor.cs @@ -0,0 +1,57 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(PixelizeHexagonGrid))] + public sealed class PixelizeHexagonGridEditor : PostProcessEffectEditor + { + + SerializedParameterOverride pixelSize; + SerializedParameterOverride useAutoScreenRatio; + SerializedParameterOverride pixelRatio; + SerializedParameterOverride pixelScaleX; + SerializedParameterOverride pixelScaleY; + SerializedParameterOverride gridWidth; + + + + public override void OnEnable() + { + pixelSize = FindParameterOverride(x => x.pixelSize); + useAutoScreenRatio = FindParameterOverride(x => x.useAutoScreenRatio); + pixelRatio = FindParameterOverride(x => x.pixelRatio); + pixelScaleX = FindParameterOverride(x => x.pixelScaleX); + pixelScaleY = FindParameterOverride(x => x.pixelScaleY); + gridWidth = FindParameterOverride(x => x.gridWidth); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(pixelSize); + PropertyField(gridWidth); + } + + + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Editor/PixelizeHexagonGridEditor.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Editor/PixelizeHexagonGridEditor.cs.meta new file mode 100644 index 000000000..fb46307d0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Editor/PixelizeHexagonGridEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: aeb6352172cc6354c85a7138e6135332 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/PixelizeHexagonGrid.cs b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/PixelizeHexagonGrid.cs new file mode 100644 index 000000000..fbb22e907 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/PixelizeHexagonGrid.cs @@ -0,0 +1,78 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + + [Serializable] + [PostProcess(typeof(PixelizeHexagonGridRenderer), PostProcessEvent.BeforeStack, "X-PostProcessing/Pixelize/PixelizeHexagonGrid")] + public class PixelizeHexagonGrid : PostProcessEffectSettings + { + [Range(0.01f, 1.0f)] + public FloatParameter pixelSize = new FloatParameter { value = 0.05f }; + + [Range(0.01f, 5.0f)] + public FloatParameter gridWidth = new FloatParameter { value = 1.0f }; + + + public BoolParameter useAutoScreenRatio = new BoolParameter { value = false }; + + [Range(0.2f, 5.0f)] + public FloatParameter pixelRatio = new FloatParameter { value = 1f }; + + [Range(0.2f, 5.0f)] + public FloatParameter pixelScaleX = new FloatParameter { value = 1f }; + + [Range(0.2f, 5.0f)] + public FloatParameter pixelScaleY = new FloatParameter { value = 1f }; + + } + + public sealed class PixelizeHexagonGridRenderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-PixelizeHexagonGrid"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/PixelizeHexagonGrid"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector2(settings.pixelSize, settings.gridWidth)); + + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/PixelizeHexagonGrid.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/PixelizeHexagonGrid.cs.meta new file mode 100644 index 000000000..b000afdd7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/PixelizeHexagonGrid.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 37ad219a3382cad49910c03773fe214e +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/README.md b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/README.md new file mode 100644 index 000000000..1fdad2699 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/README.md @@ -0,0 +1,18 @@ + +# Pixelize Hexagon Grid + +## Source Code List +- [Shader Code](Shader/PixelizeHexagonGrid.shader) +- [C# Code](PixelizeHexagonGrid.cs) +- [Editor Code](Editor/PixelizeHexagonGridEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeHexagonGrid/PixelizeHexagonGridProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeHexagonGrid/PixelizeHexagonGrid.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeHexagonGrid/PixelizeHexagonGrid.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeHexagonGrid/PixelizeHexagonGrid-2.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/README.md.meta b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/README.md.meta new file mode 100644 index 000000000..03cb29464 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 31cf9fd3d5ba1f241961987c998b8e56 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Shader.meta b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Shader.meta new file mode 100644 index 000000000..9e07ac0cf --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 77eee2aed40b72242a1e04a43715f451 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Shader/PixelizeHexagonGrid.shader b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Shader/PixelizeHexagonGrid.shader new file mode 100644 index 000000000..ad1723db3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Shader/PixelizeHexagonGrid.shader @@ -0,0 +1,165 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +//reference : +// 1. https://www.shadertoy.com/view/ls23Dc +// 2. http://coding-experiments.blogspot.nl/2010/06/pixelation.html + +Shader "Hidden/X-PostProcessing/PixelizeHexagonGrid" +{ + + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half2 _Params; + #define _PixelSize _Params.x + #define _GridWidth _Params.y + + + float HexDist(float2 a, float2 b) + { + float2 p = abs(b - a); + float s = 0.5; + float c = 0.8660254; + + float diagDist = s * p.x + c * p.y; + return max(diagDist, p.x) / c; + } + + float2 NearestHex(float s, float2 st) + { + float h = 0.5 * s; + float r = 0.8660254 * s; + float b = s + 2.0 * h; + float a = 2.0 * r; + float m = h / r; + + float2 sect = st / float2(2.0 * r, h + s); + float2 sectPxl = fmod(st, float2(2.0 * r, h + s)); + + float aSection = fmod(floor(sect.y), 2.0); + + float2 coord = floor(sect); + if (aSection > 0.0) + { + if(sectPxl.y < (h - sectPxl.x * m)) + { + coord -= 1.0; + } + else if(sectPxl.y < (-h + sectPxl.x * m)) + { + coord.y -= 1.0; + } + } + else + { + if(sectPxl.x > r) + { + if(sectPxl.y < (2.0 * h - sectPxl.x * m)) + { + coord.y -= 1.0; + } + } + else + { + if(sectPxl.y < (sectPxl.x * m)) + { + coord.y -= 1.0; + } + else + { + coord.x -= 1.0; + } + } + } + + float xoff = fmod(coord.y, 2.0) * r; + return float2(coord.x * 2.0 * r - xoff, coord.y * (h + s)) + float2(r * 2.0, s); + } + + + + + float4 FragHexGrid(VaryingsDefault i) : SV_Target + { + //cal hexagon uv + float pixelSize = _PixelSize * _ScreenParams.x * 0.2; + float2 nearest = NearestHex(pixelSize, i.texcoord * _ScreenParams.xy); + + float4 finalColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, nearest / _ScreenParams.xy); + + float dist = HexDist(i.texcoord * _ScreenParams.xy, nearest); + + float interiorSize = pixelSize; + float interior = 1.0 - smoothstep(interiorSize - 0.8, interiorSize, dist * _GridWidth); + + return float4(finalColor.rgb * interior, 1.0); + + } + + float2 HexPixelizeUV(float2 hexIndex) + { + int i = hexIndex.x; + int j = hexIndex.y; + float2 r; + r.x = i * _Params.x; + r.y = j * _Params.y + (i % 2.0) * _Params.y / 2.0; + return r; + } + + //Solve index + float2 HexIndex(float2 uv, float size) + { + float2 r; + + int it = int(floor(uv.x / size)); + float yts = uv.y - float(it % 2.0) * _Params.y / 2.0; + int jt = int(floor((1.0 / _Params.y) * yts)); + float xt = uv.x - it * size; + float yt = yts - jt * _Params.y; + int deltaj = (yt > _Params.y / 2.0) ? 1 : 0; + float fcond = size * (2.0 / 3.0) * abs(0.5 - yt / _Params.y); + + if (xt > fcond) + { + r.x = it; + r.y = jt; + } + else + { + r.x = it - 1; + r.y = jt - (r.x % 2) + deltaj; + } + + return r; + } + + + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragHexGrid + + ENDHLSL + + } + + } +} diff --git a/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Shader/PixelizeHexagonGrid.shader.meta b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Shader/PixelizeHexagonGrid.shader.meta new file mode 100644 index 000000000..4ff2500fe --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Shader/PixelizeHexagonGrid.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9de4d6f0879c1284f97c91683cafac76 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeLeaf.meta b/Assets/X-PostProcessing/Effects/PixelizeLeaf.meta new file mode 100644 index 000000000..ebcc013e2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLeaf.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 11dac843b5064b34e9f6a53360dcbaee +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeLeaf/Editor.meta b/Assets/X-PostProcessing/Effects/PixelizeLeaf/Editor.meta new file mode 100644 index 000000000..2b7f5ed88 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLeaf/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb405c9d1a00c024ba4ce56e93b8fbab +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeLeaf/Editor/PixelizeLeafEditor.cs b/Assets/X-PostProcessing/Effects/PixelizeLeaf/Editor/PixelizeLeafEditor.cs new file mode 100644 index 000000000..57bfa6d93 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLeaf/Editor/PixelizeLeafEditor.cs @@ -0,0 +1,62 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(PixelizeLeaf))] + public sealed class PixelizeLeafEditor : PostProcessEffectEditor + { + + SerializedParameterOverride pixelSize; + SerializedParameterOverride useAutoScreenRatio; + SerializedParameterOverride pixelRatio; + SerializedParameterOverride pixelScaleX; + SerializedParameterOverride pixelScaleY; + + public override void OnEnable() + { + pixelSize = FindParameterOverride(x => x.pixelSize); + useAutoScreenRatio = FindParameterOverride(x => x.useAutoScreenRatio); + pixelRatio = FindParameterOverride(x => x.pixelRatio); + pixelScaleX = FindParameterOverride(x => x.pixelScaleX); + pixelScaleY = FindParameterOverride(x => x.pixelScaleY); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(pixelSize); + PropertyField(useAutoScreenRatio); + + if (useAutoScreenRatio.value.boolValue == false) + { + PropertyField(pixelRatio); + } + + + EditorUtilities.DrawHeaderLabel("Pixel Scale"); + PropertyField(pixelScaleX); + PropertyField(pixelScaleY); + } + + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeLeaf/Editor/PixelizeLeafEditor.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeLeaf/Editor/PixelizeLeafEditor.cs.meta new file mode 100644 index 000000000..58ffe93ad --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLeaf/Editor/PixelizeLeafEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 702cd3917e516f54791ff31781a12305 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeLeaf/PixelizeLeaf.cs b/Assets/X-PostProcessing/Effects/PixelizeLeaf/PixelizeLeaf.cs new file mode 100644 index 000000000..8da577044 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLeaf/PixelizeLeaf.cs @@ -0,0 +1,83 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(PixelizeLeafRenderer), PostProcessEvent.BeforeStack, "X-PostProcessing/Pixelize/PixelizeLeaf")] + public class PixelizeLeaf : PostProcessEffectSettings + { + + [Range(0.01f, 1.0f)] + public FloatParameter pixelSize = new FloatParameter { value = 0.8f }; + + public BoolParameter useAutoScreenRatio = new BoolParameter { value = true }; + + [Range(0.2f, 5.0f)] + public FloatParameter pixelRatio = new FloatParameter { value = 1f }; + + [Range(0.2f, 5.0f), Tooltip("像素缩放X")] + public FloatParameter pixelScaleX = new FloatParameter { value = 1f }; + + [Range(0.2f, 5.0f), Tooltip("像素缩放Y")] + public FloatParameter pixelScaleY = new FloatParameter { value = 1f }; + } + + public sealed class PixelizeLeafRenderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-PixelizeLeaf"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/PixelizeLeaf"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + float size = (1.01f - settings.pixelSize) * 10f; + + float ratio = settings.pixelRatio; + if (settings.useAutoScreenRatio) + { + ratio = (float)(context.width / (float)context.height); + if (ratio == 0) + { + ratio = 1f; + } + } + + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(size, ratio, settings.pixelScaleX * 20, settings.pixelScaleY * 20)); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeLeaf/PixelizeLeaf.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeLeaf/PixelizeLeaf.cs.meta new file mode 100644 index 000000000..d754615f1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLeaf/PixelizeLeaf.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: cdbf6ce8969839844a49e4fdbeea62d5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeLeaf/README.md b/Assets/X-PostProcessing/Effects/PixelizeLeaf/README.md new file mode 100644 index 000000000..39f00da5b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLeaf/README.md @@ -0,0 +1,18 @@ + +# Pixelize Leaf + +## Source Code List +- [Shader Code](Shader/PixelizeLeaf.shader) +- [C# Code](PixelizeLeaf.cs) +- [Editor Code](Editor/PixelizeLeafEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeLeaf/PixelizeLeafProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeLeaf/PixelizeLeaf.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeLeaf/PixelizeLeaf.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeLeaf/PixelizeLeaf-2.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeLeaf/README.md.meta b/Assets/X-PostProcessing/Effects/PixelizeLeaf/README.md.meta new file mode 100644 index 000000000..6f5afd320 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLeaf/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bc1fcec49571fee4ea073f638ed0c98c +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeLeaf/Shader.meta b/Assets/X-PostProcessing/Effects/PixelizeLeaf/Shader.meta new file mode 100644 index 000000000..dd38fac5f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLeaf/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 457d6ede96a3c2e479eb36ee6a0de33f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeLeaf/Shader/PixelizeLeaf.shader b/Assets/X-PostProcessing/Effects/PixelizeLeaf/Shader/PixelizeLeaf.shader new file mode 100644 index 000000000..9bff6257c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLeaf/Shader/PixelizeLeaf.shader @@ -0,0 +1,64 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/PixelizeLeaf" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half4 _Params; + #define _PixelSize _Params.x + #define _PixelRatio _Params.y + #define _PixelScaleX _Params.z + #define _PixelScaleY _Params.w + + + float2 TrianglePixelizeUV(float2 uv) + { + float2 pixelScale = _PixelSize * float2(_PixelScaleX, _PixelScaleY / _PixelRatio); + + //乘以缩放,向下取整,再除以缩放,得到分段UV + float2 coord = floor(uv * pixelScale) / pixelScale; + + uv -= coord; + uv *= pixelScale; + + //进行像素偏移处理 + coord += + float2(step(1.0 - uv.y, uv.x) / (pixelScale.x), // Leaf X + step(uv.x, uv.y) / (pixelScale.y)//Leaf Y + ); + + return coord; + } + + + float4 Frag(VaryingsDefault i) : SV_Target + { + float2 uv = TrianglePixelizeUV(i.texcoord); + + return SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv); + } + + ENDHLSL + + } + } +} diff --git a/Assets/X-PostProcessing/Effects/PixelizeLeaf/Shader/PixelizeLeaf.shader.meta b/Assets/X-PostProcessing/Effects/PixelizeLeaf/Shader/PixelizeLeaf.shader.meta new file mode 100644 index 000000000..0bbae925c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLeaf/Shader/PixelizeLeaf.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 342f021e0fcd56446b9bfde7d8e582d7 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeLed.meta b/Assets/X-PostProcessing/Effects/PixelizeLed.meta new file mode 100644 index 000000000..f16f0d76d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLed.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3a39d8071c7899e4c9a7d14dbaaaa4e4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeLed/Editor.meta b/Assets/X-PostProcessing/Effects/PixelizeLed/Editor.meta new file mode 100644 index 000000000..1fe6e3396 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLed/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b44794f1979005e499326ad8e8533fec +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeLed/Editor/PixelizeLedEditor.cs b/Assets/X-PostProcessing/Effects/PixelizeLed/Editor/PixelizeLedEditor.cs new file mode 100644 index 000000000..59c654bfe --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLed/Editor/PixelizeLedEditor.cs @@ -0,0 +1,64 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(PixelizeLed))] + public sealed class PixelizeLedEditor : PostProcessEffectEditor + { + + SerializedParameterOverride pixelSize; + SerializedParameterOverride useAutoScreenRatio; + SerializedParameterOverride pixelRatio; + SerializedParameterOverride BackgroundColor; + SerializedParameterOverride ledRadius; + + public override void OnEnable() + { + pixelSize = FindParameterOverride(x => x.pixelSize); + ledRadius = FindParameterOverride(x => x.ledRadius); + useAutoScreenRatio = FindParameterOverride(x => x.useAutoScreenRatio); + pixelRatio = FindParameterOverride(x => x.pixelRatio); + BackgroundColor = FindParameterOverride(x => x.BackgroundColor); + + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(pixelSize); + PropertyField(ledRadius); + PropertyField(useAutoScreenRatio); + + if (useAutoScreenRatio.value.boolValue == false) + { + PropertyField(pixelRatio); + } + + + EditorUtilities.DrawHeaderLabel("Pixel Scale"); + PropertyField(BackgroundColor); + } + + + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeLed/Editor/PixelizeLedEditor.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeLed/Editor/PixelizeLedEditor.cs.meta new file mode 100644 index 000000000..e8b8decb5 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLed/Editor/PixelizeLedEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 0d4fa712c4832014f9a252bbd4db3d28 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeLed/PixelizeLed.cs b/Assets/X-PostProcessing/Effects/PixelizeLed/PixelizeLed.cs new file mode 100644 index 000000000..ac6c4d0f5 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLed/PixelizeLed.cs @@ -0,0 +1,89 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(PixelizeLedV2Renderer), PostProcessEvent.BeforeStack, "X-PostProcessing/Pixelize/PixelizeLed")] + public class PixelizeLed : PostProcessEffectSettings + { + + [Range(0.01f, 1.0f)] + public FloatParameter pixelSize = new FloatParameter { value = 0.5f }; + + [Range(0.01f, 1.0f)] + public FloatParameter ledRadius = new FloatParameter { value = 1.0f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter BackgroundColor = new ColorParameter { value = new Color(0.0f, 0.0f, 0.0f) }; + + public BoolParameter useAutoScreenRatio = new BoolParameter { value = true }; + + [Range(0.2f, 5.0f)] + public FloatParameter pixelRatio = new FloatParameter { value = 1f }; + + } + + public sealed class PixelizeLedV2Renderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-PixelizeLed"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/PixelizeLed"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int BackgroundColor = Shader.PropertyToID("_BackgroundColor"); + } + + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + + float size = (1.01f - settings.pixelSize) * 300f; + + float ratio = settings.pixelRatio; + if (settings.useAutoScreenRatio) + { + ratio = (float)(context.width / (float)context.height); + if (ratio == 0) + { + ratio = 1f; + } + } + + + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(size, ratio, settings.ledRadius)); + sheet.properties.SetColor(ShaderIDs.BackgroundColor, settings.BackgroundColor); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeLed/PixelizeLed.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeLed/PixelizeLed.cs.meta new file mode 100644 index 000000000..1033e003c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLed/PixelizeLed.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2adfd539c4f87f148b8c618d20355086 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeLed/README.md b/Assets/X-PostProcessing/Effects/PixelizeLed/README.md new file mode 100644 index 000000000..a054a96a0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLed/README.md @@ -0,0 +1,18 @@ + +# Pixelize Led + +## Source Code List +- [Shader Code](Shader/PixelizeLed.shader) +- [C# Code](PixelizeLed.cs) +- [Editor Code](Editor/PixelizeLedEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeLed/PixelizeLedProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeLed/PixelizeLed.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeLed/PixelizeLed.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeLed/PixelizeLed-2.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeLed/README.md.meta b/Assets/X-PostProcessing/Effects/PixelizeLed/README.md.meta new file mode 100644 index 000000000..02e0a2bd8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLed/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7331d9f4bd07aaf469b63bb59586b339 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeLed/Shader.meta b/Assets/X-PostProcessing/Effects/PixelizeLed/Shader.meta new file mode 100644 index 000000000..4290522c2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLed/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ae86fa31b61720f41b28d627a2625ab6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeLed/Shader/PixelizeLed.shader b/Assets/X-PostProcessing/Effects/PixelizeLed/Shader/PixelizeLed.shader new file mode 100644 index 000000000..b15d6bec7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLed/Shader/PixelizeLed.shader @@ -0,0 +1,75 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/PixelizeLed" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + half4 _Params; + half4 _BackgroundColor; + + #define _PixelSize _Params.x + #define _PixelRatio _Params.y + #define _LedRadius _Params.z + + float2 RectPixelizeUV(half2 uv) + { + float pixelScale = 1.0 / _PixelSize; + //除以缩放系数,在向上取整,再乘以缩放系数,得到分段UV + float2 coord = half2(pixelScale * floor(uv.x / (pixelScale)), (pixelScale * _PixelRatio ) * floor(uv.y / (pixelScale *_PixelRatio))); + + return coord; + } + + + + float4 Frag(VaryingsDefault i) : SV_Target + { + + // 实现矩形像素效果 + float2 uv = RectPixelizeUV(i.texcoord); + float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv); + + // 计算矩形像素坐标 + half2 coord = i.texcoord * half2(_PixelSize, _PixelSize / _PixelRatio); + + // 横纵坐标强度渐变 + half ledX = abs(sin(coord.x * 3.1415)) * 1.5; + half ledY = abs(sin(coord.y * 3.1415)) * 1.5; + // 求解LedValue + half ledValue = ledX * ledY; + // led半径校正 + half radius = step(ledValue, _LedRadius); + + //最终颜色 = 基础led颜色 + 渐变led颜色 + 背景颜色 + color = ((1 - radius) * color) + ((color * ledValue) * radius) + radius * (1- ledValue)* _BackgroundColor; + + + return color; + + } + + ENDHLSL + + } + } +} diff --git a/Assets/X-PostProcessing/Effects/PixelizeLed/Shader/PixelizeLed.shader.meta b/Assets/X-PostProcessing/Effects/PixelizeLed/Shader/PixelizeLed.shader.meta new file mode 100644 index 000000000..35afe6139 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeLed/Shader/PixelizeLed.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0dc17d4fd928ef542a78cc17742d29d0 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeQuad.meta b/Assets/X-PostProcessing/Effects/PixelizeQuad.meta new file mode 100644 index 000000000..065a317ee --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeQuad.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1bfb7db3e42092f4c92b84d9c575dba0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeQuad/Editor.meta b/Assets/X-PostProcessing/Effects/PixelizeQuad/Editor.meta new file mode 100644 index 000000000..7560282ba --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeQuad/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 61c4768d0351ad24495a1202309c164d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeQuad/Editor/PixelizeQuadEditor.cs b/Assets/X-PostProcessing/Effects/PixelizeQuad/Editor/PixelizeQuadEditor.cs new file mode 100644 index 000000000..500771559 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeQuad/Editor/PixelizeQuadEditor.cs @@ -0,0 +1,63 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(PixelizeQuad))] + public sealed class PixelizeQuadEditor : PostProcessEffectEditor + { + + SerializedParameterOverride pixelSize; + SerializedParameterOverride useAutoScreenRatio; + SerializedParameterOverride pixelRatio; + SerializedParameterOverride pixelScaleX; + SerializedParameterOverride pixelScaleY; + + public override void OnEnable() + { + pixelSize = FindParameterOverride(x => x.pixelSize); + useAutoScreenRatio = FindParameterOverride(x => x.useAutoScreenRatio); + pixelRatio = FindParameterOverride(x => x.pixelRatio); + pixelScaleX = FindParameterOverride(x => x.pixelScaleX); + pixelScaleY = FindParameterOverride(x => x.pixelScaleY); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(pixelSize); + PropertyField(useAutoScreenRatio); + + if (useAutoScreenRatio.value.boolValue == false) + { + PropertyField(pixelRatio); + } + + + EditorUtilities.DrawHeaderLabel("Pixel Scale"); + PropertyField(pixelScaleX); + PropertyField(pixelScaleY); + } + + + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeQuad/Editor/PixelizeQuadEditor.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeQuad/Editor/PixelizeQuadEditor.cs.meta new file mode 100644 index 000000000..ea8b41650 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeQuad/Editor/PixelizeQuadEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 93b7ec932becebd4398f80d2b1e2164f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeQuad/PixelizeQuad.cs b/Assets/X-PostProcessing/Effects/PixelizeQuad/PixelizeQuad.cs new file mode 100644 index 000000000..b0da22d67 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeQuad/PixelizeQuad.cs @@ -0,0 +1,86 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(PixelizeQuadRenderer), PostProcessEvent.BeforeStack, "X-PostProcessing/Pixelize/PixelizeQuad")] + public class PixelizeQuad : PostProcessEffectSettings + { + + [Range(0.01f, 1.0f)] + public FloatParameter pixelSize = new FloatParameter { value = 0.5f }; + + public BoolParameter useAutoScreenRatio = new BoolParameter { value = true }; + + [Range(0.2f, 5.0f)] + public FloatParameter pixelRatio = new FloatParameter { value = 1f }; + + [Range(0.2f, 5.0f), Tooltip("像素缩放X")] + public FloatParameter pixelScaleX = new FloatParameter { value = 1f }; + + [Range(0.2f, 5.0f), Tooltip("像素缩放Y")] + public FloatParameter pixelScaleY = new FloatParameter { value = 1f }; + } + + public sealed class PixelizeQuadRenderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-PixelizeQuad"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/PixelizeQuad"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + float size = (1.01f - settings.pixelSize) * 200f; + sheet.properties.SetFloat("_PixelSize", size); + + + float ratio = settings.pixelRatio; + if (settings.useAutoScreenRatio) + { + ratio = (float)(context.width / (float)context.height) ; + if (ratio==0) + { + ratio = 1f; + } + } + + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(size, ratio, settings.pixelScaleX, settings.pixelScaleY)); + + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeQuad/PixelizeQuad.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeQuad/PixelizeQuad.cs.meta new file mode 100644 index 000000000..fed87ae85 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeQuad/PixelizeQuad.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: bcc23458a58ff384c82bd27e09aa0cc6 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeQuad/README.md b/Assets/X-PostProcessing/Effects/PixelizeQuad/README.md new file mode 100644 index 000000000..feca070e7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeQuad/README.md @@ -0,0 +1,16 @@ + +# Pixelize Quad + +## Source Code List +- [Shader Code](Shader/PixelizeQuad.shader) +- [C# Code](PixelizeQuad.cs) +- [Editor Code](Editor/PixelizeQuadEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeQuad/PixelizeQuadProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeQuad/PixelizeQuad.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeQuad/PixelizeQuad.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeQuad/README.md.meta b/Assets/X-PostProcessing/Effects/PixelizeQuad/README.md.meta new file mode 100644 index 000000000..d8a1784c5 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeQuad/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b213252f58037e84c9426babd7dae6ef +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeQuad/Shader.meta b/Assets/X-PostProcessing/Effects/PixelizeQuad/Shader.meta new file mode 100644 index 000000000..274a478c4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeQuad/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 19176c3e8e0acdb47963975981b96378 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeQuad/Shader/PixelizeQuad.shader b/Assets/X-PostProcessing/Effects/PixelizeQuad/Shader/PixelizeQuad.shader new file mode 100644 index 000000000..5840b08c2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeQuad/Shader/PixelizeQuad.shader @@ -0,0 +1,59 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + + +Shader "Hidden/X-PostProcessing/PixelizeQuad" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half4 _Params; + #define _PixelSize _Params.x + #define _PixelRatio _Params.y + #define _PixelScaleX _Params.z + #define _PixelScaleY _Params.w + + float2 RectPixelizeUV( half2 uv) + { + float pixelScale = 1.0 / _PixelSize; + // Divide by the scaling factor, round up, and multiply by the scaling factor to get the segmented UV + float2 coord = half2(pixelScale * _PixelScaleX * floor(uv.x / (pixelScale *_PixelScaleX)), (pixelScale * _PixelRatio *_PixelScaleY) * floor(uv.y / (pixelScale *_PixelRatio * _PixelScaleY))); + + return coord; + } + + + + float4 Frag(VaryingsDefault i) : SV_Target + { + + float2 uv = RectPixelizeUV(i.texcoord); + + float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv); + + return color; + + } + + ENDHLSL + + } + } +} diff --git a/Assets/X-PostProcessing/Effects/PixelizeQuad/Shader/PixelizeQuad.shader.meta b/Assets/X-PostProcessing/Effects/PixelizeQuad/Shader/PixelizeQuad.shader.meta new file mode 100644 index 000000000..04679ab7f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeQuad/Shader/PixelizeQuad.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c378672ba36c664cb86ab729efb01da +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeSector.meta b/Assets/X-PostProcessing/Effects/PixelizeSector.meta new file mode 100644 index 000000000..b817d3e2c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeSector.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f9121a2267ef5544681ca5cc199d2ad7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeSector/Editor.meta b/Assets/X-PostProcessing/Effects/PixelizeSector/Editor.meta new file mode 100644 index 000000000..c1f5467d4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeSector/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 51d9f4cb6a261b04c9254c8dd98a0e56 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeSector/Editor/PixelizeSectorEditor.cs b/Assets/X-PostProcessing/Effects/PixelizeSector/Editor/PixelizeSectorEditor.cs new file mode 100644 index 000000000..1d658eb2c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeSector/Editor/PixelizeSectorEditor.cs @@ -0,0 +1,57 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(PixelizeSector))] + public sealed class PixelizeSectorEditor : PostProcessEffectEditor + { + + SerializedParameterOverride pixelSize; + SerializedParameterOverride circleRadius; + SerializedParameterOverride pixelIntervalX; + SerializedParameterOverride pixelIntervalY; + SerializedParameterOverride BackgroundColor; + + public override void OnEnable() + { + pixelSize = FindParameterOverride(x => x.pixelSize); + circleRadius = FindParameterOverride(x => x.circleRadius); + pixelIntervalX = FindParameterOverride(x => x.pixelIntervalX); + pixelIntervalY = FindParameterOverride(x => x.pixelIntervalY); + BackgroundColor = FindParameterOverride(x => x.BackgroundColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(pixelSize); + PropertyField(circleRadius); + PropertyField(BackgroundColor); + + EditorUtilities.DrawHeaderLabel("Pixel Interval"); + PropertyField(pixelIntervalX); + PropertyField(pixelIntervalY); + } + + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeSector/Editor/PixelizeSectorEditor.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeSector/Editor/PixelizeSectorEditor.cs.meta new file mode 100644 index 000000000..03abed280 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeSector/Editor/PixelizeSectorEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 8b18c821150f20845b8700a8b66357fd +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeSector/PixelizeSector.cs b/Assets/X-PostProcessing/Effects/PixelizeSector/PixelizeSector.cs new file mode 100644 index 000000000..30fe340be --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeSector/PixelizeSector.cs @@ -0,0 +1,75 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(PixelizeSectorRenderer), PostProcessEvent.BeforeStack, "X-PostProcessing/Pixelize/PixelizeSector")] + public class PixelizeSector : PostProcessEffectSettings + { + + [Range(0.01f, 1.0f)] + public FloatParameter pixelSize = new FloatParameter { value = 0.8f }; + [Range(0.01f, 1.0f)] + public FloatParameter circleRadius = new FloatParameter { value = 0.8f }; + [Range(0.2f, 5.0f), Tooltip("Pixel interval X")] + public FloatParameter pixelIntervalX = new FloatParameter { value = 1f }; + [Range(0.2f, 5.0f), Tooltip("Pixel interval Y")] + public FloatParameter pixelIntervalY = new FloatParameter { value = 1f }; + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter BackgroundColor = new ColorParameter { value = new Color(0.0f, 0.0f, 0.0f) }; + } + + public sealed class PixelizeSectorRenderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-PixelizeSector"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/PixelizeSector"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int Params2 = Shader.PropertyToID("_Params2"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + float size = (1.01f - settings.pixelSize) * 300f; + Vector4 parameters = new Vector4(size, ((context.screenWidth * 2 / context.screenHeight) * size / Mathf.Sqrt(3f)), settings.circleRadius, 0f); + + sheet.properties.SetVector(ShaderIDs.Params, parameters); + sheet.properties.SetVector(ShaderIDs.Params2, new Vector2(settings.pixelIntervalX, settings.pixelIntervalY)); + sheet.properties.SetColor("_BackgroundColor", settings.BackgroundColor); + + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeSector/PixelizeSector.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeSector/PixelizeSector.cs.meta new file mode 100644 index 000000000..3c581951d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeSector/PixelizeSector.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 428057b2b0564de46885aacb59570a8b +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeSector/README.md b/Assets/X-PostProcessing/Effects/PixelizeSector/README.md new file mode 100644 index 000000000..4f893e416 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeSector/README.md @@ -0,0 +1,16 @@ + +# Pixelize Sector + +## Source Code List +- [Shader Code](Shader/PixelizeSector.shader) +- [C# Code](PixelizeSector.cs) +- [Editor Code](Editor/PixelizeSectorEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeSector/PixelizeSectorProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeSector/PixelizeSector.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeSector/PixelizeSector.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeSector/README.md.meta b/Assets/X-PostProcessing/Effects/PixelizeSector/README.md.meta new file mode 100644 index 000000000..6b0fc37ea --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeSector/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 63478e932c43e904182265205f8473be +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeSector/Shader.meta b/Assets/X-PostProcessing/Effects/PixelizeSector/Shader.meta new file mode 100644 index 000000000..6527de7d9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeSector/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3f62d8a1048c82a499908a4d752c61b3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeSector/Shader/PixelizeSector.shader b/Assets/X-PostProcessing/Effects/PixelizeSector/Shader/PixelizeSector.shader new file mode 100644 index 000000000..bed6751bb --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeSector/Shader/PixelizeSector.shader @@ -0,0 +1,74 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/PixelizeSector" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + + float4 _Params; + float2 _Params2; + half4 _BackgroundColor; + + #define _PixelIntervalX _Params2.x + #define _PixelIntervalY _Params2.y + + + float4 SectorPixelize(float2 uv) + { + float pixelScale = 1.0 / _Params.x; + + float ratio = _ScreenParams.y / _ScreenParams.x; + uv.x = uv.x / ratio; + + //x和y坐标分别除以缩放系数,在用floor向下取整,再乘以缩放系数,得到分段UV + float2 coord = half2(_PixelIntervalX * floor(uv.x / (pixelScale * _PixelIntervalX)), (_PixelIntervalY)* floor(uv.y / (pixelScale * _PixelIntervalY))); + + //设定扇形坐标 + float2 circleCenter = coord * pixelScale; + + //计算当前uv值隔圆心的距离,并乘以缩放系数 + float dist = length(uv - circleCenter) * _Params.x; + //圆心坐标乘以缩放系数 + circleCenter.x *= ratio; + + //采样 + float4 screenColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, circleCenter); + + //对于距离大于半径的像素,替换为背景色 + if (dist > _Params.z) screenColor = _BackgroundColor; + + return screenColor; + } + + + + float4 Frag(VaryingsDefault i): SV_Target + { + return SectorPixelize(i.texcoord); + } + + ENDHLSL + + } + } +} diff --git a/Assets/X-PostProcessing/Effects/PixelizeSector/Shader/PixelizeSector.shader.meta b/Assets/X-PostProcessing/Effects/PixelizeSector/Shader/PixelizeSector.shader.meta new file mode 100644 index 000000000..db88b57ed --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeSector/Shader/PixelizeSector.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0aea813750348874496f2226f14e3c8f +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeTriangle.meta b/Assets/X-PostProcessing/Effects/PixelizeTriangle.meta new file mode 100644 index 000000000..42d7c5ba6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeTriangle.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d6d267a8718639e4da4b5d1747fb2629 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeTriangle/Editor.meta b/Assets/X-PostProcessing/Effects/PixelizeTriangle/Editor.meta new file mode 100644 index 000000000..2f02d3de4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeTriangle/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 21264627d2fae7c4b828bf590dc8b339 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeTriangle/Editor/PixelizeTriangleEditor.cs b/Assets/X-PostProcessing/Effects/PixelizeTriangle/Editor/PixelizeTriangleEditor.cs new file mode 100644 index 000000000..5f98f8654 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeTriangle/Editor/PixelizeTriangleEditor.cs @@ -0,0 +1,62 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(PixelizeTriangle))] + public sealed class PixelizeTriangleEditor : PostProcessEffectEditor + { + + SerializedParameterOverride pixelSize; + SerializedParameterOverride useAutoScreenRatio; + SerializedParameterOverride pixelRatio; + SerializedParameterOverride pixelScaleX; + SerializedParameterOverride pixelScaleY; + + public override void OnEnable() + { + pixelSize = FindParameterOverride(x => x.pixelSize); + useAutoScreenRatio = FindParameterOverride(x => x.useAutoScreenRatio); + pixelRatio = FindParameterOverride(x => x.pixelRatio); + pixelScaleX = FindParameterOverride(x => x.pixelScaleX); + pixelScaleY = FindParameterOverride(x => x.pixelScaleY); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(pixelSize); + PropertyField(useAutoScreenRatio); + + if (useAutoScreenRatio.value.boolValue == false) + { + PropertyField(pixelRatio); + } + + + EditorUtilities.DrawHeaderLabel("Pixel Scale"); + PropertyField(pixelScaleX); + PropertyField(pixelScaleY); + } + + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeTriangle/Editor/PixelizeTriangleEditor.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeTriangle/Editor/PixelizeTriangleEditor.cs.meta new file mode 100644 index 000000000..b9dd1f20b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeTriangle/Editor/PixelizeTriangleEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 622651988ba58b34593a2b7b5fbac510 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeTriangle/PixelizeTriangle.cs b/Assets/X-PostProcessing/Effects/PixelizeTriangle/PixelizeTriangle.cs new file mode 100644 index 000000000..a780bac32 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeTriangle/PixelizeTriangle.cs @@ -0,0 +1,83 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(PixelizeTriangleRenderer), PostProcessEvent.BeforeStack, "X-PostProcessing/Pixelize/PixelizeTriangle")] + public class PixelizeTriangle : PostProcessEffectSettings + { + + [Range(0.001f, 1.0f)] + public FloatParameter pixelSize = new FloatParameter { value = 0.5f }; + + public BoolParameter useAutoScreenRatio = new BoolParameter { value = true }; + + [Range(0.2f, 5.0f)] + public FloatParameter pixelRatio = new FloatParameter { value = 1f }; + + [Range(0.2f, 5.0f), Tooltip("像素缩放X")] + public FloatParameter pixelScaleX = new FloatParameter { value = 1f }; + + [Range(0.2f, 5.0f), Tooltip("像素缩放Y")] + public FloatParameter pixelScaleY = new FloatParameter { value = 1f }; + } + + public sealed class PixelizeTriangleRenderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-PixelizeTriangle"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/PixelizeTriangle"); + } + + public override void Release() + { + base.Release(); + } + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + float size = (1.01f - settings.pixelSize) * 5f; + + float ratio = settings.pixelRatio; + if (settings.useAutoScreenRatio) + { + ratio = (float)(context.width / (float)context.height); + if (ratio == 0) + { + ratio = 1f; + } + } + + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(size, ratio, settings.pixelScaleX * 20, settings.pixelScaleY * 20)); + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeTriangle/PixelizeTriangle.cs.meta b/Assets/X-PostProcessing/Effects/PixelizeTriangle/PixelizeTriangle.cs.meta new file mode 100644 index 000000000..cce9cb234 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeTriangle/PixelizeTriangle.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 8f16b9d0f71b51e49a275377bb97af33 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeTriangle/README.md b/Assets/X-PostProcessing/Effects/PixelizeTriangle/README.md new file mode 100644 index 000000000..91192540f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeTriangle/README.md @@ -0,0 +1,16 @@ + +# Pixelize Triangle + +## Source Code List +- [Shader Code](Shader/PixelizeTriangle.shader) +- [C# Code](PixelizeTriangle.cs) +- [Editor Code](Editor/PixelizeTriangleEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeTriangle/PixelizeTriangleProperty.jpg) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeTriangle/PixelizeTriangle.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Pixelize/PixelizeTriangle/PixelizeTriangle.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/PixelizeTriangle/README.md.meta b/Assets/X-PostProcessing/Effects/PixelizeTriangle/README.md.meta new file mode 100644 index 000000000..0f81b44e4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeTriangle/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b7d5909bb027dfb4fad8dbeef4730f2b +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeTriangle/Shader.meta b/Assets/X-PostProcessing/Effects/PixelizeTriangle/Shader.meta new file mode 100644 index 000000000..dff2e61c0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeTriangle/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a4325d1cefbcc0149bad0d16a62df751 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/PixelizeTriangle/Shader/PixelizeTriangle.shader b/Assets/X-PostProcessing/Effects/PixelizeTriangle/Shader/PixelizeTriangle.shader new file mode 100644 index 000000000..5dd51d60f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeTriangle/Shader/PixelizeTriangle.shader @@ -0,0 +1,66 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + + +Shader "Hidden/X-PostProcessing/PixelizeTriangle" +{ + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half4 _Params; + #define _PixelSize _Params.x + #define _PixelRatio _Params.y + #define _PixelScaleX _Params.z + #define _PixelScaleY _Params.w + + + float2 TrianglePixelizeUV(float2 uv) + { + + float2 pixelScale = _PixelSize * float2(_PixelScaleX, _PixelScaleY / _PixelRatio); + + //乘以缩放,向下取整,再除以缩放,得到分段UV + float2 coord = floor(uv * pixelScale) / pixelScale; + + uv -= coord; + uv *= pixelScale; + + //进行三角形像素偏移处理 + coord += + float2(step(1.0 - uv.y, uv.x) / (2.0 * pixelScale.x),//X + step(uv.x, uv.y) / (2.0 * pixelScale.y)//Y + ); + + return coord; + } + + + float4 Frag(VaryingsDefault i) : SV_Target + { + float2 uv = TrianglePixelizeUV(i.texcoord); + + return SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv); + } + + ENDHLSL + + } + } +} diff --git a/Assets/X-PostProcessing/Effects/PixelizeTriangle/Shader/PixelizeTriangle.shader.meta b/Assets/X-PostProcessing/Effects/PixelizeTriangle/Shader/PixelizeTriangle.shader.meta new file mode 100644 index 000000000..45aad2791 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/PixelizeTriangle/Shader/PixelizeTriangle.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cc554d80b140c10418ee0426552b9494 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RadialBlur.meta b/Assets/X-PostProcessing/Effects/RadialBlur.meta new file mode 100644 index 000000000..5b602685b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlur.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 00038b76eaee4a34da642bb71f5b1fba +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RadialBlur/Editor.meta b/Assets/X-PostProcessing/Effects/RadialBlur/Editor.meta new file mode 100644 index 000000000..fb72c136a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlur/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0d0dc6c5372ecf140928fa89a8856964 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RadialBlur/Editor/RadialBlurEditor.cs b/Assets/X-PostProcessing/Effects/RadialBlur/Editor/RadialBlurEditor.cs new file mode 100644 index 000000000..a036eb4a6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlur/Editor/RadialBlurEditor.cs @@ -0,0 +1,57 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(RadialBlur))] + public sealed class RadialBlurEditor : PostProcessEffectEditor + { + + SerializedParameterOverride BlurRadius; + SerializedParameterOverride Iteration; + SerializedParameterOverride RadialCenterX; + SerializedParameterOverride RadialCenterY; + + + public override void OnEnable() + { + BlurRadius = FindParameterOverride(x => x.BlurRadius); + Iteration = FindParameterOverride(x => x.Iteration); + RadialCenterX = FindParameterOverride(x => x.RadialCenterX); + RadialCenterY = FindParameterOverride(x => x.RadialCenterY); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Core Property"); + PropertyField(BlurRadius); + PropertyField(Iteration); + + EditorUtilities.DrawHeaderLabel("Radial Center"); + PropertyField(RadialCenterX); + PropertyField(RadialCenterY); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/RadialBlur/Editor/RadialBlurEditor.cs.meta b/Assets/X-PostProcessing/Effects/RadialBlur/Editor/RadialBlurEditor.cs.meta new file mode 100644 index 000000000..482352ec3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlur/Editor/RadialBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 99b2c92a68066e14f9f14ce2cea8fa58 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RadialBlur/README.md b/Assets/X-PostProcessing/Effects/RadialBlur/README.md new file mode 100644 index 000000000..f1b57a93f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlur/README.md @@ -0,0 +1,16 @@ + +# Radial Blur + +## Source Code List +- [Shader Code](Shader/RadialBlur.shader) +- [C# Code](RadialBlur.cs) +- [Editor Code](Editor/RadialBlurEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/RadialBlur/RadialBlurProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/RadialBlur/RadialBlur.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/RadialBlur/RadialBlur.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/RadialBlur/README.md.meta b/Assets/X-PostProcessing/Effects/RadialBlur/README.md.meta new file mode 100644 index 000000000..a9b5c3af1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlur/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 911a11c8c45e5ad4aba0946436e44288 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RadialBlur/RadialBlur.cs b/Assets/X-PostProcessing/Effects/RadialBlur/RadialBlur.cs new file mode 100644 index 000000000..325923356 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlur/RadialBlur.cs @@ -0,0 +1,70 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + + [Serializable] + [PostProcess(typeof(RadialBlurRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/RadialBlur/RadialBlurV1")] + public class RadialBlur : PostProcessEffectSettings + { + + [Range(0.0f, 1.0f)] + public FloatParameter BlurRadius = new FloatParameter { value = 0.6f }; + + [Range(2,30)] + public IntParameter Iteration = new IntParameter { value = 10 }; + + [Range(0f, 1.0f)] + public FloatParameter RadialCenterX = new FloatParameter { value = 0.5f }; + [Range(0f, 1.0f)] + public FloatParameter RadialCenterY = new FloatParameter { value = 0.5f }; + + } + + public sealed class RadialBlurRenderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-RadialBlurV1"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/RadialBlur"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.Params , new Vector4(settings.BlurRadius * 0.02f, settings.Iteration, settings.RadialCenterX, settings.RadialCenterY)); + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/RadialBlur/RadialBlur.cs.meta b/Assets/X-PostProcessing/Effects/RadialBlur/RadialBlur.cs.meta new file mode 100644 index 000000000..a032a5685 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlur/RadialBlur.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 97486e7d527f76744850f3ba7d1c523d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RadialBlur/Shader.meta b/Assets/X-PostProcessing/Effects/RadialBlur/Shader.meta new file mode 100644 index 000000000..3c97c28ba --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlur/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 66ac14b8847a63d428dac2165a46bcb3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RadialBlur/Shader/RadialBlur.shader b/Assets/X-PostProcessing/Effects/RadialBlur/Shader/RadialBlur.shader new file mode 100644 index 000000000..f2126a2d6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlur/Shader/RadialBlur.shader @@ -0,0 +1,63 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/RadialBlur" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half4 _Params; + + #define _BlurRadius _Params.x + #define _Iteration _Params.y + #define _RadialCenter _Params.zw + + + half4 RadialBlur(VaryingsDefault i) + { + float2 blurVector = (_RadialCenter - i.texcoord.xy) * _BlurRadius; + + half4 acumulateColor = half4(0, 0, 0, 0); + + [unroll(30)] + for (int j = 0; j < _Iteration; j ++) + { + acumulateColor += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + i.texcoord.xy += blurVector; + } + + return acumulateColor / _Iteration; + } + + half4 Frag(VaryingsDefault i): SV_Target + { + return RadialBlur(i); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/RadialBlur/Shader/RadialBlur.shader.meta b/Assets/X-PostProcessing/Effects/RadialBlur/Shader/RadialBlur.shader.meta new file mode 100644 index 000000000..5386901d3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlur/Shader/RadialBlur.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ab9633e0ef5825a4ba7994ec78ded80c +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RadialBlurV2.meta b/Assets/X-PostProcessing/Effects/RadialBlurV2.meta new file mode 100644 index 000000000..946f58929 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlurV2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e4cd40a0ef729b4f9bde25c401a1e6c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RadialBlurV2/Editor.meta b/Assets/X-PostProcessing/Effects/RadialBlurV2/Editor.meta new file mode 100644 index 000000000..4ddc1b4ae --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlurV2/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c11c04df97f3774ea65f0fe0168bdae +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RadialBlurV2/Editor/RadialBlurV2Editor.cs b/Assets/X-PostProcessing/Effects/RadialBlurV2/Editor/RadialBlurV2Editor.cs new file mode 100644 index 000000000..e030bb752 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlurV2/Editor/RadialBlurV2Editor.cs @@ -0,0 +1,57 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(RadialBlurV2))] + public sealed class RadialBlurV2Editor : PostProcessEffectEditor + { + SerializedParameterOverride QualityLevel; + SerializedParameterOverride BlurRadius; + SerializedParameterOverride RadialCenterX; + SerializedParameterOverride RadialCenterY; + + + + public override void OnEnable() + { + QualityLevel = FindParameterOverride(x => x.QualityLevel); + BlurRadius = FindParameterOverride(x => x.BlurRadius); + RadialCenterX = FindParameterOverride(x => x.RadialCenterX); + RadialCenterY = FindParameterOverride(x => x.RadialCenterY); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + + PropertyField(QualityLevel); + PropertyField(BlurRadius); + + EditorUtilities.DrawHeaderLabel("Radial Center"); + PropertyField(RadialCenterX); + PropertyField(RadialCenterY); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/RadialBlurV2/Editor/RadialBlurV2Editor.cs.meta b/Assets/X-PostProcessing/Effects/RadialBlurV2/Editor/RadialBlurV2Editor.cs.meta new file mode 100644 index 000000000..32cdc0c77 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlurV2/Editor/RadialBlurV2Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 3a9486f384e2b9c469cf5aea7f5d7b65 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RadialBlurV2/README.md b/Assets/X-PostProcessing/Effects/RadialBlurV2/README.md new file mode 100644 index 000000000..92b2d70a4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlurV2/README.md @@ -0,0 +1,16 @@ + +# Radial BlurV2 + +## Source Code List +- [Shader Code](Shader/RadialBlurV2.shader) +- [C# Code](RadialBlurV2.cs) +- [Editor Code](Editor/RadialBlurV2Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/RadialBlurV2/RadialBlurV2Property.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/RadialBlurV2/RadialBlurV2.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/RadialBlurV2/RadialBlurV2.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/RadialBlurV2/README.md.meta b/Assets/X-PostProcessing/Effects/RadialBlurV2/README.md.meta new file mode 100644 index 000000000..f5a1d5f6b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlurV2/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e018597f050e91c4ab54bfe33705722b +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RadialBlurV2/RadialBlurV2.cs b/Assets/X-PostProcessing/Effects/RadialBlurV2/RadialBlurV2.cs new file mode 100644 index 000000000..4d4c773d2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlurV2/RadialBlurV2.cs @@ -0,0 +1,83 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + public enum RadialBlurQuality + { + RadialBlur_4Tap_Fatest = 0, + RadialBlur_6Tap = 1, + RadialBlur_8Tap_Balance = 2, + RadialBlur_10Tap = 3, + RadialBlur_12Tap = 4, + RadialBlur_20Tap_Quality = 5, + RadialBlur_30Tap_Extreme = 6, + } + + [Serializable] + public sealed class RadialBlurQualityParameter : ParameterOverride { } + + + [Serializable] + [PostProcess(typeof(RadialBlurV2Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/RadialBlur/RadialBlurV2")] + public class RadialBlurV2 : PostProcessEffectSettings + { + public RadialBlurQualityParameter QualityLevel = new RadialBlurQualityParameter { value = RadialBlurQuality.RadialBlur_8Tap_Balance }; + + [Range(-1.0f, 1.0f)] + public FloatParameter BlurRadius = new FloatParameter { value = 0.6f }; + + [Range(0f, 1.0f)] + public FloatParameter RadialCenterX = new FloatParameter { value = 0.5f }; + + [Range(0f, 1.0f)] + public FloatParameter RadialCenterY = new FloatParameter { value = 0.5f }; + } + + public sealed class RadialBlurV2Renderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-RadialBlurV2"; + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/RadialBlurV2"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.Params, new Vector3(settings.BlurRadius * 0.02f, settings.RadialCenterX, settings.RadialCenterY)); + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.QualityLevel.value); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/RadialBlurV2/RadialBlurV2.cs.meta b/Assets/X-PostProcessing/Effects/RadialBlurV2/RadialBlurV2.cs.meta new file mode 100644 index 000000000..3dd952b9d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlurV2/RadialBlurV2.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b7beddb12133c6146b209dd857b93793 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RadialBlurV2/Shader.meta b/Assets/X-PostProcessing/Effects/RadialBlurV2/Shader.meta new file mode 100644 index 000000000..a6c8bda51 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlurV2/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0db038cec6c781948af7f8ae3d2395e9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RadialBlurV2/Shader/RadialBlurV2.shader b/Assets/X-PostProcessing/Effects/RadialBlurV2/Shader/RadialBlurV2.shader new file mode 100644 index 000000000..32b56807b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlurV2/Shader/RadialBlurV2.shader @@ -0,0 +1,458 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/RadialBlurV2" +{ + + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half3 _Params; + + #define _BlurRadius _Params.x + #define _RadialCenter _Params.yz + + half4 Frag_4Tap(VaryingsDefault i): SV_Target + { + + float2 uv = i.texcoord - _RadialCenter; + + half scale = 1; + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 2 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 3 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + color *= 0.25f; // 1/4 + + return color; + } + + + half4 Frag_6Tap(VaryingsDefault i): SV_Target + { + + float2 uv = i.texcoord - _RadialCenter; + + half scale = 1; + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 2 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 3 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 4 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 5 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + + color *= 0.1667f; // 1/6 + + return color; + } + + + half4 Frag_8Tap(VaryingsDefault i): SV_Target + { + + float2 uv = i.texcoord - _RadialCenter; + + half scale = 1; + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 2 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 3 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 4 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 5 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 6 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 7 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + color *= 0.125f; // 1/8 + + return color; + } + + half4 Frag_10Tap(VaryingsDefault i): SV_Target + { + + float2 uv = i.texcoord - _RadialCenter; + + half scale = 1; + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 2 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 3 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 4 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 5 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 6 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 7 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 8 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 9 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + color *= 0.1f; // 1/10 + + return color; + } + + + + half4 Frag_12Tap(VaryingsDefault i): SV_Target + { + + float2 uv = i.texcoord - _RadialCenter; + + half scale = 1; + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 2 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 3 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 4 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 5 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 6 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 7 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 8 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 9 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 10 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 11 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + color *= 0.0833f; // 1/12 + + return color; + } + + half4 Frag_20Tap(VaryingsDefault i): SV_Target + { + + float2 uv = i.texcoord - _RadialCenter; + + half scale = 1; + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 2 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 3 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 4 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 5 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 6 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 7 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 8 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 9 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 10 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 11 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 12 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 13 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 14 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 15 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 16 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 17 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 18 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 19 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + + color *= 0.05f; // 1/20 + + return color; + } + + + half4 Frag_30Tap(VaryingsDefault i): SV_Target + { + + float2 uv = i.texcoord - _RadialCenter; + + half scale = 1; + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 2 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 3 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 4 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 5 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 6 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 7 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 8 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 9 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 10 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 11 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 12 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 13 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 14 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 15 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 16 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 17 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 18 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 19 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 20 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 21 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 22 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 23 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 24 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 25 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 26 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 27 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 28 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + scale = 29 * _BlurRadius + 1; //1 MAD + color += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv * scale + _RadialCenter); //1 MAD + + color *= 0.0333f; // 1/30 + + return color; + } + + + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_4Tap + + ENDHLSL + + } + + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_6Tap + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_8Tap + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_10Tap + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_12Tap + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_20Tap + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_30Tap + + ENDHLSL + + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/RadialBlurV2/Shader/RadialBlurV2.shader.meta b/Assets/X-PostProcessing/Effects/RadialBlurV2/Shader/RadialBlurV2.shader.meta new file mode 100644 index 000000000..06c647a6f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RadialBlurV2/Shader/RadialBlurV2.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 50e1a3f09e6a43d4f892004ba2c9fdc3 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignette.meta b/Assets/X-PostProcessing/Effects/RapidOldTVVignette.meta new file mode 100644 index 000000000..dc7f06179 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignette.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dd7f04f16639257419700f58b73fd4c7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Editor.meta b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Editor.meta new file mode 100644 index 000000000..44be0880e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 496d949333b3bab4189e2fb58864f7ab +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Editor/RapidOldTVVignetteEditor.cs b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Editor/RapidOldTVVignetteEditor.cs new file mode 100644 index 000000000..587bab8fa --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Editor/RapidOldTVVignetteEditor.cs @@ -0,0 +1,47 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(RapidOldTVVignette))] + public sealed class RapidOldTVVignetteEditor : PostProcessEffectEditor + { + + SerializedParameterOverride vignetteType; + SerializedParameterOverride vignetteIndensity; + SerializedParameterOverride vignetteCenter; + SerializedParameterOverride vignetteColor; + + public override void OnEnable() + { + vignetteType = FindParameterOverride(x => x.vignetteType); + vignetteIndensity = FindParameterOverride(x => x.vignetteIndensity); + vignetteCenter = FindParameterOverride(x => x.vignetteCenter); + vignetteColor = FindParameterOverride(x => x.vignetteColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + + PropertyField(vignetteType); + PropertyField(vignetteIndensity); + PropertyField(vignetteCenter); + + if (vignetteType.value.enumValueIndex == 1) + { + PropertyField(vignetteColor); + } + } + + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Editor/RapidOldTVVignetteEditor.cs.meta b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Editor/RapidOldTVVignetteEditor.cs.meta new file mode 100644 index 000000000..427e64fbd --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Editor/RapidOldTVVignetteEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 0f191e973536c2246ab02e9b25270963 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignette/README.md b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/README.md new file mode 100644 index 000000000..41ad7fbfa --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/README.md @@ -0,0 +1,16 @@ + +# RapidOldTVVignette + +## Source Code List +- [Shader Code](Shader/RapidOldTVVignette.shader) +- [C# Code](RapidOldTVVignette.cs) +- [Editor Code](Editor/RapidOldTVVignetteEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/RapidOldTVVignette/RapidOldTVVignetteProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/RapidOldTVVignette/RapidOldTVVignette.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/RapidOldTVVignette/RapidOldTVVignette.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignette/README.md.meta b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/README.md.meta new file mode 100644 index 000000000..5627ea40a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1990143f89aef3d47a79ea724cba459e +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignette/RapidOldTVVignette.cs b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/RapidOldTVVignette.cs new file mode 100644 index 000000000..c93840914 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/RapidOldTVVignette.cs @@ -0,0 +1,59 @@ +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(RapidOldTVVignetteRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Vignette/RapidOldTVVignette")] + public class RapidOldTVVignette : PostProcessEffectSettings + { + + public VignetteTypeParameter vignetteType = new VignetteTypeParameter { value = VignetteType.ClassicMode }; + + [Range(0.0f, 5.0f)] + public FloatParameter vignetteIndensity = new FloatParameter { value = 1f }; + + public Vector2Parameter vignetteCenter = new Vector2Parameter { value = new Vector2(0.5f, 0.5f) }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter vignetteColor = new ColorParameter { value = new Color(0.1f, 0.8f, 1.0f) }; + } + + public sealed class RapidOldTVVignetteRenderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-RapidOldTVVignette"; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/RapidOldTVVignette"); + } + + public override void Release() + { + base.Release(); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetFloat("_VignetteIndensity", settings.vignetteIndensity); + sheet.properties.SetVector("_VignetteCenter", settings.vignetteCenter); + + if (settings.vignetteType.value == VignetteType.ColorMode) + { + sheet.properties.SetVector("_VignetteColor", settings.vignetteColor); + } + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.vignetteType.value); + cmd.EndSample(PROFILER_TAG); + } + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignette/RapidOldTVVignette.cs.meta b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/RapidOldTVVignette.cs.meta new file mode 100644 index 000000000..548883c17 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/RapidOldTVVignette.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c14abea3a10d5af48bbe07ae95ded857 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Shader.meta b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Shader.meta new file mode 100644 index 000000000..929d158cf --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e5f5c6382d4120942bf4018510cc0f92 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Shader/RapidOldTVVignette.shader b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Shader/RapidOldTVVignette.shader new file mode 100644 index 000000000..b9ddcab86 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Shader/RapidOldTVVignette.shader @@ -0,0 +1,98 @@ +Shader "Hidden/X-PostProcessing/RapidOldTVVignette" +{ + + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + struct VertexOutput + { + float4 vertex: SV_POSITION; + float4 texcoord: TEXCOORD0; + }; + + half _VignetteIndensity; + half2 _VignetteCenter; + half4 _VignetteColor; + + + VertexOutput Vert(AttributesDefault v) + { + VertexOutput o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord.xy = TransformTriangleVertexToUV(v.vertex.xy); + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord.xy = o.texcoord.xy * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + + // uv [0, 1] ->[-0.5, 0.5] + o.texcoord.zw = o.texcoord.xy - _VignetteCenter; + + return o; + } + + float4 Frag(VertexOutput i): SV_Target + { + float4 finalColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord.xy); + + //普通vignette曲线 -> Old TV曲线 + i.texcoord.zw *= i.texcoord.zw; + + //求解vignette强度 + float vignetteIndensity = saturate(1.0 - dot(i.texcoord.zw, i.texcoord.zw) * _VignetteIndensity * 20); + + return vignetteIndensity * finalColor; + } + + + float4 Frag_ColorAdjust(VertexOutput i): SV_Target + { + float4 finalColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord.xy); + + //普通vignette曲线 -> Old TV曲线 + i.texcoord.zw *= i.texcoord.zw; + + //求解vignette强度 + float vignetteIndensity = saturate(1.0 - dot(i.texcoord.zw, i.texcoord.zw) * _VignetteIndensity * 20); + + //基于vignette强度,插值VignetteColor颜色和场景颜色 + finalColor.rgb = lerp(_VignetteColor.rgb, finalColor.rgb, vignetteIndensity); + + return half4(finalColor.rgb, _VignetteColor.a); + } + + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex Vert + #pragma fragment Frag + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex Vert + #pragma fragment Frag_ColorAdjust + + ENDHLSL + + } + } +} + + + diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Shader/RapidOldTVVignette.shader.meta b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Shader/RapidOldTVVignette.shader.meta new file mode 100644 index 000000000..cce3a7dd7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignette/Shader/RapidOldTVVignette.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f4c490902fc87fc46ac5061c75d44bc3 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2.meta b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2.meta new file mode 100644 index 000000000..c2c2ea523 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cb4da3502a797ea4593fe11df29616f6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Editor.meta b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Editor.meta new file mode 100644 index 000000000..4c2ec5267 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7822fa7a1406c8f4198369875808c3b7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Editor/RapidOldTVVignetteV2Editor.cs b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Editor/RapidOldTVVignetteV2Editor.cs new file mode 100644 index 000000000..a46856db6 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Editor/RapidOldTVVignetteV2Editor.cs @@ -0,0 +1,55 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(RapidOldTVVignetteV2))] + public sealed class RapidOldTVVignetteV2Editor : PostProcessEffectEditor + { + SerializedParameterOverride vignetteType; + SerializedParameterOverride vignetteSize; + SerializedParameterOverride sizeOffset; + SerializedParameterOverride vignetteColor; + + public override void OnEnable() + { + vignetteType = FindParameterOverride(x => x.vignetteType); + vignetteSize = FindParameterOverride(x => x.vignetteSize); + sizeOffset = FindParameterOverride(x => x.sizeOffset); + vignetteColor = FindParameterOverride(x => x.vignetteColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(vignetteType); + PropertyField(vignetteSize); + PropertyField(sizeOffset); + if (vignetteType.value.enumValueIndex == 1) + { + PropertyField(vignetteColor); + } + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Editor/RapidOldTVVignetteV2Editor.cs.meta b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Editor/RapidOldTVVignetteV2Editor.cs.meta new file mode 100644 index 000000000..ed260a57a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Editor/RapidOldTVVignetteV2Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 648835b00b9b694479252a2cbe5d13f4 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/README.md b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/README.md new file mode 100644 index 000000000..402b6eb20 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/README.md @@ -0,0 +1,16 @@ + +# RapidOldTVVignetteV2 + +## Source Code List +- [Shader Code](Shader/RapidOldTVVignetteV2.shader) +- [C# Code](RapidOldTVVignetteV2.cs) +- [Editor Code](Editor/RapidOldTVVignetteV2Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/RapidOldTVVignetteV2/RapidOldTVVignetteV2Property.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/RapidOldTVVignetteV2/RapidOldTVVignetteV2.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/RapidOldTVVignetteV2/RapidOldTVVignetteV2.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/README.md.meta b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/README.md.meta new file mode 100644 index 000000000..0dade7382 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 84e2733e2762ed64e9691cc77c3103ab +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/RapidOldTVVignetteV2.cs b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/RapidOldTVVignetteV2.cs new file mode 100644 index 000000000..461e6534c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/RapidOldTVVignetteV2.cs @@ -0,0 +1,69 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(RapidOldTVVignetteV2Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/Vignette/RapidOldTVVignetteV2")] + public class RapidOldTVVignetteV2 : PostProcessEffectSettings + { + public VignetteTypeParameter vignetteType = new VignetteTypeParameter { value = VignetteType.ClassicMode }; + + [Range(1.0f, 5000.0f)] + public FloatParameter vignetteSize = new FloatParameter { value = 20f }; + + [Range(0.0f, 1.0f)] + public FloatParameter sizeOffset = new FloatParameter { value = 0.2f }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter vignetteColor = new ColorParameter { value = new Color(0.1f, 0.8f, 1.0f) }; + } + + public sealed class RapidOldTVVignetteV2Renderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-GlitchLineBlock"; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/RapidOldTVVignetteV2"); + } + + public override void Release() + { + base.Release(); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetFloat("_VignetteSize", settings.vignetteSize); + sheet.properties.SetFloat("_SizeOffset", settings.sizeOffset); + if (settings.vignetteType.value == VignetteType.ColorMode) + { + sheet.properties.SetColor("_VignetteColor", settings.vignetteColor); + } + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.vignetteType.value); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/RapidOldTVVignetteV2.cs.meta b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/RapidOldTVVignetteV2.cs.meta new file mode 100644 index 000000000..fe4acf206 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/RapidOldTVVignetteV2.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 5a9cf47ac2961034bac04fad4a99a572 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Shader.meta b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Shader.meta new file mode 100644 index 000000000..f1e13e1a8 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a3683eaa498b09348a7402c28cb24967 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Shader/RapidOldTVVignetteV2.shader b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Shader/RapidOldTVVignetteV2.shader new file mode 100644 index 000000000..f0873eebb --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Shader/RapidOldTVVignetteV2.shader @@ -0,0 +1,70 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/RapidOldTVVignetteV2" +{ + + HLSLINCLUDE + + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half _VignetteSize; + uniform half _SizeOffset; + uniform half4 _VignetteColor; + + + float4 Frag(VaryingsDefault i): SV_Target + { + half2 uv = -i.texcoord * i.texcoord + i.texcoord; //MAD + half VignetteIndensity = saturate(uv.x * uv.y * _VignetteSize + _SizeOffset); + return VignetteIndensity * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + } + + float4 Frag_ColorAdjust(VaryingsDefault i): SV_Target + { + half2 uv = -i.texcoord * i.texcoord + i.texcoord; //MAD + half VignetteIndensity = saturate(uv.x * uv.y * _VignetteSize + _SizeOffset); + + return lerp(_VignetteColor, SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord), VignetteIndensity); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_ColorAdjust + + ENDHLSL + + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Shader/RapidOldTVVignetteV2.shader.meta b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Shader/RapidOldTVVignetteV2.shader.meta new file mode 100644 index 000000000..e4ee4ed7d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Shader/RapidOldTVVignetteV2.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: edabfde6da796eb4891b0231d09590f7 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidVignette.meta b/Assets/X-PostProcessing/Effects/RapidVignette.meta new file mode 100644 index 000000000..cde4571b5 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignette.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 134bef9b00b6a8f4fb015ed8eaef0771 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidVignette/Editor.meta b/Assets/X-PostProcessing/Effects/RapidVignette/Editor.meta new file mode 100644 index 000000000..76e2dbb7e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignette/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86bcc55eef39d1544bd172308495afb9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidVignette/Editor/RapidVignetteEditor.cs b/Assets/X-PostProcessing/Effects/RapidVignette/Editor/RapidVignetteEditor.cs new file mode 100644 index 000000000..4d3d9e5fe --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignette/Editor/RapidVignetteEditor.cs @@ -0,0 +1,59 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(RapidVignette))] + public sealed class RapidVignetteEditor : PostProcessEffectEditor + { + + SerializedParameterOverride vignetteType; + SerializedParameterOverride vignetteIndensity; + SerializedParameterOverride vignetteCenter; + SerializedParameterOverride vignetteColor; + + + + public override void OnEnable() + { + vignetteType = FindParameterOverride(x => x.vignetteType); + vignetteIndensity = FindParameterOverride(x => x.vignetteIndensity); + vignetteCenter = FindParameterOverride(x => x.vignetteCenter); + vignetteColor = FindParameterOverride(x => x.vignetteColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + + PropertyField(vignetteType); + PropertyField(vignetteIndensity); + PropertyField(vignetteCenter); + if (vignetteType.value.enumValueIndex == 1) + { + PropertyField(vignetteColor); + } + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/RapidVignette/Editor/RapidVignetteEditor.cs.meta b/Assets/X-PostProcessing/Effects/RapidVignette/Editor/RapidVignetteEditor.cs.meta new file mode 100644 index 000000000..938ae6107 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignette/Editor/RapidVignetteEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1675f5210afe2a44ab7c3c92b90ec83f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidVignette/README.md b/Assets/X-PostProcessing/Effects/RapidVignette/README.md new file mode 100644 index 000000000..8a22c8d5b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignette/README.md @@ -0,0 +1,16 @@ + +# RapidVignette + +## Source Code List +- [Shader Code](Shader/RapidVignette.shader) +- [C# Code](RapidVignette.cs) +- [Editor Code](Editor/RapidVignetteEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/RapidVignette/RapidVignetteProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/RapidVignette/RapidVignette.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/RapidVignette/RapidVignette.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/RapidVignette/README.md.meta b/Assets/X-PostProcessing/Effects/RapidVignette/README.md.meta new file mode 100644 index 000000000..54b84bcb9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignette/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c66b962bf62fb8546afa888ec9987845 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidVignette/RapidVignette.cs b/Assets/X-PostProcessing/Effects/RapidVignette/RapidVignette.cs new file mode 100644 index 000000000..2b52865ff --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignette/RapidVignette.cs @@ -0,0 +1,82 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + public enum VignetteType + { + ClassicMode = 0, + ColorMode = 1, + } + + [Serializable] + public sealed class VignetteTypeParameter : ParameterOverride { } + + + + [Serializable] + [PostProcess(typeof(RapidVignetteRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Vignette/RapidVignette")] + public class RapidVignette : PostProcessEffectSettings + { + public VignetteTypeParameter vignetteType = new VignetteTypeParameter { value = VignetteType.ClassicMode }; + + [Range(0.0f, 5.0f)] + public FloatParameter vignetteIndensity = new FloatParameter { value = 1f }; + + public Vector2Parameter vignetteCenter = new Vector2Parameter { value = new Vector2(0.5f, 0.5f) }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter vignetteColor = new ColorParameter { value = new Color(0.1f, 0.8f, 1.0f) }; + } + + public sealed class RapidVignetteRenderer : PostProcessEffectRenderer + { + private Shader shader; + + private const string PROFILER_TAG = "X-RapidVignette"; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/RapidVignette"); + } + + public override void Release() + { + base.Release(); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetFloat("_VignetteIndensity", settings.vignetteIndensity); + sheet.properties.SetVector("_VignetteCenter", settings.vignetteCenter); + + if (settings.vignetteType.value == VignetteType.ColorMode) + { + sheet.properties.SetColor("_VignetteColor", settings.vignetteColor); + } + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.vignetteType.value); + cmd.EndSample(PROFILER_TAG); + + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/RapidVignette/RapidVignette.cs.meta b/Assets/X-PostProcessing/Effects/RapidVignette/RapidVignette.cs.meta new file mode 100644 index 000000000..fcc1ebaa5 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignette/RapidVignette.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2b24348132ef15346be9ae6f5fe6e94e +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidVignette/Shader.meta b/Assets/X-PostProcessing/Effects/RapidVignette/Shader.meta new file mode 100644 index 000000000..52a12387f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignette/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 682097f7a37c9d74eab25dcbb1647977 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidVignette/Shader/RapidVignette.shader b/Assets/X-PostProcessing/Effects/RapidVignette/Shader/RapidVignette.shader new file mode 100644 index 000000000..ee3c394f1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignette/Shader/RapidVignette.shader @@ -0,0 +1,97 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/RapidVignette" +{ + + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + struct VertexOutput + { + float4 vertex: SV_POSITION; + float4 texcoord: TEXCOORD0; + }; + + half _VignetteIndensity; + half2 _VignetteCenter; + half4 _VignetteColor; + + + VertexOutput Vert(AttributesDefault v) + { + VertexOutput o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord.xy = TransformTriangleVertexToUV(v.vertex.xy); + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord.xy = o.texcoord.xy * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + + // uv [0, 1] ->[-0.5, 0.5] + o.texcoord.zw = o.texcoord.xy - _VignetteCenter; + + return o; + } + + float4 Frag(VertexOutput i): SV_Target + { + float4 finalColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord.xy); + + //求解vignette强度 + float vignetteIndensity = saturate(1.0 - dot(i.texcoord.zw, i.texcoord.zw) * _VignetteIndensity); + + return vignetteIndensity * finalColor; + } + + + float4 Frag_ColorAdjust(VertexOutput i): SV_Target + { + float4 finalColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord.xy); + + //求解vignette强度 + float vignetteIndensity = saturate(1.0 - dot(i.texcoord.zw, i.texcoord.zw) * _VignetteIndensity); + + //基于vignette强度,插值VignetteColor颜色和场景颜色 + finalColor.rgb = lerp(_VignetteColor.rgb, finalColor.rgb, vignetteIndensity); + + return half4(finalColor.rgb, _VignetteColor.a); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + Pass + { + HLSLPROGRAM + + #pragma vertex Vert + #pragma fragment Frag + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex Vert + #pragma fragment Frag_ColorAdjust + ENDHLSL + + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/RapidVignette/Shader/RapidVignette.shader.meta b/Assets/X-PostProcessing/Effects/RapidVignette/Shader/RapidVignette.shader.meta new file mode 100644 index 000000000..7a26967a2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignette/Shader/RapidVignette.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cdc1050498183344cb753ab4d67a789d +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidVignetteV2.meta b/Assets/X-PostProcessing/Effects/RapidVignetteV2.meta new file mode 100644 index 000000000..8023a0cf4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignetteV2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c25408169bf94cc4487a6e2d4caf34a4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidVignetteV2/Editor.meta b/Assets/X-PostProcessing/Effects/RapidVignetteV2/Editor.meta new file mode 100644 index 000000000..c592fcda3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignetteV2/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c5cf0aecd74c24a479f5df13ee208720 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidVignetteV2/Editor/RapidVignetteV2Editor.cs b/Assets/X-PostProcessing/Effects/RapidVignetteV2/Editor/RapidVignetteV2Editor.cs new file mode 100644 index 000000000..d2c97e94c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignetteV2/Editor/RapidVignetteV2Editor.cs @@ -0,0 +1,52 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(RapidVignetteV2))] + public sealed class RapidVignetteV2Editor : PostProcessEffectEditor + { + + SerializedParameterOverride vignetteType; + SerializedParameterOverride vignetteIndensity; + SerializedParameterOverride vignetteSharpness; + SerializedParameterOverride vignetteCenter; + SerializedParameterOverride vignetteColor; + + public override void OnEnable() + { + vignetteType = FindParameterOverride(x => x.vignetteType); + vignetteIndensity = FindParameterOverride(x => x.vignetteIndensity); + vignetteSharpness = FindParameterOverride(x => x.vignetteSharpness); + vignetteCenter = FindParameterOverride(x => x.vignetteCenter); + vignetteColor = FindParameterOverride(x => x.vignetteColor); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + + PropertyField(vignetteType); + PropertyField(vignetteIndensity); + PropertyField(vignetteSharpness); + PropertyField(vignetteCenter); + + if (vignetteType.value.enumValueIndex == 1) + { + PropertyField(vignetteColor); + } + + + } + + } +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/RapidVignetteV2/Editor/RapidVignetteV2Editor.cs.meta b/Assets/X-PostProcessing/Effects/RapidVignetteV2/Editor/RapidVignetteV2Editor.cs.meta new file mode 100644 index 000000000..fa6bccb30 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignetteV2/Editor/RapidVignetteV2Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b96371ea701576b4abfa247cae48db78 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidVignetteV2/README.md b/Assets/X-PostProcessing/Effects/RapidVignetteV2/README.md new file mode 100644 index 000000000..f8dd0413d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignetteV2/README.md @@ -0,0 +1,16 @@ + +# RapidVignetteV2 + +## Source Code List +- [Shader Code](Shader/RapidVignetteV2.shader) +- [C# Code](RapidVignetteV2.cs) +- [Editor Code](Editor/RapidVignetteV2Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/RapidVignetteV2/RapidVignetteV2Property.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/RapidVignetteV2/RapidVignetteV2.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Vignette/RapidVignetteV2/RapidVignetteV2.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/RapidVignetteV2/README.md.meta b/Assets/X-PostProcessing/Effects/RapidVignetteV2/README.md.meta new file mode 100644 index 000000000..d3ad67849 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignetteV2/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: db25e92966848b44bbce2c21bb85bd3e +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidVignetteV2/RapidVignetteV2.cs b/Assets/X-PostProcessing/Effects/RapidVignetteV2/RapidVignetteV2.cs new file mode 100644 index 000000000..767bdd659 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignetteV2/RapidVignetteV2.cs @@ -0,0 +1,77 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; +using XPostProcessing; + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(RapidVignetteV2Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/Vignette/RapidVignetteV2")] + public class RapidVignetteV2 : PostProcessEffectSettings + { + + public VignetteTypeParameter vignetteType = new VignetteTypeParameter { value = VignetteType.ClassicMode }; + + [Range(0.0f, 5.0f)] + public FloatParameter vignetteIndensity = new FloatParameter { value = 0.2f }; + + [Range(-1f, 1f)] + public FloatParameter vignetteSharpness = new FloatParameter { value = 0.1f }; + + public Vector2Parameter vignetteCenter = new Vector2Parameter { value = new Vector2(0.5f, 0.5f) }; + + [ColorUsageAttribute(true, true, 0f, 20f, 0.125f, 3f)] + public ColorParameter vignetteColor = new ColorParameter { value = new Color(0.1f, 0.8f, 1.0f) }; + + + public GradientParameter grident1 = new GradientParameter { value = null }; + + } + + public sealed class RapidVignetteV2Renderer : PostProcessEffectRenderer + { + private Shader shader; + private const string PROFILER_TAG = "X-RapidVignetteV2"; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/RapidVignetteV2"); + } + + public override void Release() + { + base.Release(); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetFloat("_VignetteIndensity", settings.vignetteIndensity); + sheet.properties.SetFloat("_VignetteSharpness", settings.vignetteSharpness); + sheet.properties.SetVector("_VignetteCenter", settings.vignetteCenter); + if (settings.vignetteType.value == VignetteType.ColorMode) + { + sheet.properties.SetColor("_VignetteColor", settings.vignetteColor); + } + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.vignetteType.value); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/RapidVignetteV2/RapidVignetteV2.cs.meta b/Assets/X-PostProcessing/Effects/RapidVignetteV2/RapidVignetteV2.cs.meta new file mode 100644 index 000000000..dce23a6e3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignetteV2/RapidVignetteV2.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 8b11b76e24651ad49a03923536ac0a3b +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidVignetteV2/Shader.meta b/Assets/X-PostProcessing/Effects/RapidVignetteV2/Shader.meta new file mode 100644 index 000000000..c69d302a3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignetteV2/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8adf39993e333794595cf34e6e21af7d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/RapidVignetteV2/Shader/RapidVignetteV2.shader b/Assets/X-PostProcessing/Effects/RapidVignetteV2/Shader/RapidVignetteV2.shader new file mode 100644 index 000000000..9abcf07dd --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignetteV2/Shader/RapidVignetteV2.shader @@ -0,0 +1,85 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/RapidVignetteV2" +{ + + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + struct VertexOutput + { + float4 vertex: SV_POSITION; + float4 texcoord: TEXCOORD0; + }; + + half _VignetteIndensity; + half _VignetteSharpness; + half2 _VignetteCenter; + half4 _VignetteColor; + + + float4 Frag(VertexOutput i): SV_Target + { + + float4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord.xy); + + half indensity = distance(i.texcoord.xy, _VignetteCenter.xy); + indensity = smoothstep(0.8, _VignetteSharpness * 0.799, indensity * (_VignetteIndensity + _VignetteSharpness)); + return sceneColor * indensity; + } + + + float4 Frag_ColorAdjust(VertexOutput i): SV_Target + { + + float4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord.xy); + + half indensity = distance(i.texcoord.xy, _VignetteCenter.xy); + indensity = smoothstep(0.8, _VignetteSharpness * 0.799, indensity * (_VignetteIndensity + _VignetteSharpness)); + + half3 finalColor = lerp(_VignetteColor.rgb, sceneColor.rgb, indensity); + + return float4(finalColor.rgb, _VignetteColor.a); + + } + + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag_ColorAdjust + + ENDHLSL + + } + } +} diff --git a/Assets/X-PostProcessing/Effects/RapidVignetteV2/Shader/RapidVignetteV2.shader.meta b/Assets/X-PostProcessing/Effects/RapidVignetteV2/Shader/RapidVignetteV2.shader.meta new file mode 100644 index 000000000..3f8b2fd9b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/RapidVignetteV2/Shader/RapidVignetteV2.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 052086f9d833d2f499c27cf7f9fcdb3a +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV1.meta b/Assets/X-PostProcessing/Effects/SharpenV1.meta new file mode 100644 index 000000000..1a7fa642c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86c222e65e3e5d54fa30bf80304dd1fb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV1/Editor.meta b/Assets/X-PostProcessing/Effects/SharpenV1/Editor.meta new file mode 100644 index 000000000..f2840d72d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV1/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5c4451d569f395444a107ceba42407c6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV1/Editor/SharpenV1Editor.cs b/Assets/X-PostProcessing/Effects/SharpenV1/Editor/SharpenV1Editor.cs new file mode 100644 index 000000000..feea2d27d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV1/Editor/SharpenV1Editor.cs @@ -0,0 +1,48 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(SharpenV1))] + public sealed class SharpenV1Editor : PostProcessEffectEditor + { + + SerializedParameterOverride Strength; + SerializedParameterOverride Threshold; + + + public override void OnEnable() + { + Strength = FindParameterOverride(x => x.Strength); + Threshold = FindParameterOverride(x => x.Threshold); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(Strength); + PropertyField(Threshold); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/SharpenV1/Editor/SharpenV1Editor.cs.meta b/Assets/X-PostProcessing/Effects/SharpenV1/Editor/SharpenV1Editor.cs.meta new file mode 100644 index 000000000..cdcf06e77 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV1/Editor/SharpenV1Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 78f28227c00d3e440a3ff59c534cbfe8 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV1/README.md b/Assets/X-PostProcessing/Effects/SharpenV1/README.md new file mode 100644 index 000000000..c0d73f175 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV1/README.md @@ -0,0 +1,16 @@ + +# SharpenV1 + +## Source Code List +- [Shader Code](Shader/SharpenV1.shader) +- [C# Code](SharpenV1.cs) +- [Editor Code](Editor/SharpenV1Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ImageProcessing/SharpenV1/SharpenV1Property.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ImageProcessing/SharpenV1/SharpenV1.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ImageProcessing/SharpenV1/SharpenV1.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/SharpenV1/README.md.meta b/Assets/X-PostProcessing/Effects/SharpenV1/README.md.meta new file mode 100644 index 000000000..601c20db7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV1/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5468c2d6d39d5a5448e0a6e8ac634026 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV1/Shader.meta b/Assets/X-PostProcessing/Effects/SharpenV1/Shader.meta new file mode 100644 index 000000000..b8c7a1afe --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV1/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e2c6dd33dc4222f40958da71a7f16074 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV1/Shader/SharpenV1.shader b/Assets/X-PostProcessing/Effects/SharpenV1/Shader/SharpenV1.shader new file mode 100644 index 000000000..5d228ab8f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV1/Shader/SharpenV1.shader @@ -0,0 +1,61 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/SharpenV1" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half _Strength; + uniform half _Threshold; + + half4 Frag(VaryingsDefault i): SV_Target + { + + half2 pixelSize = float2(1 / _ScreenParams.x, 1 / _ScreenParams.y); + half2 halfPixelSize = pixelSize * 0.5; + + half4 blur = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + half2(halfPixelSize.x, -pixelSize.y)); + blur += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + half2(-pixelSize.x, -halfPixelSize.y)); + blur += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + half2(pixelSize.x, halfPixelSize.y)); + blur += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + half2(-halfPixelSize.x, pixelSize.y)); + blur *= 0.25; + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + half4 lumaStrength = half4(0.222, 0.707, 0.071, 0.0) * _Strength; + half4 sharp = sceneColor - blur; + + sceneColor += clamp(dot(sharp, lumaStrength), -_Threshold, _Threshold); + + return sceneColor; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/SharpenV1/Shader/SharpenV1.shader.meta b/Assets/X-PostProcessing/Effects/SharpenV1/Shader/SharpenV1.shader.meta new file mode 100644 index 000000000..56d891756 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV1/Shader/SharpenV1.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8b4c7ede900f2c643a25255204e2f9ab +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV1/SharpenV1.cs b/Assets/X-PostProcessing/Effects/SharpenV1/SharpenV1.cs new file mode 100644 index 000000000..0de6a9651 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV1/SharpenV1.cs @@ -0,0 +1,67 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(SharpenV1Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/ImageProcessing/SharpenV1")] + public class SharpenV1 : PostProcessEffectSettings + { + + [Range(0.0f, 5.0f)] + public FloatParameter Strength = new FloatParameter { value = 0.5f }; + + [Range(0.0f, 1.0f)] + public FloatParameter Threshold = new FloatParameter { value = 0.1f }; + } + + public sealed class SharpenV1Renderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-SharpenV1"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/SharpenV1"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Strength = Shader.PropertyToID("_Strength"); + internal static readonly int Threshold = Shader.PropertyToID("_Threshold"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetFloat(ShaderIDs.Strength, settings.Strength); + sheet.properties.SetFloat(ShaderIDs.Threshold, settings.Threshold); + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/SharpenV1/SharpenV1.cs.meta b/Assets/X-PostProcessing/Effects/SharpenV1/SharpenV1.cs.meta new file mode 100644 index 000000000..8440033c7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV1/SharpenV1.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 40377b0e5485242428bcad064971c398 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV2.meta b/Assets/X-PostProcessing/Effects/SharpenV2.meta new file mode 100644 index 000000000..2c03f001e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2f3ab52d3d62b43448fcab32ca5bd32a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV2/Editor.meta b/Assets/X-PostProcessing/Effects/SharpenV2/Editor.meta new file mode 100644 index 000000000..b6a6787f3 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV2/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5442da4251e538745b87b19b78d8556f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV2/Editor/SharpenV2Editor.cs b/Assets/X-PostProcessing/Effects/SharpenV2/Editor/SharpenV2Editor.cs new file mode 100644 index 000000000..846a1031c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV2/Editor/SharpenV2Editor.cs @@ -0,0 +1,45 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(SharpenV2))] + public sealed class SharpenV2Editor : PostProcessEffectEditor + { + + SerializedParameterOverride Sharpness; + + + public override void OnEnable() + { + Sharpness = FindParameterOverride(x => x.Sharpness); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(Sharpness); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/SharpenV2/Editor/SharpenV2Editor.cs.meta b/Assets/X-PostProcessing/Effects/SharpenV2/Editor/SharpenV2Editor.cs.meta new file mode 100644 index 000000000..a0cc7eb5a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV2/Editor/SharpenV2Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2ec3a8fa5714d0a488b8d29f54a38ea5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV2/README.md b/Assets/X-PostProcessing/Effects/SharpenV2/README.md new file mode 100644 index 000000000..533c28d8f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV2/README.md @@ -0,0 +1,17 @@ + +# SharpenV2 + +## Source Code List +- [Shader Code](Shader/SharpenV2.shader) +- [C# Code](SharpenV2.cs) +- [Editor Code](Editor/SharpenV2Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ImageProcessing/SharpenV2/SharpenV2Property.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ImageProcessing/SharpenV2/SharpenV2.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ImageProcessing/SharpenV2/SharpenV2.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/SharpenV2/README.md.meta b/Assets/X-PostProcessing/Effects/SharpenV2/README.md.meta new file mode 100644 index 000000000..587f5189c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV2/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e6eee732ee144ee43bfdedc7a074c2e2 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV2/Shader.meta b/Assets/X-PostProcessing/Effects/SharpenV2/Shader.meta new file mode 100644 index 000000000..758361bc2 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV2/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8c4d3c77699e7e54d81561bcf7edd913 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV2/Shader/SharpenV2.shader b/Assets/X-PostProcessing/Effects/SharpenV2/Shader/SharpenV2.shader new file mode 100644 index 000000000..c225ac9ac --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV2/Shader/SharpenV2.shader @@ -0,0 +1,57 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/SharpenV2" +{ + HLSLINCLUDE + +#include "../../../Shaders/StdLib.hlsl" +#include "../../../Shaders/XPostProcessing.hlsl" + + uniform half _Sharpness; + + half4 Frag(VaryingsDefault i) : SV_Target + { + + half2 pixelSize = float2(1 / _ScreenParams.x, 1 / _ScreenParams.y); + pixelSize *= 1.5f; + + half4 blur = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + half2(pixelSize.x, -pixelSize.y)); + blur += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + half2(-pixelSize.x, -pixelSize.y)); + blur += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + half2(pixelSize.x, pixelSize.y)); + blur += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + half2(-pixelSize.x, pixelSize.y)); + blur *= 0.25; + + + half4 sceneColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + return sceneColor + (sceneColor - blur) * _Sharpness; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/SharpenV2/Shader/SharpenV2.shader.meta b/Assets/X-PostProcessing/Effects/SharpenV2/Shader/SharpenV2.shader.meta new file mode 100644 index 000000000..c097ecf99 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV2/Shader/SharpenV2.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 95e6c3c3a5644ac46b8d554509c764b4 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV2/SharpenV2.cs b/Assets/X-PostProcessing/Effects/SharpenV2/SharpenV2.cs new file mode 100644 index 000000000..d11db95cd --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV2/SharpenV2.cs @@ -0,0 +1,61 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(SharpenV2Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/ImageProcessing/SharpenV2")] + public class SharpenV2 : PostProcessEffectSettings + { + [Range(0.0f, 5.0f)] + public FloatParameter Sharpness = new FloatParameter { value = 0.5f }; + } + + public sealed class SharpenV2Renderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-SharpenV2"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/SharpenV2"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Sharpness = Shader.PropertyToID("_Sharpness"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetFloat(ShaderIDs.Sharpness, settings.Sharpness); + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/SharpenV2/SharpenV2.cs.meta b/Assets/X-PostProcessing/Effects/SharpenV2/SharpenV2.cs.meta new file mode 100644 index 000000000..fa4663628 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV2/SharpenV2.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 471bd7104cd971b4eb9df5b8d743ee55 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV3.meta b/Assets/X-PostProcessing/Effects/SharpenV3.meta new file mode 100644 index 000000000..93d547b6d --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV3.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 688c85f19b3a76b41b8aaa284eb2ddc8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV3/Editor.meta b/Assets/X-PostProcessing/Effects/SharpenV3/Editor.meta new file mode 100644 index 000000000..a9b29309f --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV3/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ffb253379595e384781c891d9f0baa99 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV3/Editor/SharpenV3Editor.cs b/Assets/X-PostProcessing/Effects/SharpenV3/Editor/SharpenV3Editor.cs new file mode 100644 index 000000000..bdd9799c4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV3/Editor/SharpenV3Editor.cs @@ -0,0 +1,43 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(SharpenV3))] + public sealed class SharpenV3Editor : PostProcessEffectEditor + { + SerializedParameterOverride Sharpness; + + public override void OnEnable() + { + Sharpness = FindParameterOverride(x => x.Sharpness); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(Sharpness); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/SharpenV3/Editor/SharpenV3Editor.cs.meta b/Assets/X-PostProcessing/Effects/SharpenV3/Editor/SharpenV3Editor.cs.meta new file mode 100644 index 000000000..babe2eccd --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV3/Editor/SharpenV3Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 5b0dfca0de73ab8488cf5019730b7521 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV3/README.md b/Assets/X-PostProcessing/Effects/SharpenV3/README.md new file mode 100644 index 000000000..91819faae --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV3/README.md @@ -0,0 +1,17 @@ + +# SharpenV3 + +## Source Code List +- [Shader Code](Shader/SharpenV3.shader) +- [C# Code](SharpenV3.cs) +- [Editor Code](Editor/SharpenV3Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ImageProcessing/SharpenV3/SharpenV3Property.png) + +## Gallery + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ImageProcessing/SharpenV3/SharpenV3.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/ImageProcessing/SharpenV3/SharpenV3.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/SharpenV3/README.md.meta b/Assets/X-PostProcessing/Effects/SharpenV3/README.md.meta new file mode 100644 index 000000000..f7902e53b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV3/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 06934f605f524624889de016f1fb8dfd +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV3/Shader.meta b/Assets/X-PostProcessing/Effects/SharpenV3/Shader.meta new file mode 100644 index 000000000..900acdca5 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV3/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e415efd0c08721945af76d2226af4c80 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV3/Shader/SharpenV3.shader b/Assets/X-PostProcessing/Effects/SharpenV3/Shader/SharpenV3.shader new file mode 100644 index 000000000..e50604fcc --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV3/Shader/SharpenV3.shader @@ -0,0 +1,73 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/SharpenV3" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + uniform half _CentralFactor; + uniform half _SideFactor; + + + + struct VertexOutput + { + float4 vertex: SV_POSITION; + float2 texcoord: TEXCOORD0; + float4 texcoord1 : TEXCOORD1; + }; + + VertexOutput Vert(AttributesDefault v) + { + VertexOutput o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); +#if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); +#endif + o.texcoord1 = half4(o.texcoord.xy - _MainTex_TexelSize.xy, o.texcoord.xy + _MainTex_TexelSize.xy); + return o; + } + + half4 Frag(VertexOutput i): SV_Target + { + //return i.texcoord1; + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord.xy) * _CentralFactor; + color -= SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord1.xy) * _SideFactor; + color -= SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord1.xw) * _SideFactor; + color -= SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord1.zy) * _SideFactor; + color -= SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord1.zw) * _SideFactor; + return color; + } + + ENDHLSL + + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex Vert + #pragma fragment Frag + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/SharpenV3/Shader/SharpenV3.shader.meta b/Assets/X-PostProcessing/Effects/SharpenV3/Shader/SharpenV3.shader.meta new file mode 100644 index 000000000..adc3d3683 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV3/Shader/SharpenV3.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 501f8c1b513cdea428a231ca09307a32 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/SharpenV3/SharpenV3.cs b/Assets/X-PostProcessing/Effects/SharpenV3/SharpenV3.cs new file mode 100644 index 000000000..353159ce7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV3/SharpenV3.cs @@ -0,0 +1,65 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(SharpenV3Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/ImageProcessing/SharpenV3")] + public class SharpenV3 : PostProcessEffectSettings + { + + [Range(0.0f, 1.0f)] + public FloatParameter Sharpness = new FloatParameter { value = 0.5f }; + } + + public sealed class SharpenV3Renderer : PostProcessEffectRenderer + { + private const string PROFILER_TAG = "X-SharpenV3"; + private Shader shader; + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/SharpenV3"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int CentralFactor = Shader.PropertyToID("_CentralFactor"); + internal static readonly int SideFactor = Shader.PropertyToID("_SideFactor"); + + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetFloat(ShaderIDs.CentralFactor, 1.0f + (3.2f * settings.Sharpness)); + sheet.properties.SetFloat(ShaderIDs.SideFactor, 0.8f * settings.Sharpness); + + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/SharpenV3/SharpenV3.cs.meta b/Assets/X-PostProcessing/Effects/SharpenV3/SharpenV3.cs.meta new file mode 100644 index 000000000..f59b6901a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/SharpenV3/SharpenV3.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: a9dc0db68416a99418435d1319447270 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TentBlur.meta b/Assets/X-PostProcessing/Effects/TentBlur.meta new file mode 100644 index 000000000..93199a046 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TentBlur.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 02597cbef37fa144a9578ec1a892857d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TentBlur/Editor.meta b/Assets/X-PostProcessing/Effects/TentBlur/Editor.meta new file mode 100644 index 000000000..644a19d10 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TentBlur/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f84efda9562636149b15d9c85da43c08 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TentBlur/Editor/TentBlurEditor.cs b/Assets/X-PostProcessing/Effects/TentBlur/Editor/TentBlurEditor.cs new file mode 100644 index 000000000..36a160f95 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TentBlur/Editor/TentBlurEditor.cs @@ -0,0 +1,48 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(TentBlur))] + public sealed class TentBlurEditor : PostProcessEffectEditor + { + SerializedParameterOverride BlurRadius; + SerializedParameterOverride Iteration; + SerializedParameterOverride RTDownScaling; + public override void OnEnable() + { + BlurRadius = FindParameterOverride(x => x.BlurRadius); + Iteration = FindParameterOverride(x => x.Iteration); + RTDownScaling = FindParameterOverride(x => x.RTDownScaling); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(BlurRadius); + PropertyField(Iteration); + PropertyField(RTDownScaling); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/TentBlur/Editor/TentBlurEditor.cs.meta b/Assets/X-PostProcessing/Effects/TentBlur/Editor/TentBlurEditor.cs.meta new file mode 100644 index 000000000..7eff1876a --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TentBlur/Editor/TentBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e92712e6c20cead43bc529c6b26a2824 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TentBlur/README.md b/Assets/X-PostProcessing/Effects/TentBlur/README.md new file mode 100644 index 000000000..d2bd42002 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TentBlur/README.md @@ -0,0 +1,16 @@ + +# Tent Blur + +## Source Code List +- [Shader Code](Shader/TentBlur.shader) +- [C# Code](TentBlur.cs) +- [Editor Code](Editor/TentBlurEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/TentBlur/TentBlurProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/TentBlur/TentBlur.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/TentBlur/TentBlur.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/TentBlur/README.md.meta b/Assets/X-PostProcessing/Effects/TentBlur/README.md.meta new file mode 100644 index 000000000..6bfd1fa81 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TentBlur/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2462a39bea42ee949a0229e0d3f269bb +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TentBlur/Shader.meta b/Assets/X-PostProcessing/Effects/TentBlur/Shader.meta new file mode 100644 index 000000000..821fa023c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TentBlur/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3ac199d5ba44fd248a82aab22a3f155e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TentBlur/Shader/TentBlur.shader b/Assets/X-PostProcessing/Effects/TentBlur/Shader/TentBlur.shader new file mode 100644 index 000000000..da0eb81d0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TentBlur/Shader/TentBlur.shader @@ -0,0 +1,79 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +Shader "Hidden/X-PostProcessing/TentBlur" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + half4 _BlurOffset; + + // 9-tap tent filter + half4 TentFilter_9Tap(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize) + { + float4 d = texelSize.xyxy * float4(1.0, 1.0, -1.0, 0.0); + + half4 s; + s = SAMPLE_TEXTURE2D(tex, samplerTex, uv - d.xy); + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv - d.wy) * 2.0; // 1 MAD + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv - d.zy); // 1 MAD + + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.zw) * 2.0; // 1 MAD + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv) * 4.0; // 1 MAD + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.xw) * 2.0; // 1 MAD + + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.zy); + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.wy) * 2.0; // 1 MAD + s += SAMPLE_TEXTURE2D(tex, samplerTex, uv + d.xy); + + return s * (1.0 / 16.0); + } + + float4 FragTentBlur(VaryingsDefault i): SV_Target + { + return TentFilter_9Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, _BlurOffset.xy).rgba; + } + + float4 FragCombine(VaryingsDefault i): SV_Target + { + return SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragTentBlur + + ENDHLSL + + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragCombine + + ENDHLSL + + } + } +} diff --git a/Assets/X-PostProcessing/Effects/TentBlur/Shader/TentBlur.shader.meta b/Assets/X-PostProcessing/Effects/TentBlur/Shader/TentBlur.shader.meta new file mode 100644 index 000000000..36115d9c7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TentBlur/Shader/TentBlur.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1689a2496e4dbc741b2a4ca7b9222904 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TentBlur/TentBlur.cs b/Assets/X-PostProcessing/Effects/TentBlur/TentBlur.cs new file mode 100644 index 000000000..3c308814b --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TentBlur/TentBlur.cs @@ -0,0 +1,102 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(TentBlurRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/TentBlur")] + public class TentBlur : PostProcessEffectSettings + { + [Range(0f, 5f)] + public FloatParameter BlurRadius = new FloatParameter { value = 3f }; + + [Range(1, 20)] + public IntParameter Iteration = new IntParameter { value = 6 }; + + [Range(1, 8)] + public FloatParameter RTDownScaling = new FloatParameter { value = 2 }; + } + + public sealed class TentBlurRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-TentBlur"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/TentBlur"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int BlurRadius = Shader.PropertyToID("_BlurOffset"); + internal static readonly int BufferRT1 = Shader.PropertyToID("_BufferRT1"); + internal static readonly int BufferRT2 = Shader.PropertyToID("_BufferRT2"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + + cmd.BeginSample(PROFILER_TAG); + + int RTWidth = (int)(context.screenWidth / settings.RTDownScaling); + int RTHeight = (int)(context.screenHeight / settings.RTDownScaling); + cmd.GetTemporaryRT(ShaderIDs.BufferRT1, RTWidth, RTHeight, 0, FilterMode.Bilinear); + cmd.GetTemporaryRT(ShaderIDs.BufferRT2, RTWidth, RTHeight, 0, FilterMode.Bilinear); + + // downsample screen copy into smaller RT + context.command.BlitFullscreenTriangle(context.source, ShaderIDs.BufferRT1); + + + for (int i = 0; i < settings.Iteration; i++) + { + if (settings.Iteration > 20) + { + return; + } + + Vector4 BlurRadius = new Vector4(settings.BlurRadius / (float)context.screenWidth, settings.BlurRadius / (float)context.screenHeight, 0, 0); + // RT1 -> RT2 + sheet.properties.SetVector(ShaderIDs.BlurRadius, BlurRadius); + context.command.BlitFullscreenTriangle(ShaderIDs.BufferRT1, ShaderIDs.BufferRT2, sheet, 0); + + // RT2 -> RT1 + sheet.properties.SetVector(ShaderIDs.BlurRadius, BlurRadius); + context.command.BlitFullscreenTriangle(ShaderIDs.BufferRT2, ShaderIDs.BufferRT1, sheet, 0); + } + + // Render blurred texture in blend pass + cmd.BlitFullscreenTriangle(ShaderIDs.BufferRT1, context.destination, sheet, 1); + + // release + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT1); + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT2); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/TentBlur/TentBlur.cs.meta b/Assets/X-PostProcessing/Effects/TentBlur/TentBlur.cs.meta new file mode 100644 index 000000000..099f1b3c4 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TentBlur/TentBlur.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 5e89c3a5557aa43488e157760907b0bb +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlur.meta b/Assets/X-PostProcessing/Effects/TiltShiftBlur.meta new file mode 100644 index 000000000..2958e73e0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlur.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 49221344c453b6941826396f27cd6044 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlur/Editor.meta b/Assets/X-PostProcessing/Effects/TiltShiftBlur/Editor.meta new file mode 100644 index 000000000..f7c326121 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlur/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 672b699c6ccd00f4080165dff0266208 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlur/Editor/TiltShiftBlurEditor.cs b/Assets/X-PostProcessing/Effects/TiltShiftBlur/Editor/TiltShiftBlurEditor.cs new file mode 100644 index 000000000..70a15ce4c --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlur/Editor/TiltShiftBlurEditor.cs @@ -0,0 +1,56 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(TiltShiftBlur))] + public sealed class TiltShiftBlurEditor : PostProcessEffectEditor + { + + SerializedParameterOverride QualityLevel; + SerializedParameterOverride AreaSize; + SerializedParameterOverride BlurRadius; + SerializedParameterOverride Iteration; + SerializedParameterOverride RTDownScaling; + + public override void OnEnable() + { + QualityLevel = FindParameterOverride(x => x.QualityLevel); + AreaSize = FindParameterOverride(x => x.AreaSize); + BlurRadius = FindParameterOverride(x => x.BlurRadius); + Iteration = FindParameterOverride(x => x.Iteration); + RTDownScaling = FindParameterOverride(x => x.RTDownScaling); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + PropertyField(QualityLevel); + PropertyField(AreaSize); + PropertyField(BlurRadius); + PropertyField(Iteration); + PropertyField(RTDownScaling); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlur/Editor/TiltShiftBlurEditor.cs.meta b/Assets/X-PostProcessing/Effects/TiltShiftBlur/Editor/TiltShiftBlurEditor.cs.meta new file mode 100644 index 000000000..6ceeddf00 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlur/Editor/TiltShiftBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: fe52d0816c078994f9bff957e1ef3e00 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlur/README.md b/Assets/X-PostProcessing/Effects/TiltShiftBlur/README.md new file mode 100644 index 000000000..ad9dd6bcb --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlur/README.md @@ -0,0 +1,16 @@ + +# Tilt Shift Blur + +## Source Code List +- [Shader Code](Shader/TiltShiftBlur.shader) +- [C# Code](TiltShiftBlur.cs) +- [Editor Code](Editor/TiltShiftBlurEditor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/TiltShiftBlur/TiltShiftBlurProperty.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/TiltShiftBlur/TiltShiftBlur.jpg) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/TiltShiftBlur/TiltShiftBlur.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlur/README.md.meta b/Assets/X-PostProcessing/Effects/TiltShiftBlur/README.md.meta new file mode 100644 index 000000000..fb9e16396 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlur/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 37172c5405042254c97aa264249bd82c +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlur/Shader.meta b/Assets/X-PostProcessing/Effects/TiltShiftBlur/Shader.meta new file mode 100644 index 000000000..953df554e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlur/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7b13b937934729a43acac475ee5d3187 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlur/Shader/TiltShiftBlur.shader b/Assets/X-PostProcessing/Effects/TiltShiftBlur/Shader/TiltShiftBlur.shader new file mode 100644 index 000000000..61ac506dc --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlur/Shader/TiltShiftBlur.shader @@ -0,0 +1,184 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +// reference 1 : https://www.shadertoy.com/view/4d2Xzw +// reference 2 : https://github.com/imclab/TiltShift + +Shader "Hidden/X-PostProcessing/TiltShiftBlur" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + TEXTURE2D_SAMPLER2D(_BlurredTex, sampler_BlurredTex); + + float4 _BlurredTex_TexelSize; + half2 _Params; + + #define _BlurSize _Params.x + #define _BlurRadius _Params.y + + + + static const int DiscKernelSampleNum_LQ = 12; + static const float2 DiscKernel_LQ[DiscKernelSampleNum_LQ] = + { + float2(-0.326212, -0.40581), + float2(-0.840144, -0.07358), + float2(-0.695914, 0.457137), + float2(-0.203345, 0.620716), + float2(0.96234, -0.194983), + float2(0.473434, -0.480026), + float2(0.519456, 0.767022), + float2(0.185461, -0.893124), + float2(0.507431, 0.064425), + float2(0.89642, 0.412458), + float2(-0.32194, -0.932615), + float2(-0.791559, -0.59771) + }; + + static const int DiscKernelSampleNum_HQ = 28; + static const float3 DiscKernel_HQ[DiscKernelSampleNum_HQ] = + { + float3(0.62463, 0.54337, 0.82790), + float3(-0.13414, -0.94488, 0.95435), + float3(0.38772, -0.43475, 0.58253), + float3(0.12126, -0.19282, 0.22778), + float3(-0.20388, 0.11133, 0.23230), + float3(0.83114, -0.29218, 0.88100), + float3(0.10759, -0.57839, 0.58831), + float3(0.28285, 0.79036, 0.83945), + float3(-0.36622, 0.39516, 0.53876), + float3(0.75591, 0.21916, 0.78704), + float3(-0.52610, 0.02386, 0.52664), + float3(-0.88216, -0.24471, 0.91547), + float3(-0.48888, -0.29330, 0.57011), + float3(0.44014, -0.08558, 0.44838), + float3(0.21179, 0.51373, 0.55567), + float3(0.05483, 0.95701, 0.95858), + float3(-0.59001, -0.70509, 0.91938), + float3(-0.80065, 0.24631, 0.83768), + float3(-0.19424, -0.18402, 0.26757), + float3(-0.43667, 0.76751, 0.88304), + float3(0.21666, 0.11602, 0.24577), + float3(0.15696, -0.85600, 0.87027), + float3(-0.75821, 0.58363, 0.95682), + float3(0.99284, -0.02904, 0.99327), + float3(-0.22234, -0.57907, 0.62029), + float3(0.55052, -0.66984, 0.86704), + float3(0.46431, 0.28115, 0.54280), + float3(-0.07214, 0.60554, 0.60982), + }; + + + float TiltShiftMask(float2 uv) + { + float centerY = uv.y * 2.0 - 1.0; + return(abs(centerY * _BlurSize * 0.001)); + } + + float4 FragTiltShiftLQ(VaryingsDefault i): SV_Target + { + float4 screenColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + float3 sum = screenColor.rgb; + + float mask = TiltShiftMask(i.texcoord.xy); + + float4 poissonScale = (_BlurRadius * 30) * mask; + + for (int l = 0; l < DiscKernelSampleNum_LQ; l ++) + { + float2 sampleUV = i.texcoord.xy + DiscKernel_LQ[l].xy * poissonScale.xy; + float3 sample0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, sampleUV.xy).rgb; + float3 sample1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, sampleUV.xy).rgb; + + sum += sample0 + sample1; + } + + return float4(sum.rgb / (1.0 + 2.0 * DiscKernelSampleNum_LQ), mask); + } + + float4 FragTiltShiftHQ(VaryingsDefault i): SV_Target + { + float4 screenColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + float3 sum = screenColor.rgb; + + float mask = TiltShiftMask(i.texcoord.xy); + float4 poissonScale = (_BlurRadius * 30) * mask; + + for (int l = 0; l < DiscKernelSampleNum_HQ; l ++) + { + float2 sampleUV = i.texcoord.xy + DiscKernel_HQ[l].xy * poissonScale.xy; + float3 sample0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, sampleUV.xy).rgb; + float3 sample1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, sampleUV.xy).rgb; + + sum += sample0 + sample1; + } + + return float4(sum.rgb / (1.0 + 2.0 * DiscKernelSampleNum_HQ), mask); + } + + float4 FragBlend(VaryingsDefault i): SV_Target + { + float4 screenColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + float4 blurredColor = SAMPLE_TEXTURE2D(_BlurredTex, sampler_BlurredTex, i.texcoord); + + float3 result = lerp(blurredColor.rgb, screenColor.rgb, saturate(blurredColor.a)); + + return float4(result.rgb, screenColor.a); + } + + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + //Pass 0 - Tilt Shift Blur High Quality + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragTiltShiftHQ + + ENDHLSL + + } + + //Pass 1 - Tilt Shift Blur Low Quality + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragTiltShiftLQ + + ENDHLSL + + } + + //Pass 2 - Blend + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragBlend + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlur/Shader/TiltShiftBlur.shader.meta b/Assets/X-PostProcessing/Effects/TiltShiftBlur/Shader/TiltShiftBlur.shader.meta new file mode 100644 index 000000000..04d8eb2fe --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlur/Shader/TiltShiftBlur.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7ab678d3b9335d8438f4a90f3e05f3c9 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlur/TiltShiftBlur.cs b/Assets/X-PostProcessing/Effects/TiltShiftBlur/TiltShiftBlur.cs new file mode 100644 index 000000000..ff220f83e --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlur/TiltShiftBlur.cs @@ -0,0 +1,160 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + public enum TiltShiftBlurQualityLevel + { + High_Quality = 0, + Normal_Quality = 1, + } + + [Serializable] + public sealed class TiltShiftBlurQualityLevelParameter : ParameterOverride { } + + [Serializable] + [PostProcess(typeof(TiltShiftBlurRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/TiltShiftBlur/TiltShiftBlurV1")] + public class TiltShiftBlur : PostProcessEffectSettings + { + public TiltShiftBlurQualityLevelParameter QualityLevel = new TiltShiftBlurQualityLevelParameter { value = TiltShiftBlurQualityLevel.High_Quality }; + + [Range(0.0f, 1.0f)] + public FloatParameter AreaSize = new FloatParameter { value = 0.5f }; + + [Range(0.0f, 1.0f)] + public FloatParameter BlurRadius = new FloatParameter { value = 1.0f }; + + [Range(1, 8)] + public IntParameter Iteration = new IntParameter { value = 2 }; + + [Range(1, 2)] + public FloatParameter RTDownScaling = new FloatParameter { value = 1.0f }; + } + + public sealed class TiltShiftBlurRenderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-TiltShiftBlur"; + private Shader shader; + + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/TiltShiftBlur"); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int BlurredTex = Shader.PropertyToID("_BlurredTex"); + internal static readonly int BufferRT1 = Shader.PropertyToID("_BufferRT1"); + internal static readonly int BufferRT2 = Shader.PropertyToID("_BufferRT2"); + } + + public override void Render(PostProcessRenderContext context) + { + + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + + if (settings.Iteration == 1) + { + HandleOneBlitBlur(context, cmd, sheet); + } + else + { + HandleMultipleIterationBlur(context, cmd, sheet, settings.Iteration); + } + + cmd.EndSample(PROFILER_TAG); + } + + + void HandleOneBlitBlur(PostProcessRenderContext context, CommandBuffer cmd, PropertySheet sheet) + { + if (context == null || cmd == null || sheet == null) + { + return; + } + + // Get RT + int RTWidth = (int)(context.screenWidth / settings.RTDownScaling); + int RTHeight = (int)(context.screenHeight / settings.RTDownScaling); + cmd.GetTemporaryRT(ShaderIDs.BufferRT1, RTWidth, RTHeight, 0, FilterMode.Bilinear); + + // Set Property + sheet.properties.SetVector(ShaderIDs.Params, new Vector2(settings.AreaSize, settings.BlurRadius)); + + // Do Blit + context.command.BlitFullscreenTriangle(context.source, ShaderIDs.BufferRT1, sheet, (int)settings.QualityLevel.value); + + // Final Blit + cmd.SetGlobalTexture(ShaderIDs.BlurredTex, ShaderIDs.BufferRT1); + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 2); + + // Release + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT1); + } + + + void HandleMultipleIterationBlur(PostProcessRenderContext context, CommandBuffer cmd, PropertySheet sheet, int Iteration) + { + if (context == null || cmd == null || sheet == null) + { + return; + } + + // Get RT + int RTWidth = (int)(context.screenWidth / settings.RTDownScaling); + int RTHeight = (int)(context.screenHeight / settings.RTDownScaling); + cmd.GetTemporaryRT(ShaderIDs.BufferRT1, RTWidth, RTHeight, 0, FilterMode.Bilinear); + cmd.GetTemporaryRT(ShaderIDs.BufferRT2, RTWidth, RTHeight, 0, FilterMode.Bilinear); + + // Set Property + sheet.properties.SetVector(ShaderIDs.Params, new Vector2(settings.AreaSize, settings.BlurRadius)); + + RenderTargetIdentifier finalBlurID = ShaderIDs.BufferRT1; + RenderTargetIdentifier firstID = context.source; + RenderTargetIdentifier secondID = ShaderIDs.BufferRT1; + for (int i = 0; i < Iteration; i++) + { + // Do Blit + context.command.BlitFullscreenTriangle(firstID, secondID, sheet, (int)settings.QualityLevel.value); + + finalBlurID = secondID; + firstID = secondID; + secondID = (secondID == ShaderIDs.BufferRT1) ? ShaderIDs.BufferRT2 : ShaderIDs.BufferRT1; + } + + // Final Blit + cmd.SetGlobalTexture(ShaderIDs.BlurredTex, finalBlurID); + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 2); + + // Release + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT1); + cmd.ReleaseTemporaryRT(ShaderIDs.BufferRT2); + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlur/TiltShiftBlur.cs.meta b/Assets/X-PostProcessing/Effects/TiltShiftBlur/TiltShiftBlur.cs.meta new file mode 100644 index 000000000..f8c8bb935 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlur/TiltShiftBlur.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: fe9969333681e2d468201ff37b108ebf +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlurV2.meta b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2.meta new file mode 100644 index 000000000..0c91795f0 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2632ba4fc2bdd56428ada707fd3e2486 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Editor.meta b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Editor.meta new file mode 100644 index 000000000..6b96cb703 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 85d67136d1aa8bf44a10adbc50efae99 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Editor/TiltShiftBlurV2Editor.cs b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Editor/TiltShiftBlurV2Editor.cs new file mode 100644 index 000000000..cb62e0d40 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Editor/TiltShiftBlurV2Editor.cs @@ -0,0 +1,67 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; + +using UnityEditor.Rendering.PostProcessing; +using UnityEngine.Rendering.PostProcessing; + +namespace XPostProcessing +{ + [PostProcessEditor(typeof(TiltShiftBlurV2))] + public sealed class TiltShiftBlurV2Editor : PostProcessEffectEditor + { + + SerializedParameterOverride Iteration; + SerializedParameterOverride BlurRadius; + SerializedParameterOverride centerOffset; + SerializedParameterOverride AreaSize; + SerializedParameterOverride areaSmooth; + SerializedParameterOverride showPreview; + + + public override void OnEnable() + { + showPreview = FindParameterOverride(x => x.showPreview); + centerOffset = FindParameterOverride(x => x.centerOffset); + AreaSize = FindParameterOverride(x => x.AreaSize); + areaSmooth = FindParameterOverride(x => x.areaSmooth); + Iteration = FindParameterOverride(x => x.Iteration); + BlurRadius = FindParameterOverride(x => x.BlurRadius); + } + + public override string GetDisplayTitle() + { + return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle(); + } + + public override void OnInspectorGUI() + { + + EditorUtilities.DrawHeaderLabel("Blur Property"); + PropertyField(BlurRadius); + PropertyField(Iteration); + + EditorUtilities.DrawHeaderLabel("Area Property"); + PropertyField(centerOffset); + PropertyField(AreaSize); + PropertyField(areaSmooth); + + EditorUtilities.DrawHeaderLabel("Debug"); + PropertyField(showPreview); + + } + + } +} + diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Editor/TiltShiftBlurV2Editor.cs.meta b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Editor/TiltShiftBlurV2Editor.cs.meta new file mode 100644 index 000000000..3b2acfbff --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Editor/TiltShiftBlurV2Editor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 6d13ec10e474c6242b267a162e10e1f6 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/README.md b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/README.md new file mode 100644 index 000000000..e9c84fbd9 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/README.md @@ -0,0 +1,18 @@ + +# Tilt Shift BlurV2 + +## Source Code List +- [Shader Code](Shader/TiltShiftBlurV2.shader) +- [C# Code](TiltShiftBlurV2.cs) +- [Editor Code](Editor/TiltShiftBlurV2Editor.cs) + + +## Property +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/TiltShiftBlurV2/TiltShiftBlurV2Property.png) + +## Gallery +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/TiltShiftBlurV2/TiltShiftBlurV2.png) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/TiltShiftBlurV2/TiltShiftBlurV2-1.gif) + +![](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/Blur/TiltShiftBlurV2/TiltShiftBlurV2-2.gif) \ No newline at end of file diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/README.md.meta b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/README.md.meta new file mode 100644 index 000000000..867f6f5d1 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7b7f22ec3a26e3845a9eb7724eede9f3 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Shader.meta b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Shader.meta new file mode 100644 index 000000000..ea0ab3848 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0582dacb484963a4083f58ea89a3ccee +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Shader/TiltShiftBlurV2.shader b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Shader/TiltShiftBlurV2.shader new file mode 100644 index 000000000..799ecebda --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Shader/TiltShiftBlurV2.shader @@ -0,0 +1,105 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + + +// reference 1 : https://www.shadertoy.com/view/4d2Xzw +// reference 2 : https://github.com/imclab/TiltShift + +Shader "Hidden/X-PostProcessing/TiltShiftBlurV2" +{ + HLSLINCLUDE + + #include "../../../Shaders/StdLib.hlsl" + #include "../../../Shaders/XPostProcessing.hlsl" + + + half3 _Gradient; + half4 _GoldenRot; + half4 _Distortion; + half4 _Params; + + #define _Offset _Gradient.x + #define _Area _Gradient.y + #define _Spread _Gradient.z + #define _CubicDistortion _Distortion.x + #define _DistortionScale _Distortion.y + #define _Iteration _Params.x + #define _Radius _Params.y + #define _PixelSize _Params.zw + + float TiltShiftMask(float2 uv) + { + float centerY = uv.y * 2.0 - 1.0 + _Offset; // [0,1] -> [-1,1] + return pow(abs(centerY * _Area), _Spread); + } + + half4 FragPreview(VaryingsDefault i): SV_Target + { + return TiltShiftMask(i.texcoord); + } + + half4 TiltShiftBlur(VaryingsDefault i) + { + half2x2 rot = half2x2(_GoldenRot); + half4 accumulator = 0.0; + half4 divisor = 0.0; + + half r = 1.0; + half2 angle = half2(0.0, _Radius * saturate(TiltShiftMask(i.texcoord))); + + for (int j = 0; j < _Iteration; j ++) + { + r += 1.0 / r; + angle = mul(rot, angle); + half4 bokeh = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, float2(i.texcoord + _PixelSize * (r - 1.0) * angle)); + accumulator += bokeh * bokeh; + divisor += bokeh; + } + return accumulator / divisor; + } + + half4 Frag(VaryingsDefault i): SV_Target + { + return TiltShiftBlur(i); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // Pass 0 - Tilt Shift + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + + } + + // Pass 1 - Preview + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragPreview + + ENDHLSL + + } + } +} + + diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Shader/TiltShiftBlurV2.shader.meta b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Shader/TiltShiftBlurV2.shader.meta new file mode 100644 index 000000000..7dfbf7fd7 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Shader/TiltShiftBlurV2.shader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dffebf5f65b64d343a6001a1bd69ce2a +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/TiltShiftBlurV2.cs b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/TiltShiftBlurV2.cs new file mode 100644 index 000000000..3c50a49be --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/TiltShiftBlurV2.cs @@ -0,0 +1,89 @@ + +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using UnityEngine; +using UnityEngine.Rendering; +using UnityEngine.Rendering.PostProcessing; + + +namespace XPostProcessing +{ + + [Serializable] + [PostProcess(typeof(TiltShiftBlurV2Renderer), PostProcessEvent.AfterStack, "X-PostProcessing/Blur/TiltShiftBlur/TiltShiftBlurV2")] + public class TiltShiftBlurV2 : PostProcessEffectSettings + { + + [Range(0f, 3f)] + public FloatParameter BlurRadius = new FloatParameter { value = 1f }; + + [Range(8, 128)] + public IntParameter Iteration = new IntParameter { value = 32 }; + + [Range(-1f, 1f)] + public FloatParameter centerOffset = new FloatParameter { value = 0f }; + + [Range(0f, 20f)] + public FloatParameter AreaSize = new FloatParameter { value = 1f }; + + [Range(1f, 20f)] + public FloatParameter areaSmooth = new FloatParameter { value = 1.2f }; + + public BoolParameter showPreview = new BoolParameter { value = false }; + + } + + public sealed class TiltShiftBlurV2Renderer : PostProcessEffectRenderer + { + + private const string PROFILER_TAG = "X-TiltShiftBlurV2"; + private Shader shader; + private Vector4 mGoldenRot = new Vector4(); + + public override void Init() + { + shader = Shader.Find("Hidden/X-PostProcessing/TiltShiftBlurV2"); + + // Precompute rotations + float c = Mathf.Cos(2.39996323f); + float s = Mathf.Sin(2.39996323f); + mGoldenRot.Set(c, s, -s, c); + } + + public override void Release() + { + base.Release(); + } + + static class ShaderIDs + { + internal static readonly int GoldenRot = Shader.PropertyToID("_GoldenRot"); + internal static readonly int Gradient = Shader.PropertyToID("_Gradient"); + internal static readonly int Params = Shader.PropertyToID("_Params"); + } + + public override void Render(PostProcessRenderContext context) + { + CommandBuffer cmd = context.command; + PropertySheet sheet = context.propertySheets.Get(shader); + cmd.BeginSample(PROFILER_TAG); + + sheet.properties.SetVector(ShaderIDs.GoldenRot, mGoldenRot); + sheet.properties.SetVector(ShaderIDs.Gradient, new Vector3(settings.centerOffset, settings.AreaSize, settings.areaSmooth)); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(settings.Iteration, settings.BlurRadius, 1f / context.width, 1f / context.height)); + + + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, settings.showPreview ? 1 : 0); + cmd.EndSample(PROFILER_TAG); + } + } +} + diff --git a/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/TiltShiftBlurV2.cs.meta b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/TiltShiftBlurV2.cs.meta new file mode 100644 index 000000000..3c21bac03 --- /dev/null +++ b/Assets/X-PostProcessing/Effects/TiltShiftBlurV2/TiltShiftBlurV2.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b6fc311bab7f3714daba3e248900eb31 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/LICENSE b/Assets/X-PostProcessing/LICENSE new file mode 100644 index 000000000..8f1401e6c --- /dev/null +++ b/Assets/X-PostProcessing/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 浅墨 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Assets/X-PostProcessing/LICENSE.meta b/Assets/X-PostProcessing/LICENSE.meta new file mode 100644 index 000000000..5eaa71fac --- /dev/null +++ b/Assets/X-PostProcessing/LICENSE.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b4298015887360044a80992e276e24c4 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Profiles.meta b/Assets/X-PostProcessing/Profiles.meta new file mode 100644 index 000000000..c07d4b2a8 --- /dev/null +++ b/Assets/X-PostProcessing/Profiles.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c42e68ffcbce42240b02936b8413ec4d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Profiles/X-PostProcessing ExampleProfiles.asset b/Assets/X-PostProcessing/Profiles/X-PostProcessing ExampleProfiles.asset new file mode 100644 index 000000000..9ba2428a1 --- /dev/null +++ b/Assets/X-PostProcessing/Profiles/X-PostProcessing ExampleProfiles.asset @@ -0,0 +1,508 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8e6292b2c06870d4495f009f912b9600, type: 3} + m_Name: X-PostProcessing ExampleProfiles + m_EditorClassIdentifier: + settings: + - {fileID: 114811271554320798} + - {fileID: 114724888899494118} + - {fileID: 114963614594370276} + - {fileID: 114417544700008348} + - {fileID: 114365642992012064} + - {fileID: 114881628477261990} + - {fileID: 114186190907686168} + - {fileID: 114964623377917018} + - {fileID: 114789630020481822} + - {fileID: 114320506431503834} + - {fileID: 114760233488171950} + - {fileID: 114240762057880376} + - {fileID: 114195601342318132} + - {fileID: 114957445380884270} + - {fileID: 114161431607775064} +--- !u!114 &114079023366429692 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2b24348132ef15346be9ae6f5fe6e94e, type: 3} + m_Name: RapidVignette + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + vignetteType: + overrideState: 1 + value: 1 + vignetteIndensity: + overrideState: 1 + value: 1 + vignetteCenter: + overrideState: 1 + value: {x: 0.5, y: 0.5} + vignetteColor: + overrideState: 1 + value: {r: 0.1, g: 0.8, b: 1, a: 1} +--- !u!114 &114161431607775064 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e1b513c82ad9e224db6ba48112ec5d48, type: 3} + m_Name: ColorReplaceV2 + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + FromGradientColor: + overrideState: 0 + value: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + ToGradientColor: + overrideState: 0 + value: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + gridentSpeed: + overrideState: 0 + value: 0.5 + Range: + overrideState: 0 + value: 0.2 + Fuzziness: + overrideState: 0 + value: 0.5 +--- !u!114 &114186190907686168 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2f2bae125e8b72241b38b94373f3c521, type: 3} + m_Name: EdgeDetectionRoberts + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + edgeWidth: + overrideState: 1 + value: 0.98 + edgeColor: + overrideState: 1 + value: {r: 0, g: 0, b: 0, a: 1} + backgroundFade: + overrideState: 1 + value: 1 + backgroundColor: + overrideState: 1 + value: {r: 1, g: 1, b: 1, a: 1} +--- !u!114 &114195601342318132 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0ad87ed76c4e75846a28e3a301084ed7, type: 3} + m_Name: BoxBlur + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + BlurRadius: + overrideState: 0 + value: 3 + Iteration: + overrideState: 0 + value: 6 + RTDownScaling: + overrideState: 0 + value: 2 +--- !u!114 &114240762057880376 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2638595d43b44334d88d398c2ff5a6ad, type: 3} + m_Name: ColorAdjustmentBleachBypass + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + Indensity: + overrideState: 1 + value: 0.405 +--- !u!114 &114320506431503834 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b63d2b442ad53ae42b8343f3a6602000, type: 3} + m_Name: GlitchDigitalStripe + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + intensity: + overrideState: 1 + value: 0.165 + frequncy: + overrideState: 1 + value: 2 + stripeLength: + overrideState: 1 + value: 0.99 + noiseTextureWidth: + overrideState: 1 + value: 20 + noiseTextureHeight: + overrideState: 1 + value: 20 + needStripColorAdjust: + overrideState: 1 + value: 0 + StripColorAdjustColor: + overrideState: 1 + value: {r: 0.1, g: 0.1, b: 0.1, a: 1} + StripColorAdjustIndensity: + overrideState: 1 + value: 2 +--- !u!114 &114365642992012064 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b6fc311bab7f3714daba3e248900eb31, type: 3} + m_Name: TiltShiftBlurV2 + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + BlurRadius: + overrideState: 0 + value: 1 + Iteration: + overrideState: 0 + value: 32 + centerOffset: + overrideState: 1 + value: 0 + AreaSize: + overrideState: 0 + value: 1 + areaSmooth: + overrideState: 1 + value: 1.2 + showPreview: + overrideState: 1 + value: 0 +--- !u!114 &114417544700008348 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 172b63b63bfdad04dbe149542c33a495, type: 3} + m_Name: GrainyBlur + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + BlurRadius: + overrideState: 0 + value: 5 + Iteration: + overrideState: 1 + value: 4 + RTDownScaling: + overrideState: 1 + value: 1 +--- !u!114 &114724888899494118 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 078dd948866cdbc45847016fec126b10, type: 3} + m_Name: DualGaussianBlur + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + BlurRadius: + overrideState: 1 + value: 2.7 + Iteration: + overrideState: 1 + value: 4 + RTDownScaling: + overrideState: 1 + value: 2.66 +--- !u!114 &114760233488171950 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c9acc76ac9d8d4e4a8d7294a5bd00c85, type: 3} + m_Name: GlitchImageBlockV3 + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + Speed: + overrideState: 0 + value: 10 + BlockSize: + overrideState: 0 + value: 8 +--- !u!114 &114789630020481822 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e9ef3f5264488414c87b632cd2509b40, type: 3} + m_Name: GlitchRGBSplitV5 + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + Amplitude: + overrideState: 1 + value: 0.5 + Speed: + overrideState: 1 + value: 0.1 +--- !u!114 &114811271554320798 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 84ae5393ade3f4847ab851805bcf1777, type: 3} + m_Name: BokehBlur + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + BlurRadius: + overrideState: 0 + value: 1 + Iteration: + overrideState: 0 + value: 32 + RTDownScaling: + overrideState: 1 + value: 2 +--- !u!114 &114881628477261990 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8b3bbc5404f2acf4a9963784dd2159af, type: 3} + m_Name: IrisBlurV2 + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + BlurRadius: + overrideState: 0 + value: 1 + Iteration: + overrideState: 0 + value: 60 + centerOffsetX: + overrideState: 1 + value: 0 + centerOffsetY: + overrideState: 1 + value: 0 + AreaSize: + overrideState: 0 + value: 8 + showPreview: + overrideState: 1 + value: 0 +--- !u!114 &114957445380884270 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0e84cf76f41f4f7459de554628a5a26b, type: 3} + m_Name: ColorReplace + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + FromColor: + overrideState: 1 + value: {r: 0.8, g: 0, b: 0, a: 1} + ToColor: + overrideState: 1 + value: {r: 0, g: 0.8, b: 0, a: 1} + Range: + overrideState: 1 + value: 0.2 + Fuzziness: + overrideState: 1 + value: 0.5 +--- !u!114 &114963614594370276 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cdb8901486ed154489954ac45ed02d02, type: 3} + m_Name: DualKawaseBlur + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + BlurRadius: + overrideState: 1 + value: 2.8 + Iteration: + overrideState: 1 + value: 3 + RTDownScaling: + overrideState: 1 + value: 2 +--- !u!114 &114964623377917018 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 29f414c45c95c4c4fab1fba6f7db9a44, type: 3} + m_Name: GlitchScanLineJitter + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + JitterDirection: + overrideState: 1 + value: 0 + intervalType: + overrideState: 0 + value: 2 + frequency: + overrideState: 0 + value: 1 + JitterIndensity: + overrideState: 1 + value: 0.174 diff --git a/Assets/X-PostProcessing/Profiles/X-PostProcessing ExampleProfiles.asset.meta b/Assets/X-PostProcessing/Profiles/X-PostProcessing ExampleProfiles.asset.meta new file mode 100644 index 000000000..f918ca28b --- /dev/null +++ b/Assets/X-PostProcessing/Profiles/X-PostProcessing ExampleProfiles.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 05d6d0fc0cf620743ac9fb0be4727707 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/README.md b/Assets/X-PostProcessing/README.md new file mode 100644 index 000000000..2782bc8e1 --- /dev/null +++ b/Assets/X-PostProcessing/README.md @@ -0,0 +1,192 @@ + +![XPL-Title-v2.jpg](https://raw.githubusercontent.com/QianMo/X-PostProcessing-Gallery/master/Media/XPL-Title-v2.jpg) +

+ + GitHub license + + Version + + GitHub issues + + + GitHub pull requests + + +# XPL: Unity引擎的高品质后处理库 +

+ +X-PostProcessing Libray,简称XPL,是针对Unity引擎的高品质开源后处理库,旨在提供业界主流的高品质后处理特效的完整解决方案。目前已完美支持Unity Post-processing Stack v2,后续也将提供对Unity引擎URP/LWRP/HDRP的兼容支持。 + +**X-PostProcessing Library (XPL)** is a high quality post processing library for for Unity Post Processing Stack v2/LWRP/URP/HDRP + + + + + + + +需要查看更多渲染效果图和每个特效的参数与属性,可以在下面的 [目录 ](#jump) 部分的具体后处理特效子页面中查看。 + +For more gallery , you can enter the specific post-processing effects sub-page in the [ Content ](#jump) section below. + +
+ + + + # 1. 目录 | Content + + + + +- ## 1.1 图像模糊型后处理 | Blur Effects + - [Gaussian Blur](Assets/X-PostProcessing/Effects/GaussianBlur) + - [Box Blur](Assets/X-PostProcessing/Effects/BoxBlur) + - [Tent Blur](Assets/X-PostProcessing/Effects/TentBlur) + - [Kawase Blur](Assets/X-PostProcessing/Effects/KawaseBlur) + - [Dual Kawase Blur](Assets/X-PostProcessing/Effects/DualKawaseBlur) + - [Dual Gaussian Blur](Assets/X-PostProcessing/Effects/DualGaussianBlur) + - [Dual Box Blur](Assets/X-PostProcessing/Effects/DualBoxBlur) + - [Dual Tent Blur](Assets/X-PostProcessing/Effects/DualTentBlur) + - [Bokeh Blur](Assets/X-PostProcessing/Effects/BokehBlur) + - [Tilt Shift Blur](Assets/X-PostProcessing/Effects/TiltShiftBlur) + - [Tilt Shift Blur V2](Assets/X-PostProcessing/Effects/TiltShiftBlurV2) + - [Iris Blur](Assets/X-PostProcessing/Effects/IrisBlur) + - [Iris Blur V2](Assets/X-PostProcessing/Effects/IrisBlurV2) + - [Grainy Blur](Assets/X-PostProcessing/Effects/GrainyBlur) + - [Radial Blur](Assets/X-PostProcessing/Effects/RadialBlur) + - [Radial Blur V2](Assets/X-PostProcessing/Effects/RadialBlurV2) + - [Directional Blur](Assets/X-PostProcessing/Effects/DirectionalBlur) +- ## 1.2 像素化型后处理 | Pixelate Effects + - [Pixelize Quad](Assets/X-PostProcessing/Effects/PixelizeQuad) + - [Pixelize Led](Assets/X-PostProcessing/Effects/PixelizeLed) + - [Pixelize Leaf](Assets/X-PostProcessing/Effects/PixelizeLeaf) + - [Pixelize Circle](Assets/X-PostProcessing/Effects/PixelizeCircle) + - [Pixelize Diamond](Assets/X-PostProcessing/Effects/PixelizeDiamond) + - [Pixelize Sector](Assets/X-PostProcessing/Effects/PixelizeSector) + - [Pixelize Triangle](Assets/X-PostProcessing/Effects/PixelizeTriangle) + - [Pixelize Hexagon](Assets/X-PostProcessing/Effects/PixelizeHexagon) + - [Pixelize Hexagon Grid](Assets/X-PostProcessing/Effects/PixelizeHexagonGrid) +- ## 1.3 边缘检测型后处理 | Edge Detection Effects + - [Edge Detection Sobel](Assets/X-PostProcessing/Effects/EdgeDetectionSobel) + - [Edge Detection Sobel Neon](Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon) + - [Edge Detection Sobel Neon V2](Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2) + - [Edge Detection Roberts](Assets/X-PostProcessing/Effects/EdgeDetectionRoberts) + - [Edge Detection Roberts Neon](Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon) + - [Edge Detection Roberts Neon V2](Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2) + - [Edge Detection Scharr](Assets/X-PostProcessing/Effects/EdgeDetectionScharr) + - [Edge Detection Scharr Neon](Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon) + - [Edge Detection Scharr Neon V2](Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2) +- ## 1.4 故障艺术型后处理 | Glitch Effects + - [Glitch Image Block](Assets/X-PostProcessing/Effects/GlitchImageBlock) + - [Glitch Image Block V2](Assets/X-PostProcessing/Effects/GlitchImageBlockV2) + - [Glitch Image Block V3](Assets/X-PostProcessing/Effects/GlitchImageBlockV3) + - [Glitch Image Block V4](Assets/X-PostProcessing/Effects/GlitchImageBlockV4) + - [Glitch Line Block](Assets/X-PostProcessing/Effects/GlitchLineBlock) + - [Glitch Analog Noise](Assets/X-PostProcessing/Effects/GlitchAnalogNoise) + - [Glitch Digital Stripe](Assets/X-PostProcessing/Effects/GlitchDigitalStripe) + - [Glitch RGB Split](Assets/X-PostProcessing/Effects/GlitchRGBSplit) + - [Glitch RGB Split V2](Assets/X-PostProcessing/Effects/GlitchRGBSplitV2) + - [Glitch RGB Split V3](Assets/X-PostProcessing/Effects/GlitchRGBSplitV3) + - [Glitch RGB Split V4](Assets/X-PostProcessing/Effects/GlitchRGBSplitV4) + - [Glitch RGB Split V5](Assets/X-PostProcessing/Effects/GlitchRGBSplitV5) + - [Glitch Scan Line Jitter](Assets/X-PostProcessing/Effects/GlitchScanLineJitter) + - [Glitch Screen Jump](Assets/X-PostProcessing/Effects/GlitchScreenJump) + - [Glitch Screen Shake](Assets/X-PostProcessing/Effects/GlitchScreenShake) + - [Glitch Tile Jitter](Assets/X-PostProcessing/Effects/GlitchTileJitter) + - [Glitch Wave Jitter](Assets/X-PostProcessing/Effects/GlitchWaveJitter) +- ## 1.5 色彩调整型后处理 | Color Adjustment Effects + - [Color Adjustment Bleach Bypass](Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass) + - [Color Adjustment Brightness](Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness) + - [Color Adjustment Contrast](Assets/X-PostProcessing/Effects/ColorAdjustmentContrast) + - [Color Adjustment Contrast V2](Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2) + - [Color Adjustment Contrast V3](Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3) + - [Color Adjustment Hue](Assets/X-PostProcessing/Effects/ColorAdjustmentHue) + - [Color Adjustment Lens Filter](Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter) + - [Color Adjustment Saturation](Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation) + - [Color Adjustment Technicolor](Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor) + - [Color Adjustment Tint](Assets/X-PostProcessing/Effects/ColorAdjustmentTint) + - [Color Adjustment White Balance](Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance) + - [Color Adjustment Replace Color](Assets/X-PostProcessing/Effects/ColorReplace) + - [Color Adjustment Replace Color V2](Assets/X-PostProcessing/Effects/ColorReplaceV2) +- ## 1.6 渐晕型后处理 | Vignette Effects + - [Aurora Vignette](Assets/X-PostProcessing/Effects/AuroraVignette) + - [Rapid Vignette](Assets/X-PostProcessing/Effects/RapidVignette) + - [Rapid Vignette V2](Assets/X-PostProcessing/Effects/RapidVignetteV2) + - [Rapid Old TV Vignette](Assets/X-PostProcessing/Effects/RapidOldTVVignette) + - [Rapid Old TV Vignette V2](Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2) +- ## 1.7 图像处理型后处理 | Image Processing Effects + - [Sharpen V1](Assets/X-PostProcessing/Effects/SharpenV1) + - [Sharpen V2](Assets/X-PostProcessing/Effects/SharpenV2) + - [Sharpen V3](Assets/X-PostProcessing/Effects/SharpenV3) + + +- Stylized Effects +- Painting Effects +- ... + +More effects and LWRP/URP/HDRP version will arrive soon. + + + +
+ + +# 2. 安装 | Installation + +有两种主要的安装X-PostProcessing Library的方法: + +- 【方法一】 克隆或下载此Repo,并直接使用Unity打开。建议可先从已设置好后处理的示例场景 [Assets/Example/ExampleScene.unity](Assets/Example/ExampleScene.unity) 开始。 + +- 【方法二】 将[X-PostProcessing](Assets/X-PostProcessing) 文件夹放置在项目Assets路径下的任一位置,并确保Post Processing Stack v2也位于项目中。 + +You have two main ways to install X-PostProcessing Library : + +- **[Method 1]** Clone or download this repository , open with Unity Engine Editor and enjoy. It is recommended to start with the example scene [Assets/Example/ExampleScene.unity](Assets/Example/ExampleScene.unity) . +- **[Method 2]** Place the [X-PostProcessing](Assets/X-PostProcessing) folder anywhere in your project, make sure that Post Processing Stack v2 is in the project as well, and enjoy. + + +
+ + + +# 3. 使用 | Usage + + +post processing profile 有各种不同的修改和添加方式,最常规的方法是,选中一个post processing profile ,在Inspetor窗口下: + +- `Add effect... > X-PostProcessing > 选择一种新的后处理` + +The new effect should be available for a post processing profile with different injection points,just like: + +- `Add effect... > X-PostProcessing > Choose an effect` + +
+ + + +# 4. 环境 | Environment + +- 建议使用Unity 2017.2+。 + +- 如果使用的是较旧版本的Unity(5.6 或 2017.1),则需要将[此文件夹](https://github.com/QianMo/X-PostProcessing-Library/tree/master/Assets/PostProcessing-2) 替换为 [pps v2 2.1.8](https://github.com/Unity-Technologies/PostProcessing/tree/bec8546fc498db388cedadd14021cc7006338cc4)。 + +- Unity 2017.2+ is recommended. + +- if you use older versions of Unity (5.6 and 2017.1) , you need to replace [this folder](https://github.com/QianMo/X-PostProcessing-Library/tree/master/Assets/PostProcessing-2) with [pps v2 2.1.8](https://github.com/Unity-Technologies/PostProcessing/tree/bec8546fc498db388cedadd14021cc7006338cc4). + + +
+ + +# 5. 文章 | Blog Post + +- [高品质后处理:十种图像模糊算法的总结与实现](https://zhuanlan.zhihu.com/p/125744132) | [GitHub Version](https://github.com/QianMo/Game-Programmer-Study-Notes/blob/master/Content/%E9%AB%98%E5%93%81%E8%B4%A8%E5%90%8E%E5%A4%84%E7%90%86%EF%BC%9A%E5%8D%81%E7%A7%8D%E5%9B%BE%E5%83%8F%E6%A8%A1%E7%B3%8A%E7%AE%97%E6%B3%95%E7%9A%84%E6%80%BB%E7%BB%93%E4%B8%8E%E5%AE%9E%E7%8E%B0/README.md) + +- [高品质后处理:十种故障艺术(Glitch Art)算法的总结与实现](https://zhuanlan.zhihu.com/p/148256756) | [GitHub Version](https://github.com/QianMo/Game-Programmer-Study-Notes/blob/master/Content/%E9%AB%98%E5%93%81%E8%B4%A8%E5%90%8E%E5%A4%84%E7%90%86%EF%BC%9A%E5%8D%81%E7%A7%8D%E6%95%85%E9%9A%9C%E8%89%BA%E6%9C%AF%EF%BC%88Glitch%20Art%EF%BC%89%E7%AE%97%E6%B3%95%E7%9A%84%E6%80%BB%E7%BB%93%E4%B8%8E%E5%AE%9E%E7%8E%B0/README.md) + +
+ + + + + diff --git a/Assets/X-PostProcessing/README.md.meta b/Assets/X-PostProcessing/README.md.meta new file mode 100644 index 000000000..c9ec95912 --- /dev/null +++ b/Assets/X-PostProcessing/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 824d0d0072f480842a9c0be553efa70f +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Resources.meta b/Assets/X-PostProcessing/Resources.meta new file mode 100644 index 000000000..d2aedf0af --- /dev/null +++ b/Assets/X-PostProcessing/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 265217753ad2c6340a43fed36d2314f5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Resources/X-Noise256.png b/Assets/X-PostProcessing/Resources/X-Noise256.png new file mode 100644 index 000000000..32a561c7f Binary files /dev/null and b/Assets/X-PostProcessing/Resources/X-Noise256.png differ diff --git a/Assets/X-PostProcessing/Resources/X-Noise256.png.meta b/Assets/X-PostProcessing/Resources/X-Noise256.png.meta new file mode 100644 index 000000000..ebcf289ba --- /dev/null +++ b/Assets/X-PostProcessing/Resources/X-Noise256.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 304987f9860c5544fb6fd361fd00d0c8 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 4 + 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 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapU: -1 + wrapV: -1 + wrapW: -1 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders.meta b/Assets/X-PostProcessing/Shaders.meta new file mode 100644 index 000000000..4a57a756f --- /dev/null +++ b/Assets/X-PostProcessing/Shaders.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 20a0aa147c8b50742a07495038262c27 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/ACES.hlsl b/Assets/X-PostProcessing/Shaders/ACES.hlsl new file mode 100644 index 000000000..9f77efeab --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/ACES.hlsl @@ -0,0 +1,1309 @@ +#ifndef __ACES__ +#define __ACES__ + +/** + * https://github.com/ampas/aces-dev + * + * Academy Color Encoding System (ACES) software and tools are provided by the + * Academy under the following terms and conditions: A worldwide, royalty-free, + * non-exclusive right to copy, modify, create derivatives, and use, in source and + * binary forms, is hereby granted, subject to acceptance of this license. + * + * Copyright 2015 Academy of Motion Picture Arts and Sciences (A.M.P.A.S.). + * Portions contributed by others as indicated. All rights reserved. + * + * Performance of any of the aforementioned acts indicates acceptance to be bound + * by the following terms and conditions: + * + * * Copies of source code, in whole or in part, must retain the above copyright + * notice, this list of conditions and the Disclaimer of Warranty. + * + * * Use in binary form must retain the above copyright notice, this list of + * conditions and the Disclaimer of Warranty in the documentation and/or other + * materials provided with the distribution. + * + * * Nothing in this license shall be deemed to grant any rights to trademarks, + * copyrights, patents, trade secrets or any other intellectual property of + * A.M.P.A.S. or any contributors, except as expressly stated herein. + * + * * Neither the name "A.M.P.A.S." nor the name of any other contributors to this + * software may be used to endorse or promote products derivative of or based on + * this software without express prior written permission of A.M.P.A.S. or the + * contributors, as appropriate. + * + * This license shall be construed pursuant to the laws of the State of + * California, and any disputes related thereto shall be subject to the + * jurisdiction of the courts therein. + * + * Disclaimer of Warranty: THIS SOFTWARE IS PROVIDED BY A.M.P.A.S. AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND + * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL A.M.P.A.S., OR ANY + * CONTRIBUTORS OR DISTRIBUTORS, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, RESITUTIONARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * WITHOUT LIMITING THE GENERALITY OF THE FOREGOING, THE ACADEMY SPECIFICALLY + * DISCLAIMS ANY REPRESENTATIONS OR WARRANTIES WHATSOEVER RELATED TO PATENT OR + * OTHER INTELLECTUAL PROPERTY RIGHTS IN THE ACADEMY COLOR ENCODING SYSTEM, OR + * APPLICATIONS THEREOF, HELD BY PARTIES OTHER THAN A.M.P.A.S.,WHETHER DISCLOSED OR + * UNDISCLOSED. + */ + +#include "StdLib.hlsl" + +#define ACEScc_MAX 1.4679964 +#define ACEScc_MIDGRAY 0.4135884 + +// +// Precomputed matrices (pre-transposed) +// See https://github.com/ampas/aces-dev/blob/master/transforms/ctl/README-MATRIX.md +// +static const half3x3 sRGB_2_AP0 = { + 0.4397010, 0.3829780, 0.1773350, + 0.0897923, 0.8134230, 0.0967616, + 0.0175440, 0.1115440, 0.8707040 +}; + +static const half3x3 sRGB_2_AP1 = { + 0.61319, 0.33951, 0.04737, + 0.07021, 0.91634, 0.01345, + 0.02062, 0.10957, 0.86961 +}; + +static const half3x3 AP0_2_sRGB = { + 2.52169, -1.13413, -0.38756, + -0.27648, 1.37272, -0.09624, + -0.01538, -0.15298, 1.16835, +}; + +static const half3x3 AP1_2_sRGB = { + 1.70505, -0.62179, -0.08326, + -0.13026, 1.14080, -0.01055, + -0.02400, -0.12897, 1.15297, +}; + +static const half3x3 AP0_2_AP1_MAT = { + 1.4514393161, -0.2365107469, -0.2149285693, + -0.0765537734, 1.1762296998, -0.0996759264, + 0.0083161484, -0.0060324498, 0.9977163014 +}; + +static const half3x3 AP1_2_AP0_MAT = { + 0.6954522414, 0.1406786965, 0.1638690622, + 0.0447945634, 0.8596711185, 0.0955343182, + -0.0055258826, 0.0040252103, 1.0015006723 +}; + +static const half3x3 AP1_2_XYZ_MAT = { + 0.6624541811, 0.1340042065, 0.1561876870, + 0.2722287168, 0.6740817658, 0.0536895174, + -0.0055746495, 0.0040607335, 1.0103391003 +}; + +static const half3x3 XYZ_2_AP1_MAT = { + 1.6410233797, -0.3248032942, -0.2364246952, + -0.6636628587, 1.6153315917, 0.0167563477, + 0.0117218943, -0.0082844420, 0.9883948585 +}; + +static const half3x3 XYZ_2_REC709_MAT = { + 3.2409699419, -1.5373831776, -0.4986107603, + -0.9692436363, 1.8759675015, 0.0415550574, + 0.0556300797, -0.2039769589, 1.0569715142 +}; + +static const half3x3 XYZ_2_REC2020_MAT = { + 1.7166511880, -0.3556707838, -0.2533662814, + -0.6666843518, 1.6164812366, 0.0157685458, + 0.0176398574, -0.0427706133, 0.9421031212 +}; + +static const half3x3 XYZ_2_DCIP3_MAT = { + 2.7253940305, -1.0180030062, -0.4401631952, + -0.7951680258, 1.6897320548, 0.0226471906, + 0.0412418914, -0.0876390192, 1.1009293786 +}; + +static const half3 AP1_RGB2Y = half3(0.272229, 0.674082, 0.0536895); + +static const half3x3 RRT_SAT_MAT = { + 0.9708890, 0.0269633, 0.00214758, + 0.0108892, 0.9869630, 0.00214758, + 0.0108892, 0.0269633, 0.96214800 +}; + +static const half3x3 ODT_SAT_MAT = { + 0.949056, 0.0471857, 0.00375827, + 0.019056, 0.9771860, 0.00375827, + 0.019056, 0.0471857, 0.93375800 +}; + +static const half3x3 D60_2_D65_CAT = { + 0.98722400, -0.00611327, 0.0159533, + -0.00759836, 1.00186000, 0.0053302, + 0.00307257, -0.00509595, 1.0816800 +}; + +// +// Unity to ACES +// +// converts Unity raw (sRGB primaries) to +// ACES2065-1 (AP0 w/ linear encoding) +// +half3 unity_to_ACES(half3 x) +{ + x = mul(sRGB_2_AP0, x); + return x; +} + +// +// ACES to Unity +// +// converts ACES2065-1 (AP0 w/ linear encoding) +// Unity raw (sRGB primaries) to +// +half3 ACES_to_unity(half3 x) +{ + x = mul(AP0_2_sRGB, x); + return x; +} + +// +// Unity to ACEScg +// +// converts Unity raw (sRGB primaries) to +// ACEScg (AP1 w/ linear encoding) +// +half3 unity_to_ACEScg(half3 x) +{ + x = mul(sRGB_2_AP1, x); + return x; +} + +// +// ACEScg to Unity +// +// converts ACEScg (AP1 w/ linear encoding) to +// Unity raw (sRGB primaries) +// +half3 ACEScg_to_unity(half3 x) +{ + x = mul(AP1_2_sRGB, x); + return x; +} + +// +// ACES Color Space Conversion - ACES to ACEScc +// +// converts ACES2065-1 (AP0 w/ linear encoding) to +// ACEScc (AP1 w/ logarithmic encoding) +// +// This transform follows the formulas from section 4.4 in S-2014-003 +// +half ACES_to_ACEScc(half x) +{ + if (x <= 0.0) + return -0.35828683; // = (log2(pow(2.0, -15.0) * 0.5) + 9.72) / 17.52 + else if (x < pow(2.0, -15.0)) + return (log2(pow(2.0, -16.0) + x * 0.5) + 9.72) / 17.52; + else // (x >= pow(2.0, -15.0)) + return (log2(x) + 9.72) / 17.52; +} + +half3 ACES_to_ACEScc(half3 x) +{ + x = clamp(x, 0.0, HALF_MAX); + + // x is clamped to [0, HALF_MAX], skip the <= 0 check + return (x < 0.00003051757) ? (log2(0.00001525878 + x * 0.5) + 9.72) / 17.52 : (log2(x) + 9.72) / 17.52; + + /* + return half3( + ACES_to_ACEScc(x.r), + ACES_to_ACEScc(x.g), + ACES_to_ACEScc(x.b) + ); + */ +} + +// +// ACES Color Space Conversion - ACEScc to ACES +// +// converts ACEScc (AP1 w/ ACESlog encoding) to +// ACES2065-1 (AP0 w/ linear encoding) +// +// This transform follows the formulas from section 4.4 in S-2014-003 +// +half ACEScc_to_ACES(half x) +{ + // TODO: Optimize me + if (x < -0.3013698630) // (9.72 - 15) / 17.52 + return (pow(2.0, x * 17.52 - 9.72) - pow(2.0, -16.0)) * 2.0; + else if (x < (log2(HALF_MAX) + 9.72) / 17.52) + return pow(2.0, x * 17.52 - 9.72); + else // (x >= (log2(HALF_MAX) + 9.72) / 17.52) + return HALF_MAX; +} + +half3 ACEScc_to_ACES(half3 x) +{ + return half3( + ACEScc_to_ACES(x.r), + ACEScc_to_ACES(x.g), + ACEScc_to_ACES(x.b) + ); +} + +// +// ACES Color Space Conversion - ACES to ACEScg +// +// converts ACES2065-1 (AP0 w/ linear encoding) to +// ACEScg (AP1 w/ linear encoding) +// +half3 ACES_to_ACEScg(half3 x) +{ + return mul(AP0_2_AP1_MAT, x); +} + +// +// ACES Color Space Conversion - ACEScg to ACES +// +// converts ACEScg (AP1 w/ linear encoding) to +// ACES2065-1 (AP0 w/ linear encoding) +// +half3 ACEScg_to_ACES(half3 x) +{ + return mul(AP1_2_AP0_MAT, x); +} + +// +// Reference Rendering Transform (RRT) +// +// Input is ACES +// Output is OCES +// +half rgb_2_saturation(half3 rgb) +{ + const half TINY = 1e-4; + half mi = Min3(rgb.r, rgb.g, rgb.b); + half ma = Max3(rgb.r, rgb.g, rgb.b); + return (max(ma, TINY) - max(mi, TINY)) / max(ma, 1e-2); +} + +half rgb_2_yc(half3 rgb) +{ + const half ycRadiusWeight = 1.75; + + // Converts RGB to a luminance proxy, here called YC + // YC is ~ Y + K * Chroma + // Constant YC is a cone-shaped surface in RGB space, with the tip on the + // neutral axis, towards white. + // YC is normalized: RGB 1 1 1 maps to YC = 1 + // + // ycRadiusWeight defaults to 1.75, although can be overridden in function + // call to rgb_2_yc + // ycRadiusWeight = 1 -> YC for pure cyan, magenta, yellow == YC for neutral + // of same value + // ycRadiusWeight = 2 -> YC for pure red, green, blue == YC for neutral of + // same value. + + half r = rgb.x; + half g = rgb.y; + half b = rgb.z; + half chroma = sqrt(b * (b - g) + g * (g - r) + r * (r - b)); + return (b + g + r + ycRadiusWeight * chroma) / 3.0; +} + +half rgb_2_hue(half3 rgb) +{ + // Returns a geometric hue angle in degrees (0-360) based on RGB values. + // For neutral colors, hue is undefined and the function will return a quiet NaN value. + half hue; + if (rgb.x == rgb.y && rgb.y == rgb.z) + hue = 0.0; // RGB triplets where RGB are equal have an undefined hue + else + hue = (180.0 / PI) * atan2(sqrt(3.0) * (rgb.y - rgb.z), 2.0 * rgb.x - rgb.y - rgb.z); + + if (hue < 0.0) hue = hue + 360.0; + + return hue; +} + +half center_hue(half hue, half centerH) +{ + half hueCentered = hue - centerH; + if (hueCentered < -180.0) hueCentered = hueCentered + 360.0; + else if (hueCentered > 180.0) hueCentered = hueCentered - 360.0; + return hueCentered; +} + +half sigmoid_shaper(half x) +{ + // Sigmoid function in the range 0 to 1 spanning -2 to +2. + + half t = max(1.0 - abs(x / 2.0), 0.0); + half y = 1.0 + FastSign(x) * (1.0 - t * t); + + return y / 2.0; +} + +half glow_fwd(half ycIn, half glowGainIn, half glowMid) +{ + half glowGainOut; + + if (ycIn <= 2.0 / 3.0 * glowMid) + glowGainOut = glowGainIn; + else if (ycIn >= 2.0 * glowMid) + glowGainOut = 0.0; + else + glowGainOut = glowGainIn * (glowMid / ycIn - 1.0 / 2.0); + + return glowGainOut; +} + +/* +half cubic_basis_shaper +( + half x, + half w // full base width of the shaper function (in degrees) +) +{ + half M[4][4] = { + { -1.0 / 6, 3.0 / 6, -3.0 / 6, 1.0 / 6 }, + { 3.0 / 6, -6.0 / 6, 3.0 / 6, 0.0 / 6 }, + { -3.0 / 6, 0.0 / 6, 3.0 / 6, 0.0 / 6 }, + { 1.0 / 6, 4.0 / 6, 1.0 / 6, 0.0 / 6 } + }; + + half knots[5] = { + -w / 2.0, + -w / 4.0, + 0.0, + w / 4.0, + w / 2.0 + }; + + half y = 0.0; + if ((x > knots[0]) && (x < knots[4])) + { + half knot_coord = (x - knots[0]) * 4.0 / w; + int j = knot_coord; + half t = knot_coord - j; + + half monomials[4] = { t*t*t, t*t, t, 1.0 }; + + // (if/else structure required for compatibility with CTL < v1.5.) + if (j == 3) + { + y = monomials[0] * M[0][0] + monomials[1] * M[1][0] + + monomials[2] * M[2][0] + monomials[3] * M[3][0]; + } + else if (j == 2) + { + y = monomials[0] * M[0][1] + monomials[1] * M[1][1] + + monomials[2] * M[2][1] + monomials[3] * M[3][1]; + } + else if (j == 1) + { + y = monomials[0] * M[0][2] + monomials[1] * M[1][2] + + monomials[2] * M[2][2] + monomials[3] * M[3][2]; + } + else if (j == 0) + { + y = monomials[0] * M[0][3] + monomials[1] * M[1][3] + + monomials[2] * M[2][3] + monomials[3] * M[3][3]; + } + else + { + y = 0.0; + } + } + + return y * 3.0 / 2.0; +} +*/ + +static const half3x3 M = { + 0.5, -1.0, 0.5, + -1.0, 1.0, 0.0, + 0.5, 0.5, 0.0 +}; + +half segmented_spline_c5_fwd(half x) +{ + const half coefsLow[6] = { -4.0000000000, -4.0000000000, -3.1573765773, -0.4852499958, 1.8477324706, 1.8477324706 }; // coefs for B-spline between minPoint and midPoint (units of log luminance) + const half coefsHigh[6] = { -0.7185482425, 2.0810307172, 3.6681241237, 4.0000000000, 4.0000000000, 4.0000000000 }; // coefs for B-spline between midPoint and maxPoint (units of log luminance) + const half2 minPoint = half2(0.18 * exp2(-15.0), 0.0001); // {luminance, luminance} linear extension below this + const half2 midPoint = half2(0.18, 0.48); // {luminance, luminance} + const half2 maxPoint = half2(0.18 * exp2(18.0), 10000.0); // {luminance, luminance} linear extension above this + const half slopeLow = 0.0; // log-log slope of low linear extension + const half slopeHigh = 0.0; // log-log slope of high linear extension + + const int N_KNOTS_LOW = 4; + const int N_KNOTS_HIGH = 4; + + // Check for negatives or zero before taking the log. If negative or zero, + // set to ACESMIN.1 + float xCheck = x; + if (xCheck <= 0.0) xCheck = 0.00006103515; // = pow(2.0, -14.0); + + half logx = log10(xCheck); + half logy; + + if (logx <= log10(minPoint.x)) + { + logy = logx * slopeLow + (log10(minPoint.y) - slopeLow * log10(minPoint.x)); + } + else if ((logx > log10(minPoint.x)) && (logx < log10(midPoint.x))) + { + half knot_coord = (N_KNOTS_LOW - 1) * (logx - log10(minPoint.x)) / (log10(midPoint.x) - log10(minPoint.x)); + int j = knot_coord; + half t = knot_coord - j; + + half3 cf = half3(coefsLow[j], coefsLow[j + 1], coefsLow[j + 2]); + half3 monomials = half3(t * t, t, 1.0); + logy = dot(monomials, mul(M, cf)); + } + else if ((logx >= log10(midPoint.x)) && (logx < log10(maxPoint.x))) + { + half knot_coord = (N_KNOTS_HIGH - 1) * (logx - log10(midPoint.x)) / (log10(maxPoint.x) - log10(midPoint.x)); + int j = knot_coord; + half t = knot_coord - j; + + half3 cf = half3(coefsHigh[j], coefsHigh[j + 1], coefsHigh[j + 2]); + half3 monomials = half3(t * t, t, 1.0); + logy = dot(monomials, mul(M, cf)); + } + else + { //if (logIn >= log10(maxPoint.x)) { + logy = logx * slopeHigh + (log10(maxPoint.y) - slopeHigh * log10(maxPoint.x)); + } + + return pow(10.0, logy); +} + +half segmented_spline_c9_fwd(half x) +{ + const half coefsLow[10] = { -1.6989700043, -1.6989700043, -1.4779000000, -1.2291000000, -0.8648000000, -0.4480000000, 0.0051800000, 0.4511080334, 0.9113744414, 0.9113744414 }; // coefs for B-spline between minPoint and midPoint (units of log luminance) + const half coefsHigh[10] = { 0.5154386965, 0.8470437783, 1.1358000000, 1.3802000000, 1.5197000000, 1.5985000000, 1.6467000000, 1.6746091357, 1.6878733390, 1.6878733390 }; // coefs for B-spline between midPoint and maxPoint (units of log luminance) + const half2 minPoint = half2(segmented_spline_c5_fwd(0.18 * exp2(-6.5)), 0.02); // {luminance, luminance} linear extension below this + const half2 midPoint = half2(segmented_spline_c5_fwd(0.18), 4.8); // {luminance, luminance} + const half2 maxPoint = half2(segmented_spline_c5_fwd(0.18 * exp2(6.5)), 48.0); // {luminance, luminance} linear extension above this + const half slopeLow = 0.0; // log-log slope of low linear extension + const half slopeHigh = 0.04; // log-log slope of high linear extension + + const int N_KNOTS_LOW = 8; + const int N_KNOTS_HIGH = 8; + + // Check for negatives or zero before taking the log. If negative or zero, + // set to OCESMIN. + half xCheck = x; + if (xCheck <= 0.0) xCheck = 1e-4; + + half logx = log10(xCheck); + half logy; + + if (logx <= log10(minPoint.x)) + { + logy = logx * slopeLow + (log10(minPoint.y) - slopeLow * log10(minPoint.x)); + } + else if ((logx > log10(minPoint.x)) && (logx < log10(midPoint.x))) + { + half knot_coord = (N_KNOTS_LOW - 1) * (logx - log10(minPoint.x)) / (log10(midPoint.x) - log10(minPoint.x)); + int j = knot_coord; + half t = knot_coord - j; + + half3 cf = half3(coefsLow[j], coefsLow[j + 1], coefsLow[j + 2]); + half3 monomials = half3(t * t, t, 1.0); + logy = dot(monomials, mul(M, cf)); + } + else if ((logx >= log10(midPoint.x)) && (logx < log10(maxPoint.x))) + { + half knot_coord = (N_KNOTS_HIGH - 1) * (logx - log10(midPoint.x)) / (log10(maxPoint.x) - log10(midPoint.x)); + int j = knot_coord; + half t = knot_coord - j; + + half3 cf = half3(coefsHigh[j], coefsHigh[j + 1], coefsHigh[j + 2]); + half3 monomials = half3(t * t, t, 1.0); + logy = dot(monomials, mul(M, cf)); + } + else + { //if (logIn >= log10(maxPoint.x)) { + logy = logx * slopeHigh + (log10(maxPoint.y) - slopeHigh * log10(maxPoint.x)); + } + + return pow(10.0, logy); +} + +static const half RRT_GLOW_GAIN = 0.05; +static const half RRT_GLOW_MID = 0.08; + +static const half RRT_RED_SCALE = 0.82; +static const half RRT_RED_PIVOT = 0.03; +static const half RRT_RED_HUE = 0.0; +static const half RRT_RED_WIDTH = 135.0; + +static const half RRT_SAT_FACTOR = 0.96; + +half3 RRT(half3 aces) +{ + // --- Glow module --- // + half saturation = rgb_2_saturation(aces); + half ycIn = rgb_2_yc(aces); + half s = sigmoid_shaper((saturation - 0.4) / 0.2); + half addedGlow = 1.0 + glow_fwd(ycIn, RRT_GLOW_GAIN * s, RRT_GLOW_MID); + aces *= addedGlow; + + // --- Red modifier --- // + half hue = rgb_2_hue(aces); + half centeredHue = center_hue(hue, RRT_RED_HUE); + half hueWeight; + { + //hueWeight = cubic_basis_shaper(centeredHue, RRT_RED_WIDTH); + hueWeight = smoothstep(0.0, 1.0, 1.0 - abs(2.0 * centeredHue / RRT_RED_WIDTH)); + hueWeight *= hueWeight; + } + + aces.r += hueWeight * saturation * (RRT_RED_PIVOT - aces.r) * (1.0 - RRT_RED_SCALE); + + // --- ACES to RGB rendering space --- // + aces = clamp(aces, 0.0, HALF_MAX); // avoids saturated negative colors from becoming positive in the matrix + half3 rgbPre = mul(AP0_2_AP1_MAT, aces); + rgbPre = clamp(rgbPre, 0, HALF_MAX); + + // --- Global desaturation --- // + //rgbPre = mul(RRT_SAT_MAT, rgbPre); + rgbPre = lerp(dot(rgbPre, AP1_RGB2Y).xxx, rgbPre, RRT_SAT_FACTOR.xxx); + + // --- Apply the tonescale independently in rendering-space RGB --- // + half3 rgbPost; + rgbPost.x = segmented_spline_c5_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c5_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c5_fwd(rgbPre.z); + + // --- RGB rendering space to OCES --- // + half3 rgbOces = mul(AP1_2_AP0_MAT, rgbPost); + + return rgbOces; +} + +// +// Output Device Transform +// +half3 Y_2_linCV(half3 Y, half Ymax, half Ymin) +{ + return (Y - Ymin) / (Ymax - Ymin); +} + +half3 XYZ_2_xyY(half3 XYZ) +{ + half divisor = max(dot(XYZ, (1.0).xxx), 1e-4); + return half3(XYZ.xy / divisor, XYZ.y); +} + +half3 xyY_2_XYZ(half3 xyY) +{ + half m = xyY.z / max(xyY.y, 1e-4); + half3 XYZ = half3(xyY.xz, (1.0 - xyY.x - xyY.y)); + XYZ.xz *= m; + return XYZ; +} + +static const half DIM_SURROUND_GAMMA = 0.9811; + +half3 darkSurround_to_dimSurround(half3 linearCV) +{ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + half3 xyY = XYZ_2_xyY(XYZ); + xyY.z = clamp(xyY.z, 0.0, HALF_MAX); + xyY.z = pow(xyY.z, DIM_SURROUND_GAMMA); + XYZ = xyY_2_XYZ(xyY); + + return mul(XYZ_2_AP1_MAT, XYZ); +} + +half moncurve_r(half y, half gamma, half offs) +{ + // Reverse monitor curve + half x; + const half yb = pow(offs * gamma / ((gamma - 1.0) * (1.0 + offs)), gamma); + const half rs = pow((gamma - 1.0) / offs, gamma - 1.0) * pow((1.0 + offs) / gamma, gamma); + if (y >= yb) + x = (1.0 + offs) * pow(y, 1.0 / gamma) - offs; + else + x = y * rs; + return x; +} + +half bt1886_r(half L, half gamma, half Lw, half Lb) +{ + // The reference EOTF specified in Rec. ITU-R BT.1886 + // L = a(max[(V+b),0])^g + half a = pow(pow(Lw, 1.0 / gamma) - pow(Lb, 1.0 / gamma), gamma); + half b = pow(Lb, 1.0 / gamma) / (pow(Lw, 1.0 / gamma) - pow(Lb, 1.0 / gamma)); + half V = pow(max(L / a, 0.0), 1.0 / gamma) - b; + return V; +} + +half roll_white_fwd( + half x, // color value to adjust (white scaled to around 1.0) + half new_wht, // white adjustment (e.g. 0.9 for 10% darkening) + half width // adjusted width (e.g. 0.25 for top quarter of the tone scale) + ) +{ + const half x0 = -1.0; + const half x1 = x0 + width; + const half y0 = -new_wht; + const half y1 = x1; + const half m1 = (x1 - x0); + const half a = y0 - y1 + m1; + const half b = 2.0 * (y1 - y0) - m1; + const half c = y0; + const half t = (-x - x0) / (x1 - x0); + half o = 0.0; + if (t < 0.0) + o = -(t * b + c); + else if (t > 1.0) + o = x; + else + o = -((t * a + b) * t + c); + return o; +} + +half3 linear_to_sRGB(half3 x) +{ + return (x <= 0.0031308 ? (x * 12.9232102) : 1.055 * pow(x, 1.0 / 2.4) - 0.055); +} + +half3 linear_to_bt1886(half3 x, half gamma, half Lw, half Lb) +{ + // Good enough approximation for now, may consider using the exact formula instead + // TODO: Experiment + return pow(max(x, 0.0), 1.0 / 2.4); + + // Correct implementation (Reference EOTF specified in Rec. ITU-R BT.1886) : + // L = a(max[(V+b),0])^g + half invgamma = 1.0 / gamma; + half p_Lw = pow(Lw, invgamma); + half p_Lb = pow(Lb, invgamma); + half3 a = pow(p_Lw - p_Lb, gamma).xxx; + half3 b = (p_Lb / p_Lw - p_Lb).xxx; + half3 V = pow(max(x / a, 0.0), invgamma.xxx) - b; + return V; +} + +static const half CINEMA_WHITE = 48.0; +static const half CINEMA_BLACK = CINEMA_WHITE / 2400.0; +static const half ODT_SAT_FACTOR = 0.93; + +// ODT.Academy.RGBmonitor_100nits_dim.a1.0.3 +// ACES 1.0 Output - sRGB + +// +// Output Device Transform - RGB computer monitor +// + +// +// Summary : +// This transform is intended for mapping OCES onto a desktop computer monitor +// typical of those used in motion picture visual effects production. These +// monitors may occasionally be referred to as "sRGB" displays, however, the +// monitor for which this transform is designed does not exactly match the +// specifications in IEC 61966-2-1:1999. +// +// The assumed observer adapted white is D65, and the viewing environment is +// that of a dim surround. +// +// The monitor specified is intended to be more typical of those found in +// visual effects production. +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.709 +// CIE 1931 chromaticities: x y Y +// Red: 0.64 0.33 +// Green: 0.3 0.6 +// Blue: 0.15 0.06 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// IEC 61966-2-1:1999. +// +// Signal Range: +// This transform outputs full range code values. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.3127 0.329 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// +half3 ODT_RGBmonitor_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // Apply CAT from ACES white point to assumed observer adapted white point + XYZ = mul(D60_2_D65_CAT, XYZ); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // TODO: Revisit when it is possible to deactivate Unity default framebuffer encoding + // with sRGB opto-electrical transfer function (OETF). + /* + // Encode linear code values with transfer function + half3 outputCV; + // moncurve_r with gamma of 2.4 and offset of 0.055 matches the EOTF found in IEC 61966-2-1:1999 (sRGB) + const half DISPGAMMA = 2.4; + const half OFFSET = 0.055; + outputCV.x = moncurve_r(linearCV.x, DISPGAMMA, OFFSET); + outputCV.y = moncurve_r(linearCV.y, DISPGAMMA, OFFSET); + outputCV.z = moncurve_r(linearCV.z, DISPGAMMA, OFFSET); + + outputCV = linear_to_sRGB(linearCV); + */ + + // Unity already draws to a sRGB target + return linearCV; +} + +// ODT.Academy.RGBmonitor_D60sim_100nits_dim.a1.0.3 +// ACES 1.0 Output - sRGB (D60 sim.) + +// +// Output Device Transform - RGB computer monitor (D60 simulation) +// + +// +// Summary : +// This transform is intended for mapping OCES onto a desktop computer monitor +// typical of those used in motion picture visual effects production. These +// monitors may occasionally be referred to as "sRGB" displays, however, the +// monitor for which this transform is designed does not exactly match the +// specifications in IEC 61966-2-1:1999. +// +// The assumed observer adapted white is D60, and the viewing environment is +// that of a dim surround. +// +// The monitor specified is intended to be more typical of those found in +// visual effects production. +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.709 +// CIE 1931 chromaticities: x y Y +// Red: 0.64 0.33 +// Green: 0.3 0.6 +// Blue: 0.15 0.06 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// IEC 61966-2-1:1999. +// +// Signal Range: +// This transform outputs full range code values. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.32168 0.33767 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// +half3 ODT_RGBmonitor_D60sim_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // --- Compensate for different white point being darker --- // + // This adjustment is to correct an issue that exists in ODTs where the device + // is calibrated to a white chromaticity other than D60. In order to simulate + // D60 on such devices, unequal code values are sent to the display to achieve + // neutrals at D60. In order to produce D60 on a device calibrated to the DCI + // white point (i.e. equal code values yield CIE x,y chromaticities of 0.314, + // 0.351) the red channel is higher than green and blue to compensate for the + // "greenish" DCI white. This is the correct behavior but it means that as + // highlight increase, the red channel will hit the device maximum first and + // clip, resulting in a chromaticity shift as the green and blue channels + // continue to increase. + // To avoid this clipping error, a slight scale factor is applied to allow the + // ODTs to simulate D60 within the D65 calibration white point. + + // Scale and clamp white to avoid casted highlights due to D60 simulation + const half SCALE = 0.955; + linearCV = min(linearCV, 1.0) * SCALE; + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // TODO: Revisit when it is possible to deactivate Unity default framebuffer encoding + // with sRGB opto-electrical transfer function (OETF). + /* + // Encode linear code values with transfer function + half3 outputCV; + // moncurve_r with gamma of 2.4 and offset of 0.055 matches the EOTF found in IEC 61966-2-1:1999 (sRGB) + const half DISPGAMMA = 2.4; + const half OFFSET = 0.055; + outputCV.x = moncurve_r(linearCV.x, DISPGAMMA, OFFSET); + outputCV.y = moncurve_r(linearCV.y, DISPGAMMA, OFFSET); + outputCV.z = moncurve_r(linearCV.z, DISPGAMMA, OFFSET); + + outputCV = linear_to_sRGB(linearCV); + */ + + // Unity already draws to a sRGB target + return linearCV; +} + +// ODT.Academy.Rec709_100nits_dim.a1.0.3 +// ACES 1.0 Output - Rec.709 + +// +// Output Device Transform - Rec709 +// + +// +// Summary : +// This transform is intended for mapping OCES onto a Rec.709 broadcast monitor +// that is calibrated to a D65 white point at 100 cd/m^2. The assumed observer +// adapted white is D65, and the viewing environment is a dim surround. +// +// A possible use case for this transform would be HDTV/video mastering. +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.709 +// CIE 1931 chromaticities: x y Y +// Red: 0.64 0.33 +// Green: 0.3 0.6 +// Blue: 0.15 0.06 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// Rec. ITU-R BT.1886. +// +// Signal Range: +// By default, this transform outputs full range code values. If instead a +// SMPTE "legal" signal is desired, there is a runtime flag to output +// SMPTE legal signal. In ctlrender, this can be achieved by appending +// '-param1 legalRange 1' after the '-ctl odt.ctl' string. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.3127 0.329 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// +half3 ODT_Rec709_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // Apply CAT from ACES white point to assumed observer adapted white point + XYZ = mul(D60_2_D65_CAT, XYZ); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // Encode linear code values with transfer function + const half DISPGAMMA = 2.4; + const half L_W = 1.0; + const half L_B = 0.0; + half3 outputCV = linear_to_bt1886(linearCV, DISPGAMMA, L_W, L_B); + + // TODO: Implement support for legal range. + + // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) + // by default which will result in double perceptual encoding, thus for now if one want to use + // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to + // compensate for Unity default behaviour. + + return outputCV; +} + +// ODT.Academy.Rec709_D60sim_100nits_dim.a1.0.3 +// ACES 1.0 Output - Rec.709 (D60 sim.) + +// +// Output Device Transform - Rec709 (D60 simulation) +// + +// +// Summary : +// This transform is intended for mapping OCES onto a Rec.709 broadcast monitor +// that is calibrated to a D65 white point at 100 cd/m^2. The assumed observer +// adapted white is D60, and the viewing environment is a dim surround. +// +// A possible use case for this transform would be cinema "soft-proofing". +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.709 +// CIE 1931 chromaticities: x y Y +// Red: 0.64 0.33 +// Green: 0.3 0.6 +// Blue: 0.15 0.06 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// Rec. ITU-R BT.1886. +// +// Signal Range: +// By default, this transform outputs full range code values. If instead a +// SMPTE "legal" signal is desired, there is a runtime flag to output +// SMPTE legal signal. In ctlrender, this can be achieved by appending +// '-param1 legalRange 1' after the '-ctl odt.ctl' string. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.32168 0.33767 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// +half3 ODT_Rec709_D60sim_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // --- Compensate for different white point being darker --- // + // This adjustment is to correct an issue that exists in ODTs where the device + // is calibrated to a white chromaticity other than D60. In order to simulate + // D60 on such devices, unequal code values must be sent to the display to achieve + // the chromaticities of D60. More specifically, in order to produce D60 on a device + // calibrated to a D65 white point (i.e. equal code values yield CIE x,y + // chromaticities of 0.3127, 0.329) the red channel must be slightly higher than + // that of green and blue in order to compensate for the relatively more "blue-ish" + // D65 white. This unequalness of color channels is the correct behavior but it + // means that as neutral highlights increase, the red channel will hit the + // device maximum first and clip, resulting in a small chromaticity shift as the + // green and blue channels continue to increase to their maximums. + // To avoid this clipping error, a slight scale factor is applied to allow the + // ODTs to simulate D60 within the D65 calibration white point. + + // Scale and clamp white to avoid casted highlights due to D60 simulation + const half SCALE = 0.955; + linearCV = min(linearCV, 1.0) * SCALE; + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // Encode linear code values with transfer function + const half DISPGAMMA = 2.4; + const half L_W = 1.0; + const half L_B = 0.0; + half3 outputCV = linear_to_bt1886(linearCV, DISPGAMMA, L_W, L_B); + + // TODO: Implement support for legal range. + + // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) + // by default which will result in double perceptual encoding, thus for now if one want to use + // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to + // compensate for Unity default behaviour. + + return outputCV; +} + +// ODT.Academy.Rec2020_100nits_dim.a1.0.3 +// ACES 1.0 Output - Rec.2020 + +// +// Output Device Transform - Rec2020 +// + +// +// Summary : +// This transform is intended for mapping OCES onto a Rec.2020 broadcast +// monitor that is calibrated to a D65 white point at 100 cd/m^2. The assumed +// observer adapted white is D65, and the viewing environment is that of a dim +// surround. +// +// A possible use case for this transform would be UHDTV/video mastering. +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.2020 +// CIE 1931 chromaticities: x y Y +// Red: 0.708 0.292 +// Green: 0.17 0.797 +// Blue: 0.131 0.046 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// Rec. ITU-R BT.1886. +// +// Signal Range: +// By default, this transform outputs full range code values. If instead a +// SMPTE "legal" signal is desired, there is a runtime flag to output +// SMPTE legal signal. In ctlrender, this can be achieved by appending +// '-param1 legalRange 1' after the '-ctl odt.ctl' string. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.3127 0.329 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// + +half3 ODT_Rec2020_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // Apply CAT from ACES white point to assumed observer adapted white point + XYZ = mul(D60_2_D65_CAT, XYZ); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC2020_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // Encode linear code values with transfer function + const half DISPGAMMA = 2.4; + const half L_W = 1.0; + const half L_B = 0.0; + half3 outputCV = linear_to_bt1886(linearCV, DISPGAMMA, L_W, L_B); + + // TODO: Implement support for legal range. + + // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) + // by default which will result in double perceptual encoding, thus for now if one want to use + // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to + // compensate for Unity default behaviour. + + return outputCV; +} + +// ODT.Academy.P3DCI_48nits.a1.0.3 +// ACES 1.0 Output - P3-DCI + +// +// Output Device Transform - P3DCI (D60 Simulation) +// + +// +// Summary : +// This transform is intended for mapping OCES onto a P3 digital cinema +// projector that is calibrated to a DCI white point at 48 cd/m^2. The assumed +// observer adapted white is D60, and the viewing environment is that of a dark +// theater. +// +// Device Primaries : +// CIE 1931 chromaticities: x y Y +// Red: 0.68 0.32 +// Green: 0.265 0.69 +// Blue: 0.15 0.06 +// White: 0.314 0.351 48 cd/m^2 +// +// Display EOTF : +// Gamma: 2.6 +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.32168 0.33767 +// +// Viewing Environment: +// Environment specified in SMPTE RP 431-2-2007 +// +half3 ODT_P3DCI_48nits(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // --- Compensate for different white point being darker --- // + // This adjustment is to correct an issue that exists in ODTs where the device + // is calibrated to a white chromaticity other than D60. In order to simulate + // D60 on such devices, unequal code values are sent to the display to achieve + // neutrals at D60. In order to produce D60 on a device calibrated to the DCI + // white point (i.e. equal code values yield CIE x,y chromaticities of 0.314, + // 0.351) the red channel is higher than green and blue to compensate for the + // "greenish" DCI white. This is the correct behavior but it means that as + // highlight increase, the red channel will hit the device maximum first and + // clip, resulting in a chromaticity shift as the green and blue channels + // continue to increase. + // To avoid this clipping error, a slight scale factor is applied to allow the + // ODTs to simulate D60 within the D65 calibration white point. However, the + // magnitude of the scale factor required for the P3DCI ODT was considered too + // large. Therefore, the scale factor was reduced and the additional required + // compression was achieved via a reshaping of the highlight rolloff in + // conjunction with the scale. The shape of this rolloff was determined + // throught subjective experiments and deemed to best reproduce the + // "character" of the highlights in the P3D60 ODT. + + // Roll off highlights to avoid need for as much scaling + const half NEW_WHT = 0.918; + const half ROLL_WIDTH = 0.5; + linearCV.x = roll_white_fwd(linearCV.x, NEW_WHT, ROLL_WIDTH); + linearCV.y = roll_white_fwd(linearCV.y, NEW_WHT, ROLL_WIDTH); + linearCV.z = roll_white_fwd(linearCV.z, NEW_WHT, ROLL_WIDTH); + + // Scale and clamp white to avoid casted highlights due to D60 simulation + const half SCALE = 0.96; + linearCV = min(linearCV, NEW_WHT) * SCALE; + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_DCIP3_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // Encode linear code values with transfer function + const half DISPGAMMA = 2.6; + half3 outputCV = pow(linearCV, 1.0 / DISPGAMMA); + + // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) + // by default which will result in double perceptual encoding, thus for now if one want to use + // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to + // compensate for Unity default behaviour. + + return outputCV; +} + +#endif // __ACES__ diff --git a/Assets/X-PostProcessing/Shaders/ACES.hlsl.meta b/Assets/X-PostProcessing/Shaders/ACES.hlsl.meta new file mode 100644 index 000000000..daaf3eeb7 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/ACES.hlsl.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 887c5516912c2ab4e9a07d1e1b882df6 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/API.meta b/Assets/X-PostProcessing/Shaders/API.meta new file mode 100644 index 000000000..f5adfac19 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c898ec18c3eb408498f9e78e9e7800a0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/API/D3D11.hlsl b/Assets/X-PostProcessing/Shaders/API/D3D11.hlsl new file mode 100644 index 000000000..1982bcb36 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/D3D11.hlsl @@ -0,0 +1,52 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/Assets/X-PostProcessing/Shaders/API/D3D11.hlsl.meta b/Assets/X-PostProcessing/Shaders/API/D3D11.hlsl.meta new file mode 100644 index 000000000..8bf06ca9a --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/D3D11.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: de49249ea2b608c4a9ff8163814b51dc +timeCreated: 1489753963 +licenseType: Store +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/API/D3D12.hlsl b/Assets/X-PostProcessing/Shaders/API/D3D12.hlsl new file mode 100644 index 000000000..1982bcb36 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/D3D12.hlsl @@ -0,0 +1,52 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/Assets/X-PostProcessing/Shaders/API/D3D12.hlsl.meta b/Assets/X-PostProcessing/Shaders/API/D3D12.hlsl.meta new file mode 100644 index 000000000..feec4620b --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/D3D12.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 35930d267d988154797d2ab08a2704ad +timeCreated: 1489754075 +licenseType: Store +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/API/D3D9.hlsl b/Assets/X-PostProcessing/Shaders/API/D3D9.hlsl new file mode 100644 index 000000000..8427b9c8a --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/D3D9.hlsl @@ -0,0 +1,43 @@ +// ALso used for Direct3D 11 "feature level 9.x" target for Windows Store and Windows Phone +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 0 +#define UNITY_GATHER_SUPPORTED 0 +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) sampler2D textureName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) sampler3D textureName + +#define TEXTURE2D(textureName) sampler2D textureName +#define SAMPLER2D(samplerName) + +#define TEXTURE3D(textureName) sampler3D textureName +#define SAMPLER3D(samplerName) + +#define TEXTURE2D_ARGS(textureName, samplerName) sampler2D textureName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName + +#define TEXTURE3D_ARGS(textureName, samplerName) sampler3D textureName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) tex2D(textureName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) tex3D(textureName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) tex2D(textureName, icoord2 / texelSize) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) tex2Dlod(textureName, float4(icoord2 / texelSize, 0.0, lod)) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH +#define UNITY_FLATTEN +#define UNITY_UNROLL +#define UNITY_LOOP +#define UNITY_FASTOPT + +#define CBUFFER_START(name) +#define CBUFFER_END + +#define FXAA_HLSL_3 1 +#define SMAA_HLSL_3 1 diff --git a/Assets/X-PostProcessing/Shaders/API/D3D9.hlsl.meta b/Assets/X-PostProcessing/Shaders/API/D3D9.hlsl.meta new file mode 100644 index 000000000..6ee37572a --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/D3D9.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 06a01d52ddef95344ac28b690f98ec2d +timeCreated: 1489754265 +licenseType: Store +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/API/Metal.hlsl b/Assets/X-PostProcessing/Shaders/API/Metal.hlsl new file mode 100644 index 000000000..50916982d --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/Metal.hlsl @@ -0,0 +1,47 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED 0 // Currently broken on Metal for some reason (May 2017) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#define FXAA_HLSL_4 1 // See UNITY_GATHER_SUPPORTED +#define SMAA_HLSL_4 1 diff --git a/Assets/X-PostProcessing/Shaders/API/Metal.hlsl.meta b/Assets/X-PostProcessing/Shaders/API/Metal.hlsl.meta new file mode 100644 index 000000000..39682e32f --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/Metal.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d4eb15fffa74d644bb594060c705f777 +timeCreated: 1489753963 +licenseType: Store +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/API/OpenGL.hlsl b/Assets/X-PostProcessing/Shaders/API/OpenGL.hlsl new file mode 100644 index 000000000..9c7cd11f1 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/OpenGL.hlsl @@ -0,0 +1,57 @@ +// For now OpenGL is considered at GLES2 level +#define UNITY_UV_STARTS_AT_TOP 0 +#define UNITY_REVERSED_Z 0 +#define UNITY_GATHER_SUPPORTED 0 +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) sampler2D textureName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) sampler3D textureName + +#define TEXTURE2D(textureName) sampler2D textureName +#define SAMPLER2D(samplerName) + +#define TEXTURE3D(textureName) sampler3D textureName +#define SAMPLER3D(samplerName) + +#define TEXTURE2D_ARGS(textureName, samplerName) sampler2D textureName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName + +#define TEXTURE3D_ARGS(textureName, samplerName) sampler3D textureName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) tex2D(textureName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) tex3D(textureName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) tex2D(textureName, icoord2 / texelSize) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) tex2Dlod(textureName, float4(icoord2 / texelSize, 0.0, lod)) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#if SHADER_API_GLES +# define UNITY_BRANCH +# define UNITY_FLATTEN +# define UNITY_UNROLL +# define UNITY_LOOP +# define UNITY_FASTOPT +#else +# define UNITY_BRANCH [branch] +# define UNITY_FLATTEN [flatten] +# define UNITY_UNROLL [unroll] +# define UNITY_LOOP [loop] +# define UNITY_FASTOPT [fastopt] +#endif + +#define CBUFFER_START(name) +#define CBUFFER_END + +#define FXAA_HLSL_3 1 +#define SMAA_HLSL_3 1 + +// pragma exclude_renderers is only supported since Unity 2018.1 for compute shaders +#if UNITY_VERSION < 201810 && !defined(SHADER_API_GLCORE) +# define DISABLE_COMPUTE_SHADERS 1 +# define TRIVIAL_COMPUTE_KERNEL(name) [numthreads(1, 1, 1)] void name() {} +#endif diff --git a/Assets/X-PostProcessing/Shaders/API/OpenGL.hlsl.meta b/Assets/X-PostProcessing/Shaders/API/OpenGL.hlsl.meta new file mode 100644 index 000000000..54bab4f78 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/OpenGL.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 252ce283bdab48948b80f71920a4c7c8 +timeCreated: 1489754265 +licenseType: Store +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/API/PSP2.hlsl b/Assets/X-PostProcessing/Shaders/API/PSP2.hlsl new file mode 100644 index 000000000..dcb0c7e37 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/PSP2.hlsl @@ -0,0 +1,48 @@ + +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 0 +#define UNITY_GATHER_SUPPORTED 0 +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 0 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) sampler2D textureName + +#define TEXTURE2D(textureName) sampler2D textureName +#define SAMPLER2D(samplerName) + +#define TEXTURE2D_ARGS(textureName, samplerName) sampler2D textureName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) tex2D(textureName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) tex2D(textureName, icoord2 / texelSize) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) tex2Dlod(textureName, float4(icoord2 / texelSize, 0.0, lod)) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) tex2D(textureName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)).r + +// 3D textures are not supported on Vita, use 2D to avoid compile errors. +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) sampler2D textureName +#define TEXTURE3D(textureName) sampler2D textureName +#define SAMPLER3D(samplerName) +#define TEXTURE3D_ARGS(textureName, samplerName) sampler2D textureName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) tex2D(textureName, coord3) + +#define UNITY_BRANCH +#define UNITY_FLATTEN +#define UNITY_UNROLL +#define UNITY_LOOP +#define UNITY_FASTOPT + +#define CBUFFER_START(name) +#define CBUFFER_END + +#define FXAA_HLSL_3 1 +#define SMAA_HLSL_3 1 + +// pragma exclude_renderers is only supported since Unity 2018.1 for compute shaders +#if UNITY_VERSION < 201810 && !defined(SHADER_API_GLCORE) +# define DISABLE_COMPUTE_SHADERS 1 +# define TRIVIAL_COMPUTE_KERNEL(name) [numthreads(1, 1, 1)] void name() {} +#endif diff --git a/Assets/X-PostProcessing/Shaders/API/PSP2.hlsl.meta b/Assets/X-PostProcessing/Shaders/API/PSP2.hlsl.meta new file mode 100644 index 000000000..4708d6b37 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/PSP2.hlsl.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b9ab41f4ad3d23642ad3d2ed0fdb18d6 +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/API/PSSL.hlsl b/Assets/X-PostProcessing/Shaders/API/PSSL.hlsl new file mode 100644 index 000000000..ef3eafb6b --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/PSSL.hlsl @@ -0,0 +1,55 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 +#define INTRINSIC_MINMAX3 +#define Min3 min3 +#define Max3 max3 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) ConstantBuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/Assets/X-PostProcessing/Shaders/API/PSSL.hlsl.meta b/Assets/X-PostProcessing/Shaders/API/PSSL.hlsl.meta new file mode 100644 index 000000000..69369d8fa --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/PSSL.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e851c3938cacdaa45b025b90da1731b2 +timeCreated: 1489753963 +licenseType: Store +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/API/Switch.hlsl b/Assets/X-PostProcessing/Shaders/API/Switch.hlsl new file mode 100644 index 000000000..875e6e098 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/Switch.hlsl @@ -0,0 +1,51 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/Assets/X-PostProcessing/Shaders/API/Switch.hlsl.meta b/Assets/X-PostProcessing/Shaders/API/Switch.hlsl.meta new file mode 100644 index 000000000..e4e9aa2c9 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/Switch.hlsl.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6f67be869064ea34298bc051ba9f3589 +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/API/Vulkan.hlsl b/Assets/X-PostProcessing/Shaders/API/Vulkan.hlsl new file mode 100644 index 000000000..1982bcb36 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/Vulkan.hlsl @@ -0,0 +1,52 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/Assets/X-PostProcessing/Shaders/API/Vulkan.hlsl.meta b/Assets/X-PostProcessing/Shaders/API/Vulkan.hlsl.meta new file mode 100644 index 000000000..876c7aa6e --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/Vulkan.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e68962a8c3be55d489e1b3a614bfc152 +timeCreated: 1489754021 +licenseType: Store +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/API/XboxOne.hlsl b/Assets/X-PostProcessing/Shaders/API/XboxOne.hlsl new file mode 100644 index 000000000..1982bcb36 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/XboxOne.hlsl @@ -0,0 +1,52 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/Assets/X-PostProcessing/Shaders/API/XboxOne.hlsl.meta b/Assets/X-PostProcessing/Shaders/API/XboxOne.hlsl.meta new file mode 100644 index 000000000..ae63bf58c --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/API/XboxOne.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: a71cfe7924c81774b8b60914e582f72b +timeCreated: 1489754021 +licenseType: Store +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/Blending.hlsl b/Assets/X-PostProcessing/Shaders/Blending.hlsl new file mode 100644 index 000000000..f032c2974 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/Blending.hlsl @@ -0,0 +1,38 @@ + + +float3 BlendAdditive(float3 a, float3 b) +{ + return a + b; +} + +float3 BlendExclusion(float3 a, float3 b) +{ + return a + b - 2.0 * a * b; +} + +float3 BlendLighten(float3 a, float3 b) +{ + return max(a, b); +} + +//single channel overlay +float BlendOverlay(float a, float b) +{ + return (b < 0.5) ? 2.0 * a * b : 1.0 - 2.0 * (1.0 - a) * (1.0 - b); +} + +//RGB overlay +float3 BlendOverlay(float3 a, float3 b) +{ + float3 color; + color.r = BlendOverlay(a.r, b.r); + color.g = BlendOverlay(a.g, b.g); + color.b = BlendOverlay(a.b, b.b); + return color; +} + +float3 BlendScreen(float3 a, float3 b) +{ + return a + b - a * b; +} + diff --git a/Assets/X-PostProcessing/Shaders/Blending.hlsl.meta b/Assets/X-PostProcessing/Shaders/Blending.hlsl.meta new file mode 100644 index 000000000..71e5773d5 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/Blending.hlsl.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cb852e8e66981284395c564808e301f5 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/Colors.hlsl b/Assets/X-PostProcessing/Shaders/Colors.hlsl new file mode 100644 index 000000000..4361514c4 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/Colors.hlsl @@ -0,0 +1,650 @@ +#ifndef UNITY_POSTFX_COLOR +#define UNITY_POSTFX_COLOR + +#include "StdLib.hlsl" +#include "ACES.hlsl" + +#define LUT_SPACE_ENCODE(x) LinearToLogC(x) +#define LUT_SPACE_DECODE(x) LogCToLinear(x) + +#ifndef USE_PRECISE_LOGC + // Set to 1 to use more precise but more expensive log/linear conversions. I haven't found a proper + // use case for the high precision version yet so I'm leaving this to 0. + #define USE_PRECISE_LOGC 0 +#endif + +#ifndef TONEMAPPING_USE_FULL_ACES + // Set to 1 to use the full reference ACES tonemapper. This should only be used for research + // purposes as it's quite heavy and generally overkill. + #define TONEMAPPING_USE_FULL_ACES 0 +#endif + +#ifndef DEFAULT_MAX_PQ + // PQ ST.2048 max value + // 1.0 = 100nits, 100.0 = 10knits + #define DEFAULT_MAX_PQ 100.0 +#endif + +#ifndef USE_VERY_FAST_SRGB + #if defined(SHADER_API_MOBILE) + #define USE_VERY_FAST_SRGB 1 + #else + #define USE_VERY_FAST_SRGB 0 + #endif +#endif + +#ifndef USE_FAST_SRGB + #if defined(SHADER_API_CONSOLE) + #define USE_FAST_SRGB 1 + #else + #define USE_FAST_SRGB 0 + #endif +#endif + +// +// Alexa LogC converters (El 1000) +// See http://www.vocas.nl/webfm_send/964 +// Max range is ~58.85666 +// +struct ParamsLogC +{ + float cut; + float a, b, c, d, e, f; +}; + +static const ParamsLogC LogC = +{ + 0.011361, // cut + 5.555556, // a + 0.047996, // b + 0.244161, // c + 0.386036, // d + 5.301883, // e + 0.092819 // f +}; + +float LinearToLogC_Precise(half x) +{ + float o; + if (x > LogC.cut) + o = LogC.c * log10(LogC.a * x + LogC.b) + LogC.d; + else + o = LogC.e * x + LogC.f; + return o; +} + +float3 LinearToLogC(float3 x) +{ +#if USE_PRECISE_LOGC + return float3( + LinearToLogC_Precise(x.x), + LinearToLogC_Precise(x.y), + LinearToLogC_Precise(x.z) + ); +#else + return LogC.c * log10(LogC.a * x + LogC.b) + LogC.d; +#endif +} + +float LogCToLinear_Precise(float x) +{ + float o; + if (x > LogC.e * LogC.cut + LogC.f) + o = (pow(10.0, (x - LogC.d) / LogC.c) - LogC.b) / LogC.a; + else + o = (x - LogC.f) / LogC.e; + return o; +} + +float3 LogCToLinear(float3 x) +{ +#if USE_PRECISE_LOGC + return float3( + LogCToLinear_Precise(x.x), + LogCToLinear_Precise(x.y), + LogCToLinear_Precise(x.z) + ); +#else + return (pow(10.0, (x - LogC.d) / LogC.c) - LogC.b) / LogC.a; +#endif +} + +// +// SMPTE ST.2084 (PQ) transfer functions +// Used for HDR Lut storage, max range depends on the maxPQValue parameter +// +struct ParamsPQ +{ + float N, M; + float C1, C2, C3; +}; + +static const ParamsPQ PQ = +{ + 2610.0 / 4096.0 / 4.0, // N + 2523.0 / 4096.0 * 128.0, // M + 3424.0 / 4096.0, // C1 + 2413.0 / 4096.0 * 32.0, // C2 + 2392.0 / 4096.0 * 32.0, // C3 +}; + +float3 LinearToPQ(float3 x, float maxPQValue) +{ + x = PositivePow(x / maxPQValue, PQ.N); + float3 nd = (PQ.C1 + PQ.C2 * x) / (1.0 + PQ.C3 * x); + return PositivePow(nd, PQ.M); +} + +float3 LinearToPQ(float3 x) +{ + return LinearToPQ(x, DEFAULT_MAX_PQ); +} + +float3 PQToLinear(float3 x, float maxPQValue) +{ + x = PositivePow(x, rcp(PQ.M)); + float3 nd = max(x - PQ.C1, 0.0) / (PQ.C2 - (PQ.C3 * x)); + return PositivePow(nd, rcp(PQ.N)) * maxPQValue; +} + +float3 PQToLinear(float3 x) +{ + return PQToLinear(x, DEFAULT_MAX_PQ); +} + +// +// sRGB transfer functions +// Fast path ref: http://chilliant.blogspot.com.au/2012/08/srgb-approximations-for-hlsl.html?m=1 +// +half SRGBToLinear(half c) +{ +#if USE_VERY_FAST_SRGB + return c * c; +#elif USE_FAST_SRGB + return c * (c * (c * 0.305306011 + 0.682171111) + 0.012522878); +#else + half linearRGBLo = c / 12.92; + half linearRGBHi = PositivePow((c + 0.055) / 1.055, 2.4); + half linearRGB = (c <= 0.04045) ? linearRGBLo : linearRGBHi; + return linearRGB; +#endif +} + +half3 SRGBToLinear(half3 c) +{ +#if USE_VERY_FAST_SRGB + return c * c; +#elif USE_FAST_SRGB + return c * (c * (c * 0.305306011 + 0.682171111) + 0.012522878); +#else + half3 linearRGBLo = c / 12.92; + half3 linearRGBHi = PositivePow((c + 0.055) / 1.055, half3(2.4, 2.4, 2.4)); + half3 linearRGB = (c <= 0.04045) ? linearRGBLo : linearRGBHi; + return linearRGB; +#endif +} + +half4 SRGBToLinear(half4 c) +{ + return half4(SRGBToLinear(c.rgb), c.a); +} + +half LinearToSRGB(half c) +{ +#if USE_VERY_FAST_SRGB + return sqrt(c); +#elif USE_FAST_SRGB + return max(1.055 * PositivePow(c, 0.416666667) - 0.055, 0.0); +#else + half sRGBLo = c * 12.92; + half sRGBHi = (PositivePow(c, 1.0 / 2.4) * 1.055) - 0.055; + half sRGB = (c <= 0.0031308) ? sRGBLo : sRGBHi; + return sRGB; +#endif +} + +half3 LinearToSRGB(half3 c) +{ +#if USE_VERY_FAST_SRGB + return sqrt(c); +#elif USE_FAST_SRGB + return max(1.055 * PositivePow(c, 0.416666667) - 0.055, 0.0); +#else + half3 sRGBLo = c * 12.92; + half3 sRGBHi = (PositivePow(c, half3(1.0 / 2.4, 1.0 / 2.4, 1.0 / 2.4)) * 1.055) - 0.055; + half3 sRGB = (c <= 0.0031308) ? sRGBLo : sRGBHi; + return sRGB; +#endif +} + +half4 LinearToSRGB(half4 c) +{ + return half4(LinearToSRGB(c.rgb), c.a); +} + +// +// Convert rgb to luminance with rgb in linear space with sRGB primaries and D65 white point +// +half Luminance(half3 linearRgb) +{ + return dot(linearRgb, float3(0.2126729, 0.7151522, 0.0721750)); +} + +half Luminance(half4 linearRgba) +{ + return Luminance(linearRgba.rgb); +} + +// +// Quadratic color thresholding +// curve = (threshold - knee, knee * 2, 0.25 / knee) +// +half4 QuadraticThreshold(half4 color, half threshold, half3 curve) +{ + // Pixel brightness + half br = Max3(color.r, color.g, color.b); + + // Under-threshold part: quadratic curve + half rq = clamp(br - curve.x, 0.0, curve.y); + rq = curve.z * rq * rq; + + // Combine and apply the brightness response curve. + color *= max(rq, br - threshold) / max(br, EPSILON); + + return color; +} + +// +// Fast reversible tonemapper +// http://gpuopen.com/optimized-reversible-tonemapper-for-resolve/ +// +float3 FastTonemap(float3 c) +{ + return c * rcp(Max3(c.r, c.g, c.b) + 1.0); +} + +float4 FastTonemap(float4 c) +{ + return float4(FastTonemap(c.rgb), c.a); +} + +float3 FastTonemap(float3 c, float w) +{ + return c * (w * rcp(Max3(c.r, c.g, c.b) + 1.0)); +} + +float4 FastTonemap(float4 c, float w) +{ + return float4(FastTonemap(c.rgb, w), c.a); +} + +float3 FastTonemapInvert(float3 c) +{ + return c * rcp(1.0 - Max3(c.r, c.g, c.b)); +} + +float4 FastTonemapInvert(float4 c) +{ + return float4(FastTonemapInvert(c.rgb), c.a); +} + +// +// Neutral tonemapping (Hable/Hejl/Frostbite) +// Input is linear RGB +// +float3 NeutralCurve(float3 x, float a, float b, float c, float d, float e, float f) +{ + return ((x * (a * x + c * b) + d * e) / (x * (a * x + b) + d * f)) - e / f; +} + +float3 NeutralTonemap(float3 x) +{ + // Tonemap + float a = 0.2; + float b = 0.29; + float c = 0.24; + float d = 0.272; + float e = 0.02; + float f = 0.3; + float whiteLevel = 5.3; + float whiteClip = 1.0; + + float3 whiteScale = (1.0).xxx / NeutralCurve(whiteLevel, a, b, c, d, e, f); + x = NeutralCurve(x * whiteScale, a, b, c, d, e, f); + x *= whiteScale; + + // Post-curve white point adjustment + x /= whiteClip.xxx; + + return x; +} + +// +// Raw, unoptimized version of John Hable's artist-friendly tone curve +// Input is linear RGB +// +float EvalCustomSegment(float x, float4 segmentA, float2 segmentB) +{ + const float kOffsetX = segmentA.x; + const float kOffsetY = segmentA.y; + const float kScaleX = segmentA.z; + const float kScaleY = segmentA.w; + const float kLnA = segmentB.x; + const float kB = segmentB.y; + + float x0 = (x - kOffsetX) * kScaleX; + float y0 = (x0 > 0.0) ? exp(kLnA + kB * log(x0)) : 0.0; + return y0 * kScaleY + kOffsetY; +} + +float EvalCustomCurve(float x, float3 curve, float4 toeSegmentA, float2 toeSegmentB, float4 midSegmentA, float2 midSegmentB, float4 shoSegmentA, float2 shoSegmentB) +{ + float4 segmentA; + float2 segmentB; + + if (x < curve.y) + { + segmentA = toeSegmentA; + segmentB = toeSegmentB; + } + else if (x < curve.z) + { + segmentA = midSegmentA; + segmentB = midSegmentB; + } + else + { + segmentA = shoSegmentA; + segmentB = shoSegmentB; + } + + return EvalCustomSegment(x, segmentA, segmentB); +} + +// curve: x: inverseWhitePoint, y: x0, z: x1 +float3 CustomTonemap(float3 x, float3 curve, float4 toeSegmentA, float2 toeSegmentB, float4 midSegmentA, float2 midSegmentB, float4 shoSegmentA, float2 shoSegmentB) +{ + float3 normX = x * curve.x; + float3 ret; + ret.x = EvalCustomCurve(normX.x, curve, toeSegmentA, toeSegmentB, midSegmentA, midSegmentB, shoSegmentA, shoSegmentB); + ret.y = EvalCustomCurve(normX.y, curve, toeSegmentA, toeSegmentB, midSegmentA, midSegmentB, shoSegmentA, shoSegmentB); + ret.z = EvalCustomCurve(normX.z, curve, toeSegmentA, toeSegmentB, midSegmentA, midSegmentB, shoSegmentA, shoSegmentB); + return ret; +} + +// +// Filmic tonemapping (ACES fitting, unless TONEMAPPING_USE_FULL_ACES is set to 1) +// Input is ACES2065-1 (AP0 w/ linear encoding) +// +float3 AcesTonemap(float3 aces) +{ +#if TONEMAPPING_USE_FULL_ACES + + float3 oces = RRT(aces); + float3 odt = ODT_RGBmonitor_100nits_dim(oces); + return odt; + +#else + + // --- Glow module --- // + float saturation = rgb_2_saturation(aces); + float ycIn = rgb_2_yc(aces); + float s = sigmoid_shaper((saturation - 0.4) / 0.2); + float addedGlow = 1.0 + glow_fwd(ycIn, RRT_GLOW_GAIN * s, RRT_GLOW_MID); + aces *= addedGlow; + + // --- Red modifier --- // + float hue = rgb_2_hue(aces); + float centeredHue = center_hue(hue, RRT_RED_HUE); + float hueWeight; + { + //hueWeight = cubic_basis_shaper(centeredHue, RRT_RED_WIDTH); + hueWeight = smoothstep(0.0, 1.0, 1.0 - abs(2.0 * centeredHue / RRT_RED_WIDTH)); + hueWeight *= hueWeight; + } + + aces.r += hueWeight * saturation * (RRT_RED_PIVOT - aces.r) * (1.0 - RRT_RED_SCALE); + + // --- ACES to RGB rendering space --- // + float3 acescg = max(0.0, ACES_to_ACEScg(aces)); + + // --- Global desaturation --- // + //acescg = mul(RRT_SAT_MAT, acescg); + acescg = lerp(dot(acescg, AP1_RGB2Y).xxx, acescg, RRT_SAT_FACTOR.xxx); + + // Luminance fitting of *RRT.a1.0.3 + ODT.Academy.RGBmonitor_100nits_dim.a1.0.3*. + // https://github.com/colour-science/colour-unity/blob/master/Assets/Colour/Notebooks/CIECAM02_Unity.ipynb + // RMSE: 0.0012846272106 + const float a = 278.5085; + const float b = 10.7772; + const float c = 293.6045; + const float d = 88.7122; + const float e = 80.6889; + float3 x = acescg; + float3 rgbPost = (x * (a * x + b)) / (x * (c * x + d) + e); + + // Scale luminance to linear code value + // float3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // Apply gamma adjustment to compensate for dim surround + float3 linearCV = darkSurround_to_dimSurround(rgbPost); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, color); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + float3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // Apply CAT from ACES white point to assumed observer adapted white point + XYZ = mul(D60_2_D65_CAT, XYZ); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + return linearCV; + +#endif +} + +// +// 3D LUT grading +// scaleOffset = (1 / lut_size, lut_size - 1) +// +half3 ApplyLut3D(TEXTURE3D_ARGS(tex, samplerTex), float3 uvw, float2 scaleOffset) +{ + uvw.xyz = uvw.xyz * scaleOffset.yyy * scaleOffset.xxx + scaleOffset.xxx * 0.5; + return SAMPLE_TEXTURE3D(tex, samplerTex, uvw).rgb; +} + +// +// 2D LUT grading +// scaleOffset = (1 / lut_width, 1 / lut_height, lut_height - 1) +// +half3 ApplyLut2D(TEXTURE2D_ARGS(tex, samplerTex), float3 uvw, float3 scaleOffset) +{ + // Strip format where `height = sqrt(width)` + uvw.z *= scaleOffset.z; + float shift = floor(uvw.z); + uvw.xy = uvw.xy * scaleOffset.z * scaleOffset.xy + scaleOffset.xy * 0.5; + uvw.x += shift * scaleOffset.y; + uvw.xyz = lerp( + SAMPLE_TEXTURE2D(tex, samplerTex, uvw.xy).rgb, + SAMPLE_TEXTURE2D(tex, samplerTex, uvw.xy + float2(scaleOffset.y, 0.0)).rgb, + uvw.z - shift + ); + return uvw; +} + +// +// Returns the default value for a given position on a 2D strip-format color lookup table +// params = (lut_height, 0.5 / lut_width, 0.5 / lut_height, lut_height / lut_height - 1) +// +float3 GetLutStripValue(float2 uv, float4 params) +{ + uv -= params.yz; + float3 color; + color.r = frac(uv.x * params.x); + color.b = uv.x - color.r / params.x; + color.g = uv.y; + return color * params.w; +} + +// +// White balance +// Recommended workspace: ACEScg (linear) +// +static const float3x3 LIN_2_LMS_MAT = { + 3.90405e-1, 5.49941e-1, 8.92632e-3, + 7.08416e-2, 9.63172e-1, 1.35775e-3, + 2.31082e-2, 1.28021e-1, 9.36245e-1 +}; + +static const float3x3 LMS_2_LIN_MAT = { + 2.85847e+0, -1.62879e+0, -2.48910e-2, + -2.10182e-1, 1.15820e+0, 3.24281e-4, + -4.18120e-2, -1.18169e-1, 1.06867e+0 +}; + +float3 WhiteBalance(float3 c, float3 balance) +{ + float3 lms = mul(LIN_2_LMS_MAT, c); + lms *= balance; + return mul(LMS_2_LIN_MAT, lms); +} + +// +// RGB / Full-range YCbCr conversions (ITU-R BT.601) +// +float3 RgbToYCbCr(float3 c) +{ + float Y = 0.299 * c.r + 0.587 * c.g + 0.114 * c.b; + float Cb = -0.169 * c.r - 0.331 * c.g + 0.500 * c.b; + float Cr = 0.500 * c.r - 0.419 * c.g - 0.081 * c.b; + return float3(Y, Cb, Cr); +} + +float3 YCbCrToRgb(float3 c) +{ + float R = c.x + 0.000 * c.y + 1.403 * c.z; + float G = c.x - 0.344 * c.y - 0.714 * c.z; + float B = c.x - 1.773 * c.y + 0.000 * c.z; + return float3(R, G, B); +} + +// +// Hue, Saturation, Value +// Ranges: +// Hue [0.0, 1.0] +// Sat [0.0, 1.0] +// Lum [0.0, HALF_MAX] +// +float3 RgbToHsv(float3 c) +{ + float4 K = float4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); + float4 p = lerp(float4(c.bg, K.wz), float4(c.gb, K.xy), step(c.b, c.g)); + float4 q = lerp(float4(p.xyw, c.r), float4(c.r, p.yzx), step(p.x, c.r)); + float d = q.x - min(q.w, q.y); + float e = EPSILON; + return float3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); +} + +float3 HsvToRgb(float3 c) +{ + float4 K = float4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); + float3 p = abs(frac(c.xxx + K.xyz) * 6.0 - K.www); + return c.z * lerp(K.xxx, saturate(p - K.xxx), c.y); +} + +float RotateHue(float value, float low, float hi) +{ + return (value < low) + ? value + hi + : (value > hi) + ? value - hi + : value; +} + +// +// RGB Saturation (closer to a vibrance effect than actual saturation) +// Recommended workspace: ACEScg (linear) +// Optimal range: [0.0, 2.0] +// +float3 Saturation(float3 c, float sat) +{ + float luma = Luminance(c); + return luma.xxx + sat.xxx * (c - luma.xxx); +} + +// +// Contrast (reacts better when applied in log) +// Optimal range: [0.0, 2.0] +// +float3 Contrast(float3 c, float midpoint, float contrast) +{ + return (c - midpoint) * contrast + midpoint; +} + +// +// Lift, Gamma (pre-inverted), Gain tuned for HDR use - best used with the ACES tonemapper as +// negative values will creep in the result +// Expected workspace: ACEScg (linear) +// +float3 LiftGammaGainHDR(float3 c, float3 lift, float3 invgamma, float3 gain) +{ + c = c * gain + lift; + + // ACEScg will output negative values, as clamping to 0 will lose precious information we'll + // mirror the gamma function instead + return FastSign(c) * pow(abs(c), invgamma); +} + +// +// Lift, Gamma (pre-inverted), Gain tuned for LDR use +// Input is linear RGB +// +float3 LiftGammaGainLDR(float3 c, float3 lift, float3 invgamma, float3 gain) +{ + c = saturate(PositivePow(saturate(c), invgamma)); + return gain * c + lift * (1.0 - c); +} + +// +// Remaps Y/R/G/B values +// curveTex has to be 128 pixels wide +// +float3 YrgbCurve(float3 c, TEXTURE2D_ARGS(curveTex, sampler_curveTex)) +{ + const float kHalfPixel = (1.0 / 128.0) / 2.0; + + // Y (master) + c += kHalfPixel.xxx; + float mr = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.r, 0.75)).a; + float mg = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.g, 0.75)).a; + float mb = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.b, 0.75)).a; + c = saturate(float3(mr, mg, mb)); + + // RGB + c += kHalfPixel.xxx; + float r = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.r, 0.75)).r; + float g = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.g, 0.75)).g; + float b = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.b, 0.75)).b; + return saturate(float3(r, g, b)); +} + +// +// Channel mixing (same as Photoshop's and DaVinci's Resolve) +// Recommended workspace: ACEScg (linear) +// Input mixers should be in range [-2.0; 2.0] +// +float3 ChannelMixer(float3 c, float3 red, float3 green, float3 blue) +{ + return float3( + dot(c, red), + dot(c, green), + dot(c, blue) + ); +} + +#endif // UNITY_POSTFX_COLOR diff --git a/Assets/X-PostProcessing/Shaders/Colors.hlsl.meta b/Assets/X-PostProcessing/Shaders/Colors.hlsl.meta new file mode 100644 index 000000000..649b4891e --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/Colors.hlsl.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c538cea31550b1f4f8300803095caa5b +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/Editor.meta b/Assets/X-PostProcessing/Shaders/Editor.meta new file mode 100644 index 000000000..d69cfc267 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8a685cab5827c5548a28147154ca4398 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/Editor/ColorWheel.shader b/Assets/X-PostProcessing/Shaders/Editor/ColorWheel.shader new file mode 100644 index 000000000..06c955a1b --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/Editor/ColorWheel.shader @@ -0,0 +1,118 @@ +Shader "Hidden/PostProcessing/Editor/ColorWheel" +{ + CGINCLUDE + + #include "UnityCG.cginc" + + #define PI 3.14159265359 + #define PI2 6.28318530718 + + float _Offset; + float _DisabledState; + float2 _Resolution; // x: size, y: size / 2 + + float3 HsvToRgb(float3 c) + { + float4 K = float4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); + float3 p = abs(frac(c.xxx + K.xyz) * 6.0 - K.www); + return c.z * lerp(K.xxx, saturate(p - K.xxx), c.y); + } + + float4 CreateWheel(v2f_img i, float crossColor, float offsetColor) + { + const float kHueOuterRadius = 0.45; + const float kHueInnerRadius = 0.28;////adjust to 0.28 + const float kLumOuterRadius = 0.495; + const float kLumInnerRadius = 0.48; + + float4 color = (0.0).xxxx; + float2 uvc = i.uv - (0.5).xx; + float dist = sqrt(dot(uvc, uvc)); + float delta = fwidth(dist); + float angle = atan2(uvc.x, uvc.y); + + // Cross + { + float radius = (0.5 - kHueInnerRadius) * _Resolution.x + 1.0; + float2 pixel = (_Resolution.xx - 1.0) * i.uv + 1.0; + + float vline = step(floor(fmod(pixel.x, _Resolution.y)), 0.0); + vline *= step(radius, pixel.y) * step(pixel.y, _Resolution.x - radius); + + float hline = step(floor(fmod(pixel.y, _Resolution.y)), 0.0); + hline *= step(radius, pixel.x) * step(pixel.x, _Resolution.x - radius); + + color += hline.xxxx * (1.0).xxxx; + color += vline.xxxx * (1.0).xxxx; + color = saturate(color); + color *= half4((crossColor).xxx, 0.05); + } + + // Hue + { + float alphaOut = smoothstep(kHueOuterRadius - delta, kHueOuterRadius + delta, dist); + float alphaIn = smoothstep(kHueInnerRadius - delta, kHueInnerRadius + delta, dist); + + float hue = angle; + hue = 1.0 - ((hue > 0.0) ? hue : PI2 + hue) / PI2; + float4 c = float4(HsvToRgb(float3(hue, 1.0, 1.0)), 1.0); + color += lerp((0.0).xxxx, c, alphaIn - alphaOut); + } + + // Offset + { + float alphaOut = smoothstep(kLumOuterRadius - delta, kLumOuterRadius + delta, dist); + float alphaIn = smoothstep(kLumInnerRadius - delta, kLumInnerRadius + delta / 2, dist); + float4 c = float4((offsetColor).xxx, 1.0); + + float a = PI * _Offset; + if (_Offset >= 0 && angle < a && angle > 0.0) + c = float4((1.0).xxx, 0.5); + else if (angle > a && angle < 0.0) + c = float4((1.0).xxx, 0.5); + + color += lerp((0.0).xxxx, c, alphaIn - alphaOut); + } + + return color * _DisabledState; + } + + float4 FragTrackballDark(v2f_img i) : SV_Target + { + return CreateWheel(i, 1.0, 0.15); + } + + float4 FragTrackballLight(v2f_img i) : SV_Target + { + return CreateWheel(i, 0.0, 0.3); + } + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // (0) Dark skin + Pass + { + CGPROGRAM + + #pragma vertex vert_img + #pragma fragment FragTrackballDark + + ENDCG + } + + // (1) Light skin + Pass + { + CGPROGRAM + + #pragma vertex vert_img + #pragma fragment FragTrackballLight + + ENDCG + } + } +} diff --git a/Assets/X-PostProcessing/Shaders/Editor/ColorWheel.shader.meta b/Assets/X-PostProcessing/Shaders/Editor/ColorWheel.shader.meta new file mode 100644 index 000000000..292214e74 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/Editor/ColorWheel.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 275649fd4f3bf9e449217f111493d01d +timeCreated: 1493903699 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/License.txt b/Assets/X-PostProcessing/Shaders/License.txt new file mode 100644 index 000000000..b1ea349f1 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/License.txt @@ -0,0 +1,5 @@ +Post-processing copyright ?2017 Unity Technologies ApS + +Licensed under the Unity Companion License for Unity-dependent projects--see Unity Companion License. + +Unless expressly provided otherwise, the Software under this license is made available strictly on an AS IS?BASIS WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. Please review the license for details on these and other terms and conditions. \ No newline at end of file diff --git a/Assets/X-PostProcessing/Shaders/License.txt.meta b/Assets/X-PostProcessing/Shaders/License.txt.meta new file mode 100644 index 000000000..528ee1929 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/License.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4a573eb73ecca5a47a5920beb8234377 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/Sampling.hlsl b/Assets/X-PostProcessing/Shaders/Sampling.hlsl new file mode 100644 index 000000000..f92b9c3d6 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/Sampling.hlsl @@ -0,0 +1,91 @@ +#ifndef UNITY_POSTFX_SAMPLING +#define UNITY_POSTFX_SAMPLING + +#include "StdLib.hlsl" + +// Better, temporally stable box filtering +// [Jimenez14] http://goo.gl/eomGso +// . . . . . . . +// . A . B . C . +// . . D . E . . +// . F . G . H . +// . . I . J . . +// . K . L . M . +// . . . . . . . +half4 DownsampleBox13Tap(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize) +{ + half4 A = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-1.0, -1.0))); + half4 B = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.0, -1.0))); + half4 C = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 1.0, -1.0))); + half4 D = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-0.5, -0.5))); + half4 E = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.5, -0.5))); + half4 F = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-1.0, 0.0))); + half4 G = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv )); + half4 H = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 1.0, 0.0))); + half4 I = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-0.5, 0.5))); + half4 J = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.5, 0.5))); + half4 K = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-1.0, 1.0))); + half4 L = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.0, 1.0))); + half4 M = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 1.0, 1.0))); + + half2 div = (1.0 / 4.0) * half2(0.5, 0.125); + + half4 o = (D + E + I + J) * div.x; + o += (A + B + G + F) * div.y; + o += (B + C + H + G) * div.y; + o += (F + G + L + K) * div.y; + o += (G + H + M + L) * div.y; + + return o; +} + +// Standard box filtering +half4 DownsampleBox4Tap(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize) +{ + float4 d = texelSize.xyxy * float4(-1.0, -1.0, 1.0, 1.0); + + half4 s; + s = (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xy))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zy))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xw))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zw))); + + return s * (1.0 / 4.0); +} + +// 9-tap bilinear upsampler (tent filter) +half4 UpsampleTent(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize, float4 sampleScale) +{ + float4 d = texelSize.xyxy * float4(1.0, 1.0, -1.0, 0.0) * sampleScale; + + half4 s; + s = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv - d.xy)); + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv - d.wy)) * 2.0; + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv - d.zy)); + + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zw)) * 2.0; + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv )) * 4.0; + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xw)) * 2.0; + + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zy)); + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.wy)) * 2.0; + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xy)); + + return s * (1.0 / 16.0); +} + +// Standard box filtering +half4 UpsampleBox(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize, float4 sampleScale) +{ + float4 d = texelSize.xyxy * float4(-1.0, -1.0, 1.0, 1.0) * (sampleScale * 0.5); + + half4 s; + s = (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xy))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zy))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xw))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zw))); + + return s * (1.0 / 4.0); +} + +#endif // UNITY_POSTFX_SAMPLING diff --git a/Assets/X-PostProcessing/Shaders/Sampling.hlsl.meta b/Assets/X-PostProcessing/Shaders/Sampling.hlsl.meta new file mode 100644 index 000000000..5da9a5d2d --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/Sampling.hlsl.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e9e2fed3630276b438e33b9ca848266e +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/StdLib.hlsl b/Assets/X-PostProcessing/Shaders/StdLib.hlsl new file mode 100644 index 000000000..224dc7263 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/StdLib.hlsl @@ -0,0 +1,322 @@ +// Because this framework is supposed to work with the legacy render pipelines AND scriptable render +// pipelines we can't use Unity's shader libraries (some scriptable pipelines come with their own +// shader lib). So here goes a minimal shader lib only used for post-processing to ensure good +// compatibility with all pipelines. + +#ifndef UNITY_POSTFX_STDLIB +#define UNITY_POSTFX_STDLIB + +// ----------------------------------------------------------------------------- +// API macros + +#if defined(SHADER_API_PSSL) + #include "API/PSSL.hlsl" +#elif defined(SHADER_API_XBOXONE) + #include "API/XboxOne.hlsl" +#elif defined(SHADER_API_D3D11) + #include "API/D3D11.hlsl" +#elif defined(SHADER_API_D3D12) + #include "API/D3D12.hlsl" +#elif defined(SHADER_API_D3D9) || defined(SHADER_API_D3D11_9X) + #include "API/D3D9.hlsl" +#elif defined(SHADER_API_VULKAN) + #include "API/Vulkan.hlsl" +#elif defined(SHADER_API_SWITCH) + #include "API/Switch.hlsl" +#elif defined(SHADER_API_METAL) + #include "API/Metal.hlsl" +#elif defined(SHADER_API_PSP2) + #include "API/PSP2.hlsl" +#else + #include "API/OpenGL.hlsl" +#endif + +#if defined(SHADER_API_PSSL) || defined(SHADER_API_XBOXONE) || defined(SHADER_API_SWITCH) || defined(SHADER_API_PSP2) + #define SHADER_API_CONSOLE +#endif + +// ----------------------------------------------------------------------------- +// Constants + +#define HALF_MAX 65504.0 // (2 - 2^-10) * 2^15 +#define HALF_MAX_MINUS1 65472.0 // (2 - 2^-9) * 2^15 +#define EPSILON 1.0e-4 +#define PI 3.14159265359 +#define TWO_PI 6.28318530718 +#define FOUR_PI 12.56637061436 +#define INV_PI 0.31830988618 +#define INV_TWO_PI 0.15915494309 +#define INV_FOUR_PI 0.07957747155 +#define HALF_PI 1.57079632679 +#define INV_HALF_PI 0.636619772367 + +#define FLT_EPSILON 1.192092896e-07 // Smallest positive number, such that 1.0 + FLT_EPSILON != 1.0 +#define FLT_MIN 1.175494351e-38 // Minimum representable positive floating-point number +#define FLT_MAX 3.402823466e+38 // Maximum representable floating-point number + +// ----------------------------------------------------------------------------- +// Compatibility functions + +#if (SHADER_TARGET < 50 && !defined(SHADER_API_PSSL)) +float rcp(float value) +{ + return 1.0 / value; +} +#endif + +#if defined(SHADER_API_GLES) +#define mad(a, b, c) (a * b + c) +#endif + +#ifndef INTRINSIC_MINMAX3 +float Min3(float a, float b, float c) +{ + return min(min(a, b), c); +} + +float2 Min3(float2 a, float2 b, float2 c) +{ + return min(min(a, b), c); +} + +float3 Min3(float3 a, float3 b, float3 c) +{ + return min(min(a, b), c); +} + +float4 Min3(float4 a, float4 b, float4 c) +{ + return min(min(a, b), c); +} + +float Max3(float a, float b, float c) +{ + return max(max(a, b), c); +} + +float2 Max3(float2 a, float2 b, float2 c) +{ + return max(max(a, b), c); +} + +float3 Max3(float3 a, float3 b, float3 c) +{ + return max(max(a, b), c); +} + +float4 Max3(float4 a, float4 b, float4 c) +{ + return max(max(a, b), c); +} +#endif // INTRINSIC_MINMAX3 + +// https://twitter.com/SebAaltonen/status/878250919879639040 +// madd_sat + madd +float FastSign(float x) +{ + return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; +} + +float2 FastSign(float2 x) +{ + return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; +} + +float3 FastSign(float3 x) +{ + return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; +} + +float4 FastSign(float4 x) +{ + return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; +} + +// Using pow often result to a warning like this +// "pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them" +// PositivePow remove this warning when you know the value is positive and avoid inf/NAN. +float PositivePow(float base, float power) +{ + return pow(max(abs(base), float(FLT_EPSILON)), power); +} + +float2 PositivePow(float2 base, float2 power) +{ + return pow(max(abs(base), float2(FLT_EPSILON, FLT_EPSILON)), power); +} + +float3 PositivePow(float3 base, float3 power) +{ + return pow(max(abs(base), float3(FLT_EPSILON, FLT_EPSILON, FLT_EPSILON)), power); +} + +float4 PositivePow(float4 base, float4 power) +{ + return pow(max(abs(base), float4(FLT_EPSILON, FLT_EPSILON, FLT_EPSILON, FLT_EPSILON)), power); +} + +// NaN checker +// /Gic isn't enabled on fxc so we can't rely on isnan() anymore +bool IsNan(float x) +{ + // For some reason the following tests outputs "internal compiler error" randomly on desktop + // so we'll use a safer but slightly slower version instead :/ + //return (x <= 0.0 || 0.0 <= x) ? false : true; + return (x < 0.0 || x > 0.0 || x == 0.0) ? false : true; +} + +bool AnyIsNan(float2 x) +{ + return IsNan(x.x) || IsNan(x.y); +} + +bool AnyIsNan(float3 x) +{ + return IsNan(x.x) || IsNan(x.y) || IsNan(x.z); +} + +bool AnyIsNan(float4 x) +{ + return IsNan(x.x) || IsNan(x.y) || IsNan(x.z) || IsNan(x.w); +} + +// ----------------------------------------------------------------------------- +// Std unity data + +float4x4 unity_CameraProjection; +float4x4 unity_MatrixVP; +float4x4 unity_ObjectToWorld; +float4x4 unity_WorldToCamera; +float3 _WorldSpaceCameraPos; +float4 _ProjectionParams; // x: 1 (-1 flipped), y: near, z: far, w: 1/far +float4 unity_ColorSpaceLuminance; +float4 unity_DeltaTime; // x: dt, y: 1/dt, z: smoothDt, w: 1/smoothDt +float4 unity_OrthoParams; // x: width, y: height, z: unused, w: ortho ? 1 : 0 +float4 _ZBufferParams; // x: 1-far/near, y: far/near, z: x/far, w: y/far +float4 _ScreenParams; // x: width, y: height, z: 1+1/width, w: 1+1/height +float4 _Time; // x: t/20, y: t, z: t*2, w: t*3 +float4 _SinTime; // x: sin(t/20), y: sin(t), z: sin(t*2), w: sin(t*3) +float4 _CosTime; // x: cos(t/20), y: cos(t), z: cos(t*2), w: cos(t*3) + +// ----------------------------------------------------------------------------- +// Std functions + +// Z buffer depth to linear 0-1 depth +// Handles orthographic projection correctly +float Linear01Depth(float z) +{ + float isOrtho = unity_OrthoParams.w; + float isPers = 1.0 - unity_OrthoParams.w; + z *= _ZBufferParams.x; + return (1.0 - isOrtho * z) / (isPers * z + _ZBufferParams.y); +} + +float LinearEyeDepth(float z) +{ + return rcp(_ZBufferParams.z * z + _ZBufferParams.w); +} + +// Clamp HDR value within a safe range +half3 SafeHDR(half3 c) +{ + return min(c, HALF_MAX); +} + +half4 SafeHDR(half4 c) +{ + return min(c, HALF_MAX); +} + +// Decode normals stored in _CameraDepthNormalsTexture +float3 DecodeViewNormalStereo(float4 enc4) +{ + float kScale = 1.7777; + float3 nn = enc4.xyz * float3(2.0 * kScale, 2.0 * kScale, 0) + float3(-kScale, -kScale, 1); + float g = 2.0 / dot(nn.xyz, nn.xyz); + float3 n; + n.xy = g * nn.xy; + n.z = g - 1.0; + return n; +} + +// Interleaved gradient function from Jimenez 2014 +// http://www.iryoku.com/next-generation-post-processing-in-call-of-duty-advanced-warfare +float GradientNoise(float2 uv) +{ + uv = floor(uv * _ScreenParams.xy); + float f = dot(float2(0.06711056, 0.00583715), uv); + return frac(52.9829189 * frac(f)); +} + +// Vertex manipulation +float2 TransformTriangleVertexToUV(float2 vertex) +{ + float2 uv = (vertex + 1.0) * 0.5; + return uv; +} + +#include "xRLib.hlsl" + +// ----------------------------------------------------------------------------- +// Default vertex shaders + +struct AttributesDefault +{ + float3 vertex : POSITION; +}; + +struct VaryingsDefault +{ + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float2 texcoordStereo : TEXCOORD1; +#if STEREO_INSTANCING_ENABLED + uint stereoTargetEyeIndex : SV_RenderTargetArrayIndex; +#endif +}; + +#if STEREO_INSTANCING_ENABLED +float _DepthSlice; +#endif + +VaryingsDefault VertDefault(AttributesDefault v) +{ + VaryingsDefault o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + +#if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); +#endif + + o.texcoordStereo = TransformStereoScreenSpaceTex(o.texcoord, 1.0); + + return o; +} + +float4 _UVTransform; // xy: scale, wz: translate + +#if STEREO_DOUBLEWIDE_TARGET +float4 _PosScaleOffset; // xy: scale, wz: offset +#endif + +VaryingsDefault VertUVTransform(AttributesDefault v) +{ + VaryingsDefault o; + +#if STEREO_DOUBLEWIDE_TARGET + o.vertex = float4(v.vertex.xy * _PosScaleOffset.xy + _PosScaleOffset.zw, 0.0, 1.0); +#else + o.vertex = float4(v.vertex.xy, 0.0, 1.0); +#endif + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy) * _UVTransform.xy + _UVTransform.zw; + o.texcoordStereo = TransformStereoScreenSpaceTex(o.texcoord, 1.0); +#if STEREO_INSTANCING_ENABLED + o.stereoTargetEyeIndex = (uint)_DepthSlice; +#endif + return o; +} + +#define TRANSFORM_TEX(tex,name) (tex.xy * name##_ST.xy + name##_ST.zw) + +#endif // UNITY_POSTFX_STDLIB diff --git a/Assets/X-PostProcessing/Shaders/StdLib.hlsl.meta b/Assets/X-PostProcessing/Shaders/StdLib.hlsl.meta new file mode 100644 index 000000000..bae8af648 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/StdLib.hlsl.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86258f1ffe58a0846997120fd95f2c5a +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/XNoiseLibrary.hlsl b/Assets/X-PostProcessing/Shaders/XNoiseLibrary.hlsl new file mode 100644 index 000000000..0f9d85b54 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/XNoiseLibrary.hlsl @@ -0,0 +1,971 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +//---------------------------------------------------------------------------------------------------------- +// XNoiseLibrary.hlsl +// A Collection of 2D/3D/4D Simplex Noise 、 2D/3D textureless classic Noise 、Re-oriented 4 / 8-Point BCC Noise +// +// Reference 1: Webgl Noise - https://github.com/ashima/webgl-noise +// Reference 2: KdotJPG New Simplex Style Gradient Noise - https://github.com/KdotJPG/New-Simplex-Style-Gradient-Noise +// Reference 3: Noise Shader Library for Unity - https://github.com/keijiro/NoiseShader +// Reference 4: noiseSimplex.cginc - https://forum.unity.com/threads/2d-3d-4d-optimised-perlin-noise-cg-hlsl-library-cginc.218372/ +// ---------------------------------------------------------------------------------------------------------- + + +#ifndef X_NOISE_LIBRARY +#define X_NOISE_LIBRARY + + +//================================================================================================================================== +// 0. Comon +//================================================================================================================================== +// 1 / 289 +#define NOISE_SIMPLEX_1_DIV_289 0.00346020761245674740484429065744f + +float mod289(float x) +{ + return x - floor(x * NOISE_SIMPLEX_1_DIV_289) * 289.0; +} + +float2 mod289(float2 x) +{ + return x - floor(x * NOISE_SIMPLEX_1_DIV_289) * 289.0; +} + +float3 mod289(float3 x) +{ + return x - floor(x * NOISE_SIMPLEX_1_DIV_289) * 289.0; +} + +float4 mod289(float4 x) +{ + return x - floor(x * NOISE_SIMPLEX_1_DIV_289) * 289.0; +} + +float4 mod(float4 x, float4 y) +{ + return x - y * floor(x / y); +} + +float3 mod(float3 x, float3 y) +{ + return x - y * floor(x / y); +} + +// ( x*34.0 + 1.0 )*x =x*x*34.0 + x +float permute(float x) +{ + return mod289(x * x * 34.0 + x); +} + +float3 permute(float3 x) +{ + return mod289(x * x * 34.0 + x); +} + +float4 permute(float4 x) +{ + return mod289(x * x * 34.0 + x); +} + +float3 taylorInvSqrt(float3 r) +{ + return 1.79284291400159 - 0.85373472095314 * r; +} + +float4 taylorInvSqrt(float4 r) +{ + return 1.79284291400159 - r * 0.85373472095314; +} + +float2 fade(float2 t) +{ + return t * t * t * (t * (t * 6.0 - 15.0) + 10.0); +} + + +float3 fade(float3 t) +{ + return t * t * t * (t * (t * 6.0 - 15.0) + 10.0); +} + +//================================================================================================================================== +// 1. Simplex Noise +//================================================================================================================================== +// +// This shader is based on the webgl-noise GLSL shader. For further details +// of the original shader, please see the following description from the +// original source code. +// +// +// Description : Array and textureless GLSL 2D/3D/4D simplex +// noise functions. +// Author : Ian McEwan, Ashima Arts. +// Maintainer : ijm +// Lastmod : 20110822 (ijm) +// License : Copyright (C) 2011 Ashima Arts. All rights reserved. +// Distributed under the MIT License. See LICENSE file. +// https://github.com/ashima/webgl-noise +// +// +// Usage: +// float ns = snoise(v); +// v is any of: float2, float3, float4 +// Return type is float. +// To generate 2 or more components of noise(colorful noise), +// call these functions several times with different +// constant offsets for the arguments. +// E.g.: + +// float3 colorNs = float3( +// snoise(v), +// snoise(v + 17.0), +// snoise(v - 43.0), +// ); + + +//----------------------------------------------------[1.1] 2D Simplex Noise ---------------------------------------------------- + + +float snoise(float2 v) +{ + const float4 C = float4(0.211324865405187, // (3.0-sqrt(3.0))/6.0 + 0.366025403784439, // 0.5*(sqrt(3.0)-1.0) + - 0.577350269189626, // -1.0 + 2.0 * C.x + 0.024390243902439); // 1.0 / 41.0 + // First corner + float2 i = floor(v + dot(v, C.yy)); + float2 x0 = v - i + dot(i, C.xx); + + // Other corners + float2 i1; + i1.x = step(x0.y, x0.x); + i1.y = 1.0 - i1.x; + + // x1 = x0 - i1 + 1.0 * C.xx; + // x2 = x0 - 1.0 + 2.0 * C.xx; + float2 x1 = x0 + C.xx - i1; + float2 x2 = x0 + C.zz; + + // Permutations + i = mod289(i); // Avoid truncation effects in permutation + float3 p = permute(permute(i.y + float3(0.0, i1.y, 1.0)) + + i.x + float3(0.0, i1.x, 1.0)); + + float3 m = max(0.5 - float3(dot(x0, x0), dot(x1, x1), dot(x2, x2)), 0.0); + m = m * m; + m = m * m; + + // Gradients: 41 points uniformly over a line, mapped onto a diamond. + // The ring size 17*17 = 289 is close to a multiple of 41 (41*7 = 287) + float3 x = 2.0 * frac(p * C.www) - 1.0; + float3 h = abs(x) - 0.5; + float3 ox = floor(x + 0.5); + float3 a0 = x - ox; + + // Normalise gradients implicitly by scaling m + m *= taylorInvSqrt(a0 * a0 + h * h); + + // Compute final noise value at P + float3 g; + g.x = a0.x * x0.x + h.x * x0.y; + g.y = a0.y * x1.x + h.y * x1.y; + g.z = a0.z * x2.x + h.z * x2.y; + return 130.0 * dot(m, g); +} + +float3 snoise_grad(float2 v) +{ + const float4 C = float4(0.211324865405187, // (3.0-sqrt(3.0))/6.0 + 0.366025403784439, // 0.5*(sqrt(3.0)-1.0) + - 0.577350269189626, // -1.0 + 2.0 * C.x + 0.024390243902439); // 1.0 / 41.0 + // First corner + float2 i = floor(v + dot(v, C.yy)); + float2 x0 = v - i + dot(i, C.xx); + + // Other corners + float2 i1; + i1.x = step(x0.y, x0.x); + i1.y = 1.0 - i1.x; + + // x1 = x0 - i1 + 1.0 * C.xx; + // x2 = x0 - 1.0 + 2.0 * C.xx; + float2 x1 = x0 + C.xx - i1; + float2 x2 = x0 + C.zz; + + // Permutations + i = mod289(i); // Avoid truncation effects in permutation + float3 p = permute(permute(i.y + float3(0.0, i1.y, 1.0)) + + i.x + float3(0.0, i1.x, 1.0)); + + float3 m = max(0.5 - float3(dot(x0, x0), dot(x1, x1), dot(x2, x2)), 0.0); + float3 m2 = m * m; + float3 m3 = m2 * m; + float3 m4 = m2 * m2; + + // Gradients: 41 points uniformly over a line, mapped onto a diamond. + // The ring size 17*17 = 289 is close to a multiple of 41 (41*7 = 287) + float3 x = 2.0 * frac(p * C.www) - 1.0; + float3 h = abs(x) - 0.5; + float3 ox = floor(x + 0.5); + float3 a0 = x - ox; + + // Normalise gradients + float3 norm = taylorInvSqrt(a0 * a0 + h * h); + float2 g0 = float2(a0.x, h.x) * norm.x; + float2 g1 = float2(a0.y, h.y) * norm.y; + float2 g2 = float2(a0.z, h.z) * norm.z; + + // Compute noise and gradient at P + float2 grad = -6.0 * m3.x * x0 * dot(x0, g0) + m4.x * g0 + + - 6.0 * m3.y * x1 * dot(x1, g1) + m4.y * g1 + + - 6.0 * m3.z * x2 * dot(x2, g2) + m4.z * g2; + float3 px = float3(dot(x0, g0), dot(x1, g1), dot(x2, g2)); + return 130.0 * float3(grad, dot(m4, px)); +} + + + + +//---------------------------------------------------[1.2] 3D Simplex Noise --------------------------------------------- + +float snoise(float3 v) +{ + const float2 C = float2(1.0 / 6.0, 1.0 / 3.0); + + // First corner + float3 i = floor(v + dot(v, C.yyy)); + float3 x0 = v - i + dot(i, C.xxx); + + // Other corners + float3 g = step(x0.yzx, x0.xyz); + float3 l = 1.0 - g; + float3 i1 = min(g.xyz, l.zxy); + float3 i2 = max(g.xyz, l.zxy); + + // x1 = x0 - i1 + 1.0 * C.xxx; + // x2 = x0 - i2 + 2.0 * C.xxx; + // x3 = x0 - 1.0 + 3.0 * C.xxx; + float3 x1 = x0 - i1 + C.xxx; + float3 x2 = x0 - i2 + C.yyy; + float3 x3 = x0 - 0.5; + + // Permutations + i = mod289(i); // Avoid truncation effects in permutation + float4 p = permute(permute(permute(i.z + float4(0.0, i1.z, i2.z, 1.0)) + + i.y + float4(0.0, i1.y, i2.y, 1.0)) + + i.x + float4(0.0, i1.x, i2.x, 1.0)); + + // Gradients: 7x7 points over a square, mapped onto an octahedron. + // The ring size 17*17 = 289 is close to a multiple of 49 (49*6 = 294) + float4 j = p - 49.0 * floor(p / 49.0); // mod(p,7*7) + + float4 x_ = floor(j / 7.0); + float4 y_ = floor(j - 7.0 * x_); // mod(j,N) + + float4 x = (x_ * 2.0 + 0.5) / 7.0 - 1.0; + float4 y = (y_ * 2.0 + 0.5) / 7.0 - 1.0; + + float4 h = 1.0 - abs(x) - abs(y); + + float4 b0 = float4(x.xy, y.xy); + float4 b1 = float4(x.zw, y.zw); + + //float4 s0 = float4(lessThan(b0, 0.0)) * 2.0 - 1.0; + //float4 s1 = float4(lessThan(b1, 0.0)) * 2.0 - 1.0; + float4 s0 = floor(b0) * 2.0 + 1.0; + float4 s1 = floor(b1) * 2.0 + 1.0; + float4 sh = -step(h, 0.0); + + float4 a0 = b0.xzyw + s0.xzyw * sh.xxyy; + float4 a1 = b1.xzyw + s1.xzyw * sh.zzww; + + float3 g0 = float3(a0.xy, h.x); + float3 g1 = float3(a0.zw, h.y); + float3 g2 = float3(a1.xy, h.z); + float3 g3 = float3(a1.zw, h.w); + + // Normalise gradients + float4 norm = taylorInvSqrt(float4(dot(g0, g0), dot(g1, g1), dot(g2, g2), dot(g3, g3))); + g0 *= norm.x; + g1 *= norm.y; + g2 *= norm.z; + g3 *= norm.w; + + // Mix final noise value + float4 m = max(0.6 - float4(dot(x0, x0), dot(x1, x1), dot(x2, x2), dot(x3, x3)), 0.0); + m = m * m; + m = m * m; + + float4 px = float4(dot(x0, g0), dot(x1, g1), dot(x2, g2), dot(x3, g3)); + return 42.0 * dot(m, px); +} + +float4 snoise_grad(float3 v) +{ + const float2 C = float2(1.0 / 6.0, 1.0 / 3.0); + + // First corner + float3 i = floor(v + dot(v, C.yyy)); + float3 x0 = v - i + dot(i, C.xxx); + + // Other corners + float3 g = step(x0.yzx, x0.xyz); + float3 l = 1.0 - g; + float3 i1 = min(g.xyz, l.zxy); + float3 i2 = max(g.xyz, l.zxy); + + // x1 = x0 - i1 + 1.0 * C.xxx; + // x2 = x0 - i2 + 2.0 * C.xxx; + // x3 = x0 - 1.0 + 3.0 * C.xxx; + float3 x1 = x0 - i1 + C.xxx; + float3 x2 = x0 - i2 + C.yyy; + float3 x3 = x0 - 0.5; + + // Permutations + i = mod289(i); // Avoid truncation effects in permutation + float4 p = permute(permute(permute(i.z + float4(0.0, i1.z, i2.z, 1.0)) + + i.y + float4(0.0, i1.y, i2.y, 1.0)) + + i.x + float4(0.0, i1.x, i2.x, 1.0)); + + // Gradients: 7x7 points over a square, mapped onto an octahedron. + // The ring size 17*17 = 289 is close to a multiple of 49 (49*6 = 294) + float4 j = p - 49.0 * floor(p / 49.0); // mod(p,7*7) + + float4 x_ = floor(j / 7.0); + float4 y_ = floor(j - 7.0 * x_); // mod(j,N) + + float4 x = (x_ * 2.0 + 0.5) / 7.0 - 1.0; + float4 y = (y_ * 2.0 + 0.5) / 7.0 - 1.0; + + float4 h = 1.0 - abs(x) - abs(y); + + float4 b0 = float4(x.xy, y.xy); + float4 b1 = float4(x.zw, y.zw); + + //float4 s0 = float4(lessThan(b0, 0.0)) * 2.0 - 1.0; + //float4 s1 = float4(lessThan(b1, 0.0)) * 2.0 - 1.0; + float4 s0 = floor(b0) * 2.0 + 1.0; + float4 s1 = floor(b1) * 2.0 + 1.0; + float4 sh = -step(h, 0.0); + + float4 a0 = b0.xzyw + s0.xzyw * sh.xxyy; + float4 a1 = b1.xzyw + s1.xzyw * sh.zzww; + + float3 g0 = float3(a0.xy, h.x); + float3 g1 = float3(a0.zw, h.y); + float3 g2 = float3(a1.xy, h.z); + float3 g3 = float3(a1.zw, h.w); + + // Normalise gradients + float4 norm = taylorInvSqrt(float4(dot(g0, g0), dot(g1, g1), dot(g2, g2), dot(g3, g3))); + g0 *= norm.x; + g1 *= norm.y; + g2 *= norm.z; + g3 *= norm.w; + + // Compute noise and gradient at P + float4 m = max(0.6 - float4(dot(x0, x0), dot(x1, x1), dot(x2, x2), dot(x3, x3)), 0.0); + float4 m2 = m * m; + float4 m3 = m2 * m; + float4 m4 = m2 * m2; + float3 grad = -6.0 * m3.x * x0 * dot(x0, g0) + m4.x * g0 + + - 6.0 * m3.y * x1 * dot(x1, g1) + m4.y * g1 + + - 6.0 * m3.z * x2 * dot(x2, g2) + m4.z * g2 + + - 6.0 * m3.w * x3 * dot(x3, g3) + m4.w * g3; + float4 px = float4(dot(x0, g0), dot(x1, g1), dot(x2, g2), dot(x3, g3)); + return 42.0 * float4(grad, dot(m4, px)); +} + + + + +//----------------------------------------------------[1.3] 4D Simplex Noise ---------------------------------------------------- + +float4 grad4(float j, float4 ip) +{ + const float4 ones = float4(1.0, 1.0, 1.0, -1.0); + float4 p, s; + p.xyz = floor(frac(j * ip.xyz) * 7.0) * ip.z - 1.0; + p.w = 1.5 - dot(abs(p.xyz), ones.xyz); + + // GLSL: lessThan(x, y) = x < y + // HLSL: 1 - step(y, x) = x < y + p.xyz -= sign(p.xyz) * (p.w < 0); + + return p; +} + +float snoise(float4 v) +{ + const float4 C = float4( + 0.138196601125011, // (5 - sqrt(5))/20 G4 + 0.276393202250021, // 2 * G4 + 0.414589803375032, // 3 * G4 + -0.447213595499958 // -1 + 4 * G4 + ); + + // First corner + float4 i = floor(v +dot(v,0.309016994374947451)); // (sqrt(5) - 1) / 4 + float4 x0 = v - i + dot(i, C.xxxx); + + // Other corners + + // Rank sorting originally contributed by Bill Licea-Kane, AMD (formerly ATI) + float4 i0; + float3 isX = step(x0.yzw, x0.xxx); + float3 isYZ = step(x0.zww, x0.yyz); + i0.x = isX.x + isX.y + isX.z; + i0.yzw = 1.0 - isX; + i0.y += isYZ.x + isYZ.y; + i0.zw += 1.0 - isYZ.xy; + i0.z += isYZ.z; + i0.w += 1.0 - isYZ.z; + + // i0 now contains the unique values 0,1,2,3 in each channel + float4 i3 = saturate(i0); + float4 i2 = saturate(i0 - 1.0); + float4 i1 = saturate(i0 - 2.0); + + // x0 = x0 - 0.0 + 0.0 * C.xxxx + // x1 = x0 - i1 + 1.0 * C.xxxx + // x2 = x0 - i2 + 2.0 * C.xxxx + // x3 = x0 - i3 + 3.0 * C.xxxx + // x4 = x0 - 1.0 + 4.0 * C.xxxx + float4 x1 = x0 - i1 + C.xxxx; + float4 x2 = x0 - i2 + C.yyyy; + float4 x3 = x0 - i3 + C.zzzz; + float4 x4 = x0 + C.wwww; + + // Permutations + i = mod289(i); + float j0 = permute(permute(permute(permute(i.w) + i.z) + i.y) + i.x); + float4 j1 = permute(permute(permute(permute(i.w + float4(i1.w, i2.w, i3.w, 1.0)) + i.z + float4(i1.z, i2.z, i3.z, 1.0)) + i.y + float4(i1.y, i2.y, i3.y, 1.0)) + i.x + float4(i1.x, i2.x, i3.x, 1.0)); + + // Gradients: 7x7x6 points over a cube, mapped onto a 4-cross polytope + // 7*7*6 = 294, which is close to the ring size 17*17 = 289. + const float4 ip = float4(0.003401360544217687075, // 1/294 + 0.020408163265306122449, // 1/49 + 0.142857142857142857143, // 1/7 + 0.0); + + float4 p0 = grad4(j0, ip); + float4 p1 = grad4(j1.x, ip); + float4 p2 = grad4(j1.y, ip); + float4 p3 = grad4(j1.z, ip); + float4 p4 = grad4(j1.w, ip); + + // Normalise gradients + float4 norm = rsqrt(float4(dot(p0, p0),dot(p1, p1),dot(p2, p2),dot(p3, p3))); + p0 *= norm.x; + p1 *= norm.y; + p2 *= norm.z; + p3 *= norm.w; + p4 *= rsqrt(dot(p4, p4)); + + // Mix contributions from the five corners + float3 m0 = max(0.6 - float3(dot(x0, x0),dot(x1, x1),dot(x2, x2)),0.0); + float2 m1 = max(0.6 - float2(dot(x3, x3),dot(x4, x4)),0.0); + m0 = m0 * m0; + m1 = m1 * m1; + + return 49.0 * (dot(m0*m0,float3(dot(p0, x0),dot(p1, x1),dot(p2, x2))) + dot(m1*m1,float2(dot(p3, x3),dot(p4, x4)))); +} + + + + +//================================================================================================================================== +// 2. Classic Noise +//================================================================================================================================== +// +// GLSL textureless classic 2D noise "cnoise", +// with an RSL-style periodic variant "pnoise". +// Author: Stefan Gustavson (stefan.gustavson@liu.se) +// Version: 2011-08-22 +// +// Many thanks to Ian McEwan of Ashima Arts for the +// ideas for permutation and gradient selection. +// +// Copyright (c) 2011 Stefan Gustavson. All rights reserved. +// Distributed under the MIT license. See LICENSE file. +// https://github.com/ashima/webgl-noise + + + +//-------------------------------------------------------[2.1] 2D Classic Noise--------------------------------------------- +// Classic Perlin noise +float cnoise(float2 P) +{ + float4 Pi = floor(P.xyxy) + float4(0.0, 0.0, 1.0, 1.0); + float4 Pf = frac(P.xyxy) - float4(0.0, 0.0, 1.0, 1.0); + Pi = mod289(Pi); // To avoid truncation effects in permutation + float4 ix = Pi.xzxz; + float4 iy = Pi.yyww; + float4 fx = Pf.xzxz; + float4 fy = Pf.yyww; + + float4 i = permute(permute(ix) + iy); + + float4 gx = frac(i / 41.0) * 2.0 - 1.0; + float4 gy = abs(gx) - 0.5; + float4 tx = floor(gx + 0.5); + gx = gx - tx; + + float2 g00 = float2(gx.x, gy.x); + float2 g10 = float2(gx.y, gy.y); + float2 g01 = float2(gx.z, gy.z); + float2 g11 = float2(gx.w, gy.w); + + float4 norm = taylorInvSqrt(float4(dot(g00, g00), dot(g01, g01), dot(g10, g10), dot(g11, g11))); + g00 *= norm.x; + g01 *= norm.y; + g10 *= norm.z; + g11 *= norm.w; + + float n00 = dot(g00, float2(fx.x, fy.x)); + float n10 = dot(g10, float2(fx.y, fy.y)); + float n01 = dot(g01, float2(fx.z, fy.z)); + float n11 = dot(g11, float2(fx.w, fy.w)); + + float2 fade_xy = fade(Pf.xy); + float2 n_x = lerp(float2(n00, n01), float2(n10, n11), fade_xy.x); + float n_xy = lerp(n_x.x, n_x.y, fade_xy.y); + return 2.3 * n_xy; +} + +// Classic Perlin noise, periodic variant +float pnoise(float2 P, float2 rep) +{ + float4 Pi = floor(P.xyxy) + float4(0.0, 0.0, 1.0, 1.0); + float4 Pf = frac(P.xyxy) - float4(0.0, 0.0, 1.0, 1.0); + Pi = mod(Pi, rep.xyxy); // To create noise with explicit period + Pi = mod289(Pi); // To avoid truncation effects in permutation + float4 ix = Pi.xzxz; + float4 iy = Pi.yyww; + float4 fx = Pf.xzxz; + float4 fy = Pf.yyww; + + float4 i = permute(permute(ix) + iy); + + float4 gx = frac(i / 41.0) * 2.0 - 1.0; + float4 gy = abs(gx) - 0.5; + float4 tx = floor(gx + 0.5); + gx = gx - tx; + + float2 g00 = float2(gx.x, gy.x); + float2 g10 = float2(gx.y, gy.y); + float2 g01 = float2(gx.z, gy.z); + float2 g11 = float2(gx.w, gy.w); + + float4 norm = taylorInvSqrt(float4(dot(g00, g00), dot(g01, g01), dot(g10, g10), dot(g11, g11))); + g00 *= norm.x; + g01 *= norm.y; + g10 *= norm.z; + g11 *= norm.w; + + float n00 = dot(g00, float2(fx.x, fy.x)); + float n10 = dot(g10, float2(fx.y, fy.y)); + float n01 = dot(g01, float2(fx.z, fy.z)); + float n11 = dot(g11, float2(fx.w, fy.w)); + + float2 fade_xy = fade(Pf.xy); + float2 n_x = lerp(float2(n00, n01), float2(n10, n11), fade_xy.x); + float n_xy = lerp(n_x.x, n_x.y, fade_xy.y); + return 2.3 * n_xy; +} + + + +//----------------------------------------------------[2.2] 3D Classic Noise-------------------------------------------------- +// Classic Perlin noise +float cnoise(float3 P) +{ + float3 Pi0 = floor(P); // Integer part for indexing + float3 Pi1 = Pi0 + (float3)1.0; // Integer part + 1 + Pi0 = mod289(Pi0); + Pi1 = mod289(Pi1); + float3 Pf0 = frac(P); // Fractional part for interpolation + float3 Pf1 = Pf0 - (float3)1.0; // Fractional part - 1.0 + float4 ix = float4(Pi0.x, Pi1.x, Pi0.x, Pi1.x); + float4 iy = float4(Pi0.y, Pi0.y, Pi1.y, Pi1.y); + float4 iz0 = (float4)Pi0.z; + float4 iz1 = (float4)Pi1.z; + + float4 ixy = permute(permute(ix) + iy); + float4 ixy0 = permute(ixy + iz0); + float4 ixy1 = permute(ixy + iz1); + + float4 gx0 = ixy0 / 7.0; + float4 gy0 = frac(floor(gx0) / 7.0) - 0.5; + gx0 = frac(gx0); + float4 gz0 = (float4)0.5 - abs(gx0) - abs(gy0); + float4 sz0 = step(gz0, (float4)0.0); + gx0 -= sz0 * (step((float4)0.0, gx0) - 0.5); + gy0 -= sz0 * (step((float4)0.0, gy0) - 0.5); + + float4 gx1 = ixy1 / 7.0; + float4 gy1 = frac(floor(gx1) / 7.0) - 0.5; + gx1 = frac(gx1); + float4 gz1 = (float4)0.5 - abs(gx1) - abs(gy1); + float4 sz1 = step(gz1, (float4)0.0); + gx1 -= sz1 * (step((float4)0.0, gx1) - 0.5); + gy1 -= sz1 * (step((float4)0.0, gy1) - 0.5); + + float3 g000 = float3(gx0.x, gy0.x, gz0.x); + float3 g100 = float3(gx0.y, gy0.y, gz0.y); + float3 g010 = float3(gx0.z, gy0.z, gz0.z); + float3 g110 = float3(gx0.w, gy0.w, gz0.w); + float3 g001 = float3(gx1.x, gy1.x, gz1.x); + float3 g101 = float3(gx1.y, gy1.y, gz1.y); + float3 g011 = float3(gx1.z, gy1.z, gz1.z); + float3 g111 = float3(gx1.w, gy1.w, gz1.w); + + float4 norm0 = taylorInvSqrt(float4(dot(g000, g000), dot(g010, g010), dot(g100, g100), dot(g110, g110))); + g000 *= norm0.x; + g010 *= norm0.y; + g100 *= norm0.z; + g110 *= norm0.w; + + float4 norm1 = taylorInvSqrt(float4(dot(g001, g001), dot(g011, g011), dot(g101, g101), dot(g111, g111))); + g001 *= norm1.x; + g011 *= norm1.y; + g101 *= norm1.z; + g111 *= norm1.w; + + float n000 = dot(g000, Pf0); + float n100 = dot(g100, float3(Pf1.x, Pf0.y, Pf0.z)); + float n010 = dot(g010, float3(Pf0.x, Pf1.y, Pf0.z)); + float n110 = dot(g110, float3(Pf1.x, Pf1.y, Pf0.z)); + float n001 = dot(g001, float3(Pf0.x, Pf0.y, Pf1.z)); + float n101 = dot(g101, float3(Pf1.x, Pf0.y, Pf1.z)); + float n011 = dot(g011, float3(Pf0.x, Pf1.y, Pf1.z)); + float n111 = dot(g111, Pf1); + + float3 fade_xyz = fade(Pf0); + float4 n_z = lerp(float4(n000, n100, n010, n110), float4(n001, n101, n011, n111), fade_xyz.z); + float2 n_yz = lerp(n_z.xy, n_z.zw, fade_xyz.y); + float n_xyz = lerp(n_yz.x, n_yz.y, fade_xyz.x); + return 2.2 * n_xyz; +} + +// Classic Perlin noise, periodic variant +float pnoise(float3 P, float3 rep) +{ + float3 Pi0 = mod(floor(P), rep); // Integer part, modulo period + float3 Pi1 = mod(Pi0 + (float3)1.0, rep); // Integer part + 1, mod period + Pi0 = mod289(Pi0); + Pi1 = mod289(Pi1); + float3 Pf0 = frac(P); // Fractional part for interpolation + float3 Pf1 = Pf0 - (float3)1.0; // Fractional part - 1.0 + float4 ix = float4(Pi0.x, Pi1.x, Pi0.x, Pi1.x); + float4 iy = float4(Pi0.y, Pi0.y, Pi1.y, Pi1.y); + float4 iz0 = (float4)Pi0.z; + float4 iz1 = (float4)Pi1.z; + + float4 ixy = permute(permute(ix) + iy); + float4 ixy0 = permute(ixy + iz0); + float4 ixy1 = permute(ixy + iz1); + + float4 gx0 = ixy0 / 7.0; + float4 gy0 = frac(floor(gx0) / 7.0) - 0.5; + gx0 = frac(gx0); + float4 gz0 = (float4)0.5 - abs(gx0) - abs(gy0); + float4 sz0 = step(gz0, (float4)0.0); + gx0 -= sz0 * (step((float4)0.0, gx0) - 0.5); + gy0 -= sz0 * (step((float4)0.0, gy0) - 0.5); + + float4 gx1 = ixy1 / 7.0; + float4 gy1 = frac(floor(gx1) / 7.0) - 0.5; + gx1 = frac(gx1); + float4 gz1 = (float4)0.5 - abs(gx1) - abs(gy1); + float4 sz1 = step(gz1, (float4)0.0); + gx1 -= sz1 * (step((float4)0.0, gx1) - 0.5); + gy1 -= sz1 * (step((float4)0.0, gy1) - 0.5); + + float3 g000 = float3(gx0.x, gy0.x, gz0.x); + float3 g100 = float3(gx0.y, gy0.y, gz0.y); + float3 g010 = float3(gx0.z, gy0.z, gz0.z); + float3 g110 = float3(gx0.w, gy0.w, gz0.w); + float3 g001 = float3(gx1.x, gy1.x, gz1.x); + float3 g101 = float3(gx1.y, gy1.y, gz1.y); + float3 g011 = float3(gx1.z, gy1.z, gz1.z); + float3 g111 = float3(gx1.w, gy1.w, gz1.w); + + float4 norm0 = taylorInvSqrt(float4(dot(g000, g000), dot(g010, g010), dot(g100, g100), dot(g110, g110))); + g000 *= norm0.x; + g010 *= norm0.y; + g100 *= norm0.z; + g110 *= norm0.w; + float4 norm1 = taylorInvSqrt(float4(dot(g001, g001), dot(g011, g011), dot(g101, g101), dot(g111, g111))); + g001 *= norm1.x; + g011 *= norm1.y; + g101 *= norm1.z; + g111 *= norm1.w; + + float n000 = dot(g000, Pf0); + float n100 = dot(g100, float3(Pf1.x, Pf0.y, Pf0.z)); + float n010 = dot(g010, float3(Pf0.x, Pf1.y, Pf0.z)); + float n110 = dot(g110, float3(Pf1.x, Pf1.y, Pf0.z)); + float n001 = dot(g001, float3(Pf0.x, Pf0.y, Pf1.z)); + float n101 = dot(g101, float3(Pf1.x, Pf0.y, Pf1.z)); + float n011 = dot(g011, float3(Pf0.x, Pf1.y, Pf1.z)); + float n111 = dot(g111, Pf1); + + float3 fade_xyz = fade(Pf0); + float4 n_z = lerp(float4(n000, n100, n010, n110), float4(n001, n101, n011, n111), fade_xyz.z); + float2 n_yz = lerp(n_z.xy, n_z.zw, fade_xyz.y); + float n_xyz = lerp(n_yz.x, n_yz.y, fade_xyz.x); + return 2.2 * n_xyz; +} + + + + + + + +//================================================================================================================================== +// 3. Simplex-like Re-oriented BBC Noise +//================================================================================================================================== + +// +// The original shader was created by KdotJPG and released into the public +// domain (Unlicense). Refer to the following GitHub repository for the details +// of the original work. +// +// https://github.com/KdotJPG/New-Simplex-Style-Gradient-Noise +// + + +float4 bcc4_mod(float4 x, float4 y) +{ + return x - y * floor(x / y); +} + +// Inspired by Stefan Gustavson's noise +float4 bcc4_permute(float4 t) +{ + return t * (t * 34.0 + 133.0); +} + + +//--------------------------------------------------[3.1] 4-Point BCC Noise----------------------------------------------- +// K.jpg's Smooth Re-oriented 8-Point BCC Noise +// Output: float4(dF/dx, dF/dy, dF/dz, value) + + + +// Gradient set is a normalized expanded rhombic dodecahedron +float3 bcc4_grad(float hash) +{ + + // Random vertex of a cube, +/- 1 each + float3 cube = frac(floor(hash / float3(1, 2, 4)) * 0.5) * 4 - 1; + + // Random edge of the three edges connected to that vertex + // Also a cuboctahedral vertex + // And corresponds to the face of its dual, the rhombic dodecahedron + float3 cuboct = cube; + cuboct *= int3(0, 1, 2) != (int) (hash / 16); + + // In a funky way, pick one of the four points on the rhombic face + float type = frac(floor(hash / 8) * 0.5) * 2; + float3 rhomb = (1.0 - type) * cube + type * (cuboct + cross(cube, cuboct)); + + // Expand it so that the new edges are the same length + // as the existing ones + float3 grad = cuboct * 1.22474487139 + rhomb; + + // To make all gradients the same length, we only need to shorten the + // second type of vector. We also put in the whole noise scale constant. + // The compiler should reduce it into the existing floats. I think. + grad *= (1.0 - 0.042942436724648037 * type) * 32.80201376986577; + + return grad; +} + +// BCC lattice split up into 2 cube lattices +float4 Bcc4NoiseBase(float3 X) +{ + + // First half-lattice, closest edge + float3 v1 = round(X); + float3 d1 = X - v1; + float3 score1 = abs(d1); + float3 dir1 = max(score1.yzx, score1.zxy) < score1; + float3 v2 = v1 + dir1 * (d1 < 0 ? - 1: 1); + float3 d2 = X - v2; + + // Second half-lattice, closest edge + float3 X2 = X + 144.5; + float3 v3 = round(X2); + float3 d3 = X2 - v3; + float3 score2 = abs(d3); + float3 dir2 = max(score2.yzx, score2.zxy) < score2; + float3 v4 = v3 + dir2 * (d3 < 0 ? - 1: 1); + float3 d4 = X2 - v4; + + // Gradient hashes for the four points, two from each half-lattice + float4 hashes = bcc4_permute(bcc4_mod(float4(v1.x, v2.x, v3.x, v4.x), 289.0)); + hashes = bcc4_permute(bcc4_mod(hashes + float4(v1.y, v2.y, v3.y, v4.y), 289.0)); + hashes = bcc4_mod(bcc4_permute(bcc4_mod(hashes + float4(v1.z, v2.z, v3.z, v4.z), 289.0)), 48.0); + + // Gradient extrapolations & kernel function + float4 a = max(0.5 - float4(dot(d1, d1), dot(d2, d2), dot(d3, d3), dot(d4, d4)), 0.0); + float4 aa = a * a; float4 aaaa = aa * aa; + float3 g1 = bcc4_grad(hashes.x); float3 g2 = bcc4_grad(hashes.y); + float3 g3 = bcc4_grad(hashes.z); float3 g4 = bcc4_grad(hashes.w); + float4 extrapolations = float4(dot(d1, g1), dot(d2, g2), dot(d3, g3), dot(d4, g4)); + + // Derivatives of the noise + float3 derivative = -8.0 * mul(aa * a * extrapolations, float4x3(d1, d2, d3, d4)) + + mul(aaaa, float4x3(g1, g2, g3, g4)); + + // Return it all as a float4 + return float4(derivative, dot(aaaa, extrapolations)); +} + +// Use this if you don't want Z to look different from X and Y +float4 Bcc4NoiseClassic(float3 X) +{ + + // Rotate around the main diagonal. Not a skew transform. + float4 result = Bcc4NoiseBase(dot(X, 2.0 / 3.0) - X); + return float4(dot(result.xyz, 2.0 / 3.0) - result.xyz, result.w); +} + +// Use this if you want to show X and Y in a plane, and use Z for time, etc. +float4 Bcc4NoisePlaneFirst(float3 X) +{ + + // Rotate so Z points down the main diagonal. Not a skew transform. + float3x3 orthonormalMap = float3x3 + ( + 0.788675134594813, -0.211324865405187, -0.577350269189626, + - 0.211324865405187, 0.788675134594813, -0.577350269189626, + 0.577350269189626, 0.577350269189626, 0.577350269189626); + + float4 result = Bcc4NoiseBase(mul(X, orthonormalMap)); + return float4(mul(orthonormalMap, result.xyz), result.w); +} + + + + + +//------------------------------------------------[3.2] 8-Point BCC Noise------------------------------------------------------ +// K.jpg's Smooth Re-oriented 8-Point BCC Noise +// Output: float4(dF/dx, dF/dy, dF/dz, value) + + +float4 bcc8_mod(float4 x, float4 y) +{ + return x - y * floor(x / y); +} + +// Borrowed from Stefan Gustavson's noise code +float4 bcc8_permute(float4 t) +{ + return t * (t * 34.0 + 133.0); +} + +// Gradient set is a normalized expanded rhombic dodecahedron +float3 bcc8_grad(float hash) +{ + + // Random vertex of a cube, +/- 1 each + float3 cube = frac(floor(hash / float3(1, 2, 4)) * 0.5) * 4 - 1; + + // Random edge of the three edges connected to that vertex + // Also a cuboctahedral vertex + // And corresponds to the face of its dual, the rhombic dodecahedron + float3 cuboct = cube; + cuboct *= int3(0, 1, 2) != (int) (hash / 16); + + // In a funky way, pick one of the four points on the rhombic face + float type = frac(floor(hash / 8) * 0.5) * 2; + float3 rhomb = (1.0 - type) * cube + type * (cuboct + cross(cube, cuboct)); + + // Expand it so that the new edges are the same length + // as the existing ones + float3 grad = cuboct * 1.22474487139 + rhomb; + + // To make all gradients the same length, we only need to shorten the + // second type of vector. We also put in the whole noise scale constant. + // The compiler should reduce it into the existing floats. I think. + grad *= (1.0 - 0.042942436724648037 * type) * 3.5946317686139184; + + return grad; +} + +// BCC lattice split up into 2 cube lattices +float4 Bcc8NoiseBase(float3 X) +{ + float3 b = floor(X); + float4 i4 = float4(X - b, 2.5); + + // Pick between each pair of oppposite corners in the cube. + float3 v1 = b + floor(dot(i4, .25)); + float3 v2 = b + float3(1, 0, 0) + float3(-1, 1, 1) * floor(dot(i4, float4( - .25, .25, .25, .35))); + float3 v3 = b + float3(0, 1, 0) + float3(1, -1, 1) * floor(dot(i4, float4(.25, - .25, .25, .35))); + float3 v4 = b + float3(0, 0, 1) + float3(1, 1, -1) * floor(dot(i4, float4(.25, .25, - .25, .35))); + + // Gradient hashes for the four vertices in this half-lattice. + float4 hashes = bcc8_permute(bcc8_mod(float4(v1.x, v2.x, v3.x, v4.x), 289.0)); + hashes = bcc8_permute(bcc8_mod(hashes + float4(v1.y, v2.y, v3.y, v4.y), 289.0)); + hashes = bcc8_mod(bcc8_permute(bcc8_mod(hashes + float4(v1.z, v2.z, v3.z, v4.z), 289.0)), 48.0); + + // Gradient extrapolations & kernel function + float3 d1 = X - v1; float3 d2 = X - v2; float3 d3 = X - v3; float3 d4 = X - v4; + float4 a = max(0.75 - float4(dot(d1, d1), dot(d2, d2), dot(d3, d3), dot(d4, d4)), 0.0); + float4 aa = a * a; float4 aaaa = aa * aa; + float3 g1 = bcc8_grad(hashes.x); float3 g2 = bcc8_grad(hashes.y); + float3 g3 = bcc8_grad(hashes.z); float3 g4 = bcc8_grad(hashes.w); + float4 extrapolations = float4(dot(d1, g1), dot(d2, g2), dot(d3, g3), dot(d4, g4)); + + // Derivatives of the noise + float3 derivative = -8.0 * mul(aa * a * extrapolations, float4x3(d1, d2, d3, d4)) + + mul(aaaa, float4x3(g1, g2, g3, g4)); + + // Return it all as a float4 + return float4(derivative, dot(aaaa, extrapolations)); +} + +// Rotates domain, but preserve shape. Hides grid better in cardinal slices. +// Good for texturing 3D objects with lots of flat parts along cardinal planes. +float4 Bcc8NoiseClassic(float3 X) +{ + X = dot(X, 2.0 / 3.0) - X; + + float4 result = Bcc8NoiseBase(X) + Bcc8NoiseBase(X + 144.5); + + return float4(dot(result.xyz, 2.0 / 3.0) - result.xyz, result.w); +} + +// Gives X and Y a triangular alignment, and lets Z move up the main diagonal. +// Might be good for terrain, or a time varying X/Y plane. Z repeats. +float4 Bcc8NoisePlaneFirst(float3 X) +{ + + // Not a skew transform. + float3x3 orthonormalMap = float3x3( + 0.788675134594813, -0.211324865405187, -0.577350269189626, + - 0.211324865405187, 0.788675134594813, -0.577350269189626, + 0.577350269189626, 0.577350269189626, 0.577350269189626); + + X = mul(X, orthonormalMap); + float4 result = Bcc8NoiseBase(X) + Bcc8NoiseBase(X + 144.5); + + return float4(mul(orthonormalMap, result.xyz), result.w); +} + + +#endif \ No newline at end of file diff --git a/Assets/X-PostProcessing/Shaders/XNoiseLibrary.hlsl.meta b/Assets/X-PostProcessing/Shaders/XNoiseLibrary.hlsl.meta new file mode 100644 index 000000000..aef1a9726 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/XNoiseLibrary.hlsl.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6ad65ce05707bad43a6df888d1a27038 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/XPostProcessing.hlsl b/Assets/X-PostProcessing/Shaders/XPostProcessing.hlsl new file mode 100644 index 000000000..68b8d585c --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/XPostProcessing.hlsl @@ -0,0 +1,466 @@ + + +#include "Sampling.hlsl" + +//Always present in every shader +TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); //Present in every shader + +TEXTURE2D_SAMPLER2D(_CameraDepthNormalsTexture, sampler_CameraDepthNormalsTexture); +float4 _MainTex_TexelSize; + + + +#define fixed half +#define fixed2 half2 +#define fixed3 half3 +#define fixed4 half4 +#define fixed4x4 half4x4 +#define fixed3x3 half3x3 +#define fixed2x2 half2x2 +#define sampler2D_half sampler2D +#define sampler2D_float sampler2D +#define samplerCUBE_half samplerCUBE +#define samplerCUBE_float samplerCUBE + + +//------------------------------------------------------------------------------------------------------ +// Blend Functions +//------------------------------------------------------------------------------------------------------ + + +half4 BlendOperation_Burn(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = 1.0 - (1.0 - Blend) / Base; + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_Darken(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = min(Blend, Base); + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_Difference(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = abs(Blend - Base); + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_Dodge(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = Base / (1.0 - Blend); + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_Divide(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = Base / (Blend + 0.000000000001); + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_Exclusion(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = Blend + Base - (2.0 * Blend * Base); + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_HardLight(half4 Base, half4 Blend, half Opacity) +{ + float4 result1 = 1.0 - 2.0 * (1.0 - Base) * (1.0 - Blend); + float4 result2 = 2.0 * Base * Blend; + float4 zeroOrOne = step(Blend, 0.5); + half4 Out = result2 * zeroOrOne + (1 - zeroOrOne) * result1; + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_HardMix(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = step(1 - Base, Blend); + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_Lighten(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = max(Blend, Base); + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_LinearBurn(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = Base + Blend - 1.0; + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_LinearDodge(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = Base + Blend; + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_LinearLight(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = Blend < 0.5 ? max(Base + (2 * Blend) - 1, 0): min(Base + 2 * (Blend - 0.5), 1); + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_LinearLightAddSub(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = Blend + 2.0 * Base - 1.0; + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_Multiply(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = Base * Blend; + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_Negation(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = 1.0 - abs(1.0 - Blend - Base); + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_Overlay(half4 Base, half4 Blend, half Opacity) +{ + half4 result1 = 1.0 - 2.0 * (1.0 - Base) * (1.0 - Blend); + half4 result2 = 2.0 * Base * Blend; + half4 zeroOrOne = step(Base, 0.5); + half4 Out = result2 * zeroOrOne + (1 - zeroOrOne) * result1; + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_PinLight(half4 Base, half4 Blend, half Opacity) +{ + half4 check = step(0.5, Blend); + half4 result1 = check * max(2.0 * (Base - 0.5), Blend); + half4 Out = result1 + (1.0 - check) * min(2.0 * Base, Blend); + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_Screen(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = 1.0 - (1.0 - Blend) * (1.0 - Base); + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_SoftLight(half4 Base, half4 Blend, half Opacity) +{ + half4 result1 = 2.0 * Base * Blend + Base * Base * (1.0 - 2.0 * Blend); + half4 result2 = sqrt(Base) * (2.0 * Blend - 1.0) + 2.0 * Base * (1.0 - Blend); + half4 zeroOrOne = step(0.5, Blend); + half4 Out = result2 * zeroOrOne + (1 - zeroOrOne) * result1; + Out = lerp(Base, Out, Opacity); + return Out; +} + +half4 BlendOperation_Subtract(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = Base - Blend; + Out = lerp(Base, Out, Opacity); + return Out; +} + + +half4 BlendOperation_VividLight(half4 Base, half4 Blend, half Opacity) +{ + half4 result1 = 1.0 - (1.0 - Blend) / (2.0 * Base); + half4 result2 = Blend / (2.0 * (1.0 - Base)); + half4 zeroOrOne = step(0.5, Base); + half4 Out = result2 * zeroOrOne + (1 - zeroOrOne) * result1; + Out = lerp(Base, Out, Opacity); + return Out; +} + +half4 BlendOperation_Overwrite(half4 Base, half4 Blend, half Opacity) +{ + half4 Out = lerp(Base, Blend, Opacity); + return Out; +} + + + + +//------------------------------------------------------------------------------------------------------ +// Generic functions +//------------------------------------------------------------------------------------------------------ + +float rand(float n) +{ + return frac(sin(n) * 13758.5453123 * 0.01); +} + +float rand(float2 n) +{ + return frac(sin(dot(n, float2(12.9898, 78.233))) * 43758.5453); +} + +float2 RotateUV(float2 uv, float rotation) +{ + float cosine = cos(rotation); + float sine = sin(rotation); + float2 pivot = float2(0.5, 0.5); + float2 rotator = (mul(uv - pivot, float2x2(cosine, -sine, sine, cosine)) + pivot); + return saturate(rotator); +} + +float3 ChromaticAberration(TEXTURE2D_ARGS(tex, samplerTex), float4 texelSize, float2 uv, float amount) +{ + float2 direction = normalize((float2(0.5, 0.5) - uv)); + float3 distortion = float3(-texelSize.x * amount, 0, texelSize.x * amount); + + float red = SAMPLE_TEXTURE2D(tex, samplerTex, uv + direction * distortion.r).r; + float green = SAMPLE_TEXTURE2D(tex, samplerTex, uv + direction * distortion.g).g; + float blue = SAMPLE_TEXTURE2D(tex, samplerTex, uv + direction * distortion.b).b; + + return float3(red, green, blue); +} + + +/* +float3 PositionFromDepth(float depth, float2 uv, float4 inverseViewMatrix) { + + float4 clip = float4((uv.xy * 2.0f - 1.0f) * float2(1, -1), 0.0f, 1.0f); + float3 worldDirection = mul(inverseViewMatrix, clip) - _WorldSpaceCameraPos; + + float3 worldspace = worldDirection * depth + _WorldSpaceCameraPos; + + return float3(frac((worldspace.rgb)) + float3(0, 0, 0.1)); +} +*/ + +// (returns 1.0 when orthographic) +float CheckPerspective(float x) +{ + return lerp(x, 1.0, unity_OrthoParams.w); +} + +// Reconstruct view-space position from UV and depth. +float3 ReconstructViewPos(float2 uv, float depth) +{ + float3 worldPos = float3(0, 0, 0); + worldPos.xy = (uv.xy * 2.0 - 1.0 - float2(unity_CameraProjection._13, unity_CameraProjection._23)) / float2(unity_CameraProjection._11, unity_CameraProjection._22) * CheckPerspective(depth); + worldPos.z = depth; + return worldPos; +} + +float2 FisheyeUV(half2 uv, half amount, half zoom) +{ + half2 center = uv.xy - half2(0.5, 0.5); + half CdotC = dot(center, center); + half f = 1.0 + CdotC * (amount * sqrt(CdotC)); + return f * zoom * center + 0.5; +} + +float2 Distort(float2 uv) +{ + #if DISTORT + { + uv = (uv - 0.5) * _Distortion_Amount.z + 0.5; + float2 ruv = _Distortion_CenterScale.zw * (uv - 0.5 - _Distortion_CenterScale.xy); + float ru = length(float2(ruv)); + + UNITY_BRANCH + if (_Distortion_Amount.w > 0.0) + { + float wu = ru * _Distortion_Amount.x; + ru = tan(wu) * (1.0 / (ru * _Distortion_Amount.y)); + uv = uv + ruv * (ru - 1.0); + } + else + { + ru = (1.0 / ru) * _Distortion_Amount.x * atan(ru * _Distortion_Amount.y); + uv = uv + ruv * (ru - 1.0); + } + } + #endif + + return uv; +} + +//---------------------------------------------------------------- +// Common vertex functions +//-------------------------------------------------------------- + +float4 _BlurOffsets; + +struct v2fGaussian +{ + float4 pos: POSITION; + float2 uv: TEXCOORD0; + + float4 uv01: TEXCOORD1; + float4 uv23: TEXCOORD2; + float4 uv45: TEXCOORD3; +}; + +v2fGaussian VertGaussian(AttributesDefault v) +{ + v2fGaussian o; + o.pos = float4(v.vertex.xy, 0, 1); + + o.uv.xy = TransformTriangleVertexToUV(o.pos.xy); + + #if UNITY_UV_STARTS_AT_TOP + o.uv = o.uv * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + //UNITY_SINGLE_PASS_STEREO + o.uv = TransformStereoScreenSpaceTex(o.uv, 1.0); + + o.uv01 = o.uv.xyxy + _BlurOffsets.xyxy * float4(1, 1, -1, -1); + o.uv23 = o.uv.xyxy + _BlurOffsets.xyxy * float4(1, 1, -1, -1) * 2.0; + o.uv45 = o.uv.xyxy + _BlurOffsets.xyxy * float4(1, 1, -1, -1) * 6.0; + + return o; +} + +float4 FragBlurBox(VaryingsDefault i): SV_Target +{ + return DownsampleBox4Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, _BlurOffsets.xy).rgba; +} + +float4 FragBlurGaussian(v2fGaussian i): SV_Target +{ + half4 color = float4(0, 0, 0, 0); + + color += 0.40 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv); + color += 0.15 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv01.xy); + color += 0.15 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv01.zw); + color += 0.10 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv23.xy); + color += 0.10 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv23.zw); + color += 0.05 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv45.xy); + color += 0.05 * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv45.zw); + + return color; +} + + + +half simpleNoise(half x, half y, half seed, half phase) +{ + half n = x * y * phase * seed; + return fmod(n, 13) * fmod(n, 123); +} + + + +half3 Lut2D(TEXTURE2D_ARGS(tex, samplerTex), float3 uvw, float2 texelSize, half tileAmount) +{ + uvw.z *= tileAmount; + float shift = floor(uvw.z); + uvw.xy = uvw.xy * tileAmount * texelSize.xy + texelSize.xy * 0.5; + uvw.x += shift * texelSize.y; + uvw.xyz = lerp( + SAMPLE_TEXTURE2D(tex, samplerTex, uvw.xy).rgb, + SAMPLE_TEXTURE2D(tex, samplerTex, uvw.xy + float2(texelSize.y, 0.0)).rgb, + uvw.z - shift + ); + return uvw; +} + + +half3 Lut2D_InvertY(TEXTURE2D_ARGS(tex, samplerTex), float3 uvw, float2 texelSize, half tileAmount) +{ + // Strip format where `height = sqrt(width)` + uvw.z *= tileAmount; + float shift = floor(uvw.z); + uvw.xy = uvw.xy * tileAmount * texelSize.xy + texelSize.xy * 0.5; + uvw.x += shift * texelSize.y; + //uvw.y = 1 - uvw.y; + uvw.xyz = lerp( + SAMPLE_TEXTURE2D(tex, samplerTex, uvw.xy).rgb, + SAMPLE_TEXTURE2D(tex, samplerTex, uvw.xy + float2(texelSize.y, 0.0)).rgb, + uvw.z - shift + ); + return uvw; +} + +//------------------------------------------------------------------------------------------- +// Lift, Gamma (pre-inverted), Gain tuned for HDR use - best used with the ACES tonemapper as +// negative values will creep in the result +// Expected workspace: ACEScg (linear) +//------------------------------------------------------------------------------------------- +half3 LiftGammaGain_HDR(half3 c, half3 lift, float3 invgamma, half3 gain) +{ + c = c * gain + lift; + + // ACEScg will output negative values, as clamping to 0 will lose precious information we'll + // mirror the gamma function instead + return FastSign(c) * pow(abs(c), invgamma); +} + +half3 Luminance_V1(half3 color) +{ + return(color.r * 0.3 + color.g * 0.59 + color.b * 0.11); +} + +half Luminance_V2(half3 color) +{ + return dot(color, half3(0.222, 0.707, 0.071)); +} + +half4 LuminanceThreshold(half4 color, half threshold) +{ + half br = Max3(color.r, color.g, color.b); + + half contrib = max(0, br - threshold); + + contrib /= max(br, 0.001); + + return color * contrib; +} + + + +float4 GetDepthNormal_ViewSpace(float2 uv) +{ + float4 cdn = SAMPLE_TEXTURE2D(_CameraDepthNormalsTexture, sampler_CameraDepthNormalsTexture, uv); + float4 Normal_ViewSpace = float4(DecodeViewNormalStereo(cdn), 1); + return Normal_ViewSpace; +} + + +float GetSinusoidWave(float len, float pi, float time) +{ + float wave = sin(8.0f * pi * len + time); + wave = 0.5 * wave + 0.2; + wave *= wave * wave; + return wave; +} + diff --git a/Assets/X-PostProcessing/Shaders/XPostProcessing.hlsl.meta b/Assets/X-PostProcessing/Shaders/XPostProcessing.hlsl.meta new file mode 100644 index 000000000..2a447f558 --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/XPostProcessing.hlsl.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: df45a9a1fca2ef24fb63d70aa7e08e9f +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Shaders/xRLib.hlsl b/Assets/X-PostProcessing/Shaders/xRLib.hlsl new file mode 100644 index 000000000..b3a21d74e --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/xRLib.hlsl @@ -0,0 +1,98 @@ +// VR/AR/xR lib + +#ifndef UNITY_POSTFX_XRLIB +#define UNITY_POSTFX_XRLIB + +#if defined(UNITY_SINGLE_PASS_STEREO) +CBUFFER_START(UnityStereoGlobals) + float4x4 unity_StereoMatrixP[2]; + float4x4 unity_StereoMatrixV[2]; + float4x4 unity_StereoMatrixInvV[2]; + float4x4 unity_StereoMatrixVP[2]; + + float4x4 unity_StereoCameraProjection[2]; + float4x4 unity_StereoCameraInvProjection[2]; + float4x4 unity_StereoWorldToCamera[2]; + float4x4 unity_StereoCameraToWorld[2]; + + float3 unity_StereoWorldSpaceCameraPos[2]; + float4 unity_StereoScaleOffset[2]; +CBUFFER_END + +CBUFFER_START(UnityStereoEyeIndex) + int unity_StereoEyeIndex; +CBUFFER_END +#endif + +float _RenderViewportScaleFactor; + +float2 UnityStereoScreenSpaceUVAdjust(float2 uv, float4 scaleAndOffset) +{ + return uv.xy * scaleAndOffset.xy + scaleAndOffset.zw; +} + +float4 UnityStereoScreenSpaceUVAdjust(float4 uv, float4 scaleAndOffset) +{ + return float4(UnityStereoScreenSpaceUVAdjust(uv.xy, scaleAndOffset), UnityStereoScreenSpaceUVAdjust(uv.zw, scaleAndOffset)); +} + +float2 UnityStereoClampScaleOffset(float2 uv, float4 scaleAndOffset) +{ + return clamp(uv, scaleAndOffset.zw, scaleAndOffset.zw + scaleAndOffset.xy); +} + +#if defined(UNITY_SINGLE_PASS_STEREO) +float2 TransformStereoScreenSpaceTex(float2 uv, float w) +{ + float4 scaleOffset = unity_StereoScaleOffset[unity_StereoEyeIndex]; + scaleOffset.xy *= _RenderViewportScaleFactor; + return uv.xy * scaleOffset.xy + scaleOffset.zw * w; +} + +float2 UnityStereoTransformScreenSpaceTex(float2 uv) +{ + return TransformStereoScreenSpaceTex(saturate(uv), 1.0); +} + +float4 UnityStereoTransformScreenSpaceTex(float4 uv) +{ + return float4(UnityStereoTransformScreenSpaceTex(uv.xy), UnityStereoTransformScreenSpaceTex(uv.zw)); +} + +float2 UnityStereoClamp(float2 uv) +{ + float4 scaleOffset = unity_StereoScaleOffset[unity_StereoEyeIndex]; + scaleOffset.xy *= _RenderViewportScaleFactor; + return UnityStereoClampScaleOffset(uv, scaleOffset); +} + +float4 UnityStereoAdjustedTexelSize(float4 texelSize) // Should take in _MainTex_TexelSize +{ + texelSize.x = texelSize.x * 2.0; // texelSize.x = 1/w. For a double-wide texture, the true resolution is given by 2/w. + texelSize.z = texelSize.z * 0.5; // texelSize.z = w. For a double-wide texture, the true size of the eye texture is given by w/2. + return texelSize; +} +#else +float2 TransformStereoScreenSpaceTex(float2 uv, float w) +{ + return uv * _RenderViewportScaleFactor; +} + +float2 UnityStereoTransformScreenSpaceTex(float2 uv) +{ + return TransformStereoScreenSpaceTex(saturate(uv), 1.0); +} + +float2 UnityStereoClamp(float2 uv) +{ + float4 scaleOffset = float4(_RenderViewportScaleFactor, _RenderViewportScaleFactor, 0.f, 0.f); + return UnityStereoClampScaleOffset(uv, scaleOffset); +} + +float4 UnityStereoAdjustedTexelSize(float4 texelSize) +{ + return texelSize; +} +#endif + +#endif // UNITY_POSTFX_XRLIB diff --git a/Assets/X-PostProcessing/Shaders/xRLib.hlsl.meta b/Assets/X-PostProcessing/Shaders/xRLib.hlsl.meta new file mode 100644 index 000000000..c5335647c --- /dev/null +++ b/Assets/X-PostProcessing/Shaders/xRLib.hlsl.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a9b6f01d1ec2d5e44b05163c02bc9aa4 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Utility.meta b/Assets/X-PostProcessing/Utility.meta new file mode 100644 index 000000000..8a197e115 --- /dev/null +++ b/Assets/X-PostProcessing/Utility.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b69a81cda6354c045817489da3d61c16 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Utility/ColorWheelAttribute.cs b/Assets/X-PostProcessing/Utility/ColorWheelAttribute.cs new file mode 100644 index 000000000..bff84bc6a --- /dev/null +++ b/Assets/X-PostProcessing/Utility/ColorWheelAttribute.cs @@ -0,0 +1,57 @@ +using System; + +namespace XPostProcessing +{ + /// + /// Use this attribute to draw a ColorWheel in the inspector. + /// + [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] + public sealed class ColorWheelAttribute : Attribute + { + /// + /// ColorWheel modes. These are used to compute and display pre-filtered ColorWheel vales in + /// the inspector. + /// + public enum Mode + { + /// + /// Don't display pre-filtered values. + /// + None, + + /// + /// Display pre-filtered lift values. + /// + Lift, + + /// + /// Display pre-filtered gamma values. + /// + Gamma, + + /// + /// Display pre-filtered grain values. + /// + Gain, + + + Contrast + } + + /// + /// The mode used to display pre-filtered values in the inspector. + /// + public readonly Mode mode; + + /// + /// Creates a new attribute. + /// + /// A mode used to display pre-filtered values in the inspector + public ColorWheelAttribute(Mode mode) + { + this.mode = mode; + } + } + + +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Utility/ColorWheelAttribute.cs.meta b/Assets/X-PostProcessing/Utility/ColorWheelAttribute.cs.meta new file mode 100644 index 000000000..10f4bae4e --- /dev/null +++ b/Assets/X-PostProcessing/Utility/ColorWheelAttribute.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b4c8c3233482129439fd679435869372 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Utility/XParameterOverride.cs b/Assets/X-PostProcessing/Utility/XParameterOverride.cs new file mode 100644 index 000000000..938059f56 --- /dev/null +++ b/Assets/X-PostProcessing/Utility/XParameterOverride.cs @@ -0,0 +1,21 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +namespace UnityEngine.Rendering.PostProcessing +{ + + [Serializable] + public sealed class GradientParameter : ParameterOverride { } + +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Utility/XParameterOverride.cs.meta b/Assets/X-PostProcessing/Utility/XParameterOverride.cs.meta new file mode 100644 index 000000000..de957a934 --- /dev/null +++ b/Assets/X-PostProcessing/Utility/XParameterOverride.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 60cf005088e2612439c705ccccc052eb +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Utility/XPostProcessingEnum.cs b/Assets/X-PostProcessing/Utility/XPostProcessingEnum.cs new file mode 100644 index 000000000..51ded626d --- /dev/null +++ b/Assets/X-PostProcessing/Utility/XPostProcessingEnum.cs @@ -0,0 +1,38 @@ +//---------------------------------------------------------------------------------------------------------- +// X-PostProcessing Library +// https://github.com/QianMo/X-PostProcessing-Library +// Copyright (C) 2020 QianMo. All rights reserved. +// Licensed under the MIT License +// You may not use this file except in compliance with the License.You may obtain a copy of the License at +// http://opensource.org/licenses/MIT +//---------------------------------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +namespace XPostProcessing +{ + + + public enum Direction + { + Horizontal = 0, + Vertical = 1, + } + + public enum DirectionEX + { + Horizontal = 0, + Vertical = 1, + Horizontal_Vertical =2, + } + + public enum IntervalType + { + Infinite, + Periodic, + Random + } + +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Utility/XPostProcessingEnum.cs.meta b/Assets/X-PostProcessing/Utility/XPostProcessingEnum.cs.meta new file mode 100644 index 000000000..eb4ef7392 --- /dev/null +++ b/Assets/X-PostProcessing/Utility/XPostProcessingEnum.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7b1b08b4caaec4247a5c9aa3be841047 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/X-PostProcessing/Utility/XPostProcessingUtility.cs b/Assets/X-PostProcessing/Utility/XPostProcessingUtility.cs new file mode 100644 index 000000000..8fe628a98 --- /dev/null +++ b/Assets/X-PostProcessing/Utility/XPostProcessingUtility.cs @@ -0,0 +1,99 @@ +using System.Collections; +using System.Collections.Generic; +using System.IO; +using UnityEngine; + + +namespace XPostProcessing +{ + public class XPostProcessingUtility + { + + #region Instance + + private static XPostProcessingUtility _instance; + public static XPostProcessingUtility Instance + { + get + { + if (_instance == null) + { + _instance = new XPostProcessingUtility(); + } + return _instance; + } + } + + #endregion + + + + //----------------------------------------------------------------------------------------------------- + static int resetFrameCount = 0; + static Color srcColor; + static Color dstColor; + public static Color GetRandomLerpColor(int RandomFrameCount, float lerpSpeed) + { + // Color version + if (resetFrameCount == 0) + { + srcColor = new Color(Random.Range(0f, 1f), Random.Range(0f, 1f), Random.Range(0f, 1f), 1); + } + float lerp = lerpSpeed; + + dstColor = Color.Lerp(dstColor, srcColor, lerp); + resetFrameCount++; + if (resetFrameCount > RandomFrameCount) + { + resetFrameCount = 0; + } + + return dstColor; + } + + public static Color RandomColor() + { + return new Color(Random.value, Random.value, Random.value, Random.value); + } + + + + + public int LastSelectedCategory; + public int ThumbWidth; + public int ThumbHeight; + public int cache_ThumbWidth; + public int cache_ThumbHeight; + public bool cache_IsLinear; + public RenderTexture PreviewRT; + + + public static void DumpRenderTexture(RenderTexture rt, string pngOutPath) + { + var oldRT = RenderTexture.active; + + var tex = new Texture2D(rt.width, rt.height); + RenderTexture.active = rt; + tex.ReadPixels(new Rect(0, 0, rt.width, rt.height), 0, 0); + tex.Apply(); + + File.WriteAllBytes(pngOutPath, tex.EncodeToPNG()); + RenderTexture.active = oldRT; + } + + + static string TypePreFix = "XPostProcessing."; + + + public static System.Type GetSettingByName(string typeFullName) + { + var type = System.Type.GetType(TypePreFix + typeFullName); + //Debug.Log("Utllity Type : " + type); + return type; + } + + + + } + +} \ No newline at end of file diff --git a/Assets/X-PostProcessing/Utility/XPostProcessingUtility.cs.meta b/Assets/X-PostProcessing/Utility/XPostProcessingUtility.cs.meta new file mode 100644 index 000000000..a2ce0926a --- /dev/null +++ b/Assets/X-PostProcessing/Utility/XPostProcessingUtility.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 46b6974378148b84c82c3dfa2d6af212 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Packages/manifest.json b/Packages/manifest.json index 45cece30f..f13b123de 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -6,6 +6,7 @@ "com.rheavenstudio.jukebox": "https://github.com/RHeavenStudio/Jukebox.git?path=/Assets/Scripts/Jukebox", "com.sator-imaging.alt-source-generator": "https://github.com/sator-imaging/Unity-AltSourceGenerator.git", "com.sr4dev.unity-spriteassist": "https://github.com/sr4dev/Unity-SpriteAssist.git?path=Assets/SpriteAssist", + "com.starasgames.tmpro-dynamic-data-cleaner": "https://github.com/STARasGAMES/tmpro-dynamic-data-cleaner.git#upm", "com.tayx.graphy": "https://github.com/Tayx94/graphy.git", "com.unity.2d.sprite": "1.0.0", "com.unity.assetbundlebrowser": "https://github.com/Unity-Technologies/AssetBundles-Browser.git", @@ -21,8 +22,8 @@ "com.unity.ugui": "1.0.0", "com.zigurous.shaders.blending": "https://github.com/zigurous/unity-blend-shaders.git", "jillejr.newtonsoft.json-for-unity.converters": "1.3.0", + "unity-dependencies-hunter": "https://github.com/AlexeyPerov/Unity-Dependencies-Hunter.git#upm", "com.unity.modules.ai": "1.0.0", - "com.unity.modules.androidjni": "1.0.0", "com.unity.modules.animation": "1.0.0", "com.unity.modules.assetbundle": "1.0.0", "com.unity.modules.audio": "1.0.0", @@ -47,7 +48,6 @@ "com.unity.modules.unitywebrequestaudio": "1.0.0", "com.unity.modules.unitywebrequesttexture": "1.0.0", "com.unity.modules.unitywebrequestwww": "1.0.0", - "com.unity.modules.vehicles": "1.0.0", "com.unity.modules.video": "1.0.0", "com.unity.modules.vr": "1.0.0", "com.unity.modules.wind": "1.0.0", diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json index 6616f354f..6585a6b6d 100644 --- a/Packages/packages-lock.json +++ b/Packages/packages-lock.json @@ -47,6 +47,13 @@ "dependencies": {}, "hash": "2ee960d718cc2ac2c4a2ae847a83df23a7b56b66" }, + "com.starasgames.tmpro-dynamic-data-cleaner": { + "version": "https://github.com/STARasGAMES/tmpro-dynamic-data-cleaner.git#upm", + "depth": 0, + "source": "git", + "dependencies": {}, + "hash": "3a3607621431b0173bea325a53fb34e8d574f995" + }, "com.tayx.graphy": { "version": "https://github.com/Tayx94/graphy.git", "depth": 0, @@ -179,13 +186,14 @@ "dependencies": {}, "url": "https://npm.cloudsmith.io/jillejr/newtonsoft-json-for-unity" }, - "com.unity.modules.ai": { - "version": "1.0.0", + "unity-dependencies-hunter": { + "version": "https://github.com/AlexeyPerov/Unity-Dependencies-Hunter.git#upm", "depth": 0, - "source": "builtin", - "dependencies": {} + "source": "git", + "dependencies": {}, + "hash": "f5f9b5d2f168c7ab0f0a65d99db97e3763501a85" }, - "com.unity.modules.androidjni": { + "com.unity.modules.ai": { "version": "1.0.0", "depth": 0, "source": "builtin", @@ -389,14 +397,6 @@ "com.unity.modules.imageconversion": "1.0.0" } }, - "com.unity.modules.vehicles": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.physics": "1.0.0" - } - }, "com.unity.modules.video": { "version": "1.0.0", "depth": 0, diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset index 7a77c4bc5..4111bbe80 100644 --- a/ProjectSettings/GraphicsSettings.asset +++ b/ProjectSettings/GraphicsSettings.asset @@ -39,6 +39,12 @@ GraphicsSettings: - {fileID: 10783, guid: 0000000000000000f000000000000000, type: 0} - {fileID: 4800000, guid: 534727a34958a6b409102bf07fadffab, type: 3} - {fileID: 4800000, guid: 95d6144eab187a34b929151454e2969d, type: 3} + - {fileID: 4800000, guid: 3b0680d06d5673e438e41b4af0775d1e, type: 3} + - {fileID: 4800000, guid: 23ffd5ce9efd848f79aac1e537568c42, type: 3} + - {fileID: 4800000, guid: 39df4d97db7425a48b5273e099477a66, type: 3} + - {fileID: 4800000, guid: 970b4207e98f9cd49a3b7dd771a02c23, type: 3} + - {fileID: 4800000, guid: 12a023182120c1c468339f082d0c7bad, type: 3} + - {fileID: 4800000, guid: 5d20ddbcdba6cbc499aef6869b23b9f9, type: 3} m_PreloadedShaders: [] m_PreloadShadersBatchTimeLimit: -1 m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 6511677e1..e7f12cbed 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -134,7 +134,7 @@ PlayerSettings: 16:10: 1 16:9: 1 Others: 1 - bundleVersion: 1.0.5 + bundleVersion: 1.0.8 preloadedAssets: - {fileID: 102900000, guid: 5348c08b82446e0478cee8bda6c02cfc, type: 3} metroInputSource: 0 @@ -158,11 +158,11 @@ PlayerSettings: applicationIdentifier: Standalone: com.RHeavenStudio.Heaven-Studio buildNumber: - Standalone: 100005 + Standalone: 100008 iPhone: 0 tvOS: 0 overrideDefaultApplicationIdentifier: 0 - AndroidBundleVersionCode: 100005 + AndroidBundleVersionCode: 100008 AndroidMinSdkVersion: 22 AndroidTargetSdkVersion: 0 AndroidPreferredInstallLocation: 1 diff --git a/ProjectSettings/SatorImaging.UnitySourceGenerator.Editor.ProjectSettingsData.asset b/ProjectSettings/SatorImaging.UnitySourceGenerator.Editor.ProjectSettingsData.asset index a1cbca8dd..f722ae762 100644 --- a/ProjectSettings/SatorImaging.UnitySourceGenerator.Editor.ProjectSettingsData.asset +++ b/ProjectSettings/SatorImaging.UnitySourceGenerator.Editor.ProjectSettingsData.asset @@ -17,5 +17,170 @@ MonoBehaviour: DenseViewWidthThreshold: 512 _disableAutoReloadInBackground: 0 ImportedScriptPaths: + - Assets/Scripts/PostProcessingVFX.cs + - Assets/Scripts/Minigames.cs + - Assets/Scripts/Games/PowerCalligraphy/Writing.cs + - Assets/Scripts/Games/PowerCalligraphy/PowerCalligraphy.cs + - Assets/Scripts/Games/Airboarder/Airboarder.cs + - Assets/X-PostProcessing/Effects/DualGaussianBlur/Editor/DualGaussianBlurEditor.cs + - Assets/Shaders/OilPainting/BuiltInSampleScripts/ImageEffectController.cs + - Assets/X-PostProcessing/Effects/RapidOldTVVignette/Editor/RapidOldTVVignetteEditor.cs + - Assets/X-PostProcessing/Effects/DualKawaseBlur/DualKawaseBlur.cs + - Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/GlitchRGBSplitV5.cs + - Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/RapidOldTVVignetteV2.cs + - Assets/X-PostProcessing/Effects/GaussianBlur/Editor/GaussianBlurEditor.cs + - Assets/X-PostProcessing/Effects/IrisBlur/Editor/IrisBlurEditor.cs + - Assets/X-PostProcessing/Effects/SharpenV1/SharpenV1.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/Editor/EdgeDetectionRobertsNeonEditor.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/Editor/ColorAdjustmentContrastEditor.cs + - Assets/X-PostProcessing/Effects/PixelizeLed/Editor/PixelizeLedEditor.cs + - Assets/X-PostProcessing/Effects/RapidVignetteV2/RapidVignetteV2.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionScharr/EdgeDetectionScharr.cs + - Assets/X-PostProcessing/Effects/SharpenV2/Editor/SharpenV2Editor.cs + - Assets/X-PostProcessing/Effects/GaussianBlur/GaussianBlur.cs + - Assets/X-PostProcessing/Effects/IrisBlur/IrisBlur.cs + - Assets/X-PostProcessing/Effects/GlitchRGBSplitV5/Editor/GlitchRGBSplitV5Editor.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/EdgeDetectionScharrNeonV2.cs + - Assets/X-PostProcessing/Effects/PixelizeHexagon/Editor/PixelizeHexagonEditor.cs + - Assets/X-PostProcessing/Effects/BoxBlur/Editor/BoxBlurEditor.cs + - Assets/X-PostProcessing/Effects/TiltShiftBlurV2/TiltShiftBlurV2.cs + - Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/Editor/GlitchRGBSplitV4Editor.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionSobel/EdgeDetectionSobel.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/Editor/EdgeDetectionSobelNeonEditor.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/EdgeDetectionSobelNeonV2.cs + - Assets/CRTEffects/Scripts/CRTRenderer.cs + - Assets/X-PostProcessing/Effects/DualTentBlur/Editor/DualTentBlurEditor.cs + - Assets/X-PostProcessing/Effects/GrainyBlur/Editor/GrainyBlurEditor.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/ColorAdjustmentBleachBypass.cs + - Assets/X-PostProcessing/Effects/GlitchScreenShake/GlitchScreenShake.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/Editor/EdgeDetectionRobertsNeonV2Editor.cs + - Assets/X-PostProcessing/Effects/GrainyBlur/GrainyBlur.cs + - Assets/X-PostProcessing/Utility/XPostProcessingEnum.cs + - Assets/X-PostProcessing/Effects/TiltShiftBlur/TiltShiftBlur.cs + - Assets/X-PostProcessing/Effects/GlitchRGBSplit/GlitchRGBSplit.cs + - Assets/X-PostProcessing/Effects/GlitchScanLineJitter/Editor/GlitchScanLineJitterEditor.cs + - Assets/X-PostProcessing/Effects/GlitchDigitalStripe/Editor/GlitchDigitalStripeEditor.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/ColorAdjustmentTechnicolor.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeon/EdgeDetectionSobelNeon.cs + - Assets/X-PostProcessing/Effects/ColorReplaceV2/Editor/ColorReplaceV2Editor.cs + - Assets/X-PostProcessing/Effects/BokehBlur/BokehBlur.cs + - Assets/X-PostProcessing/Effects/RapidVignetteV2/Editor/RapidVignetteV2Editor.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/ColorAdjustmentLensFilter.cs + - Assets/X-PostProcessing/Effects/GlitchAnalogNoise/Editor/GlitchAnalogNoiseEditor.cs + - Assets/X-PostProcessing/Effects/PixelizeQuad/Editor/PixelizeQuadEditor.cs + - Assets/CRTEffects/Scripts/CRT.cs + - Assets/X-PostProcessing/Effects/PixelizeSector/Editor/PixelizeSectorEditor.cs + - Assets/X-PostProcessing/Effects/GlitchImageBlockV2/GlitchImageBlockV2.cs + - Assets/X-PostProcessing/Effects/KawaseBlur/KawaseBlur.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentTint/ColorAdjustmentTint.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionSobel/Editor/EdgeDetectionSobelEditor.cs + - Assets/Shaders/OilPainting/BuiltInSampleScripts/ScreenCaptureManager.cs + - Assets/X-PostProcessing/Utility/XPostProcessingUtility.cs + - Assets/Shaders/OilPainting/BuiltInSampleScripts/BackgroundManager.cs + - Assets/X-PostProcessing/Effects/SharpenV3/SharpenV3.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/Editor/ColorAdjustmentSaturationEditor.cs + - Assets/X-PostProcessing/Effects/ColorReplace/Editor/ColorReplaceEditor.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentHue/ColorAdjustmentHue.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentLensFilter/Editor/ColorAdjustmentLensFilterEditor.cs + - Assets/X-PostProcessing/Editor/XPostProcessingEditorUtility.cs + - Assets/X-PostProcessing/Effects/IrisBlurV2/IrisBlurV2.cs + - Assets/X-PostProcessing/Effects/DualTentBlur/DualTentBlur.cs + - Assets/X-PostProcessing/Effects/DirectionalBlur/DirectionalBlur.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/EdgeDetectionRoberts.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionRoberts/Editor/EdgeDetectionRobertsEditor.cs + - Assets/X-PostProcessing/Effects/RapidOldTVVignette/RapidOldTVVignette.cs + - Assets/X-PostProcessing/Effects/TentBlur/TentBlur.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionScharr/Editor/EdgeDetectionScharrEditor.cs + - Assets/X-PostProcessing/Effects/GlitchWaveJitter/GlitchWaveJitter.cs + - Assets/X-PostProcessing/Effects/PixelizeQuad/PixelizeQuad.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/ColorAdjustmentContrastV3.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentBleachBypass/Editor/ColorAdjustmentBleachBypassEditor.cs + - Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/Editor/GlitchRGBSplitV2Editor.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeonV2/EdgeDetectionRobertsNeonV2.cs + - Assets/X-PostProcessing/Effects/GlitchRGBSplit/Editor/GlitchRGBSplitEditor.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/EdgeDetectionScharrNeon.cs + - Assets/X-PostProcessing/Effects/SharpenV3/Editor/SharpenV3Editor.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionSobelNeonV2/Editor/EdgeDetectionSobelNeonV2Editor.cs + - Assets/X-PostProcessing/Effects/RapidOldTVVignetteV2/Editor/RapidOldTVVignetteV2Editor.cs + - Assets/X-PostProcessing/Effects/PixelizeCircle/PixelizeCircle.cs + - Assets/X-PostProcessing/Effects/RadialBlur/RadialBlur.cs + - Assets/Scripts/GameManager.cs + - Assets/X-PostProcessing/Effects/GlitchAnalogNoise/GlitchAnalogNoise.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/ColorAdjustmentBrightness.cs + - Assets/X-PostProcessing/Effects/DirectionalBlur/Editor/DirectionalBlurEditor.cs + - Assets/X-PostProcessing/Effects/DualKawaseBlur/Editor/DualKawaseBlurEditor.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentTint/Editor/ColorAdjustmentTintEditor.cs + - Assets/X-PostProcessing/Effects/GlitchLineBlock/GlitchLineBlock.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/ColorAdjustmentWhiteBalance.cs + - Assets/X-PostProcessing/Effects/RadialBlurV2/Editor/RadialBlurV2Editor.cs + - Assets/X-PostProcessing/Effects/TiltShiftBlurV2/Editor/TiltShiftBlurV2Editor.cs + - Assets/X-PostProcessing/Utility/XParameterOverride.cs + - Assets/X-PostProcessing/Effects/GlitchScanLineJitter/GlitchScanLineJitter.cs + - Assets/X-PostProcessing/Effects/ColorReplace/ColorReplace.cs + - Assets/X-PostProcessing/Effects/GlitchImageBlockV2/Editor/GlitchImageBlockV2Editor.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/Editor/ColorAdjustmentContrastV2Editor.cs + - Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/GlitchRGBSplitV3.cs + - Assets/X-PostProcessing/Effects/GlitchRGBSplitV4/GlitchRGBSplitV4.cs + - Assets/X-PostProcessing/Effects/PixelizeTriangle/PixelizeTriangle.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeon/Editor/EdgeDetectionScharrNeonEditor.cs + - Assets/X-PostProcessing/Effects/GlitchDigitalStripe/GlitchDigitalStripe.cs + - Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/PixelizeHexagonGrid.cs + - Assets/X-PostProcessing/Effects/GlitchLineBlock/Editor/GlitchLineBlockEditor.cs + - Assets/X-PostProcessing/Effects/PixelizeHexagonGrid/Editor/PixelizeHexagonGridEditor.cs + - Assets/X-PostProcessing/Utility/ColorWheelAttribute.cs + - Assets/X-PostProcessing/Effects/PixelizeDiamond/PixelizeDiamond.cs + - Assets/X-PostProcessing/Effects/GlitchScreenJump/GlitchScreenJump.cs + - Assets/X-PostProcessing/Effects/AuroraVignette/Editor/AuroraVignetteEditor.cs + - Assets/X-PostProcessing/Effects/RadialBlur/Editor/RadialBlurEditor.cs + - Assets/X-PostProcessing/Effects/GlitchWaveJitter/Editor/GlitchWaveJitterEditor.cs + - Assets/X-PostProcessing/Effects/PixelizeSector/PixelizeSector.cs + - Assets/X-PostProcessing/Effects/GlitchTileJitter/GlitchTileJitter.cs + - Assets/X-PostProcessing/Effects/KawaseBlur/Editor/KawaseBlurEditor.cs + - Assets/X-PostProcessing/Effects/PixelizeDiamond/Editor/PixelizeDiamondEditor.cs + - Assets/Scripts/LevelEditor/EventSelector/PropertyPrefabs/DropdownPropertyPrefab.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionRobertsNeon/EdgeDetectionRobertsNeon.cs + - Assets/X-PostProcessing/Effects/BokehBlur/Editor/BokehBlurEditor.cs + - Assets/X-PostProcessing/Effects/IrisBlurV2/Editor/IrisBlurV2Editor.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentWhiteBalance/Editor/ColorAdjustmentWhiteBalanceEditor.cs + - Assets/X-PostProcessing/Effects/PixelizeLed/PixelizeLed.cs + - Assets/X-PostProcessing/Effects/GlitchImageBlockV3/Editor/GlitchImageBlockV3Editor.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentBrightness/Editor/ColorAdjustmentBrightnessEditor.cs + - Assets/X-PostProcessing/Effects/GlitchTileJitter/Editor/GlitchTileJitterEditor.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentContrast/ColorAdjustmentContrast.cs + - Assets/X-PostProcessing/Effects/GlitchRGBSplitV3/Editor/GlitchRGBSplitV3Editor.cs + - Assets/X-PostProcessing/Effects/PixelizeHexagon/PixelizeHexagon.cs + - Assets/X-PostProcessing/Effects/EdgeDetectionScharrNeonV2/Editor/EdgeDetectionScharrNeonV2Editor.cs + - Assets/X-PostProcessing/Effects/GlitchImageBlockV3/GlitchImageBlockV3.cs + - Assets/X-PostProcessing/Effects/DualBoxBlur/DualBoxBlur.cs + - Assets/X-PostProcessing/Effects/RapidVignette/Editor/RapidVignetteEditor.cs + - Assets/X-PostProcessing/Effects/SharpenV1/Editor/SharpenV1Editor.cs + - Assets/X-PostProcessing/Effects/GlitchImageBlock/GlitchImageBlock.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentTechnicolor/Editor/ColorAdjustmentTechnicolorEditor.cs + - Assets/X-PostProcessing/Effects/GlitchScreenShake/Editor/GlitchScreenShakeEditor.cs + - Assets/X-PostProcessing/Effects/ColorReplaceV2/ColorReplaceV2.cs + - Assets/X-PostProcessing/Effects/BoxBlur/BoxBlur.cs + - Assets/X-PostProcessing/Effects/TiltShiftBlur/Editor/TiltShiftBlurEditor.cs + - Assets/X-PostProcessing/Effects/GlitchScreenJump/Editor/GlitchScreenJumpEditor.cs + - Assets/X-PostProcessing/Effects/PixelizeCircle/Editor/PixelizeCircleEditor.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentSaturation/ColorAdjustmentSaturation.cs + - Assets/X-PostProcessing/Effects/GlitchImageBlock/Editor/GlitchImageBlockEditor.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV3/Editor/ColorAdjustmentContrastV3Editor.cs + - Assets/X-PostProcessing/Effects/GlitchRGBSplitV2/GlitchRGBSplitV2.cs + - Assets/X-PostProcessing/Effects/DualBoxBlur/Editor/DualBoxBlurEditor.cs + - Assets/X-PostProcessing/Effects/DualGaussianBlur/DualGaussianBlur.cs + - Assets/X-PostProcessing/Effects/SharpenV2/SharpenV2.cs + - Assets/Shaders/OilPainting/BuiltInSampleScripts/EffectSettingsUI.cs + - Assets/X-PostProcessing/Effects/GlitchImageBlockV4/GlitchImageBlockV4.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentHue/Editor/ColorAdjustmentHueEditor.cs + - Assets/X-PostProcessing/Effects/ColorAdjustmentContrastV2/ColorAdjustmentContrastV2.cs + - Assets/X-PostProcessing/Effects/GlitchImageBlockV4/Editor/GlitchImageBlockV4Editor.cs + - Assets/X-PostProcessing/Effects/PixelizeLeaf/PixelizeLeaf.cs + - Assets/X-PostProcessing/Effects/RapidVignette/RapidVignette.cs + - Assets/X-PostProcessing/Effects/TentBlur/Editor/TentBlurEditor.cs + - Assets/X-PostProcessing/Effects/RadialBlurV2/RadialBlurV2.cs + - Assets/X-PostProcessing/Effects/PixelizeLeaf/Editor/PixelizeLeafEditor.cs + - Assets/X-PostProcessing/Effects/AuroraVignette/AuroraVignette.cs + - Assets/X-PostProcessing/Effects/PixelizeTriangle/Editor/PixelizeTriangleEditor.cs + - Assets/Scripts/AppInfo.cs PathsToSkipImportEvent: [] PathsToIgnoreOverwriteSettingOnAttribute: []